﻿ACTIONSCRIPT (AS1/AS2) FOR FLASH #267958
https://swfchan.com/54/267958/

	movieClip 14 turnstone {
		frame 1 {
			frames = [2, 9, 16, 23];
			startframe = random(4);
			gotoAndStop(frames[startframe]);
			onEnterFrame = function () {
				if (!_root.game_paused and !_root.msgbox._visible) {
					if (allowEnter and this.hitTest(_root.holder.player)) {
						_root.giveExclamation();
						if (Key.isDown(83) or Key.isDown(40)) {
							_root.playsound('turnstone1Sound');
							play();
							allowEnter = false;
						}
					}
				}
				if (!Key.isDown(83) and !Key.isDown(40)) {
					allowEnter = true;
				}
			};
		}
		frame 2 {
			stop();
			_root['stonepos' + myid] = 1;
		}
		frame 9 {
			stop();
			_root['stonepos' + myid] = 2;
		}
		frame 16 {
			stop();
			_root['stonepos' + myid] = 3;
		}
		frame 23 {
			stop();
			_root['stonepos' + myid] = 4;
		}
		frame 30 {
			gotoAndStop(2);
		}
	}
	movieClip 19 presspad {
		frame 1 {
			pressed = false;
			onEnterFrame = function () {
				if (this.hitTest(_root.holder.player) or _root.holder.objects.objecta.life > 0 and this.hitTest(_root.holder.objects.objecta)) {
					if (!pressed) {
						++_root.pressedpads;
						_root.playsound('presspad1Sound');
					}
					pressed = true;
					gotoAndStop(3);
				} else {
					if (pressed) {
						--_root.pressedpads;
					}
					pressed = false;
					gotoAndStop(2);
				}
			};
		}
	}
	movieClip 22 liftbutton {
		frame 1 {
			onEnterFrame = function () {
				if (!_root.cutscene and !_root.game_paused) {
					if (this.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true)) {
						_root.giveExclamation();
						if (Key.isDown(40) or Key.isDown(83)) {
							++_root.count;
							_root.attachMovie('liftpanel', 'liftpanel', _root.count);
							_root.cutscene = true;
						}
					}
				}
			};
		}
	}
	movieClip 25	{
	}
	movieClip 26	{
	}
	movieClip 28	{
	}
	movieClip 30	{
		frame 1 {
			stop();
		}
	}
	movieClip 33	{
	}
	movieClip 34	{
	}
	movieClip 37	{
	}
	movieClip 40	{
		frame 1 {
			stop();
		}
	}
	movieClip 41 Preloader {
		frame 1 {
			function enterFrameHandler() {
				var v2 = 0;
				v2 = _root.getBytesLoaded() / _root.getBytesTotal();
				if (loadingBar) {
					loadingBar.gotoAndStop(int(v2 * (loadingBar._totalframes - 1)) + 1);
				}
				if (v2 >= 1 && haltComplete != true) {
					onEnterFrame = null;
					gotoAndStop('loaded');
				}
			}
			stop();
			var autoPlay;
			var className;
			var haltComplete;
			onEnterFrame = enterFrameHandler;
		}
		frame 10 {
			function _onPlayClick() {
				_root.nextFrame();
				_root.play();
				_parent._onLoaded();
			}
			if (playButton) {
				playButton.onRelease = _onPlayClick;
				playButton.stop();
			}
			if (autoPlay) {
				_onPlayClick(null);
			}
		}
	}
	movieClip 43 Newgrounds API Classes {
		#initclip
			Object.registerClass('Newgrounds API Classes', com.newgrounds.shims.APIShim);
		#endinitclip
	}
	movieClip 83	{
	}
	movieClip 86	{
	}
	movieClip 91	{
	}
	movieClip 95	{
	}
	movieClip 96	{
	}
	movieClip 97	{
	}
	movieClip 98 FlashAd {
		#initclip
			Object.registerClass('FlashAd', com.newgrounds.components.FlashAdBase);
		#endinitclip
		frame 1 {
			function initPlayButton() {
				if (this.playButton) {
					this.playButton.onRelease = onPlayClick;
					if (!this.showPlayButton) {
						this.playButton._visible = false;
					}
				}
			}
			function onPlayClick() {
				removeAd();
				_visible = false;
			}
			stop();
		}
		frame 2 {
			initPlayButton();
		}
		frame 10 {
			initPlayButton();
		}
		frame 20 {
			initPlayButton();
		}
	}
	movieClip 99 APIConnector {
		frame 1 {
			function _onLoaded() {
				gotoAndStop('invisible');
				if (_redirect) {
					com.newgrounds.API.loadOfficialVersion();
					return undefined;
				}
			}
			function _apiConnect() {
				var v2 = com.newgrounds.API;
				if (v2 && !v2.connected) {
					if (!apiId) {
						com.newgrounds.Logger.logError('No API ID entered in the API Connector component.', 'You can create an API ID for this submission at http://newgrounds.com/account/flashapi', 'Enter your API ID into the API Connector using the Component Inspector (Window -> Component Inspector).');
						return undefined;
					}
					switch (debugMode) {
						case 'Off':
						default:
							v2.debugMode = v2.RELEASE_MODE;
							goto 1319;
						case 'Simulate Logged-in User':
//Invalid switch					}
					v2.debugMode = v2.DEBUG_MODE_LOGGED_IN;
					goto 1319;
				case 'Off':
					v2.debugMode = v2.DEBUG_MODE_LOGGED_OUT;
					goto 1319;
				case 'Simulate Logged-in User':
					v2.debugMode = v2.DEBUG_MODE_NEW_VERSION;
					goto 1319;
				case 'Simulate Logged-out User':
					v2.debugMode = v2.DEBUG_MODE_HOST_BLOCKED;
					label 1319:
					if (loader) {
						loader.haltComplete = true;
					}
					v2.addEventListener(com.newgrounds.APIEvent.API_CONNECTED, _onConnected);
					v2.connect(_root, apiId, encryptionKey, movieVersion);
				}
			}
			function _onConnected(event) {
				if (loader) {
					loader.haltComplete = false;
				}
				if (redirectOnNewVersion && event.__get__success() && (event.__get__data()).newVersion) {
					_redirect = true;
				}
				if (redirectOnHostBlocked && !event.__get__success() && event.__get__error() == com.newgrounds.APIEvent.ERROR_HOST_BLOCKED) {
					_redirect = true;
				}
				if (_redirect) {
					gotoAndStop('adPreloader');
					forceAlwaysOnTop();
				}
			}
			function forceAlwaysOnTop() {
				var v2 = getNextHighestDepth();
				swapDepths(v2);
				if (Stage) {
					_x = (Stage.width - _width) / 2;
					_y = (Stage.height - _height) / 2;
					_visible = true;
				}
				if (_root && _root instanceof MovieClip) {
					(MovieClip(_root)).stop();
				}
			}
			stop();
			if (_root && _root instanceof MovieClip) {
				(MovieClip(_root)).stop();
			}
			var apiId;
			var encryptionKey;
			var movieVersion;
			var debugMode;
			var connectorType;
			var redirectOnHostBlocked;
			var redirectOnNewVersion;
			var adType;
			var className;
			var _redirect;
			_x = int(_x);
			_y = int(_y);
			if (!debugMode) {
				debugMode = 'Simulate Logged-in User';
			}
			if (!connectorType) {
				connectorType = 'Flash Ad + Preloader';
			}
			if (!adType) {
				adType = 'Video';
			}
			if (ad) {
				ad.adType = adType;
			}
			switch (connectorType) {
				case 'Flash Ad + Preloader':
					gotoAndStop('adPreloader');
					break;
				case 'Flash Ad Only':
					gotoAndStop('ad');
					break;
				case 'Invisible':
					gotoAndStop('invisible');
			}
			_apiConnect();
		}
		instance ad of movieClip 98 FlashAd {
			onClipEvent (construct) {
				apiId = '';
				showBorder = true;
				adType = 'Video';
			}
		}
		instance loader of movieClip 41 Preloader {
			onClipEvent (construct) {
				autoPlay = false;
				mainClass = '';
			}
		}
	}
	
	// unknown tag 88 length 68
	movieClip 106 fps {
		frame 1 {
			avgcalc = 0;
			avgcount = 0;
			fps = 30;
			var timeinit = new Date();
			var lasttime = timeinit.getMilliseconds();
			onEnterFrame = function () {
				var v1 = new Date();
				timepassed = v1.getMilliseconds() - lasttime >= 0 ? v1.getMilliseconds() - lasttime : 1000 + (v1.getMilliseconds() - lasttime);
				fps = Math.round(1000 / timepassed);
				lasttime = v1.getMilliseconds();
				++avgcount;
				avgcalc += fps;
				avg = Math.round(avgcalc / avgcount);
			};
		}
	}
	movieClip 119 frontbg {
	}
	button 122 {
		on (release) {
			getURL('http://www.bigdino.com/goto.php?id=1038&link=splash', '_blank');
		}
	}
	movieClip 124	{
	}
	movieClip 126	{
	}
	movieClip 128	{
	}
	movieClip 130	{
	}
	movieClip 133	{
	}
	movieClip 135	{
	}
	movieClip 137	{
	}
	movieClip 139	{
	}
	movieClip 141	{
	}
	movieClip 142	{
	}
	movieClip 156	{
	}
	movieClip 157	{
	}
	movieClip 162	{
	}
	movieClip 164	{
	}
	movieClip 175	{
	}
	
	// unknown tag 88 length 11
	movieClip 180	{
	}
	movieClip 182	{
	}
	movieClip 183 BigDinoSplash {
		frame 1 {
		}
		frame 7 {
			egg.gotoAndStop(1);
		}
		frame 19 {
			egg.gotoAndStop(2);
		}
		frame 53 {
			egg.gotoAndStop(3);
		}
		frame 83 {
			egg.gotoAndStop(4);
		}
		frame 211 {
			stop();
			_parent.play();
		}
	}
	frame 1 {
		function rebootgame() {
			function resetactions() {
				actions = new Array();
				actions[17] = 10 + random(20);
				actions[41] = random(4) + 1;
				actions[42] = random(4) + 1;
				actions[43] = random(4) + 1;
				actions[47] = random(4) + 1;
				actions[48] = random(4) + 1;
				actions[49] = random(4) + 1;
				bf1 = true;
				ingredientspicked = 0;
			}
			function playercode() {
				music_run();
				if (game_paused) {
				} else {
					if (!game_paused) {
						_currentframe = health;
						lives_bar.gotoAndStop(health);
						runsave();
						open_menu();
						reduce_effects();
						quickSelect();
						++pickuptime;
						++existence;
						if (!dying and !fadeout) {
							die_count = 0;
							prex = holder.player._x;
							prey = holder.player._y;
							begx = holder._x;
							begy = holder._y;
							if (msgbox._visible) {
								msgbox.runmessage();
							} else {
								if (!cutscene) {
									if (msgbreather > 0) {
										--msgbreather;
									}
									if ((Key.isDown(38) or Key.isDown(40) or Key.isDown(87) or Key.isDown(83) or fadein) and holder.ladders.hitTest(holder.player._x + holder._x, holder.player._y + holder._y - playheight * 0.75, true)) {
										if (!climbing) {
											climbing = true;
											xspeed = 0;
										}
									} else {
										if (!holder.ladders.hitTest(holder.player._x + holder._x, holder.player._y + holder._y - playheight * 0.75, true)) {
											if (climbing) {
												climbing = false;
												fallspeed = 0;
												if (Key.isDown(39) or Key.isDown(68)) {
													xspeed = climbspeed;
												} else {
													if (Key.isDown(37) or Key.isDown(65)) {
														xspeed = -climbspeed;
													}
												}
												if (Key.isDown(38) or Key.isDown(87)) {
													jump();
												}
											}
										}
									}
									throwpotion();
									--attcount;
									if (attcount <= 0) {
										attacking = false;
									}
									--drinkcount;
									if (drinkcount <= 0) {
										drinking = false;
									}
									--shrugging;
									if (effectGravity == 0 and !climbing) {
										if ((Key.isDown(39) or Key.isDown(68)) and (!attacking or attacking and (jumping or wasjumping)) and !drinking) {
											if (xspeed < 0 and grounded) {
												xspeed *= directionslide;
											}
											xspeed += walkspeed / walkacctime;
											holder.player._xscale = 100;
										} else {
											if ((Key.isDown(37) or Key.isDown(65)) and (!attacking or attacking and (jumping or wasjumping)) and !drinking) {
												if (xspeed > 0 and grounded) {
													xspeed *= directionslide;
												}
												xspeed -= walkspeed / walkacctime;
												holder.player._xscale = -100;
											} else {
												if (grounded) {
													xspeed *= slideamount;
												} else {
													xspeed *= airfriction;
												}
											}
										}
										if (xspeed > walkspeed) {
											xspeed = walkspeed;
										} else {
											if (xspeed < -walkspeed) {
												xspeed = -walkspeed;
											}
										}
										if (effectSpeed > 0) {
											addspeed = 1.4;
										} else {
											addspeed = 1;
										}
										holder.player._x += xspeed * addspeed;
										if (xspeed != 0 or bumpAmount != 0) {
											sideblock();
										}
										if (holder.ground.hitTest(holder.player._x + holder._x, holder.player._y + holder._y + 1, true)) {
											groundplayer();
										}
										--jumpdelay;
										--groundedcount;
										if ((Key.isDown(38) or Key.isDown(87)) and (grounded and !jumping and groundedcount > 0 and jumpdelay < 0) and !holder.ground.hitTest(holder.player._x + holder._x, holder.player._y + holder._y - tilesize * 2 - 5, true)) {
											jump();
											playjump();
										}
										if (effectJump > 0) {
											addJump = 1.35;
										} else {
											addJump = 1;
										}
										if (jumping) {
											if (Key.isDown(38) or Key.isDown(87) or jumptime < minjumptime) {
												holder.player._y -= fallspeed + jumprate * ((maxjumptime - jumptime) / maxjumptime) * addJump;
											}
											if (!Key.isDown(38) and !Key.isDown(87) and jumptime > minjumptime or jumptime >= maxjumptime) {
												jumping = false;
												wasjumping = true;
											}
											fallspeed = 0;
											++jumptime;
										}
										if (holder.player._y + holder._y > stageheight + 100) {
											++falldeath_count;
											if (falldeath_count > 30) {
												takedamage(1);
												holder.player._x = startx;
												holder.player._y = starty;
												dying = false;
												playsound('falldeath1Sound');
											}
										} else {
											falldeath_count = 0;
											xdiff = Math.abs(holder.player._x - prex);
											if (xdiff > tilesize) {
												holder.player._x = prex;
											}
											ydiff = Math.abs(holder.player._y - prey);
											if (ydiff > tilesize) {
												holder.player._y = prey;
											}
										}
									} else {
										if (climbing) {
											climb();
										} else {
											if (effectGravity > 0) {
												gravityMove();
											}
										}
									}
									bumpPlayer();
									shadePlayer();
									delayDamage();
								}
							}
							fall();
							while (holder.ground.hitTest(holder.player._x + holder._x - playwidth / 2 + playheight * 0.25, holder.player._y + holder._y - 1, true) or holder.ground.hitTest(holder.player._x + holder._x + playwidth / 2 - playheight * 0.25, holder.player._y + holder._y - 1, true)) {
								holder.player._y = Math.floor(holder.player._y / tilesize) * tilesize;
							}
							if (jumping and (holder.ground.hitTest(holder.player._x + holder._x - playwidth / 2, holder.player._y + holder._y - playheight, true) or holder.ground.hitTest(holder.player._x + holder._x + playwidth / 2, holder.player._y + holder._y - playheight, true) or holder.ground.hitTest(holder.player._x + holder._x, holder.player._y + holder._y - playheight, true))) {
								holder.player._y = Math.ceil(holder.player._y / tilesize) * tilesize;
								jumping = false;
								wasjumping = true;
							}
							if (holder.player._y < 25) {
								holder.player._y = 25;
							}
							if (health < 0) {
								dying = true;
							}
						} else {
							if (!fadeout) {
								fall();
								while (holder.ground.hitTest(holder.player._x + holder._x - playwidth / 2 + playheight * 0.25, holder.player._y + holder._y - 1, true) or holder.ground.hitTest(holder.player._x + holder._x + playwidth / 2 - playheight * 0.25, holder.player._y + holder._y - 1, true)) {
									holder.player._y = Math.floor(holder.player._y / tilesize) * tilesize;
								}
							}
							++die_count;
							holder.player.setBrightness(0);
							if (die_count > 90) {
								if (health < 0) {
									gotoAndStop('gameover');
									clear_all();
									delete onEnterFrame;
								}
								effectPoison = 0;
								health = maxhealth;
								update_life();
								dying = false;
								holder.player._x = startx;
								holder.player._y = starty;
								xspeed = 0;
							}
						}
						if (!deb1) {
							trace('hitting character frame decider');
							trace('cutscene ' + cutscene);
							trace('msgbox._visible ' + msgbox._visible);
							trace('game_paused ' + game_paused);
						}
						if (effectPoison > 0) {
							holder.player.gotoAndStop(3);
						} else {
							if (effectJump > 0 or effectSpeed > 0 or effectScience > 0) {
								holder.player.gotoAndStop(2);
							} else {
								holder.player.gotoAndStop(1);
							}
						}
						if (cutscene or msgbox._visible or game_paused) {
							holder.player.anims.gotoAndStop('standing');
						} else {
							if (dying) {
								holder.player.anims.gotoAndStop('dying');
							} else {
								if (teleporting) {
									holder.player.anims.gotoAndStop('teleporting');
								} else {
									if (attacking) {
										holder.player.anims.gotoAndStop('throwing');
									} else {
										if (drinking) {
											holder.player.anims.gotoAndStop('drinking');
										} else {
											if (climbing) {
												arrowcheck();
												if (arrowdown) {
													holder.player.anims.gotoAndStop('climbing');
												} else {
													holder.player.anims.gotoAndStop('holding');
												}
											} else {
												if (effectGravity > 0) {
													holder.player.anims.gotoAndStop('jumping');
												} else {
													if (msgbox._visible) {
														holder.player.anims.gotoAndStop('standing');
													} else {
														if (jumping) {
															holder.player.anims.gotoAndStop('jumping');
														} else {
															if ((wasjumping or fallspeed > 0) and attcount <= 0) {
																holder.player.anims.gotoAndStop('falling');
															} else {
																if (Math.abs(xspeed) > 2 or (Key.isDown(39) or Key.isDown(68) or Key.isDown(37) or Key.isDown(65)) and !sdown) {
																	++walk_sound;
																	if (walk_sound == 4) {
																		playsound('step1Sound');
																	} else {
																		if (walk_sound == 12) {
																			playsound('step2Sound');
																		} else {
																			if (walk_sound == 16) {
																				walk_sound = 0;
																			}
																		}
																	}
																	holder.player.anims.gotoAndStop('walking');
																} else {
																	if (shrugging > 0) {
																		holder.player.anims.gotoAndStop('shrugging');
																	} else {
																		holder.player.anims.gotoAndStop('standing');
																	}
																}
															}
														}
													}
												}
											}
										}
									}
								}
							}
						}
					}
				}
			}
			function sideblock() {
				if (holder.ground.hitTest(holder.player._x + holder._x + playwidth / 2 + xspeed, holder.player._y + holder._y - playheight * 0.25, true) or holder.ground.hitTest(holder.player._x + holder._x + playwidth / 2 + xspeed, holder.player._y + holder._y - playheight * 0.5, true)) {
					holder.player._x = Math.floor(holder.player._x / tilesize) * tilesize + playwidth / 2;
					xspeed = 0;
					bumpAmount = 0;
					sideblocking = true;
				} else {
					if (holder.ground.hitTest(holder.player._x + holder._x - playwidth / 2 + xspeed, holder.player._y + holder._y - playheight * 0.25, true) or holder.ground.hitTest(holder.player._x + holder._x - playwidth / 2 + xspeed, holder.player._y + holder._y - playheight * 0.5, true)) {
						holder.player._x = Math.ceil(holder.player._x / tilesize) * tilesize - playwidth / 2;
						xspeed = 0;
						bumpAmount = 0;
						sideblocking = true;
					} else {
						sideblocking = false;
					}
				}
			}
			function jump() {
				grounded = false;
				jumping = true;
				jumptime = 0;
				playjump();
			}
			function groundplayer() {
				if (fallspeed > 2) {
					playsound('land1Sound');
					jumpdelay = 2;
				}
				grounded = true;
				groundedcount = 8;
				fallspeed = 0;
				jumping = false;
				wasjumping = false;
				groundtime = 2;
			}
			function reduce_effects() {
				if (effectJump > 0) {
					--effectJump;
				}
				if (effectSpeed > 0) {
					--effectSpeed;
				}
				if (effectScience > 0) {
					--effectScience;
				}
				if (effectHealth > 0) {
					--effectHealth;
					if (effectHealth == 0) {
						maxhealth -= 5;
						health = maxhealth;
						clear_life();
						load_life();
					}
				}
				if (effectInvisibility > 0) {
					--effectInvisibility;
					holder.player._alpha = 35;
				} else {
					if (effectInvisibility == 0 and effectPoison == 0 and damageDelay == 0) {
						holder.player._alpha = 100;
					}
				}
				if (effectGravity > 0) {
					--effectGravity;
				}
				if (effectPoison > 0) {
					--effectPoison;
					if (effectPoison % framerate * 5 == 0) {
						shadeCount = 30;
						takedamage(1);
					}
				}
			}
			function create_blood(xx, yy, yrange, type, more) {
				if (type == null) {
					type = 'blood';
				}
				if (more == null) {
					more = 0;
				}
				playblood();
				++count;
				_root.createEmptyMovieClip('bloodgen' + count, count);
				_root['bloodgen' + count].num = 10 + more;
				_root['bloodgen' + count].onEnterFrame = function () {
					this.num -= 0.5;
					if (this.num > 0) {
						if (this.num % 1 == 0) {
							++_root.count;
							holder.nohtobjects.attachMovie(type, 'blood' + _root.count, _root.count);
							holder.nohtobjects['blood' + _root.count]._x = xx + (random(20) / 10) * _root.tilesize - _root.tilesize;
							holder.nohtobjects['blood' + _root.count]._y = yy - random(yrange);
						}
					} else {
						this.removeMovieClip();
					}
				};
			}
			function create_pickupanim(xx, yy) {
				++count;
				holder.attachMovie('pickupanim', 'pickupanim' + count, count);
				holder['pickupanim' + count]._x = xx;
				holder['pickupanim' + count]._y = yy;
			}
			function createSmallFlyer(xx, yy) {
				playsound('flyface2Sound');
				++count;
				holder.objects.attachMovie('objects', 'object' + count, count);
				holder.objects['object' + count]._x = xx;
				holder.objects['object' + count]._y = yy;
				holder.objects['object' + count].gotoAndStop(39);
				holder.objects['object' + count].specarr = new Array(0, 0, 0, 0, 1);
			}
			function createDroneBullet(xx, yy) {
				playsound('laser1Sound');
				++count;
				holder.nohtobjects.attachMovie('dronebullet', 'dronebullet' + count, count);
				holder.nohtobjects['dronebullet' + count]._x = xx;
				holder.nohtobjects['dronebullet' + count]._y = yy;
				holder.nohtobjects['dronebullet' + count].angleradian = Math.atan2(holder.player._y - yy, holder.player._x - xx);
				holder.nohtobjects['dronebullet' + count].xspeed = 5 * Math.cos(holder.nohtobjects['dronebullet' + count].angleradian);
				holder.nohtobjects['dronebullet' + count].yspeed = 5 * Math.sin(holder.nohtobjects['dronebullet' + count].angleradian);
				holder.nohtobjects['dronebullet' + count].xtwirl = 0;
				holder.nohtobjects['dronebullet' + count].ytwirl = 3;
				holder.nohtobjects['dronebullet' + count].xdir = -1;
				holder.nohtobjects['dronebullet' + count].ydir = -1;
				holder.nohtobjects['dronebullet' + count].maxtwirl = 3;
				holder.nohtobjects['dronebullet' + count].onEnterFrame = function () {
					if (!game_paused) {
						if (this._currentframe == 1) {
							this._x += this.xspeed + this.xtwirl;
							this._y += this.yspeed + this.ytwirl;
							this.xtwirl += this.xdir / 4;
							this.ytwirl += this.ydir / 4;
							if (this.xtwirl > this.maxtwirl or this.xtwirl < -this.maxtwirl) {
								this.xtwirl *= -1;
							}
							if (this.ytwirl > this.maxtwirl or this.ytwirl < -this.maxtwirl) {
								this.ytwirl *= -1;
							}
							if (_root.holder.ground.hitTest(this._x + holder._x, this._y + holder._y, true)) {
								playsplash();
								this.play();
								this._y = Math.floor(this._y / tilesize) * tilesize;
							}
							if (_root.damageDelay == 0 and _root.effectInvisibility == 0 and _root.holder.player.hitTest(this._x + holder._x, this._y + holder._y, true) and this._currentframe == 1) {
								takedamage(1);
								_root.xspeed = 0;
								_root.shadeCount = 30;
								playsplash();
								this.play();
								if (this.xspeed < 0) {
									_root.bumpAmount -= _root.standardBump;
								} else {
									_root.bumpAmount += _root.standardBump;
								}
							}
						}
						if (this._y > stageHeight + 100 or this._y < -100 or this._x < -100 or this._x > stageWidth + 100) {
							this.removeMovieClip();
						}
					}
				};
			}
			function createStarSpit(xx, yy, xspeed, yspeed) {
				playsound('flyface1Sound');
				++count;
				holder.nohtobjects.attachMovie('starspit', 'dronebullet' + count, count);
				holder.nohtobjects['dronebullet' + count]._x = xx;
				holder.nohtobjects['dronebullet' + count]._y = yy;
				holder.nohtobjects['dronebullet' + count].xspeed = xspeed;
				holder.nohtobjects['dronebullet' + count].yspeed = yspeed;
				holder.nohtobjects['dronebullet' + count].xtwirl = 0;
				holder.nohtobjects['dronebullet' + count].ytwirl = 3;
				holder.nohtobjects['dronebullet' + count].xdir = -1;
				holder.nohtobjects['dronebullet' + count].ydir = -1;
				holder.nohtobjects['dronebullet' + count].maxtwirl = 3;
				holder.nohtobjects['dronebullet' + count].onEnterFrame = function () {
					if (!game_paused) {
						if (this._currentframe == 1) {
							this._x += this.xspeed + this.xtwirl;
							this._y += this.yspeed + this.ytwirl;
							this.xtwirl += this.xdir / 4;
							this.ytwirl += this.ydir / 4;
							if (this.xtwirl > this.maxtwirl or this.xtwirl < -this.maxtwirl) {
								this.xtwirl *= -1;
							}
							if (this.ytwirl > this.maxtwirl or this.ytwirl < -this.maxtwirl) {
								this.ytwirl *= -1;
							}
							if (_root.holder.ground.hitTest(this._x + holder._x, this._y + holder._y, true)) {
								playsplash();
								this.play();
								this._y = Math.floor(this._y / tilesize) * tilesize;
							}
							if (_root.damageDelay == 0 and _root.effectInvisibility == 0 and _root.holder.player.hitTest(this._x + holder._x, this._y + holder._y, true) and this._currentframe == 1) {
								takedamage(1);
								_root.xspeed = 0;
								_root.shadeCount = 30;
								playsplash();
								this.play();
								if (this.xspeed < 0) {
									_root.bumpAmount -= _root.standardBump;
								} else {
									_root.bumpAmount += _root.standardBump;
								}
							}
						}
						if (this._y > stageHeight + 100 or this._y < -100 or this._x < -100 or this._x > stageWidth + 100) {
							this.removeMovieClip();
						}
					}
				};
			}
			function createAcid(xx, yy) {
				++count;
				holder.nohtobjects.attachMovie('slime_acid', 'acid' + count, count);
				holder.nohtobjects['acid' + count]._x = xx;
				holder.nohtobjects['acid' + count]._y = yy;
				holder.nohtobjects['acid' + count].lifeCount = 0;
				holder.nohtobjects['acid' + count].onEnterFrame = function () {
					++this.lifeCount;
					if (this.lifeCount >= framerate * 1.5) {
						this._alpha -= 5;
						if (this._alpha <= 0) {
							this.removeMovieClip();
						}
					} else {
						if (_root.damageDelay == 0 and _root.effectInvisibility == 0 and _root.holder.player.hitTest(this._x + holder._x, this._y + holder._y - this._height / 2, true)) {
							takedamage(1);
							_root.shadeCount = 30;
						}
					}
				};
			}
			function createZealotBolt(xx, yy) {
				if (_root.holder.ground.hitTest(xx + holder._x, yy + holder._y + 5, true)) {
					++count;
					holder.nohtobjects.attachMovie('zealotbolt', 'acid' + count, count);
					holder.nohtobjects['acid' + count]._x = xx;
					holder.nohtobjects['acid' + count]._y = yy;
					holder.nohtobjects['acid' + count].onEnterFrame = function () {
						if (this._currentframe < 10 and _root.damageDelay == 0 and _root.effectInvisibility == 0 and _root.holder.player.hitbox.hitTest(this._x + holder._x, this._y + holder._y - this._height / 2, true)) {
							takedamage(1);
							_root.shadeCount = 30;
						}
					};
				}
			}
			function createMilitaryBullet(xx, yy, dir, type) {
				++count;
				holder.nohtobjects.attachMovie('militarybullet', 'militarybullet' + count, count);
				holder.nohtobjects['militarybullet' + count]._x = xx;
				holder.nohtobjects['militarybullet' + count]._y = yy;
				holder.nohtobjects['militarybullet' + count].xspeed = 10 * dir;
				holder.nohtobjects['militarybullet' + count]._xscale = 100 * dir;
				holder.nohtobjects['militarybullet' + count].onEnterFrame = function () {
					if (!game_paused and !msgbox._visible) {
						if (!this.groundHit) {
							this._x += this.xspeed;
						}
						if (!this.groundHit and _root.holder.ground.hitTest(this._x + holder._x, this._y + holder._y, true)) {
							this.groundHit = true;
							playsplash();
							this.play();
						}
						if (type == 1) {
							arrlen = military2arr.length;
							i = 0;
							while (i < arrlen) {
								if (military2arr[i].damageDelay <= 0 and this.hitTest(military2arr[i])) {
									if (this.xspeed > 0) {
										military2arr[i].bumpAmount += 20;
									} else {
										military2arr[i].bumpAmount -= 20;
									}
									--military2arr[i].life;
									military2arr[i].flashCount = 30;
									military2arr[i].damageDelay = 30;
									military2arr[i].freezeCount = 0;
									this.groundHit = true;
									playsplash();
									this.play();
								}
								++i;
							}
						} else {
							arrlen = military1arr.length;
							i = 0;
							while (i < arrlen) {
								if (military1arr[i].damageDelay <= 0 and this.hitTest(military1arr[i])) {
									if (this.xspeed > 0) {
										military1arr[i].bumpAmount += 20;
									} else {
										military1arr[i].bumpAmount -= 20;
									}
									--military1arr[i].life;
									military1arr[i].flashCount = 30;
									military1arr[i].damageDelay = 30;
									military1arr[i].freezeCount = 0;
									this.groundHit = true;
									playsplash();
									this.play();
								}
								++i;
							}
						}
						if (_root.damageDelay == 0 and _root.effectInvisibility == 0 and _root.holder.player.hitTest(this._x + holder._x, this._y + holder._y, true) and this._currentframe == 1) {
							takedamage(1);
							bf1 = true;
							bf2 = true;
							bf3 = true;
							bf4 = true;
							_root.xspeed = 0;
							_root.shadeCount = 30;
							this.groundHit = true;
							playsplash();
							this.play();
							if (this.xspeed < 0) {
								_root.bumpAmount -= _root.standardBump;
							} else {
								_root.bumpAmount += _root.standardBump;
							}
						}
						if (this._y > stageHeight + 100 or this._x < -50 or this._x > stageWidth + 50) {
							this.removeMovieClip();
						}
					}
				};
			}
			function createFairyBolt(xx, yy, dir) {
				playfairy();
				++count;
				holder.nohtobjects.attachMovie('fairy1bolt', 'fairy1bolt' + count, count);
				holder.nohtobjects['fairy1bolt' + count]._x = xx;
				holder.nohtobjects['fairy1bolt' + count]._y = yy;
				holder.nohtobjects['fairy1bolt' + count].xspeed = 8 * dir;
				holder.nohtobjects['fairy1bolt' + count].yspeed = 2.5 - random(50) / 10;
				holder.nohtobjects['fairy1bolt' + count]._xscale = 100 * dir;
				holder.nohtobjects['fairy1bolt' + count].onEnterFrame = function () {
					if (!game_paused and !msgbox._visible) {
						if (!this.groundHit) {
							this._x += this.xspeed;
							this._y += this.yspeed;
						}
						if (!this.groundHit and _root.holder.ground.hitTest(this._x + holder._x, this._y + holder._y, true)) {
							this.groundHit = true;
							playsplash();
							this.play();
						}
						if (_root.damageDelay == 0 and _root.effectInvisibility == 0 and _root.holder.player.hitbox.hitTest(this._x + holder._x, this._y + holder._y, true) and this._currentframe == 1) {
							takedamage(1);
							_root.xspeed = 0;
							_root.shadeCount = 30;
							this.groundHit = true;
							playsplash();
							this.play();
							if (this.xspeed < 0) {
								_root.bumpAmount -= _root.standardBump;
							} else {
								_root.bumpAmount += _root.standardBump;
							}
						}
						if (this._y > stageHeight + 100 or this._x < -50 or this._x > stageWidth + 50) {
							this.removeMovieClip();
						}
					}
				};
			}
			function createCraneCrate(xx, yy, xspeed) {
				++count;
				holder.nohtobjects.attachMovie('cranecrate', 'crate' + count, count);
				holder.nohtobjects['crate' + count]._x = xx;
				holder.nohtobjects['crate' + count]._y = yy;
				holder.nohtobjects['crate' + count].xspeed = xspeed;
				holder.nohtobjects['crate' + count].yspeed = 0;
				holder.nohtobjects['crate' + count].cacheAsBitmap();
				holder.nohtobjects['crate' + count].onEnterFrame = function () {
					if (!game_paused and !msgbox._visible) {
						if (!this.groundHit) {
							this._x += this.xspeed;
							this._y += this.yspeed;
							++this.yspeed;
							if (_root.damageDelay == 0 and _root.effectInvisibility == 0 and _root.holder.player.hitTest(this._x + holder._x, this._y + holder._y, true)) {
								takedamage(1);
								_root.shadeCount = 30;
							}
							if (_root.holder.ground.hitTest(this._x + holder._x, this._y + holder._y + this.yspeed, true)) {
								playsound('artillery1Sound');
								this.groundHit = true;
								this._y = Math.ceil(this._y / tilesize) * tilesize - tilesize / 2;
								while (_root.holder.ground.hitTest(this._x + holder._x, this._y + holder._y, true)) {
									this._y -= 32;
								}
								delete this.onEnterFrame;
							}
							if (this.xspeed > 0 and _root.holder.ground.hitTest(this._x + holder._x + this.xspeed + this._width / 2, this._y + holder._y, true)) {
								this._x = Math.floor(this._x / tilesize) * tilesize + tilesize / 2;
								this.xspeed = 0;
							} else {
								if (this.xspeed < 0 and _root.holder.ground.hitTest(this._x + holder._x + this.xspeed - this._width / 2, this._y + holder._y, true)) {
									this._x = Math.ceil(this._x / tilesize) * tilesize - tilesize / 2;
									this.xspeed = 0;
								}
							}
						}
						if (this._y > stageHeight + 100) {
							this.removeMovieClip();
						}
					}
				};
			}
			function createFlowerSpit(xx, yy) {
				++count;
				holder.nohtobjects.attachMovie('flowerspit', 'flowerspit' + count, count);
				holder.nohtobjects['flowerspit' + count]._x = xx;
				holder.nohtobjects['flowerspit' + count]._y = yy;
				holder.nohtobjects['flowerspit' + count].xspeed = random(100) / 10 - 5;
				holder.nohtobjects['flowerspit' + count].yspeed = -random(50) / 10 - 10;
				holder.nohtobjects['flowerspit' + count].onEnterFrame = function () {
					if (!game_paused and !msgbox._visible) {
						if (!this.groundHit) {
							this.yspeed += 0.5;
							this._x += this.xspeed;
							this._y += this.yspeed;
						}
						if (!this.groundHit and _root.holder.ground.hitTest(this._x + holder._x, this._y + holder._y, true)) {
							this.groundHit = true;
							this._y = Math.floor(this._y / tilesize) * tilesize;
							playsound('bisi2Sound');
							this.play();
						}
						if (_root.damageDelay == 0 and _root.effectInvisibility == 0 and _root.holder.player.hitTest(this._x + holder._x, this._y + holder._y, true) and this._currentframe == 1) {
							playsound('bisi2Sound');
							takedamage(1);
							_root.xspeed = 0;
							_root.shadeCount = 30;
							this.groundHit = true;
							this.play();
							if (this.xspeed < 0) {
								_root.bumpAmount -= _root.standardBump;
							} else {
								_root.bumpAmount += _root.standardBump;
							}
						}
						if (this._y > stageHeight + 100) {
							this.removeMovieClip();
						}
					}
				};
			}
			function createCaveSpit(xx, yy, dir) {
				++count;
				holder.nohtobjects.attachMovie('cavespit', 'cavespit' + count, count);
				holder.nohtobjects['cavespit' + count]._x = xx;
				holder.nohtobjects['cavespit' + count]._y = yy;
				holder.nohtobjects['cavespit' + count].xspeed = 10 * dir * (random(20) / 100 + 0.9);
				holder.nohtobjects['cavespit' + count].yspeed = 0;
				holder.nohtobjects['cavespit' + count].onEnterFrame = function () {
					if (!game_paused) {
						if (!this.groundHit) {
							this.yspeed += 0.1;
							this._x += this.xspeed;
							this._y += this.yspeed;
						}
						if (!this.groundHit and _root.holder.ground.hitTest(this._x + holder._x, this._y + holder._y - this._height / 2, true)) {
							this.groundHit = true;
							this._y = Math.floor(this._y / tilesize) * tilesize;
							playsplash();
							this.play();
						}
						if (_root.damageDelay == 0 and _root.effectInvisibility == 0 and _root.holder.player.hitTest(this._x + holder._x, this._y + holder._y - this._height / 2, true) and this._currentframe == 1) {
							takedamage(1);
							_root.xspeed = 0;
							_root.shadeCount = 30;
							this.groundHit = true;
							playsplash();
							this.play();
							if (this.xspeed < 0) {
								_root.bumpAmount -= _root.standardBump;
							} else {
								_root.bumpAmount += _root.standardBump;
							}
						}
						if (this._y > stageHeight + 100) {
							this.removeMovieClip();
						}
					}
				};
			}
			function createCaveSpit2(xx, yy, dir) {
				++count;
				holder.nohtobjects.attachMovie('cavespit2', 'cavespit' + count, count);
				holder.nohtobjects['cavespit' + count]._x = xx;
				holder.nohtobjects['cavespit' + count]._y = yy;
				holder.nohtobjects['cavespit' + count].xspeed = 7 * dir * (random(80) / 100 + 0.6);
				holder.nohtobjects['cavespit' + count].yspeed = -4 * (random(80) / 100 + 0.6);
				holder.nohtobjects['cavespit' + count].onEnterFrame = function () {
					if (!game_paused) {
						if (!this.groundHit) {
							this.yspeed += 0.5;
							this._x += this.xspeed;
							this._y += this.yspeed;
						}
						if (!this.groundHit and _root.holder.ground.hitTest(this._x + holder._x, this._y + holder._y - this._height / 2 + this.yspeed, true)) {
							this.groundHit = true;
							this._y = Math.floor(this._y / tilesize) * tilesize;
							playsplash();
							this.play();
						}
						if (_root.damageDelay == 0 and _root.effectInvisibility == 0 and _root.holder.player.hitTest(this._x + holder._x, this._y + holder._y - this._height / 2, true) and this._currentframe == 1) {
							takedamage(1);
							_root.xspeed = 0;
							_root.shadeCount = 30;
							this.groundHit = true;
							playsplash();
							this.play();
							if (this.xspeed < 0) {
								_root.bumpAmount -= _root.standardBump;
							} else {
								_root.bumpAmount += _root.standardBump;
							}
						}
						if (this._y > stageHeight + 100) {
							this.removeMovieClip();
						}
					}
				};
			}
			function createBody(xx, yy, id, fallcheck, dir) {
				if (fallcheck == null) {
					fallcheck = true;
				}
				++count;
				holder.nohtobjects.attachMovie('deadBody', 'deadBody' + count, count);
				holder.nohtobjects['deadBody' + count]._x = xx;
				holder.nohtobjects['deadBody' + count]._y = yy;
				holder.nohtobjects['deadBody' + count]._xscale = dir;
				holder.nohtobjects['deadBody' + count].gotoAndStop(id);
				holder.nohtobjects['deadBody' + count].doOnce = true;
				holder.nohtobjects['deadBody' + count].onEnterFrame = function () {
					if (!game_paused) {
						if (this.doOnce) {
							this.yspeed = 0;
							this.fall = true;
							this.doOnce = false;
							if (!fallcheck) {
								this.fall = false;
							}
						}
						if (this.fall and !_root.holder.ground.hitTest(this._x + _root.holder._x, this._y + _root.holder._y + this.yspeed, true)) {
							this.yspeed += 0.5;
							this._y += this.yspeed;
							if (this._y > _root.stageHeight * 2) {
								this.removeMovieClip();
							}
						} else {
							if (this.fall) {
								this.yspeed = false;
								this._x = int(this._x);
								this._y = int(this._y);
								this._y = Math.ceil(this._y / tilesize) * tilesize;
								this.fall = false;
							}
						}
					}
				};
			}
			function createAcidRain() {
				if (!actions[55]) {
					rainarr = [];
					raindelay = 2;
					i = 0;
					while (i < 30) {
						++count;
						attachMovie('acidrain', 'acidrain' + i, count);
						rainarr.push(_root['acidrain' + i]);
						_root['acidrain' + i].cacheAsBitmap();
						_root['acidrain' + i]._x = random(stagewidth);
						_root['acidrain' + i]._y = random(stageheight);
						++i;
					}
					++count;
					msgbox.swapDepths(count);
				}
			}
			function runAcidRain() {
				if (!actions[55]) {
					--raindelay;
					if (raindelay == 0) {
						raindelay = 1;
						rainarrlen = rainarr.length;
						i = 0;
						while (i < rainarrlen) {
							rainarr[i]._x -= 10;
							rainarr[i]._y += 15;
							if (rainarr[i]._x < -50) {
								rainarr[i]._x += stagewidth + 50 + random(100);
							}
							if (rainarr[i]._y > stageheight + 50) {
								rainarr[i]._y -= stageheight + 50 + random(100);
							}
							++i;
						}
					}
				}
			}
			function dropHealth(xx, yy, chance) {
				if (chance == null) {
					chance = 25;
				}
				rnd = random(100);
				if (health < maxhealth and chance > rnd) {
					++count;
					holder.nohtobjects.attachMovie('healthp', 'healthp' + count, count);
					holder.nohtobjects['healthp' + count]._x = xx;
					holder.nohtobjects['healthp' + count]._y = yy;
					if (holder.player._x > xx) {
						holder.nohtobjects['healthp' + count].xspeed = -random(30) / 10 - 2;
					} else {
						holder.nohtobjects['healthp' + count].xspeed = random(30) / 10 + 2;
					}
					holder.nohtobjects['healthp' + count].yspeed = -random(30) / 10 - 5;
					holder.nohtobjects['healthp' + count].bouncing = true;
					holder.nohtobjects['healthp' + count].bouncecount = 0;
					holder.nohtobjects['healthp' + count].onEnterFrame = function () {
						if (!game_paused) {
							if (this.hitTest(holder.player)) {
								++health;
								update_life();
								create_pickupanim(_x, _y - tilesize);
								playsound('heal1Sound');
								this.removeMovieClip();
							}
							if (this.bouncing) {
								++this.bouncecount;
								if (this.bouncecount % 10 == 0) {
									this.particle._rotation += 45 * this.xspeed / Math.abs(this.xspeed);
								}
								this._x += this.xspeed;
								this._y += this.yspeed;
								this.yspeed += 0.5;
								if (this.xspeed > 0) {
									if (_root.holder.ground.hitTest(this._x + _root.holder._x + this._width / 2, this._y + _root.holder._y - this._height, true)) {
										this.xspeed *= -0.7;
									}
								} else {
									if (_root.holder.ground.hitTest(this._x + _root.holder._x - this._width / 2, this._y + _root.holder._y - this._height, true)) {
										this.xspeed *= -0.7;
									}
								}
								while (_root.holder.ground.hitTest(this._x + _root.holder._x, this._y + _root.holder._y - this._height, true)) {
									++this._y;
								}
								if (_root.holder.ground.hitTest(this._x + _root.holder._x, this._y + _root.holder._y, true)) {
									this._y = Math.floor(this._y / tilesize) * tilesize;
									this.yspeed *= -0.7;
									this.xspeed *= 0.8;
									if (Math.abs(this.yspeed) < 2) {
										this.bouncing = false;
										this._y = Math.floor(this._y / tilesize) * tilesize;
										while (!_root.holder.ground.hitTest(this._x + _root.holder._x, this._y + _root.holder._y, true)) {
											++this._y;
										}
									}
								}
							}
						}
					};
				}
			}
			function create_cloud(xx, yy, id) {
				++count;
				holder.createEmptyMovieClip('cloudgen' + count, count);
				holder['cloudgen' + count].count = 0;
				holder['cloudgen' + count].num = 0;
				if (id == 0) {
					targ = 'cloudsMolotov';
					playfire();
					bossfreezepotion = true;
				} else {
					if (id == 1) {
						targ = 'cloudsIce';
						playice();
					} else {
						if (id == 2) {
							targ = 'cloudsExplosion';
							playexplosion();
							bossfreezepotion = true;
						} else {
							if (id == 8) {
								targ = 'cloudsLanguage';
								playsound('reveal1Sound');
							} else {
								if (id == 9) {
									targ = 'cloudsOxygen';
									playsound('oxygen1Sound');
								}
							}
						}
					}
				}
				holder['cloudgen' + count].onEnterFrame = function () {
					if (!game_paused) {
						++this.count;
						if (this.count > 0) {
							i = 0;
							while (i < 2) {
								this.count = 0;
								++this.num;
								++count;
								holder[targ].attachMovie('cloud', 'cloud' + count, count);
								holder[targ]['cloud' + count]._x = xx + (random(tilesize * 40) / 10 - tilesize * 2);
								holder[targ]['cloud' + count]._y = yy + 2 * tilesize - random(tilesize * 5);
								holder[targ]['cloud' + count].gotoAndStop(id + 1);
								++i;
							}
						}
						if (this.num > 25) {
							this.removeMovieClip();
						}
					}
				};
			}
			function camerafollow(xcam, ycam) {
				if (holder.player._xscale > 0) {
					playerxtarg = stagewidth * 0.4;
				} else {
					playerxtarg = stagewidth * 0.6;
				}
				playerytarg = stageheight * 0.6;
				playerxtargdiff = playerxtarg - (holder.player._x + holder._x);
				if (Math.abs(playerxtargdiff) > 5) {
					holder._x += playerxtargdiff * (xcam + Math.abs(xcam * xspeed / walkspeed));
					if (holder._x > 0) {
						holder._x = 0;
					}
					if (holder._x < -levelwidth + stagewidth) {
						holder._x = -levelwidth + stagewidth;
					}
				}
				playerytargdiff = playerytarg - (holder.player._y + holder._y);
				if (Math.abs(playerytargdiff) > 5) {
					holder._y += playerytargdiff * ycam;
					if (holder._y < -levelheight + stageheight) {
						holder._y = -levelheight + stageheight;
					}
					if (holder._y > 0) {
						holder._y = 0;
					}
				}
				holder._x = int(holder._x);
				holder._y = int(holder._y);
			}
			function bgmove(bgam) {
				if (!game_paused) {
					if (bgam == null) {
						bgam = 0.8;
					}
					if (!dying and !fadeout) {
						begxdiff = holder._x - begx;
						begydiff = holder._y - begy;
						holder.bg._x -= begxdiff * bgam;
						holder.bg._y -= begydiff * bgam;
						fbegxdiff = holder._x - begx;
						fbegydiff = holder._y - begy;
						holder.frontbg._x -= fbegxdiff * bgam * 0.8;
						holder.frontbg._y -= fbegydiff * bgam * 0.95;
						if (holder.frontbg._y > levelheight - stageheight) {
							holder.frontbg._y = levelheight - stageheight;
						}
					}
				}
			}
			function fall() {
				if (!climbing and effectGravity == 0) {
					if (groundtime > 0) {
						--groundtime;
					}
					if (groundtime == 0) {
						holder.player._y += fallspeed;
						fallspeed += maxfallspeed / falltime;
						if (fallspeed > maxfallspeed) {
							fallspeed = maxfallspeed;
						}
					}
				}
			}
			function gravityMove() {
				if (effectSpeed > 0 or effectJump > 0) {
					addspeed = 1.4;
				} else {
					addspeed = 1;
				}
				if (Key.isDown(39) or Key.isDown(68)) {
					swimx += swimspeed / swimacctime;
					holder.player._xscale = 100;
				} else {
					if (Key.isDown(37) or Key.isDown(65)) {
						swimx -= swimspeed / swimacctime;
						holder.player._xscale = -100;
					} else {
						swimx *= swimslide;
					}
				}
				if (Key.isDown(40) or Key.isDown(83)) {
					swimy += swimspeed / swimacctime;
				} else {
					if (Key.isDown(38) or Key.isDown(87)) {
						swimy -= swimspeed / swimacctime;
					} else {
						swimy *= swimslide;
						if (swimy < 1) {
							swimy += 0.2;
						}
					}
				}
				if (swimx > swimspeed) {
					swimx = swimspeed;
				} else {
					if (swimx < -swimspeed) {
						swimx = -swimspeed;
					}
				}
				if (swimy > swimspeed) {
					swimy = swimspeed;
				} else {
					if (swimy < -swimspeed) {
						swimy = -swimspeed;
					}
				}
				holder.player._x += swimx * addspeed;
				holder.player._y += swimy * addspeed;
				while (holder.ground.hitTest(holder.player._x + holder._x + playwidth / 2, holder.player._y + holder._y - playheight / 2, true)) {
					--holder.player._x;
					swimx = 0;
				}
				while (holder.ground.hitTest(holder.player._x + holder._x - playwidth / 2, holder.player._y + holder._y - playheight / 2, true)) {
					++holder.player._x;
					swimx = 0;
				}
				while (holder.ground.hitTest(holder.player._x + holder._x, holder.player._y + holder._y, true)) {
					--holder.player._y;
					swimy = 0;
				}
				while (holder.ground.hitTest(holder.player._x + holder._x, holder.player._y + holder._y - playheight, true)) {
					++holder.player._y;
					swimy = 0;
				}
			}
			function climb() {
				if (effectSpeed > 0) {
					addspeed = 1.4;
				} else {
					addspeed = 1;
				}
				if (Key.isDown(39) or Key.isDown(68)) {
					holder.player._x += climbspeed * addspeed;
					holder.player._xscale = 100;
				} else {
					if (Key.isDown(37) or Key.isDown(65)) {
						holder.player._x -= climbspeed * addspeed;
						holder.player._xscale = -100;
					}
				}
				if (Key.isDown(40) or Key.isDown(83)) {
					holder.player._y += climbspeed * addspeed;
				} else {
					if (Key.isDown(38) or Key.isDown(87)) {
						holder.player._y -= climbspeed * addspeed;
					}
				}
				while (holder.ground.hitTest(holder.player._x + holder._x + playwidth / 2, holder.player._y + holder._y - playheight / 2, true)) {
					--holder.player._x;
				}
				while (holder.ground.hitTest(holder.player._x + holder._x - playwidth / 2, holder.player._y + holder._y - playheight / 2, true)) {
					++holder.player._x;
				}
				while (holder.ground.hitTest(holder.player._x + holder._x, holder.player._y + holder._y, true)) {
					--holder.player._y;
				}
				while (holder.ground.hitTest(holder.player._x + holder._x, holder.player._y + holder._y - playheight, true)) {
					++holder.player._y;
				}
				lastwall = '';
				lastdouble = 'ground';
			}
			function takedamage(dam) {
				if (damageDelay == 0 and !game_paused and !fadeout and !fadein) {
					health -= dam;
					playhit();
					update_life();
					damageDelay = damageDelayT;
				}
			}
			function update_life() {
				i = 0;
				while (i < maxhealth) {
					if (i >= health) {
						lives_bar['health_dot' + i].gotoAndStop(2);
					} else {
						lives_bar['health_dot' + i].gotoAndStop(1);
					}
					++i;
				}
			}
			function bumpPlayer() {
				if (Math.abs(bumpAmount) < 1 or holder.ground.hitTest(holder.player._x + holder._x + bumpAmount * 2, holder.player._y + holder._y - 5, true)) {
					bumpAmount = 0;
				} else {
					holder.player._x += bumpAmount;
					bumpAmount *= 0.8;
				}
			}
			function shadePlayer() {
				if (shadeCount > 0) {
					--shadeCount;
					holder.player.setBrightness(random(100));
					if (shadeCount == 0) {
						holder.player.setBrightness(0);
					}
				}
			}
			function delayDamage() {
				if (damageDelay > 0) {
					--damageDelay;
					if (damageDelay % framerate / 6 == 1) {
						if (flashTicker == 1) {
							holder.player._alpha = 50;
							flashTicker = 2;
						} else {
							holder.player._alpha = 80;
							flashTicker = 1;
						}
					}
					if (damageDelay == 0) {
						holder.player._alpha = 100;
						flashTicker = 1;
					}
				}
			}
			function quickSelect() {
				if (allowPrev and !drinking and !attacking and uniquepotions > 1 and (Key.isDown(81) or Key.isDown(90))) {
					allowPrev = false;
					selectedpotion = previousPotion;
					updateIcons();
				} else {
					if (!Key.isDown(81) and !Key.isDown(90)) {
						allowPrev = true;
					}
				}
				if (allowNext and !drinking and !attacking and uniquepotions > 1 and (Key.isDown(69) or Key.isDown(88))) {
					allowNext = false;
					selectedpotion = nextPotion;
					updateIcons();
				} else {
					if (!Key.isDown(69) and !Key.isDown(88)) {
						allowNext = true;
					}
				}
			}
			function updateIcons() {
				uniquepotions = 0;
				i = 0;
				while (i < numpotions) {
					if (potionsarr[i] > 0) {
						++uniquepotions;
					}
					++i;
				}
				if (selectedpotion != null and uniquepotions > 1 and !cutscene) {
					potionShortcut._visible = true;
					if (potionsarr[selectedpotion] > 0) {
						potionShortcut.currIcon._visible = true;
						potionShortcut.currIcon.gotoAndStop(selectedpotion + 1);
						potionShortcut.desc = _root.potionsnames[selectedpotion];
						if (selectedpotion == 0 or selectedpotion == 1 or selectedpotion == 2) {
							potionShortcut.num = 'INF';
						} else {
							potionShortcut.num = _root.potionsarr[selectedpotion];
						}
					} else {
						potionShortcut.currIcon._visible = false;
						potionShortcut.desc = '';
						potionShortcut.num = '';
					}
					potionShortcut.nextIcon._visible = false;
					potionShortcut.nextDesc = '';
					potionShortcut.nextButtons = '';
					i = 0;
					while (i < numpotions) {
						nextOffset = i + selectedpotion;
						if (nextOffset > numpotions - 1) {
							nextOffset -= numpotions;
						}
						if (potionsarr[nextOffset] > 0 and nextOffset != selectedpotion) {
							potionShortcut.nextIcon._visible = true;
							potionShortcut.nextIcon.gotoAndStop(nextOffset + 1);
							potionShortcut.nextDesc = _root.potionsnames[nextOffset];
							potionShortcut.nextButtons = 'E / X';
							nextPotion = nextOffset;
							break;
						}
						++i;
					}
					potionShortcut.prevIcon._visible = false;
					potionShortcut.prevDesc = '';
					potionShortcut.prevButtons = '';
					i = 0;
					while (i < numpotions) {
						prevOffset = numpotions - i + selectedpotion;
						if (prevOffset < 0) {
							prevOffset += numpotions;
						}
						if (prevOffset > numpotions - 1) {
							prevOffset -= numpotions;
						}
						if (potionsarr[prevOffset] > 0 and prevOffset != selectedpotion) {
							potionShortcut.prevIcon._visible = true;
							potionShortcut.prevIcon.gotoAndStop(prevOffset + 1);
							potionShortcut.prevDesc = _root.potionsnames[prevOffset];
							potionShortcut.prevButtons = 'Q / Z';
							previousPotion = prevOffset;
							break;
						}
						++i;
					}
				} else {
					potionShortcut._visible = false;
				}
			}
			function throwpotion() {
				if (attcount <= 0 and !drinking and !attacking) {
					if (spacedown and (selectedpotion < 3 or selectedpotion == 8 and potionsarr[8] > 0 or selectedpotion == 9 and potionsarr[9] > 0)) {
						++spacecount;
						holder.player.throwbar._visible = true;
						holder.player.throwbar._alpha = 100;
						holder.player.throwbar.gotoAndStop(spacecount);
						if (!Key.isDown(32) or spacecount >= 15) {
							spacedown = false;
							attacking = true;
							attcount = 13;
							activepotion = selectedpotion;
							if (selectedpotion == 8 or selectedpotion == 9) {
								--potionsarr[selectedpotion];
								updateIcons();
							}
						}
					} else {
						if (holder.player.throwbar._visible and holder.player.throwbar._alpha > 0) {
							holder.player.throwbar._alpha -= 10;
							if (holder.player.throwbar._alpha <= 0) {
								holder.player.throwbar._visible = false;
							}
						}
					}
					if (Key.isDown(32) and !attacking and !drinking and !spacedown) {
						if (!spacedown and (selectedpotion < 3 or selectedpotion == 8 and potionsarr[8] > 0 or selectedpotion == 9 and potionsarr[9] > 0)) {
							spacedown = true;
							spacecount = 1;
						} else {
							if (selectedpotion >= 3 and selectedpotion != 8 and selectedpotion != 9 and potionsarr[selectedpotion] > 0) {
								drinking = true;
								drinkcount = 30;
							} else {
								shrugging = 12;
							}
						}
					}
				}
				if (drinking and drinkcount == 2 and !dying) {
					--potionsarr[selectedpotion];
					activepotion = selectedpotion;
					updateIcons();
					playsound('drink1Sound');
					if (activepotion == 3) {
						effectJump = standardEffectT;
					} else {
						if (activepotion == 4) {
							effectSpeed = standardEffectT;
						} else {
							if (activepotion == 5) {
								effectHealth = standardEffectT;
								maxhealth += 5;
								health = maxhealth;
								effectPoison = 0;
								clear_life();
								load_life();
							} else {
								if (activepotion == 6) {
									health = maxhealth;
									effectPoison = 0;
									clear_life();
									load_life();
								} else {
									if (activepotion == 7) {
										effectScience = standardEffectT;
									} else {
										if (activepotion == 10) {
											effectInvisibility = standardEffectT;
										} else {
											if (activepotion == 11) {
												effectGravity = standardEffectT;
											}
										}
									}
								}
							}
						}
					}
					if (effectJump > 0 and effectSpeed > 0 and effectHealth > 0 and effectScience > 0 and effectInvisibility > 0 and effectGravity > 0) {
						givemedal(22);
					}
				}
				if (attcount == 9 and attacking) {
					++count;
					holder.nohtobjects.attachMovie('potions', 'potions' + count, count);
					holder.nohtobjects['potions' + count]._x = holder.player._x + playwidth * 0.5 * holder.player._xscale / 100;
					holder.nohtobjects['potions' + count]._y = holder.player._y - playheight * 0.75;
					holder.nohtobjects['potions' + count].xspeed = (2 + 4 * ((spacecount + 1) / 15)) * holder.player._xscale / 100;
					holder.nohtobjects['potions' + count].yspeed = -6;
					holder.nohtobjects['potions' + count].gotoAndStop(activepotion + 1);
					holder.nohtobjects['potions' + count].onEnterFrame = function () {
						this._x += this.xspeed;
						this._y += this.yspeed;
						this.yspeed += 0.75;
						if (holder.ground.hitTest(this._x + holder._x, this._y + holder._y, true) or holder.objects.hitTest(this._x + holder._x, this._y + holder._y, true)) {
							create_cloud(this._x, this._y, activepotion);
							this.removeMovieClip();
						}
					};
				}
			}
			function giveExclamation() {
				if (!holder.exclamation) {
					++count;
					holder.attachMovie('exclamation', 'exclamation', count);
					holder.exclamation.onEnterFrame = function () {
						this._x = holder.player._x + xspeed;
						this._y = holder.player._y;
					};
				} else {
					if (holder.exclamation._currentframe > 6) {
						holder.exclamation.gotoAndPlay(6);
					}
				}
			}
			function arrowcheck() {
				if (Key.isDown(40) or Key.isDown(83) or Key.isDown(38) or Key.isDown(87) or Key.isDown(39) or Key.isDown(68) or Key.isDown(37) or Key.isDown(65)) {
					arrowdown = true;
				} else {
					arrowdown = false;
				}
			}
			function loadmap() {
				mapholder = allmap.split(' BREAK ');
				groundmap = new Array();
				foregroundmap = new Array();
				backgroundmap = new Array();
				watermap = new Array();
				laddermap = new Array();
				startx = parseInt(mapholder[0].split(','));
				starty = parseInt(mapholder[1].split(','));
				rowtiles = parseInt(mapholder[2].split(','));
				coltiles = parseInt(mapholder[3].split(','));
				groundmap = mapholder[4].split(',');
				foregroundmap = mapholder[5].split(',');
				backgroundmap = mapholder[6].split(',');
				laddermap = mapholder[7].split(',');
				bgselect = mapholder[8].split(',');
				frontbgselect = mapholder[9].split(',');
				levelwidth = rowtiles * _root.tilesize;
				levelheight = coltiles * _root.tilesize;
				objectarr = new Array();
				i = 10;
				while (i < mapholder.length) {
					objectarr[i] = mapholder[i].split(',');
					++count;
					holder.objects.attachMovie('objects', 'object' + count, count);
					holder.objects['object' + count]._x = objectarr[i][2];
					holder.objects['object' + count]._y = objectarr[i][3];
					holder.objects['object' + count].specarr = new Array();
					holder.objects['object' + count].specarr = objectarr[i];
					++i;
				}
				xtile = 0;
				ytile = 0;
				i = 0;
				while (i < groundmap.length) {
					if (groundmap[i] > 0) {
						tileselect = groundmap[i];
						tilenum = i;
						++count;
						holder.ground.attachMovie('groundtile', 'tile' + tilenum, count);
						holder.ground['tile' + tilenum]._x = xtile;
						holder.ground['tile' + tilenum]._y = ytile;
						_currentframe = tileselect;
						holder.ground['tile' + tilenum].gotoAndStop(tileselect);
					}
					xtile += _root.tilesize;
					if (xtile >= levelwidth) {
						xtile -= levelwidth;
						ytile += _root.tilesize;
					}
					++i;
				}
				xtile = 0;
				ytile = 0;
				i = 0;
				while (i < backgroundmap.length) {
					if (backgroundmap[i] > 0) {
						tileselect = backgroundmap[i];
						tilenum = i;
						++count;
						holder.background.attachMovie('backgroundtile', 'tile' + tilenum, count);
						holder.background['tile' + tilenum]._x = xtile;
						holder.background['tile' + tilenum]._y = ytile;
						_currentframe = tileselect;
						holder.background['tile' + tilenum].gotoAndStop(tileselect);
					}
					xtile += _root.tilesize;
					if (xtile >= levelwidth) {
						xtile -= levelwidth;
						ytile += _root.tilesize;
					}
					++i;
				}
				xtile = 0;
				ytile = 0;
				i = 0;
				while (i < foregroundmap.length) {
					if (foregroundmap[i] > 0) {
						tileselect = foregroundmap[i];
						tilenum = i;
						++count;
						holder.foreground.attachMovie('foregroundtile', 'tile' + tilenum, count);
						holder.foreground['tile' + tilenum]._x = xtile;
						holder.foreground['tile' + tilenum]._y = ytile;
						_currentframe = tileselect;
						holder.foreground['tile' + tilenum].gotoAndStop(tileselect);
					}
					xtile += _root.tilesize;
					if (xtile >= levelwidth) {
						xtile -= levelwidth;
						ytile += _root.tilesize;
					}
					++i;
				}
				xtile = 0;
				ytile = 0;
				i = 0;
				while (i < laddermap.length) {
					if (laddermap[i] > 0) {
						tileselect = laddermap[i];
						tilenum = i;
						++count;
						holder.ladders.attachMovie('laddertile', 'tile' + tilenum, count);
						holder.ladders['tile' + tilenum]._x = xtile;
						holder.ladders['tile' + tilenum]._y = ytile;
						_currentframe = tileselect;
						holder.ladders['tile' + tilenum].gotoAndStop(tileselect);
					}
					xtile += _root.tilesize;
					if (xtile >= levelwidth) {
						xtile -= levelwidth;
						ytile += _root.tilesize;
					}
					++i;
				}
			}
			function create_holders() {
				count = 0;
				++count;
				underbgdep = count;
				++count;
				_root.createEmptyMovieClip('holder', count);
				++count;
				bgdep = count;
				++count;
				frontbgdep = count;
				++count;
				holder.createEmptyMovieClip('background', count);
				holder.background.cacheAsBitmap();
				++count;
				holder.createEmptyMovieClip('ladders', count);
				holder.ladders.cacheAsBitmap();
				++count;
				holder.createEmptyMovieClip('ground', count);
				holder.ground.cacheAsBitmap();
				++count;
				holder.createEmptyMovieClip('objects', count);
				++count;
				holder.createEmptyMovieClip('nohtobjects', count);
				++count;
				holder.createEmptyMovieClip('foreground', count);
				holder.foreground.cacheAsBitmap();
				++count;
				holder.createEmptyMovieClip('cloudsMolotov', count);
				++count;
				holder.createEmptyMovieClip('cloudsIce', count);
				++count;
				holder.createEmptyMovieClip('cloudsExplosion', count);
				++count;
				holder.createEmptyMovieClip('cloudsLanguage', count);
				++count;
				holder.createEmptyMovieClip('cloudsOxygen', count);
			}
			function clear_life() {
				lives_bar.removeMovieClip();
			}
			function load_life() {
				++count;
				attachMovie('lives_bar', 'lives_bar', count);
				livesx = 0;
				i = 0;
				while (i < maxhealth) {
					++count;
					lives_bar.attachMovie('health_dot', 'health_dot' + i, count);
					lives_bar['health_dot' + i]._x = livesx;
					lives_bar['health_dot' + i].gotoAndStop(1);
					livesx += lives_bar['health_dot' + i]._width / 2;
					++i;
				}
			}
			function load_misc() {
				holder.attachMovie('player', 'player', count);
				if (!oride_x == 0 and !oride_y == 0) {
					startx = oride_x;
					starty = oride_y;
				}
				if (check_load) {
					startx = check_x;
					starty = check_y;
					check_load = false;
				}
				holder.player._x = startx;
				holder.player._y = starty;
				holder.player._xscale = lastxscale;
				holder.player.throwbar.gotoAndStop(1);
				holder.player.throwbar._visible = false;
				playheight = 50;
				playwidth = 28;
				load_life();
				update_life();
				++count;
				attachMovie('msgbox', 'msgbox', count);
				++count;
				attachMovie('player_excl', 'player_excl', count);
				++count;
				attachMovie('potionShortcut', 'potionShortcut', count);
				updateIcons();
				new com.robertpataki.heartcode.BitmapTiler(_root, 'underbg', bgselect, stagewidth, stageheight);
				underbg.swapDepths(underbgdep);
				underbg.cacheAsBitmap();
				new com.robertpataki.heartcode.BitmapTiler(holder, 'bg', bgselect, levelwidth * 1.25, levelheight * 1.25);
				holder.bg._x = -levelwidth * 0.125;
				holder.bg._y = -levelheight * 0.125;
				holder.bg.swapDepths(bgdep);
				holder.bg.cacheAsBitmap();
				frontbgselect = parseInt(frontbgselect);
				if (frontbgselect != 0 and frontbgselect != null) {
					holder.attachMovie('frontbg', 'frontbg', frontbgdep);
					holder.frontbg.gotoAndStop(frontbgselect);
					holder.frontbg._x = levelwidth / 2;
					holder.frontbg._y = levelheight - stageheight;
					holder.frontbg.cacheAsBitmap();
				}
				++count;
				_root.attachMovie('fadein', 'fadein', count);
				++count;
				holder.foreground.swapDepths(count);
				++count;
				attachMovie('game_frame', 'game_frame', count + 10000);
				game_frame.cacheAsBitmap();
			}
			function unpause() {
				updateIcons();
				mixscreen.removeMovieClip();
				potionscreen.removeMovieClip();
				questscreen.removeMovieClip();
				menuScreen.removeMovieClip();
				settingsmenu.removeMovieClip();
				game_paused = false;
				holder.player._visible = true;
				holder.objects._visible = true;
				attcount = 12;
				msgbreather = 12;
			}
			function open_mixing() {
				++count;
				attachMovie('mixscreen', 'mixscreen', count);
				game_paused = true;
			}
			function open_potions() {
				++count;
				attachMovie('potionscreen', 'potionscreen', count);
				game_paused = true;
			}
			function open_quests() {
				++count;
				attachMovie('questscreen', 'questscreen', count);
				game_paused = true;
			}
			function open_settings() {
				++count;
				attachMovie('settingsmenu', 'settingsmenu', count);
				game_paused = true;
			}
			function open_achievements() {
				++count;
				attachMovie('achievementsmenu', 'achievementsmenu', count);
				game_paused = true;
			}
			function attachMenu() {
				++count;
				attachMovie('menuScreen', 'menuScreen', count);
			}
			function open_menu() {
				if (!cutscene and !dying and !fadeout and !menuScreen and (allowEnter and (Key.isDown(13) or Key.isDown(27) or Key.isDown(80) or clickingwalkthru))) {
					menupos = 0;
					allowEnter = false;
					attachMenu();
					holder.player._visible = false;
					game_paused = true;
				} else {
					if (!Key.isDown(13) and !Key.isDown(27) and !Key.isDown(80) and !menuScreen) {
						allowEnter = true;
					}
				}
				clickingwalkthru = false;
			}
			function player_properties(groundplayer) {
				walkacctime = 10;
				walkspeed = 8;
				xspeed = 0;
				slideamount = 0.4;
				airfriction = 0.8;
				directionslide = 0.5;
				swimacctime = 15;
				swimspeed = 6;
				swimslide = 0.7;
				swimx = 0;
				swimy = 0;
				climbspeed = 5;
				groundtime = 0;
				maxfallspeed = 10;
				falltime = 10;
				fallspeed = 0;
				maxjumptime = 17;
				jumprate = 14;
				minjumptime = 7;
				doublejumplim = 5;
				doublejumpbeg = 0;
				groundedcount = 0;
				jumpdelay = 0;
				bumpAmount = 0;
				damageDelay = 0;
				dying = false;
				damage_count = 0;
				attacking = false;
				drinking = false;
				shrugging = 0;
				msgbreather = 0;
				cutscene = false;
				holder.player._visible = true;
				walk_sound = 0;
				pickuptexts = 0;
				pickuptextmax = 0;
				teleporting = false;
				musicfadingin = false;
				musicfadingout = false;
				if (groundplayer) {
					holder.player._y = Math.ceil(holder.player._y / tilesize) * tilesize;
				}
				xcam = 0.03;
				ycam = 0.2;
				camerafollow(1, 1);
			}
			function clear_all() {
				save_music_pos = _root[music_last].position / 1000;
				music_pos_load = _root[music_last].position / 1000 + 0;
				for (i in _root) {
					if (typeof _root[i] == 'movieclip') {
						if (_root[i] != _root.musicholder and _root[i] != _root.ngapibox) {
							trace('deleted ' + _root[i]);
							_root[i].removeMovieClip();
						} else {
							trace('did not delete ' + _root[i]);
						}
					}
				}
				delete enterFrame;
			}
			function shift_frame(targframe, targx, targy) {
				if (!_root.fadeout) {
					++count;
					_root.attachMovie('fadeout', 'fadeout', count);
					fadecount = 0;
					player_excl.removeMovieClip();
				} else {
					++fadecount;
					if (fadecount == fadeout._totalframes) {
						lastxscale = holder.player._xscale;
						punt_target = targframe;
						clear_all();
						oride_x = targx;
						oride_y = targy;
						existence = 0;
						gotoAndStop('puntback');
					}
				}
			}
			function trigger_shift_frame(targframe, targx, targy) {
				++count;
				createEmptyMovieClip('shifttrigger' + count, count);
				_root['shifttrigger' + count].onEnterFrame = function () {
					shift_frame(targframe, targx, targy);
				};
			}
			function givemedal(medalid) {
				if (medalarr[medalid] != true) {
					medalarr[medalid] = true;
					++count;
					attachMovie('medaldisp', 'medaldisp' + count, count);
					_root['medaldisp' + count].box.desc = medaldesc[medalid];
					_root['medaldisp' + count].box.ictarget = medalid + 1;
				}
			}
			function savegame() {
				saving = true;
				savecount = 0;
			}
			function runsave() {
				if (saving) {
					saveData.clear();
					saveData.data.savecheck = true;
					saveData.data.maxhealth = maxhealth;
					saveData.data.health = health;
					saveData.data.check_x = check_x;
					saveData.data.check_y = check_y;
					saveData.data.frm = check_frame;
					saveData.data.selectedpotion = selectedpotion;
					saveData.data.ingredientspicked = ingredientspicked;
					saveData.data.actions = new Array();
					i = 0;
					while (i < actions_len) {
						saveData.data.actions[i] = actions[i];
						++i;
					}
					saveData.data.potionsarr = new Array();
					saveData.data.potionsowned = new Array();
					saveData.data.ingredientsarr = new Array();
					saveData.data.medalarr = new Array();
					i = 0;
					while (i < 12) {
						saveData.data.potionsarr[i] = potionsarr[i];
						saveData.data.potionsowned[i] = potionsowned[i];
						saveData.data.ingredientsarr[i] = ingredientsarr[i];
						++i;
					}
					i = 0;
					while (i < 26) {
						saveData.data.medalarr[i] = medalarr[i];
						++i;
					}
					saveData.flush();
					saving = false;
					trace('game saved');
				}
			}
			function loadgame() {
				savecheck = saveData.data.savecheck;
				if (savecheck) {
					maxhealth = saveData.data.maxhealth;
					health = saveData.data.health;
					oride_x = saveData.data.check_x;
					oride_y = saveData.data.check_y;
					load_game_frame = saveData.data.frm;
					selectedpotion = saveData.data.selectedpotion;
					ingredientspicked = saveData.data.ingredientspicked;
					i = 0;
					while (i < actions_len) {
						actions[i] = saveData.data.actions[i];
						++i;
					}
					i = 0;
					while (i < 12) {
						potionsarr[i] = saveData.data.potionsarr[i];
						potionsowned[i] = saveData.data.potionsowned[i];
						ingredientsarr[i] = saveData.data.ingredientsarr[i];
						++i;
					}
					i = 0;
					while (i < 26) {
						medalarr[i] = saveData.data.medalarr[i];
						++i;
					}
				}
			}
			function music_load(id) {
				if (id != music_last) {
					stopAllSounds();
					reloadsong = true;
				}
				music_last = id;
				if (allowmusic and reloadsong) {
					_root[music_last].start(0, 99);
					if (!musicfadingin) {
						_root[music_last].setVolume(Math.round(vol * musicoffset));
					} else {
						_root[music_last].setVolume(0);
					}
				}
				reloadsong = false;
			}
			function music_run() {}
			function fadeout_music(faderate) {
				if (faderate == null) {
					faderate = 1;
				}
				_root.musicfadingout = true;
				_root.fadein_music_clip.removeMovieClip();
				++count;
				createEmptyMovieClip('fadeout_music_clip', count);
				_root.fadeout_music_clip.faderate = faderate;
				_root.fadeout_music_clip.onEnterFrame = function () {
					if (this.musicfadeout == null) {
						this.musicfadeout = 100;
					}
					_root.musicfadingout = true;
					_root[music_last].setVolume(Math.floor(_root.vol * _root.musicoffset * (this.musicfadeout / 100)));
					this.musicfadeout -= this.faderate;
					if (this.musicfadeout <= 0) {
						_root.music_last = '';
						stopAllSounds();
						_root.musicfadingout = false;
						this.removeMovieClip();
					}
				};
			}
			function fadein_music(faderate) {
				if (faderate == null) {
					faderate = 1;
				}
				_root.musicfadingin = true;
				_root.fadeout_music_clip.removeMovieClip();
				++count;
				createEmptyMovieClip('fadein_music_clip', count);
				_root.fadein_music_clip.faderate = faderate;
				_root.fadein_music_clip.onEnterFrame = function () {
					if (this.musicfadein == null) {
						this.musicfadein = 0;
					}
					_root.musicfadingin = true;
					_root[music_last].setVolume(Math.ceil(_root.vol * _root.musicoffset * (this.musicfadein / 100)));
					this.musicfadein += this.faderate;
					if (this.musicfadein >= 100) {
						_root[music_last].setVolume(vol * _root.musicoffset);
						_root.musicfadingin = false;
						this.removeMovieClip();
					}
				};
			}
			function playsound(soundname) {
				if (allowsounds) {
					_root[soundname].start();
					_root[soundname].setVolume(vol);
				}
			}
			function loadAllSounds() {
				createEmptyMovieClip('musicholder', 100000);
				zos_mainSound = new Sound(musicholder);
				zos_mainSound.attachSound('zos_main');
				zos_jungleSound = new Sound(musicholder);
				zos_jungleSound.attachSound('zos_jungle');
				zos_xindaSound = new Sound(musicholder);
				zos_xindaSound.attachSound('zos_xinda');
				zos_windSound = new Sound(musicholder);
				zos_windSound.attachSound('zos_wind');
				zos_desertSound = new Sound(musicholder);
				zos_desertSound.attachSound('zos_desert');
				zos_gasSound = new Sound(musicholder);
				zos_gasSound.attachSound('zos_gas');
				zos_aerylSound = new Sound(musicholder);
				zos_aerylSound.attachSound('zos_aeryl');
				zos_monsterSound = new Sound(musicholder);
				zos_monsterSound.attachSound('zos_monster');
				zos_bossSound = new Sound(musicholder);
				zos_bossSound.attachSound('zos_boss');
				zos_shroomsSound = new Sound(musicholder);
				zos_shroomsSound.attachSound('zos_shrooms');
				zos_noiseSound = new Sound(musicholder);
				zos_noiseSound.attachSound('zos_noise');
				zos_noise2Sound = new Sound(musicholder);
				zos_noise2Sound.attachSound('zos_noise2');
				zos_menuSound = new Sound(musicholder);
				zos_menuSound.attachSound('zos_menu');
				zos_bonusSound = new Sound(musicholder);
				zos_bonusSound.attachSound('zos_bonus');
				soundchange1Sound = new Sound(this);
				soundchange1Sound.attachSound('soundchange1');
				step1Sound = new Sound(this);
				step1Sound.attachSound('step1');
				step2Sound = new Sound(this);
				step2Sound.attachSound('step2');
				land1Sound = new Sound(this);
				land1Sound.attachSound('land1');
				buttonover1Sound = new Sound(this);
				buttonover1Sound.attachSound('buttonover1');
				buttonclick1Sound = new Sound(this);
				buttonclick1Sound.attachSound('buttonclick1');
				blip1Sound = new Sound(this);
				blip1Sound.attachSound('blip1');
				dog1Sound = new Sound(this);
				dog1Sound.attachSound('dog1');
				menuselect1Sound = new Sound(this);
				menuselect1Sound.attachSound('menuselect1');
				menumove1Sound = new Sound(this);
				menumove1Sound.attachSound('menumove1');
				door1Sound = new Sound(this);
				door1Sound.attachSound('door1');
				healthpickup1Sound = new Sound(this);
				healthpickup1Sound.attachSound('healthpickup1');
				falldeath1Sound = new Sound(this);
				falldeath1Sound.attachSound('falldeath1');
				checkpoint1Sound = new Sound(this);
				checkpoint1Sound.attachSound('checkpoint1');
				buzz1Sound = new Sound(this);
				buzz1Sound.attachSound('buzz1');
				heal1Sound = new Sound(this);
				heal1Sound.attachSound('heal1');
				bisi1Sound = new Sound(this);
				bisi1Sound.attachSound('bisi1');
				bisi2Sound = new Sound(this);
				bisi2Sound.attachSound('bisi2');
				bird1Sound = new Sound(this);
				bird1Sound.attachSound('bird1');
				bird2Sound = new Sound(this);
				bird2Sound.attachSound('bird2');
				cavemonster1Sound = new Sound(this);
				cavemonster1Sound.attachSound('cavemonster1');
				hanger1Sound = new Sound(this);
				hanger1Sound.attachSound('hanger1');
				reveal1Sound = new Sound(this);
				reveal1Sound.attachSound('reveal1');
				oxygen1Sound = new Sound(this);
				oxygen1Sound.attachSound('oxygen1');
				drink1Sound = new Sound(this);
				drink1Sound.attachSound('drink1');
				teleport1Sound = new Sound(this);
				teleport1Sound.attachSound('teleport1');
				laser1Sound = new Sound(this);
				laser1Sound.attachSound('laser1');
				gorilla1Sound = new Sound(this);
				gorilla1Sound.attachSound('gorilla1');
				priest1Sound = new Sound(this);
				priest1Sound.attachSound('priest1');
				priest2Sound = new Sound(this);
				priest2Sound.attachSound('priest2');
				turnstone1Sound = new Sound(this);
				turnstone1Sound.attachSound('turnstone1');
				walldoor1Sound = new Sound(this);
				walldoor1Sound.attachSound('walldoor1');
				presspad1Sound = new Sound(this);
				presspad1Sound.attachSound('presspad1');
				elevator1Sound = new Sound(this);
				elevator1Sound.attachSound('elevator1');
				elevator2Sound = new Sound(this);
				elevator2Sound.attachSound('elevator2');
				artillery1Sound = new Sound(this);
				artillery1Sound.attachSound('artillery1');
				poisonhit1Sound = new Sound(this);
				poisonhit1Sound.attachSound('poisonhit1');
				zealot1Sound = new Sound(this);
				zealot1Sound.attachSound('zealot1');
				flyface1Sound = new Sound(this);
				flyface1Sound.attachSound('flyface1');
				flyface2Sound = new Sound(this);
				flyface2Sound.attachSound('flyface2');
				glass1Sound = new Sound(this);
				glass1Sound.attachSound('glass1');
				thruster1Sound = new Sound(this);
				thruster1Sound.attachSound('thruster1');
				whiteflashmini1Sound = new Sound(this);
				whiteflashmini1Sound.attachSound('whiteflashmini1');
				whiteflashshort1Sound = new Sound(this);
				whiteflashshort1Sound.attachSound('whiteflashshort1');
				whiteflashlong1Sound = new Sound(this);
				whiteflashlong1Sound.attachSound('whiteflashlong1');
				toothmonsterhit1Sound = new Sound(this);
				toothmonsterhit1Sound.attachSound('toothmonsterhit1');
				raceshoot1Sound = new Sound(this);
				raceshoot1Sound.attachSound('raceshoot1');
				racemeat1Sound = new Sound(this);
				racemeat1Sound.attachSound('racemeat1');
				raceexplosion1Sound = new Sound(this);
				raceexplosion1Sound.attachSound('raceexplosion1');
				scorpion1Sound = new Sound(this);
				scorpion1Sound.attachSound('scorpion1');
				essences1Sound = new Sound(this);
				essences1Sound.attachSound('essences1');
				wind1Sound = new Sound(this);
				wind1Sound.attachSound('wind1');
				lastboss1Sound = new Sound(this);
				lastboss1Sound.attachSound('lastboss1');
				lastboss2Sound = new Sound(this);
				lastboss2Sound.attachSound('lastboss2');
				lastboss3Sound = new Sound(this);
				lastboss3Sound.attachSound('lastboss3');
				aeo1Sound = new Sound(this);
				aeo1Sound.attachSound('aeo1');
				aeo2Sound = new Sound(this);
				aeo2Sound.attachSound('aeo2');
				computer1Sound = new Sound(this);
				computer1Sound.attachSound('computer1');
				potionmix1Sound = new Sound(this);
				potionmix1Sound.attachSound('potionmix1');
				potionerror1Sound = new Sound(this);
				potionerror1Sound.attachSound('potionerror1');
				playfairy = function () {
					fairy1Sound = new Sound(this);
					fairy1Sound.attachSound('fairy1');
					fairy2Sound = new Sound(this);
					fairy2Sound.attachSound('fairy2');
					fairy3Sound = new Sound(this);
					fairy3Sound.attachSound('fairy3');
					if (random(100) < 33) {
						playsound('fairy1Sound');
					} else {
						if (random(100) < 33) {
							playsound('fairy2Sound');
						} else {
							playsound('fairy3Sound');
						}
					}
				};
				playsoldiershoot = function () {
					soldiershoot1Sound = new Sound(this);
					soldiershoot1Sound.attachSound('soldiershoot1');
					soldiershoot2Sound = new Sound(this);
					soldiershoot2Sound.attachSound('soldiershoot2');
					soldiershoot3Sound = new Sound(this);
					soldiershoot3Sound.attachSound('soldiershoot3');
					if (random(100) < 33) {
						playsound('soldiershoot1Sound');
					} else {
						if (random(100) < 33) {
							playsound('soldiershoot2Sound');
						} else {
							playsound('soldiershoot3Sound');
						}
					}
				};
				playenemyjumper = function () {
					enemyjumper1Sound = new Sound(this);
					enemyjumper1Sound.attachSound('enemyjumper1');
					enemyjumper2Sound = new Sound(this);
					enemyjumper2Sound.attachSound('enemyjumper2');
					enemyjumper3Sound = new Sound(this);
					enemyjumper3Sound.attachSound('enemyjumper3');
					if (random(100) < 33) {
						playsound('enemyjumper1Sound');
					} else {
						if (random(100) < 33) {
							playsound('enemyjumper2Sound');
						} else {
							playsound('enemyjumper3Sound');
						}
					}
				};
				playcrusher = function () {
					crusher1Sound = new Sound(this);
					crusher1Sound.attachSound('crusher1');
					crusher2Sound = new Sound(this);
					crusher2Sound.attachSound('crusher2');
					crusher3Sound = new Sound(this);
					crusher3Sound.attachSound('crusher3');
					if (random(100) < 33) {
						playsound('crusher1Sound');
					} else {
						if (random(100) < 33) {
							playsound('crusher2Sound');
						} else {
							playsound('crusher3Sound');
						}
					}
				};
				playsplash = function () {
					splash1Sound = new Sound(this);
					splash1Sound.attachSound('splash1');
					splash2Sound = new Sound(this);
					splash2Sound.attachSound('splash2');
					splash3Sound = new Sound(this);
					splash3Sound.attachSound('splash3');
					if (random(100) < 33) {
						playsound('splash1Sound');
					} else {
						if (random(100) < 33) {
							playsound('splash2Sound');
						} else {
							playsound('splash3Sound');
						}
					}
				};
				playingredient = function () {
					ingredient1Sound = new Sound(this);
					ingredient1Sound.attachSound('ingredient1');
					ingredient2Sound = new Sound(this);
					ingredient2Sound.attachSound('ingredient2');
					ingredient3Sound = new Sound(this);
					ingredient3Sound.attachSound('ingredient3');
					if (random(100) < 33) {
						playsound('ingredient1Sound');
					} else {
						if (random(100) < 33) {
							playsound('ingredient2Sound');
						} else {
							playsound('ingredient3Sound');
						}
					}
				};
				playjump = function () {
					jump1Sound = new Sound(this);
					jump1Sound.attachSound('jump1');
					jump2Sound = new Sound(this);
					jump2Sound.attachSound('jump2');
					jump3Sound = new Sound(this);
					jump3Sound.attachSound('jump3');
					if (random(100) < 33) {
						playsound('jump1Sound');
					} else {
						if (random(100) < 33) {
							playsound('jump2Sound');
						} else {
							playsound('jump3Sound');
						}
					}
				};
				playhit = function () {
					hit1Sound = new Sound(this);
					hit1Sound.attachSound('hit1');
					hit2Sound = new Sound(this);
					hit2Sound.attachSound('hit2');
					hit3Sound = new Sound(this);
					hit3Sound.attachSound('hit3');
					if (random(100) < 33) {
						playsound('hit1Sound');
					} else {
						if (random(100) < 33) {
							playsound('hit2Sound');
						} else {
							playsound('hit3Sound');
						}
					}
				};
				playfire = function () {
					fire1Sound = new Sound(this);
					fire1Sound.attachSound('fire1');
					fire2Sound = new Sound(this);
					fire2Sound.attachSound('fire2');
					fire3Sound = new Sound(this);
					fire3Sound.attachSound('fire3');
					if (random(100) < 33) {
						playsound('fire1Sound');
					} else {
						if (random(100) < 33) {
							playsound('fire2Sound');
						} else {
							playsound('fire3Sound');
						}
					}
				};
				playice = function () {
					ice1Sound = new Sound(this);
					ice1Sound.attachSound('ice1');
					ice2Sound = new Sound(this);
					ice2Sound.attachSound('ice2');
					ice3Sound = new Sound(this);
					ice3Sound.attachSound('ice3');
					if (random(100) < 33) {
						playsound('ice1Sound');
					} else {
						if (random(100) < 33) {
							playsound('ice2Sound');
						} else {
							playsound('ice3Sound');
						}
					}
				};
				playexplosion = function () {
					explosion1Sound = new Sound(this);
					explosion1Sound.attachSound('explosion1');
					explosion2Sound = new Sound(this);
					explosion2Sound.attachSound('explosion2');
					explosion3Sound = new Sound(this);
					explosion3Sound.attachSound('explosion3');
					if (random(100) < 33) {
						playsound('explosion1Sound');
					} else {
						if (random(100) < 33) {
							playsound('explosion2Sound');
						} else {
							playsound('explosion3Sound');
						}
					}
				};
				playblood = function () {
					blood1Sound = new Sound(this);
					blood1Sound.attachSound('blood1');
					blood2Sound = new Sound(this);
					blood2Sound.attachSound('blood2');
					blood3Sound = new Sound(this);
					blood3Sound.attachSound('blood3');
					if (random(100) < 33) {
						playsound('blood1Sound');
					} else {
						if (random(100) < 33) {
							playsound('blood2Sound');
						} else {
							playsound('blood3Sound');
						}
					}
				};
				playenemyhit = function () {
					enemyhit1Sound = new Sound(this);
					enemyhit1Sound.attachSound('enemyhit1');
					enemyhit2Sound = new Sound(this);
					enemyhit2Sound.attachSound('enemyhit2');
					enemyhit3Sound = new Sound(this);
					enemyhit3Sound.attachSound('enemyhit3');
					if (random(100) < 33) {
						playsound('enemyhit1Sound');
					} else {
						if (random(100) < 33) {
							playsound('enemyhit2Sound');
						} else {
							playsound('enemyhit3Sound');
						}
					}
				};
			}
			tilesize = 32;
			stagewidth = 640;
			stageheight = 480;
			framerate = 30;
			mins = framerate * 60;
			maxhealth = 3;
			health = maxhealth;
			standardlettertime = 2;
			lastxscale = 100;
			load_game_frame = 'act1s4h1';
			menupos = 0;
			ingredientsarr = new Array(3, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1);
			ingredientsxarr = new Array(32, 94, 160, 222, 32, 94, 160, 222, 32, 94, 160, 222);
			ingredientsyarr = new Array(32, 32, 32, 32, 94, 94, 94, 94, 160, 160, 160, 160);
			ingredientsdesc = new Array('Barkyo Oilstones are used as distributive agents, providing the spark necessary to trigger chemical reactions, for instance in explosives. When ingested orally, Oilstones improve technological skill.', 'The berries of the Honian Heartfruit are versatile. Primarily, they have a healing effect (both restorative and fortifying). They also strengthen the consumer, both in terms of speed and jump power. Finally, the berries have certain reactive properties - depending on other ingredients these can be explosive or cleansing and oxygenising.', 'The Olian Sightbean is renowned for its traits of clarity. It reveals chemically hidden objects and improves scientific reasoning, aiding in use of technology. The Sightbean thrives in cold climates, and has certain cooling characteristics.', 'Ashima Sparkdust is a fairly reactive compound. A mild explosive, it can also react with poisonous gas to create oxygen. Ingested orally, Ashima Sparkdust improves the speed of the subject.', 'Frezian Glaze is a remarkable material, extremely cold to the touch. Beyond its obvious uses as a coolant, Frezian Glaze is remarkable in that it can both be used to hide and reveal.', 'Effluvian Gasrock needs to be handled carefully, as it can be very explosive. Reacts with gases to produce clean air. When eaten, Gasrock lightens the consumer and in extreme cases produces floating effects. It is slightly translucent and has obscuring properties.', 'Not much is known about the Gabbro Paragon, except that it is immensely hot and extremely explosive.', 'The Vasberry is an extraordinary fruit. Lighter than air, it floats off the plant. Ingested, it speeds up the subject, aids in jumping and floating.', 'Oblivian Bloodgrass is renowned for its healing properties. Grown primarily on Mount Ulahard, Bloodgrass is used to heal wounds and also to fortify the consumer.', 'Ground up into a fine powder, Holou Blazestones can be used to heighten the logical reasoning and technological skills of the subject. The Blazestones also have some healing properties.', 'Vivrian Adamant, a rare mineral, is used to conceal and reveal materials. In liquid form, it\'s known to make consumers more resilient to damage.', 'Unknown substance. Appears to have extremely low density.');
			ingredientsnames = new Array('Barkyo Oilstone', 'Honian Heartfruit', 'Olian Sightbean', 'Ashima Sparkdust', 'Frezian Glaze', 'Effluvian Gasrock', 'Gabbro Paragon', 'Vasberry', 'Oblivian Bloodgrass', 'Holou Blazestones', 'Vivrian Adamant', 'Kzal Chert');
			potionsarr = new Array(1, 1, 1, 1, 1, 1, 100, 1, 1, 1, 1, 5);
			potionsowned = new Array(0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0);
			pickuparr = new Array();
			pickuptime = 0;
			regenarr = new Array(5 * mins, 3 * mins, 2 * mins, 4 * mins, 4 * mins, 5 * mins, 10 * mins, 5 * mins, 5 * mins, 5 * mins, 8 * mins, 10 * mins);
			numpotions = 12;
			potionrec1 = new Array(0, 1, 3);
			potionrec2 = new Array(0, 2, 4);
			potionrec3 = new Array(0, 5, 6);
			potionrec4 = new Array(1, 5, 7);
			potionrec5 = new Array(1, 3, 7);
			potionrec6 = new Array(1, 8, 10);
			potionrec7 = new Array(1, 8, 9);
			potionrec8 = new Array(0, 2, 9);
			potionrec9 = new Array(2, 4, 10);
			potionrec10 = new Array(1, 3, 5);
			potionrec11 = new Array(4, 5, 10);
			potionrec12 = new Array(5, 7, 11);
			potionrecarr = new Array();
			potionrecarr[0] = potionrec1;
			potionrecarr[1] = potionrec2;
			potionrecarr[2] = potionrec3;
			potionrecarr[3] = potionrec4;
			potionrecarr[4] = potionrec5;
			potionrecarr[5] = potionrec6;
			potionrecarr[6] = potionrec7;
			potionrecarr[7] = potionrec8;
			potionrecarr[8] = potionrec9;
			potionrecarr[9] = potionrec10;
			potionrecarr[10] = potionrec11;
			potionrecarr[11] = potionrec12;
			potionsdesc = new Array('Creates a blaze of flames.\n\nRecipe:\nHonian Heartfruit, Barkyo Oilstone and Ashima Sparkdust.', 'Creates a burst of ice.\n\nRecipe:\nBarkyo Oilstone, Olian Sightbean and Frezian Glaze.', 'Creates a damaging explosion.\n\nRecipe:\nBarkyo Oilstone, Effluvian Gasrock and Gabbro Paragon.', 'Makes the subject jump higher.\n\nRecipe:\nHonian Heartfruit, Effluvian Gasrock and Vasberry.', 'Allows the subject to run faster.\n\nRecipe:\nHonian Heartfruit, Vasberry and Ashima Sparkdust.', 'Fortifies health.\n\nRecipe:\nHonian Heartfruit, Oblivian Bloodgrass and Vivrian Adamant.', 'Restores health and cures poison.\n\nRecipe:\nHonian Heartfruit, Holou Blazestones and Oblivian Bloodgrass.', 'Vastly increases the technological skill of the user, for instance in repairs. Allows the user to use computer terminals with ease.\n\nRecipe:\nOlian Sightbean, Barkyo Oilstone and Holou Blazestones.', 'Reveals hidden symbols when thrown.\n\nRecipe:\nOlian Sightbean, Vivrian Adamant and Frezian Glaze.', 'Clears poisonous gas.\n\nRecipe:\nHonian Heartfruit, Effluvian Gasrock and Ashima Sparkdust.', 'Hides the subject, making him invisible and invincible to attacks.\n\nRecipe:\nEffluvian Gasrock, Vivrian Adamant and Frezian Glaze.', 'Temporarily suspends gravity.\n\nRecipe:\nEffluvian Gasrock, Vasberry and Kzal Chert.');
			potionsnames = new Array('Fire Potion', 'Freeze Potion', 'Explosion Potion', 'Fortify Jump', 'Fortify Speed', 'Fortify Health', 'Restore Health', 'Fortify Science', 'Reveal Hidden', 'Oxygenation Potion', 'Invisibility Potion', 'Zero Gravity');
			questarr = new Array();
			questarr[0] = new Array();
			completedquests = [];
			standardBump = 15;
			standardShade = 30;
			damageDelayT = 120;
			standardEffectT = 30 * framerate;
			effectSpeed = 0;
			effectJump = 0;
			effectInvisibility = 0;
			effectGravity = 0;
			effectPoison = 0;
			effectScience = 0;
			molotovDamage = 1;
			iceDamage = 0.5;
			explosionDamage = 3;
			allowsounds = true;
			allowmusic = true;
			vol = 100;
			volpos = 10;
			music_id_array = new Array('zos_mainSound', 'zos_jungleSound', 'zos_xindaSound', 'zos_windSound', 'zos_desertSound', 'zos_gasSound', 'zos_aerylSound', 'zos_monsterSound');
			music_pos_array = new Array(0, 0, 0, 0, 0, 0, 0, 0);
			music_last = '';
			music_pos = 0;
			musicoffset = 0.5;
			oride_x = 0;
			oride_y = 0;
			existence = 0;
			ship_startx = 136;
			ship_starty = 337;
			medalarr = new Array();
			resetactions();
			trace('game rebooted');
			Color.prototype.setBrightOffset = function (offset) {
				var v2 = new Object();
				v2.bb = offset;
				v2.gb = v2.bb;
				v2.rb = v2.bb;
				this.setTransform(v2);
			};
			MovieClip.prototype.setBrightness = function (offset) {
				var v2 = new Color(this);
				offset = 2.55 * offset;
				v2.setBrightOffset(offset);
			};
			holder_brightness = function (brig) {
				holder.ground.setBrightness(brig);
				holder.background.setBrightness(brig);
				holder.foreground.setBrightness(brig);
				holder.ladders.setBrightness(brig);
				holder.waters.setBrightness(brig);
				holder.objects.setBrightness(brig);
				holder.player.setBrightness(brig);
				holder.bg.setBrightness(brig * 0.5);
			};
			medalname = ['Novice', 'Master Alchemist', 'What\'s this?', 'Good boy!', 'Rhisla', 'Ro\'gor', 'Elaris', 'Aeryl', 'Meztla', 'Potal', 'Lynaii', 'Overreaction', 'how it will end.', 'Fortified', 'Man of Steel', 'Bullet', 'Pacifist', 'Bravado', 'Double Rainbow', 'Immature', 'Sneaky', 'Sacrilege', 'Potion Addict', 'Herbalist', 'Fourth Wall', 'Masochist'];
			medaldesc = ['Craft your first potion.', 'Craft all potions.', 'Pick your first ingredient.', 'Play with your dog.', 'Complete Rhisla.', 'Complete Ro\'gor.', 'Complete Elaris.', 'Complete Aeryl.', 'Complete Meztla.', 'Complete Potal.', 'Complete Lynaii.', 'Burn Duro to get his ship.', 'Defeat X\'o\'chthu.', 'Collect a health upgrade.', 'Collect all health upgrades.', 'Complete the race across the border.', 'Complete the race without firing.', 'Drink Argba\'s poison.', 'Scale Mount Ulahard.', 'Annoy the portly man in the shower.', 'Don\'t get shot on the Potal battlefield.', 'Enter the locked temple on Meztla.', 'Drink all potions at once.', 'Collect 100 ingredients.', 'Visit the developers.', 'Defeat X\'o\'chthu with Freeze potions only.'];
			saveData = SharedObject.getLocal('zosalchemy');
			actions_len = 89;
		}
		Stage.scaleMode = 'noScale';
		_quality = 'LOW';
		var myMenu = new ContextMenu();
		myMenu.hideBuiltInItems();
		myMenu.customItems.push(new ContextMenuItem('Game by 8bitskull', itemHandler1));
		_root.menu = myMenu;
		count = 0;
		rebootgame();
	}
	frame 2 {
		function playercode() {
			music_run();
			if (game_paused) {
			} else {
				if (!game_paused) {
					_currentframe = health;
					lives_bar.gotoAndStop(health);
					runsave();
					open_menu();
					reduce_effects();
					quickSelect();
					++pickuptime;
					++existence;
					if (!dying and !fadeout) {
						die_count = 0;
						prex = holder.player._x;
						prey = holder.player._y;
						begx = holder._x;
						begy = holder._y;
						if (msgbox._visible) {
							msgbox.runmessage();
						} else {
							if (!cutscene) {
								if (msgbreather > 0) {
									--msgbreather;
								}
								if ((Key.isDown(38) or Key.isDown(40) or Key.isDown(87) or Key.isDown(83) or fadein) and holder.ladders.hitTest(holder.player._x + holder._x, holder.player._y + holder._y - playheight * 0.75, true)) {
									if (!climbing) {
										climbing = true;
										xspeed = 0;
									}
								} else {
									if (!holder.ladders.hitTest(holder.player._x + holder._x, holder.player._y + holder._y - playheight * 0.75, true)) {
										if (climbing) {
											climbing = false;
											fallspeed = 0;
											if (Key.isDown(39) or Key.isDown(68)) {
												xspeed = climbspeed;
											} else {
												if (Key.isDown(37) or Key.isDown(65)) {
													xspeed = -climbspeed;
												}
											}
											if (Key.isDown(38) or Key.isDown(87)) {
												jump();
											}
										}
									}
								}
								throwpotion();
								--attcount;
								if (attcount <= 0) {
									attacking = false;
								}
								--drinkcount;
								if (drinkcount <= 0) {
									drinking = false;
								}
								--shrugging;
								if (effectGravity == 0 and !climbing) {
									if ((Key.isDown(39) or Key.isDown(68)) and (!attacking or attacking and (jumping or wasjumping)) and !drinking) {
										if (xspeed < 0 and grounded) {
											xspeed *= directionslide;
										}
										xspeed += walkspeed / walkacctime;
										holder.player._xscale = 100;
									} else {
										if ((Key.isDown(37) or Key.isDown(65)) and (!attacking or attacking and (jumping or wasjumping)) and !drinking) {
											if (xspeed > 0 and grounded) {
												xspeed *= directionslide;
											}
											xspeed -= walkspeed / walkacctime;
											holder.player._xscale = -100;
										} else {
											if (grounded) {
												xspeed *= slideamount;
											} else {
												xspeed *= airfriction;
											}
										}
									}
									if (xspeed > walkspeed) {
										xspeed = walkspeed;
									} else {
										if (xspeed < -walkspeed) {
											xspeed = -walkspeed;
										}
									}
									if (effectSpeed > 0) {
										addspeed = 1.4;
									} else {
										addspeed = 1;
									}
									holder.player._x += xspeed * addspeed;
									if (xspeed != 0 or bumpAmount != 0) {
										sideblock();
									}
									if (holder.ground.hitTest(holder.player._x + holder._x, holder.player._y + holder._y + 1, true)) {
										groundplayer();
									}
									--jumpdelay;
									--groundedcount;
									if ((Key.isDown(38) or Key.isDown(87)) and (grounded and !jumping and groundedcount > 0 and jumpdelay < 0) and !holder.ground.hitTest(holder.player._x + holder._x, holder.player._y + holder._y - tilesize * 2 - 5, true)) {
										jump();
										playjump();
									}
									if (effectJump > 0) {
										addJump = 1.35;
									} else {
										addJump = 1;
									}
									if (jumping) {
										if (Key.isDown(38) or Key.isDown(87) or jumptime < minjumptime) {
											holder.player._y -= fallspeed + jumprate * ((maxjumptime - jumptime) / maxjumptime) * addJump;
										}
										if (!Key.isDown(38) and !Key.isDown(87) and jumptime > minjumptime or jumptime >= maxjumptime) {
											jumping = false;
											wasjumping = true;
										}
										fallspeed = 0;
										++jumptime;
									}
									if (holder.player._y + holder._y > stageheight + 100) {
										++falldeath_count;
										if (falldeath_count > 30) {
											takedamage(1);
											holder.player._x = startx;
											holder.player._y = starty;
											dying = false;
											playsound('falldeath1Sound');
										}
									} else {
										falldeath_count = 0;
										xdiff = Math.abs(holder.player._x - prex);
										if (xdiff > tilesize) {
											holder.player._x = prex;
										}
										ydiff = Math.abs(holder.player._y - prey);
										if (ydiff > tilesize) {
											holder.player._y = prey;
										}
									}
								} else {
									if (climbing) {
										climb();
									} else {
										if (effectGravity > 0) {
											gravityMove();
										}
									}
								}
								bumpPlayer();
								shadePlayer();
								delayDamage();
							}
						}
						fall();
						while (holder.ground.hitTest(holder.player._x + holder._x - playwidth / 2 + playheight * 0.25, holder.player._y + holder._y - 1, true) or holder.ground.hitTest(holder.player._x + holder._x + playwidth / 2 - playheight * 0.25, holder.player._y + holder._y - 1, true)) {
							holder.player._y = Math.floor(holder.player._y / tilesize) * tilesize;
						}
						if (jumping and (holder.ground.hitTest(holder.player._x + holder._x - playwidth / 2, holder.player._y + holder._y - playheight, true) or holder.ground.hitTest(holder.player._x + holder._x + playwidth / 2, holder.player._y + holder._y - playheight, true) or holder.ground.hitTest(holder.player._x + holder._x, holder.player._y + holder._y - playheight, true))) {
							holder.player._y = Math.ceil(holder.player._y / tilesize) * tilesize;
							jumping = false;
							wasjumping = true;
						}
						if (holder.player._y < 25) {
							holder.player._y = 25;
						}
						if (health < 0) {
							dying = true;
						}
					} else {
						if (!fadeout) {
							fall();
							while (holder.ground.hitTest(holder.player._x + holder._x - playwidth / 2 + playheight * 0.25, holder.player._y + holder._y - 1, true) or holder.ground.hitTest(holder.player._x + holder._x + playwidth / 2 - playheight * 0.25, holder.player._y + holder._y - 1, true)) {
								holder.player._y = Math.floor(holder.player._y / tilesize) * tilesize;
							}
						}
						++die_count;
						holder.player.setBrightness(0);
						if (die_count > 90) {
							if (health < 0) {
								gotoAndStop('gameover');
								clear_all();
								delete onEnterFrame;
							}
							effectPoison = 0;
							health = maxhealth;
							update_life();
							dying = false;
							holder.player._x = startx;
							holder.player._y = starty;
							xspeed = 0;
						}
					}
					if (!deb1) {
						trace('hitting character frame decider');
						trace('cutscene ' + cutscene);
						trace('msgbox._visible ' + msgbox._visible);
						trace('game_paused ' + game_paused);
					}
					if (effectPoison > 0) {
						holder.player.gotoAndStop(3);
					} else {
						if (effectJump > 0 or effectSpeed > 0 or effectScience > 0) {
							holder.player.gotoAndStop(2);
						} else {
							holder.player.gotoAndStop(1);
						}
					}
					if (cutscene or msgbox._visible or game_paused) {
						holder.player.anims.gotoAndStop('standing');
					} else {
						if (dying) {
							holder.player.anims.gotoAndStop('dying');
						} else {
							if (teleporting) {
								holder.player.anims.gotoAndStop('teleporting');
							} else {
								if (attacking) {
									holder.player.anims.gotoAndStop('throwing');
								} else {
									if (drinking) {
										holder.player.anims.gotoAndStop('drinking');
									} else {
										if (climbing) {
											arrowcheck();
											if (arrowdown) {
												holder.player.anims.gotoAndStop('climbing');
											} else {
												holder.player.anims.gotoAndStop('holding');
											}
										} else {
											if (effectGravity > 0) {
												holder.player.anims.gotoAndStop('jumping');
											} else {
												if (msgbox._visible) {
													holder.player.anims.gotoAndStop('standing');
												} else {
													if (jumping) {
														holder.player.anims.gotoAndStop('jumping');
													} else {
														if ((wasjumping or fallspeed > 0) and attcount <= 0) {
															holder.player.anims.gotoAndStop('falling');
														} else {
															if (Math.abs(xspeed) > 2 or (Key.isDown(39) or Key.isDown(68) or Key.isDown(37) or Key.isDown(65)) and !sdown) {
																++walk_sound;
																if (walk_sound == 4) {
																	playsound('step1Sound');
																} else {
																	if (walk_sound == 12) {
																		playsound('step2Sound');
																	} else {
																		if (walk_sound == 16) {
																			walk_sound = 0;
																		}
																	}
																}
																holder.player.anims.gotoAndStop('walking');
															} else {
																if (shrugging > 0) {
																	holder.player.anims.gotoAndStop('shrugging');
																} else {
																	holder.player.anims.gotoAndStop('standing');
																}
															}
														}
													}
												}
											}
										}
									}
								}
							}
						}
					}
				}
			}
		}
		function sideblock() {
			if (holder.ground.hitTest(holder.player._x + holder._x + playwidth / 2 + xspeed, holder.player._y + holder._y - playheight * 0.25, true) or holder.ground.hitTest(holder.player._x + holder._x + playwidth / 2 + xspeed, holder.player._y + holder._y - playheight * 0.5, true)) {
				holder.player._x = Math.floor(holder.player._x / tilesize) * tilesize + playwidth / 2;
				xspeed = 0;
				bumpAmount = 0;
				sideblocking = true;
			} else {
				if (holder.ground.hitTest(holder.player._x + holder._x - playwidth / 2 + xspeed, holder.player._y + holder._y - playheight * 0.25, true) or holder.ground.hitTest(holder.player._x + holder._x - playwidth / 2 + xspeed, holder.player._y + holder._y - playheight * 0.5, true)) {
					holder.player._x = Math.ceil(holder.player._x / tilesize) * tilesize - playwidth / 2;
					xspeed = 0;
					bumpAmount = 0;
					sideblocking = true;
				} else {
					sideblocking = false;
				}
			}
		}
		function jump() {
			grounded = false;
			jumping = true;
			jumptime = 0;
			playjump();
		}
		function groundplayer() {
			if (fallspeed > 2) {
				playsound('land1Sound');
				jumpdelay = 2;
			}
			grounded = true;
			groundedcount = 8;
			fallspeed = 0;
			jumping = false;
			wasjumping = false;
			groundtime = 2;
		}
		function reduce_effects() {
			if (effectJump > 0) {
				--effectJump;
			}
			if (effectSpeed > 0) {
				--effectSpeed;
			}
			if (effectScience > 0) {
				--effectScience;
			}
			if (effectHealth > 0) {
				--effectHealth;
				if (effectHealth == 0) {
					maxhealth -= 5;
					health = maxhealth;
					clear_life();
					load_life();
				}
			}
			if (effectInvisibility > 0) {
				--effectInvisibility;
				holder.player._alpha = 35;
			} else {
				if (effectInvisibility == 0 and effectPoison == 0 and damageDelay == 0) {
					holder.player._alpha = 100;
				}
			}
			if (effectGravity > 0) {
				--effectGravity;
			}
			if (effectPoison > 0) {
				--effectPoison;
				if (effectPoison % framerate * 5 == 0) {
					shadeCount = 30;
					takedamage(1);
				}
			}
		}
		function create_blood(xx, yy, yrange, type, more) {
			if (type == null) {
				type = 'blood';
			}
			if (more == null) {
				more = 0;
			}
			playblood();
			++count;
			_root.createEmptyMovieClip('bloodgen' + count, count);
			_root['bloodgen' + count].num = 10 + more;
			_root['bloodgen' + count].onEnterFrame = function () {
				this.num -= 0.5;
				if (this.num > 0) {
					if (this.num % 1 == 0) {
						++_root.count;
						holder.nohtobjects.attachMovie(type, 'blood' + _root.count, _root.count);
						holder.nohtobjects['blood' + _root.count]._x = xx + (random(20) / 10) * _root.tilesize - _root.tilesize;
						holder.nohtobjects['blood' + _root.count]._y = yy - random(yrange);
					}
				} else {
					this.removeMovieClip();
				}
			};
		}
		function create_pickupanim(xx, yy) {
			++count;
			holder.attachMovie('pickupanim', 'pickupanim' + count, count);
			holder['pickupanim' + count]._x = xx;
			holder['pickupanim' + count]._y = yy;
		}
		function createSmallFlyer(xx, yy) {
			playsound('flyface2Sound');
			++count;
			holder.objects.attachMovie('objects', 'object' + count, count);
			holder.objects['object' + count]._x = xx;
			holder.objects['object' + count]._y = yy;
			holder.objects['object' + count].gotoAndStop(39);
			holder.objects['object' + count].specarr = new Array(0, 0, 0, 0, 1);
		}
		function createDroneBullet(xx, yy) {
			playsound('laser1Sound');
			++count;
			holder.nohtobjects.attachMovie('dronebullet', 'dronebullet' + count, count);
			holder.nohtobjects['dronebullet' + count]._x = xx;
			holder.nohtobjects['dronebullet' + count]._y = yy;
			holder.nohtobjects['dronebullet' + count].angleradian = Math.atan2(holder.player._y - yy, holder.player._x - xx);
			holder.nohtobjects['dronebullet' + count].xspeed = 5 * Math.cos(holder.nohtobjects['dronebullet' + count].angleradian);
			holder.nohtobjects['dronebullet' + count].yspeed = 5 * Math.sin(holder.nohtobjects['dronebullet' + count].angleradian);
			holder.nohtobjects['dronebullet' + count].xtwirl = 0;
			holder.nohtobjects['dronebullet' + count].ytwirl = 3;
			holder.nohtobjects['dronebullet' + count].xdir = -1;
			holder.nohtobjects['dronebullet' + count].ydir = -1;
			holder.nohtobjects['dronebullet' + count].maxtwirl = 3;
			holder.nohtobjects['dronebullet' + count].onEnterFrame = function () {
				if (!game_paused) {
					if (this._currentframe == 1) {
						this._x += this.xspeed + this.xtwirl;
						this._y += this.yspeed + this.ytwirl;
						this.xtwirl += this.xdir / 4;
						this.ytwirl += this.ydir / 4;
						if (this.xtwirl > this.maxtwirl or this.xtwirl < -this.maxtwirl) {
							this.xtwirl *= -1;
						}
						if (this.ytwirl > this.maxtwirl or this.ytwirl < -this.maxtwirl) {
							this.ytwirl *= -1;
						}
						if (_root.holder.ground.hitTest(this._x + holder._x, this._y + holder._y, true)) {
							playsplash();
							this.play();
							this._y = Math.floor(this._y / tilesize) * tilesize;
						}
						if (_root.damageDelay == 0 and _root.effectInvisibility == 0 and _root.holder.player.hitTest(this._x + holder._x, this._y + holder._y, true) and this._currentframe == 1) {
							takedamage(1);
							_root.xspeed = 0;
							_root.shadeCount = 30;
							playsplash();
							this.play();
							if (this.xspeed < 0) {
								_root.bumpAmount -= _root.standardBump;
							} else {
								_root.bumpAmount += _root.standardBump;
							}
						}
					}
					if (this._y > stageHeight + 100 or this._y < -100 or this._x < -100 or this._x > stageWidth + 100) {
						this.removeMovieClip();
					}
				}
			};
		}
		function createStarSpit(xx, yy, xspeed, yspeed) {
			playsound('flyface1Sound');
			++count;
			holder.nohtobjects.attachMovie('starspit', 'dronebullet' + count, count);
			holder.nohtobjects['dronebullet' + count]._x = xx;
			holder.nohtobjects['dronebullet' + count]._y = yy;
			holder.nohtobjects['dronebullet' + count].xspeed = xspeed;
			holder.nohtobjects['dronebullet' + count].yspeed = yspeed;
			holder.nohtobjects['dronebullet' + count].xtwirl = 0;
			holder.nohtobjects['dronebullet' + count].ytwirl = 3;
			holder.nohtobjects['dronebullet' + count].xdir = -1;
			holder.nohtobjects['dronebullet' + count].ydir = -1;
			holder.nohtobjects['dronebullet' + count].maxtwirl = 3;
			holder.nohtobjects['dronebullet' + count].onEnterFrame = function () {
				if (!game_paused) {
					if (this._currentframe == 1) {
						this._x += this.xspeed + this.xtwirl;
						this._y += this.yspeed + this.ytwirl;
						this.xtwirl += this.xdir / 4;
						this.ytwirl += this.ydir / 4;
						if (this.xtwirl > this.maxtwirl or this.xtwirl < -this.maxtwirl) {
							this.xtwirl *= -1;
						}
						if (this.ytwirl > this.maxtwirl or this.ytwirl < -this.maxtwirl) {
							this.ytwirl *= -1;
						}
						if (_root.holder.ground.hitTest(this._x + holder._x, this._y + holder._y, true)) {
							playsplash();
							this.play();
							this._y = Math.floor(this._y / tilesize) * tilesize;
						}
						if (_root.damageDelay == 0 and _root.effectInvisibility == 0 and _root.holder.player.hitTest(this._x + holder._x, this._y + holder._y, true) and this._currentframe == 1) {
							takedamage(1);
							_root.xspeed = 0;
							_root.shadeCount = 30;
							playsplash();
							this.play();
							if (this.xspeed < 0) {
								_root.bumpAmount -= _root.standardBump;
							} else {
								_root.bumpAmount += _root.standardBump;
							}
						}
					}
					if (this._y > stageHeight + 100 or this._y < -100 or this._x < -100 or this._x > stageWidth + 100) {
						this.removeMovieClip();
					}
				}
			};
		}
		function createAcid(xx, yy) {
			++count;
			holder.nohtobjects.attachMovie('slime_acid', 'acid' + count, count);
			holder.nohtobjects['acid' + count]._x = xx;
			holder.nohtobjects['acid' + count]._y = yy;
			holder.nohtobjects['acid' + count].lifeCount = 0;
			holder.nohtobjects['acid' + count].onEnterFrame = function () {
				++this.lifeCount;
				if (this.lifeCount >= framerate * 1.5) {
					this._alpha -= 5;
					if (this._alpha <= 0) {
						this.removeMovieClip();
					}
				} else {
					if (_root.damageDelay == 0 and _root.effectInvisibility == 0 and _root.holder.player.hitTest(this._x + holder._x, this._y + holder._y - this._height / 2, true)) {
						takedamage(1);
						_root.shadeCount = 30;
					}
				}
			};
		}
		function createZealotBolt(xx, yy) {
			if (_root.holder.ground.hitTest(xx + holder._x, yy + holder._y + 5, true)) {
				++count;
				holder.nohtobjects.attachMovie('zealotbolt', 'acid' + count, count);
				holder.nohtobjects['acid' + count]._x = xx;
				holder.nohtobjects['acid' + count]._y = yy;
				holder.nohtobjects['acid' + count].onEnterFrame = function () {
					if (this._currentframe < 10 and _root.damageDelay == 0 and _root.effectInvisibility == 0 and _root.holder.player.hitbox.hitTest(this._x + holder._x, this._y + holder._y - this._height / 2, true)) {
						takedamage(1);
						_root.shadeCount = 30;
					}
				};
			}
		}
		function createMilitaryBullet(xx, yy, dir, type) {
			++count;
			holder.nohtobjects.attachMovie('militarybullet', 'militarybullet' + count, count);
			holder.nohtobjects['militarybullet' + count]._x = xx;
			holder.nohtobjects['militarybullet' + count]._y = yy;
			holder.nohtobjects['militarybullet' + count].xspeed = 10 * dir;
			holder.nohtobjects['militarybullet' + count]._xscale = 100 * dir;
			holder.nohtobjects['militarybullet' + count].onEnterFrame = function () {
				if (!game_paused and !msgbox._visible) {
					if (!this.groundHit) {
						this._x += this.xspeed;
					}
					if (!this.groundHit and _root.holder.ground.hitTest(this._x + holder._x, this._y + holder._y, true)) {
						this.groundHit = true;
						playsplash();
						this.play();
					}
					if (type == 1) {
						arrlen = military2arr.length;
						i = 0;
						while (i < arrlen) {
							if (military2arr[i].damageDelay <= 0 and this.hitTest(military2arr[i])) {
								if (this.xspeed > 0) {
									military2arr[i].bumpAmount += 20;
								} else {
									military2arr[i].bumpAmount -= 20;
								}
								--military2arr[i].life;
								military2arr[i].flashCount = 30;
								military2arr[i].damageDelay = 30;
								military2arr[i].freezeCount = 0;
								this.groundHit = true;
								playsplash();
								this.play();
							}
							++i;
						}
					} else {
						arrlen = military1arr.length;
						i = 0;
						while (i < arrlen) {
							if (military1arr[i].damageDelay <= 0 and this.hitTest(military1arr[i])) {
								if (this.xspeed > 0) {
									military1arr[i].bumpAmount += 20;
								} else {
									military1arr[i].bumpAmount -= 20;
								}
								--military1arr[i].life;
								military1arr[i].flashCount = 30;
								military1arr[i].damageDelay = 30;
								military1arr[i].freezeCount = 0;
								this.groundHit = true;
								playsplash();
								this.play();
							}
							++i;
						}
					}
					if (_root.damageDelay == 0 and _root.effectInvisibility == 0 and _root.holder.player.hitTest(this._x + holder._x, this._y + holder._y, true) and this._currentframe == 1) {
						takedamage(1);
						bf1 = true;
						bf2 = true;
						bf3 = true;
						bf4 = true;
						_root.xspeed = 0;
						_root.shadeCount = 30;
						this.groundHit = true;
						playsplash();
						this.play();
						if (this.xspeed < 0) {
							_root.bumpAmount -= _root.standardBump;
						} else {
							_root.bumpAmount += _root.standardBump;
						}
					}
					if (this._y > stageHeight + 100 or this._x < -50 or this._x > stageWidth + 50) {
						this.removeMovieClip();
					}
				}
			};
		}
		function createFairyBolt(xx, yy, dir) {
			playfairy();
			++count;
			holder.nohtobjects.attachMovie('fairy1bolt', 'fairy1bolt' + count, count);
			holder.nohtobjects['fairy1bolt' + count]._x = xx;
			holder.nohtobjects['fairy1bolt' + count]._y = yy;
			holder.nohtobjects['fairy1bolt' + count].xspeed = 8 * dir;
			holder.nohtobjects['fairy1bolt' + count].yspeed = 2.5 - random(50) / 10;
			holder.nohtobjects['fairy1bolt' + count]._xscale = 100 * dir;
			holder.nohtobjects['fairy1bolt' + count].onEnterFrame = function () {
				if (!game_paused and !msgbox._visible) {
					if (!this.groundHit) {
						this._x += this.xspeed;
						this._y += this.yspeed;
					}
					if (!this.groundHit and _root.holder.ground.hitTest(this._x + holder._x, this._y + holder._y, true)) {
						this.groundHit = true;
						playsplash();
						this.play();
					}
					if (_root.damageDelay == 0 and _root.effectInvisibility == 0 and _root.holder.player.hitbox.hitTest(this._x + holder._x, this._y + holder._y, true) and this._currentframe == 1) {
						takedamage(1);
						_root.xspeed = 0;
						_root.shadeCount = 30;
						this.groundHit = true;
						playsplash();
						this.play();
						if (this.xspeed < 0) {
							_root.bumpAmount -= _root.standardBump;
						} else {
							_root.bumpAmount += _root.standardBump;
						}
					}
					if (this._y > stageHeight + 100 or this._x < -50 or this._x > stageWidth + 50) {
						this.removeMovieClip();
					}
				}
			};
		}
		function createCraneCrate(xx, yy, xspeed) {
			++count;
			holder.nohtobjects.attachMovie('cranecrate', 'crate' + count, count);
			holder.nohtobjects['crate' + count]._x = xx;
			holder.nohtobjects['crate' + count]._y = yy;
			holder.nohtobjects['crate' + count].xspeed = xspeed;
			holder.nohtobjects['crate' + count].yspeed = 0;
			holder.nohtobjects['crate' + count].cacheAsBitmap();
			holder.nohtobjects['crate' + count].onEnterFrame = function () {
				if (!game_paused and !msgbox._visible) {
					if (!this.groundHit) {
						this._x += this.xspeed;
						this._y += this.yspeed;
						++this.yspeed;
						if (_root.damageDelay == 0 and _root.effectInvisibility == 0 and _root.holder.player.hitTest(this._x + holder._x, this._y + holder._y, true)) {
							takedamage(1);
							_root.shadeCount = 30;
						}
						if (_root.holder.ground.hitTest(this._x + holder._x, this._y + holder._y + this.yspeed, true)) {
							playsound('artillery1Sound');
							this.groundHit = true;
							this._y = Math.ceil(this._y / tilesize) * tilesize - tilesize / 2;
							while (_root.holder.ground.hitTest(this._x + holder._x, this._y + holder._y, true)) {
								this._y -= 32;
							}
							delete this.onEnterFrame;
						}
						if (this.xspeed > 0 and _root.holder.ground.hitTest(this._x + holder._x + this.xspeed + this._width / 2, this._y + holder._y, true)) {
							this._x = Math.floor(this._x / tilesize) * tilesize + tilesize / 2;
							this.xspeed = 0;
						} else {
							if (this.xspeed < 0 and _root.holder.ground.hitTest(this._x + holder._x + this.xspeed - this._width / 2, this._y + holder._y, true)) {
								this._x = Math.ceil(this._x / tilesize) * tilesize - tilesize / 2;
								this.xspeed = 0;
							}
						}
					}
					if (this._y > stageHeight + 100) {
						this.removeMovieClip();
					}
				}
			};
		}
		function createFlowerSpit(xx, yy) {
			++count;
			holder.nohtobjects.attachMovie('flowerspit', 'flowerspit' + count, count);
			holder.nohtobjects['flowerspit' + count]._x = xx;
			holder.nohtobjects['flowerspit' + count]._y = yy;
			holder.nohtobjects['flowerspit' + count].xspeed = random(100) / 10 - 5;
			holder.nohtobjects['flowerspit' + count].yspeed = -random(50) / 10 - 10;
			holder.nohtobjects['flowerspit' + count].onEnterFrame = function () {
				if (!game_paused and !msgbox._visible) {
					if (!this.groundHit) {
						this.yspeed += 0.5;
						this._x += this.xspeed;
						this._y += this.yspeed;
					}
					if (!this.groundHit and _root.holder.ground.hitTest(this._x + holder._x, this._y + holder._y, true)) {
						this.groundHit = true;
						this._y = Math.floor(this._y / tilesize) * tilesize;
						playsound('bisi2Sound');
						this.play();
					}
					if (_root.damageDelay == 0 and _root.effectInvisibility == 0 and _root.holder.player.hitTest(this._x + holder._x, this._y + holder._y, true) and this._currentframe == 1) {
						playsound('bisi2Sound');
						takedamage(1);
						_root.xspeed = 0;
						_root.shadeCount = 30;
						this.groundHit = true;
						this.play();
						if (this.xspeed < 0) {
							_root.bumpAmount -= _root.standardBump;
						} else {
							_root.bumpAmount += _root.standardBump;
						}
					}
					if (this._y > stageHeight + 100) {
						this.removeMovieClip();
					}
				}
			};
		}
		function createCaveSpit(xx, yy, dir) {
			++count;
			holder.nohtobjects.attachMovie('cavespit', 'cavespit' + count, count);
			holder.nohtobjects['cavespit' + count]._x = xx;
			holder.nohtobjects['cavespit' + count]._y = yy;
			holder.nohtobjects['cavespit' + count].xspeed = 10 * dir * (random(20) / 100 + 0.9);
			holder.nohtobjects['cavespit' + count].yspeed = 0;
			holder.nohtobjects['cavespit' + count].onEnterFrame = function () {
				if (!game_paused) {
					if (!this.groundHit) {
						this.yspeed += 0.1;
						this._x += this.xspeed;
						this._y += this.yspeed;
					}
					if (!this.groundHit and _root.holder.ground.hitTest(this._x + holder._x, this._y + holder._y - this._height / 2, true)) {
						this.groundHit = true;
						this._y = Math.floor(this._y / tilesize) * tilesize;
						playsplash();
						this.play();
					}
					if (_root.damageDelay == 0 and _root.effectInvisibility == 0 and _root.holder.player.hitTest(this._x + holder._x, this._y + holder._y - this._height / 2, true) and this._currentframe == 1) {
						takedamage(1);
						_root.xspeed = 0;
						_root.shadeCount = 30;
						this.groundHit = true;
						playsplash();
						this.play();
						if (this.xspeed < 0) {
							_root.bumpAmount -= _root.standardBump;
						} else {
							_root.bumpAmount += _root.standardBump;
						}
					}
					if (this._y > stageHeight + 100) {
						this.removeMovieClip();
					}
				}
			};
		}
		function createCaveSpit2(xx, yy, dir) {
			++count;
			holder.nohtobjects.attachMovie('cavespit2', 'cavespit' + count, count);
			holder.nohtobjects['cavespit' + count]._x = xx;
			holder.nohtobjects['cavespit' + count]._y = yy;
			holder.nohtobjects['cavespit' + count].xspeed = 7 * dir * (random(80) / 100 + 0.6);
			holder.nohtobjects['cavespit' + count].yspeed = -4 * (random(80) / 100 + 0.6);
			holder.nohtobjects['cavespit' + count].onEnterFrame = function () {
				if (!game_paused) {
					if (!this.groundHit) {
						this.yspeed += 0.5;
						this._x += this.xspeed;
						this._y += this.yspeed;
					}
					if (!this.groundHit and _root.holder.ground.hitTest(this._x + holder._x, this._y + holder._y - this._height / 2 + this.yspeed, true)) {
						this.groundHit = true;
						this._y = Math.floor(this._y / tilesize) * tilesize;
						playsplash();
						this.play();
					}
					if (_root.damageDelay == 0 and _root.effectInvisibility == 0 and _root.holder.player.hitTest(this._x + holder._x, this._y + holder._y - this._height / 2, true) and this._currentframe == 1) {
						takedamage(1);
						_root.xspeed = 0;
						_root.shadeCount = 30;
						this.groundHit = true;
						playsplash();
						this.play();
						if (this.xspeed < 0) {
							_root.bumpAmount -= _root.standardBump;
						} else {
							_root.bumpAmount += _root.standardBump;
						}
					}
					if (this._y > stageHeight + 100) {
						this.removeMovieClip();
					}
				}
			};
		}
		function createBody(xx, yy, id, fallcheck, dir) {
			if (fallcheck == null) {
				fallcheck = true;
			}
			++count;
			holder.nohtobjects.attachMovie('deadBody', 'deadBody' + count, count);
			holder.nohtobjects['deadBody' + count]._x = xx;
			holder.nohtobjects['deadBody' + count]._y = yy;
			holder.nohtobjects['deadBody' + count]._xscale = dir;
			holder.nohtobjects['deadBody' + count].gotoAndStop(id);
			holder.nohtobjects['deadBody' + count].doOnce = true;
			holder.nohtobjects['deadBody' + count].onEnterFrame = function () {
				if (!game_paused) {
					if (this.doOnce) {
						this.yspeed = 0;
						this.fall = true;
						this.doOnce = false;
						if (!fallcheck) {
							this.fall = false;
						}
					}
					if (this.fall and !_root.holder.ground.hitTest(this._x + _root.holder._x, this._y + _root.holder._y + this.yspeed, true)) {
						this.yspeed += 0.5;
						this._y += this.yspeed;
						if (this._y > _root.stageHeight * 2) {
							this.removeMovieClip();
						}
					} else {
						if (this.fall) {
							this.yspeed = false;
							this._x = int(this._x);
							this._y = int(this._y);
							this._y = Math.ceil(this._y / tilesize) * tilesize;
							this.fall = false;
						}
					}
				}
			};
		}
		function createAcidRain() {
			if (!actions[55]) {
				rainarr = [];
				raindelay = 2;
				i = 0;
				while (i < 30) {
					++count;
					attachMovie('acidrain', 'acidrain' + i, count);
					rainarr.push(_root['acidrain' + i]);
					_root['acidrain' + i].cacheAsBitmap();
					_root['acidrain' + i]._x = random(stagewidth);
					_root['acidrain' + i]._y = random(stageheight);
					++i;
				}
				++count;
				msgbox.swapDepths(count);
			}
		}
		function runAcidRain() {
			if (!actions[55]) {
				--raindelay;
				if (raindelay == 0) {
					raindelay = 1;
					rainarrlen = rainarr.length;
					i = 0;
					while (i < rainarrlen) {
						rainarr[i]._x -= 10;
						rainarr[i]._y += 15;
						if (rainarr[i]._x < -50) {
							rainarr[i]._x += stagewidth + 50 + random(100);
						}
						if (rainarr[i]._y > stageheight + 50) {
							rainarr[i]._y -= stageheight + 50 + random(100);
						}
						++i;
					}
				}
			}
		}
		function dropHealth(xx, yy, chance) {
			if (chance == null) {
				chance = 25;
			}
			rnd = random(100);
			if (health < maxhealth and chance > rnd) {
				++count;
				holder.nohtobjects.attachMovie('healthp', 'healthp' + count, count);
				holder.nohtobjects['healthp' + count]._x = xx;
				holder.nohtobjects['healthp' + count]._y = yy;
				if (holder.player._x > xx) {
					holder.nohtobjects['healthp' + count].xspeed = -random(30) / 10 - 2;
				} else {
					holder.nohtobjects['healthp' + count].xspeed = random(30) / 10 + 2;
				}
				holder.nohtobjects['healthp' + count].yspeed = -random(30) / 10 - 5;
				holder.nohtobjects['healthp' + count].bouncing = true;
				holder.nohtobjects['healthp' + count].bouncecount = 0;
				holder.nohtobjects['healthp' + count].onEnterFrame = function () {
					if (!game_paused) {
						if (this.hitTest(holder.player)) {
							++health;
							update_life();
							create_pickupanim(_x, _y - tilesize);
							playsound('heal1Sound');
							this.removeMovieClip();
						}
						if (this.bouncing) {
							++this.bouncecount;
							if (this.bouncecount % 10 == 0) {
								this.particle._rotation += 45 * this.xspeed / Math.abs(this.xspeed);
							}
							this._x += this.xspeed;
							this._y += this.yspeed;
							this.yspeed += 0.5;
							if (this.xspeed > 0) {
								if (_root.holder.ground.hitTest(this._x + _root.holder._x + this._width / 2, this._y + _root.holder._y - this._height, true)) {
									this.xspeed *= -0.7;
								}
							} else {
								if (_root.holder.ground.hitTest(this._x + _root.holder._x - this._width / 2, this._y + _root.holder._y - this._height, true)) {
									this.xspeed *= -0.7;
								}
							}
							while (_root.holder.ground.hitTest(this._x + _root.holder._x, this._y + _root.holder._y - this._height, true)) {
								++this._y;
							}
							if (_root.holder.ground.hitTest(this._x + _root.holder._x, this._y + _root.holder._y, true)) {
								this._y = Math.floor(this._y / tilesize) * tilesize;
								this.yspeed *= -0.7;
								this.xspeed *= 0.8;
								if (Math.abs(this.yspeed) < 2) {
									this.bouncing = false;
									this._y = Math.floor(this._y / tilesize) * tilesize;
									while (!_root.holder.ground.hitTest(this._x + _root.holder._x, this._y + _root.holder._y, true)) {
										++this._y;
									}
								}
							}
						}
					}
				};
			}
		}
		function create_cloud(xx, yy, id) {
			++count;
			holder.createEmptyMovieClip('cloudgen' + count, count);
			holder['cloudgen' + count].count = 0;
			holder['cloudgen' + count].num = 0;
			if (id == 0) {
				targ = 'cloudsMolotov';
				playfire();
				bossfreezepotion = true;
			} else {
				if (id == 1) {
					targ = 'cloudsIce';
					playice();
				} else {
					if (id == 2) {
						targ = 'cloudsExplosion';
						playexplosion();
						bossfreezepotion = true;
					} else {
						if (id == 8) {
							targ = 'cloudsLanguage';
							playsound('reveal1Sound');
						} else {
							if (id == 9) {
								targ = 'cloudsOxygen';
								playsound('oxygen1Sound');
							}
						}
					}
				}
			}
			holder['cloudgen' + count].onEnterFrame = function () {
				if (!game_paused) {
					++this.count;
					if (this.count > 0) {
						i = 0;
						while (i < 2) {
							this.count = 0;
							++this.num;
							++count;
							holder[targ].attachMovie('cloud', 'cloud' + count, count);
							holder[targ]['cloud' + count]._x = xx + (random(tilesize * 40) / 10 - tilesize * 2);
							holder[targ]['cloud' + count]._y = yy + 2 * tilesize - random(tilesize * 5);
							holder[targ]['cloud' + count].gotoAndStop(id + 1);
							++i;
						}
					}
					if (this.num > 25) {
						this.removeMovieClip();
					}
				}
			};
		}
		function camerafollow(xcam, ycam) {
			if (holder.player._xscale > 0) {
				playerxtarg = stagewidth * 0.4;
			} else {
				playerxtarg = stagewidth * 0.6;
			}
			playerytarg = stageheight * 0.6;
			playerxtargdiff = playerxtarg - (holder.player._x + holder._x);
			if (Math.abs(playerxtargdiff) > 5) {
				holder._x += playerxtargdiff * (xcam + Math.abs(xcam * xspeed / walkspeed));
				if (holder._x > 0) {
					holder._x = 0;
				}
				if (holder._x < -levelwidth + stagewidth) {
					holder._x = -levelwidth + stagewidth;
				}
			}
			playerytargdiff = playerytarg - (holder.player._y + holder._y);
			if (Math.abs(playerytargdiff) > 5) {
				holder._y += playerytargdiff * ycam;
				if (holder._y < -levelheight + stageheight) {
					holder._y = -levelheight + stageheight;
				}
				if (holder._y > 0) {
					holder._y = 0;
				}
			}
			holder._x = int(holder._x);
			holder._y = int(holder._y);
		}
		function bgmove(bgam) {
			if (!game_paused) {
				if (bgam == null) {
					bgam = 0.8;
				}
				if (!dying and !fadeout) {
					begxdiff = holder._x - begx;
					begydiff = holder._y - begy;
					holder.bg._x -= begxdiff * bgam;
					holder.bg._y -= begydiff * bgam;
					fbegxdiff = holder._x - begx;
					fbegydiff = holder._y - begy;
					holder.frontbg._x -= fbegxdiff * bgam * 0.8;
					holder.frontbg._y -= fbegydiff * bgam * 0.95;
					if (holder.frontbg._y > levelheight - stageheight) {
						holder.frontbg._y = levelheight - stageheight;
					}
				}
			}
		}
		function fall() {
			if (!climbing and effectGravity == 0) {
				if (groundtime > 0) {
					--groundtime;
				}
				if (groundtime == 0) {
					holder.player._y += fallspeed;
					fallspeed += maxfallspeed / falltime;
					if (fallspeed > maxfallspeed) {
						fallspeed = maxfallspeed;
					}
				}
			}
		}
		function gravityMove() {
			if (effectSpeed > 0 or effectJump > 0) {
				addspeed = 1.4;
			} else {
				addspeed = 1;
			}
			if (Key.isDown(39) or Key.isDown(68)) {
				swimx += swimspeed / swimacctime;
				holder.player._xscale = 100;
			} else {
				if (Key.isDown(37) or Key.isDown(65)) {
					swimx -= swimspeed / swimacctime;
					holder.player._xscale = -100;
				} else {
					swimx *= swimslide;
				}
			}
			if (Key.isDown(40) or Key.isDown(83)) {
				swimy += swimspeed / swimacctime;
			} else {
				if (Key.isDown(38) or Key.isDown(87)) {
					swimy -= swimspeed / swimacctime;
				} else {
					swimy *= swimslide;
					if (swimy < 1) {
						swimy += 0.2;
					}
				}
			}
			if (swimx > swimspeed) {
				swimx = swimspeed;
			} else {
				if (swimx < -swimspeed) {
					swimx = -swimspeed;
				}
			}
			if (swimy > swimspeed) {
				swimy = swimspeed;
			} else {
				if (swimy < -swimspeed) {
					swimy = -swimspeed;
				}
			}
			holder.player._x += swimx * addspeed;
			holder.player._y += swimy * addspeed;
			while (holder.ground.hitTest(holder.player._x + holder._x + playwidth / 2, holder.player._y + holder._y - playheight / 2, true)) {
				--holder.player._x;
				swimx = 0;
			}
			while (holder.ground.hitTest(holder.player._x + holder._x - playwidth / 2, holder.player._y + holder._y - playheight / 2, true)) {
				++holder.player._x;
				swimx = 0;
			}
			while (holder.ground.hitTest(holder.player._x + holder._x, holder.player._y + holder._y, true)) {
				--holder.player._y;
				swimy = 0;
			}
			while (holder.ground.hitTest(holder.player._x + holder._x, holder.player._y + holder._y - playheight, true)) {
				++holder.player._y;
				swimy = 0;
			}
		}
		function climb() {
			if (effectSpeed > 0) {
				addspeed = 1.4;
			} else {
				addspeed = 1;
			}
			if (Key.isDown(39) or Key.isDown(68)) {
				holder.player._x += climbspeed * addspeed;
				holder.player._xscale = 100;
			} else {
				if (Key.isDown(37) or Key.isDown(65)) {
					holder.player._x -= climbspeed * addspeed;
					holder.player._xscale = -100;
				}
			}
			if (Key.isDown(40) or Key.isDown(83)) {
				holder.player._y += climbspeed * addspeed;
			} else {
				if (Key.isDown(38) or Key.isDown(87)) {
					holder.player._y -= climbspeed * addspeed;
				}
			}
			while (holder.ground.hitTest(holder.player._x + holder._x + playwidth / 2, holder.player._y + holder._y - playheight / 2, true)) {
				--holder.player._x;
			}
			while (holder.ground.hitTest(holder.player._x + holder._x - playwidth / 2, holder.player._y + holder._y - playheight / 2, true)) {
				++holder.player._x;
			}
			while (holder.ground.hitTest(holder.player._x + holder._x, holder.player._y + holder._y, true)) {
				--holder.player._y;
			}
			while (holder.ground.hitTest(holder.player._x + holder._x, holder.player._y + holder._y - playheight, true)) {
				++holder.player._y;
			}
			lastwall = '';
			lastdouble = 'ground';
		}
		function takedamage(dam) {
			if (damageDelay == 0 and !game_paused and !fadeout and !fadein) {
				health -= dam;
				playhit();
				update_life();
				damageDelay = damageDelayT;
			}
		}
		function update_life() {
			i = 0;
			while (i < maxhealth) {
				if (i >= health) {
					lives_bar['health_dot' + i].gotoAndStop(2);
				} else {
					lives_bar['health_dot' + i].gotoAndStop(1);
				}
				++i;
			}
		}
		function bumpPlayer() {
			if (Math.abs(bumpAmount) < 1 or holder.ground.hitTest(holder.player._x + holder._x + bumpAmount * 2, holder.player._y + holder._y - 5, true)) {
				bumpAmount = 0;
			} else {
				holder.player._x += bumpAmount;
				bumpAmount *= 0.8;
			}
		}
		function shadePlayer() {
			if (shadeCount > 0) {
				--shadeCount;
				holder.player.setBrightness(random(100));
				if (shadeCount == 0) {
					holder.player.setBrightness(0);
				}
			}
		}
		function delayDamage() {
			if (damageDelay > 0) {
				--damageDelay;
				if (damageDelay % framerate / 6 == 1) {
					if (flashTicker == 1) {
						holder.player._alpha = 50;
						flashTicker = 2;
					} else {
						holder.player._alpha = 80;
						flashTicker = 1;
					}
				}
				if (damageDelay == 0) {
					holder.player._alpha = 100;
					flashTicker = 1;
				}
			}
		}
		function quickSelect() {
			if (allowPrev and !drinking and !attacking and uniquepotions > 1 and (Key.isDown(81) or Key.isDown(90))) {
				allowPrev = false;
				selectedpotion = previousPotion;
				updateIcons();
			} else {
				if (!Key.isDown(81) and !Key.isDown(90)) {
					allowPrev = true;
				}
			}
			if (allowNext and !drinking and !attacking and uniquepotions > 1 and (Key.isDown(69) or Key.isDown(88))) {
				allowNext = false;
				selectedpotion = nextPotion;
				updateIcons();
			} else {
				if (!Key.isDown(69) and !Key.isDown(88)) {
					allowNext = true;
				}
			}
		}
		function updateIcons() {
			uniquepotions = 0;
			i = 0;
			while (i < numpotions) {
				if (potionsarr[i] > 0) {
					++uniquepotions;
				}
				++i;
			}
			if (selectedpotion != null and uniquepotions > 1 and !cutscene) {
				potionShortcut._visible = true;
				if (potionsarr[selectedpotion] > 0) {
					potionShortcut.currIcon._visible = true;
					potionShortcut.currIcon.gotoAndStop(selectedpotion + 1);
					potionShortcut.desc = _root.potionsnames[selectedpotion];
					if (selectedpotion == 0 or selectedpotion == 1 or selectedpotion == 2) {
						potionShortcut.num = 'INF';
					} else {
						potionShortcut.num = _root.potionsarr[selectedpotion];
					}
				} else {
					potionShortcut.currIcon._visible = false;
					potionShortcut.desc = '';
					potionShortcut.num = '';
				}
				potionShortcut.nextIcon._visible = false;
				potionShortcut.nextDesc = '';
				potionShortcut.nextButtons = '';
				i = 0;
				while (i < numpotions) {
					nextOffset = i + selectedpotion;
					if (nextOffset > numpotions - 1) {
						nextOffset -= numpotions;
					}
					if (potionsarr[nextOffset] > 0 and nextOffset != selectedpotion) {
						potionShortcut.nextIcon._visible = true;
						potionShortcut.nextIcon.gotoAndStop(nextOffset + 1);
						potionShortcut.nextDesc = _root.potionsnames[nextOffset];
						potionShortcut.nextButtons = 'E / X';
						nextPotion = nextOffset;
						break;
					}
					++i;
				}
				potionShortcut.prevIcon._visible = false;
				potionShortcut.prevDesc = '';
				potionShortcut.prevButtons = '';
				i = 0;
				while (i < numpotions) {
					prevOffset = numpotions - i + selectedpotion;
					if (prevOffset < 0) {
						prevOffset += numpotions;
					}
					if (prevOffset > numpotions - 1) {
						prevOffset -= numpotions;
					}
					if (potionsarr[prevOffset] > 0 and prevOffset != selectedpotion) {
						potionShortcut.prevIcon._visible = true;
						potionShortcut.prevIcon.gotoAndStop(prevOffset + 1);
						potionShortcut.prevDesc = _root.potionsnames[prevOffset];
						potionShortcut.prevButtons = 'Q / Z';
						previousPotion = prevOffset;
						break;
					}
					++i;
				}
			} else {
				potionShortcut._visible = false;
			}
		}
		function throwpotion() {
			if (attcount <= 0 and !drinking and !attacking) {
				if (spacedown and (selectedpotion < 3 or selectedpotion == 8 and potionsarr[8] > 0 or selectedpotion == 9 and potionsarr[9] > 0)) {
					++spacecount;
					holder.player.throwbar._visible = true;
					holder.player.throwbar._alpha = 100;
					holder.player.throwbar.gotoAndStop(spacecount);
					if (!Key.isDown(32) or spacecount >= 15) {
						spacedown = false;
						attacking = true;
						attcount = 13;
						activepotion = selectedpotion;
						if (selectedpotion == 8 or selectedpotion == 9) {
							--potionsarr[selectedpotion];
							updateIcons();
						}
					}
				} else {
					if (holder.player.throwbar._visible and holder.player.throwbar._alpha > 0) {
						holder.player.throwbar._alpha -= 10;
						if (holder.player.throwbar._alpha <= 0) {
							holder.player.throwbar._visible = false;
						}
					}
				}
				if (Key.isDown(32) and !attacking and !drinking and !spacedown) {
					if (!spacedown and (selectedpotion < 3 or selectedpotion == 8 and potionsarr[8] > 0 or selectedpotion == 9 and potionsarr[9] > 0)) {
						spacedown = true;
						spacecount = 1;
					} else {
						if (selectedpotion >= 3 and selectedpotion != 8 and selectedpotion != 9 and potionsarr[selectedpotion] > 0) {
							drinking = true;
							drinkcount = 30;
						} else {
							shrugging = 12;
						}
					}
				}
			}
			if (drinking and drinkcount == 2 and !dying) {
				--potionsarr[selectedpotion];
				activepotion = selectedpotion;
				updateIcons();
				playsound('drink1Sound');
				if (activepotion == 3) {
					effectJump = standardEffectT;
				} else {
					if (activepotion == 4) {
						effectSpeed = standardEffectT;
					} else {
						if (activepotion == 5) {
							effectHealth = standardEffectT;
							maxhealth += 5;
							health = maxhealth;
							effectPoison = 0;
							clear_life();
							load_life();
						} else {
							if (activepotion == 6) {
								health = maxhealth;
								effectPoison = 0;
								clear_life();
								load_life();
							} else {
								if (activepotion == 7) {
									effectScience = standardEffectT;
								} else {
									if (activepotion == 10) {
										effectInvisibility = standardEffectT;
									} else {
										if (activepotion == 11) {
											effectGravity = standardEffectT;
										}
									}
								}
							}
						}
					}
				}
				if (effectJump > 0 and effectSpeed > 0 and effectHealth > 0 and effectScience > 0 and effectInvisibility > 0 and effectGravity > 0) {
					givemedal(22);
				}
			}
			if (attcount == 9 and attacking) {
				++count;
				holder.nohtobjects.attachMovie('potions', 'potions' + count, count);
				holder.nohtobjects['potions' + count]._x = holder.player._x + playwidth * 0.5 * holder.player._xscale / 100;
				holder.nohtobjects['potions' + count]._y = holder.player._y - playheight * 0.75;
				holder.nohtobjects['potions' + count].xspeed = (2 + 4 * ((spacecount + 1) / 15)) * holder.player._xscale / 100;
				holder.nohtobjects['potions' + count].yspeed = -6;
				holder.nohtobjects['potions' + count].gotoAndStop(activepotion + 1);
				holder.nohtobjects['potions' + count].onEnterFrame = function () {
					this._x += this.xspeed;
					this._y += this.yspeed;
					this.yspeed += 0.75;
					if (holder.ground.hitTest(this._x + holder._x, this._y + holder._y, true) or holder.objects.hitTest(this._x + holder._x, this._y + holder._y, true)) {
						create_cloud(this._x, this._y, activepotion);
						this.removeMovieClip();
					}
				};
			}
		}
		function giveExclamation() {
			if (!holder.exclamation) {
				++count;
				holder.attachMovie('exclamation', 'exclamation', count);
				holder.exclamation.onEnterFrame = function () {
					this._x = holder.player._x + xspeed;
					this._y = holder.player._y;
				};
			} else {
				if (holder.exclamation._currentframe > 6) {
					holder.exclamation.gotoAndPlay(6);
				}
			}
		}
		function arrowcheck() {
			if (Key.isDown(40) or Key.isDown(83) or Key.isDown(38) or Key.isDown(87) or Key.isDown(39) or Key.isDown(68) or Key.isDown(37) or Key.isDown(65)) {
				arrowdown = true;
			} else {
				arrowdown = false;
			}
		}
		function loadmap() {
			mapholder = allmap.split(' BREAK ');
			groundmap = new Array();
			foregroundmap = new Array();
			backgroundmap = new Array();
			watermap = new Array();
			laddermap = new Array();
			startx = parseInt(mapholder[0].split(','));
			starty = parseInt(mapholder[1].split(','));
			rowtiles = parseInt(mapholder[2].split(','));
			coltiles = parseInt(mapholder[3].split(','));
			groundmap = mapholder[4].split(',');
			foregroundmap = mapholder[5].split(',');
			backgroundmap = mapholder[6].split(',');
			laddermap = mapholder[7].split(',');
			bgselect = mapholder[8].split(',');
			frontbgselect = mapholder[9].split(',');
			levelwidth = rowtiles * _root.tilesize;
			levelheight = coltiles * _root.tilesize;
			objectarr = new Array();
			i = 10;
			while (i < mapholder.length) {
				objectarr[i] = mapholder[i].split(',');
				++count;
				holder.objects.attachMovie('objects', 'object' + count, count);
				holder.objects['object' + count]._x = objectarr[i][2];
				holder.objects['object' + count]._y = objectarr[i][3];
				holder.objects['object' + count].specarr = new Array();
				holder.objects['object' + count].specarr = objectarr[i];
				++i;
			}
			xtile = 0;
			ytile = 0;
			i = 0;
			while (i < groundmap.length) {
				if (groundmap[i] > 0) {
					tileselect = groundmap[i];
					tilenum = i;
					++count;
					holder.ground.attachMovie('groundtile', 'tile' + tilenum, count);
					holder.ground['tile' + tilenum]._x = xtile;
					holder.ground['tile' + tilenum]._y = ytile;
					_currentframe = tileselect;
					holder.ground['tile' + tilenum].gotoAndStop(tileselect);
				}
				xtile += _root.tilesize;
				if (xtile >= levelwidth) {
					xtile -= levelwidth;
					ytile += _root.tilesize;
				}
				++i;
			}
			xtile = 0;
			ytile = 0;
			i = 0;
			while (i < backgroundmap.length) {
				if (backgroundmap[i] > 0) {
					tileselect = backgroundmap[i];
					tilenum = i;
					++count;
					holder.background.attachMovie('backgroundtile', 'tile' + tilenum, count);
					holder.background['tile' + tilenum]._x = xtile;
					holder.background['tile' + tilenum]._y = ytile;
					_currentframe = tileselect;
					holder.background['tile' + tilenum].gotoAndStop(tileselect);
				}
				xtile += _root.tilesize;
				if (xtile >= levelwidth) {
					xtile -= levelwidth;
					ytile += _root.tilesize;
				}
				++i;
			}
			xtile = 0;
			ytile = 0;
			i = 0;
			while (i < foregroundmap.length) {
				if (foregroundmap[i] > 0) {
					tileselect = foregroundmap[i];
					tilenum = i;
					++count;
					holder.foreground.attachMovie('foregroundtile', 'tile' + tilenum, count);
					holder.foreground['tile' + tilenum]._x = xtile;
					holder.foreground['tile' + tilenum]._y = ytile;
					_currentframe = tileselect;
					holder.foreground['tile' + tilenum].gotoAndStop(tileselect);
				}
				xtile += _root.tilesize;
				if (xtile >= levelwidth) {
					xtile -= levelwidth;
					ytile += _root.tilesize;
				}
				++i;
			}
			xtile = 0;
			ytile = 0;
			i = 0;
			while (i < laddermap.length) {
				if (laddermap[i] > 0) {
					tileselect = laddermap[i];
					tilenum = i;
					++count;
					holder.ladders.attachMovie('laddertile', 'tile' + tilenum, count);
					holder.ladders['tile' + tilenum]._x = xtile;
					holder.ladders['tile' + tilenum]._y = ytile;
					_currentframe = tileselect;
					holder.ladders['tile' + tilenum].gotoAndStop(tileselect);
				}
				xtile += _root.tilesize;
				if (xtile >= levelwidth) {
					xtile -= levelwidth;
					ytile += _root.tilesize;
				}
				++i;
			}
		}
		function create_holders() {
			count = 0;
			++count;
			underbgdep = count;
			++count;
			_root.createEmptyMovieClip('holder', count);
			++count;
			bgdep = count;
			++count;
			frontbgdep = count;
			++count;
			holder.createEmptyMovieClip('background', count);
			holder.background.cacheAsBitmap();
			++count;
			holder.createEmptyMovieClip('ladders', count);
			holder.ladders.cacheAsBitmap();
			++count;
			holder.createEmptyMovieClip('ground', count);
			holder.ground.cacheAsBitmap();
			++count;
			holder.createEmptyMovieClip('objects', count);
			++count;
			holder.createEmptyMovieClip('nohtobjects', count);
			++count;
			holder.createEmptyMovieClip('foreground', count);
			holder.foreground.cacheAsBitmap();
			++count;
			holder.createEmptyMovieClip('cloudsMolotov', count);
			++count;
			holder.createEmptyMovieClip('cloudsIce', count);
			++count;
			holder.createEmptyMovieClip('cloudsExplosion', count);
			++count;
			holder.createEmptyMovieClip('cloudsLanguage', count);
			++count;
			holder.createEmptyMovieClip('cloudsOxygen', count);
		}
		function clear_life() {
			lives_bar.removeMovieClip();
		}
		function load_life() {
			++count;
			attachMovie('lives_bar', 'lives_bar', count);
			livesx = 0;
			i = 0;
			while (i < maxhealth) {
				++count;
				lives_bar.attachMovie('health_dot', 'health_dot' + i, count);
				lives_bar['health_dot' + i]._x = livesx;
				lives_bar['health_dot' + i].gotoAndStop(1);
				livesx += lives_bar['health_dot' + i]._width / 2;
				++i;
			}
		}
		function load_misc() {
			holder.attachMovie('player', 'player', count);
			if (!oride_x == 0 and !oride_y == 0) {
				startx = oride_x;
				starty = oride_y;
			}
			if (check_load) {
				startx = check_x;
				starty = check_y;
				check_load = false;
			}
			holder.player._x = startx;
			holder.player._y = starty;
			holder.player._xscale = lastxscale;
			holder.player.throwbar.gotoAndStop(1);
			holder.player.throwbar._visible = false;
			playheight = 50;
			playwidth = 28;
			load_life();
			update_life();
			++count;
			attachMovie('msgbox', 'msgbox', count);
			++count;
			attachMovie('player_excl', 'player_excl', count);
			++count;
			attachMovie('potionShortcut', 'potionShortcut', count);
			updateIcons();
			new com.robertpataki.heartcode.BitmapTiler(_root, 'underbg', bgselect, stagewidth, stageheight);
			underbg.swapDepths(underbgdep);
			underbg.cacheAsBitmap();
			new com.robertpataki.heartcode.BitmapTiler(holder, 'bg', bgselect, levelwidth * 1.25, levelheight * 1.25);
			holder.bg._x = -levelwidth * 0.125;
			holder.bg._y = -levelheight * 0.125;
			holder.bg.swapDepths(bgdep);
			holder.bg.cacheAsBitmap();
			frontbgselect = parseInt(frontbgselect);
			if (frontbgselect != 0 and frontbgselect != null) {
				holder.attachMovie('frontbg', 'frontbg', frontbgdep);
				holder.frontbg.gotoAndStop(frontbgselect);
				holder.frontbg._x = levelwidth / 2;
				holder.frontbg._y = levelheight - stageheight;
				holder.frontbg.cacheAsBitmap();
			}
			++count;
			_root.attachMovie('fadein', 'fadein', count);
			++count;
			holder.foreground.swapDepths(count);
			++count;
			attachMovie('game_frame', 'game_frame', count + 10000);
			game_frame.cacheAsBitmap();
		}
		function unpause() {
			updateIcons();
			mixscreen.removeMovieClip();
			potionscreen.removeMovieClip();
			questscreen.removeMovieClip();
			menuScreen.removeMovieClip();
			settingsmenu.removeMovieClip();
			game_paused = false;
			holder.player._visible = true;
			holder.objects._visible = true;
			attcount = 12;
			msgbreather = 12;
		}
		function open_mixing() {
			++count;
			attachMovie('mixscreen', 'mixscreen', count);
			game_paused = true;
		}
		function open_potions() {
			++count;
			attachMovie('potionscreen', 'potionscreen', count);
			game_paused = true;
		}
		function open_quests() {
			++count;
			attachMovie('questscreen', 'questscreen', count);
			game_paused = true;
		}
		function open_settings() {
			++count;
			attachMovie('settingsmenu', 'settingsmenu', count);
			game_paused = true;
		}
		function open_achievements() {
			++count;
			attachMovie('achievementsmenu', 'achievementsmenu', count);
			game_paused = true;
		}
		function attachMenu() {
			++count;
			attachMovie('menuScreen', 'menuScreen', count);
		}
		function open_menu() {
			if (!cutscene and !dying and !fadeout and !menuScreen and (allowEnter and (Key.isDown(13) or Key.isDown(27) or Key.isDown(80) or clickingwalkthru))) {
				menupos = 0;
				allowEnter = false;
				attachMenu();
				holder.player._visible = false;
				game_paused = true;
			} else {
				if (!Key.isDown(13) and !Key.isDown(27) and !Key.isDown(80) and !menuScreen) {
					allowEnter = true;
				}
			}
			clickingwalkthru = false;
		}
		function player_properties(groundplayer) {
			walkacctime = 10;
			walkspeed = 8;
			xspeed = 0;
			slideamount = 0.4;
			airfriction = 0.8;
			directionslide = 0.5;
			swimacctime = 15;
			swimspeed = 6;
			swimslide = 0.7;
			swimx = 0;
			swimy = 0;
			climbspeed = 5;
			groundtime = 0;
			maxfallspeed = 10;
			falltime = 10;
			fallspeed = 0;
			maxjumptime = 17;
			jumprate = 14;
			minjumptime = 7;
			doublejumplim = 5;
			doublejumpbeg = 0;
			groundedcount = 0;
			jumpdelay = 0;
			bumpAmount = 0;
			damageDelay = 0;
			dying = false;
			damage_count = 0;
			attacking = false;
			drinking = false;
			shrugging = 0;
			msgbreather = 0;
			cutscene = false;
			holder.player._visible = true;
			walk_sound = 0;
			pickuptexts = 0;
			pickuptextmax = 0;
			teleporting = false;
			musicfadingin = false;
			musicfadingout = false;
			if (groundplayer) {
				holder.player._y = Math.ceil(holder.player._y / tilesize) * tilesize;
			}
			xcam = 0.03;
			ycam = 0.2;
			camerafollow(1, 1);
		}
		function clear_all() {
			save_music_pos = _root[music_last].position / 1000;
			music_pos_load = _root[music_last].position / 1000 + 0;
			for (i in _root) {
				if (typeof _root[i] == 'movieclip') {
					if (_root[i] != _root.musicholder and _root[i] != _root.ngapibox) {
						trace('deleted ' + _root[i]);
						_root[i].removeMovieClip();
					} else {
						trace('did not delete ' + _root[i]);
					}
				}
			}
			delete enterFrame;
		}
		function shift_frame(targframe, targx, targy) {
			if (!_root.fadeout) {
				++count;
				_root.attachMovie('fadeout', 'fadeout', count);
				fadecount = 0;
				player_excl.removeMovieClip();
			} else {
				++fadecount;
				if (fadecount == fadeout._totalframes) {
					lastxscale = holder.player._xscale;
					punt_target = targframe;
					clear_all();
					oride_x = targx;
					oride_y = targy;
					existence = 0;
					gotoAndStop('puntback');
				}
			}
		}
		function trigger_shift_frame(targframe, targx, targy) {
			++count;
			createEmptyMovieClip('shifttrigger' + count, count);
			_root['shifttrigger' + count].onEnterFrame = function () {
				shift_frame(targframe, targx, targy);
			};
		}
		function givemedal(medalid) {
			if (medalarr[medalid] != true) {
				medalarr[medalid] = true;
				++count;
				attachMovie('medaldisp', 'medaldisp' + count, count);
				_root['medaldisp' + count].box.desc = medaldesc[medalid];
				_root['medaldisp' + count].box.ictarget = medalid + 1;
			}
		}
		function savegame() {
			saving = true;
			savecount = 0;
		}
		function runsave() {
			if (saving) {
				saveData.clear();
				saveData.data.savecheck = true;
				saveData.data.maxhealth = maxhealth;
				saveData.data.health = health;
				saveData.data.check_x = check_x;
				saveData.data.check_y = check_y;
				saveData.data.frm = check_frame;
				saveData.data.selectedpotion = selectedpotion;
				saveData.data.ingredientspicked = ingredientspicked;
				saveData.data.actions = new Array();
				i = 0;
				while (i < actions_len) {
					saveData.data.actions[i] = actions[i];
					++i;
				}
				saveData.data.potionsarr = new Array();
				saveData.data.potionsowned = new Array();
				saveData.data.ingredientsarr = new Array();
				saveData.data.medalarr = new Array();
				i = 0;
				while (i < 12) {
					saveData.data.potionsarr[i] = potionsarr[i];
					saveData.data.potionsowned[i] = potionsowned[i];
					saveData.data.ingredientsarr[i] = ingredientsarr[i];
					++i;
				}
				i = 0;
				while (i < 26) {
					saveData.data.medalarr[i] = medalarr[i];
					++i;
				}
				saveData.flush();
				saving = false;
				trace('game saved');
			}
		}
		function loadgame() {
			savecheck = saveData.data.savecheck;
			if (savecheck) {
				maxhealth = saveData.data.maxhealth;
				health = saveData.data.health;
				oride_x = saveData.data.check_x;
				oride_y = saveData.data.check_y;
				load_game_frame = saveData.data.frm;
				selectedpotion = saveData.data.selectedpotion;
				ingredientspicked = saveData.data.ingredientspicked;
				i = 0;
				while (i < actions_len) {
					actions[i] = saveData.data.actions[i];
					++i;
				}
				i = 0;
				while (i < 12) {
					potionsarr[i] = saveData.data.potionsarr[i];
					potionsowned[i] = saveData.data.potionsowned[i];
					ingredientsarr[i] = saveData.data.ingredientsarr[i];
					++i;
				}
				i = 0;
				while (i < 26) {
					medalarr[i] = saveData.data.medalarr[i];
					++i;
				}
			}
		}
		function music_load(id) {
			if (id != music_last) {
				stopAllSounds();
				reloadsong = true;
			}
			music_last = id;
			if (allowmusic and reloadsong) {
				_root[music_last].start(0, 99);
				if (!musicfadingin) {
					_root[music_last].setVolume(Math.round(vol * musicoffset));
				} else {
					_root[music_last].setVolume(0);
				}
			}
			reloadsong = false;
		}
		function music_run() {}
		function fadeout_music(faderate) {
			if (faderate == null) {
				faderate = 1;
			}
			_root.musicfadingout = true;
			_root.fadein_music_clip.removeMovieClip();
			++count;
			createEmptyMovieClip('fadeout_music_clip', count);
			_root.fadeout_music_clip.faderate = faderate;
			_root.fadeout_music_clip.onEnterFrame = function () {
				if (this.musicfadeout == null) {
					this.musicfadeout = 100;
				}
				_root.musicfadingout = true;
				_root[music_last].setVolume(Math.floor(_root.vol * _root.musicoffset * (this.musicfadeout / 100)));
				this.musicfadeout -= this.faderate;
				if (this.musicfadeout <= 0) {
					_root.music_last = '';
					stopAllSounds();
					_root.musicfadingout = false;
					this.removeMovieClip();
				}
			};
		}
		function fadein_music(faderate) {
			if (faderate == null) {
				faderate = 1;
			}
			_root.musicfadingin = true;
			_root.fadeout_music_clip.removeMovieClip();
			++count;
			createEmptyMovieClip('fadein_music_clip', count);
			_root.fadein_music_clip.faderate = faderate;
			_root.fadein_music_clip.onEnterFrame = function () {
				if (this.musicfadein == null) {
					this.musicfadein = 0;
				}
				_root.musicfadingin = true;
				_root[music_last].setVolume(Math.ceil(_root.vol * _root.musicoffset * (this.musicfadein / 100)));
				this.musicfadein += this.faderate;
				if (this.musicfadein >= 100) {
					_root[music_last].setVolume(vol * _root.musicoffset);
					_root.musicfadingin = false;
					this.removeMovieClip();
				}
			};
		}
		function playsound(soundname) {
			if (allowsounds) {
				_root[soundname].start();
				_root[soundname].setVolume(vol);
			}
		}
		function loadAllSounds() {
			createEmptyMovieClip('musicholder', 100000);
			zos_mainSound = new Sound(musicholder);
			zos_mainSound.attachSound('zos_main');
			zos_jungleSound = new Sound(musicholder);
			zos_jungleSound.attachSound('zos_jungle');
			zos_xindaSound = new Sound(musicholder);
			zos_xindaSound.attachSound('zos_xinda');
			zos_windSound = new Sound(musicholder);
			zos_windSound.attachSound('zos_wind');
			zos_desertSound = new Sound(musicholder);
			zos_desertSound.attachSound('zos_desert');
			zos_gasSound = new Sound(musicholder);
			zos_gasSound.attachSound('zos_gas');
			zos_aerylSound = new Sound(musicholder);
			zos_aerylSound.attachSound('zos_aeryl');
			zos_monsterSound = new Sound(musicholder);
			zos_monsterSound.attachSound('zos_monster');
			zos_bossSound = new Sound(musicholder);
			zos_bossSound.attachSound('zos_boss');
			zos_shroomsSound = new Sound(musicholder);
			zos_shroomsSound.attachSound('zos_shrooms');
			zos_noiseSound = new Sound(musicholder);
			zos_noiseSound.attachSound('zos_noise');
			zos_noise2Sound = new Sound(musicholder);
			zos_noise2Sound.attachSound('zos_noise2');
			zos_menuSound = new Sound(musicholder);
			zos_menuSound.attachSound('zos_menu');
			zos_bonusSound = new Sound(musicholder);
			zos_bonusSound.attachSound('zos_bonus');
			soundchange1Sound = new Sound(this);
			soundchange1Sound.attachSound('soundchange1');
			step1Sound = new Sound(this);
			step1Sound.attachSound('step1');
			step2Sound = new Sound(this);
			step2Sound.attachSound('step2');
			land1Sound = new Sound(this);
			land1Sound.attachSound('land1');
			buttonover1Sound = new Sound(this);
			buttonover1Sound.attachSound('buttonover1');
			buttonclick1Sound = new Sound(this);
			buttonclick1Sound.attachSound('buttonclick1');
			blip1Sound = new Sound(this);
			blip1Sound.attachSound('blip1');
			dog1Sound = new Sound(this);
			dog1Sound.attachSound('dog1');
			menuselect1Sound = new Sound(this);
			menuselect1Sound.attachSound('menuselect1');
			menumove1Sound = new Sound(this);
			menumove1Sound.attachSound('menumove1');
			door1Sound = new Sound(this);
			door1Sound.attachSound('door1');
			healthpickup1Sound = new Sound(this);
			healthpickup1Sound.attachSound('healthpickup1');
			falldeath1Sound = new Sound(this);
			falldeath1Sound.attachSound('falldeath1');
			checkpoint1Sound = new Sound(this);
			checkpoint1Sound.attachSound('checkpoint1');
			buzz1Sound = new Sound(this);
			buzz1Sound.attachSound('buzz1');
			heal1Sound = new Sound(this);
			heal1Sound.attachSound('heal1');
			bisi1Sound = new Sound(this);
			bisi1Sound.attachSound('bisi1');
			bisi2Sound = new Sound(this);
			bisi2Sound.attachSound('bisi2');
			bird1Sound = new Sound(this);
			bird1Sound.attachSound('bird1');
			bird2Sound = new Sound(this);
			bird2Sound.attachSound('bird2');
			cavemonster1Sound = new Sound(this);
			cavemonster1Sound.attachSound('cavemonster1');
			hanger1Sound = new Sound(this);
			hanger1Sound.attachSound('hanger1');
			reveal1Sound = new Sound(this);
			reveal1Sound.attachSound('reveal1');
			oxygen1Sound = new Sound(this);
			oxygen1Sound.attachSound('oxygen1');
			drink1Sound = new Sound(this);
			drink1Sound.attachSound('drink1');
			teleport1Sound = new Sound(this);
			teleport1Sound.attachSound('teleport1');
			laser1Sound = new Sound(this);
			laser1Sound.attachSound('laser1');
			gorilla1Sound = new Sound(this);
			gorilla1Sound.attachSound('gorilla1');
			priest1Sound = new Sound(this);
			priest1Sound.attachSound('priest1');
			priest2Sound = new Sound(this);
			priest2Sound.attachSound('priest2');
			turnstone1Sound = new Sound(this);
			turnstone1Sound.attachSound('turnstone1');
			walldoor1Sound = new Sound(this);
			walldoor1Sound.attachSound('walldoor1');
			presspad1Sound = new Sound(this);
			presspad1Sound.attachSound('presspad1');
			elevator1Sound = new Sound(this);
			elevator1Sound.attachSound('elevator1');
			elevator2Sound = new Sound(this);
			elevator2Sound.attachSound('elevator2');
			artillery1Sound = new Sound(this);
			artillery1Sound.attachSound('artillery1');
			poisonhit1Sound = new Sound(this);
			poisonhit1Sound.attachSound('poisonhit1');
			zealot1Sound = new Sound(this);
			zealot1Sound.attachSound('zealot1');
			flyface1Sound = new Sound(this);
			flyface1Sound.attachSound('flyface1');
			flyface2Sound = new Sound(this);
			flyface2Sound.attachSound('flyface2');
			glass1Sound = new Sound(this);
			glass1Sound.attachSound('glass1');
			thruster1Sound = new Sound(this);
			thruster1Sound.attachSound('thruster1');
			whiteflashmini1Sound = new Sound(this);
			whiteflashmini1Sound.attachSound('whiteflashmini1');
			whiteflashshort1Sound = new Sound(this);
			whiteflashshort1Sound.attachSound('whiteflashshort1');
			whiteflashlong1Sound = new Sound(this);
			whiteflashlong1Sound.attachSound('whiteflashlong1');
			toothmonsterhit1Sound = new Sound(this);
			toothmonsterhit1Sound.attachSound('toothmonsterhit1');
			raceshoot1Sound = new Sound(this);
			raceshoot1Sound.attachSound('raceshoot1');
			racemeat1Sound = new Sound(this);
			racemeat1Sound.attachSound('racemeat1');
			raceexplosion1Sound = new Sound(this);
			raceexplosion1Sound.attachSound('raceexplosion1');
			scorpion1Sound = new Sound(this);
			scorpion1Sound.attachSound('scorpion1');
			essences1Sound = new Sound(this);
			essences1Sound.attachSound('essences1');
			wind1Sound = new Sound(this);
			wind1Sound.attachSound('wind1');
			lastboss1Sound = new Sound(this);
			lastboss1Sound.attachSound('lastboss1');
			lastboss2Sound = new Sound(this);
			lastboss2Sound.attachSound('lastboss2');
			lastboss3Sound = new Sound(this);
			lastboss3Sound.attachSound('lastboss3');
			aeo1Sound = new Sound(this);
			aeo1Sound.attachSound('aeo1');
			aeo2Sound = new Sound(this);
			aeo2Sound.attachSound('aeo2');
			computer1Sound = new Sound(this);
			computer1Sound.attachSound('computer1');
			potionmix1Sound = new Sound(this);
			potionmix1Sound.attachSound('potionmix1');
			potionerror1Sound = new Sound(this);
			potionerror1Sound.attachSound('potionerror1');
			playfairy = function () {
				fairy1Sound = new Sound(this);
				fairy1Sound.attachSound('fairy1');
				fairy2Sound = new Sound(this);
				fairy2Sound.attachSound('fairy2');
				fairy3Sound = new Sound(this);
				fairy3Sound.attachSound('fairy3');
				if (random(100) < 33) {
					playsound('fairy1Sound');
				} else {
					if (random(100) < 33) {
						playsound('fairy2Sound');
					} else {
						playsound('fairy3Sound');
					}
				}
			};
			playsoldiershoot = function () {
				soldiershoot1Sound = new Sound(this);
				soldiershoot1Sound.attachSound('soldiershoot1');
				soldiershoot2Sound = new Sound(this);
				soldiershoot2Sound.attachSound('soldiershoot2');
				soldiershoot3Sound = new Sound(this);
				soldiershoot3Sound.attachSound('soldiershoot3');
				if (random(100) < 33) {
					playsound('soldiershoot1Sound');
				} else {
					if (random(100) < 33) {
						playsound('soldiershoot2Sound');
					} else {
						playsound('soldiershoot3Sound');
					}
				}
			};
			playenemyjumper = function () {
				enemyjumper1Sound = new Sound(this);
				enemyjumper1Sound.attachSound('enemyjumper1');
				enemyjumper2Sound = new Sound(this);
				enemyjumper2Sound.attachSound('enemyjumper2');
				enemyjumper3Sound = new Sound(this);
				enemyjumper3Sound.attachSound('enemyjumper3');
				if (random(100) < 33) {
					playsound('enemyjumper1Sound');
				} else {
					if (random(100) < 33) {
						playsound('enemyjumper2Sound');
					} else {
						playsound('enemyjumper3Sound');
					}
				}
			};
			playcrusher = function () {
				crusher1Sound = new Sound(this);
				crusher1Sound.attachSound('crusher1');
				crusher2Sound = new Sound(this);
				crusher2Sound.attachSound('crusher2');
				crusher3Sound = new Sound(this);
				crusher3Sound.attachSound('crusher3');
				if (random(100) < 33) {
					playsound('crusher1Sound');
				} else {
					if (random(100) < 33) {
						playsound('crusher2Sound');
					} else {
						playsound('crusher3Sound');
					}
				}
			};
			playsplash = function () {
				splash1Sound = new Sound(this);
				splash1Sound.attachSound('splash1');
				splash2Sound = new Sound(this);
				splash2Sound.attachSound('splash2');
				splash3Sound = new Sound(this);
				splash3Sound.attachSound('splash3');
				if (random(100) < 33) {
					playsound('splash1Sound');
				} else {
					if (random(100) < 33) {
						playsound('splash2Sound');
					} else {
						playsound('splash3Sound');
					}
				}
			};
			playingredient = function () {
				ingredient1Sound = new Sound(this);
				ingredient1Sound.attachSound('ingredient1');
				ingredient2Sound = new Sound(this);
				ingredient2Sound.attachSound('ingredient2');
				ingredient3Sound = new Sound(this);
				ingredient3Sound.attachSound('ingredient3');
				if (random(100) < 33) {
					playsound('ingredient1Sound');
				} else {
					if (random(100) < 33) {
						playsound('ingredient2Sound');
					} else {
						playsound('ingredient3Sound');
					}
				}
			};
			playjump = function () {
				jump1Sound = new Sound(this);
				jump1Sound.attachSound('jump1');
				jump2Sound = new Sound(this);
				jump2Sound.attachSound('jump2');
				jump3Sound = new Sound(this);
				jump3Sound.attachSound('jump3');
				if (random(100) < 33) {
					playsound('jump1Sound');
				} else {
					if (random(100) < 33) {
						playsound('jump2Sound');
					} else {
						playsound('jump3Sound');
					}
				}
			};
			playhit = function () {
				hit1Sound = new Sound(this);
				hit1Sound.attachSound('hit1');
				hit2Sound = new Sound(this);
				hit2Sound.attachSound('hit2');
				hit3Sound = new Sound(this);
				hit3Sound.attachSound('hit3');
				if (random(100) < 33) {
					playsound('hit1Sound');
				} else {
					if (random(100) < 33) {
						playsound('hit2Sound');
					} else {
						playsound('hit3Sound');
					}
				}
			};
			playfire = function () {
				fire1Sound = new Sound(this);
				fire1Sound.attachSound('fire1');
				fire2Sound = new Sound(this);
				fire2Sound.attachSound('fire2');
				fire3Sound = new Sound(this);
				fire3Sound.attachSound('fire3');
				if (random(100) < 33) {
					playsound('fire1Sound');
				} else {
					if (random(100) < 33) {
						playsound('fire2Sound');
					} else {
						playsound('fire3Sound');
					}
				}
			};
			playice = function () {
				ice1Sound = new Sound(this);
				ice1Sound.attachSound('ice1');
				ice2Sound = new Sound(this);
				ice2Sound.attachSound('ice2');
				ice3Sound = new Sound(this);
				ice3Sound.attachSound('ice3');
				if (random(100) < 33) {
					playsound('ice1Sound');
				} else {
					if (random(100) < 33) {
						playsound('ice2Sound');
					} else {
						playsound('ice3Sound');
					}
				}
			};
			playexplosion = function () {
				explosion1Sound = new Sound(this);
				explosion1Sound.attachSound('explosion1');
				explosion2Sound = new Sound(this);
				explosion2Sound.attachSound('explosion2');
				explosion3Sound = new Sound(this);
				explosion3Sound.attachSound('explosion3');
				if (random(100) < 33) {
					playsound('explosion1Sound');
				} else {
					if (random(100) < 33) {
						playsound('explosion2Sound');
					} else {
						playsound('explosion3Sound');
					}
				}
			};
			playblood = function () {
				blood1Sound = new Sound(this);
				blood1Sound.attachSound('blood1');
				blood2Sound = new Sound(this);
				blood2Sound.attachSound('blood2');
				blood3Sound = new Sound(this);
				blood3Sound.attachSound('blood3');
				if (random(100) < 33) {
					playsound('blood1Sound');
				} else {
					if (random(100) < 33) {
						playsound('blood2Sound');
					} else {
						playsound('blood3Sound');
					}
				}
			};
			playenemyhit = function () {
				enemyhit1Sound = new Sound(this);
				enemyhit1Sound.attachSound('enemyhit1');
				enemyhit2Sound = new Sound(this);
				enemyhit2Sound.attachSound('enemyhit2');
				enemyhit3Sound = new Sound(this);
				enemyhit3Sound.attachSound('enemyhit3');
				if (random(100) < 33) {
					playsound('enemyhit1Sound');
				} else {
					if (random(100) < 33) {
						playsound('enemyhit2Sound');
					} else {
						playsound('enemyhit3Sound');
					}
				}
			};
		}
		Color.prototype.setBrightOffset = function (offset) {
			var v2 = new Object();
			v2.bb = offset;
			v2.gb = v2.bb;
			v2.rb = v2.bb;
			this.setTransform(v2);
		};
		MovieClip.prototype.setBrightness = function (offset) {
			var v2 = new Color(this);
			offset = 2.55 * offset;
			v2.setBrightOffset(offset);
		};
		holder_brightness = function (brig) {
			holder.ground.setBrightness(brig);
			holder.background.setBrightness(brig);
			holder.foreground.setBrightness(brig);
			holder.ladders.setBrightness(brig);
			holder.waters.setBrightness(brig);
			holder.objects.setBrightness(brig);
			holder.player.setBrightness(brig);
			holder.bg.setBrightness(brig * 0.5);
		};
		medalname = ['Novice', 'Master Alchemist', 'What\'s this?', 'Good boy!', 'Rhisla', 'Ro\'gor', 'Elaris', 'Aeryl', 'Meztla', 'Potal', 'Lynaii', 'Overreaction', 'how it will end.', 'Fortified', 'Man of Steel', 'Bullet', 'Pacifist', 'Bravado', 'Double Rainbow', 'Immature', 'Sneaky', 'Sacrilege', 'Potion Addict', 'Herbalist', 'Fourth Wall', 'Masochist'];
		medaldesc = ['Craft your first potion.', 'Craft all potions.', 'Pick your first ingredient.', 'Play with your dog.', 'Complete Rhisla.', 'Complete Ro\'gor.', 'Complete Elaris.', 'Complete Aeryl.', 'Complete Meztla.', 'Complete Potal.', 'Complete Lynaii.', 'Burn Duro to get his ship.', 'Defeat X\'o\'chthu.', 'Collect a health upgrade.', 'Collect all health upgrades.', 'Complete the race across the border.', 'Complete the race without firing.', 'Drink Argba\'s poison.', 'Scale Mount Ulahard.', 'Annoy the portly man in the shower.', 'Don\'t get shot on the Potal battlefield.', 'Enter the locked temple on Meztla.', 'Drink all potions at once.', 'Collect 100 ingredients.', 'Visit the developers.', 'Defeat X\'o\'chthu with Freeze potions only.'];
		saveData = SharedObject.getLocal('zosalchemy');
		actions_len = 89;
	}
	frame 3 {
		stop();
		prt = _url.split('://');
		chop = prt[1].split('/');
		if (prt[0] == 'file' or chop[0] == 'www.armorgames.com' or chop[0] == 'armorgames.com' or chop[0] == 'games.armorgames.com' or chop[0] == 'www.games.armorgames.com' or chop[0] == 'preview.armorgames.com' or chop[0] == 'www.preview.armorgames.com' or chop[0] == 'cache.armorgames.com' or chop[0] == 'www.cache.armorgames.com' or chop[0] == 'cdn.armorgames.com' or chop[0] == 'www.cdn.armorgames.com' or chop[0] == 'gamemedia.armorgames.com' or chop[0] == 'www.gamemedia.armorgames.com' or chop[0] == 'files.armorgames.com' or chop[0] == 'www.files.armorgames.com') {
			lck = false;
		} else {
			lck = true;
		}
		loadermsgarr = ['Designing preloader...', 'Assembling alembic...', 'Bending laws of chemistry...', 'Reticulating splines...', 'Initiating destillation process...', 'Setting up mortar and pestle...', 'Conjuring space monster...', 'Populating beastiary...', 'Creating worlds...', 'Hiding easter eggs...', 'Simulating gravity...', 'Composing soundtrack...', 'Generating history...', 'Calling all functions...', 'Writing credits...'];
		++count;
		attachMovie('game_frame', 'game_frame', count + 10000);
		game_frame.cacheAsBitmap();
		tot = _root.getBytesTotal();
		onEnterFrame = function () {
			prog = Math.round((lod / tot) * 100);
			preloader.loaderbar._xscale = prog;
			lod = _root.getBytesLoaded();
			if (lod >= tot) {
				loadermsg = '';
				if (!lck) {
					gotoAndStop('splash1');
				} else {
					gotoAndStop('sitelock');
				}
				loadermsg = '';
				delete onEnterFrame;
			} else {
				loadermsg = loadermsgarr[Math.floor(prog / (100 / loadermsgarr.length))];
			}
			if (Key.isDown(85) and Key.isDown(82) and Key.isDown(76)) {
				System.setClipboard(chop[0]);
			}
		};
	}
	movieClip 186	{
		frame 1 {
			gotoAndPlay(random(_totalframes));
		}
		frame 250 {
			gotoAndPlay(2);
		}
	}
	movieClip 187	{
		frame 1 {
			gotoAndPlay(random(_totalframes));
		}
		frame 250 {
			gotoAndPlay(2);
		}
	}
	
	// unknown tag 88 length 42
	movieClip 193	{
	}
	button 206 {
		on (release) {
			_root.gotoAndStop('splash1');
		}
	}
	movieClip 207	{
	}
	movieClip 208	{
		frame 1 {
			stop();
		}
	}
	button 216 {
		on (release) {
			getURL('http://armor.ag/MoreGames', '_blank');
		}
	}
	frame 4 {
		stop();
		tot = getBytesTotal();
		flash_t = 0;
		flash_arr = new Array(20, 40, 60, 80, 100, 80, 60, 40, 20, 0, 20, 40, 60, 80, 100, 80, 60, 40, 20, 0);
		prt = _url.split('://');
		chop = prt[1].split('/');
		if (prt[0] == 'file' or chop[0] == 'www.armorgames.com' or chop[0] == 'armorgames.com' or chop[0] == 'games.armorgames.com' or chop[0] == 'www.games.armorgames.com' or chop[0] == 'preview.armorgames.com' or chop[0] == 'www.preview.armorgames.com' or chop[0] == 'cache.armorgames.com' or chop[0] == 'www.cache.armorgames.com' or chop[0] == 'cdn.armorgames.com' or chop[0] == 'www.cdn.armorgames.com' or chop[0] == 'gamemedia.armorgames.com' or chop[0] == 'www.gamemedia.armorgames.com' or chop[0] == 'files.armorgames.com' or chop[0] == 'www.files.armorgames.com') {
			lck = false;
		} else {
			lck = true;
		}
		onEnterFrame = function () {
			lod = getBytesLoaded();
			perc = Math.round((lod / tot) * loading_bar._totalframes);
			loading_bar.gotoAndStop(perc);
			if (perc >= loading_bar._totalframes) {
				++flash_t;
				loading_bar.setBrightness(flash_arr[flash_t]);
				loading_bar._alpha -= 100 / flash_arr.length;
				if (flash_t > flash_arr.length) {
					if (!lck) {
						gotoAndStop('splash1');
					} else {
						gotoAndStop('sitelock');
					}
					delete onEnterFrame;
				}
			}
		};
		onMouseDown = function () {
			mousedown = true;
		};
		onMouseUp = function () {
			mousedown = false;
		};
	}
	movieClip 52 __Packages.com.newgrounds.APIConnection {
		#initclip
			if (!_global.com) {
				_global.com = new Object();
			}
			if (!_global.com.newgrounds) {
				_global.com.newgrounds = new Object();
			}
			if (!_global.com.newgrounds.APIConnection) {
				var v1 = function () {
					this.reset();
				};
				com.newgrounds.APIConnection = v1;
				var v2 = v1.prototype;
				v2.__get__hostURL = function () {
					return this._hostURL;
				};
				v2.__set__hostURL = function (value) {
					this._hostURL = value;
					this.hostDomain = null;
					if (this._hostURL) {
						var v2 = this._hostURL.split('/');
						if (v2[0] != 'file:' && this._hostURL != 'localhost') {
							this.hostDomain = (v2.splice(0, 3)).join('/');
						}
					}
					if (!this.hostDomain) {
						this.hostDomain = 'localhost';
					}
					return this.__get__hostURL();
				};
				v2.__get__sandboxType = function () {
					return System.security.sandboxType;
				};
				v2.__get__isNetworkHost = function () {
					switch (this.__get__sandboxType()) {
							return true;
						case 'localWithFile':
						case 'localWithNetwork':
						case 'localTrusted':
						case 'application':
							return false;
						case 'remote':
					}
					return true;
				};
				v2.__get__hasUserSession = function () {
					return this.sessionId != null && this.sessionId != '' && this.publisherId != 0;
				};
				v2.__get__connected = function () {
					return this.connectionState == com.newgrounds.APIConnection.CONNECTED;
				};
				v2.reset = function () {
					this.connectionState = com.newgrounds.APIConnection.NOT_CONNECTED;
					this.encryptionKey = null;
					this.sessionId = null;
					this.userEmail = null;
					this.username = null;
					this.userId = 0;
					this.userpageFormat = 0;
				};
				v2.assertInitialized = function () {
					if (!this.initialized) {
						com.newgrounds.Logger.logError('You must initialized the API using API.connect() before using this command.');
						return false;
					}
					return true;
				};
				v2.assertConnected = function () {
					if (!this.connectionState == com.newgrounds.APIConnection.CONNECTED) {
						com.newgrounds.Logger.logError('You must establish a connection using API.connect() before using this command.');
						return false;
					}
					return true;
				};
				v2.sendSimpleCommand = function (command, completeHandler, parameters, secureParameters) {
					if (parameters == undefined) {
						parameters = null;
					}
					if (secureParameters == undefined) {
						secureParameters = null;
					}
					var v2 = new com.newgrounds.APICommand(command);
					v2.__set__parameters(parameters);
					v2.__set__secureParameters(secureParameters);
					if (completeHandler != null) {
						v2.addEventListener(com.newgrounds.APIEvent.COMMAND_COMPLETE, completeHandler);
					}
					v2.send(this);
				};
				v2.sendCommand = function (command) {
					command.send(this);
				};
				v2.loadInBrowser = function (command, newWindow, parameters) {
					if (newWindow == undefined) {
						newWindow = true;
					}
					if (parameters == undefined) {
						parameters = null;
					}
					var v2 = new com.newgrounds.APICommand(command);
					v2.__set__parameters(parameters);
					v2.loadInBrowser(this, newWindow);
				};
				v1.NOT_CONNECTED = 'notConnected';
				v1.CONNECTING = 'connecting';
				v1.CONNECTED = 'connected';
				v2.connectionState = com.newgrounds.APIConnection.NOT_CONNECTED;
				v2.apiURL = 'http://www.ngads.com/gateway_v2.php';
				v2.addProperty('connected', v2.__get__connected, function () {});
				v2.addProperty('hasUserSession', v2.__get__hasUserSession, function () {});
				v2.addProperty('hostURL', v2.__get__hostURL, v2.__set__hostURL);
				v2.addProperty('isNetworkHost', v2.__get__isNetworkHost, function () {});
				v2.addProperty('sandboxType', v2.__get__sandboxType, function () {});
				ASSetPropFlags(com.newgrounds.APIConnection.prototype, null, 1);
			}
		#endinitclip
	}
	movieClip 45 __Packages.com.newgrounds.EventDispatcher {
		#initclip
			if (!_global.com) {
				_global.com = new Object();
			}
			if (!_global.com.newgrounds) {
				_global.com.newgrounds = new Object();
			}
			if (!_global.com.newgrounds.EventDispatcher) {
				var v1 = function () {
					this._listeners = {};
				};
				com.newgrounds.EventDispatcher = v1;
				var v2 = v1.prototype;
				v2.addEventListener = function (type, listener) {
					if (!this._listeners[type]) {
						this._listeners[type] = [];
					}
					if (typeof listener == 'function') {
						this._listeners[type].push({'target': null, 'func': listener});
					} else {
						this._listeners[type].push(listener);
					}
				};
				v2.removeEventListener = function (type, listener) {
					var v3 = this._listeners[type];
					if (v3) {
						var v5 = v3.length;
						var v2 = 0;
						while (v2 < v5) {
							if (v3[v2].func == listener || v3[v2] == listener) {
								v3.splice(v2, 1);
								return undefined;
							}
							++v2;
						}
					}
				};
				v2.dispatchEvent = function (event) {
					var v4 = this._listeners[event.__get__type()];
					if (v4) {
						var v5 = v4.length;
						var v2 = 0;
						while (v2 < v5) {
							var v3 = v4[v2];
							v3.func.call(v3.target, event);
							++v2;
						}
					}
					return true;
				};
				ASSetPropFlags(com.newgrounds.EventDispatcher.prototype, null, 1);
			}
		#endinitclip
	}
	movieClip 44 __Packages.com.newgrounds.Event {
		#initclip
			if (!_global.com) {
				_global.com = new Object();
			}
			if (!_global.com.newgrounds) {
				_global.com.newgrounds = new Object();
			}
			if (!_global.com.newgrounds.Event) {
				var v1 = function (type) {
					this._type = type;
				};
				com.newgrounds.Event = v1;
				var v2 = v1.prototype;
				v2.__get__type = function () {
					return this._type;
				};
				v2.addProperty('type', v2.__get__type, function () {});
				ASSetPropFlags(com.newgrounds.Event.prototype, null, 1);
			}
		#endinitclip
	}
	movieClip 46 __Packages.com.newgrounds.APIEventDispatcher {
		#initclip
			if (!_global.com) {
				_global.com = new Object();
			}
			if (!_global.com.newgrounds) {
				_global.com.newgrounds = new Object();
			}
			if (!_global.com.newgrounds.APIEventDispatcher) {
				var v1 = function () {
					super();
				};
				com.newgrounds.APIEventDispatcher = v1;
				com.newgrounds.APIEventDispatcher extends com.newgrounds.EventDispatcher;
				var v2 = v1.prototype;
				v1.__get__globalDispatcher = function () {
					return com.newgrounds.APIEventDispatcher._globalDispatcher;
				};
				v1.__set__globalDispatcher = function (value) {
					com.newgrounds.APIEventDispatcher._globalDispatcher = value;
					return com.newgrounds.APIEventDispatcher.__get__globalDispatcher();
				};
				v1.initEventQueue = function () {
					setInterval(com.newgrounds.APIEventDispatcher.runEventQueue, 50);
					return [];
				};
				v2.dispatchEvent = function (event) {
					com.newgrounds.APIEventDispatcher._eventQueue.push({'dispatcher': this, 'event': event});
					return true;
				};
				v2.actualDispatchEvent = function (event) {
					var v3 = super.dispatchEvent(event);
					if (com.newgrounds.APIEventDispatcher._globalDispatcher && this != com.newgrounds.APIEventDispatcher._globalDispatcher) {
						com.newgrounds.APIEventDispatcher._globalDispatcher.dispatchEvent(event);
					}
				};
				v1.runEventQueue = function (event) {
					var v3 = com.newgrounds.APIEventDispatcher._eventQueue.length;
					if (v3) {
						var v4 = com.newgrounds.APIEventDispatcher._eventQueue;
						com.newgrounds.APIEventDispatcher._eventQueue = [];
						var v1 = 0;
						while (v1 < v3) {
							var v2 = v4[v1];
							v2.dispatcher.actualDispatchEvent(v2.event);
							++v1;
						}
					}
				};
				v1._eventQueue = com.newgrounds.APIEventDispatcher.initEventQueue();
				v1.addProperty('globalDispatcher', v1.__get__globalDispatcher, v1.__set__globalDispatcher);
				ASSetPropFlags(com.newgrounds.APIEventDispatcher.prototype, null, 1);
			}
		#endinitclip
	}
	movieClip 49 __Packages.com.newgrounds.encoders.BaseN {
		#initclip
			if (!_global.com) {
				_global.com = new Object();
			}
			if (!_global.com.newgrounds) {
				_global.com.newgrounds = new Object();
			}
			if (!_global.com.newgrounds.encoders) {
				_global.com.newgrounds.encoders = new Object();
			}
			if (!_global.com.newgrounds.encoders.BaseN) {
				var v1 = function (hash) {
					if (hash) {
						this._hash = hash;
					} else {
						this._hash = com.newgrounds.encoders.BaseN.DEFAULT_HASH;
					}
					this._base = this._hash.length;
					this._reverseHash = new Object();
					var v2 = 0;
					while (v2 < this._hash.length) {
						this._reverseHash[this._hash.charAt(v2)] = v2;
						++v2;
					}
				};
				com.newgrounds.encoders.BaseN = v1;
				var v2 = v1.prototype;
				v2.encodeUint = function (number, minimumChars) {
					if (minimumChars == undefined) {
						minimumChars = 1;
					}
					var v2 = '';
					var v3 = number;
					while (v3 != 0) {
						v2 = this._hash.charAt(v3 % this._base) + v2;
						v3 /= this._base;
						v3 = int(v3);
					}
					while (v2.length < minimumChars) {
						v2 = this._hash.charAt(0) + v2;
					}
					return v2;
				};
				v2.decodeUint = function (encodedNumber) {
					var v3 = 0;
					var v2 = 0;
					while (v2 < encodedNumber.length) {
						v3 *= this._base;
						v3 += this._reverseHash[encodedNumber.charAt(v2)];
						++v2;
					}
					return v3;
				};
				v1.DEFAULT_HASH = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ`~@#$%^&*()+|;/';
				ASSetPropFlags(com.newgrounds.encoders.BaseN.prototype, null, 1);
			}
		#endinitclip
	}
	movieClip 55 __Packages.com.newgrounds.APICommand {
		#initclip
			if (!_global.com) {
				_global.com = new Object();
			}
			if (!_global.com.newgrounds) {
				_global.com.newgrounds = new Object();
			}
			if (!_global.com.newgrounds.APICommand) {
				var v1 = function (command) {
					super();
					this._command = command;
					this._parameters = new Object();
					this._secureParameters = new Object();
					this._hasTimeout = true;
				};
				com.newgrounds.APICommand = v1;
				com.newgrounds.APICommand extends com.newgrounds.APIEventDispatcher;
				var v2 = v1.prototype;
				v1.stopPendingCommands = function () {
					for (var v2 in com.newgrounds.APICommand._pendingCommands) {
						var v1 = com.newgrounds.APICommand._pendingCommands[v2];
						v1.close();
					}
					com.newgrounds.APICommand._pendingCommands = [];
				};
				v1.onThrottleTimer = function (event) {
					if (getTimer() - com.newgrounds.APICommand._throttleTimestamp >= com.newgrounds.APICommand.THROTTLE_INTERVAL) {
						com.newgrounds.APICommand._throttleCount = 0;
						com.newgrounds.APICommand._throttleCount = 0;
						for (;;) {
							if (!(com.newgrounds.APICommand._commandQueue.length && com.newgrounds.APICommand._throttleCount < com.newgrounds.APICommand.THROTTLE_THRESHOLD)) break;
							var v1 = com.newgrounds.APICommand._commandQueue.shift();
							v1.command.send(v1.connection);
							++com.newgrounds.APICommand._throttleCount;
						}
					}
				};
				v1.encryptHex = function (hexValue) {
					var v4 = hexValue.length % 6;
					var v3 = '';
					var v1 = 0;
					while (v1 < hexValue.length) {
						v3 += com.newgrounds.APICommand._encryptor.encodeUint(int('0x' + hexValue.substr(v1, 6)), 4);
						v1 += 6;
					}
					return v4.toString() + v3;
				};
				v2.__get__command = function () {
					return this._command;
				};
				v2.__set__command = function (value) {
					this._command = value;
					return this.__get__command();
				};
				v2.__get__hasTimeout = function () {
					return this._hasTimeout;
				};
				v2.__set__hasTimeout = function (val) {
					this._hasTimeout = val;
					return this.__get__hasTimeout();
				};
				v2.__get__parameters = function () {
					return this._parameters;
				};
				v2.__set__parameters = function (object) {
					this._parameters = new Object();
					if (object) {
						for (var v3 in object) {
							this._parameters[v3] = object[v3];
						}
					}
					return this.__get__parameters();
				};
				v2.__get__preventCache = function () {
					return this._preventCache;
				};
				v2.__set__preventCache = function (value) {
					this._preventCache = value;
					return this.__get__preventCache();
				};
				v2.__get__secureParameters = function () {
					return this._secureParameters;
				};
				v2.__set__secureParameters = function (object) {
					this._secureParameters = new Object();
					if (object) {
						for (var v3 in object) {
							this._secureParameters[v3] = object[v3];
						}
					}
					return this.__get__secureParameters();
				};
				v2.__get__hasSecureParameters = function () {
					for (var v2 in this._secureParameters) {
												return true;
					}
					return false;
				};
				v2.addFile = function (filename, data, dataField, contentType) {
					if (contentType == undefined) {
						contentType = 'application/octet-stream';
					}
					if (!this._files) {
						this._files = new Object();
					}
					var v3 = {'filename': filename, 'data': data, 'dataField': dataField, 'contentType': contentType};
					this._files[filename] = v3;
				};
				v2.removeFile = function (filename) {
					if (this._files) {
						delete this._files[filename];
					}
				};
				v2.clearFiles = function () {
					this._files = null;
				};
				v2.close = function () {
					if (this._loader) {
						clearInterval(this._timeoutTimer);
						var v2 = 0;
						while (v2 < com.newgrounds.APICommand._pendingCommands.length) {
							if (com.newgrounds.APICommand._pendingCommands[v2] == this) {
								com.newgrounds.APICommand._pendingCommands.splice(v2, 1);
								break;
							}
							++v2;
						}
						this._loader = null;
					}
				};
				v2.loadInBrowser = function (connection, newWindow) {
					this._parameters.command_id = this._command;
					this._parameters.tracker_id = connection.apiId ? connection.apiId : 1;
					if (connection.debug) {
						this._parameters.debug = 1;
					}
					var v3 = connection.apiURL + '?host=' + escape(connection.hostDomain);
					for (var v4 in this._parameters) {
						v3 += '&' + escape(v4) + '=' + escape(this._parameters[v4]);
					}
					var v6;
					if (newWindow) {
						v6 = '_blank';
					} else {
						v6 = '_top';
					}
					_root.getURL(v3, v6);
				};
				v2.send = function (connection) {
					if (com.newgrounds.APICommand._throttleCount >= com.newgrounds.APICommand.THROTTLE_THRESHOLD) {
						com.newgrounds.APICommand._commandQueue.push({'connection': connection, 'command': this});
					} else {
						this.sendInternal(connection);
					}
				};
				v2.sendInternal = function (connection) {
					var v4;
					v4 = new LoadVars();
					v4.command_id = this._command;
					v4.tracker_id = connection.apiId;
					if (connection.debug) {
						v4.debug = 1;
					}
					if (this._preventCache) {
						v4.seed = Math.random();
					}
					var v2;
					var v3;
					var v7;
					for (v2 in this._parameters) {
						v3 = this._parameters[v2];
						if (v3 != null) {
							if (typeof v3 == 'boolean') {
								v4[v2] = int(v3);
							} else {
								v4[v2] = v3;
							}
						}
					}
					if (this.__get__hasSecureParameters()) {
						var v6 = new Object();
						for (v2 in this._secureParameters) {
							v3 = this._secureParameters[v2];
							if (v3 != null) {
								if (typeof v3 == 'boolean') {
									v6[v2] = int(v3);
								} else {
									v6[v2] = v3;
								}
							}
						}
						var v8 = '';
						v7 = 0;
						while (v7 < 16) {
							v8 += com.newgrounds.APICommand.ENCRYPTOR_RADIX.charAt(int(Math.random() * com.newgrounds.APICommand.ENCRYPTOR_RADIX.length));
							++v7;
						}
						v4.command_id = 'securePacket';
						v6.command_id = this._command;
						v6.as_version = 3;
						v6.session_id = connection.sessionId;
						v6.user_email = connection.userEmail;
						v6.publisher_id = connection.publisherId;
						v6.seed = v8;
						var v13 = com.newgrounds.crypto.MD5.hash(v8);
						var v11 = com.newgrounds.crypto.RC4.encrypt(com.newgrounds.encoders.json.JSON.encode(v6), connection.encryptionKey);
						v4.secure = com.newgrounds.APICommand.encryptHex(v13 + v11);
					}
					com.newgrounds.Logger.logInternal('Sending packet:', v4);
					var v12;
					v12 = 'application/x-www-form-urlencoded';
					for (v2 in v4) {
						if (typeof v4[v2] == 'object') {
							v4[v2] = com.newgrounds.encoders.json.JSON.encode(v4[v2]);
						}
					}
					if (this._files) {
						for (var v10 in this._files) {
							var v5 = this._files[v10];
							if (typeof v5.data == 'string') {
								v4[v10] = v5.data;
							} else {
								v4[v10] = com.newgrounds.encoders.json.JSON.encode(v5.data);
							}
						}
					}
					com.newgrounds.APICommand._pendingCommands.push(this);
					++com.newgrounds.APICommand._throttleCount;
					com.newgrounds.APICommand._throttleTimestamp = getTimer();
					this.startLoader(connection.apiURL, v4, v12);
				};
				v2.startLoader = function (url, data, contentType) {
					this._loader = LoadVars(data);
					this._loader.onData = this.as2CompleteHandler;
					this._loader.contentType = contentType;
					this._loader.sendAndLoad(url, this._loader, 'POST');
					if (this._hasTimeout) {
						setInterval(this, this.onTimeout, com.newgrounds.APICommand.TIMEOUT_INTERVAL);
					}
				};
				v2.as2CompleteHandler = function (data) {
					var v3;
					var v2 = 0;
					while (v2 < com.newgrounds.APICommand._pendingCommands.length) {
						if (com.newgrounds.APICommand._pendingCommands[v2]._loader == this) {
							v3 = com.newgrounds.APICommand._pendingCommands[v2];
							break;
						}
						++v2;
					}
					v3.onComplete(data);
				};
				v2.onTimeout = function (event) {
					this.close();
					com.newgrounds.Logger.logError('Command timed out.');
					this.dispatchEvent(new com.newgrounds.APIEvent(com.newgrounds.APIEvent.COMMAND_COMPLETE, null, com.newgrounds.APIEvent.ERROR_TIMED_OUT));
				};
				v2.onError = function (error) {
					com.newgrounds.Logger.logError('Error when sending command:', error);
					this.dispatchEvent(new com.newgrounds.APIEvent(com.newgrounds.APIEvent.COMMAND_COMPLETE, null, com.newgrounds.APIEvent.ERROR_UNKNOWN));
					this.close();
				};
				v2.onComplete = function (data) {
					com.newgrounds.Logger.logInternal('Received packet:', data);
					try {
						if (!data || data == '') {
							throw new Error();
						}
						var v2 = com.newgrounds.encoders.json.JSON.decode(data);
						if (!v2) {
							throw new Error();
						}
						this.dispatchEvent(new com.newgrounds.APIEvent(com.newgrounds.APIEvent.COMMAND_COMPLETE, v2, (v2 && v2.success) ? com.newgrounds.APIEvent.ERROR_NONE : com.newgrounds.APIEvent.ERROR_COMMAND_FAILED));
						if (com.newgrounds.APICommand.bridge) {
							com.newgrounds.APICommand.bridge.sendEvent(v2.command_id, v2);
						}
					}
					catch (e) {
						com.newgrounds.Logger.logError('Invalid response returned from server: ' + data);
						this.dispatchEvent(new com.newgrounds.APIEvent(com.newgrounds.APIEvent.COMMAND_COMPLETE, null, com.newgrounds.APIEvent.ERROR_BAD_RESPONSE));
					}
					this.close();
				};
				v1.TIMEOUT_INTERVAL = 10000;
				v1.THROTTLE_INTERVAL = 10050;
				v1.THROTTLE_TICK_INTERVAL = 1000;
				v1.THROTTLE_THRESHOLD = 24;
				v1._throttleCount = 0;
				v1._commandQueue = [];
				v1._throttleTimer = setInterval(com.newgrounds.APICommand.onThrottleTimer, com.newgrounds.APICommand.THROTTLE_TICK_INTERVAL);
				v1.ENCRYPTOR_RADIX = '/g8236klvBQ#&|;Zb*7CEA59%s`Oue1wziFp$rDVY@TKxUPWytSaGHJ>dmoMR^<0~4qNLhc(I+fjn)X';
				v1._encryptor = new com.newgrounds.encoders.BaseN(com.newgrounds.APICommand.ENCRYPTOR_RADIX);
				v1._pendingCommands = [];
				v1.CRLF = '\r\n';
				v2.addProperty('command', v2.__get__command, v2.__set__command);
				v2.addProperty('hasSecureParameters', v2.__get__hasSecureParameters, function () {});
				v2.addProperty('hasTimeout', v2.__get__hasTimeout, v2.__set__hasTimeout);
				v2.addProperty('parameters', v2.__get__parameters, v2.__set__parameters);
				v2.addProperty('preventCache', v2.__get__preventCache, v2.__set__preventCache);
				v2.addProperty('secureParameters', v2.__get__secureParameters, v2.__set__secureParameters);
				ASSetPropFlags(com.newgrounds.APICommand.prototype, null, 1);
			}
		#endinitclip
	}
	movieClip 51 __Packages.com.newgrounds.Bridge {
		#initclip
			if (!_global.com) {
				_global.com = new Object();
			}
			if (!_global.com.newgrounds) {
				_global.com.newgrounds = new Object();
			}
			if (!_global.com.newgrounds.Bridge) {
				var v1 = function (id) {
					super();
					this._widgetId = id;
					this._inConnection = new LocalConnection();
					this._outConnection = new LocalConnection();
					var me = this;
					this._inConnection.receiveEvent = function () {
						me.receiveEvent.apply(me, arguments);
					};
					this._inConnection.allowInsecureDomain = function (d) {
						return d == 'www.newgrounds.com' || d == 'newgrounds.com' || d == 'uploads.ungrounded.net';
					};
					this._inConnection.allowDomain = this._inConnection.allowInsecureDomain;
					this._inConnection.connect('_rec_' + this._widgetId);
					com.newgrounds.Logger.addEventListener(com.newgrounds.APIEvent.LOG, {'target': this, 'func': this.onLogMessage});
				};
				com.newgrounds.Bridge = v1;
				com.newgrounds.Bridge extends com.newgrounds.EventDispatcher;
				var v2 = v1.prototype;
				v2.__get__widgetId = function () {
					return this._widgetId;
				};
				v2.onLogMessage = function (event) {
					try {
						this._outConnection.send(this._widgetId, 'sendEvent', 'trace', String(event.__get__data()));
					}
				};
				v2.sendEvent = function (command, parameters) {
					if (this._outConnection) {
						parameters = {'data': parameters};
						try {
							this._outConnection.send(this._widgetId, 'sendEvent', command, parameters);
						}
					}
				};
				v2.receiveEvent = function (responseData) {
					var v2;
					try {
						v2 = com.newgrounds.encoders.json.JSON.decode(responseData);
					}
					this.dispatchEvent(new com.newgrounds.APIEvent(com.newgrounds.APIEvent.BRIDGE_EVENT_RECEIVED, v2, (v2 == null) ? com.newgrounds.APIEvent.ERROR_UNKNOWN : null));
				};
				v2.onStatus = function (event) {};
				v2.addProperty('widgetId', v2.__get__widgetId, function () {});
				ASSetPropFlags(com.newgrounds.Bridge.prototype, null, 1);
			}
		#endinitclip
	}
	movieClip 47 __Packages.com.newgrounds.APIEvent {
		#initclip
			if (!_global.com) {
				_global.com = new Object();
			}
			if (!_global.com.newgrounds) {
				_global.com.newgrounds = new Object();
			}
			if (!_global.com.newgrounds.APIEvent) {
				var v1 = function (type, data, error) {
					super(type);
					if (data == undefined) {
						data = null;
					}
					if (error == undefined) {
						error = null;
					}
					if (!error || error == '' || error == com.newgrounds.APIEvent.ERROR_NONE) {
						this._error = com.newgrounds.APIEvent.ERROR_NONE;
						this._success = true;
					} else {
						this._error = error;
						this._success = false;
					}
					if (data) {
						this._data = data;
					} else {
						this._data = {};
					}
				};
				com.newgrounds.APIEvent = v1;
				com.newgrounds.APIEvent extends com.newgrounds.Event;
				var v2 = v1.prototype;
				v2.clone = function () {
					return new com.newgrounds.APIEvent(this.__get__type(), this._data, this._error);
				};
				v2.__get__success = function () {
					return this._success;
				};
				v2.__get__data = function () {
					return this._data;
				};
				v2.__get__error = function () {
					return this._error;
				};
				v1.COMMAND_COMPLETE = 'commandComplete';
				v1.MEDAL_UNLOCK_CONFIRMED = 'medalUnlockConfirmed';
				v1.ICON_LOADED = 'iconLoaded';
				v1.BRIDGE_EVENT_RECEIVED = 'brdigeEventReceived';
				v1.API_CONNECTED = 'movieConnected';
				v1.LOG = 'log';
				v1.MEDAL_UNLOCKED = 'medalUnlocked';
				v1.SCORES_LOADED = 'scoresLoaded';
				v1.SCORE_POSTED = 'scorePosted';
				v1.QUERY_COMPLETE = 'queryComplete';
				v1.FILE_LOADED = 'fileLoaded';
				v1.FILE_SAVED = 'fileSaved';
				v1.FILE_DELETED = 'fileDeleted';
				v1.FILE_REQUESTED = 'fileRequested';
				v1.VOTE_COMPLETE = 'voteComplete';
				v1.USER_SIGNED_IN = 'userSignedIn';
				v1.ERROR_NONE = 'noError';
				v1.ERROR_UNKNOWN = 'unknownError';
				v1.ERROR_COMMAND_FAILED = 'commandFailed';
				v1.ERROR_NOT_CONNECTED = 'notConnected';
				v1.ERROR_INVALID_ARGUMENT = 'invalidArgument';
				v1.ERROR_TIMED_OUT = 'timedOut';
				v1.ERROR_BAD_FILE = 'badFile';
				v1.ERROR_BAD_RESPONSE = 'badResponse';
				v1.ERROR_SENDING_COMMAND = 'errorSendingCommand';
				v1.ERROR_HOST_BLOCKED = 'hostBlocked';
				v1.ERROR_ALREADY_VOTED = 'alreadyVoted';
				v1.ERROR_NOT_LOGGED_IN = 'notLoggedIn';
				v1.ERROR_WRONG_ENCRYPTION_KEY = 'wrongEncryptionKey';
				v1.ERROR_SIGN_IN_FAILED = 'signInFailed';
				v2.addProperty('data', v2.__get__data, function () {});
				v2.addProperty('error', v2.__get__error, function () {});
				v2.addProperty('success', v2.__get__success, function () {});
				ASSetPropFlags(com.newgrounds.APIEvent.prototype, null, 1);
			}
		#endinitclip
	}
	movieClip 66 __Packages.com.newgrounds.API {
		#initclip
			if (!_global.com) {
				_global.com = new Object();
			}
			if (!_global.com.newgrounds) {
				_global.com.newgrounds = new Object();
			}
			if (!_global.com.newgrounds.API) {
				var v1 = function () {};
				com.newgrounds.API = v1;
				var v2 = v1.prototype;
				v1.__get__connected = function () {
					return com.newgrounds.API._connection.__get__connected();
				};
				v1.__get__isNetworkHost = function () {
					return com.newgrounds.API._connection.__get__isNetworkHost();
				};
				v1.__get__apiId = function () {
					com.newgrounds.API._connection.assertInitialized();
					return com.newgrounds.API._connection.apiId;
				};
				v1.__get__debugMode = function () {
					return com.newgrounds.API._debugMode;
				};
				v1.__set__debugMode = function (val) {
					com.newgrounds.API._debugMode = val;
					return com.newgrounds.API.__get__debugMode();
				};
				v1.__get__publisherId = function () {
					com.newgrounds.API._connection.assertInitialized();
					return com.newgrounds.API._connection.publisherId;
				};
				v1.__get__sessionId = function () {
					com.newgrounds.API._connection.assertInitialized();
					return com.newgrounds.API._connection.sessionId;
				};
				v1.__get__hostDomain = function () {
					com.newgrounds.API._connection.assertInitialized();
					return com.newgrounds.API._connection.hostDomain;
				};
				v1.__get__hostURL = function () {
					com.newgrounds.API._connection.assertInitialized();
					return com.newgrounds.API._connection.__get__hostURL();
				};
				v1.__get__isNewgrounds = function () {
					return com.newgrounds.API._connection.publisherId == 1;
				};
				v1.__get__hasUserSession = function () {
					com.newgrounds.API._connection.assertInitialized();
					return com.newgrounds.API._connection.__get__hasUserSession();
				};
				v1.__get__username = function () {
					com.newgrounds.API._connection.assertInitialized();
					return com.newgrounds.API._connection.username;
				};
				v1.__get__userId = function () {
					com.newgrounds.API._connection.assertInitialized();
					return com.newgrounds.API._connection.userId;
				};
				v1.assertConnected = function (eventType) {
					if (eventType == undefined) {
						eventType = null;
					}
					if (com.newgrounds.API._connection.assertConnected()) {
						return true;
					} else {
						if (eventType) {
							com.newgrounds.API.dispatchEvent(eventType, null, com.newgrounds.APIEvent.ERROR_NOT_CONNECTED);
						}
						return false;
					}
				};
				v1.__get__serverTime = function () {
					return com.newgrounds.API._serverTime;
				};
				v1.__get__adsApproved = function () {
					return com.newgrounds.API._adsApproved;
				};
				v1.__get__adFeedURL = function () {
					return com.newgrounds.API._adFeedURL;
				};
				v1.__get__medals = function () {
					return com.newgrounds.API._medalsArray;
				};
				v1.__get__scoreBoards = function () {
					return com.newgrounds.API._scoreBoardsArray;
				};
				v1.__get__saveGroups = function () {
					return com.newgrounds.API._saveGroupsArray;
				};
				v1.connect = function (_root, apiId, encryptionKey, movieVersion) {
					if (encryptionKey == undefined) {
						encryptionKey = null;
					}
					if (movieVersion == undefined) {
						movieVersion = '';
					}
					com.newgrounds.APIEventDispatcher.__set__globalDispatcher(com.newgrounds.API._dispatcher);
					System.security.loadPolicyFile('http://apifiles.ngfiles.com/crossdomain.xml');
					if (com.newgrounds.API._connection.initialized) {
						com.newgrounds.Logger.logError('Connection already in progress. Please call API.disconnect() before attempting another connection.');
						com.newgrounds.API.dispatchEvent(com.newgrounds.APIEvent.API_CONNECTED, false, com.newgrounds.APIEvent.ERROR_NOT_CONNECTED);
						return undefined;
					}
					apiId = com.newgrounds.API.trimWhitespace(apiId);
					if (encryptionKey) {
						encryptionKey = com.newgrounds.API.trimWhitespace(encryptionKey);
					}
					if (!apiId || apiId == '') {
						com.newgrounds.Logger.logError('No apiId given. Please use the API ID from your API settings page.');
						com.newgrounds.API.dispatchEvent(com.newgrounds.APIEvent.API_CONNECTED, false, com.newgrounds.APIEvent.ERROR_INVALID_ARGUMENT);
						return undefined;
					}
					com.newgrounds.Logger.logMessage('====== Newgrounds API v' + com.newgrounds.API.VERSION + ' ======');
					com.newgrounds.API._connection.connectionState = com.newgrounds.APIConnection.CONNECTING;
					_root = _root;
					com.newgrounds.API._movieVersion = movieVersion;
					com.newgrounds.API._connection.apiId = apiId;
					var v4;
					v4 = apiId.indexOf(':');
					if (v4 != -1) {
						com.newgrounds.API._connection.trackerId = int(apiId.substring(0, v4));
					} else {
						com.newgrounds.API._connection.trackerId = int(apiId);
					}
					if (!com.newgrounds.API._connection.trackerId) {
						com.newgrounds.Logger.logError('Invalid API ID: ' + apiId);
						com.newgrounds.API.dispatchEvent(com.newgrounds.APIEvent.API_CONNECTED, false, com.newgrounds.APIEvent.ERROR_INVALID_ARGUMENT);
						return undefined;
					}
					com.newgrounds.API._connection.encryptionKey = encryptionKey;
					com.newgrounds.API._connection.initialized = true;
					com.newgrounds.API._connection.__set__hostURL(_root._url);
					com.newgrounds.API.doConnect(_root);
				};
				v1.doConnect = function (flashVars) {
					if (com.newgrounds.API.__get__isNetworkHost() && com.newgrounds.API._debugMode != com.newgrounds.API.RELEASE_MODE) {
						com.newgrounds.Logger.logMessage('Live file detected, turning off debug mode.');
						com.newgrounds.API._debugMode = com.newgrounds.API.RELEASE_MODE;
					}
					if (flashVars && flashVars.NewgroundsAPI_SandboxID) {
						com.newgrounds.API._bridge = new com.newgrounds.Bridge(flashVars.NewgroundsAPI_SandboxID);
						com.newgrounds.APICommand.bridge = com.newgrounds.API._bridge;
					} else {
						com.newgrounds.API._bridge = new com.newgrounds.Bridge(com.newgrounds.crypto.MD5.hash(String(Math.random())));
						com.newgrounds.APICommand.bridge = com.newgrounds.API._bridge;
					}
					if (com.newgrounds.API._debugMode == com.newgrounds.API.RELEASE_MODE) {
						if (flashVars) {
							if (flashVars.NewgroundsAPI_UserName) {
								com.newgrounds.API._connection.username = flashVars.NewgroundsAPI_UserName;
							}
							if (flashVars.NewgroundsAPI_UserID) {
								com.newgrounds.API._connection.userId = flashVars.NewgroundsAPI_UserID;
							}
							if (flashVars.NewgroundsAPI_PublisherID) {
								com.newgrounds.API._connection.publisherId = flashVars.NewgroundsAPI_PublisherID;
							}
							if (flashVars.NewgroundsAPI_UserpageFormat) {
								com.newgrounds.API._connection.userpageFormat = flashVars.NewgroundsAPI_UserpageFormat;
							}
							if (flashVars.NewgroundsAPI_SessionID) {
								com.newgrounds.API._connection.sessionId = flashVars.NewgroundsAPI_SessionID;
							}
							if (flashVars.NewgroundsAPI_SaveGroupID) {
								com.newgrounds.API._requestedSaveGroupId = flashVars.NewgroundsAPI_SaveGroupID;
							}
							if (flashVars.NewgroundsAPI_SaveFileID) {
								com.newgrounds.API._requestedSaveFileId = flashVars.NewgroundsAPI_SaveFileID;
							}
						}
					} else {
						com.newgrounds.API._connection.debug = true;
						if (com.newgrounds.API._debugMode == com.newgrounds.API.DEBUG_MODE_LOGGED_IN || com.newgrounds.API._debugMode == com.newgrounds.API.DEBUG_MODE_LOGGED_OUT) {
							com.newgrounds.API._connection.publisherId = 1;
						}
						if (com.newgrounds.API._debugMode == com.newgrounds.API.DEBUG_MODE_LOGGED_IN) {
							com.newgrounds.API._connection.sessionId = 'D3bu64p1U53R';
							com.newgrounds.API._connection.userId = 10;
							com.newgrounds.API._connection.username = 'API-Debugger';
						}
					}
					com.newgrounds.API._connection.sendSimpleCommand('connectMovie', com.newgrounds.API.onConnect, {'host': com.newgrounds.API._connection.hostDomain, 'movie_version': com.newgrounds.API._movieVersion, 'publisher_id': com.newgrounds.API._connection.publisherId});
				};
				v1.onConnect = function (event) {
					var v1 = event.__get__data();
					if (!event.__get__success()) {
						com.newgrounds.Logger.logError('Unable to connect to the API.');
						com.newgrounds.API._connection.reset();
						com.newgrounds.API.dispatchEvent(com.newgrounds.APIEvent.API_CONNECTED, event.__get__data(), event.__get__error());
						return undefined;
					}
					if (com.newgrounds.API.__get__debugMode() != com.newgrounds.API.RELEASE_MODE) {
						com.newgrounds.API._adFeedURL = com.newgrounds.API.TEST_AD_FEED_URL;
					} else {
						if (v1.ad_url) {
							com.newgrounds.API._adFeedURL = unescape(v1.ad_url);
						}
					}
					switch (v1.ad_status) {
						case -1:
							com.newgrounds.Logger.logWarning('Your movie is not approved to run Flash Ads.');
							break;
						case 0:
							com.newgrounds.Logger.logWarning('Your movie is still awaiting approval to run Flash Ads.');
							break;
						case 1:
							com.newgrounds.Logger.logMessage('Your movie is approved to run Flash Ads!');
					}
					com.newgrounds.API._adsApproved = v1.ad_status == 1;
					if (com.newgrounds.API._debugMode == com.newgrounds.API.DEBUG_MODE_HOST_BLOCKED || v1.deny_host) {
						com.newgrounds.Logger.logWarning(com.newgrounds.API._connection.hostDomain + ' does not have permission to host this movie!', 'Update your API configuration to allow this host.');
						com.newgrounds.API.dispatchEvent(com.newgrounds.APIEvent.API_CONNECTED, {'officialURL': unescape(v1.movie_url)}, com.newgrounds.APIEvent.ERROR_HOST_BLOCKED);
						com.newgrounds.API._connection.reset();
						return undefined;
					}
					com.newgrounds.API._movieName = v1.movieName ? v1.movieName : '';
					com.newgrounds.Logger.logMessage('Connecting to the Newgrounds API Gateway...', '----- ' + v1.movie_name + ' -----');
					if (com.newgrounds.API._debugMode == com.newgrounds.API.DEBUG_MODE_NEW_VERSION) {
						v1.movie_version = 'Debug Mode';
					}
					if (v1.movie_version) {
						com.newgrounds.Logger.logMessage('A new version of this movie is available.', 'Current version:\t' + com.newgrounds.API._movieVersion, 'Newest version:\t' + v1.movie_version, 'Use API.loadOfficialVersion() to link to the latest version.');
						com.newgrounds.API._newVersion = true;
					} else {
						com.newgrounds.API._newVersion = false;
					}
					com.newgrounds.API._serverTime = new Date(int(v1.time) * 1000);
					if (v1.request_portal_url) {
						com.newgrounds.API._connection.sendSimpleCommand('setPortalID', null, {'portal_url': com.newgrounds.API._connection.__get__hostURL()});
					}
					com.newgrounds.API._connection.sendSimpleCommand('preloadSettings', com.newgrounds.API.onMetadataLoaded, {'publisher_id': com.newgrounds.API._connection.publisherId, 'user_id': com.newgrounds.API._connection.userId});
				};
				v1.onMetadataLoaded = function (event) {
					var v11 = event.__get__data();
					var v4;
					var v1;
					if (!event.__get__success()) {
						com.newgrounds.Logger.logWarning('Unable to load movie metadata.');
						com.newgrounds.API.disconnect();
						com.newgrounds.API.dispatchEvent(com.newgrounds.APIEvent.API_CONNECTED, null, event.__get__error());
						return undefined;
					}
					var v10 = 0;
					if (v11.medals) {
						v10 = v11.medals.length;
						var v18;
						if (com.newgrounds.API.__get__hasUserSession()) {
							v18 = com.newgrounds.API.loadLocal('medals_unlocked_' + com.newgrounds.API.__get__username());
						} else {
							v18 = com.newgrounds.API.loadLocal('medals_unlocked');
						}
						v4 = 0;
						while (v4 < v10) {
							var v5 = v11.medals[v4];
							var v15 = v5.medal_unlocked;
							var v17 = v18 && v18[v5.medal_id];
							var v14 = com.newgrounds.API.__get__hasUserSession() ? v15 : v17;
							if (com.newgrounds.API.__get__debugMode() != com.newgrounds.API.RELEASE_MODE) {
								v14 = false;
							}
							var v6 = new com.newgrounds.Medal(com.newgrounds.API._connection, v5.medal_id, v5.medal_name, v5.medal_description, Boolean(int(v5.secret)), v14, v5.medal_value, v5.medal_difficulty, v5.medal_icon);
							v6.addEventListener(com.newgrounds.APIEvent.MEDAL_UNLOCKED, com.newgrounds.API.onMedalUnlocked, false, 0, true);
							v6.addEventListener(com.newgrounds.APIEvent.MEDAL_UNLOCK_CONFIRMED, com.newgrounds.API.onMedalUnlockConfirmed, false, 0, true);
							com.newgrounds.API._medals[v6.__get__name()] = v6;
							com.newgrounds.API._medalsArray.push(v6);
							com.newgrounds.Logger.logMessage(v6);
							if (com.newgrounds.API.__get__hasUserSession() && v17 && !v15) {
								com.newgrounds.Logger.logMessage('Server missed the "' + v6.__get__name() + '" unlock. Resending...');
								v6.unlock();
							}
							++v4;
						}
					}
					com.newgrounds.Logger.logMessage(v10 + ' medal' + ((v10 != 1) ? 's' : '') + ' initialized.');
					v10 = 0;
					if (v11.score_boards) {
						v10 = v11.score_boards.length;
						v4 = 0;
						while (v4 < v10) {
							var v16 = v11.score_boards[v4];
							var v9 = new com.newgrounds.ScoreBoard(com.newgrounds.API._connection, v16.name, v16.id);
							com.newgrounds.API._scoreBoards[v9.__get__name()] = v9;
							com.newgrounds.API._scoreBoardsArray.push(v9);
							com.newgrounds.Logger.logMessage(v9);
							++v4;
						}
					}
					com.newgrounds.Logger.logMessage(v10 + ' scoreboard' + ((v10 != 1) ? 's' : '') + ' initialized.');
					v10 = 0;
					if (v11.save_groups) {
						v10 = v11.save_groups.length;
						v4 = 0;
						while (v4 < v10) {
							var v2 = v11.save_groups[v4];
							var v13 = [];
							if (v2.keys) {
								v1 = 0;
								while (v1 < v2.keys.length) {
									var v7 = v2.keys[v1];
									v13.push(new com.newgrounds.SaveKey(v7.name, v7.id, v7.type));
									++v1;
								}
							}
							var v12 = [];
							if (v2.ratings) {
								v1 = 0;
								while (v1 < v2.ratings.length) {
									var v3 = v2.ratings[v1];
									v12.push(new com.newgrounds.SaveRating(v3.name, v3.id, v3.float, v3.min, v3.max));
									++v1;
								}
							}
							var v8 = new com.newgrounds.SaveGroup(com.newgrounds.API._connection, v2.group_name, v2.group_id, v2.group_type, v13, v12);
							com.newgrounds.API._saveGroups[v8.__get__name()] = v8;
							com.newgrounds.API._saveGroupsArray.push(v8);
							com.newgrounds.Logger.logMessage(v8);
							++v4;
						}
					}
					com.newgrounds.Logger.logMessage(v10 + ' save group' + ((v10 != 1) ? 's' : '') + ' initialized.');
					if (v11.save_file_path) {
						com.newgrounds.API._saveFilePath = v11.save_file_path + '/';
						com.newgrounds.SaveFile._saveFilePath = com.newgrounds.API._saveFilePath;
						com.newgrounds.Logger.logInternal('Save file path: ' + com.newgrounds.API._saveFilePath);
					}
					if (v11.image_file_path) {
						com.newgrounds.API._imageFilePath = v11.image_file_path + '/';
						com.newgrounds.SaveFile._imageFilePath = com.newgrounds.API._imageFilePath;
						com.newgrounds.Logger.logInternal('Image file path: ' + com.newgrounds.API._imageFilePath);
					}
					com.newgrounds.Logger.logMessage('Connection complete!');
					com.newgrounds.API._connection.connectionState = com.newgrounds.APIConnection.CONNECTED;
					com.newgrounds.API.dispatchEvent(com.newgrounds.APIEvent.API_CONNECTED, {'movieName': com.newgrounds.API._movieName, 'newVersion': com.newgrounds.API._newVersion});
					if (com.newgrounds.API._requestedSaveFileId && com.newgrounds.API._requestedSaveGroupId) {
						com.newgrounds.API.addEventListener(com.newgrounds.APIEvent.FILE_LOADED, com.newgrounds.API.onRequestedFileLoaded);
						com.newgrounds.API.loadSaveFile(com.newgrounds.API._requestedSaveFileId, false);
					}
				};
				v1.disconnect = function () {
					if (!com.newgrounds.API._connection.__get__connected()) {
						com.newgrounds.Logger.logWarning('The Newgrounds API is already disconnected.');
						return undefined;
					}
					com.newgrounds.API._connection.reset();
					for (var v2 in com.newgrounds.API._medals) {
						var v1 = com.newgrounds.API._medals[v2];
						v1.removeEventListener(com.newgrounds.APIEvent.MEDAL_UNLOCKED, com.newgrounds.API.onMedalUnlocked);
						v1.removeEventListener(com.newgrounds.APIEvent.MEDAL_UNLOCK_CONFIRMED, com.newgrounds.API.onMedalUnlockConfirmed);
					}
					com.newgrounds.API._newVersion = false;
					com.newgrounds.API._medals = new Object();
					com.newgrounds.API._medalsArray = [];
					com.newgrounds.API._scoreBoards = new Object();
					com.newgrounds.API._scoreBoardsArray = [];
					com.newgrounds.API._saveGroups = new Object();
					com.newgrounds.API._saveGroupsArray = [];
					com.newgrounds.API._sharedObjects = new Object();
					com.newgrounds.API._imageFilePath = null;
					com.newgrounds.API._saveFilePath = null;
					com.newgrounds.Logger.logMessage('Disconnected from the Newgrounds API.');
				};
				v1.loadNewgrounds = function () {
					com.newgrounds.API._connection.loadInBrowser('loadNewgrounds');
				};
				v1.loadOfficialVersion = function () {
					if (com.newgrounds.API._connection.assertInitialized()) {
						com.newgrounds.API._connection.loadInBrowser('loadOfficialVersion', false);
					}
				};
				v1.promptSignIn = function () {
					if (com.newgrounds.API._connection.assertInitialized()) {
						getURL(com.newgrounds.API.PASSPORT_URL + com.newgrounds.API._bridge.__get__widgetId(), '_blank');
						com.newgrounds.API._bridge.addEventListener(com.newgrounds.APIEvent.BRIDGE_EVENT_RECEIVED, com.newgrounds.API.onUserSignedIn, false, 0, true);
					}
				};
				v1.onUserSignedIn = function (e) {
					com.newgrounds.API._bridge.removeEventListener(com.newgrounds.APIEvent.BRIDGE_EVENT_RECEIVED, com.newgrounds.API.onUserSignedIn);
					var v1 = e.__get__data();
					if (e.__get__success()) {
						try {
							if (v1.NewgroundsAPI_UserName) {
								com.newgrounds.API._connection.username = v1.NewgroundsAPI_UserName;
							}
							if (v1.NewgroundsAPI_UserID) {
								com.newgrounds.API._connection.userId = v1.NewgroundsAPI_UserID;
							}
							if (v1.NewgroundsAPI_PublisherID) {
								com.newgrounds.API._connection.publisherId = v1.NewgroundsAPI_PublisherID;
							}
							if (v1.NewgroundsAPI_SessionID) {
								com.newgrounds.API._connection.sessionId = v1.NewgroundsAPI_SessionID;
							}
							com.newgrounds.API._connection.sendSimpleCommand('preloadSettings', com.newgrounds.API.onMetadataLoaded, {'publisher_id': com.newgrounds.API._connection.publisherId, 'user_id': com.newgrounds.API._connection.userId});
						}
						com.newgrounds.Logger.logMessage('User ' + com.newgrounds.API._connection.username + ' signed in.');
					}
					com.newgrounds.API.dispatchEvent(com.newgrounds.APIEvent.USER_SIGNED_IN, null, e.__get__success() ? null : com.newgrounds.APIEvent.ERROR_SIGN_IN_FAILED);
				};
				v1.loadMySite = function () {
					if (com.newgrounds.API._connection.assertInitialized()) {
						com.newgrounds.API._connection.loadInBrowser('loadMySite');
					}
				};
				v1.loadCustomLink = function (linkName) {
					if (com.newgrounds.API._connection.assertInitialized()) {
						com.newgrounds.API._connection.loadInBrowser('loadCustomLink', true, {'link': linkName});
					}
				};
				v1.getMedal = function (medalName) {
					return com.newgrounds.API._medals[medalName];
				};
				v1.unlockMedal = function (medalName) {
					if (!com.newgrounds.API.assertConnected()) {
						return undefined;
					}
					var v1 = com.newgrounds.API._medals[medalName];
					if (!v1) {
						com.newgrounds.Logger.logError('No medal named "' + medalName + '" w.');
						return undefined;
					}
					v1.unlock();
				};
				v1.onMedalUnlocked = function (event) {
					if (event.__get__success()) {
						var v2 = com.newgrounds.Medal(event.__get__data());
						var v1;
						if (com.newgrounds.API.__get__hasUserSession()) {
							v1 = com.newgrounds.API.loadLocal('medals_unlocked_' + com.newgrounds.API.__get__username());
							if (!v1) {
								v1 = new Object();
							}
							v1[v2.__get__id()] = true;
							com.newgrounds.API.saveLocal('medals_unlocked_' + com.newgrounds.API.__get__username(), v1);
						} else {
							v1 = com.newgrounds.API.loadLocal('medals_unlocked');
							if (!v1) {
								v1 = new Object();
							}
							v1[(com.newgrounds.Medal(event.__get__data())).__get__id()] = true;
							com.newgrounds.API.saveLocal('medals_unlocked', v1);
							com.newgrounds.Logger.logMessage('User instanceof not logged in. Medal "' + v2.__get__name() + '" unlocked locally.');
						}
					}
				};
				v1.onMedalUnlockConfirmed = function (event) {
					if (com.newgrounds.API.__get__hasUserSession()) {
						var v1 = com.newgrounds.API.loadLocal('medals_unlocked_' + com.newgrounds.API.__get__username());
						if (!v1) {
							v1 = new Object();
						} else {
							delete v1[(com.newgrounds.Medal(event.__get__data())).__get__id()];
						}
						com.newgrounds.API.saveLocal('medals_unlocked_' + com.newgrounds.API.__get__username(), v1);
					}
				};
				v1.clearLocalMedals = function () {
					for (var v2 in com.newgrounds.API._medals) {
						var v1 = com.newgrounds.API._medals[v2];
						v1.setUnlocked(false);
					}
					if (!com.newgrounds.API.__get__hasUserSession()) {
						com.newgrounds.API.saveLocal('medals_unlocked', new Object());
					}
				};
				v1.getScoreBoard = function (scoreBoardName) {
					if (!com.newgrounds.API.assertConnected()) {
						return null;
					}
					return com.newgrounds.API._scoreBoards[scoreBoardName];
				};
				v1.loadScores = function (scoreBoardName, period, firstResult, numResults, tag) {
					if (period == undefined) {
						period = 'All-Time';
					}
					if (firstResult == undefined) {
						firstResult = 1;
					}
					if (numResults == undefined) {
						numResults = 10;
					}
					if (tag == undefined) {
						tag = null;
					}
					if (!com.newgrounds.API.assertConnected()) {
						return null;
					}
					var v1 = com.newgrounds.API._scoreBoards[scoreBoardName];
					if (!v1) {
						com.newgrounds.Logger.logError('No scoreboard named "' + scoreBoardName + '" w.');
						com.newgrounds.API.dispatchEvent(com.newgrounds.APIEvent.SCORES_LOADED, null, com.newgrounds.APIEvent.ERROR_INVALID_ARGUMENT);
						return null;
					}
					v1.__set__period(period);
					v1.__set__firstResult(firstResult);
					v1.__set__numResults(numResults);
					v1.__set__tag(tag);
					v1.loadScores();
					return v1;
				};
				v1.postScore = function (scoreBoardName, numericScore, tag) {
					if (tag == undefined) {
						tag = null;
					}
					if (!com.newgrounds.API.assertConnected()) {
						return undefined;
					}
					if (!com.newgrounds.API.__get__hasUserSession()) {
						com.newgrounds.Logger.logError('The user must be logged-in to post a score.');
						com.newgrounds.API.dispatchEvent(com.newgrounds.APIEvent.SCORE_POSTED, null, com.newgrounds.APIEvent.ERROR_NOT_LOGGED_IN);
						return undefined;
					}
					var v1 = com.newgrounds.API._scoreBoards[scoreBoardName];
					if (!v1) {
						com.newgrounds.Logger.logError('No scoreboard named "' + scoreBoardName + '" w.');
						com.newgrounds.API.dispatchEvent(com.newgrounds.APIEvent.SCORE_POSTED, null, com.newgrounds.APIEvent.ERROR_INVALID_ARGUMENT);
						return undefined;
					}
					v1.postScore(numericScore, tag);
				};
				v1.getSaveGroup = function (groupName) {
					if (!com.newgrounds.API.assertConnected()) {
						return null;
					}
					return com.newgrounds.API._saveGroups[groupName];
				};
				v1.getSaveGroupById = function (id) {
					for (var v3 in com.newgrounds.API._saveGroups) {
						var v1 = com.newgrounds.API._saveGroups[v3];
						if (v1.__get__id() == id) {
														return v1;
						}
					}
					return null;
				};
				v1.createSaveFile = function (groupName) {
					if (!com.newgrounds.API.assertConnected()) {
						return null;
					}
					var v1 = com.newgrounds.API.getSaveGroup(groupName);
					if (!v1) {
						com.newgrounds.Logger.logError('The save group "' + groupName + '" w found.');
						return null;
					}
					return new com.newgrounds.SaveFile(v1);
				};
				v1.loadSaveFile = function (saveId, loadContents) {
					if (loadContents == undefined) {
						loadContents = true;
					}
					com.newgrounds.API._connection.sendSimpleCommand('loadSaveFile', com.newgrounds.API.onFileLoaded, {'save_id': saveId, 'get_contents': loadContents});
				};
				v1.onFileLoaded = function (event) {
					var v2;
					if (event.__get__success()) {
						v2 = com.newgrounds.SaveFile.fromObject(com.newgrounds.API.getSaveGroupById((event.__get__data()).group_id), (event.__get__data()).file);
						if ((event.__get__data()).get_contents) {
							v2.load();
						} else {
							com.newgrounds.API.dispatchEvent(com.newgrounds.APIEvent.FILE_LOADED, v2);
						}
					} else {
						com.newgrounds.Logger.logError('Unable to load file:', event.__get__error());
						com.newgrounds.API.dispatchEvent(com.newgrounds.APIEvent.FILE_LOADED, null, event.__get__error());
					}
				};
				v1.createSaveQuery = function (groupName) {
					if (!com.newgrounds.API.assertConnected()) {
						return null;
					}
					var v1 = com.newgrounds.API.getSaveGroup(groupName);
					if (!v1) {
						com.newgrounds.Logger.logError('The save group "' + groupName + '" w found.');
						return null;
					}
					var v2 = new com.newgrounds.SaveQuery(v1);
					return v2;
				};
				v1.createSaveQueryByDate = function (groupName, sortDescending) {
					if (sortDescending == undefined) {
						sortDescending = true;
					}
					var v1 = com.newgrounds.API.createSaveQuery(groupName);
					if (!v1) {
						return null;
					}
					v1.sortOn(com.newgrounds.SaveQuery.CREATED_ON, sortDescending);
					return v1;
				};
				v1.createSaveQueryByName = function (groupName, filename, exactMatch, sortDescending) {
					if (exactMatch == undefined) {
						exactMatch = false;
					}
					if (sortDescending == undefined) {
						sortDescending = false;
					}
					var v1 = com.newgrounds.API.createSaveQuery(groupName);
					if (!exactMatch) {
						v1.addCondition(com.newgrounds.SaveQuery.FILE_NAME, com.newgrounds.SaveQuery.OPERATOR_CONTAINS, filename);
						return v1;
					}
					v1.addCondition(com.newgrounds.SaveQuery.FILE_NAME, com.newgrounds.SaveQuery.OPERATOR_EQUAL, filename);
					return v1;
				};
				v1.createSaveQueryByRating = function (groupName, ratingName, sortDescending) {
					if (sortDescending == undefined) {
						sortDescending = true;
					}
					var v1 = com.newgrounds.API.createSaveQuery(groupName);
					v1.sortOn(ratingName, sortDescending);
					return v1;
				};
				v1.onRequestedFileLoaded = function (event) {
					com.newgrounds.API.removeEventListener(com.newgrounds.APIEvent.FILE_LOADED, com.newgrounds.API.onRequestedFileLoaded);
					if (event.__get__success()) {
						var v1 = event.__get__data();
						if (v1) {
							com.newgrounds.API.dispatchEvent(com.newgrounds.APIEvent.FILE_REQUESTED, v1);
						}
					}
				};
				v1.addEventListener = function (eventType, listener, priority, useWeakReference) {
					if (priority == undefined) {
						priority = 0;
					}
					if (useWeakReference == undefined) {
						useWeakReference = true;
					}
					com.newgrounds.API._dispatcher.addEventListener(eventType, listener, false, priority, useWeakReference);
				};
				v1.removeEventListener = function (eventType, listener) {
					com.newgrounds.API._dispatcher.removeEventListener(eventType, listener);
				};
				v1.dispatchEvent = function (event, data, error) {
					if (data == undefined) {
						data = null;
					}
					if (error == undefined) {
						error = null;
					}
					com.newgrounds.API._dispatcher.dispatchEvent(new com.newgrounds.APIEvent(event, data, error));
				};
				v1.saveLocal = function (saveId, saveData) {
					try {
						var v3;
						var v2 = 'ng_ap_secure_' + com.newgrounds.API._connection.trackerId + '_' + com.newgrounds.crypto.RC4.encrypt(saveId, com.newgrounds.API._connection.encryptionKey);
						if (!com.newgrounds.API._sharedObjects[saveId]) {
							com.newgrounds.API._sharedObjects[saveId] = SharedObject.getLocal(v2);
						}
						v3 = com.newgrounds.API._sharedObjects[saveId];
						v3.data.data = com.newgrounds.API.encodeData(saveData);
					}
					catch (v0) {
						if (Error(v0) != null) {
							var error = Error(v0);
							com.newgrounds.Logger.logError('Unable to save local data.', error);
							return false;
							return true;
						}
						throw v0;
					}
					return true;
				};
				v1.loadLocal = function (saveId) {
					try {
						var v1;
						var v3 = 'ng_ap_secure_' + com.newgrounds.API._connection.trackerId + '_' + com.newgrounds.crypto.RC4.encrypt(saveId, com.newgrounds.API._connection.encryptionKey);
						if (!com.newgrounds.API._sharedObjects[saveId]) {
							com.newgrounds.API._sharedObjects[saveId] = SharedObject.getLocal(v3);
						}
						v1 = com.newgrounds.API._sharedObjects[saveId];
						if (v1 && v1.data && v1.data.data) {
							return com.newgrounds.API.decodeData(v1.data.data);
						}
						return null;
					}
					catch (v0) {
						if (Error(v0) != null) {
							var error = Error(v0);
							com.newgrounds.Logger.logError('Unable to load local data.', error);
							return null;
						}
						throw v0;
					}
					return null;
				};
				v1.logCustomEvent = function (eventName) {
					if (com.newgrounds.API.assertConnected()) {
						com.newgrounds.Logger.logMessage('Logged event: ' + eventName);
						com.newgrounds.API._connection.sendSimpleCommand('logCustomEvent', null, {'event': eventName});
					}
				};
				v1.encodeData = function (data) {
					if (!com.newgrounds.API._connection.assertInitialized()) {
						return null;
					}
					return com.newgrounds.crypto.RC4.encrypt(com.newgrounds.encoders.json.JSON.encode(data), com.newgrounds.API._connection.encryptionKey);
				};
				v1.decodeData = function (data) {
					if (!com.newgrounds.API._connection.assertInitialized()) {
						return null;
					}
					try {
						return com.newgrounds.encoders.json.JSON.decode(com.newgrounds.crypto.RC4.decrypt(data, com.newgrounds.API._connection.encryptionKey));
					}
					catch (v0) {
						if (Error(v0) != null) {
							var error = Error(v0);
							return null;
						}
						throw v0;
					}
					return null;
				};
				v1.stopPendingCommands = function () {
					com.newgrounds.APICommand.stopPendingCommands();
					com.newgrounds.Logger.logMessage('Pending commands stopped.');
				};
				v1.trimWhitespace = function (string) {
					if (!string) {
						return null;
					}
					var v3 = 0;
					while (string.charAt(v3) == ' ') {
						++v3;
					}
					var v1 = string.length - 1;
					for (;;) {
						if (!(string.charAt(v1) == ' ' && v1 >= 0)) break;
						--v1;
					}
					return string.slice(v3, v1 + 1);
				};
				v1.VERSION = '3.2 AS2';
				v1.RELEASE_MODE = 'releaseMode';
				v1.DEBUG_MODE_LOGGED_IN = 'debugModeLoggedIn';
				v1.DEBUG_MODE_LOGGED_OUT = 'debugModeLoggedOut';
				v1.DEBUG_MODE_NEW_VERSION = 'debugModeNewVersion';
				v1.DEBUG_MODE_HOST_BLOCKED = 'debugModeHostBlocked';
				v1.TEST_AD_FEED_URL = 'http://www.ngads.com/adtest.php';
				v1.PASSPORT_URL = 'https://www.newgrounds.com/login/remote/';
				v1._dispatcher = new com.newgrounds.APIEventDispatcher();
				v1._connection = new com.newgrounds.APIConnection();
				v1._debugMode = com.newgrounds.API.DEBUG_MODE_LOGGED_IN;
				v1._adsApproved = false;
				v1._medals = new Object();
				v1._medalsArray = [];
				v1._scoreBoards = new Object();
				v1._scoreBoardsArray = [];
				v1._saveGroups = new Object();
				v1._saveGroupsArray = [];
				v1._sharedObjects = new Object();
				v1.addProperty('adFeedURL', v1.__get__adFeedURL, function () {});
				v1.addProperty('adsApproved', v1.__get__adsApproved, function () {});
				v1.addProperty('apiId', v1.__get__apiId, function () {});
				v1.addProperty('connected', v1.__get__connected, function () {});
				v1.addProperty('debugMode', v1.__get__debugMode, v1.__set__debugMode);
				v1.addProperty('hasUserSession', v1.__get__hasUserSession, function () {});
				v1.addProperty('hostDomain', v1.__get__hostDomain, function () {});
				v1.addProperty('hostURL', v1.__get__hostURL, function () {});
				v1.addProperty('isNetworkHost', v1.__get__isNetworkHost, function () {});
				v1.addProperty('isNewgrounds', v1.__get__isNewgrounds, function () {});
				v1.addProperty('medals', v1.__get__medals, function () {});
				v1.addProperty('publisherId', v1.__get__publisherId, function () {});
				v1.addProperty('saveGroups', v1.__get__saveGroups, function () {});
				v1.addProperty('scoreBoards', v1.__get__scoreBoards, function () {});
				v1.addProperty('serverTime', v1.__get__serverTime, function () {});
				v1.addProperty('sessionId', v1.__get__sessionId, function () {});
				v1.addProperty('userId', v1.__get__userId, function () {});
				v1.addProperty('username', v1.__get__username, function () {});
				ASSetPropFlags(com.newgrounds.API.prototype, null, 1);
			}
		#endinitclip
	}
	movieClip 63 __Packages.com.newgrounds.encoders.ImageScanner {
		#initclip
			if (!_global.com) {
				_global.com = new Object();
			}
			if (!_global.com.newgrounds) {
				_global.com.newgrounds = new Object();
			}
			if (!_global.com.newgrounds.encoders) {
				_global.com.newgrounds.encoders = new Object();
			}
			if (!_global.com.newgrounds.encoders.ImageScanner) {
				var v1 = function (hashLength, charsPerPixel) {
					if (hashLength) {
						this._hash = com.newgrounds.encoders.ImageScanner.DEFAULT_HASH.substr(0, hashLength);
					}
					this._baseN = new com.newgrounds.encoders.BaseN(this._hash);
					if (charsPerPixel) {
						this._charsPerPixel = charsPerPixel;
					}
					this.__set__encodeAlpha(false);
				};
				com.newgrounds.encoders.ImageScanner = v1;
				var v2 = v1.prototype;
				v2.__get__encodeAlpha = function () {
					return this._encodeAlpha;
				};
				v2.__set__encodeAlpha = function (v) {
					this._encodeAlpha = v;
					this._maxPerChannel = int(Math.pow(this._hash.length, this._charsPerPixel / (this._encodeAlpha ? 4 : 3)));
					if (this._maxPerChannel > 256) {
						this._maxPerChannel = 256;
					}
					return this.__get__encodeAlpha();
				};
				v2.encode = function (source, callbackFunction, callbackObject) {
					var v4 = {'callbackFunction': callbackFunction, 'callbackObject': callbackObject, 'source': source, 'x': 0, 'y': 0, 'output': null};
					var v2 = source.width.toString();
					var v3 = source.height.toString();
					while (v2.length < 3) {
						v2 = '0' + v2;
					}
					while (v3.length < 3) {
						v3 = '0' + v3;
					}
					v4.output = v2 + v3;
					var v6 = setInterval(this, 'doEncode', com.newgrounds.encoders.ImageScanner.WORK_INTERVAL, v4);
					v4.interval = v6;
				};
				v2.decode = function (source, callbackFunction, callbackObject) {
					var v4 = {'callbackFunction': callbackFunction, 'callbackObject': callbackObject, 'source': source, 'i': 6, 'x': 0, 'y': 0, 'output': null};
					var v3 = source.substr(0, 3);
					var v2 = source.substr(3, 3);
					while (v3.charAt(0) == '0') {
						v3 = v3.substr(1);
					}
					while (v2.charAt(0) == '0') {
						v2 = v2.substr(1);
					}
					var v7 = int(v3);
					var v8 = int(v2);
					v4.output = new flash.display.BitmapData(v7, v8, this._encodeAlpha);
					var v6 = setInterval(this, 'doDecode', com.newgrounds.encoders.ImageScanner.WORK_INTERVAL, v4);
					v4.interval = v6;
				};
				v2.doEncode = function (state) {
					var v3 = getTimer();
					for (;;) {
						if (!(state.y < state.source.height && getTimer() - v3 < com.newgrounds.encoders.ImageScanner.WORK_INTERVAL)) break;
						state.output += this.encodePixel(state.source.getPixel32(state.x, state.y));
						++state.x;
						if (state.x == state.source.width) {
							state.x = 0;
							++state.y;
						}
					}
					if (state.y == state.source.height) {
						clearInterval(state.interval);
						state.callbackFunction.call(state.callbackObject, state.output);
					}
				};
				v2.doDecode = function (state) {
					var v4 = getTimer();
					for (;;) {
						if (!(state.y < state.output.height && getTimer() - v4 < com.newgrounds.encoders.ImageScanner.WORK_INTERVAL)) break;
						var v3 = this.decodePixel(state.source.substr(state.i, this._charsPerPixel));
						state.output.setPixel32(state.x, state.y, v3);
						state.i += this._charsPerPixel;
						++state.x;
						if (state.x == state.output.width) {
							state.x = 0;
							++state.y;
						}
					}
					if (state.y == state.output.height) {
						clearInterval(state.interval);
						state.callbackFunction.call(state.callbackObject, state.output);
					}
				};
				v2.encodePixel = function (pixel) {
					var v3 = pixel >> 24 & 255;
					var v4 = pixel >> 16 & 255;
					var v5 = pixel >> 8 & 255;
					var v2 = pixel & 255;
					v3 = int((v3 / 256) * this._maxPerChannel);
					v4 = int((v4 / 256) * this._maxPerChannel);
					v5 = int((v5 / 256) * this._maxPerChannel);
					v2 = int((v2 / 256) * this._maxPerChannel);
					var v7 = v4 * this._maxPerChannel * this._maxPerChannel + v5 * this._maxPerChannel + v2;
					if (this._encodeAlpha) {
						v7 += v3 * this._maxPerChannel * this._maxPerChannel * this._maxPerChannel;
					}
					return this._baseN.encodeUint(v7, this._charsPerPixel);
				};
				v2.decodePixel = function (encodedPixel) {
					var v3 = 255;
					var v5;
					var v6;
					var v4;
					var v7 = 0;
					var v2 = this._baseN.decodeUint(encodedPixel);
					v4 = v2 % this._maxPerChannel;
					v2 /= int(this._maxPerChannel);
					v6 = v2 % this._maxPerChannel;
					v2 /= int(this._maxPerChannel);
					v5 = v2 % this._maxPerChannel;
					v2 /= int(this._maxPerChannel);
					if (this._encodeAlpha) {
						v3 = v2 % this._maxPerChannel;
						v2 /= int(this._maxPerChannel);
					}
					return v3 << 24 | v5 << 16 | v6 << 8 | v4;
				};
				v1.DEFAULT_HASH = '0123456789aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ<>?:;-_=+()!&';
				v2._hash = com.newgrounds.encoders.ImageScanner.DEFAULT_HASH;
				v2._charsPerPixel = 2;
				v1.WORK_INTERVAL = 33.33333333333334;
				v2.addProperty('encodeAlpha', v2.__get__encodeAlpha, v2.__set__encodeAlpha);
				ASSetPropFlags(com.newgrounds.encoders.ImageScanner.prototype, null, 1);
			}
		#endinitclip
	}
	movieClip 64 __Packages.com.newgrounds.SaveFile {
		#initclip
			if (!_global.com) {
				_global.com = new Object();
			}
			if (!_global.com.newgrounds) {
				_global.com.newgrounds = new Object();
			}
			if (!_global.com.newgrounds.SaveFile) {
				var v1 = function (group) {
					super();
					this._iconLoader = new com.newgrounds.BitmapLoader(com.newgrounds.SaveFile.DEFAULT_ICON, null);
					this._group = group;
					this._keys = {};
					this._ratings = {};
					this._numVotes = {};
				};
				com.newgrounds.SaveFile = v1;
				com.newgrounds.SaveFile extends com.newgrounds.APIEventDispatcher;
				var v2 = v1.prototype;
				v1.__get__currentFile = function () {
					return com.newgrounds.SaveFile._currentFile;
				};
				v1.fromObject = function (group, fileData) {
					var v3 = new com.newgrounds.SaveFile(group);
					v3._name = fileData.filename;
					v3._description = fileData.description;
					v3._id = fileData.save_id;
					v3._authorId = fileData.user_id;
					v3._authorName = fileData.user_name;
					v3._createdDate = fileData.created;
					v3._modifiedDate = fileData.last_update;
					v3._views = fileData.views;
					if (fileData.thumb && fileData.thumb != '') {
						v3._iconLoader.__set__url(com.newgrounds.SaveFile._imageFilePath + fileData.thumb);
					}
					v3._dataURL = com.newgrounds.SaveFile._saveFilePath + fileData.file;
					v3._fileSize = fileData.file_size;
					v3._approved = fileData.status != com.newgrounds.SaveFile.STATUS_UNAPPROVED;
					v3._readOnly = false;
					v3._public = fileData.status != com.newgrounds.SaveFile.STATUS_PRIVATE && fileData.status != com.newgrounds.SaveFile.STATUS_UNAPPROVED;
					for (var v8 in fileData.keys) {
						var v6 = fileData.keys[v8];
						var v4 = group.getKeyById(v6.id);
						if (v4) {
							v3._keys[v4.__get__name()] = v4.validateValue(v6.value);
						}
					}
					for (var v9 in fileData.ratings) {
						var v5 = fileData.ratings[v9];
						var v2 = group.getRatingById(v5.id);
						if (v2) {
							v3._ratings[v2.__get__name()] = v2.validateValue(v5.score);
							v3._numVotes[v2.__get__name()] = int(v5.votes);
						}
					}
					return v3;
				};
				v2.__get__group = function () {
					return this._group;
				};
				v2.__get__name = function () {
					return this._name;
				};
				v2.__set__name = function (val) {
					this._name = val;
					return this.__get__name();
				};
				v2.__get__description = function () {
					return this._description;
				};
				v2.__set__description = function (val) {
					this._description = val;
					return this.__get__description();
				};
				v2.__get__id = function () {
					return this._id;
				};
				v2.__get__data = function () {
					return this._data;
				};
				v2.__set__data = function (val) {
					this._data = val;
					return this.__get__data();
				};
				v2.__get__bytesLoaded = function () {
					if (this._data) {
						return this.__get__bytesTotal();
					} else {
						if (!this._dataLoader) {
							return 0;
						} else {
							return this._dataLoader.getBytesLoaded();
						}
					}
				};
				v2.__get__bytesTotal = function () {
					return this._fileSize;
				};
				v2.__get__readOnly = function () {
					return this._readOnly;
				};
				v2.__get__draft = function () {
					return this._draft;
				};
				v2.__set__draft = function (v) {
					this._draft = v;
					return this.__get__draft();
				};
				v2.__get__authorId = function () {
					return this._authorId;
				};
				v2.__get__authorName = function () {
					return this._authorName;
				};
				v2.__get__keys = function () {
					return this._keys;
				};
				v2.__get__ratings = function () {
					return this._ratings;
				};
				v2.__get__numVotes = function () {
					return this._numVotes;
				};
				v2.__get__views = function () {
					return this._views;
				};
				v2.__get__createdDate = function () {
					return this._createdDate;
				};
				v2.__get__updatedDate = function () {
					return this._modifiedDate;
				};
				v2.toString = function () {
					return 'Save File: ' + this._name;
				};
				v2.__get__icon = function () {
					return this._iconLoader.__get__bitmapData();
				};
				v2.__set__icon = function (v) {
					this.createIcon(v);
					return this.__get__icon();
				};
				v2.__get__iconLoaded = function () {
					return this._iconLoader.__get__loaded();
				};
				v2.createIcon = function (source) {
					var v9 = new flash.display.BitmapData(com.newgrounds.SaveFile.ICON_WIDTH, com.newgrounds.SaveFile.ICON_HEIGHT, false, 0);
					var v7;
					var v6;
					var v10 = 0;
					var v8 = 0;
					if (source instanceof flash.display.BitmapData) {
						v7 = source.width;
						v6 = source.height;
					} else {
						if (source instanceof MovieClip) {
							var v2 = (MovieClip(source)).getBounds(source);
							v7 = v2.xMax - v2.xMin;
							v6 = v2.yMax - v2.yMin;
							v10 = v2.xMin;
							v8 = v2.yMin;
						}
					}
					var v4 = new flash.geom.Matrix();
					var v5;
					v5 = Math.min(com.newgrounds.SaveFile.ICON_WIDTH / v7, com.newgrounds.SaveFile.ICON_HEIGHT / v6);
					v4.translate(-v10, -v8);
					v4.scale(v5, v5);
					v4.translate((com.newgrounds.SaveFile.ICON_WIDTH - v7 * v5) / 2, (com.newgrounds.SaveFile.ICON_HEIGHT - v6 * v5) / 2);
					v9.draw(source, v4);
					this._iconLoader.__set__bitmapData(v9);
				};
				v2.attachIcon = function (parent) {
					if (this._iconLoader) {
						return this._iconLoader.attachBitmap(parent);
					}
					com.newgrounds.Logger.logError('No icon available for this sumbission.');
					return null;
				};
				v2.deleteFile = function () {
					if (!(this._group.__get__connection()).__get__hasUserSession()) {
						com.newgrounds.Logger.logError('The user must be logged-in to delete a file.');
						this.dispatchEvent(new com.newgrounds.APIEvent(com.newgrounds.APIEvent.FILE_DELETED, null, com.newgrounds.APIEvent.ERROR_NOT_LOGGED_IN));
						return undefined;
					}
					if (!this._id) {
						com.newgrounds.Logger.logError('The file does not exist.');
						this.dispatchEvent(new com.newgrounds.APIEvent(com.newgrounds.APIEvent.FILE_DELETED, null, com.newgrounds.APIEvent.ERROR_NOT_LOGGED_IN));
						return undefined;
					}
					var v2 = new com.newgrounds.APICommand('deleteSaveFile');
					(v2.__get__secureParameters()).save_id = this._id;
					v2.addEventListener(com.newgrounds.APIEvent.COMMAND_COMPLETE, {'target': this, 'func': this.onFileDeleted});
					(this._group.__get__connection()).sendCommand(v2);
				};
				v2.save = function () {
					if (!(this._group.__get__connection()).__get__hasUserSession()) {
						com.newgrounds.Logger.logError('The user must be logged-in to save a file.');
						this.dispatchEvent(new com.newgrounds.APIEvent(com.newgrounds.APIEvent.FILE_SAVED, null, com.newgrounds.APIEvent.ERROR_NOT_LOGGED_IN));
						return undefined;
					}
					++com.newgrounds.BitmapLoader._cacheSeed;
					com.newgrounds.SaveFile._currentFile = this;
					if (this.__get__iconLoaded()) {
						com.newgrounds.SaveFile.ICON_IMAGE_SCANNER.encode(this.__get__icon(), this.onIconEncoded, this);
					} else {
						this.encodeData(true);
					}
				};
				v2.onIconEncoded = function (encodedIcon) {
					this._encodedIcon = encodedIcon;
					this.encodeData(true);
				};
				v2.doSave = function () {
					var v4 = new com.newgrounds.APICommand('saveFile');
					(v4.__get__secureParameters()).group = this._group.id;
					(v4.__get__secureParameters()).user_name = (this._group.__get__connection()).username;
					(v4.__get__secureParameters()).filename = this._name;
					(v4.__get__secureParameters()).description = this._description;
					if (this._draft) {
						(v4.__get__secureParameters()).draft = true;
					}
					if (this._id && !this._readOnly) {
						(v4.__get__secureParameters()).overwrite = 1;
						(v4.__get__secureParameters()).save_id = this._id;
					}
					var v8 = [];
					for (var v9 in this._keys) {
						var v2 = this._group.getKey(v9);
						if (v2) {
							v8.push({'id': v2.__get__id(), 'value': v2.validateValue(this._keys[v9])});
						} else {
							com.newgrounds.Logger.logError('No key named "' + v9 + '" in save group "' + this._group.__get__name() + '".');
						}
					}
					(v4.__get__secureParameters()).keys = v8;
					var v7 = [];
					for (var v10 in this._ratings) {
						var v3 = this._group.getRating(v10);
						if (v3) {
							v7.push({'id': v3.__get__id(), 'value': v3.validateValue(this._ratings[v10])});
						} else {
							com.newgrounds.Logger.logError('No rating named "' + v10 + '" in save group "' + this._group.__get__name() + '".');
						}
					}
					(v4.__get__secureParameters()).ratings = v7;
					if (typeof this._encodedData == 'string') {
						v4.addFile('file', this._encodedData, 'file');
					} else {
						v4.addFile('file', com.newgrounds.encoders.json.JSON.encode(this._encodedData), 'file');
					}
					if (this.__get__iconLoaded()) {
						v4.addFile('thumbnail', this._encodedIcon, 'thumbnail');
					}
					v4.addEventListener(com.newgrounds.APIEvent.COMMAND_COMPLETE, {'target': this, 'func': this.onSaveComplete});
					(this._group.__get__connection()).sendCommand(v4);
				};
				v2.encodeData = function (encode) {
					this._encoderQueue = [];
					this._encoding = encode;
					if (encode) {
						this._encodedData = this._data;
						this.preEncodeObject(this, '_encodedData');
					} else {
						this.preEncodeObject(this, '_data');
					}
					this.encodeObject();
				};
				v2.preEncodeObject = function (parent, property) {
					var v3 = parent[property];
					var v5;
					try {
						if (this._encoding) {
							v5 = v3 instanceof flash.display.BitmapData;
						} else {
							v5 = v3.type == '__bitmap';
						}
					}
					var v2 = v3;
					var v8;
					if (v5) {
						this._encoderQueue.push({'parent': parent, 'property': property});
					} else {
						if (typeof v3 == 'object' && !v8) {
							if (this._encoding) {
								if (v3 instanceof Array) {
									v2 = [];
								} else {
									v2 = {};
								}
								for (var v4 in v3) {
									v2[v4] = v3[v4];
								}
								parent[property] = v2;
							}
							for (v4 in v2) {
								this.preEncodeObject(v2, v4);
							}
						}
					}
				};
				v2.encodeObject = function () {
					if (!this._encoderQueue.length) {
						if (this._encoding) {
							this.doSave();
						} else {
							this._dataLoaded = true;
							this.checkLoadComplete();
						}
						return undefined;
					}
					var v6 = this._encoderQueue.pop();
					var v4 = v6.parent;
					var v3 = v6.property;
					var v2 = v4[v3];
					var v5;
					if (this._encoding) {
						v5 = {'type': '__bitmap', 'width': v2.width, 'height': v2.height, 'transparent': v2.transparent};
						v4[v3] = v5;
						this._encodingParent = v5;
						this._encodingProperty = 'data';
						com.newgrounds.SaveFile.DATA_IMAGE_SCANNER.__set__encodeAlpha(v2.transparent);
						com.newgrounds.SaveFile.DATA_IMAGE_SCANNER.encode(flash.display.BitmapData(v2), this.encodeBitmapComplete, this);
					} else {
						this._encodingParent = v4;
						this._encodingProperty = v3;
						com.newgrounds.SaveFile.DATA_IMAGE_SCANNER.__set__encodeAlpha(v2.transparent);
						com.newgrounds.SaveFile.DATA_IMAGE_SCANNER.decode(String(v2.data), this.encodeBitmapComplete, this);
					}
				};
				v2.encodeBitmapComplete = function (data) {
					this._encodingParent[this._encodingProperty] = data;
					this.encodeObject();
				};
				v2.load = function () {
					com.newgrounds.SaveFile._currentFile = this;
					this._dataLoaded = false;
					this._data = null;
					if (!this.__get__iconLoaded()) {
						this._iconLoader.addEventListener(com.newgrounds.APIEvent.ICON_LOADED, {'target': this, 'func': this.onIconLoaded});
						this._iconLoader.load();
					}
					this._dataLoader = new LoadVars();
					var file = this;
					this._dataLoader.onData = function (data) {
						file.onDataLoaded(data);
					};
					this._dataLoader.load(this._dataURL + '&random=' + Math.random());
				};
				v2.onIconLoaded = function (event) {
					if (!event.__get__success() && this._iconLoader.__get__url()) {
						com.newgrounds.Logger.logWarning('Unable to load the icon for this save file.');
					}
					this._iconLoader.removeEventListener(com.newgrounds.APIEvent.ICON_LOADED, this.onIconLoaded);
					this.checkLoadComplete();
				};
				v2.checkLoadComplete = function () {
					if (this._dataLoaded && this.__get__iconLoaded()) {
						com.newgrounds.Logger.logMessage('Data loaded.');
						this.dispatchEvent(new com.newgrounds.APIEvent(com.newgrounds.APIEvent.FILE_LOADED, this));
					}
				};
				v2.onDataLoaded = function (data) {
					try {
						if (data) {
							if (data.charAt(0) == '{') {
								this._data = com.newgrounds.encoders.json.JSON.decode(String(data));
							} else {
								this._data = String(data);
							}
							this.encodeData(false);
						}
					}
					catch (v0) {
						if (Error(v0) != null) {
							var error = Error(v0);
							com.newgrounds.Logger.logError('Error while loading data:', error);
							this.dispatchEvent(new com.newgrounds.APIEvent(com.newgrounds.APIEvent.FILE_LOADED, this, com.newgrounds.APIEvent.ERROR_BAD_FILE));
						} else {
							throw v0;
						}
					}
				};
				v2.onDataError = function (error) {
					com.newgrounds.Logger.logError('Unable to load data:', error);
					this.dispatchEvent(new com.newgrounds.APIEvent(com.newgrounds.APIEvent.FILE_LOADED, this, com.newgrounds.APIEvent.ERROR_BAD_FILE));
				};
				v2.onSaveComplete = function (event) {
					if (event.__get__success()) {
						com.newgrounds.Logger.logMessage('File "' + this._name + '" saved!');
						if (event.__get__data()) {
							this._id = (event.__get__data()).save_id;
							this._dataURL = unescape((event.__get__data()).file_url);
						}
						this.dispatchEvent(new com.newgrounds.APIEvent(com.newgrounds.APIEvent.FILE_SAVED, this));
					} else {
						com.newgrounds.Logger.logError('Error saving file "' + this._name + '":', event.__get__error());
						this.dispatchEvent(new com.newgrounds.APIEvent(com.newgrounds.APIEvent.FILE_SAVED, this, event.__get__error()));
					}
				};
				v2.sendVote = function (ratingName, vote) {
					var v2 = this._group.getRating(ratingName);
					if (!v2) {
						com.newgrounds.Logger.logError('No save rating named "' + ratingName + '" exists for this save group.');
						this.dispatchEvent(new com.newgrounds.APIEvent(com.newgrounds.APIEvent.VOTE_COMPLETE, {}, com.newgrounds.APIEvent.ERROR_INVALID_ARGUMENT));
						return undefined;
					}
					vote = v2.validateValue(vote);
					if (isNaN(vote)) {
						com.newgrounds.Logger.logError('Invalid vote (' + vote + '). ' + ratingName + ' allows a range of ' + v2.__get__minimum() + '-' + v2.__get__maximum() + '.');
						this.dispatchEvent(new com.newgrounds.APIEvent(com.newgrounds.APIEvent.VOTE_COMPLETE, {}, com.newgrounds.APIEvent.ERROR_INVALID_ARGUMENT));
						return undefined;
					}
					com.newgrounds.Logger.logMessage('Voting ' + vote + ' for ' + ratingName + ' on ' + this._name + '...');
					(this._group.__get__connection()).sendSimpleCommand('rateSaveFile', {'target': this, 'func': this.onVoteComplete}, null, {'group': this._group.__get__id(), 'save_id': this._id, 'rating_id': v2.__get__id(), 'vote': vote});
				};
				v2.onVoteComplete = function (event) {
					var v2 = event.__get__error();
					if ((event.__get__data()).already_voted) {
						com.newgrounds.Logger.logError('Vote failed. You\'ve already voted on this rating today.');
						v2 = com.newgrounds.APIEvent.ERROR_ALREADY_VOTED;
					}
					if (v2 == com.newgrounds.APIEvent.ERROR_NONE) {
						var v3 = this._group.getRatingById((event.__get__data()).rating_id);
						if (v3) {
							this._ratings[v3.__get__name()] = v3.validateValue((event.__get__data()).score);
						}
						com.newgrounds.Logger.logMessage('Vote complete!');
					}
					this.dispatchEvent(new com.newgrounds.APIEvent(com.newgrounds.APIEvent.VOTE_COMPLETE, this, v2));
				};
				v2.onFileDeleted = function (event) {
					if (event.__get__success()) {
						this._id = 0;
					}
					this.dispatchEvent(new com.newgrounds.APIEvent(com.newgrounds.APIEvent.FILE_DELETED, this, event.__get__error()));
				};
				v2.clone = function () {
					var v3 = new com.newgrounds.SaveFile(this._group);
					v3._data = this._data;
					v3._description = this._description;
					v3._draft = this._draft;
					v3._fileSize = this._fileSize;
					v3._iconLoader.__set__bitmapData(this._iconLoader.bitmapData);
					var v2;
					for (v2 in this._keys) {
						v3._keys[v2] = this._keys[v2];
					}
					for (v2 in this._ratings) {
						v3._ratings[v2] = this._ratings[v2];
					}
					for (v2 in this._numVotes) {
						v3._numVotes[v2] = this._numVotes[v2];
					}
					v3._name = this._name;
					return v3;
				};
				v1.ICON_WIDTH = 90;
				v1.ICON_HEIGHT = 90;
				v1.DEFAULT_ICON = new flash.display.BitmapData(com.newgrounds.SaveFile.ICON_WIDTH, com.newgrounds.SaveFile.ICON_HEIGHT, false, 0);
				v1.STATUS_PRIVATE = 0;
				v1.STATUS_SHARED = 1;
				v1.STATUS_UNAPPROVED = 2;
				v1.STATUS_APPROVED = 3;
				v1._imageFilePath = '';
				v1._saveFilePath = '';
				v1.ICON_IMAGE_SCANNER = new com.newgrounds.encoders.ImageScanner();
				v1.DATA_IMAGE_SCANNER = new com.newgrounds.encoders.ImageScanner(64, 6);
				v2.addProperty('authorId', v2.__get__authorId, function () {});
				v2.addProperty('authorName', v2.__get__authorName, function () {});
				v2.addProperty('bytesLoaded', v2.__get__bytesLoaded, function () {});
				v2.addProperty('bytesTotal', v2.__get__bytesTotal, function () {});
				v2.addProperty('createdDate', v2.__get__createdDate, function () {});
				v1.addProperty('currentFile', v1.__get__currentFile, function () {});
				v2.addProperty('data', v2.__get__data, v2.__set__data);
				v2.addProperty('description', v2.__get__description, v2.__set__description);
				v2.addProperty('draft', v2.__get__draft, v2.__set__draft);
				v2.addProperty('group', v2.__get__group, function () {});
				v2.addProperty('icon', v2.__get__icon, v2.__set__icon);
				v2.addProperty('iconLoaded', v2.__get__iconLoaded, function () {});
				v2.addProperty('id', v2.__get__id, function () {});
				v2.addProperty('keys', v2.__get__keys, function () {});
				v2.addProperty('name', v2.__get__name, v2.__set__name);
				v2.addProperty('numVotes', v2.__get__numVotes, function () {});
				v2.addProperty('ratings', v2.__get__ratings, function () {});
				v2.addProperty('readOnly', v2.__get__readOnly, function () {});
				v2.addProperty('updatedDate', v2.__get__updatedDate, function () {});
				v2.addProperty('views', v2.__get__views, function () {});
				ASSetPropFlags(com.newgrounds.SaveFile.prototype, null, 1);
			}
		#endinitclip
	}
	movieClip 62 __Packages.com.newgrounds.SaveGroup {
		#initclip
			if (!_global.com) {
				_global.com = new Object();
			}
			if (!_global.com.newgrounds) {
				_global.com.newgrounds = new Object();
			}
			if (!_global.com.newgrounds.SaveGroup) {
				var v1 = function (connection, name, id, type, keys, ratings) {
					this._connection = connection;
					this._id = id;
					this._name = name;
					this._type = type;
					this._keysArray = keys;
					this._ratingsArray = ratings;
					this._keys = new Object();
					this._ratings = new Object();
					var v11;
					for (var v7 in keys) {
						var v2 = keys[v7];
						this._keys[v2.__get__name()] = v2;
					}
					for (var v6 in ratings) {
						var v3 = ratings[v6];
						this._ratings[v3.__get__name()] = v3;
					}
				};
				com.newgrounds.SaveGroup = v1;
				var v2 = v1.prototype;
				v2.__get__connection = function () {
					return this._connection;
				};
				v2.__get__name = function () {
					return this._name;
				};
				v2.__get__type = function () {
					return this._type;
				};
				v2.__get__id = function () {
					return this._id;
				};
				v2.__get__keys = function () {
					return this._keysArray;
				};
				v2.__get__ratings = function () {
					return this._ratingsArray;
				};
				v2.getKey = function (name) {
					return this._keys[name];
				};
				v2.getRating = function (name) {
					return this._ratings[name];
				};
				v2.getKeyById = function (id) {
					for (var v4 in this._keys) {
						var v2 = this._keys[v4];
						if (v2.__get__id() == id) {
														return v2;
						}
					}
					return null;
				};
				v2.getRatingById = function (id) {
					for (var v4 in this._ratings) {
						var v2 = this._ratings[v4];
						if (v2.__get__id() == id) {
														return v2;
						}
					}
					return null;
				};
				v2.toString = function () {
					return 'SaveGroup: ' + this.__get__name() + '	Keys: ' + this._keysArray + '	Ratings: ' + this._ratingsArray;
				};
				v1.TYPE_SYSTEM = 0;
				v1.TYPE_PRIVATE = 1;
				v1.TYPE_PUBLIC = 2;
				v1.TYPE_MODERATED = 3;
				v2.addProperty('connection', v2.__get__connection, function () {});
				v2.addProperty('id', v2.__get__id, function () {});
				v2.addProperty('keys', v2.__get__keys, function () {});
				v2.addProperty('name', v2.__get__name, function () {});
				v2.addProperty('ratings', v2.__get__ratings, function () {});
				v2.addProperty('type', v2.__get__type, function () {});
				ASSetPropFlags(com.newgrounds.SaveGroup.prototype, null, 1);
			}
		#endinitclip
	}
	movieClip 60 __Packages.com.newgrounds.SaveKey {
		#initclip
			if (!_global.com) {
				_global.com = new Object();
			}
			if (!_global.com.newgrounds) {
				_global.com.newgrounds = new Object();
			}
			if (!_global.com.newgrounds.SaveKey) {
				var v1 = function (name, id, type) {
					this._name = name;
					this._id = id;
					this._type = type;
				};
				com.newgrounds.SaveKey = v1;
				var v2 = v1.prototype;
				v2.__get__name = function () {
					return this._name;
				};
				v2.__get__id = function () {
					return this._id;
				};
				v2.__get__type = function () {
					return this._type;
				};
				v2.validateValue = function (value) {
					switch (this._type) {
							return null;
						case com.newgrounds.SaveKey.TYPE_INTEGER:
							value = Number(value);
							if (!isNaN(value)) {
								var v3 = int(value);
								if (v3 != value) {
									com.newgrounds.Logger.logWarning('Float value ' + value + ' given for integer key "' + this._name + '". Clamping to ' + v3 + '.');
								}
								return v3;
							}
							return null;
						case com.newgrounds.SaveKey.TYPE_FLOAT:
							value = Number(value);
							if (!isNaN(value)) {
								return isNaN(Number(value));
							}
							return null;
						case com.newgrounds.SaveKey.TYPE_BOOLEAN:
							return Boolean(value) && int(value) != 0;
							return null;
						case com.newgrounds.SaveKey.TYPE_STRING:
							return value ? value.toString() : '';
							return null;
					}
					return null;
				};
				v2.toString = function () {
					return this._name;
				};
				v1.TYPE_FLOAT = 1;
				v1.TYPE_INTEGER = 2;
				v1.TYPE_STRING = 3;
				v1.TYPE_BOOLEAN = 4;
				v2.addProperty('id', v2.__get__id, function () {});
				v2.addProperty('name', v2.__get__name, function () {});
				v2.addProperty('type', v2.__get__type, function () {});
				ASSetPropFlags(com.newgrounds.SaveKey.prototype, null, 1);
			}
		#endinitclip
	}
	movieClip 61 __Packages.com.newgrounds.SaveRating {
		#initclip
			if (!_global.com) {
				_global.com = new Object();
			}
			if (!_global.com.newgrounds) {
				_global.com.newgrounds = new Object();
			}
			if (!_global.com.newgrounds.SaveRating) {
				var v1 = function (name, id, isFloat, minimum, maximum) {
					this._name = name;
					this._id = id;
					this._isFloat = isFloat;
					this._minimum = minimum;
					this._maximum = maximum;
				};
				com.newgrounds.SaveRating = v1;
				var v2 = v1.prototype;
				v2.__get__name = function () {
					return this._name;
				};
				v2.__get__id = function () {
					return this._id;
				};
				v2.__get__isFloat = function () {
					return this._isFloat;
				};
				v2.__get__minimum = function () {
					return this._minimum;
				};
				v2.__get__maximum = function () {
					return this._maximum;
				};
				v2.validateValue = function (value) {
					var v2 = Number(value);
					if (isNaN(v2)) {
						com.newgrounds.Logger.logError('Invalid value for rating "' + this._name + '".');
						return NaN;
					}
					if (v2 < this._minimum) {
						com.newgrounds.Logger.logWarning(v2 + ' is out of acceptable range for rating "' + this._name + '". Clamping to ' + this._minimum + '.');
						return this._minimum;
					}
					if (v2 > this._maximum) {
						com.newgrounds.Logger.logWarning(v2 + ' is out of acceptable range for rating "' + this._name + '". Clamping to ' + this._maximum + '.');
						return this._maximum;
					}
					if (!this.__get__isFloat()) {
						var v3 = int(v2);
						if (v3 != v2) {
							com.newgrounds.Logger.logWarning('Float value ' + v2 + ' given for integer rating "' + this._name + '". Clamping to ' + v3 + '.');
						}
						return v3;
					}
					return v2;
				};
				v2.toString = function () {
					return this._name;
				};
				v2.addProperty('id', v2.__get__id, function () {});
				v2.addProperty('isFloat', v2.__get__isFloat, function () {});
				v2.addProperty('maximum', v2.__get__maximum, function () {});
				v2.addProperty('minimum', v2.__get__minimum, function () {});
				v2.addProperty('name', v2.__get__name, function () {});
				ASSetPropFlags(com.newgrounds.SaveRating.prototype, null, 1);
			}
		#endinitclip
	}
	movieClip 56 __Packages.com.newgrounds.BitmapLoader {
		#initclip
			if (!_global.com) {
				_global.com = new Object();
			}
			if (!_global.com.newgrounds) {
				_global.com.newgrounds = new Object();
			}
			if (!_global.com.newgrounds.BitmapLoader) {
				var v1 = function (defaultBitmap, url) {
					super();
					this._bitmapData = defaultBitmap;
					this._url = url;
				};
				com.newgrounds.BitmapLoader = v1;
				com.newgrounds.BitmapLoader extends com.newgrounds.APIEventDispatcher;
				var v2 = v1.prototype;
				v2.__get__url = function () {
					return this._url;
				};
				v2.__set__url = function (v) {
					this._loaded = false;
					this._url = v;
					return this.__get__url();
				};
				v2.__get__bitmapData = function () {
					return this._bitmapData;
				};
				v2.__set__bitmapData = function (v) {
					this._bitmapData = v;
					this._loaded = true;
					return this.__get__bitmapData();
				};
				v2.__get__loaded = function () {
					return this._loaded;
				};
				v2.disposeLoader = function () {
					if (this._loader) {
						if (this._loaderClip._parent == _root) {
							this._loader.unloadClip(this._loaderClip.bitmap);
							this._loaderClip.removeMovieClip();
						}
						this._loader = null;
						this._loaderClip = null;
					}
				};
				v2.load = function () {
					if (!this._url || this._url == '') {
						this.onLoadComplete();
						return undefined;
					}
					this._loaded = false;
					if (this._bitmapData) {
						this._bitmapData.dispose();
						this._bitmapData = null;
					}
					this.disposeLoader();
					this.attachBitmap(null);
				};
				v2.attachBitmap = function (parent) {
					if (!parent) {
						parent = _root;
					}
					var v5 = parent.getNextHighestDepth();
					var v3 = parent.createEmptyMovieClip('__bitmap' + v5, v5);
					if (!this._loaded && this._url && this._url != '') {
						v3.createEmptyMovieClip('bitmap', 0);
						this._loader = new MovieClipLoader();
						this._loaderClip = v3;
						if (parent == _root) {
							this._loaderClip._visible = false;
						}
						var thisObj = this;
						this._loaderClip.onEnterFrame = function () {
							thisObj.pollLoad();
						};
						this._loader.addListener({'onLoadError': function () {
							thisObj.onLoadComplete();
						}});
						this._loader.loadClip(this._url, v3.bitmap);
						return v3;
					}
					v3.attachBitmap(this._bitmapData, 0);
					return v3;
				};
				v2.pollLoad = function () {
					if (this._loaderClip._width) {
						this.onLoadComplete();
					}
				};
				v2.onLoadComplete = function () {
					var v2;
					if (this._loader && this._loaderClip && this._loaderClip._width) {
						try {
							this._loaderClip.onEnterFrame = null;
							v2 = new flash.display.BitmapData(this._loaderClip._width, this._loaderClip._height, true, 0);
							v2.draw(this._loaderClip);
							this._bitmapData = v2;
							this._loaded = true;
						}
						catch (error) {
							if (v2) {
								v2.dispose();
							}
						}
					}
					this.disposeLoader();
					this.dispatchEvent(new com.newgrounds.APIEvent(com.newgrounds.APIEvent.ICON_LOADED, this, this._loaded ? null : com.newgrounds.APIEvent.ERROR_BAD_FILE));
				};
				v1._cacheSeed = 0;
				v2._loaded = true;
				v2.addProperty('bitmapData', v2.__get__bitmapData, v2.__set__bitmapData);
				v2.addProperty('loaded', v2.__get__loaded, function () {});
				v2.addProperty('url', v2.__get__url, v2.__set__url);
				ASSetPropFlags(com.newgrounds.BitmapLoader.prototype, null, 1);
			}
		#endinitclip
	}
	movieClip 65 __Packages.com.newgrounds.SaveQuery {
		#initclip
			if (!_global.com) {
				_global.com = new Object();
			}
			if (!_global.com.newgrounds) {
				_global.com.newgrounds = new Object();
			}
			if (!_global.com.newgrounds.SaveQuery) {
				var v1 = function (group) {
					super();
					this._group = group;
					this._connection = group.connection;
					this.reset();
				};
				com.newgrounds.SaveQuery = v1;
				com.newgrounds.SaveQuery extends com.newgrounds.APIEventDispatcher;
				var v2 = v1.prototype;
				v2.__get__group = function () {
					return this._group;
				};
				v2.__get__resultsPerPage = function () {
					return this._resultsPerPage;
				};
				v2.__set__resultsPerPage = function (val) {
					this._resultsPerPage = Math.min(Math.max(val, 1), 100);
					return this.__get__resultsPerPage();
				};
				v2.__get__page = function () {
					return this._page;
				};
				v2.__set__page = function (val) {
					this._page = Math.max(val, 1);
					return this.__get__page();
				};
				v2.prevPage = function () {
					this.__set__page(this.__get__page() - 1);
				};
				v2.nextPage = function () {
					this.__set__page(this.__get__page() + 1);
				};
				v2.__get__isRandomized = function () {
					return this._isRandomized;
				};
				v2.__set__isRandomized = function (val) {
					this._isRandomized = val;
					return this.__get__isRandomized();
				};
				v2.__get__files = function () {
					return this._files;
				};
				v2.reset = function () {
					this._page = 1;
					this._resultsPerPage = 10;
					this._isRandomized = false;
					this._lookupKeys = [];
					this._lookupRatings = [];
					this._fileConditions = [];
					this._keyConditions = [];
					this._ratingConditions = [];
					this._sortFields = [];
					this._files = [];
					this.includeAllFields();
				};
				v2.clone = function () {
					var v2 = new com.newgrounds.SaveQuery(this._group);
					v2._page = this._page;
					v2._resultsPerPage = this._resultsPerPage;
					v2._isRandomized = this._isRandomized;
					v2._lookupKeys = this._lookupKeys.concat();
					v2._lookupRatings = this._lookupRatings.concat();
					v2._fileConditions = this._fileConditions.concat();
					v2._keyConditions = this._keyConditions.concat();
					v2._ratingConditions = this._ratingConditions.concat();
					return v2;
				};
				v2.includeAllFields = function () {
					for (var v5 in this._group.__get__keys()) {
						var v2 = (this._group.__get__keys())[v5];
						this._lookupKeys.push(v2.__get__id());
					}
					for (var v4 in this._group.__get__ratings()) {
						var v3 = (this._group.__get__ratings())[v4];
						this._lookupRatings.push(v3.__get__id());
					}
				};
				v2.addCondition = function (field, operator, value) {
					var v2;
					v2 = 0;
					while (v2 < com.newgrounds.SaveQuery.FILE_FIELDS.length) {
						if (com.newgrounds.SaveQuery.FILE_FIELDS[v2] == field) {
							break;
						}
						++v2;
					}
					if (v2 == com.newgrounds.SaveQuery.FILE_FIELDS.length) {
						v2 = -1;
					}
					if (v2 >= 0) {
						this._fileConditions.push({'field': v2, 'operator': operator, 'value': value});
					} else {
						var v4 = this._group.getKey(field);
						if (v4) {
							value = v4.validateValue(value);
							this._keyConditions.push({'key_id': v4.__get__id(), 'operator': operator, 'value': value});
							return undefined;
						}
						var v3 = field.split('.');
						var v6 = this._group.getRating(v3[0]);
						if (v6) {
							if (v3[1] != 'votes') {
								value = v6.validateValue(value);
							}
							this._ratingConditions.push({'rating_id': v6.__get__id(), 'operator': operator, 'value': value, 'column': v3[1] ? v3[1] : 'score'});
							return undefined;
						}
						com.newgrounds.Logger.logError('The save group "' + this._group.__get__name() + '" does not have a field named "' + field + '".');
					}
				};
				v2.sortOn = function (field, sortDescending) {
					if (sortDescending == undefined) {
						sortDescending = false;
					}
					var v2;
					v2 = 0;
					while (v2 < com.newgrounds.SaveQuery.FILE_FIELDS.length) {
						if (com.newgrounds.SaveQuery.FILE_FIELDS[v2] == field) {
							break;
						}
						++v2;
					}
					if (v2 == com.newgrounds.SaveQuery.FILE_FIELDS.length) {
						v2 = -1;
					}
					if (v2 >= 0) {
						this._sortFields.push({'table': com.newgrounds.SaveQuery.TABLE_FILES, 'field': v2, 'desc': sortDescending});
					} else {
						var v5 = this._group.getKey(field);
						if (v5) {
							this._sortFields.push({'table': com.newgrounds.SaveQuery.TABLE_KEYS, 'field': v5.__get__id(), 'desc': sortDescending});
							return undefined;
						}
						var v3 = field.split('.');
						var v6 = this._group.getRating(v3[0]);
						if (v6) {
							this._sortFields.push({'table': com.newgrounds.SaveQuery.TABLE_RATINGS, 'field': v6.__get__id(), 'desc': sortDescending, 'extra': v3[1] ? v3[1] : 'score'});
							return undefined;
						}
						com.newgrounds.Logger.logError('The save group "' + this._group.__get__name() + '" does not have a field named "' + field + '".');
					}
				};
				v2.execute = function () {
					var v5 = {};
					v5.page = this._page;
					v5.num_results = this._resultsPerPage;
					if (this._isRandomized) {
						v5.randomize = 1;
					}
					if (this._lookupKeys && this._lookupKeys.length) {
						v5.lookup_keys = this._lookupKeys;
					}
					if (this._lookupRatings && this._lookupRatings.length) {
						v5.lookup_ratings = this._lookupRatings;
					}
					if (this._fileConditions && this._fileConditions.length) {
						v5.file_conditions = this._fileConditions;
					}
					if (this._keyConditions && this._keyConditions.length) {
						v5.key_conditions = this._keyConditions;
					}
					if (this._ratingConditions && this._ratingConditions.length) {
						v5.rating_conditions = this._ratingConditions;
					}
					if (this._sortFields && this._sortFields.length) {
						v5.sort_conditions = this._sortFields;
					}
					this._connection.sendSimpleCommand('lookupSaveFiles', {'target': this, 'func': this.onQueryComplete}, {'publisher_id': this._connection.publisherId, 'group_id': this._group.__get__id(), 'query': v5});
				};
				v2.onQueryComplete = function (event) {
					if (event.__get__success()) {
						var v4 = event.__get__data();
						this._files = [];
						if (v4.files) {
							var v2 = 0;
							while (v2 < v4.files.length) {
								var v3 = com.newgrounds.SaveFile.fromObject(this._group, v4.files[v2]);
								if (v3) {
									this._files.push(v3);
								}
								++v2;
							}
						}
						this.dispatchEvent(new com.newgrounds.APIEvent(com.newgrounds.APIEvent.QUERY_COMPLETE, this));
					} else {
						com.newgrounds.Logger.logError('Query failed: ' + event.__get__error());
						this.dispatchEvent(new com.newgrounds.APIEvent(com.newgrounds.APIEvent.QUERY_COMPLETE, this, event.__get__error()));
					}
				};
				v1.FILE_ID = 'fileId';
				v1.AUTHOR_ID = 'authorId';
				v1.AUTHOR_NAME = 'authorName';
				v1.FILE_NAME = 'fileName';
				v1.CREATED_ON = 'createdOn';
				v1.UPDATED_ON = 'updatedOn';
				v1.FILE_VIEWS = 'fileViews';
				v1.FILE_STATUS = 'fileStatus';
				v1.FILE_FIELDS = [com.newgrounds.SaveQuery.FILE_ID, com.newgrounds.SaveQuery.AUTHOR_ID, com.newgrounds.SaveQuery.AUTHOR_NAME, com.newgrounds.SaveQuery.FILE_NAME, com.newgrounds.SaveQuery.CREATED_ON, com.newgrounds.SaveQuery.UPDATED_ON, com.newgrounds.SaveQuery.FILE_VIEWS, com.newgrounds.SaveQuery.FILE_STATUS];
				v1.OPERATOR_EQUAL = '=';
				v1.OPERATOR_LESS_THAN = '<';
				v1.OPERATOR_GREATER_THAN = '>';
				v1.OPERATOR_NOT_EQUAL = '!=';
				v1.OPERATOR_LESS_OR_EQUAL = '<=';
				v1.OPERATOR_GREATER_OR_EQUAL = '>=';
				v1.OPERATOR_CONTAINS = '*';
				v1.OPERATOR_NOT_CONTAINS = '!*';
				v1.OPERATOR_NOT_BEGINS_WITH = '!*=';
				v1.OPERATOR_NOT_ENDS_WITH = '!=*';
				v1.OPERATOR_BEGINS_WITH = '*=';
				v1.OPERATOR_ENDS_WITH = '=*';
				v1.TABLE_FILES = 1;
				v1.TABLE_KEYS = 2;
				v1.TABLE_RATINGS = 3;
				v2._page = 1;
				v2._resultsPerPage = 10;
				v2._isRandomized = false;
				v2.addProperty('files', v2.__get__files, function () {});
				v2.addProperty('group', v2.__get__group, function () {});
				v2.addProperty('isRandomized', v2.__get__isRandomized, v2.__set__isRandomized);
				v2.addProperty('page', v2.__get__page, v2.__set__page);
				v2.addProperty('resultsPerPage', v2.__get__resultsPerPage, v2.__set__resultsPerPage);
				ASSetPropFlags(com.newgrounds.SaveQuery.prototype, null, 1);
			}
		#endinitclip
	}
	movieClip 57 __Packages.com.newgrounds.Medal {
		#initclip
			if (!_global.com) {
				_global.com = new Object();
			}
			if (!_global.com.newgrounds) {
				_global.com.newgrounds = new Object();
			}
			if (!_global.com.newgrounds.Medal) {
				var v1 = function (connection, id, name, description, secret, unlocked, value, difficultyId, iconURL) {
					super();
					this._connection = connection;
					this._id = id;
					this._name = name;
					this._description = description;
					this._secret = secret;
					this._unlocked = unlocked;
					this._value = value;
					this._difficulty = com.newgrounds.Medal.DIFFICULTIES[difficultyId];
					this._iconLoader = new com.newgrounds.BitmapLoader(com.newgrounds.Medal.DEFAULT_ICON, iconURL);
					this._iconLoader.load();
				};
				com.newgrounds.Medal = v1;
				com.newgrounds.Medal extends com.newgrounds.APIEventDispatcher;
				var v2 = v1.prototype;
				v2.__get__difficulty = function () {
					return this._difficulty;
				};
				v2.__get__icon = function () {
					return this._iconLoader.__get__bitmapData();
				};
				v2.__get__id = function () {
					return this._id;
				};
				v2.__get__name = function () {
					return this._name;
				};
				v2.__get__description = function () {
					return this._description;
				};
				v2.__get__secret = function () {
					return this._secret;
				};
				v2.__get__unlocked = function () {
					return this._unlocked;
				};
				v2.__get__value = function () {
					return this._value;
				};
				v2.toString = function () {
					if (!this._unlocked) {
						return 'Medal: ' + this._name + '\t\t(' + 'locked, ' + this._value + 'pts, ' + this._difficulty + ')';
					}
					return 'Medal: ' + this._name + '\t\t(' + 'unlocked, ' + this._value + 'pts, ' + this._difficulty + ')';
				};
				v2.attachIcon = function (parent) {
					return this._iconLoader.attachBitmap(parent);
				};
				v2.unlock = function () {
					if (this._unlocked) {
						com.newgrounds.Logger.logWarning('Medal "' + this._name + '" is already unlocked.');
						return undefined;
					}
					com.newgrounds.Logger.logMessage('Unlocking medal "' + this.__get__name() + '"...');
					this._unlocked = true;
					if (this._connection.__get__hasUserSession()) {
						this._connection.sendSimpleCommand('unlockMedal', {'target': this, 'func': this.onUnlockConfirmed}, null, {'medal_id': this.__get__id()});
					}
					this.dispatchEvent(new com.newgrounds.APIEvent(com.newgrounds.APIEvent.MEDAL_UNLOCKED, this));
				};
				v2.setUnlocked = function (unlocked) {
					this._unlocked = unlocked;
				};
				v2.onUnlockConfirmed = function (event) {
					if (event.__get__success()) {
						com.newgrounds.Logger.logMessage('Medal "' + this.__get__name() + '" unlocked.');
					} else {
						com.newgrounds.Logger.logError('Failed to unlock "' + this.__get__name() + '"!');
					}
					this.dispatchEvent(new com.newgrounds.APIEvent(com.newgrounds.APIEvent.MEDAL_UNLOCK_CONFIRMED, this, event.__get__error()));
				};
				v1.ICON_WIDTH = 50;
				v1.ICON_HEIGHT = 50;
				v1.DEFAULT_ICON = flash.display.BitmapData.loadBitmap('DefaultMedalIcon');
				v1.DIFFICULTY_EASY = 'Easy';
				v1.DIFFICULTY_MODERATE = 'Moderate';
				v1.DIFFICULTY_CHALLENGING = 'Challenging';
				v1.DIFFICULTY_DIFFICULT = 'Difficult';
				v1.DIFFICULTY_BRUTAL = 'Brutal';
				v1.DIFFICULTIES = ['Unknown', com.newgrounds.Medal.DIFFICULTY_EASY, com.newgrounds.Medal.DIFFICULTY_MODERATE, com.newgrounds.Medal.DIFFICULTY_CHALLENGING, com.newgrounds.Medal.DIFFICULTY_DIFFICULT, com.newgrounds.Medal.DIFFICULTY_BRUTAL];
				v2.addProperty('description', v2.__get__description, function () {});
				v2.addProperty('difficulty', v2.__get__difficulty, function () {});
				v2.addProperty('icon', v2.__get__icon, function () {});
				v2.addProperty('id', v2.__get__id, function () {});
				v2.addProperty('name', v2.__get__name, function () {});
				v2.addProperty('secret', v2.__get__secret, function () {});
				v2.addProperty('unlocked', v2.__get__unlocked, function () {});
				v2.addProperty('value', v2.__get__value, function () {});
				ASSetPropFlags(com.newgrounds.Medal.prototype, null, 1);
			}
		#endinitclip
	}
	movieClip 59 __Packages.com.newgrounds.ScoreBoard {
		#initclip
			if (!_global.com) {
				_global.com = new Object();
			}
			if (!_global.com.newgrounds) {
				_global.com.newgrounds = new Object();
			}
			if (!_global.com.newgrounds.ScoreBoard) {
				var v1 = function (connection, name, id) {
					super();
					this._connection = connection;
					this._name = name;
					this._id = id;
				};
				com.newgrounds.ScoreBoard = v1;
				com.newgrounds.ScoreBoard extends com.newgrounds.APIEventDispatcher;
				var v2 = v1.prototype;
				v2.__get__name = function () {
					return this._name;
				};
				v2.__get__scores = function () {
					return this._scores;
				};
				v2.__get__period = function () {
					return this._period;
				};
				v2.__set__period = function (val) {
					this._period = val;
					return this.__get__period();
				};
				v2.__get__firstResult = function () {
					return this._firstResult;
				};
				v2.__set__firstResult = function (val) {
					this._firstResult = Math.max(1, val);
					return this.__get__firstResult();
				};
				v2.__get__numResults = function () {
					return this._numResults;
				};
				v2.__set__numResults = function (val) {
					this._numResults = val;
					return this.__get__numResults();
				};
				v2.__get__tag = function () {
					return this._tag;
				};
				v2.__set__tag = function (val) {
					this._tag = val;
					return this.__get__tag();
				};
				v2.__get__page = function () {
					return Math.ceil((this._firstResult - 1) / this._numResults) + 1;
				};
				v2.prevPage = function () {
					if (this.__get__firstResult() > this._numResults) {
						this.firstResult -= this._numResults;
					}
				};
				v2.nextPage = function () {
					this.firstResult += this._numResults;
				};
				v2.loadScores = function () {
					this._connection.sendSimpleCommand('loadScores', {'target': this, 'func': this.onScoresLoaded}, {'publisher_id': this._connection.publisherId, 'board': this._id, 'page': (this._firstResult - 1) / this._numResults + 1, 'num_results': this._numResults, 'period': this._period, 'tag': this._tag});
				};
				v2.postScore = function (numericScore, tag) {
					if (tag == undefined) {
						tag = null;
					}
					if (isNaN(numericScore)) {
						com.newgrounds.Logger.logError('Cannot post invalid score: ' + numericScore);
						this.dispatchEvent(new com.newgrounds.APIEvent(com.newgrounds.APIEvent.SCORE_POSTED, null, com.newgrounds.APIEvent.ERROR_INVALID_ARGUMENT));
						return undefined;
					}
					com.newgrounds.Logger.logMessage('Posting a score of ' + numericScore + ' by ' + this._connection.username + ' to scoreboard "' + this._name + '"...');
					this._connection.sendSimpleCommand('postScore', {'target': this, 'func': this.onScorePosted}, null, {'user_name': this._connection.username, 'board': this._id, 'value': numericScore, 'tag': tag});
				};
				v2.onScoresLoaded = function (event) {
					var v4 = event.__get__data();
					this._scores = [];
					var v5;
					if (v4.first_result) {
						v5 = v4.first_result;
					} else {
						v5 = this._firstResult;
					}
					if (v4.scores) {
						var v3 = 0;
						while (v3 < v4.scores.length) {
							var v2 = v4.scores[v3];
							if (v2) {
								this._scores[v3] = new com.newgrounds.Score(v5, v2.username, v2.value, v2.numeric_value, v2.tag);
							}
							v3++;
							v5++;
						}
					}
					this.dispatchEvent(new com.newgrounds.APIEvent(com.newgrounds.APIEvent.SCORES_LOADED, this));
				};
				v2.onScorePosted = function (event) {
					if (event.__get__success()) {
						com.newgrounds.Logger.logMessage('Score posted!');
						var v4 = event.__get__data();
						var v2 = {};
						v2.score = v4.value;
						v2.scoreBoard = this;
					} else {
						com.newgrounds.Logger.logError('Error posting score: ' + event.__get__error());
					}
					this.dispatchEvent(new com.newgrounds.APIEvent(com.newgrounds.APIEvent.SCORE_POSTED, storedv2, event.__get__error()));
				};
				v2.toString = function () {
					return 'Scoreboard: ' + this._name;
				};
				v1.TODAY = 'Today';
				v1.THIS_WEEK = 'This Week';
				v1.THIS_MONTH = 'This Month';
				v1.THIS_YEAR = 'This Year';
				v1.ALL_TIME = 'All-Time';
				v2._period = com.newgrounds.ScoreBoard.ALL_TIME;
				v2._firstResult = 1;
				v2._numResults = 10;
				v2.addProperty('firstResult', v2.__get__firstResult, v2.__set__firstResult);
				v2.addProperty('name', v2.__get__name, function () {});
				v2.addProperty('numResults', v2.__get__numResults, v2.__set__numResults);
				v2.addProperty('page', v2.__get__page, function () {});
				v2.addProperty('period', v2.__get__period, v2.__set__period);
				v2.addProperty('scores', v2.__get__scores, function () {});
				v2.addProperty('tag', v2.__get__tag, v2.__set__tag);
				ASSetPropFlags(com.newgrounds.ScoreBoard.prototype, null, 1);
			}
		#endinitclip
	}
	movieClip 48 __Packages.com.newgrounds.Logger {
		#initclip
			if (!_global.com) {
				_global.com = new Object();
			}
			if (!_global.com.newgrounds) {
				_global.com.newgrounds = new Object();
			}
			if (!_global.com.newgrounds.Logger) {
				var v1 = function () {};
				com.newgrounds.Logger = v1;
				var v2 = v1.prototype;
				v1.logInternal = function () {
					var v2 = arguments;
					com.newgrounds.Logger.log(com.newgrounds.Logger.PRIORITY_INTERNAL, v2);
				};
				v1.logMessage = function () {
					var v2 = arguments;
					com.newgrounds.Logger.log(com.newgrounds.Logger.PRIORITY_MESSAGE, v2);
				};
				v1.logWarning = function () {
					var v2 = arguments;
					com.newgrounds.Logger.log(com.newgrounds.Logger.PRIORITY_WARNING, v2);
				};
				v1.logError = function () {
					var v2 = arguments;
					com.newgrounds.Logger.log(com.newgrounds.Logger.PRIORITY_ERROR, v2);
				};
				v1.log = function (priority, messages) {
					if (priority == undefined) {
						priority = com.newgrounds.Logger.PRIORITY_MESSAGE;
					}
					if (messages == undefined) {
						messages = null;
					}
					if (priority >= com.newgrounds.Logger._messageLevel) {
						var v1 = 0;
						while (v1 < messages.length) {
							trace(com.newgrounds.Logger.HEADER + messages[v1]);
							com.newgrounds.Logger._eventDispatcher.dispatchEvent(new com.newgrounds.APIEvent(com.newgrounds.APIEvent.LOG, messages[v1]));
							++v1;
						}
					}
					if (priority >= com.newgrounds.Logger._throwLevel) {
						throw new Error(messages.join('\n'));
					}
				};
				v1.addEventListener = function (event, listener) {
					com.newgrounds.Logger._eventDispatcher.addEventListener(event, listener, false, 0, false);
				};
				v1.PRIORITY_INTERNAL = 0;
				v1.PRIORITY_MESSAGE = 1;
				v1.PRIORITY_WARNING = 2;
				v1.PRIORITY_ERROR = 3;
				v1.PRIORITY_MAX = 4;
				v1.HEADER = '[Newgrounds API] :: ';
				v1._eventDispatcher = new com.newgrounds.EventDispatcher();
				v1._messageLevel = com.newgrounds.Logger.PRIORITY_MESSAGE;
				v1._throwLevel = com.newgrounds.Logger.PRIORITY_MAX;
				ASSetPropFlags(com.newgrounds.Logger.prototype, null, 1);
			}
		#endinitclip
	}
	movieClip 4635 __Packages.com.robertpataki.heartcode.BitmapTiler {
		#initclip
			if (!_global.com) {
				_global.com = new Object();
			}
			if (!_global.com.robertpataki) {
				_global.com.robertpataki = new Object();
			}
			if (!_global.com.robertpataki.heartcode) {
				_global.com.robertpataki.heartcode = new Object();
			}
			if (!_global.com.robertpataki.heartcode.BitmapTiler) {
				var v1 = function (parent, name, linkageID, width, height) {
					super();
					this._parent = (MovieClip(parent) != undefined) ? MovieClip(parent) : com.robertpataki.heartcode.BitmapTiler.defaultParent;
					this._name = (name != undefined && name != '') ? name : com.robertpataki.heartcode.BitmapTiler.defaultName;
					this.imagePattern = (linkageID != undefined && linkageID != '') ? linkageID : com.robertpataki.heartcode.BitmapTiler.defaultLinkageID;
					this.imageWidth = (width != undefined && width > 0) ? width : com.robertpataki.heartcode.BitmapTiler.defaultWidth;
					this.imageHeight = (height != undefined && height > 0) ? height : com.robertpataki.heartcode.BitmapTiler.defaultHeight;
					this.imageClip = this._parent.createEmptyMovieClip(this._name, this._parent.getNextHighestDepth());
					this.draw();
				};
				com.robertpataki.heartcode.BitmapTiler = v1;
				com.robertpataki.heartcode.BitmapTiler extends MovieClip;
				var v2 = v1.prototype;
				v2.draw = function () {
					var v6;
					if (this.imagePattern != com.robertpataki.heartcode.BitmapTiler.defaultLinkageID) {
						v6 = flash.display.BitmapData.loadBitmap(this.imagePattern);
					} else {
						v6 = new flash.display.BitmapData(10, 10, false, 16711680);
						v6.fillRect(new flash.geom.Rectangle(4, 4, 2, 2), 0);
					}
					var v4 = v6.width;
					var v3 = v6.height;
					var v9 = Math.ceil(this.imageWidth / v4);
					var v8 = Math.ceil(this.imageHeight / v3);
					var v7 = new flash.display.BitmapData(this.imageWidth, this.imageHeight, false, 4278190080.0);
					var v5 = 0;
					while (v5 < v9) {
						var v2 = 0;
						while (v2 < v8) {
							v7.copyPixels(v6, new flash.geom.Rectangle(0, 0, v4, v3), new flash.geom.Point(v5 * v4, v2 * v3));
							++v2;
						}
						++v5;
					}
					this.imageClip.attachBitmap(v7, this.imageClip.getNextHighestDepth());
					if (this.imagePattern == com.robertpataki.heartcode.BitmapTiler.defaultLinkageID) {
						this.imageClip._x = Math.round(Stage.width / 2 - this.imageClip._width / 2);
						this.imageClip._y = Math.round(Stage.height / 2 - this.imageClip._height / 2);
						trace('\n\tMessage from BitmapTiler :\n\t | Some of the parameters are missing!\n\t | An auto-generated pattern has been added to the _root object.\n\t | See the documentation for more details and examples.\n\tEnd of line.');
					}
				};
				v1.defaultParent = _root;
				v1.defaultName = 'patternImage_mc';
				v1.defaultLinkageID = 'noID';
				v1.defaultWidth = 200;
				v1.defaultHeight = 200;
				ASSetPropFlags(com.robertpataki.heartcode.BitmapTiler.prototype, null, 1);
			}
		#endinitclip
	}
	movieClip 67 __Packages.com.newgrounds.components.FlashAdBase {
		#initclip
			if (!_global.com) {
				_global.com = new Object();
			}
			if (!_global.com.newgrounds) {
				_global.com.newgrounds = new Object();
			}
			if (!_global.com.newgrounds.components) {
				_global.com.newgrounds.components = new Object();
			}
			if (!_global.com.newgrounds.components.FlashAdBase) {
				var v1 = function () {
					super();
					try {
						System.security.allowDomain('server.cpmstar.com');
						System.security.allowInsecureDomain('server.cpmstar.com');
					}
					this.gotoAndStop('idle');
					this._x = int(this._x);
					this._y = int(this._y);
					this.stop();
					if (this.__get___newgroundsButton()) {
						(this.__get___newgroundsButton()).onRelease = this.onNGClick;
					}
					this.onUnload = this.removeAd;
					var v4 = this;
					this._adListener = {'onLoadError': function (target, error, httpStatus) {
						target._parent.onAdError(target, error, httpStatus);
					}};
					if (this.__get__fullScreen()) {
						this.drawFullScreenRect();
					}
					if (com.newgrounds.API.__get__adFeedURL()) {
						this.loadAdFeed();
					} else {
						com.newgrounds.API.addEventListener(com.newgrounds.APIEvent.API_CONNECTED, {'target': this, 'func': this.loadAdFeed});
					}
				};
				com.newgrounds.components.FlashAdBase = v1;
				com.newgrounds.components.FlashAdBase extends MovieClip;
				var v2 = v1.prototype;
				v2.__get___adContainer = function () {
					return this.adContainer;
				};
				v2.__get___newgroundsButton = function () {
					return this.newgroundsButton;
				};
				v2.__get__fullScreen = function () {
					return this._fullScreen;
				};
				v2.__set__fullScreen = function (v) {
					this._fullScreen = v;
					if (v) {
						this.drawFullScreenRect();
					} else {
						this.clear();
					}
					return this.__get__fullScreen();
				};
				v2.__get__showBorder = function () {
					return this._showBorder;
				};
				v2.__set__showBorder = function (value) {
					this._showBorder = value;
					if (this._showBorder) {
						if (this._ad) {
							var v2 = this._ad.getProgress(this.__get___adContainer());
							if (v2.bytesLoaded >= v2.bytesTotal) {
								this.gotoAndStop('loaded');
							} else {
								this.gotoAndStop('loading');
							}
						} else {
							this.gotoAndStop('idle');
						}
					} else {
						this.gotoAndStop('noBorder');
					}
					return this.__get__showBorder();
				};
				v2.loadAdFeed = function (event) {
					if (event == undefined) {
						event = null;
					}
					this._adFeedLoader = new LoadVars();
					var target = this;
					this._adFeedLoader.onData = function (data) {
						target.onAdFeedLoaded(data);
					};
					this._adFeedLoader.load(com.newgrounds.API.__get__adFeedURL(), this._adFeedLoader);
				};
				v2.onAdFeedLoaded = function (data) {
					if (data && data != '') {
						this.loadAd(data);
					} else {
						this.onAdError();
					}
				};
				v2.loadAd = function (adURL) {
					if (this.adType != this.VIDEO_ADS) {
						if (adURL.indexOf('?') >= 0) {
							adURL += '&';
						} else {
							adURL += '?';
						}
						adURL += 'blockoverlays=1';
					}
					this._ad = new MovieClipLoader();
					this._ad.addListener(this._adListener);
					(this.__get___adContainer())._lockroot = true;
					this._ad.loadClip(adURL, this.__get___adContainer());
				};
				v2.removeAd = function () {
					this._adFeedLoader.onData = null;
					this._adFeedLoader = null;
					this._ad.removeListener(this._adListener);
					if (this.__get___adContainer()) {
						this._ad.unloadClip(this.__get___adContainer());
					}
					this._ad = null;
				};
				v2.onAdError = function (target, error, httpStatus) {
					com.newgrounds.Logger.logError('Unable to load ad.');
					this.removeAd();
				};
				v2.onNGClick = function () {
					com.newgrounds.API.loadNewgrounds();
				};
				v2.drawFullScreenRect = function () {
					this._x = (Stage.width - this._width) / 2;
					this._y = (Stage.height - this._height) / 2;
					this.beginFill(0);
					this.moveTo(-Stage.width, -Stage.height);
					this.lineTo(Stage.width, -Stage.height);
					this.lineTo(Stage.width, Stage.height);
					this.lineTo(-Stage.width, Stage.height);
					this.lineTo(-Stage.width, -Stage.height);
					this.endFill();
				};
				v2._showBorder = true;
				v2.adType = com.newgrounds.components.FlashAdBase.prototype.VIDEO_ADS;
				v2.VIDEO_ADS = 'Video';
				v2.SIMPLE_ADS = 'Simple';
				v2.addProperty('_adContainer', v2.__get___adContainer, function () {});
				v2.addProperty('_newgroundsButton', v2.__get___newgroundsButton, function () {});
				v2.addProperty('fullScreen', v2.__get__fullScreen, v2.__set__fullScreen);
				v2.addProperty('showBorder', v2.__get__showBorder, v2.__set__showBorder);
				ASSetPropFlags(com.newgrounds.components.FlashAdBase.prototype, null, 1);
			}
		#endinitclip
	}
	movieClip 42 __Packages.com.newgrounds.shims.APIShim {
		#initclip
			if (!_global.com) {
				_global.com = new Object();
			}
			if (!_global.com.newgrounds) {
				_global.com.newgrounds = new Object();
			}
			if (!_global.com.newgrounds.shims) {
				_global.com.newgrounds.shims = new Object();
			}
			if (!_global.com.newgrounds.shims.APIShim) {
				var v1 = function () {
					super();
				};
				com.newgrounds.shims.APIShim = v1;
				com.newgrounds.shims.APIShim extends MovieClip;
				var v2 = v1.prototype;
				ASSetPropFlags(com.newgrounds.shims.APIShim.prototype, null, 1);
			}
		#endinitclip
	}
	movieClip 50 __Packages.com.newgrounds.encoders.json.JSON {
		#initclip
			if (!_global.com) {
				_global.com = new Object();
			}
			if (!_global.com.newgrounds) {
				_global.com.newgrounds = new Object();
			}
			if (!_global.com.newgrounds.encoders) {
				_global.com.newgrounds.encoders = new Object();
			}
			if (!_global.com.newgrounds.encoders.json) {
				_global.com.newgrounds.encoders.json = new Object();
			}
			if (!_global.com.newgrounds.encoders.json.JSON) {
				var v1 = function () {};
				com.newgrounds.encoders.json.JSON = v1;
				var v2 = v1.prototype;
				v1.encode = function (arg, noquotes) {
					var v3;
					var v2;
					var v6;
					var v1 = '';
					var v4;
					if (arg.isSServerVar()) {
						var v8 = 'sservervariable';
					} else {
						var v8 = typeof arg;
					}
					switch (v8) {
							return 'null';
						case 'sservervariable':
							return '?' + arg.getEncodedValue();
							break;
						case 'object':
							if (arg) {
								if (arg instanceof Array) {
									v2 = 0;
									while (v2 < arg.length) {
										v4 = com.newgrounds.encoders.json.JSON.encode(arg[v2]);
										if (v1) {
											v1 += ',';
										}
										v1 += v4;
										++v2;
									}
									return '[' + v1 + ']';
								} else {
									if (typeof arg.toString != 'undefined') {
										for (v2 in arg) {
											v4 = arg[v2];
											if (typeof v4 != 'undefined' && typeof v4 != 'function') {
												v4 = com.newgrounds.encoders.json.JSON.encode(v4);
												if (v1) {
													v1 += ',';
												}
												v1 += com.newgrounds.encoders.json.JSON.encode(v2) + ':' + v4;
											}
										}
										return '{' + v1 + '}';
									}
								}
							}
							return 'null';
						case 'number':
							return isFinite(arg) ? String(arg) : 'null';
						case 'string':
							v6 = arg.length;
							if (noquotes) {
								var v7 = '';
							} else {
								var v7 = '"';
							}
							v1 = v7;
							v2 = 0;
							while (v2 < v6) {
								v3 = arg.charAt(v2);
								if (v3 >= ' ') {
									if (v3 == '\\' || v3 == '"') {
										v1 += '\\';
									}
									v1 += v3;
								} else {
									switch (v3) {
										case '\b':
											v1 += '\\b';
											break;
										case '\f':
											v1 += '\\f';
											break;
										case '\n':
											v1 += '\\n';
											break;
										case '\r':
											v1 += '\\r';
											break;
										case '\t':
											v1 += '\\t';
											break;
										default:
											v3 = v3.charCodeAt();
											v1 += '\\u00' + (Math.floor(v3 / 16)).toString(16) + (v3 % 16).toString(16);
									}
								}
								v2 += 1;
							}
							return v1 + v7;
						case 'boolean':
							return String(arg);
						default:
							return 'null';
					}
				};
				v1.background_encode = function (arg, callback) {
					if (com.newgrounds.encoders.json.JSON.busy) {
						trace('[Newgrounds Encoder] :: Cannot encode a new file until the previous file is completed');
						return false;
					} else {
						if (!callback) {
							trace('[Newgrounds Encoder] :: Missing a callback function, skipping encode');
							return false;
						}
					}
					com.newgrounds.encoders.json.JSON.busy = true;
					var v2 = new Date();
					com.newgrounds.encoders.json.JSON.start = v2.getTime();
					com.newgrounds.encoders.json.JSON.cache = {'busy': false, 'complete': false, 'arg': arg, 'target': arg, 'parents': [], 'encoded': '', 'callback': callback, 'encode_chunk': function () {
						com.newgrounds.encoders.json.JSON.encode_chunk();
					}};
					if (com.newgrounds.encoders.json.JSON.getType(arg) == 'object') {
						com.newgrounds.encoders.json.JSON.cache.encoded = '{';
						com.newgrounds.encoders.json.JSON.interval = setInterval(com.newgrounds.encoders.json.JSON.cache, 'encode_chunk', 25);
						return true;
					}
					if (com.newgrounds.encoders.json.JSON.getType(arg) == 'array') {
						com.newgrounds.encoders.json.JSON.cache.encoded = '[';
					}
					com.newgrounds.encoders.json.JSON.interval = setInterval(com.newgrounds.encoders.json.JSON.cache, 'encode_chunk', 25);
					return true;
				};
				v1.background_decode = function (arg, callback) {
					if (com.newgrounds.encoders.json.JSON.busy) {
						trace('[Newgrounds Encoder] :: Cannot decode a new file until the previous file is completed');
						return false;
					} else {
						if (!callback) {
							trace('[Newgrounds Encoder] :: Missing a callback function, skipping decode');
							return false;
						}
					}
					com.newgrounds.encoders.json.JSON.busy = true;
					var v1 = new Date();
					com.newgrounds.encoders.json.JSON.start = v1.getTime();
					com.newgrounds.encoders.json.JSON.cache = {'busy': false, 'callback': callback, 'complete': false, 'arg': arg, 'pos': 0, 'parents': ['root'], 'target': null, 'scratch': '', 'decode_chunk': function () {
						com.newgrounds.encoders.json.JSON.decode_chunk();
					}};
					com.newgrounds.encoders.json.JSON.interval = setInterval(com.newgrounds.encoders.json.JSON.cache, 'decode_chunk', 25);
					return true;
				};
				v1.decode = function (text) {
					var at = 0;
					var ch = ' ';
					var _value;
					var _error = function (m) {
						throw {'name': 'JSONError', 'message': m, 'at': at - 1, 'text': text};
					};
					var _next = function () {
						ch = text.charAt(at);
						at += 1;
						return ch;
					};
					var _white = function () {
						while (ch) {
							if (ch <= ' ') {
								_next();
							} else {
								if (ch == '/') {
									switch (_next()) {
										case '/':
											for (;;) {
												if (!(_next() && ch != '\n' && ch != '\r')) break;
											}
											break;
										case '*':
											_next();
											for (;;) {
												if (ch) {
													if (ch == '*') {
														if (_next() == '/') {
															_next();
															break;
														}
													} else {
														_next();
													}
													continue;
												}
												_error('Unterminated comment');
											}
											break;
										default:
											_error('Syntax error');
									}
								} else {
									break;
								}
							}
						}
					};
					var _string = function () {
						var v4;
						var v1 = '';
						var v3;
						var v2;
						var v5 = false;
						if (ch == '"') {
							while (_next()) {
								if (ch == '"') {
									_next();
									return v1;
								} else {
									if (ch == '\\') {
										switch (_next()) {
											case 'b':
												v1 += '\b';
												break;
											case 'f':
												v1 += '\f';
												break;
											case 'n':
												v1 += '\n';
												break;
											case 'r':
												v1 += '\r';
												break;
											case 't':
												v1 += '\t';
												break;
											case 'u':
												v2 = 0;
												v4 = 0;
												while (v4 < 4) {
													v3 = parseInt(_next(), 16);
													if (!isFinite(v3)) {
														v5 = true;
														break;
													}
													v2 = v2 * 16 + v3;
													v4 += 1;
												}
												if (v5) {
													v5 = false;
												} else {
													v1 += String.fromCharCode(v2);
													break;
												default:
													v1 += ch;
												}
										}
									} else {
										v1 += ch;
									}
								}
							}
						}
						_error('Bad string');
					};
					var _array = function () {
						var v1 = [];
						if (ch == '[') {
							_next();
							_white();
							if (ch == ']') {
								_next();
								return v1;
							}
							while (ch) {
								v1.push(_value());
								_white();
								if (ch == ']') {
									_next();
									return v1;
								} else {
									if (ch != ',') {
										break;
									}
								}
								_next();
								_white();
							}
						}
						_error('Bad array');
					};
					var _object = function () {
						var v2;
						var v1 = {};
						if (ch == '{') {
							_next();
							_white();
							if (ch == '}') {
								_next();
								return v1;
							}
							while (ch) {
								v2 = _string();
								_white();
								if (ch != ':') {
									break;
								}
								_next();
								v1[v2] = _value();
								_white();
								if (ch == '}') {
									_next();
									return v1;
								} else {
									if (ch != ',') {
										break;
									}
								}
								_next();
								_white();
							}
						}
						_error('Bad object');
					};
					var _number = function () {
						var v1 = '';
						var v2;
						if (ch == '-') {
							v1 = '-';
							_next();
						}
						for (;;) {
							if (!(ch >= '0' && ch <= '9')) break;
							v1 += ch;
							_next();
						}
						if (ch == '.') {
							v1 += '.';
							for (;;) {
								if (!(_next() && ch >= '0' && ch <= '9')) break;
								v1 += ch;
							}
						}
						v2 = 1 * v1;
						if (!isFinite(v2)) {
							_error('Bad number');
						} else {
							return v2;
						}
					};
					var _word = function () {
						switch (ch) {
							case 't':
								if (_next() == 'r' && _next() == 'u' && _next() == 'e') {
									_next();
									return true;
								}
								break;
							case 'f':
								if (_next() == 'a' && _next() == 'l' && _next() == 's' && _next() == 'e') {
									_next();
									return false;
								}
								break;
							case 'n':
								if (_next() == 'u' && _next() == 'l' && _next() == 'l') {
									_next();
									return null;
								}
						}
						_error('Syntax error');
					};
					_value = function () {
						_white();
						switch (ch) {
							case '{':
								return _object();
							case '[':
								return _array();
							case '"':
								return _string();
							case '-':
								return _number();
						}
						return (ch >= '0' && ch <= '9') ? _number() : _word();
					};
					return _value();
				};
				v1.getType = function (v) {
					if (v instanceof Array) {
						return 'array';
					} else {
						return typeof v;
					}
				};
				v1.decode_chunk = function () {
					if (!com.newgrounds.encoders.json.JSON.cache.busy && !com.newgrounds.encoders.json.JSON.cache.complete) {
						com.newgrounds.encoders.json.JSON.cache.busy = true;
						var v1 = 0;
						while (v1 < com.newgrounds.encoders.json.JSON.decode_chunks) {
							com.newgrounds.encoders.json.JSON.chunk_decoder();
							if (com.newgrounds.encoders.json.JSON.cache.complete) {
								break;
							}
							++v1;
						}
						trace(Math.round((com.newgrounds.encoders.json.JSON.cache.pos / com.newgrounds.encoders.json.JSON.cache.arg.length) * 100) + '% decoded');
						com.newgrounds.encoders.json.JSON.cache.busy = false;
					}
					if (com.newgrounds.encoders.json.JSON.cache.complete) {
						var v2 = new Date();
						com.newgrounds.encoders.json.JSON.busy = false;
						clearInterval(com.newgrounds.encoders.json.JSON.interval);
						com.newgrounds.encoders.json.JSON.cache.callback(com.newgrounds.encoders.json.JSON.cache.root, v2.getTime() - com.newgrounds.encoders.json.JSON.start);
						com.newgrounds.encoders.json.JSON.cache.arg = '';
					}
				};
				v1.encode_chunk = function () {
					if (!com.newgrounds.encoders.json.JSON.cache.busy && !com.newgrounds.encoders.json.JSON.cache.complete) {
						com.newgrounds.encoders.json.JSON.cache.busy = true;
						var v1 = 0;
						while (v1 < com.newgrounds.encoders.json.JSON.encode_chunks) {
							com.newgrounds.encoders.json.JSON.chunk_encoder();
							if (com.newgrounds.encoders.json.JSON.cache.complete) {
								break;
							}
							++v1;
						}
						com.newgrounds.encoders.json.JSON.cache.busy = false;
					}
					if (com.newgrounds.encoders.json.JSON.cache.complete) {
						var v3 = new Date();
						var v2 = v3.getTime();
						com.newgrounds.encoders.json.JSON.busy = false;
						clearInterval(com.newgrounds.encoders.json.JSON.interval);
						com.newgrounds.encoders.json.JSON.cache.callback(com.newgrounds.encoders.json.JSON.cache.encoded, v2 - com.newgrounds.encoders.json.JSON.start);
						com.newgrounds.encoders.json.JSON.cache.encoded = '';
					}
				};
				v1.chunk_decoder = function () {
					function _object() {
						var v1 = com.newgrounds.encoders.json.JSON.cache.arg.charAt(com.newgrounds.encoders.json.JSON.cache.pos);
						if (!com.newgrounds.encoders.json.JSON.cache.mode) {
							com.newgrounds.encoders.json.JSON.cache.mode = 'object';
							++com.newgrounds.encoders.json.JSON.cache.pos;
							v1 = com.newgrounds.encoders.json.JSON.cache.arg.charAt(com.newgrounds.encoders.json.JSON.cache.pos);
							if (v1 != '"') {
								throw 'Malformed object key in encoded string. Keys must be wrapped in quotes ("")';
							}
							com.newgrounds.encoders.json.JSON.cache.scratch = '';
							_setTargetValue({});
						} else {
							if (v1 == ',') {
								++com.newgrounds.encoders.json.JSON.cache.pos;
								v1 = com.newgrounds.encoders.json.JSON.cache.arg.charAt(com.newgrounds.encoders.json.JSON.cache.pos);
								if (v1 != '"') {
									throw 'Malformed object key in encoded string. Keys must be wrapped in quotes ("")';
								}
								com.newgrounds.encoders.json.JSON.cache.scratch = '';
							} else {
								if (v1 == '}') {
									_useParent();
								} else {
									if (v1 == '"') {
										++com.newgrounds.encoders.json.JSON.cache.pos;
										v1 = com.newgrounds.encoders.json.JSON.cache.arg.charAt(com.newgrounds.encoders.json.JSON.cache.pos);
										if (v1 != ':') {
											throw 'Malformed object notation. Object keys and values must be separated by colons(:)';
										}
										_addParent(com.newgrounds.encoders.json.JSON.cache.scratch);
										com.newgrounds.encoders.json.JSON.cache.mode = null;
									} else {
										if (v1 == '\\') {
											++com.newgrounds.encoders.json.JSON.cache.pos;
											v1 = com.newgrounds.encoders.json.JSON.cache.arg.charAt(com.newgrounds.encoders.json.JSON.cache.pos);
										}
										com.newgrounds.encoders.json.JSON.cache.scratch += v1;
									}
								}
							}
						}
						++com.newgrounds.encoders.json.JSON.cache.pos;
					}
					function _array() {
						var v1 = com.newgrounds.encoders.json.JSON.cache.arg.charAt(com.newgrounds.encoders.json.JSON.cache.pos);
						if (!com.newgrounds.encoders.json.JSON.cache.mode) {
							com.newgrounds.encoders.json.JSON.cache.mode = 'array';
							++com.newgrounds.encoders.json.JSON.cache.pos;
							v1 = com.newgrounds.encoders.json.JSON.cache.arg.charAt(com.newgrounds.encoders.json.JSON.cache.pos);
							_setTargetValue([]);
							if (v1 != ']') {
								_addArrayKey();
							} else {
								_useParent();
							}
							return undefined;
						} else {
							if (v1 == ',') {
								_addArrayKey();
							} else {
								if (v1 == ']') {
									_useParent();
								}
							}
						}
						++com.newgrounds.encoders.json.JSON.cache.pos;
					}
					function _boolean() {
						var v1 = com.newgrounds.encoders.json.JSON.cache.arg.charAt(com.newgrounds.encoders.json.JSON.cache.pos);
						if (v1 == 't') {
							_setTargetValue(true);
							com.newgrounds.encoders.json.JSON.cache.pos += 3;
						} else {
							if (v1 == 'f') {
								_setTargetValue(false);
								com.newgrounds.encoders.json.JSON.cache.pos += 4;
							} else {
								throw 'Bool values must be true or false';
							}
						}
						_useParent();
					}
					function _null() {
						var v1 = com.newgrounds.encoders.json.JSON.cache.arg.charAt(com.newgrounds.encoders.json.JSON.cache.pos);
						if (v1 == 'n') {
							_setTargetValue(null);
							com.newgrounds.encoders.json.JSON.cache.pos += 2;
						} else {
							throw 'Null values must be null';
						}
						_useParent();
					}
					function _string() {
						var v1 = com.newgrounds.encoders.json.JSON.cache.arg.charAt(com.newgrounds.encoders.json.JSON.cache.pos);
						if (!com.newgrounds.encoders.json.JSON.cache.mode) {
							if (v1 != '"') {
								throw 'Strings must be wrapped in quotes ("")';
							}
							com.newgrounds.encoders.json.JSON.cache.scratch = '';
							com.newgrounds.encoders.json.JSON.cache.mode = 'string';
						} else {
							if (v1 == '"') {
								_setTargetValue(com.newgrounds.encoders.json.JSON.cache.scratch);
								_useParent();
							} else {
								if (v1 == '\\') {
									++com.newgrounds.encoders.json.JSON.cache.pos;
									v1 = com.newgrounds.encoders.json.JSON.cache.arg.charAt(com.newgrounds.encoders.json.JSON.cache.pos);
									switch (v1) {
										case 'n':
											v1 = '\n';
											break;
										case 'r':
											v1 = '\n';
											break;
										case 't':
											v1 = '\t';
											break;
										case 'u':
											v1 = '\\' + v1;
									}
								}
								com.newgrounds.encoders.json.JSON.cache.scratch += v1;
							}
						}
						++com.newgrounds.encoders.json.JSON.cache.pos;
					}
					function _number() {
						var v1 = com.newgrounds.encoders.json.JSON.cache.arg.charAt(com.newgrounds.encoders.json.JSON.cache.pos);
						var v2 = '01234567890.-';
						if (!com.newgrounds.encoders.json.JSON.cache.mode) {
							com.newgrounds.encoders.json.JSON.cache.mode = 'number';
							com.newgrounds.encoders.json.JSON.cache.scratch = '';
						}
						if (v2.indexOf(v1) < 0) {
							_setTargetValue(Number(com.newgrounds.encoders.json.JSON.cache.scratch));
							_useParent();
						} else {
							com.newgrounds.encoders.json.JSON.cache.scratch += v1;
							++com.newgrounds.encoders.json.JSON.cache.pos;
						}
					}
					function _setTargetValue(newval) {
						var v2 = (_getParent()).obj;
						var v1 = com.newgrounds.encoders.json.JSON.cache.parents[com.newgrounds.encoders.json.JSON.cache.parents.length - 1];
						v2[v1] = newval;
					}
					function _useParent() {
						com.newgrounds.encoders.json.JSON.cache.mode = com.newgrounds.encoders.json.JSON.getType((_getParent()).obj);
						com.newgrounds.encoders.json.JSON.cache.parents.pop();
					}
					function _getParent() {
						var v2 = com.newgrounds.encoders.json.JSON.cache;
						var v1 = 0;
						while (v1 < com.newgrounds.encoders.json.JSON.cache.parents.length - 1) {
							v2 = v2[com.newgrounds.encoders.json.JSON.cache.parents[v1]];
							++v1;
						}
						return {'obj': v2, 'name': com.newgrounds.encoders.json.JSON.cache.parents[v1]};
					}
					function _getCurrent() {
						var v2 = com.newgrounds.encoders.json.JSON.cache;
						var v1 = 0;
						while (v1 < com.newgrounds.encoders.json.JSON.cache.parents.length) {
							v2 = v2[com.newgrounds.encoders.json.JSON.cache.parents[v1]];
							++v1;
						}
						return {'obj': v2, 'name': com.newgrounds.encoders.json.JSON.cache.parents[v1]};
					}
					function _addParent(child) {
						com.newgrounds.encoders.json.JSON.cache.parents.push(child);
					}
					function _addArrayKey() {
						var v1 = (_getCurrent()).obj.length;
						com.newgrounds.encoders.json.JSON.cache.parents.push(v1);
						com.newgrounds.encoders.json.JSON.cache.mode = null;
					}
					if (com.newgrounds.encoders.json.JSON.cache.pos >= com.newgrounds.encoders.json.JSON.cache.arg.length) {
						com.newgrounds.encoders.json.JSON.cache.complete = true;
						return undefined;
					} else {
						if (com.newgrounds.encoders.json.JSON.cache.mode) {
							('_' + com.newgrounds.encoders.json.JSON.cache.mode)();
						} else {
							var char = com.newgrounds.encoders.json.JSON.cache.arg.charAt(com.newgrounds.encoders.json.JSON.cache.pos);
							switch (char) {
								case '{':
									_object();
									break;
								case '[':
									_array();
									break;
								case '"':
									_string();
									break;
								case 'n':
									_null();
									break;
								case 't':
									_boolean();
									break;
								case 'f':
									_boolean();
									break;
								default:
									_number();
							}
						}
					}
				};
				v1.chunk_encoder = function () {
					if (com.newgrounds.encoders.json.JSON.cache.complete) {
						return undefined;
					}
					var v2 = com.newgrounds.encoders.json.JSON.getType(com.newgrounds.encoders.json.JSON.cache.target);
					switch (v2) {
						case 'number':
							com.newgrounds.encoders.json.JSON.cache.encoded += com.newgrounds.encoders.json.JSON.cache.target;
							com.newgrounds.encoders.json.JSON.getParent();
							break;
						case 'string':
							com.newgrounds.encoders.json.JSON.cache.encoded += '"' + (com.newgrounds.encoders.json.JSON.cache.target.split('"')).join('\\"') + '"';
							com.newgrounds.encoders.json.JSON.getParent();
							break;
						case 'boolean':
							com.newgrounds.encoders.json.JSON.cache.encoded += (com.newgrounds.encoders.json.JSON.cache.target == true) ? 'true' : 'false';
							com.newgrounds.encoders.json.JSON.getParent();
							break;
						case 'null':
							com.newgrounds.encoders.json.JSON.cache.encoded += 'null';
							com.newgrounds.encoders.json.JSON.getParent();
							break;
						case 'array':
							if (com.newgrounds.encoders.json.JSON.cache.target.length < 1) {
								com.newgrounds.encoders.json.JSON.cache.encoded += ']';
								com.newgrounds.encoders.json.JSON.getParent();
							} else {
								com.newgrounds.encoders.json.JSON.cache.parents.push(com.newgrounds.encoders.json.JSON.cache.target);
								com.newgrounds.encoders.json.JSON.cache.target = com.newgrounds.encoders.json.JSON.cache.target[0];
								if (com.newgrounds.encoders.json.JSON.getType(com.newgrounds.encoders.json.JSON.cache.target) == 'array') {
									com.newgrounds.encoders.json.JSON.cache.encoded += '[';
								} else {
									if (com.newgrounds.encoders.json.JSON.getType(com.newgrounds.encoders.json.JSON.cache.target) == 'object') {
										com.newgrounds.encoders.json.JSON.cache.encoded += '{';
									}
								}
							}
							break;
						case 'object':
							for (var v1 in com.newgrounds.encoders.json.JSON.cache.target) {
								break;
							}
														if (v1 === undefined) {
								com.newgrounds.encoders.json.JSON.cache.encoded += '}';
								com.newgrounds.encoders.json.JSON.getParent();
							} else {
								com.newgrounds.encoders.json.JSON.cache.parents.push(com.newgrounds.encoders.json.JSON.cache.target);
								com.newgrounds.encoders.json.JSON.cache.target = com.newgrounds.encoders.json.JSON.cache.target[v1];
								com.newgrounds.encoders.json.JSON.cache.encoded += '"' + (v1.split('"')).join('\\"') + '":';
								if (com.newgrounds.encoders.json.JSON.getType(com.newgrounds.encoders.json.JSON.cache.target) == 'array') {
									com.newgrounds.encoders.json.JSON.cache.encoded += '[';
								} else {
									if (com.newgrounds.encoders.json.JSON.getType(com.newgrounds.encoders.json.JSON.cache.target) == 'object') {
										com.newgrounds.encoders.json.JSON.cache.encoded += '{';
									}
								}
							}
							break;
						default:
							com.newgrounds.encoders.json.JSON.cache.encoded += 'null';
							com.newgrounds.encoders.json.JSON.getParent();
					}
				};
				v1.getParent = function () {
					if (com.newgrounds.encoders.json.JSON.cache.parents.length > 0) {
						var v1 = com.newgrounds.encoders.json.JSON.cache.parents.pop();
						if (com.newgrounds.encoders.json.JSON.getType(v1) == 'array') {
							v1.shift();
						} else {
							for (var v3 in v1) {
								delete v1[v3];
								break;
							}
													}
						if (com.newgrounds.encoders.json.JSON.getType(v1) == 'object' or com.newgrounds.encoders.json.JSON.getType(v1) == 'array') {
							for (var v2 in v1) {
								break;
							}
														if (v2 !== undefined) {
								com.newgrounds.encoders.json.JSON.cache.encoded += ',';
							}
						}
						com.newgrounds.encoders.json.JSON.cache.target = v1;
					} else {
						com.newgrounds.encoders.json.JSON.cache.complete = true;
					}
				};
				v1.encode_chunks = 20000;
				v1.decode_chunks = 20000;
				v1.busy = false;
				ASSetPropFlags(com.newgrounds.encoders.json.JSON.prototype, null, 1);
			}
		#endinitclip
	}
	movieClip 53 __Packages.com.newgrounds.crypto.MD5 {
		#initclip
			if (!_global.com) {
				_global.com = new Object();
			}
			if (!_global.com.newgrounds) {
				_global.com.newgrounds = new Object();
			}
			if (!_global.com.newgrounds.crypto) {
				_global.com.newgrounds.crypto = new Object();
			}
			if (!_global.com.newgrounds.crypto.MD5) {
				var v1 = function () {};
				com.newgrounds.crypto.MD5 = v1;
				var v2 = v1.prototype;
				v1.hash = function (src) {
					return com.newgrounds.crypto.MD5.hex_md5(src);
				};
				v1.hex_md5 = function (src) {
					return com.newgrounds.crypto.MD5.binl2hex(com.newgrounds.crypto.MD5.core_md5(com.newgrounds.crypto.MD5.str2binl(src), src.length * 8));
				};
				v1.core_md5 = function (x, len) {
					x[len >> 5] |= 128 << len % 32;
					x[(len + 64 >>> 9 << 4) + 14] = len;
					var v4 = 1732584193;
					var v3 = -271733879;
					var v2 = -1732584194;
					var v1 = 271733878;
					var v5 = 0;
					while (v5 < x.length) {
						var v10 = v4;
						var v9 = v3;
						var v8 = v2;
						var v7 = v1;
						v4 = com.newgrounds.crypto.MD5.md5_ff(v4, v3, v2, v1, x[v5 + 0], 7, -680876936);
						v1 = com.newgrounds.crypto.MD5.md5_ff(v1, v4, v3, v2, x[v5 + 1], 12, -389564586);
						v2 = com.newgrounds.crypto.MD5.md5_ff(v2, v1, v4, v3, x[v5 + 2], 17, 606105819);
						v3 = com.newgrounds.crypto.MD5.md5_ff(v3, v2, v1, v4, x[v5 + 3], 22, -1044525330);
						v4 = com.newgrounds.crypto.MD5.md5_ff(v4, v3, v2, v1, x[v5 + 4], 7, -176418897);
						v1 = com.newgrounds.crypto.MD5.md5_ff(v1, v4, v3, v2, x[v5 + 5], 12, 1200080426);
						v2 = com.newgrounds.crypto.MD5.md5_ff(v2, v1, v4, v3, x[v5 + 6], 17, -1473231341);
						v3 = com.newgrounds.crypto.MD5.md5_ff(v3, v2, v1, v4, x[v5 + 7], 22, -45705983);
						v4 = com.newgrounds.crypto.MD5.md5_ff(v4, v3, v2, v1, x[v5 + 8], 7, 1770035416);
						v1 = com.newgrounds.crypto.MD5.md5_ff(v1, v4, v3, v2, x[v5 + 9], 12, -1958414417);
						v2 = com.newgrounds.crypto.MD5.md5_ff(v2, v1, v4, v3, x[v5 + 10], 17, -42063);
						v3 = com.newgrounds.crypto.MD5.md5_ff(v3, v2, v1, v4, x[v5 + 11], 22, -1990404162);
						v4 = com.newgrounds.crypto.MD5.md5_ff(v4, v3, v2, v1, x[v5 + 12], 7, 1804603682);
						v1 = com.newgrounds.crypto.MD5.md5_ff(v1, v4, v3, v2, x[v5 + 13], 12, -40341101);
						v2 = com.newgrounds.crypto.MD5.md5_ff(v2, v1, v4, v3, x[v5 + 14], 17, -1502002290);
						v3 = com.newgrounds.crypto.MD5.md5_ff(v3, v2, v1, v4, x[v5 + 15], 22, 1236535329);
						v4 = com.newgrounds.crypto.MD5.md5_gg(v4, v3, v2, v1, x[v5 + 1], 5, -165796510);
						v1 = com.newgrounds.crypto.MD5.md5_gg(v1, v4, v3, v2, x[v5 + 6], 9, -1069501632);
						v2 = com.newgrounds.crypto.MD5.md5_gg(v2, v1, v4, v3, x[v5 + 11], 14, 643717713);
						v3 = com.newgrounds.crypto.MD5.md5_gg(v3, v2, v1, v4, x[v5 + 0], 20, -373897302);
						v4 = com.newgrounds.crypto.MD5.md5_gg(v4, v3, v2, v1, x[v5 + 5], 5, -701558691);
						v1 = com.newgrounds.crypto.MD5.md5_gg(v1, v4, v3, v2, x[v5 + 10], 9, 38016083);
						v2 = com.newgrounds.crypto.MD5.md5_gg(v2, v1, v4, v3, x[v5 + 15], 14, -660478335);
						v3 = com.newgrounds.crypto.MD5.md5_gg(v3, v2, v1, v4, x[v5 + 4], 20, -405537848);
						v4 = com.newgrounds.crypto.MD5.md5_gg(v4, v3, v2, v1, x[v5 + 9], 5, 568446438);
						v1 = com.newgrounds.crypto.MD5.md5_gg(v1, v4, v3, v2, x[v5 + 14], 9, -1019803690);
						v2 = com.newgrounds.crypto.MD5.md5_gg(v2, v1, v4, v3, x[v5 + 3], 14, -187363961);
						v3 = com.newgrounds.crypto.MD5.md5_gg(v3, v2, v1, v4, x[v5 + 8], 20, 1163531501);
						v4 = com.newgrounds.crypto.MD5.md5_gg(v4, v3, v2, v1, x[v5 + 13], 5, -1444681467);
						v1 = com.newgrounds.crypto.MD5.md5_gg(v1, v4, v3, v2, x[v5 + 2], 9, -51403784);
						v2 = com.newgrounds.crypto.MD5.md5_gg(v2, v1, v4, v3, x[v5 + 7], 14, 1735328473);
						v3 = com.newgrounds.crypto.MD5.md5_gg(v3, v2, v1, v4, x[v5 + 12], 20, -1926607734);
						v4 = com.newgrounds.crypto.MD5.md5_hh(v4, v3, v2, v1, x[v5 + 5], 4, -378558);
						v1 = com.newgrounds.crypto.MD5.md5_hh(v1, v4, v3, v2, x[v5 + 8], 11, -2022574463);
						v2 = com.newgrounds.crypto.MD5.md5_hh(v2, v1, v4, v3, x[v5 + 11], 16, 1839030562);
						v3 = com.newgrounds.crypto.MD5.md5_hh(v3, v2, v1, v4, x[v5 + 14], 23, -35309556);
						v4 = com.newgrounds.crypto.MD5.md5_hh(v4, v3, v2, v1, x[v5 + 1], 4, -1530992060);
						v1 = com.newgrounds.crypto.MD5.md5_hh(v1, v4, v3, v2, x[v5 + 4], 11, 1272893353);
						v2 = com.newgrounds.crypto.MD5.md5_hh(v2, v1, v4, v3, x[v5 + 7], 16, -155497632);
						v3 = com.newgrounds.crypto.MD5.md5_hh(v3, v2, v1, v4, x[v5 + 10], 23, -1094730640);
						v4 = com.newgrounds.crypto.MD5.md5_hh(v4, v3, v2, v1, x[v5 + 13], 4, 681279174);
						v1 = com.newgrounds.crypto.MD5.md5_hh(v1, v4, v3, v2, x[v5 + 0], 11, -358537222);
						v2 = com.newgrounds.crypto.MD5.md5_hh(v2, v1, v4, v3, x[v5 + 3], 16, -722521979);
						v3 = com.newgrounds.crypto.MD5.md5_hh(v3, v2, v1, v4, x[v5 + 6], 23, 76029189);
						v4 = com.newgrounds.crypto.MD5.md5_hh(v4, v3, v2, v1, x[v5 + 9], 4, -640364487);
						v1 = com.newgrounds.crypto.MD5.md5_hh(v1, v4, v3, v2, x[v5 + 12], 11, -421815835);
						v2 = com.newgrounds.crypto.MD5.md5_hh(v2, v1, v4, v3, x[v5 + 15], 16, 530742520);
						v3 = com.newgrounds.crypto.MD5.md5_hh(v3, v2, v1, v4, x[v5 + 2], 23, -995338651);
						v4 = com.newgrounds.crypto.MD5.md5_ii(v4, v3, v2, v1, x[v5 + 0], 6, -198630844);
						v1 = com.newgrounds.crypto.MD5.md5_ii(v1, v4, v3, v2, x[v5 + 7], 10, 1126891415);
						v2 = com.newgrounds.crypto.MD5.md5_ii(v2, v1, v4, v3, x[v5 + 14], 15, -1416354905);
						v3 = com.newgrounds.crypto.MD5.md5_ii(v3, v2, v1, v4, x[v5 + 5], 21, -57434055);
						v4 = com.newgrounds.crypto.MD5.md5_ii(v4, v3, v2, v1, x[v5 + 12], 6, 1700485571);
						v1 = com.newgrounds.crypto.MD5.md5_ii(v1, v4, v3, v2, x[v5 + 3], 10, -1894986606);
						v2 = com.newgrounds.crypto.MD5.md5_ii(v2, v1, v4, v3, x[v5 + 10], 15, -1051523);
						v3 = com.newgrounds.crypto.MD5.md5_ii(v3, v2, v1, v4, x[v5 + 1], 21, -2054922799);
						v4 = com.newgrounds.crypto.MD5.md5_ii(v4, v3, v2, v1, x[v5 + 8], 6, 1873313359);
						v1 = com.newgrounds.crypto.MD5.md5_ii(v1, v4, v3, v2, x[v5 + 15], 10, -30611744);
						v2 = com.newgrounds.crypto.MD5.md5_ii(v2, v1, v4, v3, x[v5 + 6], 15, -1560198380);
						v3 = com.newgrounds.crypto.MD5.md5_ii(v3, v2, v1, v4, x[v5 + 13], 21, 1309151649);
						v4 = com.newgrounds.crypto.MD5.md5_ii(v4, v3, v2, v1, x[v5 + 4], 6, -145523070);
						v1 = com.newgrounds.crypto.MD5.md5_ii(v1, v4, v3, v2, x[v5 + 11], 10, -1120210379);
						v2 = com.newgrounds.crypto.MD5.md5_ii(v2, v1, v4, v3, x[v5 + 2], 15, 718787259);
						v3 = com.newgrounds.crypto.MD5.md5_ii(v3, v2, v1, v4, x[v5 + 9], 21, -343485551);
						v4 = com.newgrounds.crypto.MD5.safe_add(v4, v10);
						v3 = com.newgrounds.crypto.MD5.safe_add(v3, v9);
						v2 = com.newgrounds.crypto.MD5.safe_add(v2, v8);
						v1 = com.newgrounds.crypto.MD5.safe_add(v1, v7);
						v5 += 16;
					}
					return new Array(v4, v3, v2, v1);
				};
				v1.md5_cmn = function (q, a, b, x, s, t) {
					return com.newgrounds.crypto.MD5.safe_add(com.newgrounds.crypto.MD5.bit_rol(com.newgrounds.crypto.MD5.safe_add(com.newgrounds.crypto.MD5.safe_add(a, q), com.newgrounds.crypto.MD5.safe_add(x, t)), s), b);
				};
				v1.md5_ff = function (a, b, c, d, x, s, t) {
					return com.newgrounds.crypto.MD5.md5_cmn(b & c | ~b & d, a, b, x, s, t);
				};
				v1.md5_gg = function (a, b, c, d, x, s, t) {
					return com.newgrounds.crypto.MD5.md5_cmn(b & d | c & ~d, a, b, x, s, t);
				};
				v1.md5_hh = function (a, b, c, d, x, s, t) {
					return com.newgrounds.crypto.MD5.md5_cmn(b ^ c ^ d, a, b, x, s, t);
				};
				v1.md5_ii = function (a, b, c, d, x, s, t) {
					return com.newgrounds.crypto.MD5.md5_cmn(c ^ (b | ~d), a, b, x, s, t);
				};
				v1.bit_rol = function (num, cnt) {
					return num << cnt | num >>> 32 - cnt;
				};
				v1.safe_add = function (x, y) {
					var v1 = (x & 65535) + (y & 65535);
					var v2 = (x >> 16) + (y >> 16) + (v1 >> 16);
					return v2 << 16 | v1 & 65535;
				};
				v1.str2binl = function (str) {
					var v3 = new Array();
					var v4 = 255;
					var v1 = 0;
					while (v1 < str.length * 8) {
						v3[v1 >> 5] |= (str.charCodeAt(v1 / 8) & v4) << v1 % 32;
						v1 += 8;
					}
					return v3;
				};
				v1.binl2hex = function (binarray) {
					var v4 = new String('');
					var v3 = new String('0123456789abcdef');
					var v1 = 0;
					while (v1 < binarray.length * 4) {
						v4 += v3.charAt(binarray[v1 >> 2] >> (v1 % 4) * 8 + 4 & 15) + v3.charAt(binarray[v1 >> 2] >> (v1 % 4) * 8 & 15);
						++v1;
					}
					return v4;
				};
				ASSetPropFlags(com.newgrounds.crypto.MD5.prototype, null, 1);
			}
		#endinitclip
	}
	movieClip 54 __Packages.com.newgrounds.crypto.RC4 {
		#initclip
			if (!_global.com) {
				_global.com = new Object();
			}
			if (!_global.com.newgrounds) {
				_global.com.newgrounds = new Object();
			}
			if (!_global.com.newgrounds.crypto) {
				_global.com.newgrounds.crypto = new Object();
			}
			if (!_global.com.newgrounds.crypto.RC4) {
				var v1 = function () {};
				com.newgrounds.crypto.RC4 = v1;
				var v2 = v1.prototype;
				v1.encrypt = function (src, key) {
					var v3 = com.newgrounds.crypto.RC4.strToChars(src);
					var v1 = com.newgrounds.crypto.RC4.strToChars(key);
					var v2 = com.newgrounds.crypto.RC4.calculate(v3, v1);
					return com.newgrounds.crypto.RC4.charsToHex(v2);
				};
				v1.encryptbin = function (src, key) {
					var v3 = com.newgrounds.crypto.RC4.strToChars(src);
					var v1 = com.newgrounds.crypto.RC4.strToChars(key);
					var v2 = com.newgrounds.crypto.RC4.calculate(v3, v1);
					return v2;
				};
				v1.decrypt = function (src, key) {
					var v3 = com.newgrounds.crypto.RC4.hexToChars(src);
					var v1 = com.newgrounds.crypto.RC4.strToChars(key);
					var v2 = com.newgrounds.crypto.RC4.calculate(v3, v1);
					return com.newgrounds.crypto.RC4.charsToStr(v2);
				};
				v1.initialize = function (pwd) {
					var v2 = 0;
					var v3;
					var v4 = pwd.length;
					var v1 = 0;
					while (v1 <= 255) {
						com.newgrounds.crypto.RC4.mykey[v1] = pwd[v1 % v4];
						com.newgrounds.crypto.RC4.sbox[v1] = v1;
						++v1;
					}
					v1 = 0;
					while (v1 <= 255) {
						v2 = (v2 + com.newgrounds.crypto.RC4.sbox[v1] + com.newgrounds.crypto.RC4.mykey[v1]) % 256;
						v3 = com.newgrounds.crypto.RC4.sbox[v1];
						com.newgrounds.crypto.RC4.sbox[v1] = com.newgrounds.crypto.RC4.sbox[v2];
						com.newgrounds.crypto.RC4.sbox[v2] = v3;
						++v1;
					}
				};
				v1.calculate = function (plaintxt, psw) {
					com.newgrounds.crypto.RC4.initialize(psw);
					var v1 = 0;
					var v2 = 0;
					var v9 = new Array();
					var v7;
					var v5;
					var v6;
					var v3 = 0;
					while (v3 < plaintxt.length) {
						v1 = (v1 + 1) % 256;
						v2 = (v2 + com.newgrounds.crypto.RC4.sbox[v1]) % 256;
						v5 = com.newgrounds.crypto.RC4.sbox[v1];
						com.newgrounds.crypto.RC4.sbox[v1] = com.newgrounds.crypto.RC4.sbox[v2];
						com.newgrounds.crypto.RC4.sbox[v2] = v5;
						var v4 = (com.newgrounds.crypto.RC4.sbox[v1] + com.newgrounds.crypto.RC4.sbox[v2]) % 256;
						v7 = com.newgrounds.crypto.RC4.sbox[v4];
						v6 = plaintxt[v3] ^ v7;
						v9.push(v6);
						++v3;
					}
					return v9;
				};
				v1.charsToHex = function (chars) {
					var v4 = new String('');
					var v3 = new Array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f');
					var v1 = 0;
					while (v1 < chars.length) {
						v4 += v3[chars[v1] >> 4] + v3[chars[v1] & 15];
						++v1;
					}
					return v4;
				};
				v1.hexToChars = function (hex) {
					var v3 = new Array();
					var v1 = (hex.substr(0, 2) == '0x') ? 2 : 0;
					while (v1 < hex.length) {
						v3.push(parseInt(hex.substr(v1, 2), 16));
						v1 += 2;
					}
					return v3;
				};
				v1.charsToStr = function (chars) {
					var v3 = new String('');
					var v1 = 0;
					while (v1 < chars.length) {
						v3 += String.fromCharCode(chars[v1]);
						++v1;
					}
					return v3;
				};
				v1.strToChars = function (str) {
					var v3 = new Array();
					var v1 = 0;
					while (v1 < str.length) {
						v3.push(str.charCodeAt(v1));
						++v1;
					}
					return v3;
				};
				v1.sbox = new Array(255);
				v1.mykey = new Array(255);
				ASSetPropFlags(com.newgrounds.crypto.RC4.prototype, null, 1);
			}
		#endinitclip
	}
	movieClip 58 __Packages.com.newgrounds.Score {
		#initclip
			if (!_global.com) {
				_global.com = new Object();
			}
			if (!_global.com.newgrounds) {
				_global.com.newgrounds = new Object();
			}
			if (!_global.com.newgrounds.Score) {
				var v1 = function (rank, username, score, numericValue, tag) {
					this._rank = rank;
					this._username = username;
					this._score = score;
					this._numericValue = numericValue;
					this._tag = tag;
				};
				com.newgrounds.Score = v1;
				var v2 = v1.prototype;
				v2.__get__numericValue = function () {
					return this._numericValue;
				};
				v2.__get__rank = function () {
					return this._rank;
				};
				v2.__get__score = function () {
					return this._score;
				};
				v2.__get__tag = function () {
					return this._tag;
				};
				v2.__get__username = function () {
					return this._username;
				};
				v2.toString = function () {
					return this._rank + '.\t' + this._username + '\t' + this._score;
				};
				v2.addProperty('numericValue', v2.__get__numericValue, function () {});
				v2.addProperty('rank', v2.__get__rank, function () {});
				v2.addProperty('score', v2.__get__score, function () {});
				v2.addProperty('tag', v2.__get__tag, function () {});
				v2.addProperty('username', v2.__get__username, function () {});
				ASSetPropFlags(com.newgrounds.Score.prototype, null, 1);
			}
		#endinitclip
	}
	movieClip 238 cloudholder {
	}
	movieClip 272	{
		frame 20 {
			stop();
		}
	}
	movieClip 283	{
		frame 11 {
			stop();
		}
	}
	movieClip 290	{
		frame 11 {
			stop();
		}
	}
	movieClip 299	{
		frame 1 {
			stop();
		}
	}
	movieClip 304	{
		frame 1 {
			stop();
		}
	}
	movieClip 309	{
		frame 1 {
			stop();
		}
	}
	movieClip 316	{
		frame 11 {
			stop();
		}
	}
	movieClip 327	{
		frame 33 {
			++_root.count;
			_root.holder.attachMovie('dust1', 'dust' + _root.count, _root.count);
			_root.holder['dust' + _root.count]._x = _parent._x + _root.tilesize;
			_root.holder['dust' + _root.count]._y = 386;
			++_root.count;
			_root.holder.attachMovie('dust1', 'dust' + _root.count, _root.count);
			_root.holder['dust' + _root.count]._x = _parent._x - _root.tilesize;
			_root.holder['dust' + _root.count]._y = 386;
			++_root.count;
			_root.holder.attachMovie('dust1', 'dust' + _root.count, _root.count);
			_root.holder['dust' + _root.count]._x = _parent._x;
			_root.holder['dust' + _root.count]._y = 386;
		}
		frame 34 {
			stop();
		}
	}
	movieClip 334 deadBody {
		frame 18 {
			delay = 0;
			death.doOnce = true;
			death.onEnterFrame = function () {
				if (!fall and delay > 5 and death.doOnce) {
					this.gotoAndStop(2);
					death.doOnce = false;
				} else {
					if (death.doOnce) {
						++delay;
					}
				}
			};
		}
		frame 19 {
			delay = 0;
			death.doOnce = true;
			death.onEnterFrame = function () {
				if (!fall and delay > 5 and death.doOnce) {
					this.gotoAndStop(2);
					++_root.count;
					_root.attachMovie('whiteflash_short', 'whiteflash' + _root.count, _root.count);
					death.doOnce = false;
				} else {
					if (death.doOnce) {
						++delay;
					}
				}
			};
		}
		frame 20 {
			delay = 0;
			death.doOnce = true;
			recheck = 30;
			death.onEnterFrame = function () {
				if (!fall and delay > 5 and death.doOnce) {
					this.gotoAndStop(2);
					death.doOnce = false;
				} else {
					if (death.doOnce) {
						++delay;
					}
				}
				--recheck;
				if (recheck == 0) {
					recheck = 30;
					yspeed = 0;
					fall = true;
				}
			};
		}
	}
	movieClip 348	{
		frame 13 {
			_parent.removeMovieClip();
		}
	}
	movieClip 361	{
		frame 13 {
			_parent.removeMovieClip();
		}
	}
	movieClip 374	{
		frame 13 {
			_parent.removeMovieClip();
		}
	}
	movieClip 387	{
		frame 13 {
			_parent.removeMovieClip();
		}
	}
	movieClip 400	{
		frame 13 {
			_parent.removeMovieClip();
		}
	}
	movieClip 401 cloud {
	}
	movieClip 416 blood {
		frame 22 {
			this.removeMovieClip();
		}
	}
	movieClip 421 bosshealth {
		frame 1 {
			_x = 512;
			_y = 448;
			gotoAndStop(_totalframes);
			wave = 1;
			wavedir = -0.1;
			onEnterFrame = function () {
				if (Math.abs(diff) < 0.02) {
					wavedir = 0.1;
					wave = -0.5;
				} else {
					wave += wavedir;
					if (wave > 1 or wave < -0.5) {
						wavedir *= -1;
					}
				}
				life = _root.holder.objects.boss.life;
				if (life <= 0) {
					life = 1;
				}
				targ = Math.round((life / _root.holder.objects.boss.maxlife) * _totalframes);
				diff = (targ - _currentframe) / _totalframes;
				frametarg = _currentframe + Math.round((targ - _currentframe) * 0.2 * wave);
				gotoAndStop(frametarg);
			};
		}
	}
	movieClip 423	{
	}
	movieClip 424 exclamation {
		frame 17 {
			this.removeMovieClip();
		}
	}
	movieClip 443 explosion {
		frame 19 {
			this.removeMovieClip();
		}
	}
	movieClip 448 health_dot {
	}
	movieClip 449 lives_bar {
	}
	movieClip 452	{
	}
	movieClip 453 healthp {
	}
	
	// unknown tag 88 length 42
	movieClip 463 ingredienttxt {
		frame 41 {
			stop();
			onEnterFrame = function () {
				_alpha = _alpha - 2;
				if (_alpha <= 0) {
					--_root.pickuptexts;
					if (_root.pickuptexts == 0) {
						_root.pickuptextmax = 0;
					}
					this.removeMovieClip();
				}
			};
		}
	}
	movieClip 480 pickupanim {
		frame 17 {
			this.removeMovieClip();
		}
	}
	movieClip 493 sparkblood {
		frame 13 {
			this.removeMovieClip();
		}
	}
	movieClip 495 levelshifter {
	}
	movieClip 506	{
		frame 17 {
			_x = -10 + random(20);
			_y = -23 + random(20);
			gotoAndPlay(_currentframe + random(100));
		}
	}
	movieClip 519 essences {
		frame 1 {
			_x = int(_x);
			_y = int(_y);
			_y = Math.ceil(_y / tilesize) * tilesize;
			yspeed = 0;
			ydir = 0.1;
			onEnterFrame = function () {
				if (!_root.actions[id]) {
					if (this.hitTest(_root.holder.player)) {
						_root.giveExclamation();
						if (Key.isDown(40) or Key.isDown(83)) {
							_root.playsound('essences1Sound');
							_root.actions[id] = true;
							_root.create_pickupanim(_x, _y - _root.tilesize);
							if (id == 24) {
								_root.givemedal(4);
								_root.givemedal(5);
								_root.givemedal(6);
								_root.givemedal(7);
								_root.givemedal(8);
								_root.givemedal(9);
								_root.givemedal(10);
							}
							if (id == 18) {
								_root.givemedal(4);
							}
							if (id != 24 and id != 18) {
								mesarr = [];
								if (id == 19) {
									mesarr[0] = 'The Essence of Ro\'gor... It captures the';
									mesarr[1] = 'wild and unbridled power of nature.';
									_root.givemedal(5);
								} else {
									if (id == 20) {
										mesarr[0] = 'The Essence of Elaris... The pure spirit';
										mesarr[1] = 'of innovation and progress.';
										_root.givemedal(6);
									} else {
										if (id == 21) {
											mesarr[0] = 'The Essence of Meztla... A container of';
											mesarr[1] = 'ferocious heat and fire.';
											_root.givemedal(8);
										} else {
											if (id == 22) {
												mesarr[0] = 'The Essence of Potal... A conflicted';
												mesarr[1] = 'core of strife and strength.';
												_root.givemedal(9);
											} else {
												if (id == 23) {
													mesarr[0] = 'The Essence of Aeryl... Air and space';
													mesarr[1] = 'condensed into physical form.';
													_root.givemedal(7);
												}
											}
										}
									}
								}
								_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'oldmanradio');
							}
						}
					}
					_y = _y + yspeed;
					yspeed += ydir;
					if (yspeed > 1 or yspeed < -1) {
						ydir *= -1;
					}
				} else {
					this.removeMovieClip();
				}
			};
		}
	}
	movieClip 526 computer {
		frame 1 {
			count = 0;
			gotoAndStop(2);
			onEnterFrame = function () {
				++count;
				if (count > 5) {
					count = 0;
					gotoAndStop(random(_totalframes - 1) + 2);
				}
				myActions();
			};
		}
	}
	movieClip 537 gascloud_one {
		frame 1 {
			gotoAndPlay(2 + random(_totalframes - 2));
		}
		frame 37 {
			gotoAndPlay(2);
		}
	}
	movieClip 542	{
		frame 1 {
			stop();
		}
	}
	movieClip 547	{
		frame 1 {
			stop();
		}
	}
	movieClip 552	{
		frame 1 {
			stop();
		}
	}
	movieClip 557	{
		frame 1 {
			stop();
		}
	}
	movieClip 562	{
		frame 1 {
			stop();
		}
	}
	movieClip 567	{
		frame 1 {
			stop();
		}
	}
	movieClip 572	{
		frame 1 {
			stop();
		}
	}
	movieClip 577	{
		frame 1 {
			stop();
		}
	}
	movieClip 582	{
		frame 1 {
			stop();
		}
	}
	movieClip 587	{
		frame 1 {
			stop();
		}
	}
	movieClip 592	{
		frame 1 {
			stop();
		}
	}
	movieClip 597	{
		frame 1 {
			stop();
		}
	}
	movieClip 598	{
	}
	movieClip 609	{
		frame 1 {
			stop();
		}
	}
	movieClip 616	{
	}
	movieClip 620	{
	}
	movieClip 627	{
	}
	movieClip 631	{
	}
	movieClip 642	{
		frame 4 {
		}
		frame 10 {
		}
	}
	movieClip 644	{
		frame 1 {
			function setLim() {
				lim = _root.framerate * (random(10) + 2);
			}
			setLim();
			count = random(lim);
			onEnterFrame = function () {
				if (_root.msgbox._visible == false) {
					++count;
					if (count > lim) {
						count = 0;
						setLim();
						if (_currentframe > 2) {
							play();
						} else {
							_xscale = 100;
							rnd = random(100);
							if (rnd > 50) {
								gotoAndPlay('walk1');
							} else {
								gotoAndPlay('walk2');
							}
						}
					}
				}
			};
		}
		frame 2 {
			stop();
			rnd = random(100);
			if (rnd > 50) {
				_xscale = 100;
			} else {
				_xscale = -100;
			}
		}
		frame 30 {
			stop();
		}
		frame 56 {
			gotoAndStop(2);
		}
		frame 84 {
			stop();
		}
		frame 111 {
			gotoAndStop(2);
		}
	}
	movieClip 655	{
		frame 4 {
		}
		frame 10 {
		}
	}
	movieClip 657	{
		frame 1 {
			function setLim() {
				lim = _root.framerate * (random(10) + 2);
			}
			setLim();
			count = random(lim);
			onEnterFrame = function () {
				if (_root.msgbox._visible == false) {
					++count;
					if (count > lim) {
						count = 0;
						setLim();
						if (_currentframe > 2) {
							play();
						} else {
							_xscale = 100;
							rnd = random(100);
							if (rnd > 50) {
								gotoAndPlay('walk1');
							} else {
								gotoAndPlay('walk2');
							}
						}
					}
				}
			};
		}
		frame 2 {
			stop();
			rnd = random(100);
			if (rnd > 50) {
				_xscale = 100;
			} else {
				_xscale = -100;
			}
		}
		frame 30 {
			stop();
		}
		frame 56 {
			gotoAndStop(2);
		}
		frame 84 {
			stop();
		}
		frame 111 {
			gotoAndStop(2);
		}
	}
	movieClip 668	{
		frame 4 {
		}
		frame 10 {
		}
	}
	movieClip 670	{
		frame 1 {
			function setLim() {
				lim = _root.framerate * (random(10) + 2);
			}
			setLim();
			count = random(lim);
			onEnterFrame = function () {
				if (_root.msgbox._visible == false) {
					++count;
					if (count > lim) {
						count = 0;
						setLim();
						if (_currentframe > 2) {
							play();
						} else {
							_xscale = 100;
							rnd = random(100);
							if (rnd > 50) {
								gotoAndPlay('walk1');
							} else {
								gotoAndPlay('walk2');
							}
						}
					}
				}
			};
		}
		frame 2 {
			stop();
			rnd = random(100);
			if (rnd > 50) {
				_xscale = 100;
			} else {
				_xscale = -100;
			}
		}
		frame 30 {
			stop();
		}
		frame 56 {
			gotoAndStop(2);
		}
		frame 84 {
			stop();
		}
		frame 111 {
			gotoAndStop(2);
		}
	}
	movieClip 681	{
		frame 4 {
		}
		frame 10 {
		}
	}
	movieClip 683	{
		frame 1 {
			function setLim() {
				lim = _root.framerate * (random(10) + 2);
			}
			setLim();
			count = random(lim);
			onEnterFrame = function () {
				if (_root.msgbox._visible == false) {
					++count;
					if (count > lim) {
						count = 0;
						setLim();
						if (_currentframe > 2) {
							play();
						} else {
							_xscale = 100;
							rnd = random(100);
							if (rnd > 50) {
								gotoAndPlay('walk1');
							} else {
								gotoAndPlay('walk2');
							}
						}
					}
				}
			};
		}
		frame 2 {
			stop();
			rnd = random(100);
			if (rnd > 50) {
				_xscale = 100;
			} else {
				_xscale = -100;
			}
		}
		frame 30 {
			stop();
		}
		frame 56 {
			gotoAndStop(2);
		}
		frame 84 {
			stop();
		}
		frame 111 {
			gotoAndStop(2);
		}
	}
	movieClip 694	{
		frame 4 {
		}
		frame 10 {
		}
	}
	movieClip 696	{
		frame 1 {
			function setLim() {
				lim = _root.framerate * (random(10) + 2);
			}
			setLim();
			count = random(lim);
			onEnterFrame = function () {
				if (_root.msgbox._visible == false) {
					++count;
					if (count > lim) {
						count = 0;
						setLim();
						if (_currentframe > 2) {
							play();
						} else {
							_xscale = 100;
							rnd = random(100);
							if (rnd > 50) {
								gotoAndPlay('walk1');
							} else {
								gotoAndPlay('walk2');
							}
						}
					}
				}
			};
		}
		frame 2 {
			stop();
			rnd = random(100);
			if (rnd > 50) {
				_xscale = 100;
			} else {
				_xscale = -100;
			}
		}
		frame 30 {
			stop();
		}
		frame 56 {
			gotoAndStop(2);
		}
		frame 84 {
			stop();
		}
		frame 111 {
			gotoAndStop(2);
		}
	}
	movieClip 707	{
		frame 4 {
		}
		frame 10 {
		}
	}
	movieClip 709	{
		frame 1 {
			function setLim() {
				lim = _root.framerate * (random(10) + 2);
			}
			setLim();
			count = random(lim);
			onEnterFrame = function () {
				if (_root.msgbox._visible == false) {
					++count;
					if (count > lim) {
						count = 0;
						setLim();
						if (_currentframe > 2) {
							play();
						} else {
							_xscale = 100;
							rnd = random(100);
							if (rnd > 50) {
								gotoAndPlay('walk1');
							} else {
								gotoAndPlay('walk2');
							}
						}
					}
				}
			};
		}
		frame 2 {
			stop();
			rnd = random(100);
			if (rnd > 50) {
				_xscale = 100;
			} else {
				_xscale = -100;
			}
		}
		frame 30 {
			stop();
		}
		frame 56 {
			gotoAndStop(2);
		}
		frame 84 {
			stop();
		}
		frame 111 {
			gotoAndStop(2);
		}
	}
	movieClip 720	{
		frame 4 {
		}
		frame 10 {
		}
	}
	movieClip 722	{
		frame 1 {
			function setLim() {
				lim = _root.framerate * (random(10) + 2);
			}
			setLim();
			count = random(lim);
			onEnterFrame = function () {
				if (_root.msgbox._visible == false) {
					++count;
					if (count > lim) {
						count = 0;
						setLim();
						if (_currentframe > 2) {
							play();
						} else {
							_xscale = 100;
							rnd = random(100);
							if (rnd > 50) {
								gotoAndPlay('walk1');
							} else {
								gotoAndPlay('walk2');
							}
						}
					}
				}
			};
		}
		frame 2 {
			stop();
			rnd = random(100);
			if (rnd > 50) {
				_xscale = 100;
			} else {
				_xscale = -100;
			}
		}
		frame 30 {
			stop();
		}
		frame 56 {
			gotoAndStop(2);
		}
		frame 84 {
			stop();
		}
		frame 111 {
			gotoAndStop(2);
		}
	}
	movieClip 733	{
		frame 4 {
		}
		frame 10 {
		}
	}
	movieClip 735	{
		frame 1 {
			function setLim() {
				lim = _root.framerate * (random(10) + 2);
			}
			setLim();
			count = random(lim);
			onEnterFrame = function () {
				if (_root.msgbox._visible == false) {
					++count;
					if (count > lim) {
						count = 0;
						setLim();
						if (_currentframe > 2) {
							play();
						} else {
							_xscale = 100;
							rnd = random(100);
							if (rnd > 50) {
								gotoAndPlay('walk1');
							} else {
								gotoAndPlay('walk2');
							}
						}
					}
				}
			};
		}
		frame 2 {
			stop();
			rnd = random(100);
			if (rnd > 50) {
				_xscale = 100;
			} else {
				_xscale = -100;
			}
		}
		frame 30 {
			stop();
		}
		frame 56 {
			gotoAndStop(2);
		}
		frame 84 {
			stop();
		}
		frame 111 {
			gotoAndStop(2);
		}
	}
	movieClip 746	{
		frame 4 {
		}
		frame 10 {
		}
	}
	movieClip 748	{
		frame 1 {
			function setLim() {
				lim = _root.framerate * (random(10) + 2);
			}
			setLim();
			count = random(lim);
			onEnterFrame = function () {
				if (_root.msgbox._visible == false) {
					++count;
					if (count > lim) {
						count = 0;
						setLim();
						if (_currentframe > 2) {
							play();
						} else {
							_xscale = 100;
							rnd = random(100);
							if (rnd > 50) {
								gotoAndPlay('walk1');
							} else {
								gotoAndPlay('walk2');
							}
						}
					}
				}
			};
		}
		frame 2 {
			stop();
			rnd = random(100);
			if (rnd > 50) {
				_xscale = 100;
			} else {
				_xscale = -100;
			}
		}
		frame 30 {
			stop();
		}
		frame 56 {
			gotoAndStop(2);
		}
		frame 84 {
			stop();
		}
		frame 111 {
			gotoAndStop(2);
		}
	}
	movieClip 759	{
		frame 4 {
		}
		frame 10 {
		}
	}
	movieClip 761	{
		frame 1 {
			function setLim() {
				lim = _root.framerate * (random(10) + 2);
			}
			setLim();
			count = random(lim);
			onEnterFrame = function () {
				if (_root.msgbox._visible == false) {
					++count;
					if (count > lim) {
						count = 0;
						setLim();
						if (_currentframe > 2) {
							play();
						} else {
							_xscale = 100;
							rnd = random(100);
							if (rnd > 50) {
								gotoAndPlay('walk1');
							} else {
								gotoAndPlay('walk2');
							}
						}
					}
				}
			};
		}
		frame 2 {
			stop();
			rnd = random(100);
			if (rnd > 50) {
				_xscale = 100;
			} else {
				_xscale = -100;
			}
		}
		frame 30 {
			stop();
		}
		frame 56 {
			gotoAndStop(2);
		}
		frame 84 {
			stop();
		}
		frame 111 {
			gotoAndStop(2);
		}
	}
	movieClip 770	{
	}
	movieClip 781	{
		frame 4 {
		}
		frame 10 {
		}
	}
	movieClip 783	{
		frame 1 {
			function setLim() {
				lim = _root.framerate * (random(10) + 2);
			}
			setLim();
			count = random(lim);
			onEnterFrame = function () {
				if (_root.msgbox._visible == false) {
					++count;
					if (count > lim) {
						count = 0;
						setLim();
						if (_currentframe > 2) {
							play();
						} else {
							_xscale = 100;
							rnd = random(100);
							if (rnd > 50) {
								gotoAndPlay('walk1');
							} else {
								gotoAndPlay('walk2');
							}
						}
					}
				}
			};
		}
		frame 2 {
			stop();
			rnd = random(100);
			if (rnd > 50) {
				_xscale = 100;
			} else {
				_xscale = -100;
			}
		}
		frame 30 {
			stop();
		}
		frame 56 {
			gotoAndStop(2);
		}
		frame 84 {
			stop();
		}
		frame 111 {
			gotoAndStop(2);
		}
	}
	movieClip 794	{
		frame 4 {
		}
		frame 10 {
		}
	}
	movieClip 796	{
		frame 1 {
			function setLim() {
				lim = _root.framerate * (random(10) + 2);
			}
			setLim();
			count = random(lim);
			onEnterFrame = function () {
				if (_root.msgbox._visible == false) {
					++count;
					if (count > lim) {
						count = 0;
						setLim();
						if (_currentframe > 2) {
							play();
						} else {
							_xscale = 100;
							rnd = random(100);
							if (rnd > 50) {
								gotoAndPlay('walk1');
							} else {
								gotoAndPlay('walk2');
							}
						}
					}
				}
			};
		}
		frame 2 {
			stop();
			rnd = random(100);
			if (rnd > 50) {
				_xscale = 100;
			} else {
				_xscale = -100;
			}
		}
		frame 30 {
			stop();
		}
		frame 56 {
			gotoAndStop(2);
		}
		frame 84 {
			stop();
		}
		frame 111 {
			gotoAndStop(2);
		}
	}
	movieClip 797	{
	}
	movieClip 800	{
	}
	movieClip 805	{
		frame 1 {
			stop();
		}
	}
	movieClip 814	{
		frame 1 {
			stop();
		}
		frame 29 {
			gotoAndStop(1);
		}
	}
	movieClip 821	{
	}
	movieClip 822	{
	}
	movieClip 825	{
	}
	movieClip 830	{
	}
	movieClip 839	{
	}
	movieClip 844	{
		frame 6 {
			gotoAndPlay(random(14) + 6);
		}
	}
	movieClip 847	{
	}
	movieClip 852	{
	}
	movieClip 863	{
		frame 21 {
			gotoAndPlay(19 + random(21));
		}
	}
	movieClip 866	{
	}
	movieClip 873	{
	}
	movieClip 876	{
	}
	movieClip 880	{
		frame 75 {
			_parent.attacking = true;
		}
	}
	movieClip 889	{
	}
	movieClip 898	{
	}
	movieClip 905	{
	}
	movieClip 912	{
	}
	movieClip 917	{
		frame 39 {
			gotoAndPlay(random(20) + 1);
		}
	}
	movieClip 920	{
	}
	movieClip 927	{
	}
	movieClip 930	{
	}
	movieClip 940	{
	}
	movieClip 957	{
	}
	movieClip 962	{
	}
	movieClip 970	{
		frame 9 {
			stop();
		}
	}
	movieClip 973	{
	}
	movieClip 982	{
	}
	movieClip 1007	{
		frame 25 {
			stop();
		}
	}
	movieClip 1008	{
		frame 23 {
			stop();
		}
	}
	movieClip 1017	{
	}
	movieClip 1020	{
	}
	movieClip 1023	{
		frame 1 {
			_x = int(_x);
			_y = int(_y);
			_y = Math.ceil(_y / tilesize) * tilesize;
			yspeed = 0;
			ydir = 0.1;
			onEnterFrame = function () {
				if (!_root.actions[id]) {
					if (this.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true)) {
						_root.giveExclamation();
						if (Key.isDown(40) or Key.isDown(83)) {
							_root.actions[id] = true;
							_root.create_pickupanim(_x, _y - _root.tilesize);
						}
					}
					_y = _y + yspeed;
					yspeed += ydir;
					if (yspeed > 1 or yspeed < -1) {
						ydir *= -1;
					}
				} else {
					this.removeMovieClip();
				}
			};
		}
	}
	movieClip 1034	{
	}
	movieClip 1047	{
	}
	movieClip 1048	{
	}
	movieClip 1059	{
	}
	movieClip 1070	{
	}
	movieClip 1071	{
	}
	movieClip 1078	{
		frame 1 {
			gotoAndPlay(random(50) + 2);
		}
	}
	movieClip 1109	{
		frame 1 {
			_parent.attacking = false;
		}
		frame 66 {
			_parent.attacking = true;
		}
		frame 87 {
			_parent.attacking = false;
		}
		frame 96 {
			_parent.attacking = false;
		}
	}
	movieClip 1122	{
		frame 1 {
			_root.playsound('step1Sound');
		}
		frame 7 {
			_root.playsound('step2Sound');
		}
	}
	movieClip 1129	{
	}
	movieClip 1132	{
	}
	movieClip 1139	{
	}
	movieClip 1146	{
		frame 72 {
			gotoAndPlay(random(20) + 1);
		}
	}
	movieClip 1149	{
	}
	movieClip 1154	{
		frame 52 {
			gotoAndPlay(random(20) + 1);
		}
	}
	movieClip 1157	{
	}
	movieClip 1164	{
	}
	movieClip 1167	{
	}
	movieClip 1180	{
	}
	movieClip 1191	{
		frame 23 {
			gotoAndPlay(17);
		}
	}
	movieClip 1196	{
	}
	movieClip 1213	{
		frame 1 {
			stop();
		}
		frame 23 {
			stop();
		}
	}
	movieClip 1217	{
		frame 1 {
			stop();
		}
		frame 2 {
			onEnterFrame = function () {
				if (this.hitTest(_root.holder.player)) {
					_root.giveExclamation();
					if (allowDown and (Key.isDown(83) or Key.isDown(40))) {
						allowDown = false;
						if (_root.msgbox._visible == false and _root.msgbreather == 0) {
							mesarr = new Array();
							if (_root.effectScience == 0) {
								mesarr[0] = 'The ship is broken.';
								mesarr[1] = 'I don\'t have the skill to fix it.';
							} else {
								mesarr[0] = 'There... That should do it.';
								_root.actions[70] = true;
								++_root.count;
								_root.createEmptyMovieClip('createship', _root.count);
								_root.createship.del = _root.framerate * 2;
								_root.createship.onEnterFrame = function () {
									--this.del;
									if (this.del == 0) {
										custarr = [1, 36, 650, 300, 3, 4, 'select2', 80, 270];
										++_root.count;
										_root.holder.objects.attachMovie('objects', 'shipdoor', _root.count);
										_root.holder.objects.shipdoor._x = custarr[2];
										_root.holder.objects.shipdoor._y = custarr[3];
										_root.holder.objects.shipdoor.specarr = new Array();
										_root.holder.objects.shipdoor.specarr = custarr;
										this.removeMovieClip();
									}
								};
								this.gotoAndStop(1);
								delete onEnterFrame;
							}
							_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'hero');
						}
					} else {
						if (!Key.isDown(83) and !Key.isDown(40)) {
							allowDown = true;
						}
					}
				}
			};
		}
	}
	movieClip 1224	{
	}
	movieClip 1229	{
	}
	movieClip 1232	{
	}
	movieClip 1241	{
	}
	movieClip 1250	{
	}
	movieClip 1253	{
	}
	movieClip 1258	{
		frame 1 {
			stop();
		}
	}
	movieClip 1263	{
		frame 16 {
			stop();
		}
	}
	movieClip 1266	{
	}
	movieClip 1267 objects {
		frame 1 {
			function onscreen_check(numtiles) {
				if (numtiles == null) {
					numtiles = 5;
				}
				if (!_root.game_paused and _x + _root.holder._x > -(tilesize * numtiles) and _x + _root.holder._x < _root.stagewidth + tilesize * numtiles and _y + _root.holder._y > -(tilesize * numtiles) and _y + _root.holder._y < _root.stageheight + tilesize * numtiles) {
					onscreen = true;
					_visible = true;
				} else {
					onscreen = false;
					_visible = false;
				}
			}
			function ground_item(grounding) {
				_x = int(_x);
				_y = int(_y);
				_y = Math.ceil(_y / tilesize) * tilesize;
			}
			function wallBlocks() {
				while (_root.holder.ground.hitTest(_x + _root.holder._x, _y + _root.holder._y, true)) {
					_y = _y - 1;
				}
				while (_root.holder.ground.hitTest(_x + _root.holder._x, _y + _root.holder._y - hei, true)) {
					_y = _y + 1;
				}
				while (_root.holder.ground.hitTest(_x + _root.holder._x - wid / 2, _y + _root.holder._y, true)) {
					_x = _x + 1;
					bumpAmount = 0;
				}
				while (_root.holder.ground.hitTest(_x + _root.holder._x + wid / 2, _y + _root.holder._y, true)) {
					_x = _x - 1;
					bumpAmount = 0;
				}
			}
			function fallFunc() {
				if (!_root.holder.ground.hitTest(_x + _root.holder._x - wid / 2, _y + _root.holder._y + 5, true) and !_root.holder.ground.hitTest(_x + _root.holder._x + wid / 2, _y + _root.holder._y + 5, true)) {
					++fallspeed;
					_y = _y + fallspeed;
					if (_y > _root.stageHeight * 2) {
						this.removeMovieClip();
					}
				} else {
					if (fallspeed > 0) {
						_y = Math.ceil(_y / tilesize) * tilesize;
					}
					fallspeed = 0;
				}
			}
			function dealDamage(am, adj, adjwid) {
				if (adj == null) {
					adj = 0;
				}
				if (adjwid == null) {
					rightwid = wid;
				} else {
					rightwid = adjwid;
				}
				if (_root.damageDelay == 0 and freezeCount == 0 and _root.effectInvisibility == 0) {
					if (_root.holder.player.hitbox.hitTest(_x + _root.holder._x + rightwid / 2, _y + _root.holder._y + adj, true)) {
						_root.xspeed = 0;
						_root.bumpAmount -= _root.standardBump;
						_root.shadeCount = 30;
						_root.takedamage(am);
					}
					if (_root.holder.player.hitbox.hitTest(_x + _root.holder._x - rightwid / 2, _y + _root.holder._y + adj, true)) {
						_root.xspeed = 0;
						_root.bumpAmount += _root.standardBump;
						_root.shadeCount = 30;
						_root.takedamage(am);
					}
				}
			}
			function delayDamage() {
				if (damageDelay > 0) {
					--damageDelay;
				}
			}
			function bumpMe(bumpLevel) {
				if (bumpLevel == null) {
					bumpLevel = 1;
				}
				absBump = Math.abs(bumpAmount);
				if (_x < tilesize or _x > _root.levelwidth - tilesize or absBump < 1 or _root.holder.ground.hitTest(_x + _root.holder._x + (_width / 2) * bumpAmount / absBump + bumpAmount, _y + _root.holder._y - 5, true)) {
					bumpAmount = 0;
				}
				if (absBump > 1 and !_root.holder.ground.hitTest(_x + _root.holder._x + (_width / 2) * bumpAmount / absBump + bumpAmount, _y + _root.holder._y - 5, true)) {
					bumpAmount *= bumpLevel;
					_x = _x + bumpAmount;
					bumpAmount *= 0.8;
				} else {
					if (absBump > 1) {
						xspeed = 0;
						if (bumpAmount > 0) {
							_x = Math.ceil(_x / tilesize) * tilesize - _width / 2;
						} else {
							_x = Math.floor(_x / tilesize) * tilesize + _width / 2;
						}
						bumpAmount = 0;
					}
				}
			}
			function flashMe() {
				if (flashCount > 0) {
					this.setBrightness(random(100));
					--flashCount;
					if (flashCount == 0) {
						this.setBrightness(0);
					}
				}
			}
			function thawMe() {
				if (freezeCount > 0) {
					--freezeCount;
					if (freezeCount < 0) {
						freezeCount = 0;
					}
				}
			}
			function molotovDamage() {
				if (damageDelay == 0 and _root.holder.cloudsMolotov.hitTest(_x + _root.holder._x, _y + _root.holder._y - hei / 2, true)) {
					if (_x > _root.holder.player._x) {
						bumpAmount += 20;
					} else {
						bumpAmount -= 20;
					}
					life -= _root.molotovDamage;
					flashCount = 30;
					damageDelay = 30;
					freezeCount = 0;
					_root.playenemyhit();
				}
			}
			function explosionDamage() {
				if (damageDelay == 0 and _root.holder.cloudsExplosion.hitTest(_x + _root.holder._x, _y + _root.holder._y - hei / 2, true)) {
					if (_x > _root.holder.player._x) {
						bumpAmount += 20;
					} else {
						bumpAmount -= 20;
					}
					life -= _root.explosionDamage;
					flashCount = 30;
					damageDelay = 30;
					freezeCount = 0;
					_root.playenemyhit();
				}
			}
			function iceDamage(iceLevel) {
				if (damageDelay == 0 and _root.holder.cloudsIce.hitTest(_x + _root.holder._x, _y + _root.holder._y - hei / 2, true)) {
					if (_x > _root.holder.player._x) {
						bumpAmount += 20;
					} else {
						bumpAmount -= 20;
					}
					if (iceLevel == null) {
						iceLevel = 1;
					}
					freezeCount = _root.framerate * (random(10) + 2) * iceLevel;
					life -= _root.iceDamage;
					flashCount = 30;
					damageDelay = 30;
				}
			}
			function die(fall, bloodtype) {
				if (alive) {
					if (bloodtype == null) {
						bloodtype = 'blood';
					}
					_root.createBody(_x, _y, bodyId, fall, _xscale);
					_root.dropHealth(_x, _y, 25);
					_root.create_blood(_x, _y, hei, bloodtype);
					this.removeMovieClip();
				}
			}
			function fallRemove() {
				if (_y > _root.stageHeight + tilesize * 10) {
					this.removeMovieClip();
				}
			}
			tilesize = _root.tilesize;
			framerate = _root.framerate;
			gotoAndStop(specarr[1]);
		}
		frame 2 {
			ground_item(true);
			myid = parseInt(specarr[4]);
			type = parseInt(specarr[5]);
			this.pickups.gotoAndStop(type + 1);
			onEnterFrame = function () {
				if (_root.pickuparr[myid] == null or _root.pickuptime > _root.pickuparr[myid] + _root.regenarr[type]) {
					this.pickups.pickup.gotoAndStop(1);
					this.shine._visible = true;
					if (this.hitTest(_root.holder.player) and !_root.cutscene) {
						_root.giveExclamation();
						if (Key.isDown(40) or Key.isDown(83)) {
							this.pickups.pickup.gotoAndStop(2);
							_root.pickuparr[myid] = _root.pickuptime;
							++_root.ingredientsarr[type];
							_root.create_pickupanim(_x, _y - tilesize);
							++_root.count;
							_root.attachMovie('ingredienttxt', 'txt' + _root.count, _root.count);
							_root['txt' + _root.count].txt = _root.ingredientsnames[type];
							_root['txt' + _root.count]._y = -((tilesize / 2) * _root.pickuptextmax);
							++_root.pickuptexts;
							++_root.pickuptextmax;
							_root.playingredient();
							_root.givemedal(2);
							++_root.ingredientspicked;
							if (_root.ingredientspicked == 100) {
								_root.givemedal(23);
							}
						}
					}
				} else {
					this.pickups.pickup.gotoAndStop(2);
					this.shine._visible = false;
				}
			};
		}
		frame 3 {
			_width = tilesize * specarr[4];
			_height = tilesize * specarr[5];
			targframe = specarr[6];
			targx = specarr[7];
			targy = specarr[8];
			shifting = false;
			onEnterFrame = function () {
				if (this.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y, true)) {
					shifting = true;
				}
				if (shifting) {
					_root.shift_frame(targframe, targx, targy);
				}
			};
		}
		frame 4 {
			ground_item(true);
			onEnterFrame = function () {
				if (this.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true)) {
					_root.check_x = _x;
					_root.check_y = _y;
					_root.check_frame = _root._currentframe;
					if (!hitting) {
						_root.savegame();
						checkpoint.play();
						_root.playsound('checkpoint1Sound');
						_root.health = _root.maxhealth;
						_root.clear_life();
						_root.load_life();
						hitting = true;
						if (!savedtxt) {
							++_root.count;
							attachMovie('gamesavedtxt', 'savedtxt', _root.count);
							savedtxt._x = -35;
							savedtxt._y = -100;
							savet = 90;
						}
					}
				} else {
					hitting = false;
				}
				if (savedtxt) {
					--savet;
					if (savet < 0) {
						savedtxt._alpha -= 5;
						if (savedtxt._alpha < 0) {
							savedtxt.removeMovieClip();
						}
					}
				}
			};
		}
		frame 5 {
			life = parseInt(specarr[4]);
			alive = true;
			bumpAmount = 0;
			damageDelay = 0;
			freezeCount = 0;
			xspeed = 0;
			yspeed = 0;
			maxspeed = 5.5;
			acc = 0.12;
			wid = 20;
			hei = _height;
			bodyId = 2;
			onEnterFrame = function () {
				onscreen_check();
				if (onscreen and !_root.game_paused and !_root.msgbox._visible) {
					if (life > 0) {
						dealDamage(1, -hei);
						dealDamage(1, 0);
						if (freezeCount == 0) {
							if (_root.buzz1Sound.position == 0 or _root.buzz1Sound.position == _root.buzz1Sound.duration) {
								_root.playsound('buzz1Sound');
							}
							en.gotoAndStop('walking');
							if (_root.effectInvisibility == 0) {
								if (_x < _root.holder.player._x - _root.tilesize / 2) {
									if (xspeed < maxspeed) {
										xspeed += acc;
										_xscale = 100;
									}
								} else {
									if (_x > _root.holder.player._x + _root.tilesize / 2) {
										if (xspeed > -maxspeed) {
											xspeed -= acc;
											_xscale = -100;
										}
									}
								}
								if (_y < _root.holder.player._y - _root.tilesize / 2 - _root.tilesize) {
									if (yspeed < maxspeed) {
										yspeed += acc;
									}
								} else {
									if (_y > _root.holder.player._y + _root.tilesize / 2 - _root.tilesize) {
										if (yspeed > -maxspeed) {
											yspeed -= acc;
										}
									}
								}
								if (!_root.holder.ground.hitTest(_x + _root.holder._x + xspeed * 10, _y + _root.holder._y - hei / 2, true)) {
									_x = _x + xspeed;
								}
								if (!_root.holder.ground.hitTest(_x + _root.holder._x, _y + _root.holder._y - hei / 2 + yspeed * 10, true)) {
									_y = _y + yspeed;
								}
							}
						} else {
							en.gotoAndStop('frozen');
						}
						molotovDamage();
						iceDamage();
						explosionDamage();
						flashMe();
						bumpMe();
						thawMe();
						delayDamage();
						wallBlocks();
					} else {
						die();
					}
				}
				fallRemove();
			};
		}
		frame 6 {
			life = parseInt(specarr[4]);
			alive = true;
			bumpAmount = 0;
			damageDelay = 0;
			freezeCount = 0;
			xspeed = 0;
			yspeed = 0;
			maxspeed = 4 * (0.8 + random(40) / 100);
			acc = 0.8 * (0.8 + random(40) / 100);
			wid = 20;
			hei = 20;
			fallspeed = 0;
			ground_item();
			bodyId = 1;
			onEnterFrame = function () {
				onscreen_check();
				if (onscreen and !_root.game_paused and !_root.msgbox._visible) {
					if (life > 0) {
						dealDamage(1, -5);
						if (freezeCount == 0) {
							en.gotoAndStop('walking');
							if (_root.effectInvisibility == 0) {
								if (_x < _root.holder.player._x - _root.tilesize / 2) {
									if (xspeed < maxspeed) {
										xspeed += acc;
										_xscale = 100;
									}
								} else {
									if (_x > _root.holder.player._x + _root.tilesize / 2) {
										if (xspeed > -maxspeed) {
											xspeed -= acc;
											_xscale = -100;
										}
									}
								}
								if (!_root.holder.ground.hitTest(_x + _root.holder._x + xspeed, _y + _root.holder._y - hei / 2, true) and _root.holder.ground.hitTest(_x + _root.holder._x + xspeed, _y + _root.holder._y + 5, true)) {
									_x = _x + xspeed;
								}
							}
						} else {
							en.gotoAndStop('frozen');
						}
						fallFunc();
						molotovDamage();
						iceDamage();
						explosionDamage();
						flashMe();
						bumpMe();
						thawMe();
						delayDamage();
						wallBlocks();
					} else {
						die();
					}
				}
				fallRemove();
			};
		}
		frame 7 {
			if (_parent._name == 'objects') {
				_width = tilesize * specarr[4];
				_height = tilesize * specarr[5];
				targframe = specarr[6];
				targx = specarr[7];
				targy = specarr[8];
				++_root.count;
				_root.holder.nohtobjects.attachMovie('objects', 'door' + _root.count, _root.count);
				_root.holder.nohtobjects['door' + _root.count].gotoAndStop(_currentframe);
				_root.holder.nohtobjects['door' + _root.count]._x = _x;
				_root.holder.nohtobjects['door' + _root.count]._y = _y;
				_root.holder.nohtobjects['door' + _root.count]._width = _width;
				_root.holder.nohtobjects['door' + _root.count]._height = _height;
				_root.holder.nohtobjects['door' + _root.count].targframe = targframe;
				_root.holder.nohtobjects['door' + _root.count].targx = targx;
				_root.holder.nohtobjects['door' + _root.count].targy = targy;
				this.removeMovieClip();
			}
			shifting = false;
			onEnterFrame = function () {
				if (shifting) {
					_root.shift_frame(targframe, targx, targy);
				}
				if (!_root.game_paused and !_root.msgbox._visible) {
					if (allowEnter and this.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y, true)) {
						_root.giveExclamation();
						if (Key.isDown(83) or Key.isDown(40)) {
							if (!shifting) {
								_root.playsound('door1Sound');
							}
							shifting = true;
						}
					}
				}
				if (!Key.isDown(83) and !Key.isDown(40)) {
					allowEnter = true;
				}
			};
		}
		frame 8 {
			ground_item(true);
			npc.gotoAndStop(parseInt(specarr[5]));
			onEnterFrame = function () {
				if (this.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true)) {
					_root.giveExclamation();
					if (allowDown and !_root.cutscene and (Key.isDown(83) or Key.isDown(40))) {
						allowDown = false;
						if (_root.msgbox._visible == false and _root.msgbreather == 0) {
							mesarr = new Array();
							i = 6;
							while (i < specarr.length) {
								j = i - 6;
								if (specarr[i] == 'null') {
									break;
								}
								mesarr[j] = specarr[i];
								++i;
							}
							_root.msgbox.initmessage(mesarr, _root.standardlettertime, specarr[4]);
						}
					} else {
						if (!Key.isDown(83) and !Key.isDown(40)) {
							allowDown = true;
						}
					}
				}
			};
		}
		frame 9 {
			ground_item(true);
		}
		frame 10 {
			ground_item(true);
			onEnterFrame = function () {
				if (_root.holder.cloudsMolotov.hitTest(_x + _root.holder._x, _y + _root.holder._y, true) or _root.holder.cloudsExplosion.hitTest(_x + _root.holder._x, _y + _root.holder._y, true)) {
					bush.gotoAndStop(2);
				}
				if (bush._currentframe == 1 and _root.damageDelay == 0) {
					if (this.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y - 10, true)) {
						_root.xspeed = 0;
						_root.bumpAmount -= _root.standardBump * _root.holder.player._xscale / 100;
						_root.shadeCount = 30;
						_root.takedamage(_root.maxhealth * 2);
					}
				}
			};
		}
		frame 11 {
			life = parseInt(specarr[4]);
			alive = true;
			bumpAmount = 0;
			damageDelay = 0;
			freezeCount = 0;
			xspeed = 0;
			yspeed = 0;
			maxspeed = 5.5;
			acc = 0.12;
			wid = 20;
			hei = _height;
			attCount = 0;
			attLim = framerate * 2;
			ground_item();
			bodyId = 3;
			onEnterFrame = function () {
				onscreen_check();
				if (onscreen and !_root.game_paused and !_root.msgbox._visible) {
					if (life > 0) {
						dealDamage(1, -hei);
						dealDamage(1, 0);
						if (freezeCount == 0) {
							++attCount;
							if (attCount > attLim) {
								if (en._currentframe == 1) {
									en.play();
								}
								if (en._currentframe == 10 or en._currentframe == 19 or en._currentframe == 28) {
									_root.createFlowerSpit(_x, _y - hei);
									_root.playsound('bisi1Sound');
								}
								if (en._currentframe == 28) {
									attCount = 0;
								}
							} else {
								en.gotoAndStop(1);
							}
						} else {
							en.gotoAndStop('frozen');
							attCount = 0;
						}
						molotovDamage();
						iceDamage();
						explosionDamage();
						flashMe();
						thawMe();
						delayDamage();
					} else {
						die(false);
					}
				}
			};
		}
		frame 12 {
			function normalTarg() {
				xtarg = random(_root.stagewidth) - _root.holder._x;
				ytarg = random(_root.stageheight) - _root.holder._y;
				xspeed = (xtarg - _x) / framerate * 3;
				yspeed = (ytarg - _y) / framerate * 3;
			}
			function diveTarg() {
				xtarg = _root.holder.player._x;
				ytarg = _root.holder.player._y;
				xspeed = (xtarg - _x) / framerate;
				yspeed = (ytarg - _y) / framerate;
			}
			life = parseInt(specarr[4]);
			alive = true;
			bumpAmount = 0;
			damageDelay = 0;
			freezeCount = 0;
			wid = 20;
			hei = _height;
			bodyId = 4;
			diving = true;
			diveLim = framerate * 3;
			diveCount = diveLim;
			onEnterFrame = function () {
				onscreen_check();
				if (onscreen and !_root.game_paused and !_root.msgbox._visible) {
					if (life > 0) {
						dealDamage(1, -hei);
						dealDamage(1, 0);
						if (freezeCount == 0) {
							if (diving) {
								en.gotoAndStop(2);
							} else {
								if (random(200) > 198) {
									_root.playsound('bird2Sound');
								}
								en.gotoAndStop(1);
							}
							if (xspeed > 0) {
								_xscale = -100;
							} else {
								_xscale = 100;
							}
							if (_root.effectInvisibility == 0) {
								++diveCount;
								if (diveCount > diveLim) {
									diveCount = 0;
									if (diving) {
										normalTarg();
										diveLim = framerate * 2 * (random(100) / 100 + 0.75);
										diving = false;
									} else {
										diveTarg();
										diveLim = framerate;
										_root.playsound('bird1Sound');
										diving = true;
									}
								}
								_x = _x + xspeed;
								_y = _y + yspeed;
							}
						} else {
							en.gotoAndStop(3);
						}
						molotovDamage();
						iceDamage();
						explosionDamage();
						flashMe();
						bumpMe();
						thawMe();
						delayDamage();
					} else {
						die();
					}
				}
				fallRemove();
			};
		}
		frame 13 {
			function setLim() {
				actionLim = framerate * 3 * (random(50) / 100 + 0.5);
				actionCount = 0;
			}
			life = parseInt(specarr[4]);
			alive = true;
			bumpAmount = 0;
			damageDelay = 0;
			freezeCount = 0;
			xspeed = 0;
			yspeed = 0;
			maxspeed = 4;
			acc = 0.8;
			wid = 20;
			hei = 60;
			fallspeed = 0;
			ground_item();
			bodyId = 5;
			actionState = 'stand';
			setLim();
			actionCount = actionLim;
			onEnterFrame = function () {
				onscreen_check();
				if (onscreen and !_root.game_paused and !_root.msgbox._visible) {
					if (life > 0) {
						dealDamage(1, -hei);
						dealDamage(1, 0);
						if (freezeCount == 0) {
							if (_root.effectInvisibility == 0) {
								if (_x < _root.holder.player._x - _root.tilesize / 2) {
									if (xspeed < maxspeed) {
										xspeed += acc;
										_xscale = 100;
									}
								} else {
									if (_x > _root.holder.player._x + _root.tilesize / 2) {
										if (xspeed > -maxspeed) {
											xspeed -= acc;
											_xscale = -100;
										}
									}
								}
								++actionCount;
								if (actionCount > actionLim) {
									rnd = random(100);
									if (rnd > 66) {
										actionState = 'stand';
									} else {
										if (rnd > 33) {
											actionState = 'walk';
										} else {
											actionState = 'attack';
										}
									}
									xspeed = 0;
									setLim();
								}
								if (actionState == 'stand') {
									en.gotoAndStop('stand');
								} else {
									if (actionState == 'walk') {
										if (!_root.holder.ground.hitTest(_x + _root.holder._x + xspeed, _y + _root.holder._y - hei / 2, true) and _root.holder.ground.hitTest(_x + _root.holder._x + xspeed, _y + _root.holder._y + 5, true)) {
											_x = _x + xspeed;
											en.gotoAndStop('walk');
											if (en.walk._currentframe == 5) {
												_root.playsound('step1Sound');
											} else {
												if (en.walk._currentframe == 13) {
													_root.playsound('step2Sound');
												}
											}
										}
										if (_x == endx) {
											en.gotoAndStop('stand');
										}
										endx = _x;
									} else {
										if (actionState == 'attack') {
											en.gotoAndStop('attack');
											++actionCount;
											if (en.att._currentframe == 5) {
												dir = _xscale / Math.abs(_xscale);
												_root.createCaveSpit(_x + 11 * dir, _y - 30, dir);
												_root.playsound('cavemonster1Sound');
											}
										}
									}
								}
							} else {
								en.gotoAndStop('stand');
							}
						} else {
							en.gotoAndStop('frozen');
						}
						fallFunc();
						molotovDamage();
						iceDamage();
						explosionDamage();
						flashMe();
						bumpMe();
						thawMe();
						delayDamage();
						wallBlocks();
					} else {
						die();
					}
				}
				fallRemove();
			};
		}
		frame 14 {
			function setLim() {
				attLim = framerate * 3 * (random(50) / 100 + 0.5);
				attCount = 0;
			}
			life = parseInt(specarr[4]);
			alive = true;
			bumpAmount = 0;
			damageDelay = 0;
			freezeCount = 0;
			xspeed = 0;
			yspeed = 0;
			maxspeed = 5.5;
			acc = 0.12;
			wid = 20;
			hei = -_height;
			en.stop();
			setLim();
			ground_item();
			bodyId = 6;
			onEnterFrame = function () {
				onscreen_check();
				if (onscreen and !_root.game_paused and !_root.msgbox._visible) {
					if (life > 0) {
						dealDamage(1, 0);
						dealDamage(1, -hei);
						if (freezeCount == 0) {
							if (_root.holder.player._x > _x + 50) {
								_xscale = -100;
							} else {
								if (_root.holder.player._x < _x - 50) {
									_xscale = 100;
								}
							}
							++attCount;
							if (attCount > attLim) {
								if (en._currentframe == 1) {
									en.gotoAndStop(2);
								}
								if (en.att._currentframe == 17) {
									dir = _xscale / Math.abs(_xscale);
									_root.createCaveSpit2(_x, _y - hei - 4, -dir);
									_root.playsound('hanger1Sound');
									rnd = random(100);
									if (rnd > 75) {
										setLim();
									}
								}
							} else {
								en.gotoAndStop(1);
							}
						} else {
							en.gotoAndStop('frozen');
							attCount = 0;
						}
						molotovDamage();
						iceDamage();
						explosionDamage();
						flashMe();
						thawMe();
						delayDamage();
					} else {
						if (alive) {
							_root.createBody(_x, _y, bodyId, false);
							_root.dropHealth(_x, _y - hei, 25);
							_root.create_blood(_x, _y - hei / 2, hei);
							this.removeMovieClip();
						}
					}
				}
			};
		}
		frame 15 {
			life = parseInt(specarr[4]);
			alive = true;
			bumpAmount = 0;
			damageDelay = 0;
			freezeCount = 0;
			xspeed = 0;
			yspeed = 0;
			maxspeed = 4;
			acc = 0.8;
			wid = 20;
			hei = 20;
			fallspeed = 0;
			ground_item();
			bodyId = 7;
			onEnterFrame = function () {
				onscreen_check();
				if (onscreen and !_root.game_paused and !_root.msgbox._visible) {
					if (life > 0) {
						dealDamage(1, -5);
						if (freezeCount == 0) {
							en.gotoAndStop('walking');
							if (random(200) > 198) {
								_root.playsound('snake1Sound');
							}
							if (_root.effectInvisibility == 0) {
								if (_x < _root.holder.player._x - _root.tilesize / 2) {
									if (xspeed < maxspeed) {
										xspeed += acc;
										_xscale = 100;
									}
								} else {
									if (_x > _root.holder.player._x + _root.tilesize / 2) {
										if (xspeed > -maxspeed) {
											xspeed -= acc;
											_xscale = -100;
										}
									}
								}
								if (!_root.holder.ground.hitTest(_x + _root.holder._x + xspeed, _y + _root.holder._y - hei / 2, true) and _root.holder.ground.hitTest(_x + _root.holder._x + xspeed, _y + _root.holder._y + 5, true)) {
									_x = _x + xspeed;
								}
							}
						} else {
							en.gotoAndStop('frozen');
						}
						fallFunc();
						molotovDamage();
						iceDamage();
						explosionDamage();
						flashMe();
						bumpMe();
						thawMe();
						delayDamage();
						wallBlocks();
					} else {
						die();
					}
				}
				fallRemove();
			};
		}
		frame 16 {
			ground_item();
			hei = 128;
			wid = 30;
			blockwid = 96;
			en.gotoAndPlay(parseInt(specarr[4]));
			onEnterFrame = function () {
				if (!_root.game_paused) {
					en.play();
					if (attacking) {
						onscreen_check(1);
						if (en._currentframe == 75 and onscreen) {
							_root.playcrusher();
						}
						if (_root.damageDelay == 0 and _root.effectInvisibility == 0) {
							if (this.hitTest(_root.holder.player._x + _root.holder._x + wid / 2, _root.holder.player._y + _root.holder._y - hei / 2, true)) {
								trace('left');
								_root.xspeed = 0;
								_root.bumpAmount -= _root.standardBump;
								_root.shadeCount = 30;
								_root.takedamage(1);
							}
							if (this.hitTest(_root.holder.player._x + _root.holder._x - wid / 2, _root.holder.player._y + _root.holder._y - hei / 2, true)) {
								trace('right');
								_root.xspeed = 0;
								_root.bumpAmount += _root.standardBump;
								_root.shadeCount = 30;
								_root.takedamage(1);
							}
						}
						attacking = false;
					}
					if (this.hitTest(_root.holder.player._x + _root.holder._x + wid / 2, _root.holder.player._y + _root.holder._y - hei / 2, true)) {
						_root.xspeed = 0;
						_root.holder.player._x = _x - blockwid / 2;
					}
					if (this.hitTest(_root.holder.player._x + _root.holder._x - wid / 2, _root.holder.player._y + _root.holder._y - hei / 2, true)) {
						_root.xspeed = 0;
						_root.holder.player._x = _x + blockwid / 2;
					}
				} else {
					en.stop();
				}
			};
		}
		frame 17 {
			stop();
			myframe = _currentframe;
			ylim = parseInt(specarr[4]);
			ground_item();
			onEnterFrame = function () {
				if (!_root.game_paused) {
					if (_root.holder.player._x > _x - _width and _root.holder.player._x < _x + _width and _root.holder.player._y < _y + 5 and _root.holder.player._y > _y - ylim) {
						ydiff = (random(100) / 100 + 0.5) * ((_root.holder.player._y - (_y - ylim)) / ylim) - 0.2;
						_root.holder.player._y -= _root.fallspeed * fallRatio + 10 * ydiff * fallRatio;
						if (fallRatio < 1) {
							fallRatio += 0.1;
						}
					} else {
						fallRatio = 0;
					}
				}
			};
		}
		frame 18 {
			ground_item();
		}
		frame 19 {
			life = 1;
			alive = true;
			bumpAmount = 0;
			damageDelay = 0;
			freezeCount = 0;
			_xscale = parseInt(specarr[4]);
			xspeed = 6 * _xscale / Math.abs(_xscale);
			dir = _xscale / Math.abs(_xscale);
			yspeed = 0;
			acc = 0.8;
			wid = 32;
			hei = 16;
			fallspeed = 0;
			ground_item();
			onEnterFrame = function () {
				if (!_root.game_paused and !_root.msgbox._visible) {
					if (life > 0) {
						adj = -5;
						if (_root.damageDelay == 0 and freezeCount == 0 and _root.effectInvisibility == 0) {
							if (this.hitTest(_root.holder.player._x + _root.holder._x - wid, _root.holder.player._y + _root.holder._y + adj, true) and dir == -1) {
								_root.xspeed = 0;
								_root.bumpAmount -= _root.standardBump;
								_root.shadeCount = 30;
								_root.takedamage(1);
							}
							if (this.hitTest(_root.holder.player._x + _root.holder._x - wid, _root.holder.player._y + _root.holder._y + adj, true) and dir == 1) {
								_root.xspeed = 0;
								_root.bumpAmount += _root.standardBump;
								_root.shadeCount = 30;
								_root.takedamage(1);
							}
						}
						if (freezeCount == 0) {
							_x = _x + xspeed;
							wid = (_width / 2) * dir;
							if (_root.holder.ground.hitTest(_x + _root.holder._x + xspeed + wid, _y + _root.holder._y - hei / 2, true) or !_root.holder.ground.hitTest(_x + _root.holder._x + xspeed + wid, _y + _root.holder._y + 5, true)) {
								xspeed *= -1;
								_xscale = _xscale * -1;
								dir *= -1;
							}
						} else {}
					} else {}
				}
			};
		}
		frame 20 {
			life = parseInt(specarr[4]);
			alive = true;
			bumpAmount = 0;
			damageDelay = 0;
			freezeCount = 0;
			xspeed = 0;
			yspeed = 0;
			maxspeed = 3;
			acc = 0.05;
			wid = 20;
			hei = 38;
			ydip = 0;
			ydipdir = 1;
			maxydip = 2;
			bodyId = 9;
			attCount = 0;
			attLim = framerate * 5;
			onEnterFrame = function () {
				onscreen_check();
				if (onscreen and !_root.game_paused and !_root.msgbox._visible) {
					if (life > 0) {
						dealDamage(1, 0);
						dealDamage(1, -hei);
						trace(freezeCount);
						if (freezeCount == 0) {
							++attCount;
							if (attCount > attLim) {
								if (en._currentframe == 1) {
									en.gotoAndStop('attack');
								}
								if (en.att._currentframe == 35) {
									_root.createDroneBullet(_x - 20 * _xscale / Math.abs(_xscale), _y);
								}
								if (en.att._currentframe == 38) {
									rnd = random(100);
									if (rnd > 50) {
										attCount = 0;
									}
								}
							} else {
								en.gotoAndStop('fly');
							}
							if (_root.effectInvisibility == 0) {
								_y = _y + ydip;
								ydip += ydipdir / 5;
								if (ydip > maxydip or ydip < -maxydip) {
									ydipdir *= -1;
								}
								if (_x < _root.holder.player._x - _root.tilesize / 2) {
									if (xspeed < maxspeed) {
										xspeed += acc;
										_xscale = -100;
									}
								} else {
									if (_x > _root.holder.player._x + _root.tilesize / 2) {
										if (xspeed > -maxspeed) {
											xspeed -= acc;
											_xscale = 100;
										}
									}
								}
								if (_y < _root.holder.player._y - _root.tilesize / 2 - _root.tilesize * 4) {
									if (yspeed < maxspeed / 5) {
										yspeed += acc / 5;
									}
								} else {
									if (_y > _root.holder.player._y + _root.tilesize / 2 - _root.tilesize * 4) {
										if (yspeed > -maxspeed / 5) {
											yspeed -= acc / 5;
										}
									}
								}
								if (!_root.holder.ground.hitTest(_x + _root.holder._x + xspeed * 10, _y + _root.holder._y - hei / 2, true)) {
									_x = _x + xspeed;
								}
								if (!_root.holder.ground.hitTest(_x + _root.holder._x, _y + _root.holder._y - hei / 2 + yspeed * 10, true)) {
									_y = _y + yspeed;
								}
							}
						} else {
							en.gotoAndStop('frozen');
							if (freezeCount < 2 and freezeCount > 0) {
								attCount = 0;
							}
						}
						molotovDamage();
						iceDamage(0.5);
						explosionDamage();
						flashMe();
						bumpMe();
						thawMe();
						delayDamage();
						wallBlocks();
					} else {
						die(true, 'sparkblood');
					}
				}
				fallRemove();
			};
		}
		frame 21 {
			_width = tilesize * specarr[4];
			_height = tilesize * specarr[5];
			targframe = specarr[6];
			targx = specarr[7];
			targy = specarr[8];
			shifting = false;
			onEnterFrame = function () {
				if (!_root.game_paused and !_root.msgbox._visible) {
					if (allowEnter and !_root.teleporting and this.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y, true)) {
						_root.giveExclamation();
						if (Key.isDown(83) or Key.isDown(40)) {
							if (!shifting) {
								_root.playsound('teleport1Sound');
							}
							shifting = true;
							shiftdelay = 20;
							_root.teleporting = true;
						}
					}
					if (shifting) {
						_root.holder.exclamation.removeMovieClip();
						_root.xspeed = 0;
						--shiftdelay;
						if (shiftdelay < 0) {
							_root.shift_frame(targframe, targx, targy);
						}
					}
				}
				if (!Key.isDown(83) and !Key.isDown(40)) {
					allowEnter = true;
				}
			};
		}
		frame 22 {
			life = parseInt(specarr[4]);
			alive = true;
			bumpAmount = 0;
			damageDelay = 0;
			freezeCount = 0;
			xspeed = 0;
			yspeed = 0;
			maxspeed = 3;
			acc = 0.8;
			wid = 20;
			hei = 20;
			fallspeed = 0;
			ground_item();
			bodyId = 10;
			slimeCount = 0;
			onEnterFrame = function () {
				onscreen_check();
				if (onscreen and !_root.game_paused and !_root.msgbox._visible) {
					if (life > 0) {
						dealDamage(1, 0);
						dealDamage(1, -hei);
						if (freezeCount == 0) {
							en.gotoAndStop('walking');
							if (_root.effectInvisibility == 0) {
								++slimeCount;
								if (slimeCount >= tilesize / maxspeed - 2) {
									_root.createAcid(_x, _y + 2);
									slimeCount = 0;
								}
								if (_x < _root.holder.player._x - _root.tilesize / 2) {
									if (xspeed < maxspeed) {
										xspeed += acc;
										_xscale = -100;
									}
								} else {
									if (_x > _root.holder.player._x + _root.tilesize / 2) {
										if (xspeed > -maxspeed) {
											xspeed -= acc;
											_xscale = 100;
										}
									}
								}
								if (!_root.holder.ground.hitTest(_x + _root.holder._x + xspeed, _y + _root.holder._y - hei / 2, true) and _root.holder.ground.hitTest(_x + _root.holder._x + xspeed, _y + _root.holder._y + 5, true)) {
									_x = _x + xspeed;
								}
							}
						} else {
							en.gotoAndStop('frozen');
						}
						fallFunc();
						molotovDamage();
						iceDamage();
						explosionDamage();
						flashMe();
						bumpMe();
						thawMe();
						delayDamage();
						wallBlocks();
					} else {
						die();
					}
				}
				fallRemove();
			};
		}
		frame 23 {
			wid = tilesize * specarr[4];
			hei = tilesize * specarr[5];
			targnum = specarr[4] * specarr[5];
			actionsid = parseInt(specarr[6]);
			warning = false;
			if (!_root.actions[actionsid]) {
				i = 0;
				while (i < targnum) {
					++_root.count;
					attachMovie('gascloud_one', 'cloud' + i, _root.count);
					this['cloud' + i]._x = -wid / 2 + random(wid);
					this['cloud' + i]._y = -hei / 2 + random(hei);
					this['cloud' + i].xspeed = random(10) / 10 - 0.5;
					this['cloud' + i].yspeed = random(10) / 10 - 0.5;
					this['cloud' + i].alpharate = random(40) / 10 + 0.5;
					this['cloud' + i].onEnterFrame = function () {
						if (oxygen) {
							this._alpha -= this.alpharate;
							if (this._alpha <= 0) {
								this.removeMovieClip();
							}
						} else {
							if (this.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y, true)) {
								_root.xspeed = 0;
								_root.bumpAmount -= _root.standardBump;
								_root.shadeCount = 30;
								_root.takedamage(_root.maxhealth + 1);
							}
							if (!warning and (this.hitTest(_root.holder.player._x + _root.holder._x + tilesize * 3, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true) or this.hitTest(_root.holder.player._x + _root.holder._x - tilesize * 3, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true))) {
								warning = true;
								mesarr = new Array();
								mesarr[0] = 'Whoa, those fumes look noxious. They\'ll';
								mesarr[1] = 'probably kill me instantly if I get too';
								mesarr[2] = 'close.';
								_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'hero');
							}
						}
						this._x += this.xspeed;
						this._y += this.yspeed;
						if (this._x > wid / 2) {
							this.xspeed -= 0.25;
						}
						if (this._x < -wid / 2) {
							this.xspeed += 0.25;
						}
						if (this._y > hei / 2) {
							this.yspeed -= 0.25;
						}
						if (this._y < -hei / 2) {
							this.yspeed += 0.25;
						}
					};
					++i;
				}
				onEnterFrame = function () {
					if (this.hitTest(_root.holder.cloudsOxygen)) {
						oxygen = true;
						_root.actions[actionsid] = true;
					}
				};
			}
		}
		frame 24 {
			life = parseInt(specarr[4]);
			alive = true;
			bumpAmount = 0;
			damageDelay = 0;
			freezeCount = 0;
			xspeed = 0;
			yspeed = 0;
			maxspeed = 1;
			acc = 0.8;
			fallspeed = 0;
			wid = tilesize * 2;
			hei = tilesize * 3;
			i = 0;
			while (i < 10) {
				++_root.count;
				attachMovie('fly1', 'fly' + i, _root.count);
				this['fly' + i]._x = -wid / 2 + random(wid);
				this['fly' + i]._y = -hei / 2 + random(hei);
				this['fly' + i].xspeed = random(20) / 10 - 1;
				this['fly' + i].yspeed = random(20) / 10 - 1;
				this['fly' + i].mywid = this['fly' + i]._width;
				this['fly' + i].onEnterFrame = function () {
					if (freezeCount == 0) {
						this.gotoAndStop(1);
						this._x += this.xspeed;
						this._y += this.yspeed;
						if (Math.abs(this.xspeed) < 1) {
							this.xspeed *= 1.05;
						}
						if (Math.abs(this.yspeed) < 1) {
							this.yspeed *= 1.05;
						}
						if (this._x > wid / 2) {
							this.xspeed -= 0.1;
						}
						if (this._x < -wid / 2) {
							this.xspeed += 0.1;
						}
						if (this._y > hei / 2) {
							this.yspeed -= 0.1;
						}
						if (this._y < -hei / 2) {
							this.yspeed += 0.1;
						}
						this._xscale = scl;
					} else {
						this.gotoAndStop(2);
					}
				};
				++i;
			}
			onEnterFrame = function () {
				onscreen_check();
				if (onscreen and !_root.game_paused and !_root.msgbox._visible) {
					molotovDamage();
					iceDamage();
					explosionDamage();
					flashMe();
					bumpMe();
					thawMe();
					delayDamage();
					if (freezeCount == 0 and _root.effectInvisibility == 0) {
						if (_root.buzz1Sound.position == 0 or _root.buzz1Sound.position == _root.buzz1Sound.duration) {
							_root.playsound('buzz1Sound');
						}
						dealDamage(1, tilesize * 1.75, tilesize);
						dealDamage(1, 0, tilesize);
						dealDamage(1, -tilesize * 1.5, tilesize);
						_x = _x + xspeed;
						_y = _y + yspeed * 0.25;
						if (_x < _root.holder.player._x - _root.tilesize / 2) {
							if (xspeed < maxspeed) {
								xspeed += acc;
								scl = -100;
							}
						} else {
							if (_x > _root.holder.player._x + _root.tilesize / 2) {
								if (xspeed > -maxspeed) {
									xspeed -= acc;
									scl = 100;
								}
							}
						}
						if (_y < _root.holder.player._y - _root.tilesize / 2 - tilesize * 2) {
							if (yspeed < maxspeed) {
								yspeed += acc * 0.1;
							}
						} else {
							if (_y > _root.holder.player._y + _root.tilesize / 2 - tilesize * 2) {
								if (yspeed > -maxspeed) {
									yspeed -= acc * 0.1;
								}
							}
						}
					}
				}
				if (life <= 0) {
					_root.dropHealth(_x, _y, 25);
					_root.create_blood(_x, _y, hei, 'blood');
					this.removeMovieClip();
				}
			};
		}
		frame 25 {
			life = parseInt(specarr[4]);
			alive = true;
			bumpAmount = 0;
			damageDelay = 0;
			freezeCount = 0;
			xspeed = 0;
			yspeed = 0;
			maxspeed = 2;
			acc = 0.5;
			wid = 30;
			hei = 80;
			fallspeed = 0;
			ground_item();
			bodyId = 11;
			en.gotoAndStop(1);
			onEnterFrame = function () {
				onscreen_check();
				if (onscreen and !_root.game_paused and !_root.msgbox._visible) {
					if (life > 0) {
						dealDamage(1, 0);
						dealDamage(1, -hei);
						if (freezeCount == 0) {
							if (_root.effectInvisibility == 0) {
								if (Math.abs(_root.holder.player._x - _x) > tilesize * 3 and (en._currentframe != 2 or en.att._currentframe > 23)) {
									if (_x < _root.holder.player._x - _root.tilesize / 2) {
										if (xspeed < maxspeed) {
											xspeed += acc;
											_xscale = 100;
										}
									} else {
										if (_x > _root.holder.player._x + _root.tilesize / 2) {
											if (xspeed > -maxspeed) {
												xspeed -= acc;
												_xscale = -100;
											}
										}
									}
									if (!_root.holder.ground.hitTest(_x + _root.holder._x + xspeed, _y + _root.holder._y - hei / 2, true) and _root.holder.ground.hitTest(_x + _root.holder._x + xspeed, _y + _root.holder._y + 5, true)) {
										_x = _x + xspeed;
										en.gotoAndStop('walking');
									} else {
										en.gotoAndStop('standing');
									}
								} else {
									en.gotoAndStop('attacking');
									if (_root.damageDelay == 0 and freezeCount == 0 and _root.effectInvisibility == 0) {
										if (en.att._currentframe == 1) {
											_root.playsound('gorilla1Sound');
										}
										if (en.att._currentframe == 10) {
											if (_xscale < 0) {
												if (_root.holder.player.hitbox.hitTest(_x + _root.holder._x - 90, _y + _root.holder._y - 50, true)) {
													_root.xspeed = 0;
													_root.bumpAmount -= _root.standardBump;
													_root.shadeCount = 30;
													_root.takedamage(2);
												}
											} else {
												if (_root.holder.player.hitbox.hitTest(_x + _root.holder._x + 90, _y + _root.holder._y - 50, true)) {
													_root.xspeed = 0;
													_root.bumpAmount += _root.standardBump;
													_root.shadeCount = 30;
													_root.takedamage(2);
												}
											}
										}
									}
								}
							} else {
								en.gotoAndStop('standing');
							}
						} else {
							en.gotoAndStop('frozen');
						}
						fallFunc();
						molotovDamage();
						iceDamage(0.2);
						explosionDamage();
						flashMe();
						bumpMe(0.5);
						thawMe();
						delayDamage();
						wallBlocks();
					} else {
						die();
					}
				}
				fallRemove();
			};
		}
		frame 26 {
			life = parseInt(specarr[4]);
			alive = true;
			bumpAmount = 0;
			damageDelay = 0;
			freezeCount = 0;
			xspeed = 0;
			yspeed = 0;
			maxspeed = 8;
			acc = 0.8;
			wid = 20;
			hei = 30;
			fallspeed = 0;
			jumpcount = random(40);
			ground_item();
			bodyId = 12;
			onEnterFrame = function () {
				onscreen_check(5);
				if (onscreen and !_root.game_paused and !_root.msgbox._visible) {
					if (life > 0) {
						dealDamage(1, 0);
						dealDamage(1, -hei);
						if (freezeCount == 0) {
							if (jumping) {
								en.gotoAndStop('jumping');
								if (en.jump._currentframe == 1) {
									_root.playenemyjumper();
								}
								if (en.jump._currentframe == en.jump._totalframes) {
									if (_root.effectInvisibility == 0 and !_root.holder.ground.hitTest(_x + _root.holder._x + xspeed, _y + _root.holder._y - hei / 2, true)) {
										_x = _x + xspeed;
									}
									++fallspeed;
									_y = _y + fallspeed;
									if (_root.holder.ground.hitTest(_x + _root.holder._x, _y + _root.holder._y + fallspeed, true)) {
										while (!_root.holder.ground.hitTest(_x + _root.holder._x, _y + _root.holder._y, true)) {
											_y = _y + 1;
										}
										_y = int(_y);
										jumping = false;
									}
								}
							} else {
								en.gotoAndStop('standing');
								if (_root.effectInvisibility == 0) {
									++jumpcount;
								}
								if (jumpcount > 40) {
									jumping = true;
									jumpcount = random(40);
									fallspeed = -15 - random(10) / 10;
									if (_x < _root.holder.player._x - _root.tilesize / 2) {
										xspeed = maxspeed * 0.5 + random(50) / 100;
										_xscale = 100;
									} else {
										if (_x > _root.holder.player._x + _root.tilesize / 2) {
											xspeed = -maxspeed * 0.5 + random(50) / 100;
											_xscale = -100;
										}
									}
								}
							}
						} else {
							en.gotoAndStop('frozen');
						}
						molotovDamage();
						iceDamage();
						explosionDamage();
						flashMe();
						bumpMe();
						thawMe();
						delayDamage();
						wallBlocks();
					} else {
						die();
					}
				}
				fallRemove();
			};
		}
		frame 27 {
			function rollX() {
				_x = random(_root.stagewidth) - _root.holder._x;
			}
			function rollY() {
				_y = random(_root.stageheight) - _root.holder._y;
			}
			life = parseInt(specarr[4]);
			alive = true;
			bumpAmount = 0;
			damageDelay = 0;
			freezeCount = 0;
			xspeed = 0;
			yspeed = 0;
			maxspeed = 3;
			acc = 0.8;
			wid = 20;
			hei = 45;
			fallspeed = 0;
			telecount = 0;
			ground_item();
			bodyId = 13;
			invisiblecount = 0;
			firstroll = false;
			onEnterFrame = function () {
				if (en._currentframe == 3 or en._currentframe == 4) {
					++invisiblecount;
				} else {
					invisiblecount = 0;
				}
				onscreen_check();
				if (onscreen and !_root.game_paused and !_root.msgbox._visible) {
					if (life > 0) {
						if (en._currentframe == 1 or en._currentframe == 2) {
							dealDamage(1, 0);
							dealDamage(1, -hei);
						}
						if (freezeCount == 0) {
							if (_root.effectInvisibility == 0) {
								if (teleporting) {
									en.gotoAndStop('teleportingin');
									if (en.tele._currentframe == 1) {
										_root.playsound('priest1Sound');
									}
									if (en.tele._currentframe == en.tele._totalframes) {
										teleporting = false;
										firstroll = false;
									}
								} else {
									++telecount;
									if (telecount > 120) {
										en.gotoAndStop('teleporting');
										if (en.tele._currentframe == 2) {
											_root.playsound('priest1Sound');
										}
										if (en.tele._currentframe == en.tele._totalframes) {
											if (!firstroll) {
												rollX();
												rollY();
												firstroll = true;
											}
											if (_root.holder.ground.hitTest(_x + _root.holder._x, _y + _root.holder._y - 5, true) or this.hitTest(_root.holder.player.hitbox)) {
												rollX();
												rollY();
											} else {
												while (!_root.holder.ground.hitTest(_x + _root.holder._x, _y + _root.holder._y, true)) {
													if (!_root.holder.ground.hitTest(_x + _root.holder._x, _y + _root.holder._y, true)) {
														_y = _y + 30;
														if (_y > _root.stageheight - _root.holder._y or _y < 30) {
															rollX();
															rollY();
														}
													}
													++timeOut;
													if (timeOut > 300) {
														break;
													}
												}
												_y = _y - 30;
												ground_item();
												if (!_root.holder.ground.hitTest(_x + _root.holder._x, _y + _root.holder._y - 5, true) and !this.hitTest(_root.holder.player.hitbox) and _y < _root.stageheight - _root.holder._y) {
													teleporting = true;
													telecount = random(40);
												}
											}
										}
									} else {
										fallFunc();
										if (Math.abs(_root.holder.player._x - _x) > tilesize * 2 and en._currentframe != 5 or en.att._currentframe > 13) {
											en.gotoAndStop('walking');
											if (_x < _root.holder.player._x - _root.tilesize / 2) {
												if (xspeed < maxspeed) {
													xspeed += acc;
													_xscale = 100;
												}
											} else {
												if (_x > _root.holder.player._x + _root.tilesize / 2) {
													if (xspeed > -maxspeed) {
														xspeed -= acc;
														_xscale = -100;
													}
												}
											}
											if (!_root.holder.ground.hitTest(_x + _root.holder._x + xspeed, _y + _root.holder._y - hei / 2, true) and _root.holder.ground.hitTest(_x + _root.holder._x + xspeed, _y + _root.holder._y + 5, true)) {
												_x = _x + xspeed;
											}
										} else {
											en.gotoAndStop('attacking');
											if (_root.damageDelay == 0 and freezeCount == 0 and _root.effectInvisibility == 0) {
												if (en.att._currentframe == 1) {
													_root.playsound('priest2Sound');
												}
												if (en.att._currentframe == 6) {
													if (_xscale < 0) {
														if (_root.holder.player.hitbox.hitTest(_x + _root.holder._x - 64, _y + _root.holder._y - 50, true)) {
															_root.xspeed = 0;
															_root.bumpAmount -= _root.standardBump;
															_root.shadeCount = 30;
															_root.takedamage(2);
														}
													} else {
														if (_root.holder.player.hitbox.hitTest(_x + _root.holder._x + 64, _y + _root.holder._y - 50, true)) {
															_root.xspeed = 0;
															_root.bumpAmount += _root.standardBump;
															_root.shadeCount = 30;
															_root.takedamage(2);
														}
													}
												}
											}
										}
									}
								}
							} else {
								fallFunc();
								en.gotoAndStop('standing');
							}
						} else {
							fallFunc();
							en.gotoAndStop('frozen');
						}
						molotovDamage();
						iceDamage();
						explosionDamage();
						flashMe();
						bumpMe(0.8);
						thawMe();
						delayDamage();
						wallBlocks();
					} else {
						die();
					}
				}
				fallRemove();
			};
		}
		frame 28 {
			id = parseInt(specarr[4]);
			ground_item();
			_y = _y - tilesize;
			onEnterFrame = function () {
				if (!_root.actions[id]) {
					if (this.hitTest(_root.holder.player)) {
						_root.givemedal(13);
						_root.actions[id] = true;
						++_root.maxhealth;
						++_root.health;
						++_root.count;
						_root.playsound('healthpickup1Sound');
						_root.health = _root.maxhealth;
						_root.clear_life();
						_root.load_life();
						if (_root.maxhealth == 10 or _root.maxhealth == 15) {
							_root.givemedal(13);
							_root.givemedal(14);
						}
						this.removeMovieClip();
					}
				} else {
					this.removeMovieClip();
				}
			};
		}
		frame 29 {
			life = parseInt(specarr[4]);
			alive = true;
			bumpAmount = 0;
			damageDelay = 0;
			freezeCount = 0;
			xspeed = 0;
			yspeed = 0;
			maxspeed = 3 * (0.8 + random(40) / 100);
			acc = 1.2 * (0.8 + random(40) / 100);
			wid = 60;
			hei = 20;
			fallspeed = 0;
			ground_item();
			bodyId = 14;
			jumping = false;
			shooting = false;
			shootbreather = 0;
			_root.military1arr.push(this);
			onEnterFrame = function () {
				onscreen_check(2);
				if (onscreen and !_root.game_paused and !_root.msgbox._visible) {
					if (life > 0) {
						dealDamage(1, 0);
						dealDamage(1, -hei);
						if (freezeCount == 0) {
							if (!shooting) {
								if (_root.effectInvisibility == 0) {
									if (_x < _root.holder.player._x - _root.tilesize / 2) {
										if (xspeed < maxspeed) {
											xspeed += acc;
											_xscale = 100;
										}
									} else {
										if (_x > _root.holder.player._x + _root.tilesize / 2) {
											if (xspeed > -maxspeed) {
												xspeed -= acc;
												_xscale = -100;
											}
										}
									}
									if (!_root.holder.ground.hitTest(_x + _root.holder._x + xspeed, _y + _root.holder._y - hei / 2, true)) {
										_x = _x + xspeed;
									}
									if (!jumping and !shooting) {
										en.gotoAndStop('walking');
									}
								}
								if (!jumping and !shooting) {
									--shootbreather;
									if (_root.holder.ground.hitTest(_x + _root.holder._x - wid / 2, _y + _root.holder._y - 5, true) or _root.holder.ground.hitTest(_x + _root.holder._x + wid / 2, _y + _root.holder._y - 5, true)) {
										jumping = true;
										fallspeed = -10 - random(10) / 10;
									}
									arrlen = _root.military2arr.length;
									i = 0;
									while (i < arrlen) {
										if (shootbreather <= 0 and _root.military2arr[i].onscreen and _root.military2arr[i]._y > _y - tilesize * 2 and _root.military2arr[i]._y < _y + tilesize) {
											shooting = true;
											if (_root.military2arr[i]._x > _x) {
												_xscale = 100;
											} else {
												_xscale = -100;
											}
											break;
										}
										++i;
									}
									if (shootbreather <= 0 and _root.holder.player._y > _y - tilesize * 2 and _root.holder.player._y < _y + tilesize) {
										shooting = true;
									}
								}
							}
							if (shooting) {
								en.gotoAndStop('attacking');
								if (en.att._currentframe == en.att._totalframes) {
									shooting = false;
									shootbreather = random(50);
								}
								if (en.att._currentframe == en.att._totalframes - 2) {
									dir = _xscale / Math.abs(_xscale);
									_root.playsoldiershoot();
									_root.createMilitaryBullet(_x + 38 * dir, _y - 38, dir, 1);
								}
							}
							if (jumping) {
								if (fallspeed < 0) {
									en.gotoAndStop('jumping_up');
								} else {
									en.gotoAndStop('jumping_down');
								}
								++fallspeed;
								_y = _y + fallspeed;
								if (_root.holder.ground.hitTest(_x + _root.holder._x, _y + _root.holder._y + fallspeed, true)) {
									while (!_root.holder.ground.hitTest(_x + _root.holder._x, _y + _root.holder._y, true)) {
										_y = _y + 1;
									}
									_y = int(_y);
									jumping = false;
								}
							}
						} else {
							en.gotoAndStop('frozen');
						}
						if (!jumping) {
							fallFunc();
						}
						molotovDamage();
						iceDamage();
						explosionDamage();
						flashMe();
						bumpMe();
						thawMe();
						delayDamage();
						wallBlocks();
					} else {
						if (alive) {
							if (bloodtype == null) {
								bloodtype = 'blood';
							}
							_root.createBody(_x, _y, bodyId, fall, _xscale);
							_root.dropHealth(_x, _y, 100);
							_root.create_blood(_x, _y, hei, bloodtype);
							arrlen = _root.military1arr.length;
							i = 0;
							while (i < arrlen) {
								if (_root.military1arr[i] == this) {
									_root.military1arr.splice(i, 1);
									break;
								}
								++i;
							}
							this.removeMovieClip();
						}
					}
				}
				fallRemove();
			};
		}
		frame 30 {
			life = parseInt(specarr[4]);
			alive = true;
			bumpAmount = 0;
			damageDelay = 0;
			freezeCount = 0;
			xspeed = 0;
			yspeed = 0;
			maxspeed = 3 * (0.8 + random(40) / 100);
			acc = 1.2 * (0.8 + random(40) / 100);
			wid = 20;
			hei = 60;
			fallspeed = 0;
			ground_item();
			bodyId = 15;
			jumping = false;
			shooting = false;
			shootbreather = 0;
			_root.military2arr.push(this);
			onEnterFrame = function () {
				onscreen_check(2);
				if (onscreen and !_root.game_paused and !_root.msgbox._visible) {
					if (life > 0) {
						dealDamage(1, 0);
						dealDamage(1, -hei);
						if (freezeCount == 0) {
							if (!shooting) {
								if (_root.effectInvisibility == 0) {
									if (_x < _root.holder.player._x - _root.tilesize / 2) {
										if (xspeed < maxspeed) {
											xspeed += acc;
											_xscale = 100;
										}
									} else {
										if (_x > _root.holder.player._x + _root.tilesize / 2) {
											if (xspeed > -maxspeed) {
												xspeed -= acc;
												_xscale = -100;
											}
										}
									}
									if (!_root.holder.ground.hitTest(_x + _root.holder._x + xspeed, _y + _root.holder._y - hei / 2, true)) {
										_x = _x + xspeed;
									}
									if (!jumping and !shooting) {
										en.gotoAndStop('walking');
									}
								}
								if (!jumping and !shooting) {
									--shootbreather;
									if (_root.holder.ground.hitTest(_x + _root.holder._x - wid / 2, _y + _root.holder._y - 5, true) or _root.holder.ground.hitTest(_x + _root.holder._x + wid / 2, _y + _root.holder._y - 5, true)) {
										jumping = true;
										fallspeed = -10 - random(10) / 10;
									}
									arrlen = _root.military1arr.length;
									i = 0;
									while (i < arrlen) {
										if (shootbreather <= 0 and _root.military1arr[i].onscreen and _root.military1arr[i]._y > _y - tilesize * 2 and _root.military1arr[i]._y < _y + tilesize) {
											shooting = true;
											if (_root.military1arr[i]._x > _x) {
												_xscale = 100;
											} else {
												_xscale = -100;
											}
											break;
										}
										++i;
									}
									if (shootbreather <= 0 and _root.holder.player._y > _y - tilesize * 2 and _root.holder.player._y < _y + tilesize) {
										shooting = true;
									}
								}
							}
							if (shooting) {
								en.gotoAndStop('attacking');
								if (en.att._currentframe == en.att._totalframes) {
									shooting = false;
									shootbreather = random(50);
								}
								if (en.att._currentframe == en.att._totalframes - 2) {
									dir = _xscale / Math.abs(_xscale);
									_root.playsoldiershoot();
									_root.createMilitaryBullet(_x + 38 * dir, _y - 38, dir, 2);
								}
							}
							if (jumping) {
								if (fallspeed < 0) {
									en.gotoAndStop('jumping_up');
								} else {
									en.gotoAndStop('jumping_down');
								}
								++fallspeed;
								_y = _y + fallspeed;
								if (_root.holder.ground.hitTest(_x + _root.holder._x, _y + _root.holder._y + fallspeed, true)) {
									while (!_root.holder.ground.hitTest(_x + _root.holder._x, _y + _root.holder._y, true)) {
										_y = _y + 1;
									}
									_y = int(_y);
									jumping = false;
								}
							}
						} else {
							en.gotoAndStop('frozen');
						}
						if (!jumping) {
							fallFunc();
						}
						molotovDamage();
						iceDamage();
						explosionDamage();
						flashMe();
						bumpMe();
						thawMe();
						delayDamage();
						wallBlocks();
					} else {
						if (alive) {
							if (bloodtype == null) {
								bloodtype = 'blood';
							}
							_root.createBody(_x, _y, bodyId, fall, _xscale);
							_root.dropHealth(_x, _y, 100);
							_root.create_blood(_x, _y, hei, bloodtype);
							arrlen = _root.military2arr.length;
							i = 0;
							while (i < arrlen) {
								if (_root.military2arr[i] == this) {
									_root.military2arr.splice(i, 1);
									break;
								}
								++i;
							}
							this.removeMovieClip();
						}
					}
				}
				fallRemove();
			};
		}
		frame 31 {
			_xscale = 100 * parseInt(specarr[4]);
			ground_item();
			onEnterFrame = function () {
				onscreen_check();
				if (onscreen and !_root.game_paused and !_root.msgbox._visible) {
					if (en._currentframe == 100) {
						_root.playsound('artillery1Sound');
					}
				}
			};
		}
		frame 32 {
			function rollX() {
				_x = random(_root.stagewidth) - _root.holder._x;
			}
			function rollY() {
				_y = random(_root.stageheight) - _root.holder._y;
			}
			bombing = false;
			bombDelay = random(90);
			firstroll = false;
			freezeCount = 0;
			wid = tilesize;
			attacking = false;
			onEnterFrame = function () {
				if (!_root.game_paused and !_root.msgbox._visible) {
					if (!bombing) {
						en._visible = false;
						en.gotoAndStop(1);
						--bombDelay;
						if (bombDelay <= 0) {
							rollX();
							rollY();
							if (!_root.holder.ground.hitTest(_x + _root.holder._x, _y + _root.holder._y - 5, true)) {
								timeout = 0;
								while (!_root.holder.ground.hitTest(_x + _root.holder._x, _y + _root.holder._y, true)) {
									_y = _y + 1;
									if (_root.holder.ground.hitTest(_x + _root.holder._x, _y + _root.holder._y, true)) {
										bombing = true;
										en._visible = true;
										en.gotoAndPlay(1);
										break;
									}
									++timeout;
									if (timeout > 500) {
										break;
									}
								}
							}
						}
					} else {
						if (en._currentframe == 65) {
							_root.playexplosion();
						}
						if (en._currentframe == en._totalframes - 1) {
							bombing = false;
							bombDelay = random(90);
						}
						if (attacking) {
							dealDamage(2, -5);
							dealDamage(2, -tilesize);
							dealDamage(2, -tilesize * 2);
							arrlen = _root.military1arr.length;
							i = 0;
							while (i < arrlen) {
								if (this.hitTest(_root.military1arr[i])) {
									_root.military1arr[i].life -= 10;
								}
								++i;
							}
							arrlen = _root.military2arr.length;
							i = 0;
							while (i < arrlen) {
								if (this.hitTest(_root.military2arr[i])) {
									_root.military2arr[i].life -= 10;
								}
								++i;
							}
						}
					}
				}
			};
		}
		frame 33 {
			ground_item(true);
			if (_parent._name == 'objects') {
				++_root.count;
				_root.holder.background.attachMovie('objects', 'door' + _root.count, _root.count);
				_root.holder.background['door' + _root.count].gotoAndStop(_currentframe);
				_root.holder.background['door' + _root.count]._x = _x;
				_root.holder.background['door' + _root.count]._y = _y;
				this.removeMovieClip();
			}
		}
		frame 34 {
			life = parseInt(specarr[4]);
			alive = true;
			bumpAmount = 0;
			damageDelay = 0;
			freezeCount = 0;
			xspeed = 0;
			yspeed = 0;
			maxspeed = 6 * (0.8 + random(40) / 100);
			acc = 1 * (0.8 + random(40) / 100);
			wid = 20;
			hei = 20;
			fallspeed = 0;
			ground_item();
			bodyId = 16;
			onEnterFrame = function () {
				onscreen_check(1);
				if (onscreen and !_root.game_paused and !_root.msgbox._visible) {
					if (life > 0) {
						if (freezeCount == 0) {
							if (_root.effectInvisibility == 0) {
								if (Math.abs(_root.holder.player._x - _x) > tilesize * 1.5 and !en.att._currentframe < 14) {
									dealDamage(1, -5);
									if (_x < _root.holder.player._x - _root.tilesize / 2) {
										if (xspeed < maxspeed) {
											xspeed += acc;
											_xscale = 100;
										}
									} else {
										if (_x > _root.holder.player._x + _root.tilesize / 2) {
											if (xspeed > -maxspeed) {
												xspeed -= acc;
												_xscale = -100;
											}
										}
									}
									if (!_root.holder.ground.hitTest(_x + _root.holder._x + xspeed, _y + _root.holder._y - hei / 2, true) and _root.holder.ground.hitTest(_x + _root.holder._x + xspeed, _y + _root.holder._y + 5, true)) {
										_x = _x + xspeed;
										en.gotoAndStop('walking');
									} else {
										en.gotoAndStop('standing');
									}
								} else {
									en.gotoAndStop('attacking');
									if (_root.damageDelay == 0 and freezeCount == 0 and _root.effectInvisibility == 0) {
										if (en.att._currentframe == 11) {
											_root.playsound('poisonhit1Sound');
											if (_xscale < 0) {
												if (_root.holder.player.hitbox.hitTest(_x + _root.holder._x - 40, _y + _root.holder._y - 40, true)) {
													_root.xspeed = 0;
													_root.bumpAmount -= _root.standardBump;
													_root.shadeCount = 30;
													_root.effectPoison += 149;
												}
											} else {
												if (_root.holder.player.hitbox.hitTest(_x + _root.holder._x + 40, _y + _root.holder._y - 40, true)) {
													_root.xspeed = 0;
													_root.bumpAmount += _root.standardBump;
													_root.shadeCount = 30;
													_root.effectPoison += 149;
												}
											}
										}
									}
								}
							} else {
								en.gotoAndStop('standing');
							}
						} else {
							en.gotoAndStop('frozen');
						}
						fallFunc();
						molotovDamage();
						iceDamage();
						explosionDamage();
						flashMe();
						bumpMe(0.9);
						thawMe();
						delayDamage();
						wallBlocks();
					} else {
						die();
					}
				} else {
					en.gotoAndStop(1);
				}
				fallRemove();
			};
		}
		frame 35 {
			ground_item();
			_x = Math.round(_x / tilesize) * tilesize;
			if (_parent._name == 'objects') {
				dir = parseInt(specarr[4]);
				if (dir > 0) {
					_xscale = 100;
				} else {
					_xscale = -100;
				}
				++_root.count;
				_root.holder.ground.attachMovie('objects', 'conveyor' + _root.count, _root.count);
				_root.holder.ground['conveyor' + _root.count].gotoAndStop(_currentframe);
				_root.holder.ground['conveyor' + _root.count]._x = _x;
				_root.holder.ground['conveyor' + _root.count]._y = _y;
				fr_rate = dir;
				if (fr_rate > 3 or fr_rate < -3) {
					fr_rate = 3;
				}
				trace('dir: ' + dir + ' fr_rate: ' + fr_rate);
				old_fr = fr_rate;
				fr_rate = Math.abs(Math.ceil(old_fr));
				trace(fr_rate);
				onEnterFrame = function () {
					if (!_root.game_paused) {
						if (this.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y + 5, true)) {
							_root.holder.player._x += 2 * dir;
						}
						en.gotoAndPlay(en._currentframe + fr_rate);
					}
				};
			}
		}
		frame 36 {
			if (_parent._name == 'objects') {
				_width = tilesize * specarr[4];
				_height = tilesize * specarr[5];
				targframe = specarr[6];
				targx = specarr[7];
				targy = specarr[8];
				trace(specarr);
				++_root.count;
				_root.holder.nohtobjects.attachMovie('objects', 'door' + _root.count, _root.count);
				_root.holder.nohtobjects['door' + _root.count].gotoAndStop(_currentframe);
				_root.holder.nohtobjects['door' + _root.count]._x = _x;
				_root.holder.nohtobjects['door' + _root.count]._y = _y;
				_root.holder.nohtobjects['door' + _root.count]._width = _width;
				_root.holder.nohtobjects['door' + _root.count]._height = _height;
				_root.holder.nohtobjects['door' + _root.count].targframe = targframe;
				_root.holder.nohtobjects['door' + _root.count].targx = targx;
				_root.holder.nohtobjects['door' + _root.count].targy = targy;
				this.removeMovieClip();
			}
			shifting = false;
			onEnterFrame = function () {
				if (shifting) {
					_root.ship_startx = targx;
					_root.ship_starty = targy;
					_root.shift_frame(targframe, 0, 0);
				}
				if (!_root.game_paused and !_root.msgbox._visible) {
					if (allowEnter and this.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y, true)) {
						_root.giveExclamation();
						if (Key.isDown(83) or Key.isDown(40)) {
							if (!shifting) {
								_root.playsound('door1Sound');
							}
							shifting = true;
						}
					}
				}
				if (!Key.isDown(83) and !Key.isDown(40)) {
					allowEnter = true;
				}
			};
		}
		frame 37 {
			life = parseInt(specarr[4]);
			alive = true;
			bumpAmount = 0;
			damageDelay = 0;
			freezeCount = 0;
			xspeed = 0;
			yspeed = 0;
			maxspeed = 2;
			acc = 0.025;
			wid = 30;
			hei = 38;
			ydip = 0;
			ydipdir = 1;
			maxydip = 2;
			bodyId = 18;
			attCount = 0;
			attLim = framerate * 5;
			onEnterFrame = function () {
				onscreen_check();
				if (onscreen and !_root.game_paused and !_root.msgbox._visible) {
					if (life > 0) {
						dealDamage(1, 0);
						dealDamage(1, -hei);
						if (freezeCount == 0) {
							++attCount;
							if (attCount > attLim and _root.effectInvisibility == 0) {
								if (en._currentframe == 1) {
									en.gotoAndStop('attack');
								}
								if (en.att._currentframe == 34) {
									if (random(100) > 50) {
										cdir = 1;
									} else {
										cdir = -1;
									}
								}
								if (en.att._currentframe == 35) {
									_root.createStarSpit(_x, _y, 0 * cdir, -6);
								} else {
									if (en.att._currentframe == 40) {
										_root.createStarSpit(_x, _y, 6 * cdir, -6);
									} else {
										if (en.att._currentframe == 45) {
											_root.createStarSpit(_x, _y, 6 * cdir, 0);
										} else {
											if (en.att._currentframe == 50) {
												_root.createStarSpit(_x, _y, 6 * cdir, 6);
											} else {
												if (en.att._currentframe == 55) {
													_root.createStarSpit(_x, _y, 0 * cdir, 6);
												} else {
													if (en.att._currentframe == 60) {
														_root.createStarSpit(_x, _y, -6 * cdir, 6);
													} else {
														if (en.att._currentframe == 65) {
															_root.createStarSpit(_x, _y, -6 * cdir, 0);
														} else {
															if (en.att._currentframe == 70) {
																_root.createStarSpit(_x, _y, -6 * cdir, -6);
															}
														}
													}
												}
											}
										}
									}
								}
								if (en.att._currentframe == 71) {
									rnd = random(100);
									if (rnd > 50) {
										attCount = 0;
									}
								}
							} else {
								en.gotoAndStop('fly');
							}
							_y = _y + ydip;
							ydip += ydipdir / 10;
							if (ydip > maxydip or ydip < -maxydip) {
								ydipdir *= -1;
							}
							if (_root.effectInvisibility == 0) {
								if (_x < _root.holder.player._x - _root.tilesize / 2) {
									if (xspeed < maxspeed) {
										xspeed += acc;
										_xscale = -100;
									}
								} else {
									if (_x > _root.holder.player._x + _root.tilesize / 2) {
										if (xspeed > -maxspeed) {
											xspeed -= acc;
											_xscale = 100;
										}
									}
								}
								if (_y < _root.holder.player._y - _root.tilesize / 2 - _root.tilesize * 5) {
									if (yspeed < maxspeed / 5) {
										yspeed += acc / 5;
									}
								} else {
									if (_y > _root.holder.player._y + _root.tilesize / 2 - _root.tilesize * 5) {
										if (yspeed > -maxspeed / 5) {
											yspeed -= acc / 5;
										}
									}
								}
								if (!_root.holder.ground.hitTest(_x + _root.holder._x + xspeed * 10, _y + _root.holder._y - hei / 2, true)) {
									_x = _x + xspeed;
								}
								if (!_root.holder.ground.hitTest(_x + _root.holder._x, _y + _root.holder._y - hei / 2 + yspeed * 10, true)) {
									_y = _y + yspeed;
								}
							}
						} else {
							attCount = 0;
							en.gotoAndStop('frozen');
						}
						molotovDamage();
						iceDamage();
						explosionDamage();
						flashMe();
						bumpMe();
						thawMe();
						delayDamage();
						wallBlocks();
					} else {
						die(true, 'blood');
					}
				}
				fallRemove();
			};
		}
		frame 38 {
			life = parseInt(specarr[4]);
			alive = true;
			bumpAmount = 0;
			damageDelay = 0;
			freezeCount = 0;
			xspeed = 0;
			yspeed = 0;
			maxspeed = 1.5;
			acc = 0.02;
			wid = 60;
			hei = 120;
			ydip = 0;
			ydipdir = 1;
			maxydip = 2;
			bodyId = 19;
			attCount = 0;
			attLim = framerate * 5;
			onEnterFrame = function () {
				onscreen_check();
				if (onscreen and !_root.game_paused and !_root.msgbox._visible) {
					if (life > 0) {
						dealDamage(1, 0);
						dealDamage(1, -hei);
						dealDamage(1, -hei / 2);
						if (freezeCount == 0) {
							++attCount;
							if (attCount > attLim) {
								if (en._currentframe == 1) {
									en.gotoAndStop('attack');
								}
								if (en.att._currentframe == 34) {
									if (random(100) > 50) {
										cdir = 1;
									} else {
										cdir = -1;
									}
								}
								if (en.att._currentframe == 45) {
									_root.createSmallFlyer(_x, _y - 50);
								}
								if (en.att._currentframe == 51) {
									rnd = random(100);
									if (rnd > 30) {
										attCount = 0;
									}
								}
							} else {
								en.gotoAndStop('fly');
							}
							_y = _y + ydip;
							ydip += ydipdir / 15;
							if (ydip > maxydip or ydip < -maxydip) {
								ydipdir *= -1;
							}
							if (_root.effectInvisibility == 0) {
								if (_x < _root.holder.player._x - _root.tilesize / 2) {
									if (xspeed < maxspeed) {
										xspeed += acc;
										_xscale = -100;
									}
								} else {
									if (_x > _root.holder.player._x + _root.tilesize / 2) {
										if (xspeed > -maxspeed) {
											xspeed -= acc;
											_xscale = 100;
										}
									}
								}
								if (_y < _root.holder.player._y - _root.tilesize / 2 - _root.tilesize * 4) {
									if (yspeed < maxspeed / 5) {
										yspeed += acc / 5;
									}
								} else {
									if (_y > _root.holder.player._y + _root.tilesize / 2 - _root.tilesize * 4) {
										if (yspeed > -maxspeed / 5) {
											yspeed -= acc / 5;
										}
									}
								}
								if (!_root.holder.ground.hitTest(_x + _root.holder._x + xspeed * 10, _y + _root.holder._y - hei / 2, true)) {
									_x = _x + xspeed;
								}
								if (!_root.holder.ground.hitTest(_x + _root.holder._x, _y + _root.holder._y - hei / 2 + yspeed * 10, true)) {
									_y = _y + yspeed;
								}
							}
						} else {
							attCount = 0;
							en.gotoAndStop('frozen');
						}
						molotovDamage();
						iceDamage();
						explosionDamage();
						flashMe();
						bumpMe();
						thawMe();
						delayDamage();
						wallBlocks();
					} else {
						die(true, 'blood');
					}
				}
				fallRemove();
			};
		}
		frame 39 {
			life = parseInt(specarr[4]);
			alive = true;
			bumpAmount = 0;
			damageDelay = 0;
			freezeCount = 0;
			xspeed = 0;
			yspeed = 0;
			maxspeed = 3;
			acc = 0.05;
			wid = 30;
			hei = _height;
			bodyId = 20;
			_alpha = 0;
			onEnterFrame = function () {
				onscreen_check();
				if (onscreen and !_root.game_paused and !_root.msgbox._visible) {
					if (life > 0) {
						dealDamage(1, 0);
						dealDamage(1, -hei);
						if (_alpha < 100) {
							_alpha = _alpha + 2;
						}
						if (freezeCount == 0) {
							en.gotoAndStop('walking');
							if (_root.effectInvisibility == 0) {
								if (_x < _root.holder.player._x - _root.tilesize / 2) {
									if (xspeed < maxspeed) {
										xspeed += acc;
										_xscale = 100;
									}
								} else {
									if (_x > _root.holder.player._x + _root.tilesize / 2) {
										if (xspeed > -maxspeed) {
											xspeed -= acc;
											_xscale = -100;
										}
									}
								}
								if (_y < _root.holder.player._y - _root.tilesize / 2 - _root.tilesize) {
									if (yspeed < maxspeed) {
										yspeed += acc;
									}
								} else {
									if (_y > _root.holder.player._y + _root.tilesize / 2 - _root.tilesize) {
										if (yspeed > -maxspeed) {
											yspeed -= acc;
										}
									}
								}
								if (!_root.holder.ground.hitTest(_x + _root.holder._x + xspeed * 10, _y + _root.holder._y - hei / 2, true)) {
									_x = _x + xspeed;
								}
								if (!_root.holder.ground.hitTest(_x + _root.holder._x, _y + _root.holder._y - hei / 2 + yspeed * 10, true)) {
									_y = _y + yspeed;
								}
							}
						} else {
							en.gotoAndStop('frozen');
						}
						molotovDamage();
						iceDamage();
						explosionDamage();
						flashMe();
						bumpMe();
						thawMe();
						delayDamage();
						wallBlocks();
					} else {
						die();
					}
				}
				fallRemove();
			};
		}
		frame 40 {
			ground_item();
			_x = Math.round(_x / tilesize) * tilesize;
			if (_parent._name == 'objects') {
				startx = _x;
				starty = _y;
				xshift = parseInt(specarr[4]);
				yshift = parseInt(specarr[5]);
				xrange = parseInt(specarr[6]);
				yrange = parseInt(specarr[7]);
				startxdir = xshift;
				startydir = yshift;
				onEnterFrame = function () {
					if (!_root.game_paused) {
						if (_root.falldeath_count == 29) {
							_x = startx;
							_y = starty;
							xshift = startxdir;
							yshift = startydir;
						}
						_x = _x + xshift;
						_y = _y + yshift;
						if (xrange > 0) {
							if (_x > startx + xrange * tilesize or _x < startx) {
								xshift *= -1;
							}
						} else {
							if (_x < startx + xrange * tilesize or _x > startx) {
								xshift *= -1;
							}
						}
						if (yrange > 0) {
							if (_y > starty + yrange * tilesize or _y < starty) {
								yshift *= -1;
							}
						} else {
							if (_y < starty + yrange * tilesize or _y > starty) {
								yshift *= -1;
							}
						}
						if (this.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y + 5, true)) {
							_root.holder.player._x += xshift;
							_root.holder.player._y += yshift;
							_root.holder.player._y = _y - tilesize;
							_root.groundplayer();
						}
					}
				};
			}
		}
		frame 41 {
			ground_item(true);
			onEnterFrame = function () {
				if (_root.damageDelay == 0) {
					if (this.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y - 10, true)) {
						_root.xspeed = 0;
						_root.bumpAmount -= _root.standardBump * _root.holder.player._xscale / 100;
						_root.shadeCount = 30;
						_root.takedamage(_root.maxhealth * 2);
					}
				}
			};
		}
		frame 42 {
			stop();
			myframe = _currentframe;
			ylim = parseInt(specarr[4]);
			ground_item();
			onEnterFrame = function () {
				if (!_root.game_paused) {
					if (_root.holder.player._x > _x - _width * 1.5 and _root.holder.player._x < _x + _width * 1.5 and _root.holder.player._y < _y + 5 and _root.holder.player._y > _y - ylim) {
						ydiff = (random(100) / 100 + 0.5) * ((_root.holder.player._y - (_y - ylim)) / ylim) - 0.2;
						_root.holder.player._y -= _root.fallspeed * fallRatio + 10 * ydiff * fallRatio;
						if (fallRatio < 1) {
							fallRatio += 0.1;
						}
					} else {
						fallRatio = 0;
					}
				}
			};
		}
		frame 43 {
			life = parseInt(specarr[4]);
			alive = true;
			bumpAmount = 0;
			damageDelay = 0;
			freezeCount = 0;
			xspeed = 0;
			yspeed = 0;
			maxspeed = 3;
			acc = 1;
			wid = 20;
			hei = 60;
			fallspeed = 0;
			attacking = false;
			ground_item();
			bodyId = 21;
			onEnterFrame = function () {
				onscreen_check();
				if (onscreen and !_root.game_paused and !_root.msgbox._visible) {
					if (life > 0) {
						dealDamage(1, 0);
						dealDamage(1, -hei);
						if (freezeCount == 0) {
							if (_root.effectInvisibility == 0) {
								if ((Math.abs(_root.holder.player._x - _x) > tilesize * 3 or Math.abs(_root.holder.player._y - _y) > tilesize * 5) and !attacking) {
									if (_x < _root.holder.player._x - _root.tilesize / 2) {
										if (xspeed < maxspeed) {
											xspeed += acc;
											_xscale = 100;
										}
									} else {
										if (_x > _root.holder.player._x + _root.tilesize / 2) {
											if (xspeed > -maxspeed) {
												xspeed -= acc;
												_xscale = -100;
											}
										}
									}
									if (!_root.holder.ground.hitTest(_x + _root.holder._x + xspeed, _y + _root.holder._y - hei / 2, true) and _root.holder.ground.hitTest(_x + _root.holder._x + xspeed, _y + _root.holder._y + 5, true)) {
										_x = _x + xspeed;
										en.gotoAndStop('walking');
									} else {
										en.gotoAndStop('standing');
									}
									attacking = false;
									attCount = 0;
								} else {
									++attCount;
									if (!attacking) {
										boltPos = 0;
										attacking = true;
									}
									en.gotoAndStop('attacking');
									if (attCount == 10) {
										_root.playsound('zealot1Sound');
									}
									if (attCount == 17 or attCount == 24 or attCount == 31 or attCount == 38 or attCount == 45) {
										_root.createZealotBolt(_x + 32 + boltPos * tilesize, _y);
										_root.createZealotBolt(_x - 32 - boltPos * tilesize, _y);
										++boltPos;
									}
									if (attCount >= 46) {
										attCount = 0;
										attacking = false;
									}
								}
							} else {
								en.gotoAndStop('standing');
							}
						} else {
							attCount = 0;
							attacking = false;
							en.gotoAndStop('frozen');
						}
						fallFunc();
						molotovDamage();
						iceDamage();
						explosionDamage();
						flashMe();
						bumpMe(0.8);
						thawMe();
						delayDamage();
						wallBlocks();
					} else {
						die();
					}
				}
				fallRemove();
			};
		}
		frame 44 {
			ground_item();
			_x = Math.round(_x / tilesize) * tilesize - tilesize / 2;
			broken = false;
			onEnterFrame = function () {
				if (!_root.game_paused) {
					if (!broken and this.hitbox.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y + 5, true)) {
						_root.holder.player._y = _y - tilesize;
						_root.groundplayer();
						glass._x = random(5) - 2;
						glass._y = random(5) - 2;
						++standCount;
						if (standCount == 15) {
							_root.playsound('glass1Sound');
							glass.play();
							broken = true;
							brokenTime = 5 * framerate;
							standCount = 0;
						}
					} else {
						if (!broken) {
							standCount = 0;
							glass._x = 0;
							glass._y = 0;
						}
					}
					if (broken) {
						--brokenTime;
						if (brokenTime == 0) {
							glass._alpha = 0;
							glass.gotoAndStop(1);
						}
						if (brokenTime < 0) {
							glass._alpha += 5;
							if (glass._alpha >= 100) {
								glass._alpha = 100;
								standCount = 0;
								broken = false;
							}
						}
					}
				}
			};
		}
		frame 45 {
			ground_item(true);
		}
		frame 46 {
			life = parseInt(specarr[4]);
			alive = true;
			bumpAmount = 0;
			damageDelay = 0;
			freezeCount = 0;
			xspeed = 0;
			yspeed = 0;
			maxspeed = 2 * (0.8 + random(40) / 100);
			acc = 1 * (0.8 + random(40) / 100);
			wid = 40;
			hei = 60;
			fallspeed = 0;
			ground_item();
			bodyId = 23;
			shooting = false;
			shootbreather = 0;
			onEnterFrame = function () {
				onscreen_check(2);
				if (onscreen and !_root.game_paused and !_root.msgbox._visible) {
					if (life > 0) {
						dealDamage(1, 0);
						dealDamage(1, -hei);
						if (freezeCount == 0) {
							if (!shooting) {
								if (_root.effectInvisibility == 0) {
									if (_x < _root.holder.player._x - _root.tilesize / 2) {
										if (xspeed < maxspeed) {
											xspeed += acc;
											_xscale = 100;
										}
									} else {
										if (_x > _root.holder.player._x + _root.tilesize / 2) {
											if (xspeed > -maxspeed) {
												xspeed -= acc;
												_xscale = -100;
											}
										}
									}
									if (!_root.holder.ground.hitTest(_x + _root.holder._x + xspeed, _y + _root.holder._y - hei / 2, true) and _root.holder.ground.hitTest(_x + _root.holder._x + xspeed, _y + _root.holder._y + hei / 2, true)) {
										_x = _x + xspeed;
										en.gotoAndStop('walking');
									} else {
										en.gotoAndStop('standing');
									}
									if (!shooting) {
										--shootbreather;
										if (shootbreather <= 0 and _root.holder.player._y > _y - tilesize * 2 and _root.holder.player._y < _y + tilesize) {
											shooting = true;
											shotnum = 0;
										}
									}
								} else {
									en.gotoAndStop('standing');
								}
							}
							if (shooting) {
								en.gotoAndStop('attacking');
								if (en.att._currentframe == en.att._totalframes and (random(100) > 50 and shotnum > 2 or shotnum == 6)) {
									shooting = false;
									shootbreather = 20 + random(80);
								}
								if (en.att._currentframe == en.att._totalframes - 4) {
									dir = _xscale / Math.abs(_xscale);
									_root.createFairyBolt(_x + 20 * dir, _y - 14, dir, 1);
									++shotnum;
								}
							}
						} else {
							en.gotoAndStop('frozen');
						}
						fallFunc();
						molotovDamage();
						iceDamage();
						explosionDamage();
						flashMe();
						bumpMe();
						thawMe();
						delayDamage();
						wallBlocks();
					} else {
						if (alive) {
							if (bloodtype == null) {
								bloodtype = 'blood';
							}
							_root.createBody(_x, _y, bodyId, fall, _xscale);
							_root.dropHealth(_x, _y, 25);
							_root.create_blood(_x, _y, hei, bloodtype);
							this.removeMovieClip();
						}
					}
				}
				fallRemove();
			};
		}
		frame 47 {
			life = parseInt(specarr[4]);
			alive = true;
			bumpAmount = 0;
			damageDelay = 0;
			freezeCount = 0;
			xspeed = 0;
			yspeed = 0;
			maxspeed = 3;
			acc = 0.75;
			wid = 30;
			hei = 80;
			fallspeed = 0;
			ground_item();
			bodyId = 24;
			onEnterFrame = function () {
				onscreen_check();
				if (onscreen and !_root.game_paused and !_root.msgbox._visible) {
					if (life > 0) {
						dealDamage(1, 0);
						dealDamage(1, -hei);
						if (freezeCount == 0) {
							if (_root.effectInvisibility == 0) {
								if (Math.abs(_root.holder.player._x - _x) > 50 and (!attacking or en.att._currentframe > 19)) {
									attacking = false;
									if (_x < _root.holder.player._x - _root.tilesize / 2) {
										if (xspeed < maxspeed) {
											xspeed += acc;
											_xscale = -100;
										}
									} else {
										if (_x > _root.holder.player._x + _root.tilesize / 2) {
											if (xspeed > -maxspeed) {
												xspeed -= acc;
												_xscale = 100;
											}
										}
									}
									if (!_root.holder.ground.hitTest(_x + _root.holder._x + xspeed, _y + _root.holder._y - hei / 2, true) and _root.holder.ground.hitTest(_x + _root.holder._x + xspeed, _y + _root.holder._y + 5, true)) {
										_x = _x + xspeed;
										en.gotoAndStop('walking');
									} else {
										en.gotoAndStop('standing');
									}
								} else {
									en.gotoAndStop('attacking');
									attacking = true;
									if (_root.damageDelay == 0 and freezeCount == 0 and _root.effectInvisibility == 0) {
										if (en.att._currentframe == 16) {
											_root.playsound('toothmonsterhit1Sound');
											if (_xscale > 0) {
												if (_root.holder.player.hitbox.hitTest(_x + _root.holder._x - 50, _y + _root.holder._y - 50, true)) {
													_root.xspeed = 0;
													_root.bumpAmount -= _root.standardBump;
													_root.shadeCount = 30;
													_root.takedamage(3);
												}
											} else {
												if (_root.holder.player.hitbox.hitTest(_x + _root.holder._x + 50, _y + _root.holder._y - 50, true)) {
													_root.xspeed = 0;
													_root.bumpAmount += _root.standardBump;
													_root.shadeCount = 30;
													_root.takedamage(3);
												}
											}
										}
									}
								}
							} else {
								en.gotoAndStop('standing');
							}
						} else {
							en.gotoAndStop('frozen');
						}
						fallFunc();
						molotovDamage();
						iceDamage(0.2);
						explosionDamage();
						flashMe();
						bumpMe(0.5);
						thawMe();
						delayDamage();
						wallBlocks();
					} else {
						die();
					}
				}
				fallRemove();
			};
		}
		frame 48 {
			_y = Math.floor(_y / tilesize) * tilesize;
			if (_root.actions[71]) {
				orb.gotoAndStop(2);
			} else {
				orb.gotoAndStop(1);
			}
		}
		frame 49 {
			function getmyspeed() {
				myspeed = 3 * (random(100) / 100 + 0.5);
			}
			_y = 0;
			hasbox = true;
			getmyspeed();
			onEnterFrame = function () {
				xdist = Math.abs(_root.holder.player._x - _x);
				if (xdist < _root.stagewidth * 1.5) {
					if (hasbox) {
						crane.gotoAndStop(2);
						targetx = _root.holder.player._x + _root.xspeed * 20;
						if (_x < targetx) {
							_x = _x + myspeed;
							xspeed = myspeed;
						} else {
							_x = _x - myspeed;
							xspeed = -myspeed;
						}
						if (_x > targetx - tilesize and _x < targetx + tilesize) {
							getmyspeed();
							hasbox = false;
							if (random(100) > 50) {
								dir = 1;
							} else {
								dir = -1;
							}
							_root.createCraneCrate(_x, _y + 144, xspeed);
						}
					} else {
						crane.gotoAndStop(1);
						_x = _x + dir * myspeed;
						if (_x + _root.holder._x < -50 or _x + _root.holder._x > _root.stagewidth + 50) {
							getmyspeed();
							hasbox = true;
						}
					}
				}
			};
		}
	}
	movieClip 1270	{
	}
	movieClip 1279	{
	}
	movieClip 1292	{
	}
	movieClip 1297	{
		frame 7 {
			stop();
		}
	}
	movieClip 1304	{
		frame 27 {
			stop();
		}
	}
	movieClip 1313	{
		frame 10 {
			stop();
		}
	}
	movieClip 1328	{
		frame 10 {
			stop();
		}
	}
	movieClip 1335	{
		frame 13 {
			stop();
		}
	}
	movieClip 1336	{
	}
	movieClip 1365	{
	}
	movieClip 1378	{
	}
	movieClip 1381	{
	}
	movieClip 1390	{
	}
	movieClip 1403	{
	}
	movieClip 1408	{
		frame 7 {
			stop();
		}
	}
	movieClip 1415	{
		frame 27 {
			stop();
		}
	}
	movieClip 1424	{
		frame 10 {
			stop();
		}
	}
	movieClip 1425	{
	}
	movieClip 1428	{
	}
	movieClip 1437	{
	}
	movieClip 1450	{
	}
	movieClip 1455	{
		frame 7 {
			stop();
		}
	}
	movieClip 1462	{
		frame 27 {
			stop();
		}
	}
	movieClip 1471	{
		frame 10 {
			stop();
		}
	}
	movieClip 1472	{
	}
	movieClip 1473 player {
		frame 1 {
			stop();
		}
	}
	movieClip 2066	{
	}
	movieClip 2418 backgroundtile {
	}
	movieClip 2425	{
	}
	movieClip 2432	{
	}
	movieClip 2441 foregroundtile {
	}
	movieClip 2788 groundtile {
	}
	movieClip 2796	{
	}
	movieClip 2797 laddertile {
	}
	movieClip 2806 militarybullet {
		frame 1 {
			stop();
		}
		frame 11 {
			this.removeMovieClip();
		}
	}
	movieClip 2818	{
		frame 1 {
			stop();
		}
	}
	movieClip 2827	{
	}
	movieClip 2828 boss1 {
	}
	movieClip 2839 cavespit {
		frame 1 {
			stop();
		}
		frame 10 {
			this.removeMovieClip();
		}
	}
	movieClip 2850 dronebullet {
		frame 1 {
			stop();
		}
		frame 10 {
			this.removeMovieClip();
		}
	}
	movieClip 2861 flowerspit {
		frame 1 {
			stop();
		}
		frame 14 {
			this.removeMovieClip();
		}
	}
	movieClip 2868	{
	}
	movieClip 2871 fly1 {
	}
	movieClip 2882 cavespit2 {
		frame 1 {
			stop();
		}
		frame 14 {
			this.removeMovieClip();
		}
	}
	movieClip 2889 slime_acid {
	}
	movieClip 2892	{
		frame 30 {
			gotoAndPlay(1);
		}
	}
	movieClip 2897	{
	}
	movieClip 2904	{
	}
	movieClip 2905	{
	}
	movieClip 2914	{
		frame 1 {
			gotoAndPlay(random(_totalframes - 2) + 2);
		}
		frame 20 {
			gotoAndPlay(20 + random(20));
		}
		frame 61 {
			gotoAndPlay(2);
		}
	}
	movieClip 2923	{
		frame 1 {
			gotoAndPlay(random(_totalframes - 2) + 2);
		}
		frame 46 {
			gotoAndPlay(2);
		}
	}
	movieClip 2924	{
	}
	movieClip 2925 gasboss {
		frame 1 {
			stop();
			char.gotoAndStop('standing');
		}
		frame 2 {
			char.gotoAndStop('flying');
		}
		frame 150 {
			gotoAndStop(1);
		}
		frame 151 {
			char.gotoAndStop('flying');
		}
		frame 300 {
			gotoAndStop(1);
		}
		frame 301 {
			char.gotoAndStop('attacking');
			stop();
		}
		frame 302 {
			++_root.count;
			_root.attachMovie('acidsign1', 'acidsign', _root.count);
		}
		frame 551 {
			_root.acidsign.removeMovieClip();
			gotoAndStop(1);
		}
	}
	movieClip 2936 gasbossbullet {
		frame 1 {
			stop();
		}
		frame 14 {
			this.removeMovieClip();
		}
	}
	movieClip 2951 starspit {
		frame 1 {
			stop();
		}
		frame 14 {
			this.removeMovieClip();
		}
	}
	movieClip 2954 acidrain {
	}
	movieClip 2958	{
	}
	movieClip 2981 telescope {
		frame 30 {
			_root.cutscene = true;
		}
		frame 330 {
			_root.holder.player._xscale = 100;
		}
		frame 420 {
			mesarr = new Array();
			mesarr[0] = 'What... What was that?!';
			_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'hero');
			stop();
			onEnterFrame = function () {
				if (_root.msgbox._visible == false) {
					play();
				} else {
					_root.msgbox.runmessage();
				}
			};
		}
		frame 435 {
			mesarr = new Array();
			mesarr[0] = 'That... It\'s a long story.';
			mesarr[1] = 'A long story I hoped I never had to tell.';
			_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'oldman');
			stop();
			onEnterFrame = function () {
				if (_root.msgbox._visible == false) {
					play();
				} else {
					_root.msgbox.runmessage();
				}
			};
		}
		frame 570 {
			mesarr = new Array();
			mesarr[0] = 'Aeons ago, a shadow fell upon the';
			mesarr[1] = 'planets of Thindra. One by one, nearby';
			mesarr[2] = 'stars burned out, seemingly devoured';
			mesarr[3] = 'by darkness.';
			_root.msgbox.initmessage(mesarr, _root.standardlettertime * 3, 'oldman');
			stop();
			onEnterFrame = function () {
				if (_root.msgbox._visible == false) {
					play();
				} else {
					_root.msgbox.runmessage();
				}
			};
		}
		frame 660 {
			mesarr = new Array();
			mesarr[0] = 'An abominable leviathan, an ageless';
			mesarr[1] = 'horror, drifting aimlessly through space';
			mesarr[2] = 'and time, was heading towards our';
			mesarr[3] = 'solar system - gorging on everything in';
			mesarr[4] = 'its path.';
			_root.msgbox.initmessage(mesarr, _root.standardlettertime * 3, 'oldman');
			stop();
			onEnterFrame = function () {
				if (_root.msgbox._visible == false) {
					play();
				} else {
					_root.msgbox.runmessage();
				}
			};
		}
		frame 750 {
			mesarr = new Array();
			mesarr[0] = 'Realising the impending peril, seven';
			mesarr[1] = 'heroes from seven planets gathered on';
			mesarr[2] = 'Rhisla to save the solar system.';
			_root.msgbox.initmessage(mesarr, _root.standardlettertime * 3, 'oldman');
			stop();
			onEnterFrame = function () {
				if (_root.msgbox._visible == false) {
					play();
				} else {
					_root.msgbox.runmessage();
				}
			};
		}
		frame 840 {
			mesarr = new Array();
			mesarr[0] = 'Together, the heroes entered the';
			mesarr[1] = 'monster and with the help of ancient';
			mesarr[2] = 'magic, long since lost and forgotten,';
			mesarr[3] = 'managed to divert its course. The';
			mesarr[4] = 'seven returned to their respective';
			mesarr[5] = 'planets, living out their lives in peace.';
			_root.msgbox.initmessage(mesarr, _root.standardlettertime * 3, 'oldman');
			stop();
			onEnterFrame = function () {
				if (_root.msgbox._visible == false) {
					play();
				} else {
					_root.msgbox.runmessage();
				}
			};
		}
		frame 930 {
			mesarr = new Array();
			mesarr[0] = 'One by one, the heroes aged and died.';
			mesarr[1] = 'In the end, only the Alchemist of Rhisla';
			mesarr[2] = 'remained. In order to safeguard the';
			mesarr[3] = 'future of the solar system, he distilled';
			mesarr[4] = 'the magic core of each hero into six';
			mesarr[5] = 'powerful Essences and distributed them';
			mesarr[6] = 'to their respective planets. The';
			mesarr[7] = 'seventh - his own - was crafted by his';
			mesarr[8] = 'son upon his death.';
			_root.msgbox.initmessage(mesarr, _root.standardlettertime * 3, 'oldman');
			stop();
			onEnterFrame = function () {
				if (_root.msgbox._visible == false) {
					play();
				} else {
					_root.msgbox.runmessage();
				}
			};
		}
		frame 1020 {
			mesarr = new Array();
			mesarr[0] = 'Since then... The monster seems to';
			mesarr[1] = 'have completed its drift around the';
			mesarr[2] = 'whole universe, and returned to doom';
			mesarr[3] = 'us all. The only way to stop it is to';
			mesarr[4] = 'gather the seven Essences and harness';
			mesarr[5] = 'their power to obliterate the horror';
			mesarr[6] = 'from existence.';
			_root.msgbox.initmessage(mesarr, _root.standardlettertime * 3, 'oldman');
			stop();
			onEnterFrame = function () {
				if (_root.msgbox._visible == false) {
					play();
				} else {
					_root.msgbox.runmessage();
				}
			};
		}
		frame 1150 {
			mesarr = new Array();
			mesarr[0] = 'It\'s name is X\'o\'chthu, and it needs to';
			mesarr[1] = 'be stopped before it devours the entire';
			mesarr[2] = 'universe.';
			mesarr[3] = ' 	';
			mesarr[4] = 'Now, go right past the observatory.';
			mesarr[5] = 'Find and collect the Essence of Rhisla.';
			mesarr[6] = 'Then, take Duro\'s ship. It does not';
			mesarr[7] = 'matter if he will not let you, this is far';
			mesarr[8] = 'too important. Take the ship anyway.';
			mesarr[9] = ' 	';
			mesarr[10] = 'I\'ll follow you in my ship.';
			_root.msgbox.initmessage(mesarr, _root.standardlettertime * 3, 'oldman');
			stop();
			onEnterFrame = function () {
				if (_root.msgbox._visible == false) {
					play();
				} else {
					_root.msgbox.runmessage();
				}
			};
		}
		frame 1160 {
			_root.cutscene = false;
			_root.msgbreather = 12;
			this.removeMovieClip();
		}
	}
	movieClip 2994 zealotbolt {
		frame 19 {
			this.removeMovieClip();
		}
	}
	movieClip 3001 computer2 {
		frame 1 {
			count = 0;
			gotoAndStop(2);
			onEnterFrame = function () {
				++count;
				if (count > 5) {
					count = 0;
					gotoAndStop(random(_totalframes - 1) + 2);
				}
				myActions();
			};
		}
	}
	movieClip 3002	{
	}
	movieClip 3003 act6boss_pillars {
	}
	movieClip 3010	{
	}
	movieClip 3017	{
	}
	movieClip 3022	{
	}
	movieClip 3023 act6boss1 {
		frame 1 {
			stop();
		}
	}
	movieClip 3026 act6boss_cutscene1 {
		frame 1 {
			_root.cutscene = true;
		}
		frame 90 {
			mesarr = new Array();
			mesarr[0] = 'You...';
			mesarr[1] = 'You dare claim to be me, Aeo?';
			mesarr[2] = 'Impostor! You will know pain!';
			_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'aeo');
			stop();
			onEnterFrame = function () {
				if (_root.msgbox._visible == false) {
					play();
				} else {
					_root.msgbox.runmessage();
				}
			};
		}
		frame 91 {
			_root.fadein_music();
			_root.music_load('zos_bossSound');
		}
		frame 121 {
			delete onEnterFrame;
		}
		frame 210 {
			_root.holder.objects.boss._visible = true;
			_root.cutscene = false;
			_root.actions[64] = true;
			this.removeMovieClip();
		}
	}
	movieClip 3033 act6boss_lightning1 {
	}
	movieClip 3052 dust1 {
		frame 19 {
			this.removeMovieClip();
		}
	}
	movieClip 3063	{
		frame 1 {
			_root.playsound('aeo2Sound');
		}
		frame 11 {
			_root.playsound('aeo2Sound');
		}
	}
	movieClip 3070	{
		frame 16 {
			stop();
		}
	}
	movieClip 3077	{
	}
	movieClip 3078 act6boss2 {
	}
	movieClip 3081 act6boss_bolt1 {
	}
	movieClip 3082 act6boss_cutscene2 {
		frame 1 {
			_root.cutscene = true;
			_root.holder.objects.boss._visible = false;
		}
		frame 60 {
			mesarr = new Array();
			mesarr[0] = 'Your continued existence offends me!';
			mesarr[1] = 'DIE!!!';
			_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'aeo');
			stop();
			onEnterFrame = function () {
				if (_root.msgbox._visible == false) {
					play();
				} else {
					_root.msgbox.runmessage();
				}
			};
		}
		frame 61 {
			_root.fadein_music();
			_root.music_load('zos_bossSound');
		}
		frame 119 {
			stop();
			_root.holder.objects.boss._visible = true;
			_root.cutscene = false;
			_root.actions[66] = true;
			this.removeMovieClip();
		}
	}
	movieClip 3095 fairy1bolt {
		frame 1 {
			stop();
		}
		frame 12 {
			this.removeMovieClip();
		}
	}
	movieClip 3098 gamesavedtxt {
	}
	movieClip 3100 act1secretdoor {
	}
	movieClip 3110 ingredientsmarker {
	}
	button 3114 {
		on (release) {
			nextFrame();
		}
	}
	button 3115 {
		on (release) {
			stopAllSounds();
			_root.gotoAndPlay(1);
			_root.clear_all();
		}
	}
	movieClip 3117	{
		frame 1 {
			stop();
		}
		frame 2 {
			stop();
		}
	}
	movieClip 3119 menuScreen {
		frame 1 {
			markerx = new Array(72, 178, 284, 390, 496);
			markerxpos = _root.menupos;
			marker._x = markerx[markerxpos];
			descarr = new Array('Ingredients and Mixing', 'Potion Inventory', 'Settings', 'Achievements', 'Return to Game');
			standardCount = 7;
			rightCount = 0;
			leftCount = 0;
			marker.stop();
			onEnterFrame = function () {
				desc = descarr[markerxpos];
				_root.menupos = markerxpos;
				if (rightCount > 0) {
					--rightCount;
				}
				if (leftCount > 0) {
					--leftCount;
				}
				if ((allowRight or rightCount == 0) and (Key.isDown(39) or Key.isDown(68))) {
					++markerxpos;
					if (markerxpos > markerx.length - 1) {
						markerxpos = 0;
					}
					marker._x = markerx[markerxpos];
					allowRight = false;
					if (rightCount == 0) {
						rightCount = standardCount;
					}
					_root.playsound('menumove1Sound');
				} else {
					if (!Key.isDown(39) and !Key.isDown(68)) {
					}
				}
				if ((allowLeft or leftCount == 0) and (Key.isDown(37) or Key.isDown(65))) {
					--markerxpos;
					if (markerxpos < 0) {
						markerxpos = markerx.length - 1;
					}
					marker._x = markerx[markerxpos];
					allowLeft = false;
					if (leftCount == 0) {
						leftCount = standardCount;
					}
					_root.playsound('menumove1Sound');
				} else {
					if (!Key.isDown(37) and !Key.isDown(65)) {
					}
				}
				if ((Key.isDown(32) or Key.isDown(13)) and allowEnter) {
					if (markerxpos == 0) {
						_root.open_mixing();
					} else {
						if (markerxpos == 1) {
							_root.open_potions();
						} else {
							if (markerxpos == 2) {
								_root.open_settings();
							} else {
								if (markerxpos == 3) {
									_root.open_achievements();
								} else {
									_root.playsound('menuselect1Sound');
									_root.menupos = 0;
									_root.attcount = 12;
									_root.unpause();
								}
							}
						}
					}
					_root.playsound('menuselect1Sound');
					this.removeMovieClip();
				} else {
					if (!Key.isDown(13) and !Key.isDown(32)) {
						allowEnter = true;
					}
				}
				if (allowQuit and (Key.isDown(27) or Key.isDown(80))) {
					_root.attcount = 12;
					_root.unpause();
					_root.menupos = 0;
					this.removeMovieClip();
				} else {
					if (!Key.isDown(27) and !Key.isDown(80)) {
						allowQuit = true;
					}
				}
			};
		}
	}
	movieClip 3144 ingredienticons {
	}
	
	// unknown tag 88 length 42
	movieClip 3188 potionicons {
	}
	movieClip 3211	{
		frame 1 {
			stop();
		}
		frame 2 {
			_root.playsound('potionerror1Sound');
		}
		frame 18 {
			gotoAndStop(1);
		}
		frame 19 {
			_root.playsound('potionmix1Sound');
		}
		frame 59 {
			potions._visible = true;
		}
	}
	movieClip 3234	{
	}
	movieClip 3236 mixscreen {
		frame 1 {
			function reset() {
				fadedarr = new Array();
				chosenarr = new Array();
				i = 0;
				while (i < _root.ingredientsarr.length) {
					++_root.count;
					this['icon' + i]._alpha = 100;
					++i;
				}
				i = 0;
				while (i < 3) {
					this['selecticon' + i]._visible = false;
					++i;
				}
				resultdisp.potions._visible = false;
			}
			txtname = '';
			txtdesc = '';
			resultdisp.potions._visible = false;
			i = 0;
			while (i < _root.ingredientsarr.length) {
				this['num' + i] = _root.ingredientsarr[i];
				if (this['num' + i] == 0) {
					this['num' + i] = '';
				} else {
					++_root.count;
					attachMovie('ingredienticons', 'icon' + i, _root.count);
					this['icon' + i]._x = _root.ingredientsxarr[i];
					this['icon' + i]._y = _root.ingredientsyarr[i];
					this['icon' + i].gotoAndStop(i + 1);
				}
				++i;
			}
			selectxarr = new Array(368, 455, 543);
			i = 0;
			while (i < 3) {
				++_root.count;
				attachMovie('ingredienticons', 'selecticon' + i, _root.count);
				this['selecticon' + i]._x = selectxarr[i];
				this['selecticon' + i]._y = 32;
				this['selecticon' + i]._visible = false;
				++i;
			}
			++_root.count;
			attachMovie('ingredientsmarker', 'marker', _root.count);
			marker.gotoAndStop(1);
			marker._x = 29;
			marker._y = 29;
			markery = new Array(29, 93, 157, 429);
			markerypos = 0;
			markerx = new Array(29, 93, 157, 221, 253);
			markerxpos = 0;
			chosenarr = new Array();
			fadedarr = new Array();
			standardCount = 7;
			rightCount = 0;
			leftCount = 0;
			downCount = 0;
			upCount = 0;
			onEnterFrame = function () {
				if (rightCount > 0) {
					--rightCount;
				}
				if (leftCount > 0) {
					--leftCount;
				}
				if (upCount > 0) {
					--upCount;
				}
				if (downCount > 0) {
					--downCount;
				}
				if ((allowRight or rightCount == 0) and (Key.isDown(39) or Key.isDown(68))) {
					if (markerypos < markery.length - 1) {
						++markerxpos;
						if (markerxpos > markerx.length - 2) {
							markerxpos = markerx.length - 2;
						} else {
							_root.playsound('menumove1Sound');
						}
						marker._x = markerx[markerxpos];
						allowRight = false;
						if (rightCount == 0) {
							rightCount = standardCount;
						}
					}
				} else {
					if (!Key.isDown(39) and !Key.isDown(68)) {
					}
				}
				if ((allowLeft or leftCount == 0) and (Key.isDown(37) or Key.isDown(65))) {
					if (markerypos < markery.length - 1) {
						--markerxpos;
						if (markerxpos < 0) {
							markerxpos = 0;
						} else {
							_root.playsound('menumove1Sound');
						}
						marker._x = markerx[markerxpos];
						allowLeft = false;
						if (leftCount == 0) {
							leftCount = standardCount;
						}
					}
				} else {
					if (!Key.isDown(37) and !Key.isDown(65)) {
					}
				}
				if ((allowDown or downCount == 0) and (Key.isDown(40) or Key.isDown(83))) {
					++markerypos;
					if (markerypos > markery.length - 1) {
						markerypos = markery.length - 1;
					} else {
						_root.playsound('menumove1Sound');
					}
					marker._y = markery[markerypos];
					if (markerypos == markery.length - 1) {
						markerxpos = markerx.length - 1;
						marker._x = markerx[markerxpos];
						marker.gotoAndStop(2);
					}
					allowDown = false;
					if (downCount == 0) {
						downCount = standardCount;
					}
				} else {
					if (!Key.isDown(40) and !Key.isDown(83)) {
					}
				}
				if ((allowUp or upCount == 0) and (Key.isDown(38) or Key.isDown(87))) {
					if (markerypos == markery.length - 1) {
						markerxpos = markerx.length - 2;
						marker._x = markerx[markerxpos];
						marker.gotoAndStop(1);
					}
					--markerypos;
					if (markerypos < 0) {
						markerypos = 0;
					} else {
						_root.playsound('menumove1Sound');
					}
					marker._y = markery[markerypos];
					allowUp = false;
					if (upCount == 0) {
						upCount = standardCount;
					}
				} else {
					if (!Key.isDown(38) and !Key.isDown(87)) {
					}
				}
				if (allowEnter and (Key.isDown(13) or Key.isDown(32))) {
					_root.playsound('menuselect1Sound');
					chosen = markerypos * 4 + markerxpos;
					if (_root.ingredientsarr[chosen] > 0 and fadedarr[chosen] != 1 and chosen < _root.ingredientsarr.length) {
						if (chosenarr[2] == null) {
							fadedarr[chosen] = 1;
							this['icon' + chosen]._alpha = 50;
						}
						if (chosenarr[0] == null) {
							chosenarr[0] = chosen;
							selecticon0.gotoAndStop(chosen + 1);
							selecticon0._visible = true;
						} else {
							if (chosenarr[1] == null) {
								chosenarr[1] = chosen;
								selecticon1.gotoAndStop(chosen + 1);
								selecticon1._visible = true;
							} else {
								if (chosenarr[2] == null) {
									chosenarr[2] = chosen;
									selecticon2.gotoAndStop(chosen + 1);
									selecticon2._visible = true;
								}
							}
						}
					}
					allowEnter = false;
					if (markerypos == markery.length - 1) {
						_root.attachMenu();
						this.removeMovieClip();
					}
				} else {
					if (!Key.isDown(13) and !Key.isDown(32)) {
						allowEnter = true;
					}
				}
				txtselect = markerypos * 4 + markerxpos;
				if (_root.ingredientsarr[txtselect] > 0 and resultdisp.potions._visible == false) {
					txtname = _root.ingredientsnames[txtselect];
					txtdesc = _root.ingredientsdesc[txtselect];
				} else {
					if (resultdisp.potions._visible) {
						txtname = _root.potionsnames[potioncreated];
						txtdesc = _root.potionsdesc[potioncreated];
					} else {
						txtname = '';
						txtdesc = '';
					}
				}
				if (Key.isDown(82)) {
					reset();
				}
				if (Key.isDown(13) and allowMix) {
					willReset = false;
					potioncreated = '';
					if (_root.ingredientsarr[chosenarr[0]] > 0 and _root.ingredientsarr[chosenarr[1]] > 0 and _root.ingredientsarr[chosenarr[2]] > 0) {
						i = 0;
						while (i < _root.numpotions) {
							correctcount = 0;
							j = 0;
							while (j < _root['potionrec' + (i + 1)].length) {
								if (chosenarr[0] == _root['potionrec' + (i + 1)][j] or chosenarr[1] == _root['potionrec' + (i + 1)][j] or chosenarr[2] == _root['potionrec' + (i + 1)][j]) {
									++correctcount;
									if (correctcount == _root['potionrec' + (i + 1)].length) {
										potioncreated = i;
										k = 0;
										while (k < _root['potionrec' + (i + 1)].length) {
											--_root.ingredientsarr[chosenarr[k]];
											trace(k);
											trace(chosenarr[k]);
											trace(_root.ingredientsarr[chosenarr[k]]);
											trace('break');
											this['num' + chosenarr[k]] = _root.ingredientsarr[chosenarr[k]];
											if (this['num' + chosenarr[k]] == 0) {
												this['num' + chosenarr[k]] = '';
												this['icon' + chosenarr[k]].removeMovieClip();
												willReset = true;
											}
											++k;
										}
									}
								}
								++j;
							}
							++i;
						}
					} else {
						reset();
					}
					trace(potioncreated);
					if (potioncreated != '') {
						++_root.potionsarr[potioncreated];
						_root.potionsowned[potioncreated] = 1;
						resultdisp.potions.gotoAndStop(potioncreated + 1);
						resultdisp.potions._visible = false;
						resultdisp.gotoAndPlay('succeed');
						_root.givemedal(0);
						checklen = _root.potionsowned.length;
						checktot = 0;
						ci = 0;
						while (ci < checklen) {
							if (_root.potionsowned[ci] > 0) {
								++checktot;
							}
							if (checktot >= 12) {
								_root.givemedal(1);
							}
							++ci;
						}
					} else {
						resultdisp.potions._visible = false;
						resultdisp.gotoAndPlay('fail');
						reset();
					}
					if (willReset) {
						reset();
						willReset = false;
					}
					allowMix = false;
				} else {
					if (!Key.isDown(13)) {
						allowMix = true;
					}
				}
				if (Key.isDown(27)) {
					_root.attachMenu();
					this.removeMovieClip();
				}
			};
			e1._visible = false;
			e2._visible = false;
			e3._visible = false;
			e4._visible = false;
			e5._visible = false;
			e6._visible = false;
			e7._visible = false;
			if (_root.actions[18]) {
				e1._visible = true;
				e1.gotoAndStop(1);
			}
			if (_root.actions[19]) {
				e2._visible = true;
				e2.gotoAndStop(2);
			}
			if (_root.actions[20]) {
				e3._visible = true;
				e3.gotoAndStop(3);
			}
			if (_root.actions[21]) {
				e4._visible = true;
				e4.gotoAndStop(4);
			}
			if (_root.actions[22]) {
				e5._visible = true;
				e5.gotoAndStop(5);
			}
			if (_root.actions[23]) {
				e6._visible = true;
				e6.gotoAndStop(6);
			}
			if (_root.actions[24]) {
				e7._visible = true;
				e7.gotoAndStop(7);
			}
		}
	}
	
	// unknown tag 88 length 42
	movieClip 3242 questscreen {
		frame 1 {
			standardCount = 24;
			rightCount = 0;
			leftCount = 0;
			questpos = 0;
			if (_root.questarr[0][1] != null) {
				txt = _root.questarr[0][1];
			} else {
				txt = 'Explore.';
			}
			onEnterFrame = function () {
				if (_root.questarr[0][1] != null) {
					txt = _root.questarr[questpos][1];
				} else {
					txt = 'Explore.';
				}
				if (rightCount > 0) {
					--rightCount;
				}
				if (leftCount > 0) {
					--leftCount;
				}
				if ((allowRight or rightCount == 0) and (Key.isDown(39) or Key.isDown(68))) {
					++questpos;
					if (rightCount == 0) {
						rightCount = standardCount;
					}
					allowRight = false;
				} else {
					if (!Key.isDown(39) and !Key.isDown(68)) {
					}
				}
				if ((allowLeft or leftCount == 0) and (Key.isDown(37) or Key.isDown(65))) {
					--questpos;
					if (leftCount == 0) {
						leftCount = standardCount;
					}
					allowLeft = false;
				} else {
					if (!Key.isDown(37) and !Key.isDown(65)) {
					}
				}
				if (questpos > _root.questarr.length - 1) {
					questpos = 0;
				} else {
					if (questpos < 0) {
						questpos = _root.questarr.length - 1;
					}
				}
				if (allowEnter and (Key.isDown(32) or Key.isDown(13) or Key.isDown(27))) {
					_root.attachMenu();
					this.removeMovieClip();
				} else {
					if (!Key.isDown(32) and !Key.isDown(13) and !Key.isDown(27)) {
						allowEnter = true;
					}
				}
			};
		}
	}
	movieClip 3247	{
	}
	movieClip 3249	{
	}
	movieClip 3252 settingsmenu {
		frame 1 {
			function scrollfunc() {
				if (_root.volpos > 10) {
					_root.volpos = 10;
				} else {
					if (_root.volpos < 1) {
						_root.volpos = 1;
					}
				}
				scroller.gotoAndStop(_root.volpos);
				_root.vol = volarr[_root.volpos - 1];
				_root[music_last].setVolume(vol * _root.musicoffset);
			}
			function txtfunc() {
				if (_root.allowmusic) {
					musicstatus = 'Music is ON';
				} else {
					musicstatus = 'Music is OFF';
				}
				if (_root.allowsounds) {
					soundstatus = 'SFX are ON';
				} else {
					soundstatus = 'SFX are OFF';
				}
			}
			standardCount = 7;
			rightCount = 0;
			leftCount = 0;
			downCount = 0;
			upCount = 0;
			enterCount = 0;
			markerpos = 1;
			marker.stop();
			volarr = [0, 6, 14, 24, 35, 47, 59, 72, 86, 100];
			txtfunc();
			scrollfunc();
			onEnterFrame = function () {
				if (rightCount > 0) {
					--rightCount;
				}
				if (leftCount > 0) {
					--leftCount;
				}
				if (upCount > 0) {
					--upCount;
				}
				if (downCount > 0) {
					--downCount;
				}
				if (enterCount > 0) {
					--enterCount;
				}
				if (markerpos == 1) {
					if (rightCount == 0 and (Key.isDown(39) or Key.isDown(68))) {
						++_root.volpos;
						scrollfunc();
						_root.playsound('soundchange1Sound');
						if (rightCount == 0) {
							rightCount = standardCount;
						}
					}
					if (leftCount == 0 and (Key.isDown(37) or Key.isDown(65))) {
						--_root.volpos;
						scrollfunc();
						_root.playsound('soundchange1Sound');
						if (leftCount == 0) {
							leftCount = standardCount;
						}
					}
				}
				if (downCount == 0 and (Key.isDown(40) or Key.isDown(83))) {
					++markerpos;
					if (downCount == 0) {
						downCount = standardCount;
					}
					if (markerpos > 4) {
						markerpos = 4;
					} else {
						_root.playsound('menumove1Sound');
					}
				}
				if (upCount == 0 and (Key.isDown(38) or Key.isDown(87))) {
					--markerpos;
					if (upCount == 0) {
						upCount = standardCount;
					}
					if (markerpos < 1) {
						markerpos = 1;
					} else {
						_root.playsound('menumove1Sound');
					}
				}
				marker.gotoAndStop(markerpos);
				if (enterCount == 0 and (Key.isDown(13) or Key.isDown(32))) {
					if (markerpos == 2) {
						_root.playsound('menuselect1Sound');
						if (_root.allowmusic) {
							_root.allowmusic = false;
							_root[_root.music_last].stop();
						} else {
							_root.allowmusic = true;
							_root[_root.music_last].start(0, 0);
							_root[_root.music_last].setVolume(_root.vol * _root.musicoffset);
						}
					} else {
						if (markerpos == 3) {
							if (_root.allowsounds) {
								_root.allowsounds = false;
							} else {
								_root.allowsounds = true;
							}
							_root.playsound('menuselect1Sound');
						} else {
							if (markerpos == 4) {
								_root.playsound('menuselect1Sound');
								_root.attachMenu();
								this.removeMovieClip();
							}
						}
					}
					if (enterCount == 0) {
						enterCount = standardCount;
					}
				}
				txtfunc();
				if (Key.isDown(27)) {
					_root.attachMenu();
					this.removeMovieClip();
				}
			};
		}
	}
	movieClip 3254 fadein {
		frame 10 {
			stop();
			this.removeMovieClip();
		}
	}
	movieClip 3256 fadeout {
	}
	movieClip 3258 game_frame {
	}
	movieClip 3260 over_shadow {
	}
	movieClip 3306	{
		frame 46 {
			gotoAndPlay(random(46) + 1);
		}
	}
	movieClip 3328	{
	}
	movieClip 3355	{
		frame 1 {
			stop();
		}
	}
	movieClip 3356 msgbox {
		frame 1 {
			function initmessage(txt, msglettertime, av) {
				nummsgs = txt.length - 1;
				arrholder = new Array();
				i = 0;
				while (i < txt.length) {
					arrholder[i] = (txt[i].split('@')).join(',');
					++i;
				}
				deleteStart = false;
				deleteDelay = '';
				msg = arrholder[0];
				arrcounter = 0;
				msglength = msg.length + 1;
				msgcounter = 0;
				msgletter = 1;
				textboxes.msgbox1 = '';
				textboxes.msgbox2 = '';
				textboxes.msgbox3 = '';
				textboxes.msgbox4 = '';
				txtPos = 1;
				lettertime = msglettertime;
				_visible = true;
				allowclose = false;
				flasher._visible = false;
				avatar.gotoAndStop(av);
				infomsg = '';
			}
			function runmessage() {
				if (!animating) {
					if (msgletter < msglength) {
						if (Key.isDown(83) or Key.isDown(40) or Key.isDown(32)) {
							++msgletter;
							msgcounter = lettertime;
							msgbox = msg.substr(0, msgletter);
						}
						++msgcounter;
						if (msgcounter >= lettertime) {
							++msgletter;
							textboxes['msgbox' + txtPos] = msg.substr(0, msgletter);
							msgcounter = 0;
							_root.playsound('blip1Sound');
							if (msg.substr(msgletter - 1, 1) == '.' or msg.substr(msgletter - 1, 1) == '!' or msg.substr(msgletter - 1, 1) == '?') {
								msgcounter = -lettertime;
							} else {
								if (msg.substr(msgletter, 1) == ' ') {
									msgcounter = lettertime;
								}
							}
							infomsg = '';
						}
					} else {
						if (arrcounter >= nummsgs) {
							flasher.gotoAndStop(flasher._totalframes);
						}
						if (!flasher._visible) {
							flasher.gotoAndPlay(1);
						}
						flasher._visible = true;
						if (arrcounter >= nummsgs) {
							if (!Key.isDown(83) and !Key.isDown(40) and !Key.isDown(32)) {
								allowclose = true;
								infomsg = 'Press DOWN to continue.';
							}
							if (!allowclose) {
								infomsg = 'Release DOWN.';
							}
						}
						if (arrcounter < nummsgs) {
							++txtPos;
							if (txtPos > 4) {
								txtPos = 4;
								animating = true;
								textboxes.play();
							}
							++arrcounter;
							msg = arrholder[arrcounter];
							msglength = msg.length + 1;
							msgcounter = 0;
							msgletter = 1;
							_visible = true;
							allowclose = false;
							flasher._visible = false;
						} else {
							if ((Key.isDown(83) or Key.isDown(40) or Key.isDown(32)) and !deleteStart and allowclose) {
								allowclose = false;
								deleteDelay = 2;
								deleteStart = true;
							}
						}
					}
				} else {
					if (textboxes._currentframe == textboxes._totalframes) {
						animating = false;
						textboxes.msgbox1 = textboxes.msgbox2;
						textboxes.msgbox2 = textboxes.msgbox3;
						textboxes.msgbox3 = textboxes.msgbox4;
						textboxes.msgbox4 = '';
					}
				}
				if (deleteDelay > 0 and deleteStart) {
					--deleteDelay;
					if (deleteDelay <= 0) {
						deleteDelay = '';
						deleteStart = false;
						_root.msgbreather = 6;
						_root.attcount = 18;
						_root.xspeed = 0;
						_root.fallspeed = 0;
						_root.jumping = false;
						_visible = false;
					}
				}
			}
			textboxes.msgbox1 = '';
			textboxes.msgbox2 = '';
			textboxes.msgbox3 = '';
			textboxes.msgbox4 = '';
			txtPos = 1;
			animating = false;
			_visible = false;
		}
	}
	movieClip 3367 potions {
	}
	movieClip 3384 potionscreen {
		frame 1 {
			txtdesc = '';
			txtname = '';
			arrlen = _root.potionsarr.length;
			i = 0;
			while (i < arrlen) {
				if (_root.potionsarr[i] > 0) {
					_root.potionsowned[i] = 1;
				}
				++i;
			}
			ing1._visible = false;
			ing2._visible = false;
			ing3._visible = false;
			i = 0;
			while (i < _root.ingredientsarr.length) {
				this['num' + i] = _root.potionsarr[i];
				if (this['num' + i] == 0) {
					this['num' + i] = '';
					if (_root.potionsowned[i] != 0) {
						++_root.count;
						attachMovie('recipeicon', 'icon' + i, _root.count);
						this['icon' + i]._alpha = 50;
						this['icon' + i]._x = _root.ingredientsxarr[i];
						this['icon' + i]._y = _root.ingredientsyarr[i];
					}
				} else {
					if (i <= 2) {
						this['num' + i] = 'INF';
					}
					++_root.count;
					attachMovie('potionicons', 'icon' + i, _root.count);
					this['icon' + i]._x = _root.ingredientsxarr[i];
					this['icon' + i]._y = _root.ingredientsyarr[i];
					this['icon' + i].gotoAndStop(i + 1);
				}
				++i;
			}
			++_root.count;
			attachMovie('ingredientsmarker', 'marker', _root.count);
			marker.gotoAndStop(1);
			marker._x = 29;
			marker._y = 29;
			markery = new Array(29, 93, 157, 429);
			markerypos = 0;
			markerx = new Array(29, 93, 157, 221, 253);
			markerxpos = 0;
			if (_root.selectedpotion != null and _root.potionsarr[_root.selectedpotion] > 0) {
				selectedicon.gotoAndStop(_root.selectedpotion + 1);
				selectedicon._visible = true;
			} else {
				selectedicon._visible = false;
			}
			this['icon' + _root.selectedpotion]._alpha = 50;
			standardCount = 7;
			rightCount = 0;
			leftCount = 0;
			downCount = 0;
			upCount = 0;
			onEnterFrame = function () {
				if (_root.selectedpotion != null and _root.potionsarr[_root.selectedpotion] > 0) {
					selectedicon.gotoAndStop(_root.selectedpotion + 1);
					selectedicon._visible = true;
				} else {
					selectedicon._visible = false;
				}
				if (rightCount > 0) {
					--rightCount;
				}
				if (leftCount > 0) {
					--leftCount;
				}
				if (upCount > 0) {
					--upCount;
				}
				if (downCount > 0) {
					--downCount;
				}
				if ((allowRight or rightCount == 0) and (Key.isDown(39) or Key.isDown(68))) {
					if (markerypos < markery.length - 1) {
						++markerxpos;
						if (markerxpos > markerx.length - 2) {
							markerxpos = markerx.length - 2;
						} else {
							_root.playsound('menumove1Sound');
						}
						marker._x = markerx[markerxpos];
						allowRight = false;
						if (rightCount == 0) {
							rightCount = standardCount;
						}
					}
				} else {
					if (!Key.isDown(39) and !Key.isDown(68)) {
					}
				}
				if ((allowLeft or leftCount == 0) and (Key.isDown(37) or Key.isDown(65))) {
					if (markerypos < markery.length - 1) {
						--markerxpos;
						if (markerxpos < 0) {
							markerxpos = 0;
						} else {
							_root.playsound('menumove1Sound');
						}
						marker._x = markerx[markerxpos];
						allowLeft = false;
						if (leftCount == 0) {
							leftCount = standardCount;
						}
					}
				} else {
					if (!Key.isDown(37) and !Key.isDown(65)) {
					}
				}
				if ((allowDown or downCount == 0) and (Key.isDown(40) or Key.isDown(83))) {
					++markerypos;
					if (markerypos > markery.length - 1) {
						markerypos = markery.length - 1;
					} else {
						_root.playsound('menumove1Sound');
					}
					marker._y = markery[markerypos];
					if (markerypos == markery.length - 1) {
						markerxpos = markerx.length - 1;
						marker._x = markerx[markerxpos];
						marker.gotoAndStop(2);
					}
					allowDown = false;
					if (downCount == 0) {
						downCount = standardCount;
					}
				} else {
					if (!Key.isDown(40) and !Key.isDown(83)) {
					}
				}
				if ((allowUp or upCount == 0) and (Key.isDown(38) or Key.isDown(87))) {
					if (markerypos == markery.length - 1) {
						markerxpos = markerx.length - 2;
						marker._x = markerx[markerxpos];
						marker.gotoAndStop(1);
					}
					--markerypos;
					if (markerypos < 0) {
						markerypos = 0;
					} else {
						_root.playsound('menumove1Sound');
					}
					marker._y = markery[markerypos];
					allowUp = false;
					if (upCount == 0) {
						upCount = standardCount;
					}
				} else {
					if (!Key.isDown(38) and !Key.isDown(87)) {
					}
				}
				if (allowEnter and (Key.isDown(13) or Key.isDown(32))) {
					allowEnter = false;
					if (markerypos == markery.length - 1) {
						_root.attachMenu();
						this.removeMovieClip();
					} else {
						chosen = markerypos * 4 + markerxpos;
						if (_root.potionsarr[chosen] > 0) {
							_root.playsound('menuselect1Sound');
							if (_root.potionsarr[_root.selectedpotion] > 0) {
								this['icon' + _root.selectedpotion]._alpha = 100;
							}
							_root.selectedpotion = chosen;
							this['icon' + chosen]._alpha = 50;
						}
					}
				} else {
					if (!Key.isDown(13) and !Key.isDown(32)) {
						allowEnter = true;
					}
				}
				txtselect = markerypos * 4 + markerxpos;
				if (_root.potionsarr[txtselect] > 0) {
					txtname = _root.potionsnames[txtselect];
					txtdesc = _root.potionsdesc[txtselect];
					ing1._visible = true;
					ing2._visible = true;
					ing3._visible = true;
					ing1.gotoAndStop(_root.potionrecarr[txtselect][0] + 1);
					ing2.gotoAndStop(_root.potionrecarr[txtselect][1] + 1);
					ing3.gotoAndStop(_root.potionrecarr[txtselect][2] + 1);
				} else {
					if (_root.potionsowned[txtselect] > 0) {
						txtname = _root.potionsnames[txtselect];
						txtdesc = _root.potionsdesc[txtselect];
						ing1._visible = true;
						ing2._visible = true;
						ing3._visible = true;
						ing1.gotoAndStop(_root.potionrecarr[txtselect][0] + 1);
						ing2.gotoAndStop(_root.potionrecarr[txtselect][1] + 1);
						ing3.gotoAndStop(_root.potionrecarr[txtselect][2] + 1);
					} else {
						txtdesc = '';
						txtname = '';
						ing1._visible = false;
						ing2._visible = false;
						ing3._visible = false;
					}
				}
				if (Key.isDown(67) and allowc) {
					allowc = false;
					trace('markerxpos: ' + markerxpos);
					trace('markerypos: ' + markerypos);
					trace('txtselect: ' + txtselect);
				} else {
					if (!Key.isDown(67)) {
						allowc = true;
					}
				}
				if (Key.isDown(27)) {
					_root.attachMenu();
					this.removeMovieClip();
				}
			};
		}
	}
	movieClip 3391 potionShortcut {
	}
	
	// unknown tag 88 length 75
	movieClip 3395 playerloc {
	}
	button 3399 {
		on (release) {
			if (_currentframe == 1) {
				_currentframe = _totalframes;
				gotoAndStop(_totalframes);
			} else {
				prevFrame();
			}
		}
	}
	button 3401 {
		on (release) {
			if (_currentframe == _totalframes) {
				gotoAndStop(1);
			} else {
				nextFrame();
			}
		}
	}
	button 3404 {
		on (release) {
			_root.bgselect = 'bg_black';
			_parent.editmode = 'ground';
			_parent.groundmode();
			this.removeMovieClip();
		}
	}
	button 3407 {
		on (release) {
			_root.bgselect = 'bg_1';
			_parent.editmode = 'ground';
			_parent.groundmode();
			this.removeMovieClip();
		}
	}
	button 3410 {
		on (release) {
			_root.bgselect = 'bg_house1';
			_parent.editmode = 'ground';
			_parent.groundmode();
			this.removeMovieClip();
		}
	}
	button 3413 {
		on (release) {
			_root.bgselect = 'bg_2';
			_parent.editmode = 'ground';
			_parent.groundmode();
			this.removeMovieClip();
		}
	}
	button 3415 {
		on (release) {
			_root.bgselect = 'hut1';
			_parent.editmode = 'ground';
			_parent.groundmode();
			this.removeMovieClip();
		}
	}
	button 3418 {
		on (release) {
			_root.bgselect = 'bg_3';
			_parent.editmode = 'ground';
			_parent.groundmode();
			this.removeMovieClip();
		}
	}
	button 3420 {
		on (release) {
			_root.bgselect = 'cavebg';
			_parent.editmode = 'ground';
			_parent.groundmode();
			this.removeMovieClip();
		}
	}
	button 3423 {
		on (release) {
			_root.bgselect = 'bg_4';
			_parent.editmode = 'ground';
			_parent.groundmode();
			this.removeMovieClip();
		}
	}
	button 3426 {
		on (release) {
			_root.bgselect = 'bg_house2';
			_parent.editmode = 'ground';
			_parent.groundmode();
			this.removeMovieClip();
		}
	}
	button 3429 {
		on (release) {
			_root.bgselect = 'bg_bazaar';
			_parent.editmode = 'ground';
			_parent.groundmode();
			this.removeMovieClip();
		}
	}
	button 3432 {
		on (release) {
			_root.bgselect = 'bg_house3';
			_parent.editmode = 'ground';
			_parent.groundmode();
			this.removeMovieClip();
		}
	}
	button 3435 {
		on (release) {
			_root.bgselect = 'bg_freezer';
			_parent.editmode = 'ground';
			_parent.groundmode();
			this.removeMovieClip();
		}
	}
	button 3438 {
		on (release) {
			_root.bgselect = 'bg_temple';
			_parent.editmode = 'ground';
			_parent.groundmode();
			this.removeMovieClip();
		}
	}
	button 3441 {
		on (release) {
			_root.bgselect = 'bg_house5';
			_parent.editmode = 'ground';
			_parent.groundmode();
			this.removeMovieClip();
		}
	}
	button 3444 {
		on (release) {
			_root.bgselect = 'bg_gas';
			_parent.editmode = 'ground';
			_parent.groundmode();
			this.removeMovieClip();
		}
	}
	button 3447 {
		on (release) {
			_root.bgselect = 'bg_pyramid';
			_parent.editmode = 'ground';
			_parent.groundmode();
			this.removeMovieClip();
		}
	}
	button 3450 {
		on (release) {
			_root.bgselect = 'bg_oxygen';
			_parent.editmode = 'ground';
			_parent.groundmode();
			this.removeMovieClip();
		}
	}
	button 3453 {
		on (release) {
			_root.bgselect = 'stars_floaty';
			_parent.editmode = 'ground';
			_parent.groundmode();
			this.removeMovieClip();
		}
	}
	button 3456 {
		on (release) {
			_root.bgselect = 'bg_teeth';
			_parent.editmode = 'ground';
			_parent.groundmode();
			this.removeMovieClip();
		}
	}
	button 3459 {
		on (release) {
			_root.bgselect = 'bg_planet7';
			_parent.editmode = 'ground';
			_parent.groundmode();
			this.removeMovieClip();
		}
	}
	button 3462 {
		on (release) {
			_root.bgselect = 'bg_shroomhouse';
			_parent.editmode = 'ground';
			_parent.groundmode();
			this.removeMovieClip();
		}
	}
	button 3465 {
		on (release) {
			_root.bgselect = 'bg_orb';
			_parent.editmode = 'ground';
			_parent.groundmode();
			this.removeMovieClip();
		}
	}
	button 3468 {
		on (release) {
			_root.bgselect = 'bg_factory';
			_parent.editmode = 'ground';
			_parent.groundmode();
			this.removeMovieClip();
		}
	}
	button 3471 {
		on (release) {
			_root.bgselect = 'bg_brain';
			_parent.editmode = 'ground';
			_parent.groundmode();
			this.removeMovieClip();
		}
	}
	movieClip 3473 editor_bgselect {
		frame 1 {
			stop();
		}
	}
	button 3475 {
		on (release) {
			if (_currentframe == _totalframes) {
				gotoAndStop(1);
			} else {
				nextFrame();
			}
		}
	}
	button 3478 {
		on (release) {
			pre_create();
			arr[4] = ingid;
			arr[5] = ingtype;
			create_item(2);
		}
	}
	button 3483 {
		on (release) {
			pre_create();
			arr[4] = wid;
			arr[5] = hei;
			arr[6] = targframe;
			arr[7] = targx;
			arr[8] = targy;
			create_item(3);
		}
	}
	button 3491 {
		on (release) {
			pre_create();
			create_item(4);
		}
	}
	button 3495 {
		on (release) {
			pre_create();
			arr[4] = en_life;
			create_item(5);
		}
	}
	button 3498 {
		on (release) {
			pre_create();
			arr[4] = en_life;
			create_item(6);
		}
	}
	button 3499 {
		on (release) {
			pre_create();
			arr[4] = wid;
			arr[5] = hei;
			arr[6] = targframe;
			arr[7] = targx;
			arr[8] = targy;
			create_item(7);
		}
	}
	button 3507 {
		on (release) {
			pre_create();
			arr[4] = frm;
			arr[5] = id;
			arr[6] = msg1;
			if (msg2 != null) {
				arr[7] = msg2;
				if (msg3 != null) {
					arr[8] = msg3;
					if (msg4 != null) {
						arr[9] = msg4;
						if (msg5 != null) {
							arr[10] = msg5;
							if (msg6 != null) {
								arr[11] = msg6;
							}
						}
					}
				}
			}
			create_item(8);
		}
	}
	button 3520 {
		on (release) {
			pre_create();
			create_item(9);
		}
	}
	button 3521 {
		on (release) {
			pre_create();
			create_item(10);
		}
	}
	button 3525 {
		on (release) {
			pre_create();
			arr[4] = en_life;
			create_item(11);
		}
	}
	button 3528 {
		on (release) {
			pre_create();
			arr[4] = en_life;
			create_item(12);
		}
	}
	button 3531 {
		on (release) {
			pre_create();
			arr[4] = en_life;
			create_item(13);
		}
	}
	button 3534 {
		on (release) {
			pre_create();
			arr[4] = en_life;
			create_item(14);
		}
	}
	button 3537 {
		on (release) {
			pre_create();
			arr[4] = en_life;
			create_item(15);
		}
	}
	button 3541 {
		on (release) {
			pre_create();
			arr[4] = en_start;
			create_item(16);
		}
	}
	button 3545 {
		on (release) {
			pre_create();
			arr[4] = ylim;
			create_item(17);
		}
	}
	button 3547 {
		on (release) {
			pre_create();
			create_item(18);
		}
	}
	button 3549 {
		on (release) {
			pre_create();
			arr[4] = dir;
			create_item(19);
		}
	}
	button 3554 {
		on (release) {
			pre_create();
			arr[4] = en_life;
			create_item(20);
		}
	}
	button 3555 {
		on (release) {
			pre_create();
			arr[4] = wid;
			arr[5] = hei;
			arr[6] = targframe;
			arr[7] = targx;
			arr[8] = targy;
			create_item(21);
		}
	}
	button 3564 {
		on (release) {
			pre_create();
			arr[4] = en_life;
			create_item(22);
		}
	}
	button 3568 {
		on (release) {
			pre_create();
			arr[4] = wid;
			arr[5] = hei;
			arr[6] = actionsid;
			create_item(23);
		}
	}
	button 3574 {
		on (release) {
			pre_create();
			arr[4] = en_life;
			create_item(24);
		}
	}
	button 3577 {
		on (release) {
			pre_create();
			arr[4] = en_life;
			create_item(25);
		}
	}
	button 3580 {
		on (release) {
			pre_create();
			arr[4] = en_life;
			create_item(26);
		}
	}
	button 3583 {
		on (release) {
			pre_create();
			arr[4] = en_life;
			create_item(27);
		}
	}
	button 3587 {
		on (release) {
			pre_create();
			arr[4] = en_life;
			create_item(28);
		}
	}
	button 3590 {
		on (release) {
			pre_create();
			arr[4] = en_life;
			create_item(29);
		}
	}
	button 3593 {
		on (release) {
			pre_create();
			arr[4] = en_life;
			create_item(30);
		}
	}
	button 3597 {
		on (release) {
			pre_create();
			arr[4] = en_life;
			create_item(31);
		}
	}
	button 3599 {
		on (release) {
			pre_create();
			create_item(32);
		}
	}
	button 3602 {
		on (release) {
			pre_create();
			create_item(33);
		}
	}
	button 3605 {
		on (release) {
			pre_create();
			arr[4] = en_life;
			create_item(34);
		}
	}
	button 3608 {
		on (release) {
			pre_create();
			arr[4] = en_life;
			create_item(35);
		}
	}
	button 3609 {
		on (release) {
			pre_create();
			arr[4] = wid;
			arr[5] = hei;
			arr[6] = targframe;
			arr[7] = targx;
			arr[8] = targy;
			create_item(36);
		}
	}
	button 3618 {
		on (release) {
			pre_create();
			arr[4] = en_life;
			create_item(37);
		}
	}
	button 3621 {
		on (release) {
			pre_create();
			arr[4] = en_life;
			create_item(38);
		}
	}
	button 3625 {
		on (release) {
			pre_create();
			arr[4] = xspeed;
			arr[5] = yspeed;
			arr[6] = xrange;
			arr[7] = yrange;
			create_item(40);
		}
	}
	button 3632 {
		on (release) {
			pre_create();
			create_item(41);
		}
	}
	button 3636 {
		on (release) {
			pre_create();
			arr[4] = ylim;
			create_item(42);
		}
	}
	button 3639 {
		on (release) {
			pre_create();
			arr[4] = en_life;
			create_item(43);
		}
	}
	button 3641 {
		on (release) {
			pre_create();
			create_item(44);
		}
	}
	button 3643 {
		on (release) {
			pre_create();
			create_item(45);
		}
	}
	button 3646 {
		on (release) {
			pre_create();
			arr[4] = en_life;
			create_item(46);
		}
	}
	button 3649 {
		on (release) {
			pre_create();
			arr[4] = en_life;
			create_item(47);
		}
	}
	button 3650 {
		on (release) {
			pre_create();
			create_item(48);
		}
	}
	button 3652 {
		on (release) {
			pre_create();
			create_item(49);
		}
	}
	movieClip 3653 editor_items {
		frame 1 {
			function pre_create() {
				arr = new Array();
			}
			function create_item(item_id) {
				itemid = item_id;
				++_root.arrid;
				arr[0] = _root.arrid;
				arr[1] = itemid;
				arr[2] = _root.stagewidth / 2 - _root.leveleditor.levelholder._x;
				arr[3] = _root.stageheight / 2 - _root.leveleditor.levelholder._y;
				_root.itemarr.push(arr);
				trace(_root.itemarr);
				++_root.count;
				_root.leveleditor.levelholder.itemholder.attachMovie('itemgraphic', 'itemgraphic' + _root.count, _root.count);
				_root.leveleditor.levelholder.itemholder['itemgraphic' + _root.count].gotoAndStop(item_id);
				_root.leveleditor.levelholder.itemholder['itemgraphic' + _root.count].arrid = _root.arrid;
				_root.leveleditor.levelholder.itemholder['itemgraphic' + _root.count].tst = 0;
				_root.leveleditor.levelholder.itemholder['itemgraphic' + _root.count]._x = _root.stagewidth / 2 - _root.leveleditor.levelholder._x;
				_root.leveleditor.levelholder.itemholder['itemgraphic' + _root.count]._y = _root.stageheight / 2 - _root.leveleditor.levelholder._y;
				_root.leveleditor.levelholder.itemholder['itemgraphic' + _root.count].onEnterFrame = function () {
					if (this.hitTest(_root._xmouse, _root._ymouse, true) and _root.leveleditor.mousedown) {
						_root.leveleditor.tileselect = 0;
						this.startDrag();
						_root.leveleditor.dragging = true;
						if (Key.isDown(46) or Key.isDown(8)) {
							i = 0;
							while (i < _root.itemarr.length) {
								if (_root.itemarr[i][0] == this.arrid) {
									_root.itemarr.splice(i, 1);
								}
								++i;
							}
							trace(_root.itemarr);
							this.removeMovieClip();
						}
					}
					if (!_root.leveleditor.mousedown and this.hitTest(_root._xmouse, _root._ymouse, true)) {
						this.stopDrag();
						i = 0;
						while (i < _root.itemarr.length) {
							if (_root.itemarr[i][0] == this.arrid) {
								_root.itemarr[i][2] = this._x;
								_root.itemarr[i][3] = this._y;
								trace(_root.itemarr);
							}
							++i;
						}
					}
				};
				_parent.editmode = 'ground';
				_parent.groundmode();
				this.removeMovieClip();
			}
		}
		frame 1 {
			stop();
		}
	}
	movieClip 3657 itemgraphic {
	}
	movieClip 3663 whiteflash_short {
		frame 1 {
			_root.playsound('whiteflashshort1Sound');
		}
		frame 13 {
			this.removeMovieClip();
		}
	}
	movieClip 3668 whiteflash_mini1 {
		frame 1 {
			_root.playsound('whiteflashmini1Sound');
		}
		frame 10 {
			this.removeMovieClip();
		}
	}
	movieClip 3670 planet7_overlay {
	}
	movieClip 3672 whiteflash_long1 {
		frame 1 {
			_root.playsound('whiteflashlong1Sound');
		}
		frame 57 {
			this.removeMovieClip();
		}
	}
	movieClip 3674 fadein_long {
		frame 90 {
			this.removeMovieClip();
		}
	}
	movieClip 3677 recipeicon {
	}
	movieClip 3679 fadeout_slow {
		frame 100 {
			stop();
		}
	}
	
	// unknown tag 88 length 42
	movieClip 3737	{
	}
	movieClip 3738	{
		frame 1 {
			ic.gotoAndStop(ictarget);
		}
	}
	movieClip 3739 medaldisp {
		frame 151 {
			this.removeMovieClip();
		}
	}
	movieClip 3744 achievementsmenu {
		frame 1 {
			function reset() {
				fadedarr = new Array();
				chosenarr = new Array();
				i = 0;
				while (i < _root.ingredientsarr.length) {
					++_root.count;
					this['icon' + i]._alpha = 100;
					++i;
				}
				i = 0;
				while (i < 3) {
					this['selecticon' + i]._visible = false;
					++i;
				}
				resultdisp.potions._visible = false;
			}
			txtname = '';
			txtdesc = '';
			resultdisp.potions._visible = false;
			i = 1;
			while (i <= 26) {
				if (_root.medalarr[i - 1] == 1) {
					this['m' + i].gotoAndStop(i);
				} else {
					this['m' + i].setBrightness(-100);
				}
				++i;
			}
			nummedals = 0;
			i = 0;
			while (i < 26) {
				if (_root.medalarr[i] == 1) {
					++nummedals;
				}
				++i;
			}
			marker.gotoAndStop(1);
			markery = new Array(36, 106, 176, 246, 429);
			markerypos = 0;
			markerx = new Array(39, 109, 179, 249, 319, 389, 459, 529, 599);
			markerxpos = 0;
			chosenarr = new Array();
			fadedarr = new Array();
			standardCount = 7;
			rightCount = 0;
			leftCount = 0;
			downCount = 0;
			upCount = 0;
			onEnterFrame = function () {
				if (nummedals < 26 and markerypos < 4) {
					if (markerypos != 3) {
						sel = markerxpos + markerypos * 8;
					} else {
						sel = 21 + markerxpos;
					}
					desc = _root.medaldesc[sel];
					tit = _root.medalname[sel];
				} else {
					if (markerypos == 4) {
						desc = '';
						tit = '';
					} else {
						if (nummedals == 26) {
							desc = '100% complete! Enjoy the secret room in your home...';
							tit = '';
						}
					}
				}
				if (rightCount > 0) {
					--rightCount;
				}
				if (leftCount > 0) {
					--leftCount;
				}
				if (upCount > 0) {
					--upCount;
				}
				if (downCount > 0) {
					--downCount;
				}
				if ((allowRight or rightCount == 0) and (Key.isDown(39) or Key.isDown(68))) {
					if (markerypos < markery.length - 1 and (markerypos != 3 or markerypos == 3 and markerxpos < 4)) {
						++markerxpos;
						if (markerxpos > markerx.length - 2) {
							markerxpos = markerx.length - 2;
						} else {
							_root.playsound('menumove1Sound');
						}
						marker._x = markerx[markerxpos];
						allowRight = false;
						if (rightCount == 0) {
							rightCount = standardCount;
						}
					}
				} else {
					if (!Key.isDown(39) and !Key.isDown(68)) {
					}
				}
				if ((allowLeft or leftCount == 0) and (Key.isDown(37) or Key.isDown(65))) {
					if (markerypos < markery.length - 1 and (markerypos != 3 or markerypos == 3 and markerxpos > 3)) {
						--markerxpos;
						if (markerxpos < 0) {
							markerxpos = 0;
						} else {
							_root.playsound('menumove1Sound');
						}
						marker._x = markerx[markerxpos];
						allowLeft = false;
						if (leftCount == 0) {
							leftCount = standardCount;
						}
					}
				} else {
					if (!Key.isDown(37) and !Key.isDown(65)) {
					}
				}
				if ((allowDown or downCount == 0) and (Key.isDown(40) or Key.isDown(83))) {
					++markerypos;
					if (markerypos > markery.length - 1) {
						markerypos = markery.length - 1;
					} else {
						_root.playsound('menumove1Sound');
					}
					marker._y = markery[markerypos];
					if (markerypos == 3) {
						if (markerxpos < 3) {
							markerxpos = 3;
						}
						if (markerxpos > 4) {
							markerxpos = 4;
						}
						marker._x = markerx[markerxpos];
					}
					if (markerypos == markery.length - 1) {
						markerxpos = markerx.length - 1;
						marker._x = 253;
						marker._y = 429;
						marker.gotoAndStop(2);
					}
					allowDown = false;
					if (downCount == 0) {
						downCount = standardCount;
					}
				} else {
					if (!Key.isDown(40) and !Key.isDown(83)) {
					}
				}
				if ((allowUp or upCount == 0) and (Key.isDown(38) or Key.isDown(87))) {
					if (markerypos == markery.length - 1) {
						markerxpos = 4;
						marker._x = markerx[markerxpos];
						marker.gotoAndStop(1);
					}
					--markerypos;
					if (markerypos < 0) {
						markerypos = 0;
					} else {
						_root.playsound('menumove1Sound');
					}
					marker._y = markery[markerypos];
					allowUp = false;
					if (upCount == 0) {
						upCount = standardCount;
					}
				} else {
					if (!Key.isDown(38) and !Key.isDown(87)) {
					}
				}
				if (allowEnter and (Key.isDown(13) or Key.isDown(32))) {
					_root.playsound('menuselect1Sound');
					chosen = markerypos * 4 + markerxpos;
					if (_root.ingredientsarr[chosen] > 0 and fadedarr[chosen] != 1 and chosen < _root.ingredientsarr.length) {
						if (chosenarr[2] == null) {
							fadedarr[chosen] = 1;
							this['icon' + chosen]._alpha = 50;
						}
						if (chosenarr[0] == null) {
							chosenarr[0] = chosen;
							selecticon0.gotoAndStop(chosen + 1);
							selecticon0._visible = true;
						} else {
							if (chosenarr[1] == null) {
								chosenarr[1] = chosen;
								selecticon1.gotoAndStop(chosen + 1);
								selecticon1._visible = true;
							} else {
								if (chosenarr[2] == null) {
									chosenarr[2] = chosen;
									selecticon2.gotoAndStop(chosen + 1);
									selecticon2._visible = true;
								}
							}
						}
					}
					allowEnter = false;
					if (markerypos == markery.length - 1) {
						_root.attachMenu();
						this.removeMovieClip();
					}
				} else {
					if (!Key.isDown(13) and !Key.isDown(32)) {
						allowEnter = true;
					}
				}
				if (Key.isDown(27)) {
					_root.attachMenu();
					this.removeMovieClip();
				}
			};
		}
	}
	button 3746 {
		on (release) {
			_root.clickingwalkthru = true;
			_root.open_menu();
			getURL('http://www.bigdino.com/goto.php?id=1038&action=walkthrough&passvar=zos&link=walkthrough', '_blank');
		}
	}
	movieClip 3747 walkthroughbutton {
	}
	movieClip 3748 act1s2_oldman {
		frame 1 {
			_x = int(_x);
			_y = int(_y);
			_y = Math.ceil(_y / _root.tilesize) * _root.tilesize;
			onEnterFrame = function () {
				if (this.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true)) {
					_root.giveExclamation();
					if (Key.isDown(40) or Key.isDown(83)) {
						if (_root.msgbox._visible == false and _root.msgbreather == 0) {
							mesarr = new Array();
							if (!_root.actions[0]) {
								_root.potionsowned[0] = 1;
								_root.actions[0] = true;
								++_root.ingredientsarr[3];
								mesarr[0] = 'Ah. Here you are. Something terrible';
								mesarr[1] = 'has happened, and we need to act';
								mesarr[2] = 'immediately... I will show you in the';
								mesarr[3] = 'observatory. But I\'m getting ahead of';
								mesarr[4] = 'myself!';
								mesarr[5] = '					';
								mesarr[6] = 'Before we meet at the observatory,';
								mesarr[7] = 'mix a potion for your protection.';
								mesarr[8] = 'There is plenty of Honian Heartfruit';
								mesarr[9] = 'growing here. You should find Barkyo ';
								mesarr[10] = 'Oilstones in the dig site to the left.';
								mesarr[11] = 'Here, take this Ashima Sparkdust.';
								mesarr[12] = 'It\'s the final ingredient you will need.';
								mesarr[13] = '					';
								mesarr[14] = 'Press P to bring up your inventories.';
								mesarr[15] = 'Mix 3 ingredients to create a potion.';
								mesarr[16] = 'Not all combinations work, so make sure';
								mesarr[17] = 'to pay attention to clues.';
							} else {
								if (_root.potionsarr[0] == 0) {
									mesarr[0] = 'Press P to bring up your inventories.';
									mesarr[1] = 'Mix 3 ingredients to create a potion.';
									mesarr[2] = 'Not all combinations work, so make sure';
									mesarr[3] = 'to pay attention to clues.';
								} else {
									mesarr[0] = 'You have mixed a Fire potion? Good. Go';
									mesarr[1] = 'to the observatory, I will meet you';
									mesarr[2] = 'there.';
								}
							}
							_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'oldman');
						}
					}
				}
			};
		}
	}
	movieClip 3751 act1s3h1_fat {
		frame 1 {
			_x = int(_x);
			_y = int(_y);
			_y = Math.ceil(_y / _root.tilesize) * _root.tilesize;
			chatcount = 0;
			onEnterFrame = function () {
				if (this.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true)) {
					_root.giveExclamation();
					if (Key.isDown(40) or Key.isDown(83)) {
						if (_root.msgbox._visible == false and _root.msgbreather == 0) {
							++chatcount;
							mesarr = new Array();
							if (chatcount == 1) {
								mesarr[0] = 'Do you mind?';
								mesarr[1] = 'I\'m trying to have a wash.';
							}
							if (chatcount == 2) {
								mesarr[0] = 'Can\'t a man have some privacy?!';
							}
							if (chatcount == 3) {
								mesarr[0] = 'Well I never!';
							}
							if (chatcount == 4) {
								mesarr[0] = 'This truly is the height of';
								mesarr[1] = 'rudeness!';
							}
							if (chatcount > 4) {
								mesarr[0] = 'Are you happy yet?';
								mesarr[1] = 'I hope you\'re enjoying this.';
								_root.givemedal(19);
							}
							_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'fat');
						}
					}
				}
			};
		}
	}
	movieClip 3758	{
	}
	movieClip 3767	{
	}
	movieClip 3776	{
	}
	movieClip 3777 act1s4_dog {
		frame 1 {
			stop();
		}
	}
	movieClip 3780	{
	}
	movieClip 3781 act4s1_dogandball {
		frame 1 {
			dogge._xscale = -100;
			process = 0;
			barkdelay = 20;
			onEnterFrame = function () {
				if (process == 0) {
					--barkdelay;
					if (barkdelay < 0) {
						_root.playsound('dog1Sound');
						barkdelay = 3 * _root.framerate + random(5 * _root.framerate);
					}
				}
				if (dogge._x > 1040) {
					dogge._x = 1040;
				}
				if (process == 0) {
					dogge.gotoAndStop(1);
					if (_root.holder.player._x > dogge._x + 50) {
						dogge._xscale = 100;
					} else {
						if (_root.holder.player._x < dogge._x - 50) {
							dogge._xscale = -100;
						}
					}
				} else {
					if (process == 1) {
						if (dogge._x > ball._x + 5) {
							dogge._xscale = -100;
							dogge.xSpeed = -6;
						} else {
							dogge._xscale = 100;
							dogge.xSpeed = 6;
						}
						if (dogge._x > 1020 and ball._x > 1030) {
							dogge.gotoAndStop(1);
						} else {
							dogge.gotoAndStop(2);
						}
						dogge._x += dogge.xSpeed;
						++flytime;
						if (flytime > 12 and dogge.hitTest(ball)) {
							process = 2;
							ball._visible = false;
						}
					} else {
						if (process == 2) {
							dogge.gotoAndStop(3);
							if (_root.holder.player._x > dogge._x + 25) {
								dogge._xscale = 100;
								dogge.xSpeed = 6;
							} else {
								if (_root.holder.player._x < dogge._x - 25) {
									dogge._xscale = -100;
									dogge.xSpeed = -6;
								}
							}
							dogge._x += dogge.xSpeed;
							if (dogge.hitTest(_root.holder.player)) {
								ball._visible = true;
								goBounce = false;
								ball._x = dogge._x + 45 * dogge._xscale / 100;
								ball._y = 0;
								process = 0;
							}
						}
					}
				}
				if (ball._visible) {
					if (ball.hitTest(_root.holder.player) and Math.abs(_root.xspeed) > 2) {
						_root.givemedal(3);
						ball.xSpeed = _root.xspeed * (1 + random(20) / 10);
						ball.ySpeed = -random(5) - 7;
						goBounce = true;
						process = 1;
						flytime = 0;
					}
					if (goBounce) {
						ball._x += ball.xSpeed;
						ball._y += ball.ySpeed;
						ball.ySpeed += 0.5;
						if (ball._y > ball.yTarget) {
							ball._y = ball.yTarget;
							ball.ySpeed *= -0.7;
							ball.xSpeed *= 0.8;
							if (Math.abs(ball.ySpeed) < 2) {
								goBounce = false;
							}
						}
						if (ball._x > 1300) {
							ball._x = 1300;
							ball.xSpeed *= -1.05;
						}
						if (ball._x < 0) {
							ball._x = 0;
							ball.xSpeed *= -1;
						}
					}
					if (ball._x > 1088) {
						ball.yTarget = -32;
					} else {
						ball.yTarget = 0;
					}
				}
			};
		}
	}
	movieClip 3790 act1s9_bully {
		frame 1 {
			_x = int(_x);
			_y = int(_y);
			_y = Math.ceil(_y / _root.tilesize) * _root.tilesize;
			stop();
			onEnterFrame = function () {
				if (this.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true)) {
					_root.giveExclamation();
					if (Key.isDown(40) or Key.isDown(83)) {
						if (_root.msgbox._visible == false and _root.msgbreather == 0) {
							++chatcount;
							mesarr = new Array();
							mesarr[0] = 'What do you want?';
							mesarr[1] = 'Think you can use my ship?';
							mesarr[2] = 'Scram!';
							_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'bully');
							messageGiven = true;
						}
					}
				}
				if (messageGiven and _root.msgbox._visible == false) {
					play();
					messageGiven = false;
				}
				if (_root.holder.cloudsMolotov.hitTest(_x + _root.holder._x, _y + _root.holder._y, true)) {
					_root.givemedal(11);
					++_root.count;
					_root.holder.attachMovie('act1s9_bully_cinematic', 'cinematic', _root.count);
					_root.actions[2] = true;
					this.removeMovieClip();
				}
			};
		}
		frame 8 {
			_root.xspeed = 0;
			_root.bumpAmount -= 20;
			_root.shadeCount = 30;
			_root.playhit();
		}
	}
	movieClip 3799	{
	}
	movieClip 3800 act1s9_bully_cinematic {
		frame 69 {
			this.removeMovieClip();
		}
	}
	movieClip 3801 act2bosscutscene {
		frame 1 {
			_root.cutscene = true;
			_root.game_paused = true;
			player.anims.gotoAndStop('falling');
			_root.holder.objects.boss._visible = false;
			player.throwbar._visible = false;
			onEnterFrame = function () {
				_root.holder.player._visible = false;
				if (_root.effectPoison > 0) {
					player.gotoAndStop(3);
				} else {
					if (_root.effectJump > 0 or _root.effectSpeed > 0 or _root.effectScience > 0) {
						player.gotoAndStop(2);
					} else {
						player.gotoAndStop(1);
					}
				}
				_root.holder.player._y = player._y;
			};
		}
		frame 40 {
			player.anims.gotoAndStop('standing');
		}
		frame 141 {
			mesarr = new Array();
			mesarr[0] = 'So this is what guards the Essence...';
			mesarr[1] = 'Back to the Soil you go.';
			_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'hero');
			stop();
			onEnterFrame = function () {
				if (_root.msgbox._visible == false) {
					play();
				} else {
					_root.msgbox.runmessage();
				}
			};
		}
		frame 162 {
			tail.gotoAndPlay(2);
			_root.playsound('scorpion1Sound');
		}
		frame 231 {
			delete enterFrame;
			_root.cutscene = false;
			_root.game_paused = false;
			_root.holder.player._visible = true;
			_root.holder.player._x = 145;
			_root.holder.objects.boss._visible = true;
			_root.fadein_music();
			_root.music_load('zos_bossSound');
			this.removeMovieClip();
		}
	}
	movieClip 3810	{
	}
	movieClip 3811 cauldron {
		frame 1 {
			onEnterFrame = function () {
				if (allowdrink and !_root.drinking and _root.effectPoison == 0 and _root.drinkcount <= 0 and this.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true)) {
					_root.giveExclamation();
					if (Key.isDown(40) or Key.isDown(83)) {
						_root.drinking = true;
						_root.drinkcount = 30;
						_root.activepotion = 0;
						drank = true;
						poisondone = true;
						_root.givemedal(17);
					}
				}
				if (drank and _root.drinkcount == 3 and _root.effectPoison == 0) {
					_root.drinking = false;
					_root.drinkcount = 0;
					_root.effectPoison = 100000000;
					drank = false;
				}
			};
		}
	}
	movieClip 3816 act2door {
		frame 1 {
			stop();
		}
		frame 2 {
			_root.playsound('walldoor1Sound');
		}
		frame 32 {
			this.removeMovieClip();
		}
	}
	movieClip 3825	{
	}
	movieClip 3826 act2s4cutscene {
		frame 1 {
			onEnterFrame = function () {
				if (_root.holder.player._y < 1760 and _root.holder.player._x < 450 and _root.climbing) {
					_root.holder.player._y = 1760;
				}
				if (!_root.holder.objects.objecta) {
					_root.actions[9] = true;
					play();
					delete enterFrame;
				}
			};
		}
		frame 30 {
			mesarr = new Array();
			mesarr[0] = 'Please help!';
			mesarr[1] = 'A woman is being attacked by a snake!';
			_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'tribalwoman');
			stop();
		}
		frame 59 {
			_root.holder.ground.door.play();
		}
		frame 95 {
			this.removeMovieClip();
		}
	}
	movieClip 3829 act2s4door {
		frame 1 {
			stop();
		}
		frame 40 {
			stop();
		}
	}
	movieClip 3832 act2witch {
		frame 1 {
			onEnterFrame = function () {
				if (this.hitTest(_root.holder.player.hitbox)) {
					_root.giveExclamation();
					if (Key.isDown(40) or Key.isDown(83)) {
						if (_root.msgbox._visible == false and _root.msgbreather == 0) {
							mesarr = new Array();
							if (_root.actions[19]) {
								mesarr[0] = 'A man has earned the respect of Argba.';
							} else {
								if (_root.actions[9]) {
									if (!_root.holder.nohtobjects.cauldron.poisondone) {
										mesarr[0] = 'A man wants to prove his worth?';
										mesarr[1] = 'He must drink of Death...';
										mesarr[2] = '...and race through Hell...';
										mesarr[3] = ' 													';
										mesarr[4] = 'This man is not the first to try.';
										mesarr[5] = 'More bones for the cave.';
										_root.holder.nohtobjects.cauldron.allowdrink = true;
										_root.actions[4] = true;
									} else {
										mesarr[0] = 'Goodbye, foolish man!';
										mesarr[1] = 'Your flesh will rot and rend!';
									}
								} else {
									mesarr[0] = 'Leave Argba, outlander.';
								}
							}
							_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'witch');
							messageGiven = true;
						}
					}
				}
			};
		}
	}
	
	// unknown tag 88 length 42
	movieClip 3840	{
	}
	movieClip 3841 liftpanel {
		frame 1 {
			if (_root.lastfloor == null) {
				targfloor = 1;
			} else {
				targfloor = _root.lastfloor;
			}
			topfloor = 30;
			bottomfloor = 1;
			upCount = 0;
			downCount = 0;
			sliderFunc = function () {
				slider._y = int(272 - (targfloor / topfloor) * 125);
			};
			dispFunc = function () {
				if (targfloor < 10) {
					dispfloor = '0' + targfloor;
				} else {
					dispfloor = targfloor;
				}
			};
			closeThis = function () {
				_root.cutscene = false;
				_root.allowEnter = false;
				_root.unpause();
				this.removeMovieClip();
			};
			dispFunc();
			sliderFunc();
			onEnterFrame = function () {
				dispFunc();
				sliderFunc();
				if (upCount > 0) {
					--upCount;
				}
				if (downCount > 0) {
					--downCount;
				}
				if (upCount == 0 and (Key.isDown(38) or Key.isDown(87))) {
					_root.playsound('elevator2Sound');
					++targfloor;
					if (targfloor > topfloor) {
						targfloor = topfloor;
					}
					if (upCount == 0) {
						upCount = 4;
					}
				}
				if (downCount == 0 and (Key.isDown(40) or Key.isDown(83))) {
					_root.playsound('elevator2Sound');
					--targfloor;
					if (targfloor < bottomfloor) {
						targfloor = bottomfloor;
					}
					if (downCount == 0) {
						downCount = 4;
					}
				}
				if (!shifting and (Key.isDown(13) or Key.isDown(32))) {
					if (_root.lastfloor == targfloor) {
						closeThis();
					}
					shifting = true;
					_root.lastfloor = targfloor;
				}
				if (shifting) {
					_root.shift_frame('liftframe', 100, 100);
				}
				if (Key.isDown(27) or Key.isDown(80)) {
					closeThis();
				}
			};
		}
	}
	movieClip 3842 lifttravel {
		frame 60 {
			_root.playsound('elevator1Sound');
		}
		frame 90 {
			stop();
			delete enterFrame;
			xtarg = 210;
			ytarg = 330;
			if (_root.lastfloor == _root.actions[17]) {
				targ = 'act3s17';
			} else {
				if (_root.lastfloor == 1) {
					targ = 'act3s15';
					xtarg = 1070;
					ytarg = 830;
				} else {
					targ = 'act3s16';
				}
			}
			onEnterFrame = function () {
				_root.shift_frame(targ, xtarg, ytarg);
			};
		}
	}
	movieClip 3844 act3s2computer {
		frame 1 {
			_x = int(_x);
			_y = int(_y);
			_y = Math.ceil(_y / _root.tilesize) * _root.tilesize;
			onEnterFrame = function () {
				if (this.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true)) {
					_root.giveExclamation();
					if (Key.isDown(40) or Key.isDown(83)) {
						_root.playsound('computer1Sound');
						if (_root.msgbox._visible == false and _root.msgbreather == 0) {
							mesarr = new Array();
							mesarr[0] = 'Welcome to Xinda.';
							mesarr[1] = 'Population: 423,710,458';
							mesarr[2] = 'ERR_UPDATE_REQUIRED #331';
							mesarr[3] = 'Updating...';
							mesarr[4] = ' 		';
							mesarr[5] = ' 		';
							mesarr[6] = ' 		';
							mesarr[7] = 'Welcome to Xinda.';
							mesarr[8] = 'Population: 0 		';
							_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'computer');
							_root.actions[8] = true;
							this.removeMovieClip();
						}
					}
				}
			};
		}
	}
	movieClip 3849	{
	}
	movieClip 3852	{
	}
	movieClip 3855	{
	}
	movieClip 3856 act3s5_clock {
		frame 1 {
			onEnterFrame = function () {
				if (!_root.actions[11]) {
					clock_graphic.gotoAndStop(1);
					minutehand.gotoAndStop(1);
					hourhand.gotoAndStop(1);
					times = new Date();
					mins = times.getMinutes();
					hrs = times.getHours();
					if (hrs > 12) {
						hrs -= 12;
					}
					minutehand._rotation = (mins / 60) * 360;
					hourhand._rotation = (hrs / 12) * 360 + (mins / 60) * 360 / 12;
					if (_root.holder.cloudsIce.hitTest(_x + _root.holder._x, _y + _root.holder._y - _height / 2, true)) {
						_root.actions[11] = true;
						_root.actions[12] = hourhand._rotation;
						_root.actions[13] = minutehand._rotation;
						_root.removeQuest(6);
					}
				} else {
					clock_graphic.gotoAndStop(2);
					minutehand.gotoAndStop(2);
					hourhand.gotoAndStop(2);
					hourhand._rotation = _root.actions[12];
					minutehand._rotation = _root.actions[13];
				}
			};
		}
	}
	movieClip 3859 act3s6h1_background {
	}
	movieClip 3863	{
		frame 30 {
			gotoAndPlay(1);
		}
	}
	movieClip 3870	{
	}
	movieClip 3872 act3s7_door {
		frame 1 {
			if (_root.actions[11]) {
				gotoAndStop(2);
			} else {
				stop();
			}
		}
		instance of movieClip 3863	{
			onClipEvent (load) {
				gotoAndPlay(15);
			}
		}
	}
	movieClip 3875 act3s9_door {
		frame 1 {
			stop();
			if (_root.actions[14]) {
				gotoAndStop(_totalframes);
			}
			onEnterFrame = function () {
				if (_root.actions[14]) {
					play();
					delete enterFrame;
				}
			};
		}
		frame 2 {
			_root.playsound('walldoor1Sound');
		}
		frame 26 {
			stop();
		}
	}
	movieClip 3876 act3s13_door {
		frame 1 {
			stop();
			if (_root.actions[15] and _root.actions[16]) {
				gotoAndStop(_totalframes);
			}
			onEnterFrame = function () {
				if (_root.actions[15] and _root.actions[16]) {
					play();
					delete enterFrame;
				}
			};
		}
		frame 2 {
			_root.playsound('walldoor1Sound');
		}
		frame 26 {
			stop();
		}
	}
	movieClip 3877 presspad2 {
		frame 1 {
			gotoAndStop(2);
			onEnterFrame = function () {
				if (_root.actions[action] or this.hitTest(_root.holder.player)) {
					if (!_root.actions[action]) {
						_root.playsound('presspad1Sound');
					}
					_root.actions[action] = true;
					gotoAndStop(3);
					delete enterFrame;
				}
			};
		}
	}
	movieClip 3890	{
	}
	movieClip 3891 act4_altar {
		frame 2 {
			one._visible = false;
			two._visible = false;
			three._visible = false;
			onEnterFrame = function () {
				if (this.hitTest(_root.holder.cloudsLanguage)) {
					one.gotoAndStop(_root.actions[47]);
					two.gotoAndStop(_root.actions[48]);
					three.gotoAndStop(_root.actions[49]);
					one._visible = true;
					two._visible = true;
					three._visible = true;
				}
			};
		}
	}
	movieClip 3893 act4_bg {
		frame 300 {
			gotoAndPlay(1);
		}
	}
	movieClip 3896 act4_emptyhover {
		frame 1 {
			shifting = false;
			onEnterFrame = function () {
				if (!_root.game_paused and !_root.msgbox._visible) {
					if (allowEnter and _root.actions[25] and this.hitTest(_root.holder.player)) {
						_root.giveExclamation();
						if (Key.isDown(83) or Key.isDown(40)) {
							if (!shifting) {
								_root.playsound('dooropen1Sound');
							}
							shifting = true;
						}
					}
					if (shifting) {
						_root.shift_frame('act4race', 0, 0);
					}
				}
				if (!Key.isDown(83) and !Key.isDown(40)) {
					allowEnter = true;
				}
			};
		}
	}
	movieClip 3897 act4_emptyhover2 {
		frame 1 {
			shifting = false;
			onEnterFrame = function () {
				if (!_root.game_paused and !_root.msgbox._visible) {
					if (allowEnter and this.hitTest(_root.holder.player)) {
						_root.giveExclamation();
						if (Key.isDown(83) or Key.isDown(40)) {
							if (!shifting) {
								_root.playsound('dooropen1Sound');
							}
							shifting = true;
						}
					}
					if (shifting) {
						_root.shift_frame('act4border', 1586, 544);
					}
				}
				if (!Key.isDown(83) and !Key.isDown(40)) {
					allowEnter = true;
				}
			};
		}
	}
	movieClip 3900 act4_hoverenemy {
		frame 1 {
			stop();
		}
	}
	movieClip 3903 act4_hoverbody {
	}
	movieClip 3922 act4_explosion {
		frame 19 {
			this.removeMovieClip();
		}
	}
	movieClip 3927 act4race_flyer {
	}
	movieClip 3932	{
		frame 1 {
			stop();
		}
		frame 2 {
			_root.shooting = true;
			_root.playsound('raceshoot1Sound');
		}
		frame 3 {
			_root.shooting = false;
		}
	}
	movieClip 3933	{
	}
	movieClip 3948	{
		frame 90 {
			stop();
		}
	}
	movieClip 3949 act4_hero {
		frame 1 {
			stop();
		}
	}
	movieClip 3960 act4_smoke {
		frame 6 {
			this.removeMovieClip();
		}
	}
	movieClip 3967 act4_meatchunks {
	}
	movieClip 3969 act4_progress {
		frame 1 {
			hero.stop();
			onEnterFrame = function () {
				if (!_root.game_paused) {
					if (!_root.racecompleted) {
						hero._x = 47 + 550 * (_root.ticktock / 1700);
					} else {
						hero._x = 597;
					}
				}
			};
		}
	}
	movieClip 3972 act4_racerestart {
	}
	movieClip 3975 act4race_mountains {
		frame 41 {
			gotoAndPlay(1);
		}
	}
	movieClip 3978 act4_jon {
		frame 1 {
			ground_item(true);
			onEnterFrame = function () {
				if (this.hitTest(_root.holder.player)) {
					_root.giveExclamation();
					if (allowDown and (Key.isDown(83) or Key.isDown(40))) {
						allowDown = false;
						if (_root.msgbox._visible == false and _root.msgbreather == 0) {
							mesarr = new Array();
							mesarr[0] = 'I just wanted my girl to be safe.';
							mesarr[1] = '					';
							mesarr[2] = 'Please leave us. There is a secret exit';
							mesarr[3] = 'through the bookcase.';
							_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'jon');
						}
					} else {
						if (!Key.isDown(83) and !Key.isDown(40)) {
							allowDown = true;
						}
					}
				}
			};
		}
	}
	movieClip 3981 act4_lily {
		frame 1 {
			ground_item(true);
			onEnterFrame = function () {
				if (this.hitTest(_root.holder.player)) {
					_root.giveExclamation();
					if (allowDown and (Key.isDown(83) or Key.isDown(40))) {
						allowDown = false;
						if (_root.msgbox._visible == false and _root.msgbreather == 0) {
							mesarr = new Array();
							mesarr[0] = 'Hey mister!';
							mesarr[1] = 'Have you played Wilt: Last Blossom?';
							_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'lily');
						}
					} else {
						if (!Key.isDown(83) and !Key.isDown(40)) {
							allowDown = true;
						}
					}
				}
			};
		}
	}
	movieClip 3990 alex {
		frame 1 {
			count = 0;
			gotoAndStop(2);
			onEnterFrame = function () {
				++count;
				if (count > 3) {
					count = -random(5);
					gotoAndStop(random(4) + 2);
				}
				if (this.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true)) {
					_root.giveExclamation();
					if (Key.isDown(40) or Key.isDown(83)) {
						if (_root.msgbox._visible == false and _root.msgbreather == 0) {
							mesarr = new Array();
							rnd = random(3);
							while (lastrnd == rnd) {
								rnd = random(3);
							}
							lastrnd = rnd;
							if (rnd == 0) {
								mesarr[0] = 'I wonder if I can code myself a love';
								mesarr[1] = 'life.';
							}
							if (rnd == 1) {
								mesarr[0] = 'I\'m trying to debug my head. I think the';
								mesarr[1] = 'code in my brain is broken. Someone';
								mesarr[2] = 'commented out my intelligence.';
							}
							if (rnd == 2) {
								mesarr[0] = 'I\'ll code for coffee. In fact I\'ll do almost';
								mesarr[1] = 'anything for coffee. Can you mix me a';
								mesarr[2] = 'coffee potion?';
							}
							_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'alex');
						}
					}
				}
			};
		}
	}
	movieClip 4001	{
	}
	movieClip 4003 karlo {
		frame 1 {
			function setLim() {
				lim = _root.framerate * (random(10) + 2);
			}
			count = 0;
			setLim();
			onEnterFrame = function () {
				if (this.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true)) {
					_root.giveExclamation();
					if (Key.isDown(40) or Key.isDown(83)) {
						if (_root.msgbox._visible == false and _root.msgbreather == 0) {
							mesarr = new Array();
							rnd = random(2);
							while (lastrnd == rnd) {
								rnd = random(2);
							}
							lastrnd = rnd;
							if (rnd == 0) {
								mesarr[0] = 'I like drawing stuff.';
							}
							if (rnd == 1) {
								mesarr[0] = 'I like boobs.';
							}
							_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'karlo');
						}
					}
				}
				if (_root.msgbox._visible == false) {
					++count;
					if (count > lim) {
						count = 0;
						setLim();
						if (_currentframe > 2) {
							play();
						} else {
							_xscale = 100;
							rnd = random(100);
							if (rnd > 50) {
								gotoAndPlay('walk1');
							} else {
								gotoAndPlay('walk2');
							}
						}
					}
				}
			};
		}
		frame 2 {
			stop();
			rnd = random(100);
			if (rnd > 50) {
				_xscale = 100;
			} else {
				_xscale = -100;
			}
		}
		frame 30 {
			stop();
		}
		frame 56 {
			gotoAndStop(2);
		}
		frame 84 {
			stop();
		}
		frame 111 {
			gotoAndStop(2);
		}
	}
	movieClip 4006 littleprince {
		frame 150 {
			mesarr = new Array();
			mesarr[0] = 'You - you alone will have the stars as';
			mesarr[1] = 'no one else has them... On one of the';
			mesarr[2] = 'stars I shall be living.';
			mesarr[3] = 'On one of them I shall be laughing.';
			mesarr[4] = 'And so it will be as if all the stars';
			mesarr[5] = 'were laughing, when you look at the sky';
			mesarr[6] = 'at night...';
			mesarr[7] = ' 							';
			mesarr[8] = 'You - only you - will have stars that';
			mesarr[9] = 'can laugh.';
			_root.msgbox.initmessage(mesarr, 6, 1);
			stop();
			onEnterFrame = function () {
				if (_root.msgbox._visible == false) {
					play();
				} else {
					_root.msgbox.runmessage();
				}
			};
		}
		frame 210 {
			stop();
			delete enterFrame;
			onEnterFrame = function () {
				_root.effectGravity = 0;
				_root.shift_frame('act3s14', 300, 2160);
			};
		}
	}
	movieClip 4009 templedoor {
		frame 1 {
			stop();
		}
		frame 2 {
			_root.playsound('walldoor1Sound');
		}
		frame 21 {
			this.removeMovieClip();
		}
	}
	movieClip 4010 wallsymbols {
		frame 1 {
			stop();
			onEnterFrame = function () {
				if (this.hitTest(_root.holder.cloudsLanguage)) {
					this.gotoAndStop(2);
				}
			};
		}
		frame 2 {
			one.gotoAndStop(_root.actions[41]);
			two.gotoAndStop(_root.actions[42]);
			three.gotoAndStop(_root.actions[43]);
		}
	}
	movieClip 4015 morax {
		frame 1 {
			ground_item(true);
			onEnterFrame = function () {
				if (!_root.actions[53] and this.hitTest(_root.holder.player)) {
					_root.giveExclamation();
					if (allowDown and (Key.isDown(83) or Key.isDown(40))) {
						allowDown = false;
						if (_root.msgbox._visible == false and _root.msgbreather == 0) {
							mesarr = new Array();
							mesarr[0] = 'Meet Morax, rightful ruler of hell!';
							mesarr[1] = 'Friend Morax slew his brother Murmur.';
							mesarr[2] = 'He would like you to have Murmur\'s';
							mesarr[3] = 'blood, to rejuvenate your spirits...';
							_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'moon');
						}
						_root.potionsarr[6] += 3;
						_root.actions[53] = true;
					} else {
						if (!Key.isDown(83) and !Key.isDown(40)) {
							allowDown = true;
						}
					}
				}
			};
		}
		frame 48 {
			gotoAndPlay(2);
		}
	}
	movieClip 4016 acidrise1 {
	}
	movieClip 4023 acidsign1 {
	}
	movieClip 4025 act7boss_door {
		frame 1 {
			_root.playsound('walldoor1Sound');
		}
		frame 15 {
			stop();
		}
		frame 16 {
			_root.playsound('walldoor1Sound');
		}
		frame 31 {
			this.removeMovieClip();
		}
	}
	movieClip 4028 sludge1 {
	}
	movieClip 4033 selectship {
		frame 1 {
			stop();
		}
	}
	movieClip 4035 star {
	}
	movieClip 4038 act4cryingwoman {
		frame 1 {
			onEnterFrame = function () {
				if (this.hitTest(_root.holder.player.hitbox)) {
					_root.giveExclamation();
					if (Key.isDown(40) or Key.isDown(83)) {
						if (_root.msgbox._visible == false and _root.msgbreather == 0) {
							mesarr = new Array();
							mesarr[0] = 'Oh@ please... You must help! The Priests';
							mesarr[1] = 'took my husband. They are going to kill';
							mesarr[2] = 'him! Please help us!';
							_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'woman');
						}
					}
				}
			};
		}
	}
	movieClip 4043	{
	}
	movieClip 4044 zealotfallcutscene {
		frame 60 {
			_root.create_blood(_x, _y, _root.tilesize, 'blood');
		}
		frame 66 {
			stop();
		}
	}
	movieClip 4059	{
		frame 1 {
			gotoAndPlay(random(_totalframes));
		}
		frame 2 {
			gotoAndPlay(_currentframe + random(5));
		}
		frame 13 {
			gotoAndPlay(_currentframe + random(2));
		}
		frame 24 {
			gotoAndPlay(_currentframe + random(2));
		}
		frame 35 {
			gotoAndPlay(_currentframe + random(2));
		}
		frame 46 {
			gotoAndPlay(_currentframe + random(2));
		}
		frame 57 {
			gotoAndPlay(_currentframe + random(2));
		}
		frame 68 {
			gotoAndPlay(2);
		}
	}
	movieClip 4066	{
	}
	movieClip 4069 lava1 {
		frame 1 {
			stop();
		}
	}
	movieClip 4071 btbh1 {
		frame 1 {
			ground_item(true);
			onEnterFrame = function () {
				if (this.hitTest(_root.holder.player)) {
					_root.giveExclamation();
					if (allowDown and (Key.isDown(83) or Key.isDown(40))) {
						allowDown = false;
						if (_root.msgbox._visible == false and _root.msgbreather == 0) {
							_root.health = _root.maxhealth;
							_root.clear_life();
							_root.load_life();
							mesarr = new Array();
							mesarr[0] = 'I\'m Bullet, the best bounty hunter';
							mesarr[1] = 'around.';
							mesarr[2] = 'Let\'s get you patched up.';
							_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'bullet');
						}
					} else {
						if (!Key.isDown(83) and !Key.isDown(40)) {
							allowDown = true;
						}
					}
				}
			};
		}
	}
	movieClip 4074 oldman_dead {
		frame 1 {
			_y = Math.ceil(_y / _root.tilesize) * _root.tilesize;
			avatararr = ['hero', 'oldman', 'hero', 'oldman', 'oldman', 'oldmandead'];
			lettertimearr = [_root.standardlettertime, _root.standardlettertime * 3, _root.standardlettertime, _root.standardlettertime * 3, _root.standardlettertime * 3, _root.standardlettertime * 5];
			onEnterFrame = function () {
				if (custmsg) {
					if (_root.msgbox.arrcounter >= _root.msgbox.nummsgs and _root.msgbox.deleteStart) {
						++msgcounter;
						if (msgcounter <= 5) {
							_root.msgbox.initmessage(mesarr[msgcounter], _root.standardlettertime, avatararr[msgcounter]);
						} else {
							custmsg = false;
						}
					}
				}
				if (_root.msgbox._visible == false) {
					if (kneelDelay > 0 and !custmsg) {
						--kneelDelay;
						_root.holder.kneel.play();
						if (kneelDelay == 0) {
							_root.fadein_music();
							_root.music_load('zos_monsterSound');
							_root.holder.kneel.removeMovieClip();
							_root.cutscene = false;
							_root.holder.player._visible = true;
						}
					}
				}
				if (this.hitTest(_root.holder.player) and !_root.cutscene) {
					_root.giveExclamation();
					if (allowDown and (Key.isDown(83) or Key.isDown(40)) and _root.msgbox._visible == false) {
						allowDown = false;
						if (!_root.actions[76]) {
							_root.fadeout_music();
							custmsg = true;
							_root.actions[76] = true;
							kneelDelay = 120;
							_root.holder.player._visible = false;
							++_root.count;
							_root.holder.attachMovie('playerkneel', 'kneel', _root.count);
							_root.holder.kneel._x = _root.holder.player._x;
							_root.holder.kneel._y = _root.holder.player._y;
							_root.holder.kneel.stop();
							_root.cutscene = true;
							msgcounter = 0;
							mesarr = new Array();
							mesarr[0] = ['Movo!'];
							mesarr[1] = ['Ah... Zos... You have made it this far...', 'Now, hurry... You need to get the last', 'Essence... And stop X\'o\'chthu...'];
							mesarr[2] = ['Hang on Movo, I\'ll make you a potion! I\'ll', 'make you better again!'];
							mesarr[3] = ['It\'s too late for me... Besides, what', 'does one man matter anyway? You', 'have the opportunity to save them all...'];
							mesarr[4] = ['Save them all, Zos...'];
							mesarr[5] = ['. . . . .'];
							_root.msgbox.initmessage(mesarr[0], _root.standardlettertime, 'hero');
						} else {
							if (_root.msgbox._visible == false and _root.msgbreather == 0) {
								mesarr = new Array();
								mesarr[0] = '. . . . .';
								_root.msgbox.initmessage(mesarr, _root.standardlettertime * 5, 'oldmandead');
							}
						}
					} else {
						if (!Key.isDown(83) and !Key.isDown(40)) {
							allowDown = true;
						}
					}
				}
			};
		}
	}
	movieClip 4079 act7orblight {
		frame 1 {
			stop();
		}
	}
	movieClip 4083 movingwall {
	}
	movieClip 4086 cranecrate {
	}
	movieClip 4088 act7s4darkness {
	}
	movieClip 4091	{
	}
	movieClip 4094	{
	}
	movieClip 4097	{
	}
	movieClip 4098	{
		frame 49 {
			gotoAndPlay(1);
		}
	}
	movieClip 4099 act7boss {
	}
	movieClip 4106 act7leaf {
	}
	movieClip 4115	{
		frame 1 {
			gotoAndPlay(random(_totalframes - 2) + 2);
		}
		frame 14 {
			gotoAndPlay(2);
		}
	}
	movieClip 4116 act7boss_spore {
		frame 1 {
			stop();
		}
	}
	movieClip 4123	{
	}
	movieClip 4133	{
	}
	movieClip 4134 act7boss_tentacle {
		frame 91 {
			this.removeMovieClip();
		}
	}
	movieClip 4137 gasboss_door {
		frame 1 {
			_root.playsound('walldoor1Sound');
		}
		frame 15 {
			stop();
		}
		frame 16 {
			_root.playsound('walldoor1Sound');
		}
		frame 31 {
			this.removeMovieClip();
		}
	}
	movieClip 4144	{
	}
	movieClip 4153	{
	}
	movieClip 4156 last_support {
	}
	movieClip 4169 last_supportbullet {
		frame 1 {
			stop();
		}
		frame 12 {
			this.removeMovieClip();
		}
	}
	movieClip 4174	{
		frame 1 {
			gotoAndPlay(1 + random(15));
		}
		frame 30 {
			gotoAndPlay(30 + random(15));
		}
	}
	movieClip 4179	{
		frame 1 {
			stop();
		}
	}
	movieClip 4186	{
		frame 1 {
			gotoAndPlay(_currentframe + random(5));
		}
		frame 14 {
			gotoAndPlay(_currentframe + random(5));
		}
		frame 27 {
			gotoAndPlay(_currentframe + random(5));
		}
	}
	movieClip 4189	{
	}
	movieClip 4190 last_form1 {
	}
	movieClip 4193 last_halfceiling {
	}
	movieClip 4208 last_bossbullet {
		frame 1 {
			stop();
		}
		frame 14 {
			this.removeMovieClip();
		}
	}
	movieClip 4215	{
	}
	movieClip 4222	{
	}
	movieClip 4223	{
		frame 120 {
			gotoAndPlay('afterwait');
		}
	}
	movieClip 4224 last_form2 {
		frame 1 {
			stop();
		}
	}
	movieClip 4233	{
		frame 1 {
			stop();
		}
		frame 7 {
			stop();
		}
	}
	movieClip 4238	{
		frame 1 {
			stop();
		}
		frame 7 {
			stop();
		}
	}
	movieClip 4243	{
		frame 1 {
			stop();
		}
		frame 7 {
			stop();
		}
	}
	movieClip 4248	{
		frame 1 {
			stop();
		}
		frame 7 {
			stop();
		}
	}
	movieClip 4253	{
		frame 1 {
			stop();
		}
		frame 7 {
			stop();
		}
	}
	movieClip 4258	{
		frame 1 {
			stop();
		}
		frame 7 {
			stop();
		}
	}
	movieClip 4263	{
		frame 1 {
			stop();
		}
		frame 7 {
			stop();
		}
	}
	movieClip 4264	{
	}
	movieClip 4267 last_form3 {
		frame 1 {
			stop();
		}
	}
	movieClip 4274 last_rocks {
	}
	movieClip 4277 last_mouthbullet {
	}
	movieClip 4280 playerkneel {
		frame 1 {
			stop();
		}
		frame 91 {
			stop();
		}
		frame 92 {
			gotoAndPlay(91);
		}
	}
	movieClip 4283	{
		frame 1 {
			_x = int(_x);
			_y = int(_y);
			_visible = false;
			yspeed = 0;
			ydir = 0.1;
			onEnterFrame = function () {
				_y = _y + yspeed;
				yspeed += ydir;
				if (yspeed > 1 or yspeed < -1) {
					ydir *= -1;
				}
			};
		}
	}
	movieClip 4296 last_altars {
	}
	movieClip 4317 credits_text {
	}
	movieClip 4320 end_statue {
	}
	movieClip 4321 act1s6h1_oldman {
		frame 1 {
			_x = int(_x);
			_y = int(_y);
			_y = Math.ceil(_y / _root.tilesize) * _root.tilesize;
			onEnterFrame = function () {
				if (this.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true)) {
					_root.giveExclamation();
					if (Key.isDown(40) or Key.isDown(83)) {
						if (_root.msgbox._visible == false and _root.msgbreather == 0) {
							mesarr = new Array();
							if (!_root.actions[1]) {
								_root.actions[79] = true;
								mesarr[0] = 'Good that you\'re here. Take a look';
								mesarr[1] = 'through the telescope. We will speak';
								mesarr[2] = 'after...';
								mesarr[3] = 'Hurry.';
							} else {
								mesarr[0] = 'Let\'s go.';
							}
							_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'oldman');
						}
					}
				}
			};
		}
	}
	movieClip 4323 t2_ledge {
	}
	movieClip 4326 act4_skiprace {
	}
	movieClip 4337	{
	}
	movieClip 4339 wandschrank {
		frame 1 {
			function setLim() {
				lim = _root.framerate * (random(10) + 2);
			}
			count = 0;
			setLim();
			msgcount = 0;
			onEnterFrame = function () {
				if (this.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true)) {
					_root.giveExclamation();
					if (Key.isDown(40) or Key.isDown(83)) {
						if (_root.msgbox._visible == false and _root.msgbreather == 0) {
							mesarr = new Array();
							++msgcount;
							if (msgcount == 1) {
								mesarr[0] = 'Have you seen my pants?';
							} else {
								if (msgcount == 2) {
									mesarr[0] = 'No?';
								} else {
									if (msgcount == 3) {
										mesarr[0] = 'Well, I burned them.';
									} else {
										if (msgcount == 4) {
											mesarr[0] = 'I hate pants.';
										} else {
											mesarr[0] = 'You should burn yours too.';
										}
									}
								}
							}
							_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'wandschrank');
						}
					}
				}
				if (_root.msgbox._visible == false) {
					++count;
					if (count > lim) {
						count = 0;
						setLim();
						if (_currentframe > 2) {
							play();
						} else {
							_xscale = 100;
							rnd = random(100);
							if (rnd > 50) {
								gotoAndPlay('walk1');
							} else {
								gotoAndPlay('walk2');
							}
						}
					}
				}
			};
		}
		frame 2 {
			stop();
			rnd = random(100);
			if (rnd > 50) {
				_xscale = 100;
			} else {
				_xscale = -100;
			}
		}
		frame 30 {
			stop();
		}
		frame 56 {
			gotoAndStop(2);
		}
		frame 84 {
			stop();
		}
		frame 111 {
			gotoAndStop(2);
		}
	}
	frame 155 {
		_quality = 'HIGH';
		nextFrame();
	}
	button 4453 {
		on (release) {
			getURL('http://armor.ag/MoreGames', '_blank');
		}
	}
	movieClip 4458	{
	}
	movieClip 4464	{
	}
	movieClip 4467	{
		frame 1 {
			_root.stop();
			gotoAndPlay(2);
		}
		frame 225 {
			stop();
			_root.gotoAndStop('mainmenu');
		}
	}
	frame 157 {
		stop();
	}
	frame 158 {
		stop();
	}
	button 4468 {
		on (release) {
			getURL('http://www.8bitskull.com', '_blank');
		}
	}
	movieClip 4494	{
		frame 1 {
			_root.stop();
		}
		frame 131 {
			stop();
			_parent.play();
		}
	}
	frame 159 {
		stop();
	}
	button 4495 {
		on (release) {
			getURL('http://wandschrank.newgrounds.com/', '_blank');
		}
	}
	movieClip 4498	{
	}
	
	// unknown tag 88 length 62
	
	// unknown tag 88 length 62
	movieClip 4503	{
	}
	frame 160 {
		clear_all();
		rebootgame();
		nextFrame();
	}
	button 4504 {
		on (release) {
			gotoAndStop(testtarg);
		}
	}
	button 4505 {
		on (release) {
			gotoAndPlay('leveleditorframe');
		}
	}
	button 4511 {
		on (release) {
			_root.resetactions();
			_root.playsound('buttonclick1Sound');
			_root.potionsarr = new Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
			_root.potionsowned = new Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
			_root.ingredientsarr = new Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
			_root.trigger_shift_frame('act1s4h1', 525, 525);
			_root.fadeout_music(10);
		}
		on (rollOver) {
			_root.playsound('buttonover1Sound');
		}
	}
	button 4513 {
		on (release) {
			_root.playsound('buttonclick1Sound');
			savecheck = _root.saveData.data.savecheck;
			if (savecheck) {
				_root.resetactions();
				_root.loadgame();
				_root.gotoAndStop(_root.load_game_frame);
			}
		}
		on (rollOver) {
			_root.playsound('buttonover1Sound');
		}
	}
	button 4515 {
		on (release) {
			_root.playsound('buttonclick1Sound');
			getURL('http://armor.ag/MoreGames', '_blank');
		}
		on (rollOver) {
			_root.playsound('buttonover1Sound');
		}
	}
	button 4517 {
		on (release) {
			_root.playsound('buttonclick1Sound');
			nextFrame();
		}
		on (rollOver) {
			_root.playsound('buttonover1Sound');
		}
	}
	button 4519 {
		on (release) {
			_root.playsound('buttonclick1Sound');
			prevFrame();
		}
		on (rollOver) {
			_root.playsound('buttonover1Sound');
		}
	}
	movieClip 4521	{
		frame 1 {
			stop();
		}
	}
	button 4523 {
		on (release) {
			_root.playsound('buttonclick1Sound');
			savecheck = _root.saveData.data.savecheck;
			if (savecheck) {
				_root.resetactions();
				_root.loadgame();
				_root.gotoAndStop(_root.load_game_frame + 5);
			}
		}
		on (rollOver) {
			_root.playsound('buttonover1Sound');
		}
	}
	button 4525 {
		on (release) {
			_root.playsound('buttonclick1Sound');
			savecheck = _root.saveData.data.savecheck;
			if (savecheck) {
				_root.resetactions();
				_root.loadgame();
				_root.gotoAndStop(_root.load_game_frame + 6);
			}
		}
		on (rollOver) {
			_root.playsound('buttonover1Sound');
		}
	}
	
	// unknown tag 88 length 69
	button 4529 {
		on (release) {
			getURL('http://www.facebook.com/ArmorGames', '_blank');
		}
	}
	frame 161 {
		stop();
		rebootgame();
		savecheck = saveData.data.savecheck;
		loadAllSounds();
		fadein_music();
		music_load('zos_menuSound');
		++count;
		attachMovie('game_frame', 'game_frame', count + 10000);
		game_frame.cacheAsBitmap();
		_quality = 'LOW';
	}
	button 4531 {
		on (release) {
			getURL('https://twitter.com/8BitSkull', '_blank');
			_root.playsound('buttonclick1Sound');
		}
		on (rollOver) {
			_root.playsound('buttonover1Sound');
		}
	}
	movieClip 4534	{
	}
	movieClip 4535	{
		frame 1 {
			stop();
			onEnterFrame = function () {
				if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
					gotoAndStop(2);
				} else {
					gotoAndStop(1);
				}
			};
		}
	}
	movieClip 4542	{
		frame 43 {
			gotoAndPlay(_currentframe + random(100));
		}
	}
	frame 177 {
		stop();
		loadAllSounds();
	}
	button 4548 {
		on (release) {
			potionsarr = new Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
			potionsowned = new Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
			ingredientsarr = new Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
			gotoAndStop('act1s4h1');
		}
	}
	button 4550 {
		on (release) {
			savecheck = saveData.data.savecheck;
			if (savecheck) {
				loadgame();
				gotoAndStop(load_game_frame);
			}
		}
	}
	frame 187 {
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		onEnterFrame = function () {
			if (Key.isDown(76)) {
				clear_all();
				gotoAndStop('leveleditorframe');
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 197 {
		stop();
		music_load('');
	}
	button 4554 {
		on (release) {
			gotoAndStop('loadframe');
		}
	}
	button 4561 {
		on (release, keyPress '<Space>') {
			if (inp_wide < 20) {
				inp_wide = 20;
			}
			if (inp_wide > 72) {
				inp_wide = 72;
			}
			if (inp_high < 15) {
				inp_high = 15;
			}
			if (inp_high > 72) {
				inp_high = 72;
			}
			levelwidth = inp_wide * _root.tilesize;
			levelheight = inp_high * _root.tilesize;
			rowtiles = inp_wide;
			coltiles = inp_high;
			nextFrame();
		}
	}
	button 4565 {
		on (release) {
			if (_parent.editmode != 'ground') {
				_parent.editmode = 'ground';
				_parent.groundmode();
			}
		}
	}
	button 4566 {
		on (release) {
			if (_parent.editmode != 'background') {
				_parent.editmode = 'background';
				_parent.backgroundmode();
			}
		}
	}
	button 4567 {
		on (release) {
			if (_parent.editmode != 'foreground') {
				_parent.editmode = 'foreground';
				_parent.foregroundmode();
			}
		}
	}
	button 4568 {
		on (release) {
			if (_parent.editmode != 'ladder') {
				_parent.editmode = 'ladder';
				_parent.laddermode();
			}
		}
	}
	button 4569 {
		on (release) {
			if (_parent.editmode != 'item') {
				_parent.editmode = 'item';
				_parent.itemmode();
			}
		}
	}
	button 4570 {
		on (release) {
			if (_parent.levelholder.grid._visible) {
				_parent.levelholder.grid._visible = false;
			} else {
				_parent.levelholder.grid._visible = true;
			}
		}
	}
	button 4571 {
		on (release) {
			if (_parent.editmode != 'bgimg') {
				_parent.editmode = 'bgimg';
				_parent.bgimgmode();
			}
		}
	}
	button 4574 {
		on (release) {
			_parent.gotoAndStop('exportframe');
		}
	}
	movieClip 4584	{
	}
	button 4586 {
		on (release) {
			_root.gotoAndStop('testframe');
		}
	}
	button 4599 {
		on (release, keyPress '<Space>') {
			gotoAndStop(1);
		}
	}
	button 4606 {
		on (release) {
			gotoAndStop('editorframe');
		}
	}
	movieClip 4607	{
		frame 1 {
			stop();
			loadingmap = false;
		}
		frame 2 {
			stop();
		}
		frame 3 {
			function itemmode() {
				hud.showtile.removeMovieClip();
				hud.show_tiles.removeMovieClip();
				editor_items.removeMovieClip();
				editor_bgselect.removeMovieClip();
				++_root.count;
				attachMovie('editor_items', 'editor_items', _root.count);
			}
			function bgimgmode() {
				hud.showtile.removeMovieClip();
				hud.show_tiles.removeMovieClip();
				editor_items.removeMovieClip();
				editor_bgselect.removeMovieClip();
				++_root.count;
				attachMovie('editor_bgselect', 'editor_bgselect', _root.count);
			}
			function addShowTiles() {
				hud.show_tiles.removeMovieClip();
				++_root.count;
				hud.createEmptyMovieClip('show_tiles', _root.count);
				hud.show_tiles._x = 96;
				show_tilesxloc = 0;
				show_tilesyloc = 0;
				show_rowlength = 28 * _root.tilesize * 0.5;
			}
			function addSelectableTiles(targ) {
				i = beginpos;
				while (i < groundgraphics) {
					++_root.count;
					hud.show_tiles.attachMovie(targ, 'disp_tile' + i, _root.count);
					hud.show_tiles['disp_tile' + i]._xscale = 50;
					hud.show_tiles['disp_tile' + i]._yscale = 50;
					hud.show_tiles['disp_tile' + i]._x = show_tilesxloc;
					hud.show_tiles['disp_tile' + i]._y = show_tilesyloc;
					if (i > 0) {
						hud.show_tiles['disp_tile' + i].gotoAndStop(i);
					} else {
						hud.show_tiles['disp_tile' + i]._alpha = 0;
						hud.show_tiles['disp_tile' + i].gotoAndStop(1);
					}
					hud.show_tiles['disp_tile' + i].onMouseDown = function () {
						if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
							if (this._alpha == 0) {
								tileselect = 0;
							} else {
								tileselect = this._currentframe;
							}
						}
					};
					show_tilesxloc += tilesize * 0.5;
					if (show_tilesxloc >= show_rowlength) {
						show_tilesxloc -= show_rowlength;
						show_tilesyloc += _root.tilesize * 0.5;
					}
					++i;
				}
			}
			function groundmode() {
				targpath = 'groundtile';
				editor_items.removeMovieClip();
				editor_bgselect.removeMovieClip();
				hud.showtile.removeMovieClip();
				++_root.count;
				hud.attachMovie('groundtile', 'showtile', _root.count);
				hud.showtile.gotoAndStop(1);
				hud.showtile._x = tilesize;
				hud.showtile._y = tilesize;
				tileselect = 1;
				++_root.count;
				levelholder.attachMovie('groundtile', 'tile', _root.count);
				groundgraphics = levelholder.tile._totalframes + 1;
				if (groundgraphics > 165) {
					groundgraphics = 165;
				}
				beginpos = 0;
				levelholder.tile.removeMovieClip();
				addShowTiles();
				addSelectableTiles(targpath);
			}
			function foregroundmode() {
				targpath = 'foregroundtile';
				editor_items.removeMovieClip();
				editor_bgselect.removeMovieClip();
				hud.showtile.removeMovieClip();
				++_root.count;
				hud.attachMovie('foregroundtile', 'showtile', _root.count);
				hud.showtile.gotoAndStop(1);
				hud.showtile._x = tilesize;
				hud.showtile._y = tilesize;
				tileselect = 1;
				++_root.count;
				levelholder.attachMovie('foregroundtile', 'tile', _root.count);
				groundgraphics = levelholder.tile._totalframes + 1;
				if (groundgraphics > 165) {
					groundgraphics = 165;
				}
				beginpos = 0;
				levelholder.tile.removeMovieClip();
				addShowTiles();
				addSelectableTiles(targpath);
			}
			function backgroundmode() {
				targpath = 'backgroundtile';
				editor_items.removeMovieClip();
				editor_bgselect.removeMovieClip();
				hud.showtile.removeMovieClip();
				++_root.count;
				hud.attachMovie('backgroundtile', 'showtile', _root.count);
				hud.showtile.gotoAndStop(1);
				hud.showtile._x = tilesize;
				hud.showtile._y = tilesize;
				tileselect = 1;
				++_root.count;
				levelholder.attachMovie('backgroundtile', 'tile', _root.count);
				totframes = levelholder.tile._totalframes + 1;
				groundgraphics = levelholder.tile._totalframes + 1;
				if (groundgraphics > 165) {
					groundgraphics = 165;
				}
				beginpos = 0;
				levelholder.tile.removeMovieClip();
				addShowTiles();
				addSelectableTiles(targpath);
			}
			function laddermode() {
				targpath = 'laddertile';
				editor_items.removeMovieClip();
				editor_bgselect.removeMovieClip();
				hud.showtile.removeMovieClip();
				++_root.count;
				hud.attachMovie('laddertile', 'showtile', _root.count);
				hud.showtile.gotoAndStop(1);
				hud.showtile._x = tilesize;
				hud.showtile._y = tilesize;
				tileselect = 1;
				++_root.count;
				levelholder.attachMovie('laddertile', 'tile', _root.count);
				groundgraphics = levelholder.tile._totalframes + 1;
				if (groundgraphics > 165) {
					groundgraphics = 165;
				}
				beginpos = 0;
				levelholder.tile.removeMovieClip();
				addShowTiles();
				addSelectableTiles(targpath);
			}
			stop();
			++_root.count;
			this.createEmptyMovieClip('levelholder', _root.count);
			++_root.count;
			levelholder.createEmptyMovieClip('backgroundholder', _root.count);
			++_root.count;
			levelholder.createEmptyMovieClip('ladderholder', _root.count);
			++_root.count;
			levelholder.createEmptyMovieClip('groundholder', _root.count);
			++_root.count;
			levelholder.createEmptyMovieClip('itemholder', _root.count);
			++_root.count;
			levelholder.createEmptyMovieClip('foregroundholder', _root.count);
			if (loadingmap) {
				mapholder = levelpaste.split(' BREAK ');
				_root.groundmap = new Array();
				_root.foregroundmap = new Array();
				_root.backgroundmap = new Array();
				_root.laddermap = new Array();
				startx = parseInt(mapholder[0].split(','));
				starty = parseInt(mapholder[1].split(','));
				rowtiles = parseInt(mapholder[2].split(','));
				coltiles = parseInt(mapholder[3].split(','));
				_root.groundmap = mapholder[4].split(',');
				_root.foregroundmap = mapholder[5].split(',');
				_root.backgroundmap = mapholder[6].split(',');
				_root.laddermap = mapholder[7].split(',');
				_root.bgselect = mapholder[8];
				_root.frontbgselect = mapholder[9];
				stat_def = 10;
				_root.itemarr = new Array();
				i = stat_def;
				while (i < mapholder.length) {
					j = i - stat_def;
					_root.itemarr[j] = mapholder[i].split(',');
					++_root.count;
					_root.leveleditor.levelholder.itemholder.attachMovie('itemgraphic', 'itemgraphic' + _root.count, _root.count);
					_root.leveleditor.levelholder.itemholder['itemgraphic' + _root.count].gotoAndStop(_root.itemarr[j][1]);
					_root.leveleditor.levelholder.itemholder['itemgraphic' + _root.count].arrid = parseInt(_root.itemarr[j][0]);
					_root.arrid = parseInt(_root.itemarr[j][0]);
					_root.leveleditor.levelholder.itemholder['itemgraphic' + _root.count]._x = _root.itemarr[j][2];
					_root.leveleditor.levelholder.itemholder['itemgraphic' + _root.count]._y = _root.itemarr[j][3];
					_root.leveleditor.levelholder.itemholder['itemgraphic' + _root.count].onEnterFrame = function () {
						if (this.hitTest(_root._xmouse, _root._ymouse, true) and _root.leveleditor.mousedown) {
							_root.leveleditor.tileselect = 0;
							this.startDrag();
							_root.leveleditor.dragging = true;
							if (Key.isDown(46) or Key.isDown(8)) {
								i = 0;
								while (i < _root.itemarr.length) {
									if (_root.itemarr[i][0] == this.arrid) {
										_root.itemarr.splice(i, 1);
									}
									++i;
								}
								this.removeMovieClip();
							}
						}
						if (!_root.leveleditor.mousedown and this.hitTest(_root._xmouse, _root._ymouse, true)) {
							this.stopDrag();
							i = 0;
							while (i < _root.itemarr.length) {
								if (_root.itemarr[i][0] == this.arrid) {
									_root.itemarr[i][2] = this._x;
									_root.itemarr[i][3] = this._y;
								}
								++i;
							}
						}
					};
					++i;
				}
				if (mapholder.length == stat_def) {
					_root.arrid = 0;
				}
				levelwidth = rowtiles * _root.tilesize;
				levelheight = coltiles * _root.tilesize;
				xtile = 0;
				ytile = 0;
				i = 0;
				while (i < _root.groundmap.length) {
					if (_root.groundmap[i] > 0) {
						tileselect = _root.groundmap[i];
						tilenum = i;
						++_root.count;
						levelholder.groundholder.attachMovie('groundtile', 'tile' + tilenum, _root.count);
						levelholder.groundholder['tile' + tilenum]._x = xtile;
						levelholder.groundholder['tile' + tilenum]._y = ytile;
						_currentframe = tileselect;
						levelholder.groundholder['tile' + tilenum].gotoAndStop(tileselect);
					}
					xtile += _root.tilesize;
					if (xtile >= levelwidth) {
						xtile -= levelwidth;
						ytile += _root.tilesize;
					}
					++i;
				}
				xtile = 0;
				ytile = 0;
				i = 0;
				while (i < _root.foregroundmap.length) {
					if (_root.foregroundmap[i] > 0) {
						tileselect = _root.foregroundmap[i];
						tilenum = i;
						++_root.count;
						levelholder.foregroundholder.attachMovie('foregroundtile', 'tile' + tilenum, _root.count);
						levelholder.foregroundholder['tile' + tilenum]._x = xtile;
						levelholder.foregroundholder['tile' + tilenum]._y = ytile;
						_currentframe = tileselect;
						levelholder.foregroundholder['tile' + tilenum].gotoAndStop(tileselect);
					}
					xtile += _root.tilesize;
					if (xtile >= levelwidth) {
						xtile -= levelwidth;
						ytile += _root.tilesize;
					}
					++i;
				}
				xtile = 0;
				ytile = 0;
				i = 0;
				while (i < _root.backgroundmap.length) {
					if (_root.backgroundmap[i] > 0) {
						tileselect = _root.backgroundmap[i];
						tilenum = i;
						++_root.count;
						levelholder.backgroundholder.attachMovie('backgroundtile', 'tile' + tilenum, _root.count);
						levelholder.backgroundholder['tile' + tilenum]._x = xtile;
						levelholder.backgroundholder['tile' + tilenum]._y = ytile;
						_currentframe = tileselect;
						levelholder.backgroundholder['tile' + tilenum].gotoAndStop(tileselect);
					}
					xtile += _root.tilesize;
					if (xtile >= levelwidth) {
						xtile -= levelwidth;
						ytile += _root.tilesize;
					}
					++i;
				}
				xtile = 0;
				ytile = 0;
				i = 0;
				while (i < _root.laddermap.length) {
					if (_root.laddermap[i] > 0) {
						tileselect = _root.laddermap[i];
						tilenum = i;
						++_root.count;
						levelholder.ladderholder.attachMovie('laddertile', 'tile' + tilenum, _root.count);
						levelholder.ladderholder['tile' + tilenum]._x = xtile;
						levelholder.ladderholder['tile' + tilenum]._y = ytile;
						_currentframe = tileselect;
						levelholder.ladderholder['tile' + tilenum].gotoAndStop(tileselect);
					}
					xtile += _root.tilesize;
					if (xtile >= levelwidth) {
						xtile -= levelwidth;
						ytile += _root.tilesize;
					}
					++i;
				}
			} else {
				_root.groundmap = new Array();
				_root.foregroundmap = new Array();
				_root.backgroundmap = new Array();
				_root.laddermap = new Array();
				_root.itemarr = new Array();
				_root.arrid = 0;
				_root.bgselect = 'bg_black';
				_root.frontbgselect = 0;
				totaltiles = rowtiles * coltiles;
				i = 0;
				while (i < totaltiles) {
					_root.groundmap[i] = 0;
					_root.foregroundmap[i] = 0;
					_root.backgroundmap[i] = 0;
					_root.laddermap[i] = 0;
					++i;
				}
				startx = _root.stagewidth / 2;
				starty = _root.stageheight / 2;
			}
			loadingmap = false;
			editmode = 'ground';
			new com.robertpataki.heartcode.BitmapTiler(levelholder, 'grid', 'gridtile', levelwidth, levelheight);
			levelholder.grid._alpha = 20;
			++_root.count;
			levelholder.grid.swapDepths(_root.count);
			++_root.count;
			levelholder.attachMovie('playerloc', 'playerloc', _root.count);
			levelholder.playerloc._x = startx;
			levelholder.playerloc._y = starty;
			levelholder.playerloc.onEnterFrame = function () {
				if (this.hitTest(_root._xmouse, _root._ymouse, true) and mousedown) {
					tileselect = 0;
					this.startDrag();
					_root.leveleditor.dragging = true;
				}
				if (!mousedown) {
					this.stopDrag();
					startx = this._x;
					starty = this._y;
				}
			};
			tilesize = _root.tilesize;
			++_root.count;
			hud.swapDepths(_root.count);
			hud.rightB.onRelease = function () {
				addShowTiles();
				beginpos += 165;
				groundgraphics += 165;
				addSelectableTiles(targpath);
			};
			hud.leftB.onRelease = function () {
				addShowTiles();
				beginpos -= 165;
				groundgraphics -= 165;
				addSelectableTiles(targpath);
			};
			groundmode();
			bleed = tilesize;
			minx = -levelwidth + (_root.stagewidth - bleed);
			maxx = bleed;
			miny = -levelheight + (_root.stageheight - bleed - hud._height);
			maxy = bleed;
			mousedown = false;
			dragging = false;
			myframe = _currentframe;
			if (_root.frontbgselect != null) {
				hud.frontbgselect = _root.frontbgselect;
			}
			onEnterFrame = function () {
				_root.frontbgselect = hud.frontbgselect;
				hud.mouse_xpos = int(_xmouse - levelholder._x);
				hud.mouse_ypos = int(_ymouse - levelholder._y);
				if (Key.isDown(39)) {
					levelholder._x -= 10;
				} else {
					if (Key.isDown(37)) {
						levelholder._x += 10;
					}
				}
				if (Key.isDown(40)) {
					levelholder._y -= 10;
				} else {
					if (Key.isDown(38)) {
						levelholder._y += 10;
					}
				}
				if (levelholder._x < minx) {
					levelholder._x = minx;
				} else {
					if (levelholder._x > maxx) {
						levelholder._x = maxx;
					}
				}
				if (levelholder._y < miny) {
					levelholder._y = miny;
				} else {
					if (levelholder._y > maxy) {
						levelholder._y = maxy;
					}
				}
				xtile = Math.floor((_root._xmouse - levelholder._x) / _root.tilesize);
				ytile = Math.floor((_root._ymouse - levelholder._y) / _root.tilesize);
				tilenum = ytile * rowtiles + xtile;
				_currentframe = tileselect;
				hud.showtile.gotoAndStop(tileselect);
				if (tileselect == 0) {
					hud.showtile._alpha = 0;
				} else {
					hud.showtile._alpha = 100;
				}
				if (mousedown) {
					if (!editor_items and !editor_bgselect and !hud.hitTest(_root._xmouse, _root._ymouse, true) and xtile >= 0 and xtile < rowtiles and ytile >= 0 and ytile < coltiles and dragging == false) {
						if (tileselect == 0) {
							levelholder.groundholder['tile' + tilenum].removeMovieClip();
							levelholder.foregroundholder['tile' + tilenum].removeMovieClip();
							levelholder.backgroundholder['tile' + tilenum].removeMovieClip();
							levelholder.ladderholder['tile' + tilenum].removeMovieClip();
							_root.groundmap[tilenum] = 0;
							_root.foregroundmap[tilenum] = 0;
							_root.backgroundmap[tilenum] = 0;
							_root.watermap[tilenum] = 0;
							_root.laddermap[tilenum] = 0;
						}
						if (tileselect > 0) {
							trace(tilenum);
							++_root.count;
							if (editmode == 'ground') {
								levelholder.groundholder['tile' + tilenum].removeMovieClip();
								_root.groundmap[tilenum] = tileselect;
								levelholder.groundholder.attachMovie('groundtile', 'tile' + tilenum, _root.count);
								levelholder.groundholder['tile' + tilenum]._x = xtile * _root.tilesize;
								levelholder.groundholder['tile' + tilenum]._y = ytile * _root.tilesize;
								_currentframe = tileselect;
								levelholder.groundholder['tile' + tilenum].gotoAndStop(tileselect);
							} else {
								if (editmode == 'ladder') {
									levelholder.ladderholder['tile' + tilenum].removeMovieClip();
									_root.laddermap[tilenum] = tileselect;
									levelholder.ladderholder.attachMovie('laddertile', 'tile' + tilenum, _root.count);
									levelholder.ladderholder['tile' + tilenum]._x = xtile * _root.tilesize;
									levelholder.ladderholder['tile' + tilenum]._y = ytile * _root.tilesize;
									_currentframe = tileselect;
									levelholder.ladderholder['tile' + tilenum].gotoAndStop(tileselect);
								} else {
									if (editmode == 'foreground') {
										levelholder.foregroundholder['tile' + tilenum].removeMovieClip();
										_root.foregroundmap[tilenum] = tileselect;
										levelholder.foregroundholder.attachMovie('foregroundtile', 'tile' + tilenum, _root.count);
										levelholder.foregroundholder['tile' + tilenum]._x = xtile * _root.tilesize;
										levelholder.foregroundholder['tile' + tilenum]._y = ytile * _root.tilesize;
										_currentframe = tileselect;
										levelholder.foregroundholder['tile' + tilenum].gotoAndStop(tileselect);
									} else {
										if (editmode == 'background') {
											levelholder.backgroundholder['tile' + tilenum].removeMovieClip();
											_root.backgroundmap[tilenum] = tileselect;
											levelholder.backgroundholder.attachMovie('backgroundtile', 'tile' + tilenum, _root.count);
											levelholder.backgroundholder['tile' + tilenum]._x = xtile * _root.tilesize;
											levelholder.backgroundholder['tile' + tilenum]._y = ytile * _root.tilesize;
											_currentframe = tileselect;
											levelholder.backgroundholder['tile' + tilenum].gotoAndStop(tileselect);
										}
									}
								}
							}
						}
					}
				}
				if (!_currentframe == myframe) {
					delete onEnterFrame;
				}
			};
			onMouseDown = function () {
				mousedown = true;
			};
			onMouseUp = function () {
				mousedown = false;
				dragging = false;
			};
		}
		frame 4 {
			hud.removeMovieClip();
			levelholder.removeMovieClip();
			editmode = '';
			groundmap = _root.groundmap;
			foregroundmap = _root.foregroundmap;
			backgroundmap = _root.backgroundmap;
			laddermap = _root.laddermap;
			bgselect = _root.bgselect;
			frontbgselect = _root.frontbgselect;
			allmap = startx + ' BREAK ' + starty + ' BREAK ' + rowtiles + ' BREAK ' + coltiles + ' BREAK ' + groundmap + ' BREAK ' + foregroundmap + ' BREAK ' + backgroundmap + ' BREAK ' + laddermap + ' BREAK ' + bgselect + ' BREAK ' + frontbgselect;
			if (_root.itemarr.length > 0) {
				i = 0;
				while (i < _root.itemarr.length) {
					allmap = allmap + ' BREAK ' + _root.itemarr[i];
					++i;
				}
			}
			allmap = allmap.toString();
			_root.allmap = allmap;
			System.setClipboard(_root.allmap);
		}
		frame 5 {
			stop();
			loadingmap = true;
		}
	}
	frame 211 {
		gotoAndStop(punt_target);
		trace(punt_target);
	}
	frame 220 {
		allmap = '';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 222 {
		selectship._x = ship_startx;
		selectship._y = ship_starty;
		xspeed = 0;
		yspeed = 0;
		music_load('zos_menuSound');
		shifting = false;
		++count;
		_root.attachMovie('fadein', 'fadein', count);
		++count;
		attachMovie('game_frame', 'game_frame', count + 10000);
		game_frame.cacheAsBitmap();
		essencecount = 0;
		i = 18;
		while (i < 24) {
			if (actions[i]) {
				++essencecount;
			}
			++i;
		}
		trace(essencecount);
		oldmanmsg = 0;
		if (!actions[68] and essencecount < 6) {
			oldmanmsg = 2;
			mesarr = new Array();
			if (!actions[19]) {
				mesarr[0] = 'I suggest you go to Ro\'gor, the green';
				mesarr[1] = 'planet. You should be able to find health';
				mesarr[2] = 'ingredients there.';
			} else {
				if (!actions[20]) {
					mesarr[0] = 'Elaris, the planet in the top left, would';
					mesarr[1] = 'be a good next destination. Their';
					mesarr[2] = 'technology skill might be useful.';
				} else {
					if (!actions[23]) {
						mesarr[0] = 'Perhaps you can improve your jumping';
						mesarr[1] = 'with a visit to Aeryl, the blue planet in';
						mesarr[2] = 'the bottom right.';
					} else {
						if (!actions[21]) {
							mesarr[0] = 'You\'re doing well. Maybe it is time pay';
							mesarr[1] = 'a visit to Meztla, the desert planet.';
						} else {
							if (!actions[22]) {
								mesarr[0] = 'Potal, the purple planet, is not a';
								mesarr[1] = 'pleasant place. Nonetheless, we need';
								mesarr[2] = 'the Essence.';
							} else {
								if (!actions[18]) {
									mesarr[0] = 'I think you forgot to get the Essence';
									mesarr[1] = 'from Rhisla. Return home and collect it.';
								}
							}
						}
					}
				}
			}
			++count;
			attachMovie('msgbox', 'msgbox', count);
		}
		onEnterFrame = function () {
			if (msgbox._visible) {
				msgbox.runmessage();
			}
			if (oldmanmsg > 0) {
				--oldmanmsg;
				if (oldmanmsg == 0) {
					_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'oldmanradio');
				}
			}
			if (oldmanmsg == 0 and msgbox._visible == false or actions[68] or essencecount >= 6) {
				spacetxt = 'SPACE to select';
				if (Key.isDown(38) or Key.isDown(87)) {
					if (yspeed > -6) {
						yspeed -= 0.25;
					}
				}
				if (Key.isDown(39) or Key.isDown(68)) {
					if (xspeed < 6) {
						xspeed += 0.25;
					}
				}
				if (Key.isDown(40) or Key.isDown(83)) {
					if (yspeed < 6) {
						yspeed += 0.25;
					}
				}
				if (Key.isDown(37) or Key.isDown(65)) {
					if (xspeed > -6) {
						xspeed -= 0.25;
					}
				}
				if (Key.isDown(38) or Key.isDown(87)) {
					selectship.play();
					selectship._rotation = 0;
					thrustsound = true;
				} else {
					if (Key.isDown(39) or Key.isDown(68)) {
						selectship.play();
						selectship._rotation = 90;
						thrustsound = true;
					} else {
						if (Key.isDown(40) or Key.isDown(83)) {
							selectship.play();
							selectship._rotation = 180;
							thrustsound = true;
						} else {
							if (Key.isDown(37) or Key.isDown(65)) {
								selectship.play();
								selectship._rotation = -90;
								thrustsound = true;
							} else {
								thrustsound = false;
								selectship.gotoAndStop(1);
							}
						}
					}
				}
				if (selectship._x > stagewidth - selectship._height / 2) {
					selectship._x = stagewidth - selectship._height / 2;
					xspeed = 0;
				} else {
					if (selectship._x < selectship._height / 2) {
						selectship._x = selectship._height / 2;
						xspeed = 0;
					} else {
						if (selectship._y > stageheight - selectship._width / 2) {
							selectship._y = stageheight - selectship._width / 2;
							yspeed = 0;
						} else {
							if (selectship._y < selectship._width / 2) {
								selectship._y = selectship._width / 2;
								yspeed = 0;
							} else {
								selectship._x += xspeed;
								selectship._y += yspeed;
								xspeed *= 0.95;
								yspeed *= 0.95;
							}
						}
					}
				}
			} else {
				spacetxt = '';
			}
			if (thrustsound and (_root.thruster1Sound.position == 0 or _root.thruster1Sound.position == _root.thruster1Sound.duration)) {
				_root.playsound('thruster1Sound');
			}
			if (oldmanmsg == 0 and msgbox._visible == false or actions[68] or essencecount >= 6) {
				if (hit_planet1.hitTest(selectship._x, selectship._y, true)) {
					name_txt = 'Rhisla';
					desc_txt = 'My home planet.';
					if (Key.isDown(32)) {
						shifting = true;
						shift_targ = 'act1s4';
						shift_x = 744;
						shift_y = 498;
					}
				} else {
					if (hit_planet2.hitTest(selectship._x, selectship._y, true)) {
						name_txt = 'Ro\'gor';
						desc_txt = 'Densely vegetated jungle planet. Inhabited by primitive tribes.';
						if (Key.isDown(32)) {
							shifting = true;
							shift_targ = 'act2s1';
							shift_x = 1036;
							shift_y = 494;
						}
					} else {
						if (hit_planet3.hitTest(selectship._x, selectship._y, true)) {
							name_txt = 'Elaris';
							desc_txt = 'Immensely advanced civilisation - recently gone quiet. The capital is the ancient city of Xinda.';
							if (Key.isDown(32)) {
								shifting = true;
								shift_targ = 'act3s1';
								shift_x = 465;
								shift_y = 1100;
							}
						} else {
							if (hit_planet4.hitTest(selectship._x, selectship._y, true)) {
								name_txt = 'Meztla';
								desc_txt = 'Even though this desert planet is arid and mostly uninhabitable, it serves as a major trade hub.';
								if (Key.isDown(32)) {
									shifting = true;
									shift_targ = 'act4s1';
									shift_x = 961;
									shift_y = 300;
								}
							} else {
								if (hit_planet5.hitTest(selectship._x, selectship._y, true)) {
									name_txt = 'Potal';
									desc_txt = 'Industrial planet. Observations suggest the atmosphere is damaged, presumably from heavy pollution.';
									if (Key.isDown(32)) {
										shifting = true;
										shift_targ = 'act5s0';
										shift_x = 882;
										shift_y = 542;
									}
								} else {
									if (hit_planet6.hitTest(selectship._x, selectship._y, true)) {
										name_txt = 'Aeryl';
										desc_txt = 'Low density planet, very little solid ground.';
										if (Key.isDown(32)) {
											shifting = true;
											shift_targ = 'act6s1';
											shift_x = 1010;
											shift_y = 820;
										}
									} else {
										if (hit_teeth.hitTest(selectship._x, selectship._y, true)) {
											name_txt = 'X\'o\'chthu';
											desc_txt = '???';
											if (Key.isDown(32)) {
												shifting = true;
												shift_targ = 't1';
												shift_x = 370;
												shift_y = 490;
											}
										} else {
											name_txt = '';
											desc_txt = '';
										}
									}
								}
							}
						}
					}
				}
			}
			if (shifting) {
				shift_frame('starscreen', shift_x, shift_y);
			}
		};
	}
	frame 223 {
		selectship._x = ship_startx;
		selectship._y = ship_starty;
		xspeed = 0;
		yspeed = 0;
		music_load('zos_menuSound');
		shifting = false;
		++count;
		_root.attachMovie('fadein', 'fadein', count);
		++count;
		attachMovie('game_frame', 'game_frame', count + 10000);
		game_frame.cacheAsBitmap();
		onEnterFrame = function () {
			if (thrustsound and (_root.thruster1Sound.position == 0 or _root.thruster1Sound.position == _root.thruster1Sound.duration)) {
				_root.playsound('thruster1Sound');
			}
			if (Key.isDown(38) or Key.isDown(87)) {
				if (yspeed > -6) {
					yspeed -= 0.25;
				}
			}
			if (Key.isDown(39) or Key.isDown(68)) {
				if (xspeed < 6) {
					xspeed += 0.25;
				}
			}
			if (Key.isDown(40) or Key.isDown(83)) {
				if (yspeed < 6) {
					yspeed += 0.25;
				}
			}
			if (Key.isDown(37) or Key.isDown(65)) {
				if (xspeed > -6) {
					xspeed -= 0.25;
				}
			}
			if (Key.isDown(39) or Key.isDown(68)) {
				selectship.play();
				selectship._xscale = 100;
				thrustsound = true;
			} else {
				if (Key.isDown(37) or Key.isDown(65)) {
					selectship.play();
					selectship._xscale = -100;
					thrustsound = true;
				} else {
					if (Key.isDown(38) or Key.isDown(87)) {
						selectship.play();
						thrustsound = true;
					} else {
						if (Key.isDown(40) or Key.isDown(83)) {
							selectship.play();
							thrustsound = true;
						} else {
							thrustsound = false;
							selectship.gotoAndStop(1);
						}
					}
				}
			}
			if (selectship._x > stagewidth - selectship._height / 2) {
				selectship._x = stagewidth - selectship._height / 2;
				xspeed = 0;
			} else {
				if (selectship._x < selectship._height / 2) {
					selectship._x = selectship._height / 2;
					xspeed = 0;
				} else {
					if (selectship._y > stageheight - selectship._width / 2) {
						selectship._y = stageheight - selectship._width / 2;
						yspeed = 0;
					} else {
						if (selectship._y < selectship._width / 2) {
							selectship._y = selectship._width / 2;
							yspeed = 0;
						} else {
							selectship._x += xspeed;
							selectship._y += yspeed;
							xspeed *= 0.95;
							yspeed *= 0.95;
						}
					}
				}
			}
			if (hit_planet7.hitTest(selectship._x, selectship._y, true)) {
				name_txt = 'Lynaii';
				desc_txt = 'A peaceful planet, covered in fungal vegetation.';
				if (Key.isDown(32)) {
					shifting = true;
					if (!actions[71]) {
						shift_targ = 'act7s1';
					} else {
						shift_targ = 'act7s1l';
					}
					shift_x = 350;
					shift_y = 780;
				}
			} else {
				if (hit_brain.hitTest(selectship._x, selectship._y, true)) {
					name_txt = 'The Core';
					desc_txt = 'X\'o\'chthu\'s brain.';
					if (Key.isDown(32)) {
						shifting = true;
						shift_targ = 'brain1';
						shift_x = 330;
						shift_y = 530;
					}
				} else {
					if (hit_teeth.hitTest(selectship._x, selectship._y, true)) {
						name_txt = 'Teeth';
						desc_txt = 'X\'o\'chthu\'s teeth.';
						if (Key.isDown(32)) {
							shifting = true;
							shift_targ = 't6';
							shift_x = 650;
							shift_y = 330;
						}
					} else {
						name_txt = '';
						desc_txt = '';
					}
				}
			}
			if (shifting) {
				shift_frame('starscreen2', shift_x, shift_y);
			}
		};
	}
	movieClip 4618	{
		frame 1 {
			stop();
		}
	}
	frame 225 {
		i = 0;
		while (i < 100) {
			++count;
			attachMovie('star', 'star' + count, count);
			_root['star' + count]._x = random(stagewidth);
			_root['star' + count]._y = random(stageheight);
			_root['star' + count].speed = random(180) / 10 + 2;
			_root['star' + count]._xscale = 5 + 60 * (_root['star' + count].speed / 20);
			_root['star' + count]._yscale = 5 + 60 * (_root['star' + count].speed / 20);
			_root['star' + count].onEnterFrame = function () {
				this._y += this.speed;
				if (this._y > stageheight + 50) {
					this._y = -20 - random(80);
					this._x = random(stagewidth);
				}
			};
			++i;
		}
		music_load('zos_menuSound');
		++count;
		_root.attachMovie('fadein', 'fadein', count);
		++count;
		starship.swapDepths(count);
		++count;
		attachMovie('game_frame', 'game_frame', count + 10000);
		game_frame.cacheAsBitmap();
		traveldelay = 150;
		onEnterFrame = function () {
			if (_root.thruster1Sound.position == 0 or _root.thruster1Sound.position == _root.thruster1Sound.duration) {
				_root.playsound('thruster1Sound');
			}
			--traveldelay;
			if (traveldelay < 0) {
				shift_frame(shift_targ, shift_x, shift_y);
			}
		};
	}
	movieClip 4622	{
		instance of movieClip 4033 selectship {
			onClipEvent (enterFrame) {
				this.play();
			}
		}
		frame 120 {
			stop();
		}
	}
	frame 226 {
		++count;
		_root.attachMovie('fadein', 'fadein', count);
		++count;
		starship.swapDepths(count);
		music_load('zos_menuSound');
		++count;
		attachMovie('game_frame', 'game_frame', count + 10000);
		game_frame.cacheAsBitmap();
		traveldelay = 150;
		onEnterFrame = function () {
			if (_root.thruster1Sound.position == 0 or _root.thruster1Sound.position == _root.thruster1Sound.duration) {
				_root.playsound('thruster1Sound');
			}
			--traveldelay;
			if (traveldelay < 0) {
				shift_frame(shift_targ, shift_x, shift_y);
			}
		};
	}
	movieClip 4623	{
		instance of movieClip 4618	{
			onClipEvent (enterFrame) {
				this.play();
			}
		}
		frame 120 {
			stop();
		}
	}
	movieClip 4625	{
	}
	movieClip 4626	{
		frame 6 {
			gotoAndPlay(1);
		}
	}
	frame 236 {
		allmap = '1232 BREAK 905 BREAK 40 BREAK 40 BREAK 0,0,0,0,0,0,0,0,4,9,9,9,5,4,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,5,4,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,5,4,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,5,4,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,13,9,9,9,5,4,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,10,7,7,7,7,7,7,7,11,9,5,6,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,5,0,0,0,0,0,0,0,4,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,5,0,0,0,0,0,0,0,6,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,5,0,0,0,0,0,0,0,0,0,0,0,0,14,15,15,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,5,0,0,0,0,0,0,0,1,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,5,0,0,0,0,0,0,0,4,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,12,2,2,2,2,2,2,2,13,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,9,9,9,9,9,9,9,5,1,2,2,2,2,2,2,2,2,2,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,9,5,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,9,9,9,9,9,9,9,5,6,7,7,7,7,7,7,7,7,7,7,8,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,9,9,9,9,9,9,9,5,0,0,0,0,0,0,0,0,0,1,2,3,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,10,7,7,7,7,7,7,8,0,0,0,0,0,0,0,0,0,4,9,5,4,12,2,3,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,7,8,4,9,9,12,2,3,0,0,0,0,0,0,0,0,0,9,9,9,9,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,7,7,7,7,8,0,0,0,0,0,0,0,0,0,9,9,9,9,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,7,7,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,4,33,33,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,9,9,9,9,9,9,9,6,7,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,9,9,9,9,9,9,9,2,2,2,2,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,3,4,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,5,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,5,4,5,0,0,0,0,0,0,0,0,1,2,2,2,3,4,9,9,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,5,4,5,1,2,2,2,2,2,2,3,4,9,9,9,5,4,9,9,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,5,4,5,4,9,9,9,9,9,9,5,4,9,9,9,5,4,9,9,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,5,4,5,4,9,9,9,9,9,9,5,4,9,9,9,5,4,9,9,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,9 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,2,2,0,0,0,0,0,0,0,0,18,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,14,16,16,15,45,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,17,17,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,45,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,45,0,0,0,0,45,0,0,0,0,0,45,0,0,45,0,0,0,0,0,28,26,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,45,2,3,0,0,45,0,0,0,30,32,45,0,0,45,0,0,0,0,8,29,27,23,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,33,45,38,34,45,43,44,2,8,22,18,18,19,23,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,18,23,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,18,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,18,18,20,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,23,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,20,12,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,13,13,13,13,13,13,0,0,0,0,0,18,18,20,12,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,24,13,13,19,19,0,0,0,0,0,0,0,20,12,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,18,18,18,20,12,0,0,0,0,0,0,14,24,16,16,13,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,18,19,25,15,0,0,0,0,0,0,0,0,17,17,17,14,24,25,15,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,18,25,15,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,44,0,43,44,38,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,467,0,0,0,0,0,0,466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,468,0,0,0,0,0,0,467,0,0,0,41,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,32,0,0,40,36,467,0,0,0,42,38,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,33,35,38,39,37,468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_1 BREAK 1 BREAK 1,3,1282,934.05,1,20,act1s2,50,500 BREAK 2,2,241,571,5,0 BREAK 3,2,723,605,6,0 BREAK 4,2,271,569,7,0 BREAK 5,8,333,1183,man,1,There are some faint markings on the,wall on the far left... I can\'t see what,they are.,null,null,null';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_mainSound');
		holder.objects.attachMovie('wallsymbols', 'wallsymbols', count);
		holder.objects.wallsymbols._x = 64;
		holder.objects.wallsymbols._y = 1008;
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 237 {
		allmap = '46 BREAK 457 BREAK 40 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,3,4,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,7,7,8,6,7,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,4,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,5,4,9,9,9,9,10,7,7,7,7,7,7,7,7,7,7,7,7,7,11,9,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,13,9,5,6,7,7,7,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,0,0,0,0,0,0,0,0,0,0,4,9,9,9,9,9,9,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,0,0,0,0,0,14,15,14,0,0,6,7,7,7,7,7,7,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,0,0,0,0,0,0,0,0,0,0,0,4,9,2,2,2,2,2,2,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,4,9,5,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,9,9,9,9,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,5,4,9,5,1,2,2,2,2,2,2,2,2,2,3,4,9,9,9,9,9,9,9,9,5,1,2,2,2,2,2,2,2,2,2,2,2,3,4,9,5,4,9,5,4,9,9,9,9,9,9,9,9,9,5,4,9,9,9,9,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,5,4,9,5,4,9,5,4,9,9,9,9,9,9,9,9,9,5,4,9 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,18,18,18,18,20,12,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,24,19,18,18,18,18,18,16,25,15,17,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,24,16,16,16,25,15,17,17,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,45,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,45,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,46,0,46,0,0,0,0,0,6,0,0,0,0,6,0,0,0,0,0,0,0,0,30,32,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,5,0,0,0,0,0,0,0,0,31,33,35,38,34,0,0,43,44,45,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,4,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_1 BREAK 1 BREAK 1,3,-3,484,1,20,act1s1,1230,950 BREAK 4,3,1136,29,1,3,act1s3,120,400 BREAK 5,2,1201,539.05,0,1 BREAK 6,2,722,507.05,1,1 BREAK 7,2,639,568.05,2,1 BREAK 8,2,528,568.05,3,1 BREAK 9,2,337,570.05,4,1 BREAK 10,8,730,112,child,5,Mister! Did you know you can use P@,Escape or Enter to bring up the menu?,It\'s all up to you!,null,null,null,null,null';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_mainSound');
		if (potionsarr[0] == 0 and !actions[68]) {
			++count;
			holder.objects.attachMovie('act1s2_oldman', 'oldman', count);
			holder.objects.oldman._x = 1050;
			holder.objects.oldman._y = 540;
		}
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 238 {
		allmap = '144 BREAK 392 BREAK 50 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,17,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,17,17,17,17,18,0,0,0,16,17,17,18,14,0,0,0,0,0,0,0,0,0,0,0,16,17,17,17,17,17,17,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,17,17,17,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,0,0,0,4,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,10,5,4,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,57,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,47,48,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,7,0,4,0,47,52,49,47,48,48,48,48,49,0,0,0,47,48,48,49,45,0,0,0,0,0,0,0,0,0,0,0,47,48,48,48,48,48,48,49,0,0,0,0,0,0,0,0,0,0,5,0,5,0,47,48,49,47,51,48,52,52,49,0,0,0,47,51,52,49,45,0,0,0,0,0,0,0,0,0,0,0,47,48,48,48,48,48,48,49,103,104,47,48,48,48,49,0,0,0,4,95,4,94,53,50,55,53,54,50,50,50,55,3,0,8,53,54,50,55,46,3,3,96,0,0,120,121,122,0,0,0,47,51,48,52,48,52,52,49,105,106,47,52,48,51,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,118,0,0,3,53,54,50,50,50,50,50,55,2,0,53,50,50,54,55,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_1 BREAK 1 BREAK 2,3,1599,225,1,20,act1s4,50,500 BREAK 4,3,46,490,3,1,act1s2,1040,40 BREAK 5,7,273,385.05,1,3,act1s3h1,176,366 BREAK 6,7,657,384.05,1,3,act1s3h2,433,366 BREAK 7,7,1072,321.05,1,3,act1s3h3,335,364 BREAK 8,7,1360,319.05,1,3,act1s3h4,240,360 BREAK 9,3,-9,277.05,1,50,act1s2,1040,40 BREAK 10,8,370,412.05,man,1,Is he still in there?,I\'ve been waiting for ages...,null,null,null,null BREAK 12,8,1119,218,child,5,I like climbing roofs!,I never fall!,null,null,null,null BREAK 13,8,1172,345,child,5,He\'ll be in big trouble if daddy sees!,null,null,null,null,null';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_mainSound');
		if (!actions[0]) {
			custarr = [11, 8, 851, 344.05, 'woman', 2, 'I think Master Movo is looking for you!', 'He\'s in the digsite@ to the left.'];
		} else {
			custarr = [11, 8, 851, 344.05, 'woman', 2, 'I saw Master Movo come by here. I', 'think he was heading to the right, to', 'the observatory.'];
		}
		++count;
		holder.objects.attachMovie('objects', 'objecta', count);
		holder.objects.objecta._x = custarr[2];
		holder.objects.objecta._y = custarr[3];
		holder.objects.objecta.specarr = new Array();
		holder.objects.objecta.specarr = custarr;
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 239 {
		allmap = '47 BREAK 457 BREAK 40 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,17,17,17,18,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,17,17,17,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,18,0,0,0,0,0,16,17,17,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,1,2,2,3,1,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,9,9,9,9 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,48,48,48,49,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,52,48,48,49,45,0,0,0,0,0,0,0,6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,50,50,50,55,45,0,0,0,0,0,0,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0,77,78,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,46,56,0,0,0,0,0,0,4,0,4,0,0,0,0,0,77,78,0,0,0,79,80,81,82,0,0,0,0,0,0,0,0,0,0,47,48,48,48,49,0,0,0,0,0,0,0,0,5,0,5,0,0,0,0,79,80,81,82,0,0,83,84,85,86,0,0,0,0,0,0,0,0,47,49,47,52,48,48,49,47,48,48,49,0,0,0,0,4,0,4,0,0,0,0,83,84,85,86,0,0,0,87,88,0,0,0,0,0,0,0,0,0,47,49,47,52,51,48,49,47,48,52,49,0,0,0,0,5,0,5,0,0,0,0,0,87,88,0,0,0,0,89,90,3,0,0,0,0,0,0,0,3,53,55,53,50,54,50,55,53,50,50,55,96,95,0,0,4,0,4,0,0,0,0,3,89,90,2,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_1 BREAK 1 BREAK 3,3,-2,329.05,1,100,act1s3,1550,350 BREAK 4,3,1280,305,1,100,act1s5,50,460 BREAK 5,7,305,481,1,2,act1s4h1,305,520';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_mainSound');
		++count;
		holder.attachMovie('act4s1_dogandball', 'dogandball', count);
		holder.dogandball._y = 512;
		if (potionsarr[0] == 0) {
			custarr = [6, 8, 1172, 473, 'man', 1, 'Are you going to the observatory?', 'Or to the ship?', 'Doesn\'t matter. I can\'t let you pass', 'until you can protect yourself. The', 'monsters are still there.'];
		} else {
			custarr = [6, 8, 1172, 473, 'man', 1, 'Be careful.'];
		}
		++count;
		holder.objects.attachMovie('objects', 'objectc', count);
		holder.objects.objectc._x = custarr[2];
		holder.objects.objectc._y = custarr[3];
		holder.objects.objectc.specarr = new Array();
		holder.objects.objectc.specarr = custarr;
		if (actions[85]) {
			custarr = [7, 9, 744, 498];
			++count;
			holder.objects.attachMovie('objects', 'objecta', count);
			holder.objects.objecta._x = custarr[2];
			holder.objects.objecta._y = custarr[3];
			holder.objects.objecta.specarr = new Array();
			holder.objects.objecta.specarr = custarr;
			custarr = [8, 36, 744, 471, 2, 5, 'select1', 136, 340];
			++count;
			holder.objects.attachMovie('objects', 'objectb', count);
			holder.objects.objectb._x = custarr[2];
			holder.objects.objectb._y = custarr[3];
			holder.objects.objectb.specarr = new Array();
			holder.objects.objectb.specarr = custarr;
		}
		if (!actions[0]) {
			custarr = [9, 8, 179, 504, 'child', 5, 'Master Movo sent me! He said it was', 'important. He\'s in the digsite@ keep', 'going left until you pass the village!'];
			++count;
			holder.objects.attachMovie('objects', 'objectd', count);
			holder.objects.objectd._x = custarr[2];
			holder.objects.objectd._y = custarr[3];
			holder.objects.objectd.specarr = new Array();
			holder.objects.objectd.specarr = custarr;
		}
		onEnterFrame = function () {
			if (potionsarr[0] == 0) {
				if (holder.player._x > 1175) {
					holder.player._x = 1170;
					xspeed = 0;
					mesarr = new Array();
					mesarr[0] = 'Are you going to the observatory?';
					mesarr[1] = 'Or to the ship?';
					mesarr[2] = 'Doesn\'t matter. I can\'t let you pass';
					mesarr[3] = 'until you can protect yourself. The';
					mesarr[4] = 'monsters are still there.';
					_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'man');
				}
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 240 {
		allmap = '48 BREAK 425 BREAK 50 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,9,9,9,9,9,9,9,9,9,9,5,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,5,1,2,2,2,2,2,2,2,2,2,3,4,9,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,9 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,77,78,0,0,0,0,0,0,77,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,79,80,81,82,0,0,0,0,79,80,81,82,0,0,0,0,0,0,0,7,6,0,0,0,0,0,0,0,77,78,0,6,0,0,77,78,0,0,0,0,0,0,0,0,0,0,0,0,0,4,83,84,85,86,0,0,0,0,83,84,85,86,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,79,80,81,82,5,0,79,80,81,82,0,0,0,0,0,0,77,78,0,0,0,0,5,0,87,88,0,0,26,9,0,0,87,88,0,0,0,0,6,0,0,0,4,4,0,0,0,0,0,0,83,84,85,86,4,0,83,84,85,86,0,0,0,0,0,79,80,81,82,0,0,0,4,2,89,90,3,8,27,21,10,0,89,90,2,0,0,0,5,0,0,0,5,5,0,0,0,0,0,0,0,87,88,0,5,0,0,87,88,0,0,0,0,0,0,83,84,85,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,4,0,0,3,4,4,2,2,0,0,0,0,0,89,90,0,4,3,1,89,90,0,0,0,0,0,0,0,87,88,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,95,3,0,89,90,0,8,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_1 BREAK 1 BREAK 1,3,-1,337,1,100,act1s4,1230,460 BREAK 2,3,1598,271.05,1,100,act1s6,50,430 BREAK 3,6,602,504,3 BREAK 4,6,1002,408,3';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_mainSound');
		++count;
		holder.nohtobjects.attachMovie('levelshifter', 'diatrigger1', count);
		holder.nohtobjects.diatrigger1._x = 200;
		holder.nohtobjects.diatrigger1._y = 200;
		holder.nohtobjects.diatrigger1._width = 30;
		holder.nohtobjects.diatrigger1._height = 1000;
		holder.nohtobjects.diatrigger1.onEnterFrame = function () {
			if (!actions[81] and this.hitTest(holder.player)) {
				mesarr = new Array();
				if (selectedpotion == null) {
					mesarr[0] = 'Nasty creatures... I should equip my';
					mesarr[1] = 'Fire potion by pressing P and then';
					mesarr[2] = 'going into the Potion Screen.';
					mesarr[3] = ' 	';
					mesarr[4] = 'I can throw (or drink) potions by';
					mesarr[5] = 'pressing Space.';
				} else {
					mesarr[0] = 'Nasty creatures... I should throw some';
					mesarr[1] = 'Fire potions at them. I can throw (or';
					mesarr[2] = 'drink) potions with Space.';
				}
				_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'hero');
				actions[81] = true;
				this.removeMovieClip();
			}
		};
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 241 {
		allmap = '48 BREAK 393 BREAK 50 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,17,17,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,17,17,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,3,4,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,4,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,3,0,0,0,1,2,2,2,2,3,4,9,9,9,9,5,4,9,9,9,9,9,10,9,9,9,11,9,9,5,4,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,5,0,0,0,4,9,9,9,9,5,4,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,9,2,2,2,2,2,2,2,2,2,2,3,0,0,0,4,9,9,5,0,0,0,4,9,9,9,9,5,4,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,5,0,0,0,4,9,9,5,0,0,0,4,9,9,9,9,5,4,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,5,0,0,0,4,9,9,5,0,0,0,4,9,9,9,9,5,4,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,5,0,0,0,4,9,9,5,0,0,0,4,9,9,9,9,5,4,9,9,9,9,5,6,7,7,7,7,7,7,7,7,7,7,7,7,8,6,7,7,9,9,9,9,9,9,9,9,9,9,5,0,0,0,4,9,9,5,0,0,0,4,9,9,9,9,5,4,9,9,9,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,9,9,9,9,9,5,0,0,0,4,9,9,5,0,0,0,4,9,9,9,9,5,4,9,9,9,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,108,109,0,0,57,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,111,112,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,121,121,114,115,116,117,47,48,48,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,78,0,0,0,119,0,0,114,115,0,0,47,52,52,49,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,80,81,82,0,0,119,0,0,47,48,48,49,47,48,48,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,83,84,85,86,0,0,119,0,0,47,51,52,49,47,48,48,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,87,88,0,0,3,119,0,0,53,54,50,55,53,50,50,55,3,0,0,0,0,0,0,77,78,0,0,77,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,89,90,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,80,81,82,79,80,81,82,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,84,85,86,83,84,85,86,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,88,0,0,87,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,90,2,3,89,90,3,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,25,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,11,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,10,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,23,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_1 BREAK 1 BREAK 1,3,-1,331.1,1,100,act1s5,1550,430 BREAK 2,7,1264,257.05,1,3,act1s6h1,270,370 BREAK 3,3,1608,92,1,10,act1s7,50,530 BREAK 4,5,481,113,3';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_mainSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 242 {
		allmap = '52 BREAK 517 BREAK 30 BREAK 22 BREAK 0,0,4,9,9,9,9,9,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,9,9,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,9,9,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,9,9,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,9,9,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,9,9,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,9,9,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,9,9,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,9,10,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,0,0,4,9,9,9,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,9,0,0,6,7,7,7,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,13,9,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,9,9,9,9,9,11,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,7,7,11,9,9,9,9,9,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,9,9,9,9,9,0,0,0,0,0,0,1,2,2,2,2,2,2,2,3,0,0,0,0,0,0,6,7,7,7,7,7,7,7,7,0,0,0,0,0,0,4,9,10,10,10,9,9,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,3,4,9,10,10,10,10,10,9,5,1,2,3,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,5,4,9,10,10,10,10,10,9,5,4,9,5,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,5,4,9,10,10,10,10,10,9,5,4,9,5,1,2,2,2,2,2,2,2,2,2,2,2,9,9,9,9,9,5,4,9,10,10,10,10,10,9,5,4,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,10,10,10,10,10,9,5,4,9,5,4,9,9,9,9,9,9,9,9,9,9,9 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,22,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,3,2,2,11,22,19,0,0,0,0,0,0,0,0,14,24,18,18,18,23,12,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,13,18,18,20,12,0,0,0,0,0,8,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,13,18,19,20,12,0,0,0,0,8,22,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,24,18,18,23,10,0,2,3,8,22,18,18,18,19,19,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,18,18,18,18,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,19,18,18,18,16,16,15,0,0,0,14,24,19,19,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,17,17,0,0,0,0,0,14,24,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_1 BREAK 1 BREAK 1,3,-9,309.05,1,100,act1s6,1560,180 BREAK 2,3,965,560.05,1,5,act1s8,50,210 BREAK 3,3,968,128,1,10,act1s9,50,330 BREAK 13,8,333,475.05,man,1,Watch out for the plants down there.,Their thorns are poisonous.,null,null,null,null BREAK 14,8,688,337.05,man,1,Are you going to see Duro?,He\'ll never let you use his ship.,None of us are allowed.,null,null,null';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_mainSound');
		i = 4;
		while (i <= 10) {
			custarr = new Array(i, 10, 466 + 32 * i, 604);
			++count;
			holder.objects.attachMovie('objects', 'object' + i, count);
			holder.objects['object' + i]._x = custarr[2];
			holder.objects['object' + i]._y = custarr[3];
			holder.objects['object' + i].specarr = new Array();
			holder.objects['object' + i].specarr = custarr;
			if (actions[18]) {
				removeBushes = true;
			}
			++i;
		}
		onEnterFrame = function () {
			if (removeBushes) {
				i = 4;
				while (i <= 10) {
					holder.objects['object' + i].bush.gotoAndStop(2);
					++i;
				}
				removeBushes = false;
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 243 {
		allmap = '44 BREAK 206 BREAK 20 BREAK 15 BREAK 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,7,7,7,7,7,7,7,7,7,7,7,7,7,7,11,9,9,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,11,9,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,11,9,9,9,2,2,2,3,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,9,9,9,5,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,9,9,9,5,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,9,9,9,9,5,0,0,0,0,1,2,2,3,0,0,0,0,4,9,9,9,9,9,9,12,2,2,2,2,13,9,9,12,2,2,2,2,13,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,11,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,11,9,9,9,9,9,9,9,9 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,24,18,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,3,2,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_1 BREAK 1 BREAK 1,3,-8,178.05,1,10,act1s7,910,590';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_mainSound');
		++count;
		holder.nohtobjects.attachMovie('essences', 'essences', count);
		holder.nohtobjects.essences._x = 320;
		holder.nohtobjects.essences._y = 300;
		holder.nohtobjects.essences.id = 18;
		holder.nohtobjects.essences.gotoAndStop(1);
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 244 {
		allmap = '735 BREAK 335 BREAK 30 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,5,0,0,0,0,0,0,0,0,0,0,0,4,10,10,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,5,0,0,0,0,0,0,0,0,0,0,0,4,10,10,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,5,0,0,0,0,0,0,0,0,0,0,0,4,10,10,0,0,0,0,0,0,0,0,0,0,0,0,4,9,9,5,0,0,0,0,0,0,0,0,0,0,0,4,10,10,0,0,0,0,0,0,0,0,0,0,0,0,6,7,7,8,0,0,0,0,0,0,0,0,0,0,0,4,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,0,0,0,0,0,0,0,0,0,0,1,2,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,0,0,0,0,0,0,0,0,0,0,4,9,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,0,0,0,0,0,0,0,0,0,0,4,9,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,10,2,2,2,2,2,2,2,2,2,3,4,9,9,5,19,19,0,0,0,1,2,2,2,2,2,2,3,4,10,10,9,9,9,9,9,9,9,9,9,5,4,9,9,5,1,2,2,2,3,4,10,10,10,10,10,10,5,4,10,10,9,9,9,9,9,9,9,9,9,5,4,9,9,5,4,9,9,9,5,4,10,10,10,10,10,10,5,4,10,10,9,9,11,9,9,9,9,9,9,5,4,9,9,5,4,9,9,9,5,4,10,10,10,10,10,10,5,4,10,10 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_1 BREAK 1 BREAK 2,3,-8,202.05,1,20,act1s7,910,240';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_mainSound');
		if (!actions[2]) {
			++count;
			holder.objects.attachMovie('act1s9_bully', 'bully', count);
			holder.objects.bully._x = 415;
			holder.objects.bully._y = 255;
		}
		if (!actions[85]) {
			custarr = [3, 9, 736, 346];
			++count;
			holder.objects.attachMovie('objects', 'objecta', count);
			holder.objects.objecta._x = custarr[2];
			holder.objects.objecta._y = custarr[3];
			holder.objects.objecta.specarr = new Array();
			holder.objects.objecta.specarr = custarr;
			custarr = [4, 36, 736, 319.05, 2, 5, 'select1', 136, 340];
			++count;
			holder.objects.attachMovie('objects', 'objectb', count);
			holder.objects.objectb._x = custarr[2];
			holder.objects.objectb._y = custarr[3];
			holder.objects.objectb.specarr = new Array();
			holder.objects.objectb.specarr = custarr;
		}
		onEnterFrame = function () {
			if (holder.player.hitTest(holder.objects.objecta) and (Key.isDown(40) or Key.isDown(83))) {
				actions[85] = true;
				trace(actions[85]);
			}
			if (!actions[2] and holder.objects.bully and holder.player._x > 390) {
				holder.player._x = 390;
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 251 {
		allmap = '179 BREAK 359 BREAK 20 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,22,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,25,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,67,0,0,0,67,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,68,0,0,0,68,0,97,98,97,98,97,98,0,0,0,76,76,76,76,0,0,0,64,0,92,0,99,100,99,100,99,100,0,0,0,76,76,76,76,95,0,0,65,0,93,0,101,102,101,102,101,102,0,91,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_house1 BREAK 0 BREAK 1,7,176,354.05,1,3,act1s3,270,400';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_mainSound');
		++count;
		holder.objects.attachMovie('act1s3h1_fat', 'fat', count);
		holder.objects.fat._x = 120;
		holder.objects.fat._y = 370;
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 252 {
		allmap = '433 BREAK 365 BREAK 20 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,21,21,21,21,21,21,21,21,21,21,22,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,25,26,26,26,26,26,26,26,26,26,26,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,0,0,66,0,0,0,0,0,0,66,0,0,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,0,0,0,0,0,67,0,0,0,0,0,0,76,76,76,76,76,76,76,76,0,0,0,0,0,68,0,0,0,0,0,0,76,76,76,76,76,76,76,76,0,72,73,0,0,59,62,0,0,64,0,0,76,76,76,76,76,76,76,76,0,74,75,0,60,61,63,0,0,65,0,0,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_house1 BREAK 0 BREAK 1,7,433,350.05,1,3,act1s3,650,400 BREAK 2,8,239,376.05,man,1,Hmm.,I have a bad feeling.,null,null,null,null';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_mainSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 253 {
		allmap = '337 BREAK 364 BREAK 20 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,21,21,21,21,21,22,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,31,21,21,21,21,21,21,21,21,22,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,25,26,26,26,26,26,26,26,26,26,26,26,26,26,26,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,67,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,68,0,0,0,0,0,0,0,0,0,66,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,58,0,62,0,0,0,64,0,72,73,0,0,0,76,76,76,76,76,76,0,60,61,63,0,0,0,65,0,74,75,69,70,71,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_house1 BREAK 0 BREAK 1,7,336,351,1,3,act1s3,1070,340 BREAK 2,8,202,377.05,man,1,People are saying something bad,happened at the observatory.,I wonder what\'s going on.,null,null,null BREAK 3,8,448,379,woman,2,Why doesn\'t he just go and check,instead of complaining?,Have YOU been to the observatory?,null,null, null';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_mainSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 254 {
		allmap = '242 BREAK 365 BREAK 20 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,21,21,21,21,21,21,21,21,22,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,19,19,24,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,19,19,19,24,0,0,0,0,0,0,0,0,0,0,25,26,26,26,26,26,26,26,26,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,0,0,67,0,0,95,0,0,76,76,76,76,76,76,76,76,76,76,72,0,64,0,68,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,74,3,65,0,0,96,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_house1 BREAK 0 BREAK 1,7,241,354.05,1,3,act1s3,1360,340';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_mainSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 255 {
		allmap = '526 BREAK 525 BREAK 25 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,21,21,21,21,21,21,21,21,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,26,30,28,28,28,28,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,20,21,21,21,21,32,0,0,0,0,0,0,31,21,21,21,21,21,21,21,22,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,25,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,66,0,0,0,0,66,8,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,11,13,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,14,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,66,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,58,59,62,0,64,0,68,0,0,0,0,0,0,72,73,72,73,0,76,76,76,76,0,0,0,60,61,63,0,65,0,0,0,0,0,69,70,71,74,75,74,75,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_house1 BREAK 0 BREAK 1,7,304,512.05,1,3,act1s4,300,500 BREAK 2,4,417,538 BREAK 3,2,210,341,8,7 BREAK 4,2,241,343,9,7 BREAK 5,2,274,344,10,11 BREAK 6,28,320,347,38';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		nummedals = 0;
		i = 0;
		while (i < 26) {
			if (_root.medalarr[i] == 1) {
				++nummedals;
			}
			++i;
		}
		if (nummedals == 26) {
			++count;
			holder.background.attachMovie('act1secretdoor', 'secretdoor', count);
			holder.background.secretdoor._x = 128;
			holder.background.secretdoor._y = 544;
			custarr = [7, 7, 128, 514.05, 1, 3, 'act1secret', 148, 1478];
			++count;
			holder.objects.attachMovie('objects', 'objecta', count);
			holder.objects.objecta._x = custarr[2];
			holder.objects.objecta._y = custarr[3];
			holder.objects.objecta.specarr = new Array();
			holder.objects.objecta.specarr = custarr;
		}
		if (!actions[78]) {
			actions[78] = true;
			cutscene = true;
			++count;
			attachMovie('fadein_long', 'wakeup', count);
			msgbox.swapDepths(wakeup);
			wakeup.stop();
			wakeupt = 0;
		} else {
			music_load('zos_mainSound');
		}
		expldelay = 60;
		triggerexplanation = false;
		onEnterFrame = function () {
			if (!actions[89] and holder.exclamation) {
				triggerexplanation = true;
				actions[89] = true;
			}
			if (triggerexplanation) {
				--expldelay;
				if (expldelay == 0) {
					mesarr = [];
					mesarr[0] = 'I can interact with objects, open doors,';
					mesarr[1] = 'speak to people and pick up ingredients';
					mesarr[2] = 'by pressing DOWN or S when the "!"';
					mesarr[3] = 'appears.';
					_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'hero');
				}
			}
			if (!msgbox._visible) {
				++wakeupt;
				if (wakeupt == 90) {
					mesarr = [];
					mesarr[0] = 'Hey!';
					_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'child');
				}
				if (wakeupt == 120) {
					mesarr = [];
					mesarr[0] = 'Hey Zos!';
					_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'child');
				}
				if (wakeupt == 130) {
					mesarr = [];
					mesarr[0] = 'Zos, wake up! Master Movo wants to';
					mesarr[1] = 'see you!';
					_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'child');
				}
				if (wakeupt == 140) {
					music_load('zos_mainSound');
					cutscene = false;
					wakeup.play();
				}
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 256 {
		allmap = '269 BREAK 366 BREAK 20 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,21,21,21,21,21,21,21,22,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,24,0,0,0,20,21,22,0,0,20,21,21,32,0,0,0,0,0,0,0,24,0,0,0,23,0,24,0,0,23,0,0,0,0,0,0,0,0,0,0,24,0,0,0,23,0,31,21,21,32,0,0,0,0,0,0,0,0,0,0,24,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,25,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,67,0,67,0,0,0,76,76,76,76,0,0,76,76,0,0,0,0,0,0,68,0,68,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,0,0,138,139,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,0,0,140,141,142,0,0,0,0,0,0,130,131,0,0,76,76,76,76,76,0,143,144,145,146,0,64,67,0,0,0,132,133,134,143,76,76,76,76,76,0,147,148,149,0,0,65,68,0,0,0,135,136,137,147,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_house1 BREAK 0 BREAK 1,7,273,351,1,3,act1s6,1260,270';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_mainSound');
		if (!actions[1]) {
			++count;
			holder.nohtobjects.attachMovie('levelshifter', 'scopetrigger', count);
			holder.nohtobjects.scopetrigger._width = tilesize * 2;
			holder.nohtobjects.scopetrigger.height = tilesize * 3;
			holder.nohtobjects.scopetrigger._x = 160;
			holder.nohtobjects.scopetrigger._y = 350;
		}
		if (!actions[68] and !actions[2]) {
			++count;
			holder.objects.attachMovie('act1s6h1_oldman', 'oldman', count);
			holder.objects.oldman._x = 370;
			holder.objects.oldman._y = 384;
		}
		onEnterFrame = function () {
			if (!actions[1] and actions[79] and holder.player.hitbox.hitTest(holder.nohtobjects.scopetrigger)) {
				giveExclamation();
				if ((Key.isDown(40) or Key.isDown(83)) and msgbreather <= 0 and !telescope) {
					++count;
					attachMovie('telescope', 'telescope', count);
					msgbox.swapDepths(telescope);
					actions[1] = true;
				}
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 257 {
		allmap = '148 BREAK 1478 BREAK 50 BREAK 50 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,22,20,21,21,21,21,21,21,21,21,21,21,21,21,21,21,22,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,309,24,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,310,311,24,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,309,24,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,310,311,24,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,309,24,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,282,283,308,309,308,309,312,0,0,0,0,0,0,0,310,311,24,23,0,0,0,108,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,284,285,310,311,310,311,312,0,0,0,0,0,0,0,29,26,27,25,26,26,26,26,26,26,26,30,0,0,0,0,0,0,24,0,0,0,0,23,28,28,0,0,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,31,21,21,21,21,21,21,21,21,21,22,23,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,23,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,23,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,23,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,23,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,23,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,23,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,110,24,23,0,0,0,0,0,0,24,0,0,0,0,25,26,26,26,26,26,26,26,26,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,26,26,26,26,26,26,26,27,23,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,30,0,0,24,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,24,0,0,0,0,20,21,21,21,21,22,0,0,0,25,26,30,0,0,29,26,26,30,0,0,0,0,0,0,0,31,32,0,0,31,21,21,21,21,21,21,21,22,23,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,24,0,0,0,0,0,23,0,0,24,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,23,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,24,0,0,0,0,0,23,0,0,24,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,23,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,24,0,0,0,0,0,23,0,0,24,0,0,25,26,26,26,26,26,26,26,26,26,26,26,26,30,0,0,0,0,29,30,24,23,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,31,21,21,21,21,21,32,0,0,31,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,32,0,0,0,0,31,32,24,23,0,0,0,0,0,0,24,0,0,0,0,23,29,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,23,0,0,0,0,0,0,24,0,0,0,0,23,31,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,30,0,0,0,24,23,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,32,0,0,0,24,23,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,23,0,0,0,0,0,0,24,0,0,0,0,23,0,0,29,26,26,26,26,26,26,26,26,26,26,26,26,26,30,0,0,0,0,0,0,0,0,0,0,0,29,30,0,0,0,0,0,0,24,23,0,0,0,0,0,0,24,0,0,0,0,23,0,0,31,21,21,21,21,21,21,21,21,21,21,21,21,22,23,0,0,0,0,0,0,0,0,0,0,0,31,32,0,0,0,0,0,0,31,32,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,23,0,0,0,0,29,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,23,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,23,0,0,0,0,31,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,23,29,30,0,0,0,0,0,0,0,0,0,0,0,0,0,24,23,0,0,0,0,0,0,0,0,0,0,0,29,26,26,26,30,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,23,31,32,0,0,0,0,0,0,0,0,0,0,29,26,26,27,23,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,24,0,20,21,32,0,0,0,0,0,0,0,0,0,0,0,31,21,21,21,32,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,0,0,0,0,0,328,109,328,24,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,24,0,0,0,0,25,26,26,26,26,26,26,26,26,26,26,26,26,27,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,108,0,0,0,0,0,0,0,0,24,0,0,0,0,20,21,21,21,21,21,21,21,21,21,21,21,21,21,21,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,26,26,26,30,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,23,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,26,26,30,0,0,0,0,0,0,0,0,0,0,0,31,21,21,21,32,0,0,0,0,0,0,24,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,24,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,108,0,0,24,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,26,26,26,27,0,0,25,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,27,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,26,26,26,26,26,26,26,26,26,26,26,26,26,26,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,340,0,0,0,340,0,0,0,340,0,0,0,340,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,130,131,0,0,130,131,130,131,0,0,0,0,0,332,333,0,0,0,0,0,0,434,435,436,0,494,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,364,359,358,132,133,0,0,0,0,0,0,0,0,0,0,0,334,335,0,0,0,0,0,0,360,361,0,0,495,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,120,121,121,122,0,0,365,360,361,135,136,0,0,0,0,0,0,0,0,0,0,0,338,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,119,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,119,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,0,0,0,0,0,0,0,0,0,0,0,67,67,0,0,0,76,76,76,76,0,0,119,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,0,0,0,0,0,0,0,0,0,0,0,68,68,0,0,0,76,76,76,76,0,0,119,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,119,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,119,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,0,352,353,354,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,119,0,0,118,384,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,378,0,355,356,357,0,0,0,0,0,0,0,67,67,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,68,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274,275,0,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,76,76,76,0,0,0,274,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,76,76,76,76,76,0,0,0,0,76,76,0,401,402,0,0,0,0,0,377,377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,67,0,0,0,76,76,76,76,0,0,0,0,0,0,76,76,76,76,76,0,0,0,0,76,76,0,403,404,0,0,0,0,0,378,378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,68,0,0,0,76,76,76,76,0,0,0,0,0,0,76,76,76,76,76,0,0,0,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,67,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,68,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,377,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,377,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,377,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,377,0,377,377,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,67,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,378,378,0,378,378,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,68,0,0,0,68,0,0,0,0,0,385,0,0,0,0,0,0,377,377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,377,0,0,0,0,0,0,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,342,343,344,0,0,0,0,0,76,0,0,0,0,0,0,0,377,377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,345,346,347,0,0,0,0,0,76,0,0,0,0,0,0,0,377,377,0,0,0,0,0,458,459,459,459,460,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,377,377,0,0,0,0,0,458,459,459,459,460,0,0,386,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,377,0,0,0,0,0,458,459,459,459,460,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,340,0,0,0,340,0,0,0,340,0,0,0,0,0,0,0,0,0,377,377,0,0,0,0,0,458,459,462,459,460,0,76,76,76,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,377,0,0,0,0,0,458,459,463,459,460,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,76,76,0,377,0,0,0,0,0,458,459,459,459,460,377,0,0,0,377,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,76,76,0,377,96,0,95,0,0,452,453,453,453,454,378,0,0,0,378,341,0,0,0,95,96,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,64,0,0,0,0,58,0,62,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,65,0,0,0,0,60,61,63,0,0,0,386,385,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_house1 BREAK 0 BREAK 1,43,816,755.05,3 BREAK 2,34,464,1500.05,3 BREAK 4,14,400,1255.05,3 BREAK 5,5,750,1198.05,3 BREAK 7,5,854,1067.05,3 BREAK 9,47,302,956.05,3 BREAK 10,47,593,958.05,3 BREAK 11,38,720,528.1,9 BREAK 12,43,982,1397.1,3 BREAK 13,25,184,573.1,9 BREAK 14,22,244,1209.2,3 BREAK 15,14,431,996.2,3 BREAK 16,12,1434,830.2,3 BREAK 17,12,1365,522.2,3 BREAK 18,12,1410,190.2,3 BREAK 19,2,210,1496.05,184,0 BREAK 20,2,265,1495.05,185,0 BREAK 21,2,410,1494.05,186,0 BREAK 22,2,568,1402.05,187,1 BREAK 23,2,611,1401.05,188,1 BREAK 24,2,713,1299.05,189,1 BREAK 25,2,945,1396.05,190,2 BREAK 27,2,1281,1237.05,192,2 BREAK 28,2,1233,1394.05,191,2 BREAK 29,2,1073,1075.05,193,3 BREAK 30,2,1028,952.05,194,3 BREAK 31,2,1121,855.05,195,3 BREAK 32,2,802,1016.05,196,4 BREAK 33,2,531,952.05,197,4 BREAK 34,2,436,953.05,198,4 BREAK 35,2,146,1208.05,199,5 BREAK 36,2,453,1176.05,200,5 BREAK 37,2,517,1113.05,201,5 BREAK 38,2,412,661.05,202,6 BREAK 39,2,1276,278.1,203,6 BREAK 40,2,1200,278.1,204,6 BREAK 41,2,1018,761.1,205,7 BREAK 42,2,751,756.1,206,7 BREAK 43,2,898,632.1,207,7 BREAK 44,2,1042,566.1,208,8 BREAK 45,2,1217,531.1,209,8 BREAK 46,2,596,663.1,210,8 BREAK 47,2,345,563.1,211,9 BREAK 48,2,122,569.1,212,9 BREAK 49,2,271,312.1,213,9 BREAK 50,2,126,310.1,214,10 BREAK 51,2,510,247.1,215,10 BREAK 52,2,684,249.1,216,10 BREAK 53,2,740,307.1,217,11 BREAK 54,2,798,306.1,218,11 BREAK 55,2,914,313.1,219,11 BREAK 56,2,222,954.1,220,12 BREAK 57,2,949,759.05,221,12 BREAK 58,2,546,665.05,222,12 BREAK 59,2,364,954.05,223,13 BREAK 60,2,408,1174.05,224,13 BREAK 61,2,753,1302.05,225,13 BREAK 62,2,1033,1399.05,226,14 BREAK 63,2,1101,1396.05,227,14 BREAK 64,2,1358,1396.05,228,14 BREAK 65,7,145,1474.05,1,3,act1s4h1,128,520';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_mainSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 267 {
		allmap = '1038 BREAK 494 BREAK 40 BREAK 20 BREAK 42,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,39,39,39,39,39,39,39,39,39,38,41,42,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,0,0,0,0,0,0,0,0,0,0,40,39,39,39,39,39,39,39,39,39,39,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,35,35,35,35,35,35,35,35,35,35,35,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,37,34,35,35,35,35,35,35,35,35,35,35,35,36,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,42,42,37,34,35,35,35,35,35,35,35,35,35,36,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,37,41,42,42,42 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,173,168,168,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,173,168,168,168,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,172,168,168,168,168,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,172,168,168,168,168,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,172,168,168,168,168,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,176,168,168,168,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,176,168,168,175,164,0,0,0,0,0,0,0,0,0,0,0,0,0,166,176,168,168,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,171,171,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,176,168,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,173,168,168,0,0,0,0,0,0,177,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,169,169,168,168,0,0,0,0,0,0,179,180,0,0,0,0,0,177,178,0,0,0,0,0,0,0,177,178,0,0,0,0,0,0,0,0,0,0,0,0,165,166,176,168,0,0,0,0,0,0,183,184,0,0,161,0,0,179,180,0,0,0,0,0,0,0,179,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,176,0,0,0,0,0,0,181,182,0,160,169,162,0,181,182,0,0,154,154,0,0,0,183,184,0,0,156,157,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,155,0,0,0,181,182,0,0,158,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_2 BREAK 2 BREAK 2,9,1038,505 BREAK 3,4,881,507 BREAK 4,11,537,441,5 BREAK 5,3,-7,260,1,50,act2s2,1230,490 BREAK 6,36,1038,489.05,2,5,select1,139,178';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_jungleSound');
		if (!actions[5]) {
			addQuest(3, 'Find a village.');
		}
		++count;
		holder.nohtobjects.attachMovie('levelshifter', 'diatrigger1', count);
		holder.nohtobjects.diatrigger1._x = 746;
		holder.nohtobjects.diatrigger1._y = 448;
		holder.nohtobjects.diatrigger1._width = 30;
		holder.nohtobjects.diatrigger1._height = 100;
		holder.nohtobjects.diatrigger1.onEnterFrame = function () {
			if (!actions[28] and this.hitTest(holder.player)) {
				mesarr = new Array();
				mesarr[0] = 'Bisi Blossoms... Hopefully the worst I';
				mesarr[1] = 'will find on this luscious planet.';
				_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'hero');
				actions[28] = true;
			}
		};
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 268 {
		allmap = '1216 BREAK 490 BREAK 40 BREAK 20 BREAK 42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,39,39,39,39,39,39,39,42,42,42,46,35,35,35,35,35,36,0,0,0,0,0,0,0,0,0,0,0,0,34,35,35,35,35,35,35,35,36,0,0,0,0,0,0,0,0,0,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,39,39,39,39,39,39,39,39,39,38,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,39,39,39,39,39,39,39,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,35,35,35,35,35,35,35,35,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,35,35,35,35,35,36,41,42,42,42,42,42,42,42,42,37,34,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,309,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,311,312,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,306,307,0,0,0,0,0,0,0,0,0,0,0,0,168,174,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,177,178,0,0,0,0,309,0,0,0,0,0,0,0,0,0,0,0,0,0,168,168,174,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,180,0,0,0,0,309,0,0,0,0,0,0,0,0,0,0,0,0,0,168,168,168,162,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,182,151,151,150,0,309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,177,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,312,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,177,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,184,0,0,0,0,0,0,0,0,0,0,0,0,0,177,178,0,0,0,0,179,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,204,181,182,153,0,0,0,197,198,0,0,0,0,0,0,0,179,180,0,0,0,0,183,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,200,0,0,0,0,0,0,0,183,184,0,0,0,0,183,184,0,0,0,0,0,0,0,151,0,0,151,0,0,0,0,0,0,0,0,0,0,152,151,201,202,150,0,0,0,0,150,0,181,182,150,151,152,151,181,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_2 BREAK 2 BREAK 2,3,1288,380.05,1,50,act2s1,50,400 BREAK 3,3,208,16,1,2,act2s3,300,320 BREAK 4,3,-11,417,1,10,act2s4,746,1804 BREAK 5,2,738,217,29,1 BREAK 6,2,178,220,30,1 BREAK 7,8,775,501.05,tribalman,3,A man wears ridiculous cloth.,A man does not look fit for hunting.,A man must hasten@ leap high.,The Soil rewards the strong and swift.,null,null BREAK 8,8,308,438.05,tribalman,3,A beast in the sky? A man does not,fear anything. Let it come.,null,null,null,null,null';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_jungleSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 269 {
		allmap = '305 BREAK 364 BREAK 20 BREAK 15 BREAK 42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,37,34,35,35,35,36,0,0,0,0,0,34,35,35,35,35,36,41,42,42,37,41,42,42,42,37,0,0,0,0,0,41,42,42,42,42,37,41,42,42,37,41,42,42,42,37,0,0,0,0,0,41,42,42,42,42,37,41,42,42,37,41,42,42,42,37,0,0,0,0,0,41,42,42,42,42,37,41,42,42,37,41,42,42,42,37,0,0,0,0,0,41,42,42,42,42,37,41,42 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,310,0,0,0,0,0,0,0,0,0,0,0,151,150,0,0,150,0,309,0,310,0,0,150,152,0,151,152,0,0,0,0,0,0,0,0,0,0,309,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,310,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0 BREAK bg_2 BREAK 2 BREAK 1,3,303,464,10,1,act2s2,210,50 BREAK 6,2,145,315,31,3 BREAK 7,2,177,314,32,7 BREAK 8,28,498,308,37';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_jungleSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 270 {
		allmap = '746 BREAK 1804 BREAK 25 BREAK 60 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,37,35,35,35,35,35,35,35,35,35,35,35,36,0,0,0,0,0,0,0,0,0,0,41,42,37,42,42,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,41,42,37,42,42,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,41,42,37,42,42,42,42,42,42,42,42,42,42,42,46,35,35,35,35,35,36,0,0,0,0,41,42,37,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,37,0,0,0,0,41,42,37,42,42,43,39,39,39,39,44,42,42,42,42,42,42,42,42,42,37,0,0,0,0,41,42,37,42,42,37,0,0,0,0,41,42,42,42,42,42,42,42,42,42,37,0,0,34,36,41,42,37,42,42,37,0,0,0,0,41,42,42,42,42,42,42,42,42,42,37,0,0,41,37,41,42,37,42,42,37,0,0,0,0,41,42,42,42,42,42,42,42,42,42,37,0,0,41,37,41,42,37,42,42,37,0,0,0,0,41,42,42,42,42,42,42,42,42,42,37,0,0,41,37,41,42,37,42,42,37,0,0,0,0,40,39,39,39,39,39,39,39,39,39,38,0,0,41,37,41,42,37,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,37,41,42,37,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,37,41,42,37,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,38,41,42,37,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,37,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,37,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,37,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,37,42,42,37,34,35,35,35,35,35,35,36,0,0,0,0,0,0,0,0,0,0,0,41,42,37,42,42,37,41,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,41,42,37,42,42,37,41,42,42,42,42,42,42,37,34,35,36,0,0,0,0,0,0,0,0,41,42,37,42,42,37,40,39,39,39,39,39,39,38,40,39,38,0,0,0,0,0,0,0,0,41,42,37,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,37,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,37,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,35,35,36,41,42,37,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,37,41,42,37,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,39,39,38,41,42,37,42,42,37,0,34,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,37,42,42,37,0,40,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,37,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,37,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,37,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,37,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,37,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,37,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,37,42,42,37,34,35,35,35,35,35,35,35,36,0,0,0,0,0,0,0,0,0,0,41,42,37,42,42,37,41,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,41,42,37,42,42,37,41,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,41,42,37,42,42,37,41,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,41,42,37,42,42,37,40,39,39,39,39,39,39,39,38,0,0,0,0,0,0,0,0,0,0,41,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,35,35,36,41,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,37,41,42,37,42,42,37,34,35,36,0,34,35,35,35,36,0,0,0,0,0,0,41,42,42,37,41,42,37,42,42,37,41,42,37,0,41,42,42,42,37,0,0,0,0,0,0,40,39,39,38,41,42,37,42,42,37,40,39,38,0,40,39,39,39,38,0,0,0,0,0,0,0,0,0,0,40,39,38,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,42,37,34,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,42,42,37,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42 BREAK 0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,107,107,107,107,107,107,107,109,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,177,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,180,0,177,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,184,0,179,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,184,0,183,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,152,181,182,150,181,182,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,177,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,177,178,311,312,312,0,0,0,0,0,0,0,312,312,312,312,313,0,0,0,0,0,0,0,0,179,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,177,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,312,313,177,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,150,181,182,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,306,307,307,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,311,312,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,151,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_2 BREAK 2 BREAK 1,3,800,1800,1,10,act2s2,50,490 BREAK 2,3,-8,95,1,10,act2s5,780,850 BREAK 4,2,619,1533,35,1 BREAK 5,2,124,762,36,1';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_jungleSound');
		if (!actions[9]) {
			++count;
			holder.attachMovie('act2s4cutscene', 'woman', count);
			custarr = [6, 15, 100, 1820, 3];
			++count;
			holder.objects.attachMovie('objects', 'objecta', count);
			holder.objects.objecta._x = custarr[2];
			holder.objects.objecta._y = custarr[3];
			holder.objects.objecta.specarr = new Array();
			holder.objects.objecta.specarr = custarr;
		}
		holder.ground.attachMovie('act2s4door', 'door', count);
		holder.ground.door._y = 1472;
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 271 {
		allmap = '779 BREAK 847 BREAK 26 BREAK 30 BREAK 42,42,42,43,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,44,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,37,0,0,0,0,0,0,34,35,35,35,35,36,0,0,0,0,0,0,41,42,42,42,42,42,42,37,0,0,0,0,0,0,40,44,42,42,43,38,0,0,0,0,0,0,41,42,42,42,42,42,42,37,0,0,0,0,0,0,0,40,39,39,38,0,0,0,0,0,0,0,41,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,46,35,35,35,36,0,0,0,0,0,0,0,0,0,0,34,35,35,35,45,42,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,42,39,39,39,39,39,39,39,38,0,0,0,0,0,0,0,0,0,0,40,39,39,39,39,39,39,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,35,35,35,35,35,35,35,35,36,0,0,0,0,0,0,0,0,35,35,35,35,35,35,35,36,41,42,42,42,42,42,42,42,42,37,34,35,35,35,35,35,35,35,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,204,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,177,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,182,150,151,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_2 BREAK 2 BREAK 1,11,416,828.05,3 BREAK 2,8,414,122,tribalman,3,MAN\'S PLEA,PRAY TO THE SOIL,AND TO THE ANCIENT TREE,UNTIL YOUR BLOOD WILL BURN AND BOIL,EVER TOIL,null BREAK 3,3,840,737,1,20,act2s4,50,180 BREAK 4,3,-8,732.05,1,20,act2s6,1550,430 BREAK 5,2,192,345,37,11 BREAK 6,2,641,343,38,11';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_jungleSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 272 {
		allmap = '48 BREAK 521 BREAK 50 BREAK 20 BREAK 42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,42,42,42,42,42,42,43,39,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,39,39,39,39,39,39,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,47,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,47,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,47,0,0,0,0,47,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,35,35,35,35,35,35,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,37,34,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,0,0,0,0,0,0,34,35,35,35,35,35,35,35,35,35,35,35,36,41,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,0,0,0,0,0,0,41,42,42,42,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,35,35,35,35,35,36,41,42,42,42,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,168,170,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,170,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,170,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,175,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175,164,0,0,0,0,0,0,0,0,0,0,0,0,0,150,150,0,0,0,0,0,0,0,0,0,0,0,188,189,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,186,0,0,0,0,0,0,0,0,0,0,194,191,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,189,189,189,190,0,0,0,0,0,0,150,0,0,185,187,187,187,186,0,0,0,0,0,177,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,193,189,192,190,0,0,177,178,0,185,0,0,186,188,189,189,189,190,0,0,177,178,0,179,180,0,0,0,0,0,177,178,0,0,0,0,185,0,0,186,0,0,185,0,0,186,0,153,151,194,191,191,195,196,152,0,179,180,0,188,193,192,190,188,189,189,193,190,0,0,179,180,0,183,184,0,0,0,0,0,179,180,0,0,0,0,188,192,193,190,0,0,188,189,192,190,0,0,0,0,0,0,0,0,0,0,181,182,150,194,191,195,196,194,191,191,191,196,151,0,181,182,0,181,182,0,0,0,0,0,183,184,0,0,0,151,194,195,191,196,0,204,194,191,195,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,182,151,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_2 BREAK 2 BREAK 1,3,1610,290,1,50,act2s5,50,850 BREAK 2,7,303,450.05,1,2,act2s6h1,275,360 BREAK 3,7,528,451.05,1,2,act2s6h2,370,360 BREAK 4,7,784,386.05,1,2,act2s6h3,400,360 BREAK 5,7,1073,421.05,1,2,act2s6h4,175,370 BREAK 6,4,1329,441.1 BREAK 7,3,-11,438,1,10,act2s7,910,300 BREAK 8,8,415,474,tribalwoman,4,Few men climb Mount Ulahard.,Those that do grow strong through,chewing the bloodgrass of the summit.,null,null,null BREAK 9,2,891,446.05,25,1';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_jungleSound');
		if (actions[9]) {
			custarr = [9, 8, 1350, 446, 'tribalman', 3, 'Does a man still wish to see Argba?', 'A man has more courage than sense.'];
			++count;
			holder.objects.attachMovie('objects', 'objecta', count);
			holder.objects.objecta._x = custarr[2];
			holder.objects.objecta._y = custarr[3];
			holder.objects.objecta.specarr = new Array();
			holder.objects.objecta.specarr = custarr;
			custarr = [8, 8, 1426, 442, 'tribalwoman', 4, 'A man is welcome to our village.'];
			++count;
			holder.objects.attachMovie('objects', 'objectb', count);
			holder.objects.objectb._x = custarr[2];
			holder.objects.objectb._y = custarr[3];
			holder.objects.objectb.specarr = new Array();
			holder.objects.objectb.specarr = custarr;
		}
		actions[5] = true;
		onEnterFrame = function () {
			holder.objects.objecta.npc.anim.gotoAndStop(1);
			holder.objects.objectb.npc.anim.gotoAndStop(1);
			if (!actions[10] and actions[9] and holder.player._x < 1500) {
				actions[10] = true;
				if (!actions[4]) {
					addQuest(2, 'Speak to Argba the Witch.');
				}
				custmsg = true;
				mesarr = new Array();
				avatararr = ['tribalman', 'tribalwoman', 'tribalman', 'hero', 'tribalman', 'tribalwoman', 'tribalman', 'hero', 'tribalman'];
				mesarr[0] = ['Outlander! Axka, is this the one?'];
				mesarr[1] = ['Yes, father, but...'];
				mesarr[2] = ['Outlander, take your fireglass and leave', 'our village. Your magic is not wanted', 'here!'];
				mesarr[3] = ['My \'fireglass\' saved her life!'];
				mesarr[4] = ['Axka, is this true?'];
				mesarr[5] = ['A man speaks the truth.'];
				mesarr[6] = ['Very well! A man may stay.'];
				mesarr[7] = ['I am here for the Essence. Where can I', 'find it?'];
				mesarr[8] = ['For that, a man must speak to Argba.', 'A man will not survive her ordeal.'];
				_root.msgbox.initmessage(mesarr[0], _root.standardlettertime, 'tribalman');
				msgcounter = 0;
			}
			if (custmsg) {
				holder.objects.objecta.npc.anim._xscale = 100;
				holder.objects.objectb.npc.anim._xscale = 100;
				if (msgbox.arrcounter >= msgbox.nummsgs and msgbox.deleteStart) {
					++msgcounter;
					if (msgcounter < 9) {
						_root.msgbox.initmessage(mesarr[msgcounter], _root.standardlettertime, avatararr[msgcounter]);
					} else {
						custmsg = false;
					}
				}
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 273 {
		allmap = '909 BREAK 303 BREAK 30 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,35,35,35,36,51,51,51,51,51,51,51,51,51,51,51,51,51,51,34,35,35,35,35,35,35,35,35,35,35,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,42,42,42,42 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,197,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,200,0,0,0,0,0,0,0,204,150,0,206,208,208,208,208,208,208,208,208,208,208,208,208,208,208,207,150,152,201,202,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_2 BREAK 2 BREAK 1,8,384,305,tribalman,3,Treacherous Mount Ulahard ahead.,A cautious man lives another day.,null,null,null,null BREAK 2,3,968,217,1,20,act2s6,50,530 BREAK 4,3,-11,185,1,10,act2s8,590,1480';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_jungleSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 274 {
		allmap = '559 BREAK 1483 BREAK 20 BREAK 50 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,50,51,51,51,51,51,51,48,49,49,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,49,49,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,49,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,50,0,0,0,0,0,0,0,48,49,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,35,36,51,51,51,51,48,49,49,49,50,0,0,0,0,0,0,0,0,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,42,37,0,0,0,0,0,0,0,0,0,0,0,48,49,50,0,0,0,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,42,37,0,0,0,0,0,48,49,50,0,0,0,0,0,0,0,0,0,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,42,37,34,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,42,42,37,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,211,0,0,0,0,0,0,0,0,0,206,208,208,208,208,208,208,207,150,212,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,211,0,0,0,0,0,0,209,210,210,211,0,0,0,0,0,0,0,0,210,211,0,0,0,0,0,0,209,210,210,211,0,0,0,0,0,0,0,0,210,211,0,0,0,0,0,0,209,213,213,214,0,0,0,0,0,0,0,0,210,211,0,0,0,0,0,0,209,0,0,0,0,0,0,0,0,0,0,0,210,211,0,0,0,0,0,0,209,209,210,210,210,211,0,0,0,0,0,0,213,214,0,0,0,0,0,0,209,212,213,213,213,214,0,0,0,0,0,0,0,0,0,0,0,161,0,0,209,211,0,0,0,0,0,0,0,0,0,0,210,210,214,0,160,173,162,0,212,214,0,0,0,0,0,0,0,0,0,0,210,211,0,167,173,168,168,212,213,213,214,0,0,0,0,0,0,0,0,0,213,214,0,167,172,168,168,163,0,0,0,0,0,0,0,0,0,0,0,0,210,211,0,160,168,168,168,163,0,0,0,0,0,0,0,0,0,0,0,0,210,211,160,173,168,212,175,163,0,0,0,0,0,0,0,0,0,0,0,0,210,211,173,168,168,212,214,0,0,0,0,0,0,0,0,0,0,0,0,0,213,214,168,175,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,211,175,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,211,164,0,0,0,0,0,0,209,210,211,0,0,0,0,0,0,0,0,210,211,0,0,0,0,0,0,0,209,210,211,0,0,0,0,0,0,0,0,213,214,206,208,208,208,208,207,0,212,213,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,210,210,210,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,210,210,210,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,210,210,210,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,210,210,210,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,210,210,210,211,0,0,209,210,211,0,0,0,0,0,0,0,0,0,0,209,210,210,210,211,0,0,209,210,211,0,0,0,0,0,0,0,0,0,0,209,210,210,0,211,0,0,209,210,211,0,0,0,0,0,0,0,0,0,160,209,209,210,211,211,0,0,209,210,211,0,0,0,0,0,0,151,150,160,173,209,212,213,214,211,0,150,212,213,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_2 BREAK 2 BREAK 1,12,294,137,3 BREAK 3,3,-8,421,1,10,act2s9,600,2160 BREAK 4,3,649,1411,1,10,act2s7,50,300 BREAK 5,2,355,434,23,1 BREAK 6,2,80,792,24,1';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_jungleSound');
		if (!actions[68] and !actions[19]) {
			++count;
			holder.background.attachMovie('objects', 'ship', count);
			holder.background.ship.gotoAndStop(45);
			holder.background.ship._x = 380;
			holder.background.ship._y = 694;
			custarr = [1, 8, 260, 820, 'oldman', 11, 'A proud people, these. You will need to', 'prove your worth, probably by drinking', 'Argba\'s poison brew. No point in doing', 'that if it will kill you, though. There', 'must be another way.'];
			++count;
			holder.objects.attachMovie('objects', 'oldman', count);
			holder.objects.oldman._x = custarr[2];
			holder.objects.oldman._y = custarr[3];
			holder.objects.oldman.specarr = new Array();
			holder.objects.oldman.specarr = custarr;
		}
		onEnterFrame = function () {
			if (!fadeout and !fadein and (holder.player._x + xspeed > stagewidth or holder.player._x + xspeed < 0)) {
				holder.player._x -= xspeed;
				xspeed = 0;
			}
			if (holder.player._x < 5) {
				holder.player._x = 5;
			}
			if (holder.player._x > stagewidth) {
				holder.player._x = stagewidth;
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 275 {
		allmap = '607 BREAK 2154 BREAK 20 BREAK 72 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,50,51,51,51,51,51,51,48,49,49,34,36,48,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,41,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,37,0,0,0,0,0,0,0,0,0,48,0,0,0,50,0,0,0,0,40,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,49,49,49,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,49,49,50,51,51,51,51,51,51,51,48,49,49,49,49,49,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,49,49,49,50,0,0,0,49,49,49,49,49,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,49,49,49,49,49,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,208,208,208,208,208,208,207,0,151,151,150,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,210,210,211,0,0,210,211,0,0,0,0,0,0,209,210,210,210,211,209,210,210,210,211,0,0,210,211,0,0,0,0,0,0,209,210,210,210,211,209,210,210,210,211,0,0,213,214,0,0,0,0,0,0,212,213,213,213,214,209,210,210,210,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,210,210,210,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,210,210,210,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,210,210,210,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,210,210,210,211,0,0,0,0,0,210,210,210,0,0,0,0,0,151,152,209,210,210,210,211,0,0,0,0,209,210,210,210,211,0,0,0,0,0,0,209,210,210,210,211,0,0,0,0,209,210,210,210,211,209,210,210,210,210,211,209,210,210,210,211,0,0,0,0,209,210,210,210,211,209,210,210,210,210,211,209,210,210,210,211,0,0,0,0,209,210,210,210,211,209,210,210,210,210,211,209,210,210,210,211,0,0,0,0,209,210,210,210,211,209,210,210,210,210,211,209,210,210,210,211,0,0,0,0,209,210,210,210,211,209,210,210,210,210,211,209,210,210,210,211,0,0,0,0,209,210,210,210,211,209,210,210,210,210,211,209,210,210,210,211,0,0,0,0,209,210,210,210,211,212,213,213,213,213,214,212,213,213,213,214,0,0,0,0,209,210,210,210,211,209,210,210,210,210,210,210,210,210,210,211,0,0,0,0,209,210,210,210,211,209,210,210,210,210,210,210,210,210,210,211,0,0,0,0,209,210,210,210,211,209,210,210,210,210,210,210,210,210,210,211,0,0,0,0,212,213,213,213,214,212,213,213,213,213,213,210,210,210,210,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,210,210,210,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,210,210,210,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,210,210,210,211,0,0,0,0,0,0,212,214,0,0,0,0,0,0,0,209,210,210,210,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,210,210,210,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,210,210,210,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,210,210,210,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,210,210,210,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,210,210,210,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,210,210,210,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,213,213,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,208,208,208,208,208,208,208,207,0,0,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,210,210,210,211,0,0,0,0,0,0,0,209,210,210,210,210,210,211,0,210,210,210,210,211,0,0,0,0,0,0,0,209,210,210,210,210,210,211,0,210,210,210,210,211,0,0,0,0,0,0,0,212,213,213,213,213,213,214,0,210,210,210,210,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,210,210,210,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,210,210,210,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,210,210,210,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,210,210,210,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,210,210,210,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,210,210,210,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,213,213,213,213,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,210,210,0,0,0,0,0,0,0,0,0,0,0,210,210,210,210,210,210,210,210,210,210,210,210,210,210,211,0,0,0,0,0,210,210,210,210,210,210,210,210,210,210,210,210,210,210,211,0,0,0,0,0,210,210,210,210,210,210,210,210,210,210,210,210,210,210,211,0,0,0,0,0,210,210,210,210,210,210,210,210,210,210,210,210,210,210,211,0,0,0,0,0,210,210,210,210,210,210,210,210,210,210,210,210,210,210,211,0,0,0,0,0,210,210,210,210,210,210,210,210,210,210,210,210,213,213,214,150,0,0,0,0,210,210,210,210,210,210,210,210,210,210,210,210,0,0,0,0,0,0,0,0,210,210,210,210,210,210,210,210,210,210,210,210,209,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,209,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,209,210,210,210,210,210,210,210 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,0,0,0,0,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,0,0,0,0,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_2 BREAK 0 BREAK 1,11,495,1561,5 BREAK 3,11,160,1145,5 BREAK 4,12,350,62,3 BREAK 5,3,651,2088.05,1,20,act2s8,50,550 BREAK 6,3,-9,309,1,10,act2s10,570,1480 BREAK 7,2,328,697,19,9 BREAK 8,2,251,697,20,9 BREAK 9,2,291,695,21,9 BREAK 10,2,561,1561,22,9';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_jungleSound');
		onEnterFrame = function () {
			if (!fadeout and !fadein and (holder.player._x + xspeed > stagewidth or holder.player._x + xspeed < 0)) {
				holder.player._x -= xspeed;
				xspeed = 0;
			}
			if (holder.player._x < 5) {
				holder.player._x = 5;
			}
			if (holder.player._x > stagewidth) {
				holder.player._x = stagewidth;
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 276 {
		allmap = '576 BREAK 1484 BREAK 20 BREAK 50 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,49,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,49,49,49,49,49,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,49,49,49,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,49,49,49,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,49,49,49,49,49,49,49,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,49,49,49,49,49,49,49,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,210,210,210,210,210,210,211,0,0,0,0,0,0,0,0,0,0,0,0,209,210,210,210,210,210,210,211,0,0,0,0,0,0,0,0,0,0,0,0,209,210,210,210,210,210,210,211,0,0,0,0,0,0,0,0,0,0,0,0,209,210,210,210,210,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,210,210,210,210,210,209,210,210,210,210,211,0,0,0,0,0,0,0,0,209,210,210,210,210,210,209,210,210,210,210,211,0,0,0,0,0,0,0,0,209,210,210,210,210,210,209,210,210,210,210,211,0,0,0,0,0,0,0,0,0,0,210,210,210,210,209,210,210,210,210,211,0,0,0,0,209,210,210,210,210,211,210,210,210,210,209,210,210,210,210,211,0,0,0,0,209,210,210,210,210,211,210,210,210,210,209,210,210,210,210,211,0,0,0,0,209,210,210,210,210,211,210,210,210,210,209,210,210,210,210,211,0,0,0,0,209,210,210,210,210,211,210,210,210,210,209,210,210,210,210,211,0,0,0,0,212,213,213,213,213,214,210,210,210,210,209,210,210,210,210,211,0,0,0,0,0,0,0,0,0,0,0,0,210,210,209,210,210,210,210,211,0,0,209,210,210,210,210,210,210,210,210,211,210,210,209,210,210,210,210,211,0,0,209,210,210,210,210,210,210,210,210,211,210,210,209,210,210,210,210,211,0,0,209,210,210,210,210,210,210,210,210,211,210,210,209,210,210,210,210,211,0,0,209,210,210,210,210,210,210,210,210,211,210,210,209,210,210,210,210,211,0,0,209,210,210,210,210,210,210,210,210,211,210,210,212,213,213,213,213,214,0,0,209,210,210,210,210,210,210,210,210,211,0,0,0,0,0,0,0,0,0,0,209,210,210,210,210,210,210,210,210,211,209,210,210,210,210,210,210,210,210,211,209,210,210,210,210,210,210,210,210,211,209,210,210,210,210,210,210,210,210,211,209,210,210,210,210,210,210,210,210,211,209,210,210,210,210,210,210,210,210,211,209,210,210,210,210,210,210,210,210,211,209,210,210,210,210,210,210,210,210,211,209,210,210,210,210,210,210,210,210,211,209,210,210,210,210,210,210,210,210,211,209,210,210,210,210,210,210,210,210,211,209,210,210,210,210,210,210,210,210,211,209,210,210,210,210,210,210,210,210,211,209,210,210,210,210,210,210,210,210,211,209,210,210,210,210,210,210,210,210,211,209,210,210,210,210,210,210,210,210,211,209,210,210,210,210,210,210,210,210,211,209,210,210,210,210,210,210,210,210,211,209,210,210,210,210,210,210,210,210,211,209,210,210,210,210,210,210,210,210,211,212,213,213,213,213,213,213,213,213,214,212,213,213,213,213,213,213,213,213,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_3 BREAK 0 BREAK 1,3,649,1380.05,1,10,act2s9,50,400 BREAK 2,12,610,987,3 BREAK 3,12,28,744,3 BREAK 4,2,17,925.05,11,8 BREAK 5,2,96,732.05,12,8 BREAK 6,2,148,734.05,13,8 BREAK 7,2,476,599.05,14,8 BREAK 8,2,547,566.05,15,8 BREAK 9,2,320,411.05,16,8 BREAK 10,2,227,473.05,17,8 BREAK 11,2,419,471.05,18,8 BREAK 12,2,599,1109,165,8 BREAK 13,2,362,1107,166,8 BREAK 14,2,118,915,167,8 BREAK 15,2,198,918,168,8 BREAK 16,2,205,726,169,8 BREAK 17,2,423,599,170,8 BREAK 18,2,271,440,171,8 BREAK 19,2,370,435,172,8';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_jungleSound');
		actions[6] = true;
		removeQuest(4);
		++count;
		holder.nohtobjects.attachMovie('levelshifter', 'diatrigger1', count);
		holder.nohtobjects.diatrigger1._x = 318;
		holder.nohtobjects.diatrigger1._y = 416;
		holder.nohtobjects.diatrigger1._width = 30;
		holder.nohtobjects.diatrigger1._height = 100;
		holder.nohtobjects.diatrigger1.onEnterFrame = function () {
			if (!actions[27] and this.hitTest(holder.player)) {
				mesarr = new Array();
				mesarr[0] = 'The summit of Mount Ulahard...';
				mesarr[1] = '					';
				mesarr[2] = 'Not as hard to scale as the stories say.';
				_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'hero');
				actions[27] = true;
				_root.givemedal(18);
			}
		};
		onEnterFrame = function () {
			if (!fadeout and !fadein and (holder.player._x + xspeed > stagewidth or holder.player._x + xspeed < 0)) {
				holder.player._x -= xspeed;
				xspeed = 0;
			}
			if (holder.player._x < 5) {
				holder.player._x = 5;
			}
			if (holder.player._x > stagewidth) {
				holder.player._x = stagewidth;
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 277 {
		allmap = '208 BREAK 46 BREAK 40 BREAK 20 BREAK 70,70,70,70,70,65,0,63,70,70,70,70,70,70,70,65,63,70,70,70,70,70,70,70,65,63,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,65,0,63,70,70,70,70,70,70,70,65,63,70,70,70,70,70,70,70,65,63,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,65,0,63,70,70,70,70,70,70,70,65,63,70,70,70,70,70,70,70,65,63,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,65,0,63,70,70,70,70,70,70,70,65,63,70,70,70,70,70,70,70,65,63,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,65,0,63,70,70,70,70,70,70,70,65,63,70,70,70,70,70,70,70,65,63,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,67,68,0,66,67,67,67,67,67,67,67,68,63,70,70,70,70,70,70,70,65,63,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,65,0,0,0,0,0,0,0,0,0,0,0,0,63,70,70,70,70,70,70,70,65,63,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,65,0,0,0,0,0,0,0,0,0,0,0,0,63,70,70,70,70,70,70,70,65,66,67,67,67,67,67,67,67,67,67,67,67,67,67,67,70,70,70,65,0,0,0,0,0,0,0,0,0,0,0,0,63,70,70,70,70,70,70,70,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,70,70,65,0,0,0,0,0,0,0,0,0,0,0,0,66,67,67,67,67,67,67,67,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,70,70,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,70,70,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,70,70,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,70,70,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,70,70,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,70,70,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,61,61,61,61,61,62,0,0,0,0,0,70,70,70,70,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,70,70,70,70,70,70,70,61,61,61,61,61,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0,225,226,0,0,0,166,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,204,0,0,205,0,0,0,0,0,0,0,0,0,0,203,0,205,204,0,0,0,204,203,0,0,205,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK cavebg BREAK 0 BREAK 1,14,657,311,3 BREAK 2,14,1010,248,3 BREAK 3,3,1289,386,1,10,act2s12,50,300';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_jungleSound');
		++count;
		holder.nohtobjects.attachMovie('levelshifter', 'diatrigger1', count);
		holder.nohtobjects.diatrigger1._x = 300;
		holder.nohtobjects.diatrigger1._y = 512;
		holder.nohtobjects.diatrigger1._width = 30;
		holder.nohtobjects.diatrigger1._height = 200;
		holder.nohtobjects.diatrigger1.onEnterFrame = function () {
			if (!actions[39] and this.hitTest(holder.player)) {
				mesarr = new Array();
				mesarr[0] = 'This cave reeks of evil and corruption.';
				_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'hero');
				actions[39] = true;
			}
		};
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 278 {
		allmap = '48 BREAK 301 BREAK 40 BREAK 15 BREAK 64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,61,61,61,61,61,61,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,61,61,61,61,61,61,61,61,61,61,61,61,64,64,64,64,64,64,64,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,65,60,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,62,63,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,65,63,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,65,63,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,65,63,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,65,63,64,64,64,64,64,64,64,64,64,64,64,64 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,238,239,0,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,204,0,0,203,0,0,0,0,0,204,0,0,0,203,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK cavebg BREAK 0 BREAK 1,13,338,376.05,3 BREAK 2,13,562,378.05,3 BREAK 3,13,786,374.05,3 BREAK 4,14,449,55,3 BREAK 5,14,673,57,3 BREAK 6,3,-8,191.1,1,10,act2s11,1230,500 BREAK 7,3,1289,193,1,10,act2s13,50,370';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_jungleSound');
		onEnterFrame = function () {
			if (holder.player._x > 500 and effectPoison > 0) {
				health = -999;
				dying = true;
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 279 {
		allmap = '47 BREAK 363 BREAK 25 BREAK 15 BREAK 64,64,64,64,64,64,64,64,64,64,64,64,65,63,64,64,64,64,64,64,64,64,65,63,64,64,64,64,64,64,64,64,64,64,64,64,64,65,66,67,67,67,67,67,67,67,67,68,63,64,64,64,64,64,64,64,64,64,64,64,64,64,65,0,0,0,0,0,0,0,0,0,0,63,64,64,64,64,64,64,64,64,64,64,64,64,64,65,0,0,0,0,0,0,0,0,0,0,63,64,67,67,67,67,67,67,67,67,67,67,67,67,68,0,0,0,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,61,62,0,0,0,0,0,63,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,64,65,0,0,0,0,0,63,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,64,65,0,0,0,0,0,63,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,64,65,0,0,0,0,0,63,64,0,0,0,0,0,60,61,61,61,61,61,61,61,61,62,63,64,65,60,62,0,0,0,63,64,0,0,0,0,0,63,64,64,64,64,64,64,64,64,65,63,64,65,63,65,0,0,0,63,64,0,0,0,0,0,63,64,64,64,64,64,64,64,64,65,63,64,65,63,65,0,0,0,63,64,61,61,61,61,62,63,64,64,64,64,64,64,64,64,65,63,64,65,63,72,62,0,60,64,64,64,64,64,64,65,63,64,64,64,64,64,64,64,64,65,63,64,65,63,72,65,0,63,64,64,64,64,64,64,65,63,64,64,64,64,64,64,64,64,65,63,64,65,63,72,65,0,63,64,64 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK cavebg BREAK 0 BREAK 1,4,528,150 BREAK 2,13,416,275,3 BREAK 3,3,-9,203.05,1,20,act2s12,1230,300 BREAK 4,3,687,463,1,2,act2s14,140,50';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_jungleSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 280 {
		allmap = '145 BREAK 53 BREAK 35 BREAK 20 BREAK 64,64,64,65,0,63,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,65,0,63,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,65,0,63,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,65,0,66,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,70,64,64,64,64,64,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,64,64,64,64,64,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,64,64,64,64,64,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,64,64,64,64,64,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,64,64,64,64,64,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,64,64,64,64,64,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,64,64,64,64,64,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,64,64,64,64,64,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,64,64,64,64,64,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,64,64,64,64,64,65,0,0,0,0,60,61,61,62,0,0,0,0,60,61,61,62,0,0,0,0,60,61,61,62,0,0,0,0,66,67,67,64,64,64,65,0,0,0,0,66,67,67,68,0,0,0,0,66,67,67,68,0,0,0,0,66,67,67,68,0,0,0,0,0,0,0,64,64,64,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,64,64,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,64,64,64,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,238,0,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,239,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK cavebg BREAK 0 BREAK 1,14,832,121,3 BREAK 2,14,320,119,3 BREAK 3,3,1128,496.05,1,10,act2s15,50,370';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_jungleSound');
		if (!actions[3]) {
			fadeout_music();
		}
		if (!actions[3]) {
			++count;
			holder.ground.attachMovie('act2door', 'door', count);
			holder.ground.door._x = 1024;
			holder.ground.door._y = 448;
			++count;
			attachMovie('bosshealth', 'bosshealth', count);
			bosshealth._alpha = 0;
			++count;
			holder.attachMovie('act2bosscutscene', 'act2bosscutscene', count);
		} else {
			_root.createBody(actions[7], 544, 8, false);
		}
		if (!actions[3]) {
			++count;
			holder.objects.attachMovie('boss1', 'boss', count);
			holder.objects.boss._x = 427;
			holder.objects.boss._y = 544;
			holder.objects.boss.action = 1;
			holder.objects.boss.speed = 0;
			holder.objects.boss.maxlife = 30;
			holder.objects.boss.life = holder.objects.boss.maxlife;
			holder.objects.boss.damageDelay = 0;
			holder.objects.boss.bumpAmount = 0;
			holder.objects.boss.attackBreather = 0;
			holder.objects.boss.alive = true;
			holder.objects.boss.onEnterFrame = function () {
				if (!_root.game_paused) {
					if (_root.damageDelay == 0 and _root.effectInvisibility == 0) {
						if (this.hitTest(_root.holder.player._x + _root.holder._x + tilesize / 2, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true)) {
							_root.xspeed = 0;
							_root.bumpAmount -= _root.standardBump;
							_root.shadeCount = 30;
							_root.takedamage(1);
						}
						if (this.hitTest(_root.holder.player._x + _root.holder._x - tilesize / 2, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true)) {
							_root.xspeed = 0;
							_root.bumpAmount += _root.standardBump;
							_root.shadeCount = 30;
							_root.takedamage(1);
						}
					}
					if (this.action == 1) {
						this.maxspeed = 5 + 3 * (1 - this.life / 30);
						if (_root.holder.player._x > this._x + 50) {
							if (this.speed < this.maxspeed) {
								this.speed += 0.5;
							}
						} else {
							if (_root.holder.player._x < this._x - 50) {
								if (this.speed > -this.maxspeed) {
									this.speed -= 0.5;
								}
							}
						}
						if (_root.effectInvisibility == 0) {
							this._x += this.speed;
							this.gotoAndStop('walk');
						} else {
							this.gotoAndStop('stand');
						}
						if (this._x < 140 or this._x > 960) {
							this.speed *= -0.9;
						}
						--this.attackBreather;
					}
					if (this.attackBreather < 0 and this._x < _root.holder.player._x + 10 and this._x > _root.holder.player._x - 10) {
						this.gotoAndStop('stand');
						this.tail.play();
						this.action = 2;
						this.attackDelay = 50;
						this.attackBreather = 120;
						playsound('scorpion1Sound');
					}
					if (this.action == 2) {
						--this.attackDelay;
						if (this.attackDelay < 0) {
							this.action = 1;
						}
					}
					if (this.damageDelay == 0 and _root.holder.cloudsMolotov.hitTest(this._x + _root.holder._x, this._y + _root.holder._y - tilesize, true)) {
						if (this._x > _root.holder.player._x) {
							this.bumpAmount += 20;
						} else {
							this.bumpAmount -= 20;
						}
						this.life -= _root.molotovDamage;
						this.flashCount = 12;
						this.damageDelay = 12;
					}
					if (this.damageDelay == 0 and _root.holder.cloudsExplosion.hitTest(this._x + _root.holder._x, this._y + _root.holder._y - tilesize, true)) {
						if (_x > _root.holder.player._x) {
							this.bumpAmount += 20;
						} else {
							this.bumpAmount -= 20;
						}
						this.life -= _root.explosionDamage;
						this.flashCount = 12;
						this.damageDelay = 12;
					}
					if (this.damageDelay == 0 and _root.holder.cloudsIce.hitTest(this._x + _root.holder._x, this._y + _root.holder._y - tilesize, true)) {
						if (_x > _root.holder.player._x) {
							this.bumpAmount += 20;
						} else {
							this.bumpAmount -= 20;
						}
						this.life -= _root.iceDamage;
						this.flashCount = 12;
						this.damageDelay = 12;
						this.speed *= 0.5;
					}
					if (this.flashCount > 0) {
						this.setBrightness(random(100));
						--this.flashCount;
						if (this.flashCount == 0) {
							this.setBrightness(0);
						}
					}
					if (this.damageDelay > 0) {
						--this.damageDelay;
					}
					if (this.life <= 0) {
						_root.actions[7] = this._x;
						_root.createBody(this._x, this._y, 8, false);
						i = 0;
						while (i < maxhealth - health) {
							_root.dropHealth(this._x, this._y, 100);
							++i;
						}
						_root.create_blood(this._x, this._y, tilesize * 2, 'blood', 15);
						_root.actions[3] = true;
						_root.holder.ground.door.play();
						_root.bosshealth.removeMovieClip();
						++count;
						attachMovie('whiteflash_short', 'whiteflash', count);
						fadeout_music();
						this.removeMovieClip();
					}
				}
			};
		}
		onEnterFrame = function () {
			if (bosshealth._alpha < 100) {
				bosshealth._alpha += 2;
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 281 {
		allmap = '51 BREAK 365 BREAK 20 BREAK 15 BREAK 64,64,64,64,64,64,64,64,64,64,65,0,0,0,0,0,0,63,64,64,64,64,64,64,64,64,64,64,64,64,65,0,0,0,0,0,0,63,64,64,64,64,64,64,64,64,64,64,64,64,65,0,0,0,0,0,0,63,64,64,64,64,64,64,64,64,64,64,64,64,65,0,0,0,0,0,0,63,64,64,64,64,64,64,64,64,64,64,64,64,65,0,0,0,0,0,0,63,64,64,64,64,64,64,64,64,64,64,67,67,68,0,0,0,0,0,0,63,64,64,64,64,64,64,64,64,64,65,0,0,0,0,0,0,0,0,0,63,64,64,64,64,64,64,64,64,64,65,0,0,0,0,0,0,0,0,0,63,64,64,67,67,67,67,67,67,67,68,0,0,0,0,0,0,0,0,0,63,64,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,64,64,0,0,0,0,0,0,0,0,0,0,0,60,61,61,61,61,62,63,64,64,0,0,0,0,0,0,0,0,0,0,0,63,64,64,64,64,65,63,64,64,61,61,61,61,61,61,61,61,61,61,62,63,64,64,64,64,65,63,64,64,64,64,64,64,64,64,64,64,64,64,65,63,64,64,64,64,65,63,64,64,64,64,64,64,64,64,64,64,64,64,65,63,64,64,64,64,65,63,64,64 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,311,312,312,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,238,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK cavebg BREAK 0 BREAK 1,3,-11,336.05,1,10,act2s14,1100,530 BREAK 2,3,447,47,2,1,act2s16,446,360';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_jungleSound');
		++count;
		holder.nohtobjects.attachMovie('essences', 'essences', count);
		holder.nohtobjects.essences._x = 448;
		holder.nohtobjects.essences._y = 300;
		holder.nohtobjects.essences.id = 19;
		holder.nohtobjects.essences.gotoAndStop(2);
		removeQuest(5);
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 282 {
		allmap = '448 BREAK 362 BREAK 20 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,0,0,0,0,0,0,34,35,35,35,36,0,0,0,0,0,0,41,42,42,0,0,0,0,0,0,41,42,42,42,37,0,0,0,0,0,0,41,42,42,0,0,0,0,0,0,41,42,42,42,37,0,0,0,0,0,0,41,42,42,0,0,0,0,0,0,41,42,42,42,37,0,0,0,0,0,0,41,42,42,0,0,0,0,0,0,41,42,42,42,37,0,0,0,0,0,0,41,42,42 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,306,307,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,310,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0 BREAK bg_2 BREAK 2 BREAK 2,3,96,463.05,6,1,act2s1,1010,20 BREAK 3,3,-8,209.1,1,20,act2s1,1010,20 BREAK 4,3,449,463.05,6,1,act2s15,448,170';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_jungleSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 290 {
		allmap = '233 BREAK 353 BREAK 20 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,53,53,53,53,53,54,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,57,58,58,58,58,58,58,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,225,226,225,226,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,234,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,0,236,0,0,235,0,0,76,76,76,76,76,76,76,76,76,76,76,76,223,0,237,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK hut1 BREAK 0 BREAK 1,7,272,355,1,2,act2s6,300,460 BREAK 2,2,323,376,26,9 BREAK 3,2,358,377,27,9 BREAK 4,2,394,377,28,9';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_jungleSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 291 {
		allmap = '367 BREAK 360 BREAK 20 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,53,53,53,53,53,54,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,57,58,58,58,58,58,58,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,225,226,225,226,76,76,76,76,76,76,76,76,76,76,76,76,0,225,226,225,226,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,236,0,0,76,76,76,76,76,76,76,76,76,76,76,76,223,232,231,232,0,237,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK hut1 BREAK 0 BREAK 1,7,367,353,1,2,act2s6,530,460 BREAK 2,8,331,384,tribalman,3,A man can not stand snakes and bugs.,Tell him@ what kind of man fears such,things?,null,null,null';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_jungleSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 292 {
		allmap = '397 BREAK 358 BREAK 20 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,53,53,53,53,53,53,53,53,53,54,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,57,58,58,58,58,58,58,58,58,58,58,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,76,76,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,225,226,225,226,0,0,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,0,0,0,234,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,0,0,0,235,0,0,0,0,236,0,0,0,76,76,76,76,76,76,76,76,0,0,222,223,224,231,0,0,237,0,0,0,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK hut1 BREAK 0 BREAK 1,7,403,357,1,2,act2s6,780,390 BREAK 2,8,245,368.05,tribalwoman,4,A woman once saw a man brought back,to life. Argba made a brew of,heartfruit@ bloodgrass and blazestones.,null,null,null BREAK 3,2,463,376,39,9 BREAK 4,2,176,375,40,9';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_jungleSound');
		potionsowned[6] = 1;
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 293 {
		allmap = '176 BREAK 358 BREAK 20 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,53,53,53,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,52,53,53,76,0,0,0,0,75,53,53,54,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,56,0,0,52,53,53,53,53,53,76,0,0,0,0,0,0,0,0,0,0,56,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,57,58,58,58,58,58,58,58,58,58,58,58,58,58,74,0,73,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,56,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,0,76,76,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,225,226,0,0,0,0,0,0,225,226,76,76,76,76,76,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,225,226,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,235,0,236,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,233,0,0,237,0,0,222,223,224,231,0,0,0,0,0,232,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK hut1 BREAK 0 BREAK 1,7,175,351,1,3,act2s6,1070,430 BREAK 2,3,527,467.05,1,1,act2s11,205,50';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_jungleSound');
		++count;
		holder.nohtobjects.attachMovie('cauldron', 'cauldron', count);
		holder.nohtobjects.cauldron._x = 415;
		holder.nohtobjects.cauldron._y = 384;
		++count;
		holder.nohtobjects.attachMovie('act2witch', 'witch', count);
		holder.nohtobjects.witch._x = 480;
		holder.nohtobjects.witch._y = 384;
		onEnterFrame = function () {
			if (holder.nohtobjects.witch and holder.player._x > 462 and !holder.nohtobjects.cauldron.poisondone) {
				holder.player._x = 462;
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 302 {
		allmap = '465 BREAK 1100 BREAK 30 BREAK 40 BREAK 85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,93,94,94,94,94,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,77,78,78,78,78,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,80,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,80,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,82,83,83,83,83,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,83,83,83,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,81,0,0,0,0,0,0,0,0,77,78,78,78,78,78,79,0,0,0,0,0,0,0,0,0,0,0,0,85,85,81,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,85,85,81,77,78,78,78,78,78,78,78,85,85,85,85,85,85,85,78,78,78,78,78,78,78,78,78,78,78,78,85,85,81,80,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,81,80,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,298,298,298,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,295,298,298,295,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,298,301,298,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,303,296,304,296,296,305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,326,327,0,0,0,0,0,0,0,0,0,326,327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,325,0,328,329,0,0,0,0,0,0,0,0,0,328,329,0,324,325,0,0,0,0,0,0,0,0,0,0,0,328,329,0,328,329,0,0,0,0,0,0,0,0,0,328,329,0,328,329,0,0,0,0,0,0,0,0,0,320,321,330,331,0,330,331,321,0,0,0,0,0,0,0,321,330,331,320,330,331,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_4 BREAK 3 BREAK 1,9,464,1112 BREAK 2,3,966,1135,1,5,act3s2,50,460 BREAK 3,36,465,1096.05,2,5,select1,97,81';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_windSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 303 {
		allmap = '48 BREAK 455 BREAK 50 BREAK 20 BREAK 85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,86,83,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,83,83,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,81,77,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,81,80,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,81,80,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,326,327,0,0,0,328,329,0,0,0,324,325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,328,329,0,0,0,328,329,0,0,0,328,329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,328,329,0,0,0,328,329,0,0,0,328,329,0,0,0,0,245,246,247,0,0,0,332,333,0,0,0,245,246,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273,273,0,0,330,331,242,0,0,330,331,273,0,0,330,331,242,0,0,0,248,249,250,0,0,0,334,335,0,0,0,248,249,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0,336,337,0,0,0,0,252,0,0,0,0,320,321,320,321,320,321,320,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,242,0,0,253,0,241,0,0,338,339,0,241,243,244,253,242,0,0,0,322,323,322,323,322,323,322,323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_4 BREAK 3 BREAK 1,3,-9,431,1,5,act3s1,910,1165 BREAK 2,3,1610,385.05,1,100,act3s3,50,520';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_windSound');
		if (!actions[8]) {
			++count;
			holder.attachMovie('act3s2computer', 'computer', count);
			holder.computer._x = 990;
			holder.computer._y = 544;
		}
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 304 {
		allmap = '43 BREAK 526 BREAK 50 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,94,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,94,94,94,94,94,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,91,91,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,91,91,91,91,91,91,91,91,91,91,91,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,91,91,91,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,301,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,303,304,305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,298,298,298,298,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,269,268,269,0,0,0,0,0,0,0,0,0,300,298,295,298,295,298,302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,270,271,0,0,0,0,0,0,0,0,0,300,298,295,298,295,298,302,0,284,285,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,298,298,298,298,298,302,0,287,293,293,289,0,0,0,0,0,0,0,0,0,326,327,0,0,0,0,0,0,0,0,0,0,0,272,284,285,285,285,285,285,285,285,285,285,285,285,286,274,275,300,298,298,298,298,298,302,0,284,285,285,286,284,285,285,285,286,0,0,0,0,328,329,0,256,257,258,0,0,326,327,0,0,0,0,287,285,285,293,285,285,285,285,285,293,293,285,289,274,275,300,298,295,298,298,298,302,0,287,285,285,289,287,285,293,285,289,0,0,0,0,328,329,0,259,260,261,0,0,328,329,0,0,0,0,284,285,285,285,285,285,285,285,285,285,285,285,286,0,0,300,298,295,298,298,298,302,0,284,285,285,286,284,285,285,285,286,0,0,0,0,328,329,0,262,263,264,0,0,328,329,0,0,0,0,287,285,285,288,285,285,285,285,285,285,285,285,289,0,0,300,298,298,298,301,298,302,0,287,288,285,289,287,285,285,285,289,0,0,0,0,330,331,0,0,265,0,0,0,330,331,0,0,0,0,290,294,294,291,294,294,294,294,294,294,294,294,292,0,0,303,296,296,296,304,296,305,0,290,291,294,292,290,294,294,294,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_4 BREAK 3 BREAK 1,3,-9,359.05,1,100,act3s2,1550,530 BREAK 2,7,625,516.05,1,3,act3s3h1,335,360 BREAK 3,7,1136,512.05,1,3,act3s3h2,430,850 BREAK 4,7,1136,193.1,1,3,act3s3h2,436,260 BREAK 5,7,1298,516.1,1,3,act3s3h3,145,520 BREAK 6,3,1608,369,1,100,act3s4,50,520 BREAK 7,2,1062,220,53,2 BREAK 8,2,1020,218,54,2';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_windSound');
		++count;
		holder.nohtobjects.attachMovie('levelshifter', 'diatrigger1', count);
		holder.nohtobjects.diatrigger1._x = 274;
		holder.nohtobjects.diatrigger1._y = 544;
		holder.nohtobjects.diatrigger1._width = 30;
		holder.nohtobjects.diatrigger1._height = 100;
		holder.nohtobjects.diatrigger1.onEnterFrame = function () {
			if (!actions[29] and this.hitTest(holder.player)) {
				mesarr = new Array();
				mesarr[0] = 'The ancient city of Xinda... What';
				mesarr[1] = 'happened here? How can a civilisation';
				mesarr[2] = 'so advanced just...';
				mesarr[3] = '...vanish?';
				_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'hero');
				actions[29] = true;
			}
		};
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 305 {
		allmap = '47 BREAK 521 BREAK 50 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,94,94,94,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,91,91,91,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,94,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,78,78,78,78,78,78,78,78,78,79,80,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,79,80,85,85,85,85,85,85,85,85,85,81,80,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,81,80,85,85,85,85,85,85,85,85,85,81,80,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,81,80,85,85,85,85,85,85,85,85,85,81,80,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,272,297,298,298,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,298,298,298,302,318,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,278,279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,285,285,286,274,275,300,295,295,298,302,0,0,0,0,0,0,0,320,321,320,321,320,321,0,0,0,280,281,0,0,320,321,320,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,293,285,289,0,0,300,298,298,298,302,300,298,302,0,0,0,0,322,323,322,323,322,323,240,242,0,282,283,0,242,322,323,322,323,242,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,285,285,286,0,0,300,295,295,298,302,300,301,302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,288,285,289,0,0,303,296,296,296,305,303,304,305,242,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,294,291,294,292,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_4 BREAK 3 BREAK 1,3,-7,367,1,100,act3s3,1550,520 BREAK 2,7,466,514.05,1,3,act3s4h1,335,380 BREAK 3,7,816,484.05,1,3,act3s4h2,495,560 BREAK 4,3,1606,271,1,50,act3s5,50,1170';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_windSound');
		if (!actions[68] and !actions[20]) {
			++count;
			holder.background.attachMovie('objects', 'ship', count);
			holder.background.ship.gotoAndStop(45);
			holder.background.ship._x = 212;
			holder.background.ship._y = 530;
		}
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 306 {
		allmap = '750 BREAK 549 BREAK 40 BREAK 40 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,94,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,94,94,94,94,94,94,94,94,94,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,94,94,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,301,302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,303,304,305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,298,298,298,298,298,298,298,298,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,298,295,298,298,295,298,298,295,298,302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,298,298,298,298,298,298,298,298,298,302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,298,295,298,298,295,298,298,295,298,302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,298,298,298,298,298,298,298,298,298,302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,298,298,298,298,298,298,298,298,298,302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,298,295,298,298,295,298,298,295,298,302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,298,298,298,298,298,298,298,298,298,302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,298,298,298,298,298,298,298,298,298,302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,298,295,298,298,295,298,298,295,298,302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,298,298,298,298,298,298,298,298,298,302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,298,298,298,298,298,298,298,298,298,302,268,269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,298,295,298,298,295,298,298,295,298,302,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,298,298,298,298,298,298,298,298,298,302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,257,258,0,0,0,0,0,245,246,247,0,0,300,298,298,298,298,298,298,298,298,298,302,297,298,298,299,0,256,257,258,0,0,0,0,0,0,0,0,259,260,261,0,0,0,0,0,248,249,250,0,0,300,298,295,298,298,295,298,298,295,298,302,300,295,298,302,0,259,260,261,0,0,0,0,0,0,0,0,262,263,264,0,266,267,0,0,251,252,0,0,0,300,298,298,298,298,298,298,298,298,298,302,300,301,298,302,0,262,263,264,0,266,267,0,0,0,0,0,0,265,0,0,254,255,0,0,0,253,0,240,242,303,296,296,296,296,296,296,296,296,296,305,303,304,296,305,242,0,265,0,0,254,255,273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_4 BREAK 3 BREAK 1,3,-7,924.05,1,100,act3s4,1550,430 BREAK 2,7,879,1153,1,3,act3s6,655,1515 BREAK 3,7,752,544,1,3,act3s6,400,140 BREAK 4,3,1287,1060,1,100,act3s7,50,850 BREAK 6,4,304,1174';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_windSound');
		++count;
		holder.objects.attachMovie('act3s5_clock', 'clock', count);
		holder.objects.clock._x = 582;
		holder.objects.clock._y = 576;
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 307 {
		allmap = '660 BREAK 1519 BREAK 25 BREAK 50 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,97,97,97,97,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,96,97,97,97,97,97,97,97,97,107,123,123,123,0,106,97,97,98,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,99,123,0,123,123,123,123,123,123,123,123,123,123,123,123,123,123,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,99,123,123,123,123,123,123,123,123,123,123,123,123,123,123,0,123,100,0,0,0,0,0,0,0,99,123,123,123,123,123,123,123,123,123,123,123,123,123,123,0,123,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,99,123,0,123,123,123,123,123,123,123,123,123,123,123,123,123,123,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,99,123,123,123,123,123,123,123,123,123,123,123,123,123,123,0,123,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,99,123,0,123,123,123,123,123,123,123,123,123,123,123,123,123,123,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,99,123,0,123,123,123,123,123,123,123,123,123,123,123,123,123,123,106,97,97,97,97,98,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,101,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,340,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,369,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,370,120,121,0,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,0,0,0,0,0,0,340,0,0,0,0,0,119,0,118,0,0,0,76,76,76,76,76,76,76,0,0,0,0,366,0,0,0,0,366,0,0,119,0,118,0,0,0,76,76,76,76,76,76,76,0,0,0,0,368,0,0,0,0,368,0,0,119,0,118,0,0,0,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,119,0,118,0,0,0,76,76,76,76,76,76,76,0,0,0,0,0,352,353,354,352,353,354,0,119,0,118,0,0,0,76,76,76,76,76,76,76,0,120,121,122,0,355,356,357,355,356,357,0,119,0,118,0,0,0,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,0,119,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,0,119,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,0,119,0,118,0,130,131,130,131,130,131,130,131,0,0,0,0,0,76,76,76,76,76,76,76,0,119,0,118,0,132,133,132,133,132,133,132,133,134,0,0,0,0,76,76,76,76,76,76,76,0,119,0,118,0,135,136,135,136,135,136,135,136,137,120,121,122,0,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,118,0,76,76,76,76,76,76,76,0,0,0,0,366,0,0,0,0,366,0,0,0,0,119,0,118,0,76,76,76,76,76,76,76,0,0,0,0,368,0,0,0,0,368,0,0,0,0,119,0,118,0,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,118,0,76,76,76,76,76,76,76,0,120,121,122,0,0,0,0,0,0,0,0,0,0,119,0,118,0,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,0,119,0,118,0,340,0,0,0,0,0,340,0,0,0,0,0,0,76,76,76,76,76,76,76,0,119,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,0,119,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,0,119,0,118,352,353,354,352,353,354,352,353,354,0,0,0,0,0,76,76,76,76,76,76,76,0,119,0,118,355,356,357,355,356,357,355,356,357,341,120,121,122,0,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,118,0,76,76,76,76,76,76,76,0,0,0,0,366,0,0,0,0,0,0,0,0,0,119,0,118,0,76,76,76,76,76,76,76,0,0,0,0,368,130,131,130,131,0,0,0,0,0,119,0,118,0,76,76,76,76,76,76,76,0,0,0,0,0,132,133,132,133,352,353,354,348,349,119,0,118,0,76,76,76,76,76,76,76,0,120,121,122,0,135,136,135,136,355,356,357,350,351,119,0,118,0,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,0,119,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,0,119,0,118,366,0,0,0,0,366,0,0,0,0,366,0,0,0,76,76,76,76,76,76,76,0,119,0,118,368,0,0,0,0,368,0,0,0,0,368,0,0,0,76,76,76,76,76,76,76,0,119,0,118,0,0,0,0,0,0,0,0,0,0,369,0,0,0,76,76,76,76,76,76,76,0,119,0,118,0,0,0,0,0,0,0,0,0,0,370,0,0,0,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,0,119,0,118,0,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,76,76,0,119,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,366,0,0,0,76,76,0,119,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,368,0,0,0,76,76,0,119,0,118,0,342,343,344,342,343,344,0,364,358,359,0,0,0,0,369,0,0,0,76,76,0,119,0,118,0,345,346,347,345,346,347,0,365,360,361,0,0,0,0,370,0,0,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_house2 BREAK 0 BREAK 1,7,401,130,1,3,act3s5,750,554 BREAK 2,7,655,1503.05,1,3,act3s5,880,1170 BREAK 3,16,258,626,1 BREAK 4,16,418,628.05,1 BREAK 5,22,474,1144,3 BREAK 6,22,169,564,3 BREAK 7,22,178,950,3 BREAK 8,7,496,1313,1,3,act3s6h1,150,330';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('');
		++count;
		holder.objects.attachMovie('act3s7_door', 'door', count);
		holder.objects.door._x = 384;
		holder.objects.door._y = 1184;
		onEnterFrame = function () {
			if (!actions[11] and holder.player._y <= 1344 and holder.player._y > 1184 and holder.player._x > 320) {
				holder.player._x = 320;
				mesarr = new Array();
				mesarr[0] = 'Uh, I don\'t really want to get caught in';
				mesarr[1] = 'that machinery. If I could think of a';
				mesarr[2] = 'way to stop the clock that it\'s';
				mesarr[3] = 'powering@ then maybe I could get';
				mesarr[4] = 'through.';
				_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'hero');
				addQuest(6, 'Stop the machinery in the clock tower and enter the room beyond it.');
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 308 {
		allmap = '49 BREAK 841 BREAK 50 BREAK 30 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,78,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,91,91,91,91,91,92,110,110,110,110,0,0,0,0,0,0,0,80,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,0,0,0,0,0,0,0,0,93,94,95,0,0,0,0,0,0,0,0,0,0,0,0,110,110,110,90,91,91,91,91,91,91,91,91,91,92,0,0,0,0,0,0,0,0,0,0,80,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,78,89,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,0,0,0,0,93,94,94,94,94,94,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,0,0,0,0,0,0,0,0,0,0,0,93,94,94,95,0,0,0,0,0,0,0,90,91,91,92,0,0,0,0,0,0,0,0,0,0,0,90,91,91,91,91,92,0,0,80,85,85,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,79,80,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,81,80,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,81,80,85,85,85,85 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,269,0,268,269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,272,287,285,293,285,293,285,289,0,0,0,377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,269,284,285,285,285,285,285,286,0,0,0,377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,290,294,294,294,294,294,292,0,0,0,377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,298,299,0,0,0,0,0,0,0,0,0,0,0,0,377,0,0,284,285,285,285,285,285,285,285,285,285,286,0,0,377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,303,296,305,0,0,0,0,0,0,0,0,0,0,0,0,377,274,275,287,285,293,293,285,285,285,293,293,285,289,0,0,377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,378,0,0,284,285,285,285,285,285,285,285,285,285,286,321,0,378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,298,298,298,298,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,298,298,298,295,298,302,297,298,298,299,0,0,0,0,0,0,0,284,285,285,286,284,285,293,293,285,285,285,293,293,285,286,284,285,293,285,285,286,0,0,0,0,0,0,0,0,0,0,0,300,298,301,298,298,298,302,300,298,298,302,0,0,0,0,0,0,0,287,285,288,289,287,285,285,285,285,285,285,285,285,285,289,287,285,285,285,285,289,0,0,0,0,0,0,0,0,0,0,0,303,296,304,296,296,296,305,303,296,296,305,0,318,319,318,319,0,0,290,294,291,292,290,294,294,294,294,294,294,294,294,294,292,290,294,294,294,294,292,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_4 BREAK 3 BREAK 2,3,-9,748,1,100,act3s5,1230,1170 BREAK 3,7,207,832,1,3,act3s7h1,175,360 BREAK 4,3,1610,128,1,10,act3s8,50,175 BREAK 5,7,787,830.05,1,3,act3s7h2,205,810 BREAK 6,2,1487,637,55,9 BREAK 7,2,1039,474,56,9';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_windSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 309 {
		allmap = '46 BREAK 174 BREAK 30 BREAK 30 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,78,78,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,88,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,88,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,78,78,78,85,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,85,85,85,85,81,77,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,85,85,85,85,81,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,85,85,85,85,81,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,85,85,85,85,81,80,81,0,0,0,0,0,0,0,0,90,91,91,91,91,91,91,91,92,80,85,85,85,85,85,85,85,85,85,81,80,88,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,85,85,85,85,81,80,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,85,85,85,85,81,80,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,85,85,85,85,81,80,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,85,85,85,85,85,85,85,85,85,81,80,85,81,77,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,89,85,85,85,85,85,85,85,85,85,81,80,85,81,80,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,81,80,85,81,80,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,81,80,85,81,80,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,81,80,85,81,80,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,81,80,85,81,80,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,81,80,85,81,80,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,277,0,0,272,284,285,285,285,285,285,285,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,278,279,0,0,0,287,285,293,285,285,285,293,285,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,280,281,0,0,0,284,285,285,285,288,285,285,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273,273,282,283,0,0,273,290,294,294,294,291,294,294,294,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_4 BREAK 3 BREAK 1,3,-10,122,1,10,act3s7,1550,210 BREAK 2,2,850,376,44,11 BREAK 3,7,624,705,1,3,act3s8h1,430,364';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_windSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 310 {
		allmap = '145 BREAK 198 BREAK 40 BREAK 30 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,97,97,97,97,97,97,97,97,97,97,97,97,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,96,97,97,97,97,97,97,97,97,97,97,97,97,97,97,98,0,0,0,101,102,102,102,102,102,102,102,102,105,0,0,0,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,100,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,100,0,0,0,0,0,0,0,99,0,0,0,110,0,0,0,0,0,110,0,0,0,0,100,0,0,0,96,97,97,97,97,97,97,97,97,107,0,0,0,106,97,97,97,97,97,97,97,107,0,0,0,104,102,102,102,102,102,102,105,0,104,102,103,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,100,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,97,97,97,97,97,97,107,0,100,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0,100,0,0,0,0,0,101,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,105,0,0,0,104,102,102,102,102,102,102,102,102,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,97,97,97,97,97,97,107,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,102,102,102,102,102,102,102,102,102,102,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,120,121,122,0,0,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,118,0,0,76,76,76,76,76,76,76,0,0,0,0,340,0,0,0,0,0,340,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,118,0,0,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,118,0,0,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,118,0,0,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,120,121,122,0,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,118,0,0,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,119,0,118,0,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,118,0,0,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,119,0,118,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,340,0,0,340,0,0,119,0,118,0,0,0,340,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,119,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,119,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,119,0,118,0,0,0,0,0,130,131,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,76,76,76,76,76,0,0,434,435,436,434,435,436,0,119,0,118,0,0,434,435,436,132,133,134,0,0,0,0,0,0,0,0,0,0,0,0,123,124,0,76,76,76,76,76,0,0,437,438,439,437,438,439,0,119,0,118,0,0,437,438,439,135,136,137,0,120,121,122,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,118,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,118,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,119,0,118,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,119,0,118,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,119,0,118,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,119,0,118,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_house3 BREAK 0 BREAK 4,18,145,221 BREAK 5,20,740,541,3 BREAK 6,21,143,176,2,4,act3s6h1,605,330 BREAK 7,18,610,861.05 BREAK 8,4,273,217 BREAK 9,21,611,815.05,2,4,act3s10,160,300';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_xindaSound');
		pressedpads = 0;
		++count;
		holder.nohtobjects.attachMovie('presspad', 'presspad1', count);
		holder.nohtobjects.presspad1._x = 1000;
		holder.nohtobjects.presspad1._y = 416;
		++count;
		holder.nohtobjects.attachMovie('presspad', 'presspad2', count);
		holder.nohtobjects.presspad2._x = 730;
		holder.nohtobjects.presspad2._y = 640;
		custarr = [1, 22, 900, 407, 3];
		++count;
		holder.objects.attachMovie('objects', 'objecta', count);
		holder.objects.objecta._x = custarr[2];
		holder.objects.objecta._y = custarr[3];
		holder.objects.objecta.specarr = new Array();
		holder.objects.objecta.specarr = custarr;
		holder.objects.objecta._alpha = 0;
		++count;
		holder.ground.attachMovie('act3s9_door', 'door', count);
		holder.ground.door._x = 640;
		holder.ground.door._y = 734;
		slimerespawn = 60;
		onEnterFrame = function () {
			if (holder.objects.objecta.freezeCount > 0) {
				holder.objects.objecta.freezeCount += 0.75;
				if (holder.objects.objecta.hitTest(holder.nohtobjects.presspad1)) {
					holder.objects.objecta.bumpAmount *= 0.5;
				}
			}
			if (!holder.objects.objecta) {
				--slimerespawn;
				if (slimerespawn == 0) {
					custarr = [1, 22, 900, 407, 3];
					++count;
					holder.objects.attachMovie('objects', 'objecta', count);
					holder.objects.objecta._x = custarr[2];
					holder.objects.objecta._y = custarr[3];
					holder.objects.objecta.specarr = new Array();
					holder.objects.objecta.specarr = custarr;
					holder.objects.objecta._alpha = 0;
					slimerespawn = 60;
				}
			}
			if (holder.objects.objecta._alpha < 100) {
				++holder.objects.objecta._alpha;
			}
			if (pressedpads == 2) {
				actions[14] = true;
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 311 {
		allmap = '270 BREAK 301 BREAK 40 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,98,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,101,102,102,102,102,102,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,102,102,103,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_house3 BREAK 0 BREAK 1,18,160,313.05 BREAK 2,18,1153,320 BREAK 3,19,462,412.05,100 BREAK 5,19,944,411.05,100 BREAK 7,19,705,414.05,100 BREAK 11,19,945,393.05,-100 BREAK 13,19,705,392.05,-100 BREAK 14,19,464,389.05,-100 BREAK 15,21,160,272.05,2,4,act3s9,605,845 BREAK 16,21,1150,275.05,2,4,act3s11,145,530';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_xindaSound');
		++count;
		holder.nohtobjects.attachMovie('levelshifter', 'diatrigger1', count);
		holder.nohtobjects.diatrigger1._x = 266;
		holder.nohtobjects.diatrigger1._y = 320;
		holder.nohtobjects.diatrigger1._width = 30;
		holder.nohtobjects.diatrigger1._height = 100;
		holder.nohtobjects.diatrigger1.onEnterFrame = function () {
			if (!actions[32] and this.hitTest(holder.player)) {
				mesarr = new Array();
				mesarr[0] = 'Whoever was in charge of this lab';
				mesarr[1] = 'was clearly guarding something. Those';
				mesarr[2] = 'blades do not look welcoming.';
				_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'hero');
				actions[32] = true;
			}
		};
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 312 {
		allmap = '143 BREAK 523 BREAK 40 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,98,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,97,97,97,97,98,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,99,0,0,0,0,0,108,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,101,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,105,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,100,0,0,0,0,0,0,0,0,0,0,96,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,98,0,0,0,99,0,100,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,99,0,100,0,0,0,0,96,97,97,97,97,97,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,97,97,97,107,0,100,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,101,102,102,102,102,102,102,102,102,102,105,0,0,0,104,105,0,0,0,104,105,0,0,0,104,105,0,0,0,104,102,102,102,102,102,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,100,99,0,0,0,100,99,0,0,0,100,99,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,100,99,0,0,0,100,99,0,0,0,100,99,0,0,0,100,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,130,131,0,0,0,0,0,0,0,0,130,131,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,434,435,436,132,133,134,0,348,349,0,0,0,0,132,133,134,0,342,343,344,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,437,438,439,135,136,137,0,350,351,0,0,0,0,135,136,137,0,345,346,347,0,0,0,0,120,121,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,340,0,0,0,0,340,0,0,0,0,340,0,0,0,0,0,0,0,76,76,76,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,440,440,440,0,0,440,440,440,0,0,440,440,440,0,0,440,440,440,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,441,441,441,0,0,441,441,441,0,0,441,441,441,0,0,441,441,441,0,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_house2 BREAK 0 BREAK 1,18,144,218 BREAK 2,18,145,541.05 BREAK 3,20,708,481,3 BREAK 4,21,145,497.05,2,4,act3s10,1150,300 BREAK 5,21,144,174.05,2,4,act3s12,190,650';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_xindaSound');
		++count;
		holder.nohtobjects.attachMovie('computer', 'computer', count);
		holder.nohtobjects.computer._x = 716;
		holder.nohtobjects.computer._y = 224;
		holder.nohtobjects.computer.myActions = function () {
			if (this.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true)) {
				_root.giveExclamation();
				if (Key.isDown(40) or Key.isDown(83)) {
					if (_root.msgbox._visible == false and _root.msgbreather == 0) {
						playsound('computer1Sound');
						mesarr = new Array();
						if (effectScience <= 0 and !actions[82]) {
							potionsowned[7] = 1;
							mesarr[0] = 'Important note for trainee technicians:';
							mesarr[1] = 'Solution of Oilstone, Sightbean and';
							mesarr[2] = 'Blazestone will assist with technical';
							mesarr[3] = 'skill.';
							mesarr[4] = ' 		';
							mesarr[5] = 'Important note for trainee medicians:';
							mesarr[6] = '011000010110001101100011011001010111';
							mesarr[7] = '00110111001100100000011001000110010';
							mesarr[8] = '101101110011010010110010101100100';
						} else {
							potionsowned[5] = 1;
							actions[82] = true;
							mesarr[0] = 'Important note for trainee medicians:';
							mesarr[1] = 'Tincture of Heartfruit, Bloodgrass and';
							mesarr[2] = 'Vivrian Adamant will temporarily';
							mesarr[3] = 'increase health points.';
						}
						_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'computer');
					}
				}
			}
		};
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 313 {
		allmap = '194 BREAK 655 BREAK 60 BREAK 25 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,97,97,97,97,97,97,97,98,0,0,0,0,0,0,96,97,97,97,97,97,97,97,97,97,97,98,96,97,97,97,97,97,97,98,96,97,97,97,97,97,97,98,96,97,97,97,97,97,97,97,97,97,97,97,98,0,0,0,0,99,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,100,99,0,0,0,0,0,0,100,99,0,0,0,0,0,0,100,99,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,99,0,0,0,0,0,0,0,106,97,97,97,97,97,97,107,0,0,0,0,0,0,0,0,0,0,106,107,0,0,0,0,0,0,106,107,0,0,0,0,0,0,106,107,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,101,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,105,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,100,0,0,0,0,96,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,98,96,97,97,97,97,97,97,97,97,97,97,97,97,97,97,98,96,97,97,97,97,97,97,97,97,107,0,0,0,0,0,0,0,100,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,101,102,102,102,102,102,102,102,105,0,0,0,0,0,0,0,0,0,0,104,102,102,102,102,105,0,0,0,0,0,0,0,0,0,0,0,0,104,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,123,0,0,123,0,0,0,100,0,0,0,0,99,0,0,0,0,123,0,0,123,0,0,0,0,100,99,0,0,0,0,123,0,0,0,123,0,0,0,123,0,0,0,100,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,440,440,440,0,440,440,0,440,440,440,0,76,76,76,76,0,440,440,440,440,0,440,440,0,440,440,440,440,0,76,440,440,440,440,0,440,440,440,0,440,440,440,0,440,440,440,0,76,76,76,76,76,76,76,76,76,76,76,76,0,441,441,441,0,441,441,0,441,441,441,0,76,76,76,76,0,441,441,441,441,0,441,441,0,441,441,441,441,0,76,441,441,441,441,0,441,441,441,0,441,441,441,0,441,441,441,0,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_house3 BREAK 0 BREAK 1,18,192,664 BREAK 2,17,495,767.05,250 BREAK 3,17,592,764.05,250 BREAK 4,17,1040,761.05,250 BREAK 5,17,1135,762.05,250 BREAK 6,17,1743,765.05,630 BREAK 7,17,1488,765.05,200 BREAK 8,17,1616,763.05,200 BREAK 9,18,193,346 BREAK 10,20,899,215,3 BREAK 12,16,384,221,1 BREAK 13,16,450,221,40 BREAK 14,16,1474,220,1 BREAK 15,16,1216,221,1 BREAK 16,16,962,220,1 BREAK 17,16,514,222,1 BREAK 18,16,801,539.05,1 BREAK 19,16,1313,541.05,1 BREAK 20,16,577,222,40 BREAK 22,21,192,623.05,2,4,act3s11,145,210 BREAK 23,21,193,303.05,2,4,act3s13,1120,470';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_xindaSound');
		++count;
		holder.nohtobjects.attachMovie('levelshifter', 'diatrigger1', count);
		holder.nohtobjects.diatrigger1._x = 314;
		holder.nohtobjects.diatrigger1._y = 672;
		holder.nohtobjects.diatrigger1._width = 30;
		holder.nohtobjects.diatrigger1._height = 100;
		holder.nohtobjects.diatrigger1.onEnterFrame = function () {
			if (!actions[33] and this.hitTest(holder.player)) {
				mesarr = new Array();
				mesarr[0] = 'Fans... This looks perilous. I should be';
				mesarr[1] = 'patient in letting myself float high';
				mesarr[2] = 'enough so I don\'t fall down.';
				_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'hero');
				actions[33] = true;
			}
		};
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 314 {
		allmap = '1120 BREAK 465 BREAK 45 BREAK 35 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,97,97,98,96,97,97,97,97,97,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,97,97,97,98,96,97,97,97,98,0,99,0,0,100,99,0,0,0,0,0,100,0,0,0,0,0,96,97,97,97,97,97,97,97,97,97,97,97,97,97,97,98,0,0,99,0,0,0,106,107,0,0,0,100,0,99,0,0,100,99,0,0,0,0,0,100,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,99,0,0,0,0,0,0,0,0,100,0,99,0,0,106,107,0,0,104,102,102,103,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,99,0,0,0,0,0,0,0,0,100,0,99,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,99,0,0,0,0,0,0,0,0,100,0,99,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,99,0,0,0,0,0,0,0,0,100,0,99,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,101,102,102,102,102,102,102,102,102,103,0,99,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,101,102,102,102,102,102,102,103,0,0,0,0,0,0,0,0,101,102,102,102,102,102,102,102,102,102,102,102,102,102,102,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,97,97,97,97,97,97,97,97,97,97,97,97,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,102,102,102,102,102,102,102,102,102,102,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,96,97,97,97,97,97,97,97,97,97,97,97,97,98,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,101,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,103,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,104,102,102,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,109,110,0,0,0,100,0,0,0,0,0,0,0,0,0,96,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,98,0,0,0,0,0,0,0,0,99,0,0,0,109,110,110,110,0,0,100,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,101,102,102,102,102,102,102,102,102,102,103,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,96,97,97,97,97,97,97,98,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,104,102,105,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,100,0,99,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,101,102,102,102,102,102,102,103,0,101,102,102,102,102,102,102,103,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,102,102,102,102,102,102,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,119,0,118,369,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,119,0,118,370,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,119,0,0,0,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,119,0,0,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,119,0,0,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,119,0,0,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,123,124,0,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,121,122,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,118,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,124,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_house3 BREAK 0 BREAK 1,23,320,222,3,6,88 BREAK 2,18,530,320 BREAK 4,18,161,991.05 BREAK 5,18,573,989.05 BREAK 7,18,1024,1023.05 BREAK 8,18,1151,1021.05 BREAK 9,18,1088,285 BREAK 11,16,834,125.1,1 BREAK 12,18,929,253.1 BREAK 14,18,963,798.1 BREAK 15,18,707,667.1 BREAK 16,18,576,669.1 BREAK 17,18,446,666.1 BREAK 18,18,318,669.1 BREAK 19,18,1117,474 BREAK 20,21,160,943.05,2,4,act3s13,700,660 BREAK 21,21,574,942.05,2,4,act3s13,1020,1000 BREAK 22,21,1022,975.05,2,4,act3s13,575,980 BREAK 23,21,1152,976.05,2,4,act3s13,925,235 BREAK 24,21,960,753.05,2,4,act3s13,450,660 BREAK 25,21,1089,241.05,2,4,act3s13,575,660 BREAK 26,21,928,210.05,2,4,act3s13,1150,1000 BREAK 27,21,529,275,2,4,act3s13,320,660 BREAK 28,16,368,795.05,1 BREAK 29,21,319,623.05,2,4,act3s13,530,300 BREAK 30,21,445,622.05,2,4,act3s13,975,785 BREAK 31,21,573,625.05,2,4,act3s13,1090,270 BREAK 32,21,700,626.05,2,4,act3s13,160,980 BREAK 33,21,1120,432.05,2,4,act3s12,190,330 BREAK 34,2,147,316,48,3 BREAK 35,2,177,316,49,5 BREAK 38,7,1297,97,1,3,act3s14,175,2160 BREAK 39,28,207,312,40 BREAK 40,2,1187,789.05,107,0 BREAK 41,2,450,982.05,108,2 BREAK 42,4,903,468';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_xindaSound');
		++count;
		holder.nohtobjects.attachMovie('presspad2', 'presspad1', count);
		holder.nohtobjects.presspad1._x = 754;
		holder.nohtobjects.presspad1._y = 256;
		holder.nohtobjects.presspad1.action = 15;
		++count;
		holder.nohtobjects.attachMovie('presspad2', 'presspad2', count);
		holder.nohtobjects.presspad2._x = 1269;
		holder.nohtobjects.presspad2._y = 704;
		holder.nohtobjects.presspad2.action = 16;
		++count;
		holder.ground.attachMovie('act3s13_door', 'door', count);
		holder.ground.door._x = 1120;
		holder.ground.door._y = 160;
		++count;
		holder.nohtobjects.attachMovie('levelshifter', 'diatrigger1', count);
		holder.nohtobjects.diatrigger1._x = 262;
		holder.nohtobjects.diatrigger1._y = 992;
		holder.nohtobjects.diatrigger1._width = 30;
		holder.nohtobjects.diatrigger1._height = 100;
		holder.nohtobjects.diatrigger1.onEnterFrame = function () {
			if (!actions[34] and (_root.actions[15] or _root.actions[16]) and this.hitTest(holder.player)) {
				mesarr = new Array();
				mesarr[0] = 'Ugh... All this damned teleporting is';
				mesarr[1] = 'turning my stomach.';
				_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'hero');
				actions[34] = true;
			}
		};
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 315 {
		allmap = '174 BREAK 2161 BREAK 30 BREAK 72 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,91,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,293,285,285,285,293,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,293,285,285,285,293,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,293,285,285,285,293,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,293,285,285,285,293,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,293,285,285,285,293,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,293,285,285,285,293,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,293,285,285,285,293,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,293,285,285,285,293,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,293,285,285,285,293,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,293,285,285,285,293,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,293,285,285,285,293,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,293,285,285,285,293,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,293,285,285,285,293,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,293,285,285,285,293,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,293,285,285,285,293,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,293,285,285,285,293,285,285,285,0,0,0,0,0,0,0,0,0,0,0,0,0,326,327,0,0,0,0,0,287,285,285,285,285,285,285,285,285,285,0,0,0,0,0,0,0,0,0,324,325,0,0,328,329,0,0,324,325,0,284,285,285,285,285,285,285,285,285,285,0,0,0,0,284,288,286,0,0,328,329,0,0,328,329,0,0,328,329,0,287,285,285,285,288,285,285,285,285,285,0,0,0,273,290,291,292,0,0,330,331,273,273,330,331,0,273,330,331,0,290,294,294,294,291,294,294,294,294,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_4 BREAK 3 BREAK 1,7,178,2144,1,3,act3s13,1300,110 BREAK 2,3,336,48,100,1,littleprince,10,10 BREAK 3,2,156,2073.05,52,9 BREAK 4,7,784,2147.05,1,3,act3s15,240,810';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_windSound');
		onEnterFrame = function () {
			if (!fadeout and !fadein and (holder.player._x + xspeed > levelwidth or holder.player._x + xspeed < 0)) {
				holder.player._x -= xspeed;
				xspeed = 0;
			}
			if (holder.player._x < 5) {
				holder.player._x = 5;
			}
			if (holder.player._x > levelwidth) {
				holder.player._x = levelwidth;
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 316 {
		allmap = '240 BREAK 814 BREAK 40 BREAK 30 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,97,97,97,97,97,97,97,97,98,0,0,96,97,97,97,97,97,97,97,97,97,97,97,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,106,97,97,107,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,104,102,102,105,0,0,0,0,0,109,110,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,100,0,0,99,0,0,0,0,110,110,110,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,102,102,102,102,102,102,102,102,103,0,0,101,102,102,102,102,102,102,102,102,105,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,98,0,0,99,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,99,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,99,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,99,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,99,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,99,0,0,100,96,97,97,97,97,97,97,97,98,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,99,0,0,100,99,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,97,97,107,0,0,106,107,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,101,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,0,0,0,119,0,0,0,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,443,443,443,444,0,445,443,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,443,443,443,444,0,445,443,0,76,76,76,76,76,76,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,124,124,125,445,443,443,443,444,0,445,443,0,76,76,76,76,76,76,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,445,443,443,443,444,0,445,443,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,442,76,76,76,442,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_house3 BREAK 0 BREAK 1,16,418,158.05,1 BREAK 2,16,482,158.05,40 BREAK 4,22,547,342,3 BREAK 5,4,367,824 BREAK 6,7,239,797,1,3,act3s14,785,2160 BREAK 7,2,153,340,181,2 BREAK 8,2,148,825,182,2';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_xindaSound');
		lastfloor = 1;
		++count;
		holder.nohtobjects.attachMovie('liftbutton', 'liftbutton', count);
		holder.nohtobjects.liftbutton._x = 1070;
		holder.nohtobjects.liftbutton._y = 832;
		++count;
		holder.nohtobjects.attachMovie('computer', 'computer', count);
		holder.nohtobjects.computer._x = 260;
		holder.nohtobjects.computer._y = 352;
		holder.nohtobjects.computer.myActions = function () {
			if (this.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true)) {
				_root.giveExclamation();
				if (Key.isDown(40) or Key.isDown(83)) {
					if (_root.msgbox._visible == false and _root.msgbreather == 0) {
						playsound('computer1Sound');
						mesarr = new Array();
						if (effectScience <= 0 and !actions[83]) {
							mesarr[0] = '01101110011001010111001001100100';
						} else {
							actions[83] = true;
							mesarr[0] = 'Clearance required for floor: ' + actions[17];
							mesarr[1] = 'Checking clearance...';
							mesarr[2] = 'Clearance confirmed.';
						}
						_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'computer');
					}
				}
			}
		};
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 317 {
		allmap = '320 BREAK 240 BREAK 20 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_4 BREAK 0';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_xindaSound');
		cutscene = true;
		holder.player._visible = false;
		++count;
		holder.attachMovie('lifttravel', 'lifttravel', count);
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 318 {
		allmap = '209 BREAK 336 BREAK 72 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,98,0,0,0,0,0,96,97,97,97,97,97,97,97,97,97,97,97,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,96,97,97,97,97,97,97,97,98,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,100,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,97,97,97,97,97,107,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,106,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,102,102,102,105,0,0,0,100,0,0,0,0,0,0,101,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,103,0,0,0,101,102,102,102,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,442,76,76,76,442,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,442,76,76,76,442,76,76,0,0,0,0,0,0,340,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,442,76,76,76,442,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,443,444,0,445,443,443,443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,443,444,0,445,443,443,443,0,0,0,0,0,371,372,371,372,371,372,371,372,371,372,371,372,0,130,131,0,0,371,372,371,372,371,372,371,372,371,372,371,372,0,130,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,443,444,0,445,443,443,443,444,0,0,0,0,373,374,373,374,373,374,373,374,373,374,373,374,0,132,133,134,0,373,374,373,374,373,374,373,374,373,374,373,374,0,132,133,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,443,444,0,445,443,443,443,444,341,0,0,0,375,376,375,376,375,376,375,376,375,376,375,376,0,135,136,137,0,375,376,375,376,375,376,375,376,375,376,375,376,0,135,136,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,0,0,0,0,0,76,76,76,76,76,76,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_house3 BREAK 0 BREAK 1,20,1251,190,3';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_xindaSound');
		++count;
		holder.nohtobjects.attachMovie('liftbutton', 'liftbutton', count);
		holder.nohtobjects.liftbutton._x = 210;
		holder.nohtobjects.liftbutton._y = 352;
		++count;
		holder.nohtobjects.attachMovie('levelshifter', 'diatrigger1', count);
		holder.nohtobjects.diatrigger1._x = 530;
		holder.nohtobjects.diatrigger1._y = 352;
		holder.nohtobjects.diatrigger1._width = 30;
		holder.nohtobjects.diatrigger1._height = 100;
		holder.nohtobjects.diatrigger1.onEnterFrame = function () {
			if (!actions[35] and this.hitTest(holder.player)) {
				mesarr = new Array();
				mesarr[0] = 'Suspended animation... So that\'s where';
				mesarr[1] = 'they all went. I wonder what drove';
				mesarr[2] = 'them to this. Will they ever wake?';
				_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'hero');
				actions[35] = true;
			}
		};
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 319 {
		allmap = '209 BREAK 336 BREAK 72 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,98,0,0,0,0,0,96,97,97,97,97,97,97,97,97,97,97,97,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,96,97,97,97,97,97,97,97,98,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,100,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,97,97,97,97,97,107,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,106,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,102,102,102,105,0,0,0,100,0,0,0,0,0,0,101,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,103,0,0,0,101,102,102,102,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,442,76,76,76,442,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,442,76,76,76,442,76,76,0,0,0,0,0,0,340,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,442,76,76,76,442,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,443,444,0,445,443,443,443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,443,444,0,445,443,443,443,0,0,0,0,0,371,372,371,372,371,372,371,372,371,372,371,372,0,130,131,0,0,371,372,371,372,371,372,371,372,371,372,371,372,0,130,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,443,444,0,445,443,443,443,444,0,0,0,0,373,374,373,374,373,374,373,374,373,374,373,374,0,132,133,134,0,373,374,373,374,373,374,373,374,373,374,373,374,0,132,133,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,443,444,0,445,443,443,443,444,341,0,0,0,375,376,375,376,375,376,375,376,375,376,375,376,0,135,136,137,0,375,376,375,376,375,376,375,376,375,376,375,376,0,135,136,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,0,0,0,0,0,76,76,76,76,76,76,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,442,76,76,76,442,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_house3 BREAK 0 BREAK 1,20,1251,190,3 BREAK 2,18,2126,349.05 BREAK 3,21,2127,305,2,4,act3s1h1,190,340';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_xindaSound');
		++count;
		holder.nohtobjects.attachMovie('liftbutton', 'liftbutton', count);
		holder.nohtobjects.liftbutton._x = 210;
		holder.nohtobjects.liftbutton._y = 352;
		++count;
		holder.nohtobjects.attachMovie('levelshifter', 'diatrigger1', count);
		holder.nohtobjects.diatrigger1._x = 530;
		holder.nohtobjects.diatrigger1._y = 352;
		holder.nohtobjects.diatrigger1._width = 30;
		holder.nohtobjects.diatrigger1._height = 100;
		holder.nohtobjects.diatrigger1.onEnterFrame = function () {
			if (!actions[35] and this.hitTest(holder.player)) {
				mesarr = new Array();
				mesarr[0] = 'Suspended animation... So that\'s where';
				mesarr[1] = 'they all went. I wonder what drove';
				mesarr[2] = 'them to this. Will they ever wake?';
				_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'hero');
				actions[35] = true;
			}
		};
		++count;
		holder.nohtobjects.attachMovie('essences', 'essences', count);
		holder.nohtobjects.essences._x = 2000;
		holder.nohtobjects.essences._y = 288;
		holder.nohtobjects.essences.id = 20;
		holder.nohtobjects.essences.gotoAndStop(3);
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 327 {
		allmap = '340 BREAK 361 BREAK 30 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,98,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,109,100,0,0,0,0,0,0,101,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,367,0,367,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,368,0,0,0,0,0,0,0,0,368,0,368,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,352,353,354,0,0,369,0,0,0,364,358,359,362,0,0,358,358,362,0,0,0,0,0,76,76,76,76,76,76,0,355,356,357,0,0,370,0,0,0,365,360,361,363,0,0,360,361,363,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_house2 BREAK 0 BREAK 1,7,336,353,1,3,act3s3,625,520 BREAK 2,2,849,347,57,2';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 328 {
		allmap = '433 BREAK 838 BREAK 20 BREAK 30 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,97,97,97,97,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,100,0,0,0,0,0,0,96,97,97,97,97,97,97,97,107,123,123,123,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,123,0,123,123,123,123,123,123,123,123,123,123,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,123,0,123,123,123,123,123,123,123,123,123,123,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,101,102,102,102,102,102,102,102,102,102,102,102,102,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,369,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,370,120,121,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,340,0,0,0,119,0,0,76,76,76,76,76,76,0,0,366,0,0,0,0,0,0,0,0,119,0,0,76,76,76,76,76,76,0,0,368,0,0,130,131,130,131,0,0,119,0,0,76,76,76,76,76,76,0,0,0,0,0,132,133,132,133,134,0,119,0,0,76,76,76,76,76,76,0,120,121,122,0,135,136,135,136,137,0,119,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,119,0,118,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,119,0,118,0,0,0,0,366,0,0,366,0,0,76,76,76,76,76,76,0,119,0,118,0,0,0,0,368,0,0,368,0,0,76,76,76,76,76,76,0,119,0,118,0,348,349,352,353,354,352,353,354,0,76,76,76,76,76,76,0,119,0,118,0,350,351,355,356,357,355,356,357,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,119,0,118,0,0,0,340,0,0,0,0,0,0,76,76,76,76,76,76,0,119,0,118,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,119,0,118,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,119,0,118,348,349,352,353,354,0,369,0,0,0,76,76,76,76,76,76,0,119,0,118,350,351,355,356,357,0,370,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_house2 BREAK 0 BREAK 1,7,432,257,1,3,act3s3,1135,210 BREAK 2,7,433,831,1,3,act3s3,1135,520';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 329 {
		allmap = '145 BREAK 520 BREAK 20 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,97,97,97,97,97,97,98,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,106,97,97,97,97,97,97,97,97,97,98,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,99,123,123,123,123,123,0,0,0,0,0,0,0,0,0,0,0,100,0,0,99,0,0,0,0,0,0,123,123,123,123,123,123,123,123,123,123,100,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,101,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,367,367,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,368,368,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,0,0,0,0,0,130,131,0,0,0,0,0,76,76,0,0,0,0,0,120,121,122,0,0,0,132,133,0,0,348,349,0,76,76,0,0,0,0,0,0,0,118,0,0,0,135,136,0,0,350,351,0,76,76,0,0,0,340,0,119,0,118,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,119,0,118,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,119,0,118,0,130,131,0,0,0,0,0,0,0,76,76,0,0,0,369,0,119,0,118,143,132,133,0,0,0,352,353,354,0,76,76,0,0,0,370,0,119,0,118,147,135,136,0,0,0,355,356,357,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_house2 BREAK 0 BREAK 1,7,145,511,1,3,act3s3,1300,520 BREAK 2,2,482,379,173,2 BREAK 3,2,342,372,174,2';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('');
		++count;
		holder.nohtobjects.attachMovie('computer', 'computer', count);
		holder.nohtobjects.computer._x = 120;
		holder.nohtobjects.computer._y = 352;
		holder.nohtobjects.computer.myActions = function () {
			if (this.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true)) {
				_root.giveExclamation();
				if (Key.isDown(40) or Key.isDown(83)) {
					if (_root.msgbox._visible == false and _root.msgbreather == 0) {
						potionsowned[1] = 1;
						playsound('computer1Sound');
						mesarr = new Array();
						mesarr[0] = 'Running maintenance diagnostic...';
						mesarr[1] = ' 		';
						mesarr[2] = 'Freezer warehouse temp high.';
						mesarr[3] = 'Apply:';
						mesarr[4] = '* Barkyo Oilstone';
						mesarr[5] = '* Olian Sightbean';
						mesarr[6] = '* Frezian Glaze';
						_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'computer');
					}
				}
			}
		};
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 330 {
		allmap = '334 BREAK 359 BREAK 20 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,97,97,97,97,97,97,97,97,97,98,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,101,102,102,102,102,102,102,102,102,102,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,0,340,0,0,0,340,0,0,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,367,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,368,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,348,349,0,0,369,0,352,353,354,76,76,76,76,76,76,76,76,76,76,0,350,351,341,0,370,0,355,356,357,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_house2 BREAK 0 BREAK 1,7,339,364,1,3,act3s4,465,520';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('');
		if (!actions[68] and !actions[20]) {
			custarr = [1, 8, 266, 364, 'oldman', 11, 'Communication was lost with Xinda long', 'before my time. No one knows what', 'happened. The people of Elaris were', 'known to be masters of preservation,', 'so the Essence should still be around', 'somewhere. You may be able to take', 'advantage of their preservation', 'materials in your alchemical work.'];
			++count;
			holder.objects.attachMovie('objects', 'oldman', count);
			holder.objects.oldman._x = custarr[2];
			holder.objects.oldman._y = custarr[3];
			holder.objects.oldman.specarr = new Array();
			holder.objects.oldman.specarr = custarr;
			holder.objects.oldman._xscale = -100;
		}
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 331 {
		allmap = '464 BREAK 554 BREAK 20 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,97,97,97,97,97,97,97,97,97,97,98,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,99,123,123,123,123,123,123,123,123,0,123,106,97,97,97,98,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,101,102,102,102,102,102,102,102,102,102,102,102,102,102,102,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,0,0,0,366,0,366,0,0,0,0,0,0,76,76,76,76,76,76,76,76,0,0,0,368,0,368,0,0,0,0,0,0,76,76,76,76,76,76,76,76,0,342,343,344,342,343,344,0,0,0,0,0,76,76,76,76,76,76,76,76,0,345,346,347,345,346,347,0,120,121,122,0,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,119,0,118,0,0,340,0,0,76,76,76,76,0,0,0,366,0,366,0,0,119,0,118,0,0,0,0,0,76,76,76,76,0,0,0,368,0,368,0,0,119,0,118,0,0,0,0,0,76,76,76,76,0,0,0,359,362,0,358,358,119,0,118,0,0,369,0,0,76,76,76,76,0,0,360,361,363,0,360,361,119,0,118,0,0,370,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_house2 BREAK 0 BREAK 1,7,498,553.05,1,3,act3s4,815,500';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 332 {
		allmap = '150 BREAK 332 BREAK 24 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,98,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,101,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_house2 BREAK 0 BREAK 1,18,608,347.05 BREAK 2,7,145,321,1,3,act3s6,500,1320 BREAK 3,21,607,304.05,2,4,act3s9,145,200';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('');
		++count;
		holder.background.attachMovie('act3s6h1_background', 'watchmaker', count);
		holder.background.watchmaker._x = 160;
		holder.background.watchmaker._y = 192;
		++count;
		holder.nohtobjects.attachMovie('levelshifter', 'diatrigger1', count);
		holder.nohtobjects.diatrigger1._x = 350;
		holder.nohtobjects.diatrigger1._y = 352;
		holder.nohtobjects.diatrigger1._width = 30;
		holder.nohtobjects.diatrigger1._height = 100;
		holder.nohtobjects.diatrigger1.onEnterFrame = function () {
			if (!actions[26] and this.hitTest(holder.player)) {
				mesarr = new Array();
				mesarr[0] = 'All this fighting and these lives resting';
				mesarr[1] = 'on my shoulders! If only I had known,';
				mesarr[2] = 'I should have become a watchmaker...';
				_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'hero');
				actions[26] = true;
			}
		};
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 333 {
		allmap = '174 BREAK 359 BREAK 25 BREAK 15 BREAK 167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,111,112,112,112,112,112,112,112,112,112,112,112,112,112,112,113,167,167,167,167,167,167,167,167,167,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,167,167,167,167,167,167,167,167,167,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,167,167,167,167,167,167,167,167,167,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,167,167,167,167,167,167,167,167,167,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,112,112,112,112,113,167,167,167,167,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,167,167,167,167,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,167,167,167,167,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,115,167,167,167,167,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,109,115,167,167,167,167,116,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,118,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,379,380,379,0,0,0,0,380,380,0,379,379,0,379,0,0,0,0,0,0,0,0,0,0,0,0,381,0,0,0,0,0,381,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,381,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,370,0,382,383,0,382,383,382,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_freezer BREAK 0 BREAK 1,7,178,351,1,3,act3s7,205,850 BREAK 2,20,496,255,3 BREAK 3,2,657,348.05,41,4 BREAK 4,2,623,378.05,42,4 BREAK 5,2,529,376.05,43,4';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('');
		++count;
		holder.nohtobjects.attachMovie('levelshifter', 'diatrigger1', count);
		holder.nohtobjects.diatrigger1._x = 432;
		holder.nohtobjects.diatrigger1._y = 382;
		holder.nohtobjects.diatrigger1._width = 30;
		holder.nohtobjects.diatrigger1._height = 100;
		holder.nohtobjects.diatrigger1.onEnterFrame = function () {
			if (!actions[31] and this.hitTest(holder.player)) {
				mesarr = new Array();
				mesarr[0] = 'All this time and it\'s still freezing!';
				mesarr[1] = 'Frezian Glaze truly has remarkable';
				mesarr[2] = 'cooling properties.';
				_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'hero');
				actions[31] = true;
			}
		};
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 334 {
		allmap = '209 BREAK 812 BREAK 40 BREAK 30 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,97,97,97,97,97,97,97,97,97,97,97,97,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,97,97,97,107,123,0,0,123,123,123,123,123,123,0,0,123,106,97,97,97,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,110,110,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,96,97,97,97,97,97,107,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,0,123,123,106,97,97,97,97,97,98,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,101,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,121,122,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,118,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,118,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0,0,340,0,0,0,0,119,0,118,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,118,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,118,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,118,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,130,131,130,131,0,0,0,0,0,0,0,0,0,123,124,125,0,130,131,130,131,0,0,0,76,76,76,76,76,76,0,0,0,369,0,0,0,0,0,143,132,133,132,133,0,0,0,0,0,0,0,0,0,0,0,0,0,132,133,132,133,0,0,0,76,76,76,76,76,76,0,0,0,370,0,0,0,341,341,147,135,136,135,136,0,0,0,0,95,96,0,0,0,0,0,0,0,135,136,135,136,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_house3 BREAK 0 BREAK 1,7,211,800,1,3,act3s7,785,850 BREAK 2,17,514,567.05,300 BREAK 3,2,579,349,45,0 BREAK 4,2,706,346,46,0 BREAK 5,2,641,347,47,0 BREAK 8,22,1114,819,3 BREAK 9,20,346,479,3 BREAK 10,22,544,821,3';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 335 {
		allmap = '431 BREAK 366 BREAK 30 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,98,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,101,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,367,0,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,368,0,0,0,0,0,0,0,368,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,130,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,372,0,76,76,76,76,0,132,133,359,0,362,0,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,0,373,374,0,76,76,76,76,0,135,136,360,361,363,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,0,375,376,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_house2 BREAK 0 BREAK 1,7,433,351,1,3,act3s8,625,720 BREAK 2,2,207,346.05,183,5';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_bonusSound');
		_root.givemedal(24);
		++count;
		holder.nohtobjects.attachMovie('alex', 'alex', count);
		holder.nohtobjects.alex._x = 680;
		holder.nohtobjects.alex._y = 288;
		++count;
		holder.nohtobjects.attachMovie('wandschrank', 'wandschrank', count);
		holder.nohtobjects.wandschrank._x = 550;
		holder.nohtobjects.wandschrank._y = 384;
		++count;
		holder.nohtobjects.attachMovie('karlo', 'karlo', count);
		holder.nohtobjects.karlo._x = 285;
		holder.nohtobjects.karlo._y = 384;
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 336 {
		allmap = '320 BREAK 240 BREAK 20 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_4 BREAK 0';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('');
		cutscene = true;
		holder.player._visible = false;
		++count;
		holder.attachMovie('littleprince', 'littleprince', count);
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 337 {
		allmap = '302 BREAK 332 BREAK 20 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,97,97,97,97,97,97,97,97,97,97,97,97,98,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,101,102,102,102,102,102,102,102,102,102,102,102,102,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,366,0,0,0,0,0,0,366,0,0,0,76,76,76,76,76,76,0,0,0,368,0,0,0,0,0,0,368,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,369,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,370,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_house2 BREAK 0 BREAK 1,18,191,348.05 BREAK 2,7,368,320.05,1,3,act3s1,175,300 BREAK 3,21,192,303.05,2,4,act3s17,2120,340';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 347 {
		allmap = '961 BREAK 300 BREAK 60 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,138,138,138,138,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,138,138,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,125,125,125,125,125,125,125,125,125,125,125,125,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,132,132,128,124,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,126,127,132,132,132,132,132,132,132,132,132,132,132,132,128,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,127,132,132,132,132,132,132,132,132,132,132,132,132,128,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,127,132,132,132,132,132,132,132,132,132,132,132,132,128,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,431,432,432,432,432,433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,431,432,432,433,431,432,430,432,430,433,0,0,409,410,411,412,0,389,390,391,389,390,391,0,0,389,390,391,0,0,405,0,0,0,0,0,0,0,389,390,391,0,0,0,389,390,391,389,390,391,389,390,391,0,0,405,0,0,0,0,431,432,428,433,431,432,432,432,432,433,0,0,413,414,415,416,0,392,393,394,392,393,394,0,0,392,393,394,0,0,406,0,0,0,0,0,0,0,392,393,394,0,0,0,392,393,394,392,393,394,392,393,394,0,0,406,0,0,0,0,425,426,429,427,425,426,426,426,426,427,384,386,417,418,419,420,0,395,396,397,395,396,397,0,0,395,396,397,387,0,407,0,0,0,0,0,0,0,395,396,397,0,401,402,395,396,397,395,396,397,395,396,397,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,421,422,423,424,386,398,399,400,398,399,400,0,384,398,399,400,388,0,408,0,0,0,0,0,0,0,398,399,400,386,403,404,398,399,400,398,399,400,398,399,400,0,0,408,384,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_bazaar BREAK 4 BREAK 1,3,-9,424,1,100,act4s3,1870,530 BREAK 2,3,1928,432.05,1,100,act4s2,50,490 BREAK 3,9,961,315 BREAK 5,8,385,538.05,alien1,6,Special price for you@ friend.,null,null,null,null,null BREAK 6,8,1682,508.05,alien2,7,Well met@ outlander!,2 for 3@ just for you!,null,null,null,null BREAK 7,8,1207,510.05,alien2,7,Stay a while and listen!,null,null,null,null,null BREAK 8,8,1308,498.05,alien1,6,Fine day to make a deal@ hmm?,null,null,null,null,null BREAK 9,8,1413,507.05,woman,2,I can\'t decide what to buy.,There\'s so much!,null,null,null,null BREAK 10,8,289,531,alien2,7,N\'wah.,null,null,null,null,null BREAK 11,8,175,537.05,alien1,6,Sale! 2 for 10@ 3 for 20!,null,null,null,null,null BREAK 12,8,592,537.05,alien2,7,Watch your pockets@ stranger.,null,null,null,null,null BREAK 13,8,488,534,man,1,Where\'s my coinpurse?!,null,null,null,null,null BREAK 14,7,818,450,1,2,act4s1h1,275,360 BREAK 15,4,980,468.05 BREAK 16,36,961,302.05,2,5,select1,248,124';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_desertSound');
		custarr = [7, 8, 1010, 480, 'man', 1, 'We are far from home@ friend. What do', 'you seek? Xelno Meehi will have it.'];
		++count;
		holder.objects.attachMovie('objects', 'objecta', count);
		holder.objects.objecta._x = custarr[2];
		holder.objects.objecta._y = custarr[3];
		holder.objects.objecta.specarr = new Array();
		holder.objects.objecta.specarr = custarr;
		onEnterFrame = function () {
			if (holder.player.hitTest(holder.objects.objecta) and (Key.isDown(40) or Key.isDown(83))) {
				addQuest(8, 'Speak to Xelno Meehi.');
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 348 {
		allmap = '49 BREAK 491 BREAK 60 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,138,138,138,138,138,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,138,138,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,126,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,431,432,432,432,432,432,433,0,0,409,410,411,412,409,410,411,412,0,0,0,0,409,410,411,412,0,0,389,390,391,389,390,391,389,390,391,389,390,391,0,0,0,0,0,389,390,391,0,390,391,0,0,0,0,0,0,431,432,432,433,431,432,432,432,430,430,433,0,0,413,414,415,416,413,414,415,416,0,0,0,0,413,414,415,416,0,0,392,393,394,392,393,394,392,393,394,392,393,394,0,0,0,0,0,392,393,394,392,393,394,0,0,0,0,0,0,431,430,432,433,431,428,432,432,432,432,433,0,0,417,418,419,420,417,418,419,420,0,0,0,0,417,418,419,420,0,0,395,396,397,395,396,397,395,396,397,395,396,397,401,402,401,402,0,395,396,397,395,396,397,387,387,0,0,0,0,425,426,426,427,425,429,426,426,426,426,427,0,0,421,422,423,424,421,422,423,424,0,0,0,0,421,422,423,424,0,0,398,399,400,398,399,400,398,399,400,398,399,400,403,404,403,404,384,398,399,400,398,399,400,388,388,386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_bazaar BREAK 4 BREAK 1,3,-10,436,1,100,act4s1,1850,500 BREAK 2,3,1928,275.05,1,100,act4s4,50,460 BREAK 3,8,179,507,child,5,I love Vorti cake!,null,null,null,null,null BREAK 4,8,231,509,man,1,Yes Vorti cake is tasty...,...if you don\'t know what it\'s made of!,null,null,null,null BREAK 5,8,929,501,woman,2,Would this dress look good on me?,null,null,null,null,null BREAK 6,8,751,507,alien2,7,What can I do for you?,null,null,null,null,null BREAK 7,8,374,506,alien1,6,Turo! You stole my wares!,I will bed your mother!,null,null,null,null BREAK 8,8,550,505,alien1,6,Buro! My mother is your mother!,null,null,null,null,null BREAK 9,7,1391,451,1,2,act4s2h1,365,365 BREAK 10,2,1650,477,74,2';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_desertSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 349 {
		allmap = '1868 BREAK 520 BREAK 60 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,141,141,141,141,141,141,141,142,140,141,141,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,141,141,142,0,0,0,0,0,0,0,0,140,141,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,141,141,141,141,141,141,141,141,141,141,141,141,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,141,141,142,140,141,141,141,141,142,140,142,0,0,0,0,140,141,141,141,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,141,141,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,124,125,125,125,125,125,125,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,127,132,132,132,132,132,132,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,127,132,132,132,132,132,132,128,124,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,127,132,132,132,132,132,132,128,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,127,132,132,132,132,132,132,128,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,472,473,474,472,473,474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,475,476,477,475,476,477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,459,459,459,459,459,459,460,464,0,466,0,0,466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,459,461,459,459,459,461,460,0,0,467,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,459,459,459,459,459,459,460,0,0,467,0,0,467,0,0,0,0,0,0,466,0,0,466,0,0,0,0,0,0,0,0,466,0,466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,453,453,453,453,453,453,454,0,0,468,0,0,468,0,0,0,0,0,0,467,0,0,467,0,0,0,0,0,0,0,0,467,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,467,0,0,467,0,0,0,0,0,0,0,0,467,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,459,459,459,459,459,459,459,459,459,459,459,459,459,460,384,385,0,0,0,468,0,385,468,386,0,0,0,0,0,0,0,468,0,468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,459,462,456,462,459,456,459,459,456,459,462,456,462,460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,458,0,0,0,460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,459,463,457,463,459,457,459,459,457,459,463,457,463,460,466,0,0,466,458,459,459,459,459,460,464,466,0,0,0,0,458,459,459,459,460,0,472,473,474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,459,459,459,459,459,459,478,479,459,459,459,459,459,460,467,0,0,467,458,461,459,459,461,460,0,467,0,0,0,0,458,459,456,459,460,0,475,476,477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,459,459,459,459,459,459,480,481,459,459,459,459,459,460,467,0,0,467,458,459,459,459,459,460,0,467,0,0,0,0,458,459,457,459,460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,453,453,453,455,455,453,482,483,453,453,453,455,453,454,468,386,0,468,458,459,459,459,459,460,0,467,0,446,447,0,458,459,459,459,460,464,0,465,466,0,0,409,410,411,412,0,409,410,411,412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,452,453,453,453,455,454,0,468,0,448,449,0,458,459,459,459,460,0,0,0,467,0,0,413,414,415,416,0,413,414,415,416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,449,0,458,459,459,459,460,0,0,0,467,0,0,417,418,419,420,0,417,418,419,420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,450,451,386,452,453,455,455,454,385,385,0,468,0,0,421,422,423,424,0,421,422,423,424,384,385,0,0,0,385,386,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_bazaar BREAK 4 BREAK 1,3,1929,472.05,1,100,act4s1,50,530 BREAK 2,7,223,411,2,4,act4temple1,1410,850 BREAK 3,8,370,440.05,alien1,6,The Welauro Order resides in these,temples. They worship X\'o\'chthu@ and,their rituals... Unspeakable! Luckily this,temple is barred@ but still@ it would be,wise to stay away.,null,null,null,null,null BREAK 5,2,261,57,70,10 BREAK 6,2,357,58,71,10 BREAK 7,2,656,121,72,7 BREAK 8,2,1042,117,73,7 BREAK 9,8,675,473.05,man,1,I swear I saw similar pillars back at,Rhisla.,null,null,null,null';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_desertSound');
		if (!actions[68] and !actions[21]) {
			++count;
			holder.background.attachMovie('objects', 'ship', count);
			holder.background.ship.gotoAndStop(45);
			holder.background.ship._x = 1730;
			holder.background.ship._y = 530;
			custarr = [1, 8, 1040, 530, 'oldman', 11, 'It\'s too hot here! I prefer it cold. You', 'can put more clothes on when it\'s cold,', 'but what do you do when it\'s too hot?'];
			++count;
			holder.objects.attachMovie('objects', 'oldman', count);
			holder.objects.oldman._x = custarr[2];
			holder.objects.oldman._y = custarr[3];
			holder.objects.oldman.specarr = new Array();
			holder.objects.oldman.specarr = custarr;
			holder.objects.oldman._xscale = -100;
		}
		onEnterFrame = function () {
			if (!fadeout and !fadein and holder.player._x + xspeed < 0) {
				holder.player._x -= xspeed;
				xspeed = 0;
			}
			if (holder.player._x < 5) {
				holder.player._x = 5;
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 350 {
		allmap = '47 BREAK 455 BREAK 60 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,125,125,125,125,125,125,125,125,125,125,125,125,125,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,125,125,125,125,126,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,132,132,132,128,0,0,0,0,0,0,0,0,0,0,0,0,0,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,126,127,132,132,132,132,128,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,132,132,132,128,0,0,0,0,124,125,125,125,125,125,125,125,125,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,127,132,132,132,132,128,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,132,132,132,128,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,127,132,132,132,132,128,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,132,132,132,128,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,127,132,132,132,132,128,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,132,132,132,128,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,127,132,132,132,132,128,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,132,132,132,128,0,0,0,0,127,132,132,132,132,132,132,132,132 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,446,447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,446,447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,446,447,0,0,0,0,0,0,0,0,0,0,0,0,448,449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,449,446,447,0,0,0,0,0,0,0,446,447,0,0,0,0,0,0,0,0,0,0,0,0,446,447,0,448,449,0,0,446,447,0,0,0,0,0,0,0,0,448,449,446,447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,449,448,449,0,0,0,0,0,0,0,448,449,0,0,0,0,0,0,0,0,0,0,0,0,448,449,0,448,449,0,0,448,449,0,0,0,0,0,0,0,0,448,449,448,449,0,0,0,0,0,0,0,0,446,447,0,0,0,0,448,449,448,449,0,0,0,0,0,0,0,448,449,0,0,0,0,0,0,0,0,0,0,0,384,450,451,0,450,451,385,386,450,451,0,0,0,0,0,0,0,0,448,449,448,449,0,0,0,0,0,0,0,0,448,449,0,0,0,0,448,449,448,449,0,0,0,0,0,0,0,450,451,385,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,449,448,449,0,0,0,0,0,0,386,384,450,451,0,0,0,385,450,451,450,451,384,384,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,450,451,450,451,0,385,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,440,440,440,440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,440,440,440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,441,441,441,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,441,441,441,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_bazaar BREAK 4 BREAK 1,3,-9,406.05,1,100,act4s2,1870,460 BREAK 2,3,1928,388,1,100,act4border,50,460 BREAK 3,24,361,363.1,3 BREAK 4,24,923,346.1,3 BREAK 5,24,1105,313.1,3 BREAK 6,24,623,335,3 BREAK 7,24,1424,263,3';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_desertSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 351 {
		allmap = '1391 BREAK 844 BREAK 50 BREAK 30 BREAK 167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,155,156,156,156,156,156,156,156,156,156,156,156,156,156,156,157,167,167,155,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,157,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,156,156,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,158,0,0,0,163,161,161,161,161,161,161,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,158,0,0,0,159,167,167,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,161,164,0,159,167,167,167,167,158,0,0,0,159,167,167,167,167,167,167,158,0,0,0,0,0,0,163,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,162,167,160,161,162,167,167,167,167,158,0,0,0,165,156,156,156,156,156,156,166,0,0,0,0,0,0,159,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,161,161,162,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,163,162,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,165,156,156,156,156,157,155,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,157,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,160,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,160,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,162,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,502,0,0,502,0,0,502,0,0,502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,0,503,0,0,503,0,0,503,0,0,0,0,0,0,0,0,0,0,502,0,0,0,0,0,502,0,0,0,0,502,0,0,0,0,0,502,0,0,0,0,0,0,0,0,0,0,0,0,491,0,0,491,0,0,491,0,0,491,0,0,0,0,0,0,0,0,0,0,503,0,0,0,0,0,503,0,0,0,0,503,0,0,0,0,0,503,0,0,0,0,0,0,0,0,0,0,0,0,492,0,0,492,0,0,492,0,0,492,0,0,0,0,0,0,0,0,0,0,491,0,0,493,0,0,491,0,496,497,0,491,0,0,493,0,0,491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,492,0,0,494,0,0,492,0,498,499,0,492,0,0,494,0,0,492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,495,0,0,0,0,500,501,0,0,0,0,495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,502,0,502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,0,491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,492,0,492,0,493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,494,0,510,511,512,0,494,0,0,0,0,0,0,0,0,0,0,0,0,502,0,0,0,0,502,0,0,0,0,502,0,0,0,0,502,0,0,0,0,0,0,0,0,0,0,0,0,385,386,0,495,0,513,514,515,0,495,0,0,0,0,386,0,0,0,0,0,0,0,503,0,0,0,0,503,0,0,0,0,503,0,0,0,0,503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,0,496,497,0,491,0,0,0,0,491,0,496,497,0,491,0,0,504,505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,492,0,498,499,0,492,0,0,0,0,492,0,498,499,0,492,0,0,506,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,384,0,0,0,0,500,501,0,0,0,0,0,0,0,386,500,501,0,0,0,0,508,509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_temple BREAK 0 BREAK 1,7,1407,830.05,2,3,act4s3,225,430 BREAK 2,27,131,762,3 BREAK 3,27,1304,316,3 BREAK 4,27,322,249,3 BREAK 5,28,1424,278,36';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_desertSound');
		if (!actions[44]) {
			++count;
			holder.ground.attachMovie('templedoor', 'templedoor', count);
			holder.ground.templedoor._x = 720;
			holder.ground.templedoor._y = 864;
		}
		++count;
		holder.nohtobjects.attachMovie('turnstone', 'stone1', count);
		holder.nohtobjects.stone1._x = 980;
		holder.nohtobjects.stone1._y = 864;
		holder.nohtobjects.stone1.myid = 1;
		++count;
		holder.nohtobjects.attachMovie('turnstone', 'stone2', count);
		holder.nohtobjects.stone2._x = 1060;
		holder.nohtobjects.stone2._y = 864;
		holder.nohtobjects.stone2.myid = 2;
		++count;
		holder.nohtobjects.attachMovie('turnstone', 'stone3', count);
		holder.nohtobjects.stone3._x = 1140;
		holder.nohtobjects.stone3._y = 864;
		holder.nohtobjects.stone3.myid = 3;
		onEnterFrame = function () {
			if (holder.player._x < 700) {
				givemedal(21);
			}
			if (stonepos1 == actions[41] and stonepos2 == actions[42] and stonepos3 == actions[43]) {
				actions[44] = true;
				holder.ground.templedoor.play();
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 352 {
		allmap = '48 BREAK 456 BREAK 60 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,138,138,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,126,0,0,0,0,0,0,0,0,0,0,0,0,0,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,0,0,0,0,0,0,0,0,0,0,0,0,0,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,124,125,125,125,126,0,0,0,0,0,0,0,0,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,127,132,132,132,128,0,0,0,0,0,0,0,0,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,127,132,132,132,128,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,406,0,0,431,432,432,433,0,485,486,486,486,486,487,485,486,486,486,486,487,485,486,486,486,486,487,485,486,486,486,486,487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,407,0,0,431,430,428,433,0,488,484,489,489,489,490,488,489,489,489,489,490,488,489,489,489,489,490,488,489,489,489,484,490,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,386,384,384,0,0,0,408,384,385,425,426,429,427,386,488,489,489,489,489,490,488,489,489,489,489,490,488,489,489,489,489,490,488,489,489,489,489,490,203,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_bazaar BREAK 4 BREAK 1,3,-9,377.05,1,100,act4s4,1870,470 BREAK 2,25,324,475,10 BREAK 3,7,561,449,1,2,act4borderh1,340,320';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_desertSound');
		++count;
		holder.nohtobjects.attachMovie('act4_emptyhover', 'emptyhover', count);
		holder.nohtobjects.emptyhover._x = 1586;
		holder.nohtobjects.emptyhover._y = 544;
		custarr = [2, 8, 1425, 474, 'alien1', 6, 'Well met@ traveler. I am Xelno Meehi@', 'yes. You need to cross the Wastes of', 'Tr\'Ingan? Perilous journey@ yes. Border', 'guards and countless Vorti flies@ yes.', 'You may use my vessel here if you', 'take this...', '					', '...precious package across the border.', 'Smuggler@ Xelno Meehi? Nonsense!'];
		++count;
		holder.objects.attachMovie('objects', 'objecta', count);
		holder.objects.objecta._x = custarr[2];
		holder.objects.objecta._y = custarr[3];
		holder.objects.objecta.specarr = new Array();
		holder.objects.objecta.specarr = custarr;
		onEnterFrame = function () {
			if (holder.player.hitTest(holder.objects.objecta) and (Key.isDown(40) or Key.isDown(83))) {
				actions[25] = true;
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 353 {
		function createEnemies() {
			if (ticktock % 30 == 0 and ticktock < 1500) {
				rnd = random(100);
				if (rnd > 65) {
					raceAttachHover(random(stageheight));
				}
			}
			if (ticktock == 30) {
				raceAttachFlyer(240);
			} else {
				if (ticktock == 35) {
					raceAttachFlyer(210);
					raceAttachFlyer(270);
				} else {
					if (ticktock == 40) {
						raceAttachFlyer(180);
						raceAttachFlyer(300);
					} else {
						if (ticktock == 45) {
							raceAttachFlyer(150);
							raceAttachFlyer(330);
						} else {
							if (ticktock == 90) {
								raceAttachFlyer(240);
							} else {
								if (ticktock == 95) {
									raceAttachFlyer(200);
								} else {
									if (ticktock == 100) {
										raceAttachFlyer(160);
									} else {
										if (ticktock == 105) {
											raceAttachFlyer(120);
										} else {
											if (ticktock == 110) {
												raceAttachFlyer(160);
											} else {
												if (ticktock == 115) {
													raceAttachFlyer(200);
												} else {
													if (ticktock == 120) {
														raceAttachFlyer(240);
													} else {
														if (ticktock == 125) {
															raceAttachFlyer(280);
														} else {
															if (ticktock == 130) {
																raceAttachFlyer(320);
															} else {
																if (ticktock == 135) {
																	raceAttachFlyer(360);
																} else {
																	if (ticktock == 140) {
																		raceAttachFlyer(320);
																	} else {
																		if (ticktock == 145) {
																			raceAttachFlyer(280);
																		} else {
																			if (ticktock == 190) {
																				raceAttachFlyer(240);
																				raceAttachFlyer(200);
																				raceAttachFlyer(280);
																			} else {
																				if (ticktock == 230) {
																					raceAttachFlyer(50);
																					raceAttachFlyer(90);
																					raceAttachFlyer(130);
																					raceAttachFlyer(430);
																					raceAttachFlyer(380);
																					raceAttachFlyer(330);
																				} else {
																					if (ticktock == 270) {
																						raceAttachFlyer(240);
																						raceAttachFlyer(200);
																						raceAttachFlyer(280);
																					} else {
																						if (ticktock == 275) {
																							raceAttachFlyer(240);
																							raceAttachFlyer(200);
																							raceAttachFlyer(280);
																						} else {
																							if (ticktock == 300) {
																								raceAttachFlyer(240);
																							} else {
																								if (ticktock == 305) {
																									raceAttachFlyer(210);
																									raceAttachFlyer(270);
																								} else {
																									if (ticktock == 310) {
																										raceAttachFlyer(180);
																										raceAttachFlyer(300);
																									} else {
																										if (ticktock == 315) {
																											raceAttachFlyer(150);
																											raceAttachFlyer(330);
																										}
																									}
																								}
																							}
																						}
																					}
																				}
																			}
																		}
																	}
																}
															}
														}
													}
												}
											}
										}
									}
								}
							}
						}
					}
				}
			}
			if (ticktock == 305) {
				raceAttachFlyer(240);
			} else {
				if (ticktock == 310) {
					raceAttachFlyer(210);
					raceAttachFlyer(270);
				} else {
					if (ticktock == 315) {
						raceAttachFlyer(180);
						raceAttachFlyer(300);
					} else {
						if (ticktock == 320) {
							raceAttachFlyer(150);
							raceAttachFlyer(330);
						} else {
							if (ticktock == 400) {
								raceAttachFlyer(240);
							} else {
								if (ticktock == 405) {
									raceAttachFlyer(200);
								} else {
									if (ticktock == 410) {
										raceAttachFlyer(160);
									} else {
										if (ticktock == 415) {
											raceAttachFlyer(120);
										} else {
											if (ticktock == 420) {
												raceAttachFlyer(160);
											} else {
												if (ticktock == 425) {
													raceAttachFlyer(200);
												} else {
													if (ticktock == 430) {
														raceAttachFlyer(240);
													} else {
														if (ticktock == 435) {
															raceAttachFlyer(280);
														} else {
															if (ticktock == 440) {
																raceAttachFlyer(320);
															} else {
																if (ticktock == 445) {
																	raceAttachFlyer(360);
																} else {
																	if (ticktock == 450) {
																		raceAttachFlyer(320);
																	} else {
																		if (ticktock == 455) {
																			raceAttachFlyer(280);
																		} else {
																			if (ticktock == 550) {
																				raceAttachFlyer(240);
																				raceAttachFlyer(200);
																				raceAttachFlyer(280);
																			} else {
																				if (ticktock == 600) {
																					raceAttachFlyer(50);
																					raceAttachFlyer(90);
																					raceAttachFlyer(130);
																					raceAttachFlyer(430);
																					raceAttachFlyer(380);
																					raceAttachFlyer(330);
																				} else {
																					if (ticktock == 620) {
																						raceAttachFlyer(240);
																						raceAttachFlyer(200);
																						raceAttachFlyer(280);
																					} else {
																						if (ticktock == 640) {
																							raceAttachFlyer(50);
																							raceAttachFlyer(90);
																							raceAttachFlyer(130);
																							raceAttachFlyer(430);
																							raceAttachFlyer(380);
																							raceAttachFlyer(330);
																						} else {
																							if (ticktock == 680) {
																								raceAttachFlyer(240);
																								raceAttachFlyer(200);
																								raceAttachFlyer(280);
																							} else {
																								if (ticktock == 720) {
																									raceAttachFlyer(50);
																									raceAttachFlyer(90);
																									raceAttachFlyer(130);
																									raceAttachFlyer(430);
																									raceAttachFlyer(380);
																									raceAttachFlyer(330);
																								} else {
																									if (ticktock == 760) {
																										raceAttachFlyer(240);
																										raceAttachFlyer(200);
																										raceAttachFlyer(280);
																									} else {
																										if (ticktock == 800) {
																											raceAttachFlyer(50);
																											raceAttachFlyer(90);
																											raceAttachFlyer(130);
																											raceAttachFlyer(430);
																											raceAttachFlyer(380);
																											raceAttachFlyer(330);
																										} else {
																											if (ticktock > 800 and ticktock < 1000) {
																												if (ticktock % 15 == 0) {
																													raceAttachFlyer(random(stageheight));
																												}
																											} else {
																												if (ticktock > 1000 and ticktock < 1200) {
																													if (ticktock % 10 == 0) {
																														raceAttachFlyer(random(stageheight));
																													}
																												} else {
																													if (ticktock > 1200 and ticktock < 1300) {
																														if (ticktock % 5 == 0) {
																															raceAttachFlyer(random(stageheight));
																														}
																													} else {
																														if (ticktock == 1400) {
																															raceAttachFlyer(240);
																														} else {
																															if (ticktock == 1405) {
																																raceAttachFlyer(200);
																															} else {
																																if (ticktock == 1410) {
																																	raceAttachFlyer(160);
																																} else {
																																	if (ticktock == 1415) {
																																		raceAttachFlyer(120);
																																	} else {
																																		if (ticktock == 1420) {
																																			raceAttachFlyer(160);
																																		} else {
																																			if (ticktock == 1425) {
																																				raceAttachFlyer(200);
																																			} else {
																																				if (ticktock == 1430) {
																																					raceAttachFlyer(240);
																																				} else {
																																					if (ticktock == 1435) {
																																						raceAttachFlyer(280);
																																					} else {
																																						if (ticktock == 1440) {
																																							raceAttachFlyer(320);
																																						} else {
																																							if (ticktock == 1445) {
																																								raceAttachFlyer(360);
																																							} else {
																																								if (ticktock == 1450) {
																																									raceAttachFlyer(320);
																																								} else {
																																									if (ticktock == 1455) {
																																										raceAttachFlyer(280);
																																									} else {
																																										if (ticktock == 1460) {
																																											raceAttachFlyer(240);
																																										} else {
																																											if (ticktock == 1465) {
																																												raceAttachFlyer(200);
																																											} else {
																																												if (ticktock == 1470) {
																																													raceAttachFlyer(160);
																																												} else {
																																													if (ticktock == 1475) {
																																														raceAttachFlyer(120);
																																													} else {
																																														if (ticktock == 1480) {
																																															raceAttachFlyer(160);
																																														} else {
																																															if (ticktock == 1485) {
																																																raceAttachFlyer(200);
																																															} else {
																																																if (ticktock == 1490) {
																																																	raceAttachFlyer(240);
																																																} else {
																																																	if (ticktock == 1495) {
																																																		raceAttachFlyer(280);
																																																	} else {
																																																		if (ticktock == 1500) {
																																																			raceAttachFlyer(320);
																																																		} else {
																																																			if (ticktock == 1505) {
																																																				raceAttachFlyer(360);
																																																			} else {
																																																				if (ticktock == 1510) {
																																																					raceAttachFlyer(320);
																																																				} else {
																																																					if (ticktock == 1515) {
																																																						raceAttachFlyer(280);
																																																					} else {
																																																						if (ticktock > 1700 and !dead) {
																																																							if (ticktock == 1701) {
																																																								givemedal(15);
																																																								if (!raceshotsfired) {
																																																									givemedal(16);
																																																								}
																																																							}
																																																							racecompleted = true;
																																																						}
																																																					}
																																																				}
																																																			}
																																																		}
																																																	}
																																																}
																																															}
																																														}
																																													}
																																												}
																																											}
																																										}
																																									}
																																								}
																																							}
																																						}
																																					}
																																				}
																																			}
																																		}
																																	}
																																}
																															}
																														}
																													}
																												}
																											}
																										}
																									}
																								}
																							}
																						}
																					}
																				}
																			}
																		}
																	}
																}
															}
														}
													}
												}
											}
										}
									}
								}
							}
						}
					}
				}
			}
		}
		function raceKillHero() {
			if (!dead) {
				playsound('raceexplosion1Sound');
			}
			holder.hero.gotoAndStop(2);
			dead = true;
			if (upadjusting) {
				yspeed = 0;
			}
			if (rightadjusting) {
				xspeed = 0;
			}
			raceExplosion(holder.hero._x, holder.hero._y);
		}
		function raceMovement() {
			if (!dead) {
				if (ticktock % 5 == 0) {
					++count;
					attachMovie('act4_smoke', 'smoke' + count, count);
					_root['smoke' + count]._x = holder.hero._x - 45;
					_root['smoke' + count]._y = holder.hero._y - 16;
				}
			}
			if (!dead and !racecompleted) {
				if (Key.isDown(32)) {
					holder.hero.float.shoot.play();
					raceshotsfired = true;
				}
				if (Key.isDown(39) or Key.isDown(68)) {
					if (xspeed < 0) {
						xspeed *= changefriction;
					}
					xspeed += acc;
				}
				if (Key.isDown(37) or Key.isDown(65)) {
					if (xspeed > 0) {
						xspeed *= changefriction;
					}
					xspeed -= acc;
				}
				xspeed *= friction;
				holder.hero._x += xspeed;
				if (holder.hero._x > stagewidth * 0.9) {
					holder.hero._x -= sidefriction * (holder.hero._x - stagewidth * 0.9);
					rightadjusting = true;
				} else {
					if (holder.hero._x < stagewidth * 0.1) {
						holder.hero._x += sidefriction * (stagewidth * 0.1 - holder.hero._x);
						rightadjusting = false;
					} else {
						rightadjusting = false;
					}
				}
				if (Key.isDown(38) or Key.isDown(87)) {
					if (yspeed > 0) {
						yspeed *= changefriction;
					}
					yspeed -= acc;
				}
				if (Key.isDown(40) or Key.isDown(83)) {
					if (yspeed < 0) {
						yspeed *= changefriction;
					}
					yspeed += acc;
				}
				holder.hero._y += yspeed;
				yspeed *= friction;
				if (holder.hero._y > stageheight * 0.9) {
					holder.hero._y -= sidefriction * (holder.hero._y - stageheight * 0.9);
					upadjusting = false;
				} else {
					if (holder.hero._y < stageheight * 0.15) {
						holder.hero._y += sidefriction * (stageheight * 0.15 - holder.hero._y);
						upadjusting = true;
					} else {
						upadjusting = false;
					}
				}
			} else {
				if (dead) {
					yspeed += 0.1;
					xspeed -= 0.7;
					holder.hero._x += xspeed;
					holder.hero._y += yspeed;
					if (xspeed < -14) {
						xspeed = -14;
					}
					if (yspeed > 10) {
						yspeed = 10;
					}
					++deathcount;
					if (deathcount == 30) {
						++count;
						attachMovie('act4_racerestart', 'racerestart', count);
					}
					if (deathcount > 30 and Key.isDown(32)) {
						deathshift = true;
					}
					if (deathshift) {
						_root.shift_frame('act4race', 0, 0);
					}
				} else {
					if (racecompleted) {
						holder.hero._x += (stagewidth + 100 - holder.hero._x) * 0.01;
						holder.hero._y += (stageheight / 2 - holder.hero._y) * 0.01;
						if (holder.hero._x > stagewidth + 50) {
							_root.shift_frame('act4s5', 530, 330);
						}
					}
				}
			}
		}
		function raceAttachFlyer(yy) {
			++enemycount;
			trace(enemycount);
			++count;
			holder.attachMovie('act4race_flyer', 'flyer' + count, count);
			flyerarr.push(holder['flyer' + count]);
			holder['flyer' + count]._x = stagewidth + 100;
			holder['flyer' + count]._y = yy + holder['flyer' + count]._height / 2;
			holder['flyer' + count].yspeed = 1 - random(20) / 10;
			holder['flyer' + count].ydir = 0.1 * (1 - random(2) * 2);
			holder['flyer' + count].killMe = function () {
				flyerarrlen = flyerarr.length;
				i = 0;
				while (i < flyerarrlen) {
					if (flyerarr[i] == this) {
						flyerarr.splice(i, 1);
						break;
					}
					++i;
				}
				this.removeMovieClip();
			};
			holder['flyer' + count].onEnterFrame = function () {
				if (!game_paused) {
					this._x -= flyerspeed;
					this._y += this.yspeed;
					this.yspeed += this.ydir;
					if (this.yspeed > 1 or this.yspeed < -1) {
						this.ydir *= -1;
					}
					if (shooting and this._x > holder.hero._x + 50 and this._y - 20 < holder.hero._y and this._y + 20 > holder.hero._y) {
						raceBlood(this._x, this._y - this._height / 2);
						raceMeat(this._x, this._y - this._height / 2);
						playsound('racemeat1Sound');
						this.killMe();
					}
					if (this.hitTest(holder.hero._x, holder.hero._y - 5, true) or this.hitTest(holder.hero._x, holder.hero._y - 30, true)) {
						raceBlood(this._x, this._y - this._height / 2);
						raceMeat(this._x, this._y - this._height / 2);
						raceKillHero();
						playsound('racemeat1Sound');
						this.killMe();
					}
					if (this._x < -50) {
						this.killMe();
					}
					hoverenemyarrlen = hoverenemyarr.length;
					j = 0;
					while (j < hoverenemyarrlen) {
						if (this.hitTest(hoverenemyarr[j]._x, hoverenemyarr[j]._y, true) or this.hitTest(hoverenemyarr[j]._x, hoverenemyarr[j]._y - this._height / 2, true)) {
							raceBlood(this._x, this._y);
							raceMeat(this._x, this._y - this._height / 2);
							raceExplosion(this._x, this._y);
							raceHoverBody(hoverenemyarr[j]._x, hoverenemyarr[j]._y);
							hoverenemyarr[j].killMe();
							playsound('raceexplosion1Sound');
							playsound('racemeat1Sound');
							this.killMe();
							break;
						}
						++j;
					}
				}
			};
		}
		function raceAttachHover(yy) {
			++enemycount;
			trace(enemycount);
			++count;
			holder.attachMovie('act4_hoverenemy', 'hoverenemy' + count, count);
			hoverenemyarr.push(holder['hoverenemy' + count]);
			holder['hoverenemy' + count]._x = -100;
			holder['hoverenemy' + count]._y = yy;
			holder['hoverenemy' + count].yspeed = 0;
			holder['hoverenemy' + count].acc = 0.1 + random(20) / 100;
			holder['hoverenemy' + count].maxspeed = 1.5 + random(15) / 10;
			holder['hoverenemy' + count].killMe = function () {
				hoverenemyarrlen = hoverenemyarr.length;
				i = 0;
				while (i < hoverenemyarrlen) {
					if (hoverenemyarr[i] == this) {
						hoverenemyarr.splice(i, 1);
						break;
					}
					++i;
				}
				this.removeMovieClip();
			};
			holder['hoverenemy' + count].onEnterFrame = function () {
				if (!game_paused) {
					if (ticktock % 5 == 0) {
						++count;
						holder.attachMovie('act4_smoke', 'smoke' + count, count);
						holder['smoke' + count]._x = this._x - 45;
						holder['smoke' + count]._y = this._y - 16;
					}
					this._x += hoverenemyspeed;
					if (shooting and this._x > holder.hero._x + 50 and this._y - 20 < holder.hero._y and this._y + 20 > holder.hero._y) {
						raceExplosion(this._x, this._y);
						raceHoverBody(this._x, this._y);
						playsound('raceexplosion1Sound');
						this.killMe();
					}
					if (this._y < holder.hero._y and this.yspeed < this.maxspeed) {
						this.yspeed += this.acc;
					} else {
						if (this._y > holder.hero._y and this.yspeed > -this.maxspeed) {
							this.yspeed -= this.acc;
						}
					}
					this._y += this.yspeed;
					if (this.hitTest(holder.hero._x, holder.hero._y - 5, true) or this.hitTest(holder.hero._x, holder.hero._y - 30, true)) {
						raceExplosion(this._x, this._y);
						raceHoverBody(this._x, this._y);
						raceKillHero();
						playsound('raceexplosion1Sound');
						this.killMe();
					}
					if (this._x > stagewidth + 100) {
						this.killMe();
					}
				}
			};
		}
		function raceBlood(xx, yy) {
			++count;
			_root.createEmptyMovieClip('bloodgen' + count, count);
			_root['bloodgen' + count].num = 10;
			_root['bloodgen' + count]._x = xx;
			_root['bloodgen' + count].onEnterFrame = function () {
				if (!game_paused) {
					this._x -= flyerspeed;
					this._y += flyerspeed;
					this.num -= 1;
					if (this.num > 0) {
						if (this.num % 1 == 0) {
							++_root.count;
							holder.attachMovie('blood', 'blood' + _root.count, _root.count);
							holder['blood' + _root.count]._x = this._x + (random(20) / 10) * _root.tilesize - _root.tilesize;
							holder['blood' + _root.count]._y = yy - random(64);
						}
					} else {
						this.removeMovieClip();
					}
				}
			};
		}
		function raceHoverBody(xx, yy) {
			++count;
			holder.attachMovie('act4_hoverbody', 'body' + count, count);
			holder['body' + count]._x = xx;
			holder['body' + count]._y = yy;
			holder['body' + count].speed = 0;
			holder['body' + count].acc = 0.5 - random(30) / 100;
			holder['body' + count].onEnterFrame = function () {
				this.speed -= this.acc;
				this._x += this.speed;
				this._y -= this.speed;
				if (this._y > this.stageheight + 100) {
					this.removeMovieClip();
				}
			};
		}
		function raceMeat(xx, yy) {
			meatcount = 5 + random(6);
			i = 0;
			while (i < meatcount) {
				++count;
				holder.attachMovie('act4_meatchunks', 'meat' + count, count);
				holder['meat' + count]._x = xx;
				holder['meat' + count]._y = yy;
				holder['meat' + count].yspeed = 2 - random(200) / 10;
				holder['meat' + count].xspeed = 5 - random(100) / 10;
				holder['meat' + count].gotoAndStop(random(holder['meat' + count]._totalframes) + 1);
				holder['meat' + count].onEnterFrame = function () {
					if (!game_paused) {
						this.yspeed += 1;
						this._x += this.xspeed;
						this._y += this.yspeed;
						if (this._y > stageheight + 100) {
							this.removeMovieClip();
						}
					}
				};
				++i;
			}
		}
		function raceExplosion(xx, yy) {
			++count;
			_root.createEmptyMovieClip('bloodgen' + count, count);
			_root['bloodgen' + count].num = 10;
			_root['bloodgen' + count]._x = xx;
			_root['bloodgen' + count].onEnterFrame = function () {
				if (!game_paused) {
					this._x -= flyerspeed;
					this._y += flyerspeed;
					this.num -= 1;
					if (this.num > 0) {
						if (this.num % 1 == 0) {
							++_root.count;
							holder.attachMovie('act4_explosion', 'blood' + _root.count, _root.count);
							holder['blood' + _root.count]._x = this._x + (random(20) / 10) * _root.tilesize - _root.tilesize;
							holder['blood' + _root.count]._y = yy - random(64);
						}
					} else {
						this.removeMovieClip();
					}
				}
			};
		}
		xspeed = 0;
		yspeed = 0;
		acc = 1.5;
		friction = 0.9;
		changefriction = 0.5;
		sidefriction = 0.2;
		dead = false;
		flyerspeed = 7;
		hoverenemyspeed = 5;
		ticktock = 0;
		racecompleted = false;
		deathcount = 0;
		deathshift = false;
		raceshotsfired = false;
		flyerarr = [];
		hoverenemyarr = [];
		enemycount = 0;
		++count;
		attachMovie('act4_bg', 'bg', count);
		++count;
		attachMovie('act4race_mountains', 'bg2', count);
		++count;
		_root.createEmptyMovieClip('holder', count);
		++count;
		attachMovie('act4_progress', 'progress', count);
		++count;
		attachMovie('fadein', 'fadein', count);
		++count;
		holder.attachMovie('act4_hero', 'hero', count);
		holder.hero._x = stagewidth / 2;
		holder.hero._y = stageheight / 2;
		if (actions[87]) {
			++count;
			attachMovie('act4_skiprace', 'skiprace', count);
			skiprace._x = 275;
			skiprace._y = 460;
		}
		shiftx = false;
		music_load('zos_bossSound');
		++count;
		attachMovie('game_frame', 'game_frame', count + 10000);
		game_frame.cacheAsBitmap();
		onEnterFrame = function () {
			music_run();
			if (actions[87] and Key.isDown(88)) {
				shiftx = true;
				game_paused = true;
			}
			if (shiftx) {
				_root.shift_frame('act4s5', 530, 330);
			}
			if (!game_paused) {
				++ticktock;
				open_menu();
				createEnemies();
				raceMovement();
			}
		};
		onMouseDown = function () {
			raceAttachFlyer(random(stageheight));
			raceAttachHover(random(stageheight));
		};
	}
	frame 354 {
		allmap = '532 BREAK 333 BREAK 60 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,138,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,138,138,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,125,125,125,125,125,125,125,125,125,125,125,125,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,132,132,135,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,125,125,125,125,125,125,125,125,125,125,126,124,125,125,125,125,125,125,136,132,132,132,132,132,132,132,132,132,132,132,132,132,135,125,125,125,125,125,125,125,125,125,125,125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,128,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,0,0,0,0,0,0,0,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,128,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,0,0,0,0,0,0,0,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,128,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,485,486,486,486,486,487,485,486,486,486,486,487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,431,432,433,0,0,0,488,484,489,489,489,490,488,489,489,489,484,490,0,0,0,0,0,0,0,0,0,0,446,447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,431,432,432,433,431,430,433,0,0,0,488,489,489,489,489,490,488,489,489,489,489,490,0,485,486,486,487,0,0,0,0,0,448,449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,431,432,432,428,431,432,433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,488,489,489,490,0,0,0,0,0,448,449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,426,426,429,425,426,427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,488,489,489,490,0,0,0,0,0,450,451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,440,440,440,440,440,440,440,440,440,440,440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,441,441,441,441,441,441,441,441,441,441,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_bazaar BREAK 4 BREAK 1,25,1647,339.1,10 BREAK 2,4,589,345.1 BREAK 3,8,704,347.1,alien2,7,Xelno Meehi is deeply grateful for your,services.,					,(This will sell for thousands..!),null,null BREAK 4,3,1929,234.05,1,100,act4s6,50,330 BREAK 5,7,816,319.05,1,3,act4s5h1,335,340';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_desertSound');
		actions[87] = true;
		game_paused = false;
		++count;
		holder.nohtobjects.attachMovie('act4_emptyhover2', 'emptyhover', count);
		holder.nohtobjects.emptyhover._x = 452;
		holder.nohtobjects.emptyhover._y = 352;
		++count;
		holder.nohtobjects.attachMovie('levelshifter', 'diatrigger1', count);
		holder.nohtobjects.diatrigger1._x = 1100;
		holder.nohtobjects.diatrigger1._y = 288;
		holder.nohtobjects.diatrigger1._width = 30;
		holder.nohtobjects.diatrigger1._height = 100;
		holder.nohtobjects.diatrigger1.onEnterFrame = function () {
			if (!actions[45] and this.hitTest(holder.player)) {
				mesarr = new Array();
				mesarr[0] = 'Outlander, where are you going? The';
				mesarr[1] = 'main temple of the Order of Welauro';
				mesarr[2] = 'lies that way. Last I heard the priests';
				mesarr[3] = 'were preparing a horrific ritual';
				mesarr[4] = 'sacrifice... There is nothing but death';
				mesarr[5] = 'there for you.';
				_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'alien2');
				actions[45] = true;
			}
		};
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 355 {
		allmap = '42 BREAK 337 BREAK 50 BREAK 25 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,125,125,125,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,125,125,125,125,125,125,125,125,125,125,125,136,132,132,132,135,125,125,125,125,125,125,125,125,125,125,125,125,125,126,0,0,0,0,0,0,0,124,125,125,125,125,125,125,125,125,125,125,125,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,0,0,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,0,0,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,0,0,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,0,0,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,0,0,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,133,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,131,0,0,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,135,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,126,0,0,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,0,0,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,0,0,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,132 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,446,447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,446,447,0,0,0,448,449,0,0,446,447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,446,447,0,0,0,0,0,0,0,0,0,448,449,0,0,0,448,449,0,0,448,449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,449,0,0,0,0,0,0,0,0,0,448,449,0,0,0,448,449,0,0,450,451,0,0,0,0,0,0,0,0,0,446,447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,449,0,0,0,0,0,0,0,0,0,450,451,0,0,0,450,449,0,0,0,0,0,0,0,0,0,0,0,0,0,450,451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,450,451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,431,432,432,432,432,432,433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,431,430,432,432,432,430,433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,431,432,432,428,432,432,433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,426,426,429,426,426,427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_bazaar BREAK 4 BREAK 1,26,253,344.1,3 BREAK 2,26,441,315,3 BREAK 3,24,304,70,3 BREAK 4,24,813,43,3 BREAK 5,26,784,337,3 BREAK 6,26,1351,333,3 BREAK 7,3,-10,249,1,100,act4s5,1870,330 BREAK 8,7,305,675,1,2,act4s6h1,365,370 BREAK 9,3,1606,205,1,100,act4jumpy,50,560';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_desertSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 356 {
		allmap = '50 BREAK 556 BREAK 60 BREAK 25 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,132,128,0,0,0,0,0,0,0,127,132,128,0,0,0,0,0,0,0,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,132,128,0,0,0,0,0,0,0,127,132,128,0,0,0,0,0,0,0,0,0,0,0,0,129,130,130,130,130,130,130,130,134,132,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,132,128,0,0,0,0,0,0,0,127,132,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,132,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,132,128,0,0,0,0,0,0,0,127,132,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,132,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,132,128,0,0,0,0,0,0,0,127,132,135,125,125,125,125,125,125,125,126,0,0,0,0,0,0,0,0,0,124,125,125,136,132,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,132,128,0,0,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,128,0,0,0,0,0,0,0,0,0,127,132,132,132,132,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,132,128,0,0,0,0,0,0,0,127,132,133,130,130,130,130,130,134,132,128,0,0,0,0,0,0,0,0,0,127,132,132,132,133,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,132,128,0,0,0,0,0,0,0,127,132,128,0,0,0,0,0,127,132,128,0,0,0,0,0,0,0,0,0,127,132,132,132,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,132,128,0,0,0,0,0,0,0,127,132,128,0,0,0,0,0,127,132,128,0,0,0,0,0,0,0,0,0,127,132,133,130,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,132,128,0,0,0,0,0,0,0,127,132,128,0,0,0,0,0,127,132,128,0,0,0,0,0,0,0,124,125,136,132,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,130,131,0,0,124,125,125,125,125,136,132,128,0,0,0,0,0,127,132,128,0,0,0,0,0,0,0,129,130,134,132,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,132,132,132,132,132,132,128,0,0,0,0,0,127,132,128,0,0,0,0,0,0,0,0,0,127,132,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,130,130,130,130,130,130,131,0,0,0,0,0,127,132,135,125,126,0,0,0,0,0,0,0,127,132,128,0,124,125,125,125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,132,133,130,131,0,0,0,0,0,0,0,127,132,128,0,127,132,132,132,132,132,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,132,128,0,0,0,0,0,0,0,0,0,127,132,128,0,127,132,132,132,132,132,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,132,128,0,0,0,0,0,0,0,0,0,127,132,128,0,127,132,132,132,132,132,132,0,0,0,0,0,0,0,0,0,0,0,124,125,125,125,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,132,128,0,0,0,0,0,0,0,0,0,127,132,128,0,127,132,132,132,132,132,132,0,0,0,0,0,0,0,0,0,0,0,127,132,132,132,128,0,0,0,0,0,0,124,125,125,125,125,125,126,0,0,0,0,0,0,0,0,127,132,128,0,0,0,0,0,0,0,0,0,127,132,128,0,127,132,132,132,132,132,132,125,125,125,125,125,126,0,0,0,0,0,129,130,130,130,131,0,0,0,0,0,0,127,132,132,132,132,132,128,0,0,0,0,0,0,0,0,129,130,131,0,0,0,0,0,0,0,0,0,129,130,131,0,127,132,132,132,132,132,132,132,132,132,132,132,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,130,130,130,130,130,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,132,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,132,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,132,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,132,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,132,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,132,132,132,132,132,132 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,446,447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,121,122,0,0,0,448,449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,118,0,0,0,448,449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,118,0,0,0,450,451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,446,447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,121,121,121,122,0,120,121,121,121,121,121,121,121,121,121,122,0,119,0,0,0,0,0,0,0,0,0,0,0,448,449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,446,447,0,0,0,0,0,119,0,0,0,118,0,119,0,0,0,0,0,0,0,0,0,118,0,119,0,0,0,0,0,0,0,0,0,0,0,448,449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,450,451,0,0,0,0,0,119,0,0,0,118,0,119,0,0,0,0,0,0,0,0,0,118,0,119,0,0,0,0,0,0,0,0,0,0,0,450,451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,118,0,119,0,0,0,0,0,0,0,0,0,118,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,127,121,126,0,0,0,129,124,128,0,0,0,127,121,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,118,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,118,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,118,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,124,124,124,124,124,124,124,124,124,125,0,123,124,124,124,124,124,124,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_bazaar BREAK 4 BREAK 1,26,879,314.05,3 BREAK 2,24,1434,776.05,3 BREAK 4,26,1757,377.1,3 BREAK 6,26,1313,385,3 BREAK 7,3,1927,290,1,100,act4s7,50,850 BREAK 8,2,1054,119,61,5 BREAK 9,2,1161,120,62,5 BREAK 10,2,1217,116,63,7 BREAK 11,2,1112,116,64,7 BREAK 12,3,-10,475,1,100,act4s6,1550,330';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_desertSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 357 {
		allmap = '49 BREAK 840 BREAK 50 BREAK 30 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,141,141,141,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,126,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,473,474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,475,476,477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,466,489,489,489,466,487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,473,474,0,0,0,472,473,474,0,0,467,489,489,489,467,490,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,475,476,477,0,0,0,475,476,477,0,0,468,489,489,489,468,490,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,466,464,0,465,466,464,0,465,466,464,458,459,459,459,459,459,459,459,459,0,0,0,0,0,0,0,0,0,0,0,466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,467,0,0,0,467,0,458,459,459,459,459,456,459,456,459,0,0,409,410,411,412,0,0,0,0,0,467,0,0,466,0,0,0,0,0,0,0,0,0,466,0,0,0,0,0,0,467,0,0,0,467,0,0,0,467,0,458,459,478,479,459,457,459,457,459,0,0,413,414,415,416,0,0,0,0,0,467,0,0,467,0,0,496,497,0,0,466,0,0,467,0,0,0,0,0,0,467,0,0,0,467,0,0,0,467,0,458,459,480,481,459,459,459,459,459,0,0,417,418,419,420,0,0,0,0,0,467,0,0,467,0,0,498,499,0,0,467,0,0,467,0,0,0,0,0,0,468,0,384,385,468,0,0,0,468,384,452,453,482,483,453,453,453,453,453,0,0,421,422,423,424,0,0,0,0,385,468,0,0,468,386,0,500,501,0,0,468,0,0,468,0,386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_bazaar BREAK 4 BREAK 1,24,881,656.05,3 BREAK 2,7,1407,798,2,4,act4s8,160,870 BREAK 4,3,-10,600.05,1,100,act4jumpy,1860,380 BREAK 5,2,1298,633,76,1 BREAK 6,2,1489,504,77,1 BREAK 7,2,1359,502,78,9 BREAK 8,2,1571,631,79,9';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_desertSound');
		if (actions[46]) {
			custarr = [3, 8, 1232, 828.05, 'woman', 2, 'You are a hero.'];
			++count;
			holder.objects.attachMovie('objects', 'objecta', count);
			holder.objects.objecta._x = custarr[2];
			holder.objects.objecta._y = custarr[3];
			holder.objects.objecta.specarr = new Array();
			holder.objects.objecta.specarr = custarr;
			custarr = [5, 8, 1260, 828, 'man', 1, 'Thank you. I am forever in your debt.'];
			++count;
			holder.objects.attachMovie('objects', 'objectb', count);
			holder.objects.objectb._x = custarr[2];
			holder.objects.objectb._y = custarr[3];
			holder.objects.objectb.specarr = new Array();
			holder.objects.objectb.specarr = custarr;
		} else {
			++count;
			holder.objects.attachMovie('act4cryingwoman', 'woman', count);
			holder.objects.woman._x = 1232;
			holder.objects.woman._y = 832;
		}
		onEnterFrame = function () {
			if (!fadeout and !fadein and holder.player._x + xspeed > levelwidth) {
				holder.player._x -= xspeed;
				xspeed = 0;
			}
			if (holder.player._x > levelwidth) {
				holder.player._x = levelwidth;
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 358 {
		allmap = '149 BREAK 874 BREAK 40 BREAK 30 BREAK 167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,155,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,157,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,160,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,164,0,0,0,0,0,0,0,159,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,159,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,159,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,159,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,159,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,159,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,159,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,159,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,159,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,159,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,159,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,159,167,167,167,155,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,166,0,0,0,0,0,0,0,159,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,156,156,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,161,161,161,161,161,161,161,161,161,161,161,161,161,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,167,167,167,167,167,167,167,167,167,167,160,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,162,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,502,0,502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,503,0,0,0,0,0,0,0,520,521,520,521,520,521,0,0,520,521,520,521,0,0,491,0,0,493,0,0,0,493,0,0,0,493,0,0,0,0,491,0,491,0,0,0,0,0,0,0,522,523,522,523,522,523,0,0,522,523,522,523,0,0,492,62,0,494,0,0,0,494,0,0,0,494,0,0,0,0,492,0,492,0,0,0,0,0,0,0,524,525,524,525,524,525,0,0,524,525,524,525,0,518,519,63,0,495,0,0,0,495,0,0,0,495,0,120,121,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,502,0,502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,503,0,503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,491,0,491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,492,0,492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,502,0,502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,503,0,503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,491,0,491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,492,0,492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,502,0,502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,503,0,503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,491,0,491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,466,0,0,466,0,118,492,0,492,0,0,0,0,0,0,0,0,0,0,0,0,0,502,0,0,502,0,0,502,0,0,502,0,0,502,0,0,502,0,0,467,0,0,467,0,118,0,496,497,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,0,503,0,0,503,0,0,503,0,0,503,0,0,503,0,0,467,0,0,467,0,118,0,498,499,0,0,0,0,0,0,0,0,0,504,505,0,0,491,0,0,491,0,0,491,0,0,491,0,0,491,0,0,491,0,0,468,0,0,468,0,118,0,500,501,0,0,0,0,0,0,0,0,0,506,507,0,0,492,0,0,492,0,0,492,0,0,492,0,0,492,0,0,492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,508,509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_temple BREAK 0 BREAK 1,6,390,889.05,3 BREAK 2,6,555,890.05,3 BREAK 3,6,775,892.05,3 BREAK 5,3,1287,784,1,5,act4s9,50,500 BREAK 6,7,161,860.05,2,4,act4s7,1410,820 BREAK 7,2,528,252,80,2 BREAK 8,2,497,252,81,4 BREAK 9,2,91,189,82,4 BREAK 10,27,274,276,3 ';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_desertSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 359 {
		allmap = '48 BREAK 486 BREAK 40 BREAK 20 BREAK 167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,155,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,157,167,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,156,156,156,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,156,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,161,161,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,156,156,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,161,161,164,0,0,0,0,0,0,0,0,0,0,0,163,161,161,161,161,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,156,156,166,0,0,0,0,0,0,0,0,0,0,0,165,156,156,156,156,166,0,0,0,0,0,0,0,0,161,161,161,161,161,161,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,161,161,161,167,167,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,466,0,0,466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,467,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,502,0,0,0,502,0,0,0,0,0,0,0,0,467,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,0,0,503,0,0,493,0,0,0,0,0,468,0,0,468,0,0,0,0,0,0,0,0,493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,0,0,0,491,0,0,494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,492,0,0,0,492,0,0,495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,466,0,0,466,0,0,0,0,0,0,0,0,0,0,0,466,0,0,0,0,466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,467,0,0,467,0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,440,440,440,467,440,440,467,440,440,440,440,440,440,440,440,440,440,440,467,440,440,440,440,467,440,440,440,440,0,0,0,0,0,0,0,0,0,0,0,441,441,441,441,467,441,441,467,441,441,441,441,441,441,441,441,441,441,441,467,441,441,441,441,467,441,441,441,441,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_temple BREAK 0 BREAK 1,27,951,444.05,3 BREAK 2,3,-9,466.05,1,5,act4s8,1230,810 BREAK 3,3,1287,430.05,1,10,act4s10,50,850';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_desertSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 360 {
		allmap = '52 BREAK 842 BREAK 40 BREAK 30 BREAK 167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,155,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,157,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,158,0,0,0,0,163,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,164,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,158,0,0,0,0,159,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,158,0,0,0,0,159,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,158,0,0,0,0,165,156,156,156,156,156,157,167,155,156,156,156,156,156,156,156,156,166,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,159,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,159,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,159,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,159,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,159,167,160,161,161,161,161,161,161,161,161,164,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,160,161,161,161,161,161,164,0,0,0,0,159,167,167,167,167,167,167,167,167,167,167,158,0,0,0,163,161,161,161,161,161,161,161,161,162,167,167,167,167,167,167,167,167,167,167,158,0,0,0,0,165,156,156,156,156,156,156,156,156,156,156,166,0,0,0,159,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,156,156,156,156,156,156,156,156,157,167,167,156,156,156,156,156,156,156,156,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,161,161,161,161,161,161,161,161,164,0,0,0,0,0,0,0,0,0,159,167,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,167,167,167,167,167,167,167,167,158,0,0,0,0,0,0,0,0,0,159,167,167,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,162,167,167,167,167,167,167,167,167,160,161,161,161,161,161,161,161,161,161,162,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,502,0,0,502,0,0,502,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,0,503,0,0,503,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,0,0,491,0,0,491,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,504,505,0,0,0,0,0,0,0,0,0,0,492,0,0,492,0,0,492,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,506,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,508,509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,120,121,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,502,0,0,502,0,0,502,0,0,502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,503,0,0,503,0,0,503,0,0,503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,491,0,0,491,0,0,491,0,0,491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,492,0,0,492,0,0,492,0,0,492,0,0,0,0,0,466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,124,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0,0,520,521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,512,0,522,523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,468,0,0,518,519,0,524,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_temple BREAK 0 BREAK 1,3,-11,809,1,10,act4s9,1230,500 BREAK 2,7,544,443,2,3,act4s11,320,370 BREAK 3,2,1040,827.05,83,2 BREAK 4,2,1155,760.05,84,4';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_desertSound');
		oldpriestcount = 5;
		newpriestcount = 5;
		allowpriestkill = true;
		trace(actions[50]);
		trace(actions[51]);
		if (!actions[50] and !actions[51]) {
			custarr = [2, 27, 1054, 854, 3];
			++count;
			holder.objects.attachMovie('objects', 'priest1', count);
			holder.objects.priest1._x = custarr[2];
			holder.objects.priest1._y = custarr[3];
			holder.objects.priest1.specarr = new Array();
			holder.objects.priest1.specarr = custarr;
			custarr = [3, 27, 215, 492, 3];
			++count;
			holder.objects.attachMovie('objects', 'priest2', count);
			holder.objects.priest2._x = custarr[2];
			holder.objects.priest2._y = custarr[3];
			holder.objects.priest2.specarr = new Array();
			holder.objects.priest2.specarr = custarr;
			custarr = [4, 27, 467, 209, 3];
			++count;
			holder.objects.attachMovie('objects', 'priest3', count);
			holder.objects.priest3._x = custarr[2];
			holder.objects.priest3._y = custarr[3];
			holder.objects.priest3.specarr = new Array();
			holder.objects.priest3.specarr = custarr;
			custarr = [5, 27, 1063, 496, 3];
			++count;
			holder.objects.attachMovie('objects', 'priest4', count);
			holder.objects.priest4._x = custarr[2];
			holder.objects.priest4._y = custarr[3];
			holder.objects.priest4.specarr = new Array();
			holder.objects.priest4.specarr = custarr;
			custarr = [6, 27, 644, 790.05, 3];
			++count;
			holder.objects.attachMovie('objects', 'priest5', count);
			holder.objects.priest5._x = custarr[2];
			holder.objects.priest5._y = custarr[3];
			holder.objects.priest5.specarr = new Array();
			holder.objects.priest5.specarr = custarr;
		}
		holder.background.attachMovie('act4_altar', 'altar', count);
		holder.background.altar._x = 740;
		holder.background.altar._y = 800;
		if (actions[46]) {
			holder.background.altar.gotoAndStop(2);
		} else {
			holder.background.altar.stop();
		}
		++count;
		holder.background.attachMovie('turnstone', 'stone1', count);
		holder.background.stone1._x = 203;
		holder.background.stone1._y = 512;
		holder.background.stone1.myid = 1;
		++count;
		holder.background.attachMovie('turnstone', 'stone2', count);
		holder.background.stone2._x = 514;
		holder.background.stone2._y = 224;
		holder.background.stone2.myid = 2;
		++count;
		holder.background.attachMovie('turnstone', 'stone3', count);
		holder.background.stone3._x = 1054;
		holder.background.stone3._y = 512;
		holder.background.stone3.myid = 3;
		if (!actions[50]) {
			++count;
			holder.ground.attachMovie('templedoor', 'templedoor', count);
			holder.ground.templedoor._x = 784;
			holder.ground.templedoor._y = 480;
		}
		++count;
		holder.nohtobjects.attachMovie('essences', 'essences', count);
		holder.nohtobjects.essences._x = 672;
		holder.nohtobjects.essences._y = 448;
		holder.nohtobjects.essences.id = 21;
		holder.nohtobjects.essences.gotoAndStop(4);
		onEnterFrame = function () {
			if (holder.background.altar.hitTest(holder.player) and actions[51] and !actions[46]) {
				giveExclamation();
				if (Key.isDown(40) or Key.isDown(83)) {
					actions[46] = true;
					holder.background.altar.gotoAndStop(2);
					custarr = [7, 8, 740, 800, 'man', 1, 'Th-thank you... They were going to kill', 'me! They were going to spill my blood', 'all over the altar... I heard them', 'whispering... I think some symbols would', 'be revealed to them if they did it?'];
					++count;
					holder.objects.attachMovie('objects', 'objecta', count);
					holder.objects.objecta._x = custarr[2];
					holder.objects.objecta._y = custarr[3];
					holder.objects.objecta.specarr = new Array();
					holder.objects.objecta.specarr = custarr;
				}
			}
			if (actions[46] and stonepos1 == actions[47] and stonepos2 == actions[48] and stonepos3 == actions[49]) {
				actions[50] = true;
				holder.ground.templedoor.play();
			}
			if (fadeout) {
				allowpriestkill = false;
			}
			if (!actions[51]) {
				newpriestcount = 0;
				hiddenpriests = 0;
				if (holder.objects.priest1) {
					++newpriestcount;
					if (holder.objects.priest1.invisiblecount > 30) {
						++hiddenpriests;
					}
				}
				if (holder.objects.priest2) {
					++newpriestcount;
					if (holder.objects.priest2.invisiblecount > 30) {
						++hiddenpriests;
					}
				}
				if (holder.objects.priest3) {
					++newpriestcount;
					if (holder.objects.priest3.invisiblecount > 30) {
						++hiddenpriests;
					}
				}
				if (holder.objects.priest4) {
					++newpriestcount;
					if (holder.objects.priest4.invisiblecount > 30) {
						++hiddenpriests;
					}
				}
				if (holder.objects.priest5) {
					++newpriestcount;
					if (holder.objects.priest5.invisiblecount > 30) {
						++hiddenpriests;
					}
				}
				if (newpriestcount < oldpriestcount) {
					if (newpriestcount == 4) {
						mesarr = new Array();
						mesarr[0] = 'For X\'o\'chthu!';
						_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'priest');
					}
					if (newpriestcount == 3) {
						mesarr = new Array();
						mesarr[0] = 'The darkness comes!';
						_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'priest');
					}
					if (newpriestcount == 2) {
						mesarr = new Array();
						mesarr[0] = 'We shall bathe in your blood!';
						_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'priest');
					}
					if (newpriestcount == 1) {
						mesarr = new Array();
						mesarr[0] = 'May the rats eat your eyes!';
						_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'priest');
					}
					if (newpriestcount == 0) {
						mesarr = new Array();
						mesarr[0] = 'X\'O\'CHTHU!';
						_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'priest');
					}
					if (allowpriestkill and (newpriestcount == 0 or newpriestcount - hiddenpriests == 0)) {
						actions[51] = true;
					}
				}
				oldpriestcount = newpriestcount;
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 361 {
		allmap = '319 BREAK 363 BREAK 20 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,138,138,138,138,138,138,138,138,138,138,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,496,497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,498,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,500,501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,458,459,459,459,459,478,479,459,459,459,459,460,0,0,0,0,0,0,0,0,458,459,459,459,459,480,481,459,459,459,459,460,0,0,0,0,0,0,0,0,452,453,455,453,453,482,483,453,453,453,453,454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_bazaar BREAK 4 BREAK 1,7,319,348.05,2,3,act4s10,545,460 BREAK 2,21,320,209.05,2,3,act4s1h1,545,360';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_desertSound');
		onEnterFrame = function () {
			if (!fadeout and !fadein and (holder.player._x + xspeed > stagewidth or holder.player._x + xspeed < 0)) {
				holder.player._x -= xspeed;
				xspeed = 0;
			}
			if (holder.player._x < 5) {
				holder.player._x = 5;
			}
			if (holder.player._x > stagewidth) {
				holder.player._x = stagewidth;
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 370 {
		allmap = '272 BREAK 359 BREAK 25 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,144,144,144,144,144,144,144,144,144,144,144,145,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,143,144,144,144,144,144,154,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,148,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,340,0,0,0,0,469,0,469,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,520,521,520,521,0,0,76,76,76,76,76,76,0,0,0,0,470,0,0,0,0,516,517,62,0,522,523,522,523,0,0,76,76,76,76,76,76,0,0,0,0,471,0,0,0,0,518,519,63,0,524,525,524,525,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_house5 BREAK 0 BREAK 1,7,274,356,1,2,act4s1,815,460';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_desertSound');
		if (actions[50] and !actions[52]) {
			actions[52] = true;
			custarr = [2, 8, 403, 378, 'alien1', 6, 'WHERE DID YOU COME FROM?!', 'Leave me alone!!!'];
			++count;
			holder.objects.attachMovie('objects', 'objecta', count);
			holder.objects.objecta._x = custarr[2];
			holder.objects.objecta._y = custarr[3];
			holder.objects.objecta.specarr = new Array();
			holder.objects.objecta.specarr = custarr;
		} else {
			custarr = [2, 8, 403, 378, 'alien1', 6, 'Is that your ship on my house?!', 'Remove it!!!'];
			++count;
			holder.objects.attachMovie('objects', 'objecta', count);
			holder.objects.objecta._x = custarr[2];
			holder.objects.objecta._y = custarr[3];
			holder.objects.objecta.specarr = new Array();
			holder.objects.objecta.specarr = custarr;
		}
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 371 {
		allmap = '366 BREAK 359 BREAK 25 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,144,144,144,144,144,144,144,144,144,144,144,144,144,145,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,143,144,144,144,144,144,154,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,148,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,469,0,469,0,0,0,76,76,76,76,0,0,0,469,0,0,520,521,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,59,62,0,522,523,0,470,0,526,527,528,0,526,527,528,0,0,0,76,76,76,76,0,0,518,519,63,0,524,525,0,471,0,529,530,531,0,529,530,531,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_house5 BREAK 0 BREAK 1,7,368,354.05,1,2,act4s2,1390,460 BREAK 2,8,183,380,alien1,6,Impaired goodwill...,Contingent liabilities...,Oh! Ahem!,Do you know where the homeless,accountant lives?,					,In a tax shelter! BREAK 3,2,688,377.05,75,10';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_desertSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 372 {
		allmap = '366 BREAK 359 BREAK 25 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,145,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,148,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,469,0,0,0,0,0,0,0,0,0,469,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,520,521,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,59,62,0,522,523,0,470,0,0,0,0,0,0,0,526,527,528,0,76,76,76,76,0,0,518,519,63,0,524,525,0,471,0,0,0,0,0,0,0,529,530,531,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_house5 BREAK 0 BREAK 2,7,369,357,1,2,act4s6,305,690 BREAK 4,21,287,337.05,2,6,act4s6,50,330 BREAK 6,2,586,379.05,58,8 BREAK 7,2,551,378.05,59,8 BREAK 8,2,145,349.05,60,9';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_desertSound');
		++count;
		holder.nohtobjects.attachMovie('act4_jon', 'jon', count);
		holder.nohtobjects.jon._x = 445;
		holder.nohtobjects.jon._y = 384;
		++count;
		holder.nohtobjects.attachMovie('act4_lily', 'lily', count);
		holder.nohtobjects.lily._x = 667;
		holder.nohtobjects.lily._y = 384;
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 373 {
		allmap = '337 BREAK 303 BREAK 20 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,144,144,144,144,144,144,145,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,148,149,149,149,149,149,149,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,470,0,387,0,76,76,76,76,76,76,76,76,76,76,76,76,0,437,439,0,471,0,388,0,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_house5 BREAK 0 BREAK 1,2,243,285.05,65,10 BREAK 2,2,273,283.05,66,10 BREAK 3,7,336,290.05,1,2,act4border,560,460';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_desertSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 374 {
		allmap = '333 BREAK 341 BREAK 20 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,144,144,144,144,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0,147,0,0,0,0,0,0,143,144,144,144,144,144,144,144,154,0,0,0,0,147,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,148,149,149,149,149,149,149,149,149,149,149,149,149,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,469,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,470,0,0,0,401,402,0,76,76,76,76,76,76,0,0,0,437,438,439,0,471,0,0,0,403,404,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_house5 BREAK 0 BREAK 1,7,337,322.1,1,2,act4s5,815,330 BREAK 2,8,437,346.05,alien1,6,I can\'t talk to you right now@ I\'m trying,to figure out how to hide and reveal,illegal goods!,...oops! I didn\'t say anything!,null,null,null BREAK 3,2,210,314.05,67,2 BREAK 4,2,241,316.05,68,4 BREAK 5,2,273,316.05,69,10';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_desertSound');
		++count;
		holder.nohtobjects.attachMovie('computer', 'computer', count);
		holder.nohtobjects.computer._x = 160;
		holder.nohtobjects.computer._y = 352;
		holder.nohtobjects.computer.myActions = function () {
			if (this.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true)) {
				_root.giveExclamation();
				if (Key.isDown(40) or Key.isDown(83)) {
					if (_root.msgbox._visible == false and _root.msgbreather == 0) {
						playsound('computer1Sound');
						potionsowned[8] = 1;
						mesarr = new Array();
						mesarr[0] = 'Super Secret Notes - do not read!';
						mesarr[1] = 'Reveal recipe: Olian Sightbean, Frezian';
						mesarr[2] = 'Glaze, Vivrian Adamant';
						mesarr[3] = 'Conceal: Experiments with Vivrian';
						mesarr[4] = 'Adamant are unsuccesful, but seem';
						mesarr[5] = 'promising.';
						_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'computer');
					}
				}
			}
		};
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 383 {
		allmap = '881 BREAK 520 BREAK 50 BREAK 30 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,169,169,169,169,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,176,176,176,176,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,176,176,176,176,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,169,169,169,169,169,169,169,169,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,176,176,176,176,172,0,0,0,0,0,0,0,0,168,169,169,169,170,0,0,0,0,173,174,174,174,174,174,174,174,174,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,176,176,176,176,172,0,0,0,0,0,0,0,0,171,176,176,176,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,176,176,176,176,172,0,0,0,0,0,0,0,0,173,174,174,174,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,176,176,176,176,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,169,169,169,169,169,169,169,169,176,176,176,176,176,172,168,169,169,169,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,176,176,176,176,176,176,176,176,176,176,176,176,176,172,171,176,176,176,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,176,176,176,176,176,176,176,176,176,176,176,176,176,172,171,176,176,176,172,168,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,170,171,176,176,176,176,176,176,176,176,176,176,176,176,176,172,171,176,176,176,172,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,172,171,176,176,176,176,176,176,176,176,176,176,176,176,176,172,171,176,176,176,172,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,172,171,176,176,176,176,176,176,176,176,176,176,176,176,176,172,171,176,176,176,172,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,172,171,176,176,176,176,176,176,176,176,176,176,176,176,176,172,171,176,176,176,172,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,172,171,176,176,176,176,176,176,176,176,176,176,176,176,176,172,171,176,176,176,172,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,172,171,176,176,176,176,176,176,176,176 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,566,567,568,569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,570,571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,572,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,566,567,568,569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0,0,0,561,0,0,0,0,0,0,0,0,0,0,0,570,571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,562,0,0,0,0,0,0,562,0,0,0,0,0,564,565,0,0,0,0,572,573,532,533,532,0,0,0,0,0,0,0,0,534,534,533,532,0,0,0,0,0,561,0,561,0,0,0,0,0,0,562,0,0,0,0,0,0,562,0,0,0,0,566,567,568,569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,562,0,562,0,0,0,0,0,0,562,0,0,0,0,0,0,562,0,0,0,0,0,570,571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,534,534,532,0,563,0,563,0,0,532,532,0,0,563,0,0,0,0,532,533,563,532,532,0,0,0,572,573,0,533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_gas BREAK 5 BREAK 1,9,880,538.05 BREAK 2,3,1609,560,1,100,act5s1,50,335 BREAK 3,3,-10,394,1,100,act5secret1,590,180 BREAK 5,2,1184,761.05,85,1 BREAK 6,2,337,700,100,3 BREAK 7,36,880,518,2,5,select1,356,314';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_gasSound');
		military1arr = [];
		military2arr = [];
		createAcidRain();
		custarr = [8, 8, 529, 567, 'gasman', 8, 'Hey! Help me! I was making a sculpture', 'out of Vivrian Adamant and Frezian', 'Glaze, when my house filled with', 'Effluvian Gasrock fumes... Next thing I', 'know, I am invisible!'];
		++count;
		holder.objects.attachMovie('objects', 'npc' + count, count);
		holder.objects['npc' + count]._x = custarr[2];
		holder.objects['npc' + count]._y = custarr[3];
		holder.objects['npc' + count].specarr = new Array();
		holder.objects['npc' + count].specarr = custarr;
		holder.objects['npc' + count]._alpha = 5;
		inviman = holder.objects['npc' + count];
		if (!actions[55]) {
			custarr = [4, 8, 1435, 662, 'gasman', 8, 'You picked a bad time to visit. We are', 'embroiled in a civil war... These are', 'dangerous times.'];
		} else {
			custarr = [4, 8, 1435, 662, 'gasman', 8, 'The acid rain... It stopped. Maybe we', 'can negotiate a truce with Vanni now?'];
		}
		++count;
		holder.objects.attachMovie('objects', 'npc' + count, count);
		holder.objects['npc' + count]._x = custarr[2];
		holder.objects['npc' + count]._y = custarr[3];
		holder.objects['npc' + count].specarr = new Array();
		holder.objects['npc' + count].specarr = custarr;
		onEnterFrame = function () {
			if (holder.player.hitTest(inviman) and (Key.isDown(40) or Key.isDown(83))) {
				potionsowned[10] = 1;
				trace(potionsowned[10]);
			}
			runAcidRain();
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 384 {
		allmap = '180 BREAK 423 BREAK 50 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,169,169,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,176,176,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,176,176,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,176,176,172,168,169,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,176,176,172,171,176,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,169,169,169,169,176,176,176,172,171,176,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,176,176,176,176,176,176,176,172,171,176,172,168,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,170,171,176,176,176,176,176,176,176,172,171,176,172,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,172,171,176,176,176,176,176,176,176,172,171,176,172,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,172,171,176,176,176,176 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,532,533,0,0,0,0,0,0,0,0,0,0,537,538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,539,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,541,542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,566,567,568,569,0,0,0,0,0,534,532,532,0,0,535,536,0,0,535,536,0,0,0,0,0,0,543,544,545,0,0,0,0,564,565,0,0,0,543,544,545,0,0,0,0,535,536,0,0,0,0,570,571,0,0,0,0,0,0,0,0,0,0,0,537,538,0,0,537,538,0,0,0,0,0,0,546,547,548,0,0,0,566,567,568,569,0,0,546,547,548,0,0,0,0,537,538,0,0,0,0,572,573,0,0,0,0,0,0,0,0,0,0,0,539,540,0,0,539,540,0,0,0,559,0,549,550,551,552,553,0,559,0,570,571,0,0,549,550,551,552,553,0,0,0,539,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,532,0,541,542,0,0,541,542,0,0,0,560,0,554,555,556,557,558,0,560,0,572,573,532,0,554,555,556,557,558,532,533,532,541,542,0,0,532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_gas BREAK 5 BREAK 1,3,-9,307,1,100,act5s0,1550,660 BREAK 2,3,1606,381.05,1,100,act5s2,50,790 BREAK 3,7,722,519.05,1,3,act5s1h1,335,530 BREAK 4,7,1104,513.05,1,3,act5s1h2,335,530';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_gasSound');
		bf1 = true;
		bf2 = true;
		bf3 = true;
		bf4 = true;
		military1arr = [];
		military2arr = [];
		createAcidRain();
		if (!actions[55]) {
			custarr = [5, 8, 342, 541.05, 'gaswoman', 9, 'Oh@ when will the fighting end?', 'There is no hope for us...'];
		} else {
			custarr = [5, 8, 342, 541.05, 'gaswoman', 9, 'Maybe the war will end now...?'];
		}
		++count;
		holder.objects.attachMovie('objects', 'npc' + count, count);
		holder.objects['npc' + count]._x = custarr[2];
		holder.objects['npc' + count]._y = custarr[3];
		holder.objects['npc' + count].specarr = new Array();
		holder.objects['npc' + count].specarr = custarr;
		if (!actions[55]) {
			custarr = [6, 8, 881, 537.05, 'gasman', 8, 'The pollution has ruined our oxygen', 'supply@ and now we\'re running out. The', 'city of Vanni is stealing the remaining', 'oxygen@ so we fight them to survive.'];
		} else {
			custarr = [6, 8, 881, 537.05, 'gasman', 8, 'Now there\'s enough oxygen for both', 'cities. No need to fight any more.'];
		}
		++count;
		holder.objects.attachMovie('objects', 'npc' + count, count);
		holder.objects['npc' + count]._x = custarr[2];
		holder.objects['npc' + count]._y = custarr[3];
		holder.objects['npc' + count].specarr = new Array();
		holder.objects['npc' + count].specarr = custarr;
		if (!actions[55]) {
			custarr = [7, 8, 1340, 534.05, 'gaswoman', 9, 'If Vanni didn\'t exist...', 'The remaining oxygen would be enough', 'for us.'];
		} else {
			custarr = [7, 8, 1340, 534.05, 'gaswoman', 9, 'We can\'t wait to visit our friends in', 'Vanni!'];
		}
		++count;
		holder.objects.attachMovie('objects', 'npc' + count, count);
		holder.objects['npc' + count]._x = custarr[2];
		holder.objects['npc' + count]._y = custarr[3];
		holder.objects['npc' + count].specarr = new Array();
		holder.objects['npc' + count].specarr = custarr;
		onEnterFrame = function () {
			runAcidRain();
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 385 {
		allmap = '47 BREAK 775 BREAK 50 BREAK 30 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,181,181,181,181,181,181,181,181,181,0,0,0,168,169,169,169,169,169,169,169,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,176,176,176,176,176,176,176,176,0,0,0,0,0,0,0,0,0,182,183,182,183,182,183,182,183,182,183,182,183,0,0,182,183,182,183,186,187,182,183,182,183,182,183,182,183,186,187,182,183,171,176,176,176,176,176,176,176,176,169,169,169,169,169,169,169,169,170,184,185,184,185,184,185,184,185,184,185,184,185,0,0,184,185,184,185,188,189,184,185,184,185,184,185,184,185,188,189,184,185,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,172,168,169,169,169,169,169,169,169,169,170,182,183,0,0,182,183,168,169,169,169,169,169,169,169,169,169,169,169,169,169,169,170,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,172,171,176,176,176,176,176,176,176,176,172,184,185,0,0,184,185,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,172,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,172,171,176,176,176,176,176,176,176,176,172,182,183,0,0,182,183,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,172,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,172,171,176,176,176,176,176,176,176,176,172,184,185,0,0,184,185,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,172,171,176,176,176,176,176,176,176,176 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,566,567,568,569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,559,0,570,571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,572,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,574,0,0,0,0,0,0,0,0,0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,559,0,0,0,532,0,0,532,534,0,0,0,0,0,120,121,121,122,0,0,0,576,577,577,577,577,577,577,577,577,577,577,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,532,533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_gas BREAK 5 BREAK 1,3,-11,696,1,100,act5s1,1550,460 BREAK 2,3,1608,627.05,1,100,act5s3,50,690 BREAK 3,4,144,792.05 BREAK 6,3,704,942.05,10,2,act5s19,190,180';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_gasSound');
		military1arr = [];
		military2arr = [];
		if (!bf1 and !bf2 and !bf3 and !bf4) {
			givemedal(20);
		}
		bf1 = true;
		bf2 = true;
		bf3 = true;
		bf4 = true;
		createAcidRain();
		if (!actions[55]) {
			custarr = [5, 8, 989, 698.05, 'gasman', 8, 'Beyond this point lies the battlefield.', 'Things are so confused that soldiers', 'from both sides will fire at you!'];
		} else {
			custarr = [5, 8, 989, 698.05, 'gasman', 8, 'The battle still rages.', 'Be careful.'];
		}
		++count;
		holder.objects.attachMovie('objects', 'npc' + count, count);
		holder.objects['npc' + count]._x = custarr[2];
		holder.objects['npc' + count]._y = custarr[3];
		holder.objects['npc' + count].specarr = new Array();
		holder.objects['npc' + count].specarr = custarr;
		if (!actions[55]) {
			custarr = [4, 8, 413, 760.05, 'gasman', 8, 'Our route to the oxygen supply is', 'blocked. We are getting desperate.'];
		} else {
			custarr = [4, 8, 413, 760.05, 'gasman', 8, 'Ah! The air is so fresh!'];
		}
		++count;
		holder.objects.attachMovie('objects', 'npc' + count, count);
		holder.objects['npc' + count]._x = custarr[2];
		holder.objects['npc' + count]._y = custarr[3];
		holder.objects['npc' + count].specarr = new Array();
		holder.objects['npc' + count].specarr = custarr;
		onEnterFrame = function () {
			runAcidRain();
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 386 {
		allmap = '47 BREAK 684 BREAK 50 BREAK 30 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,181,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,169,169,169,169,169,169,169,170,0,0,0,0,0,0,181,181,181,181,181,181,0,0,181,181,181,181,181,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,176,176,176,176,176,176,176,172,168,169,169,169,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,176,176,176,176,176,176,176,172,171,176,176,176,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,176,176,176,176,176,176,176,172,171,176,176,176,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,176,176,176,176,176,176,176,172,171,176,176,176,172,186,187,168,169,169,169,170,186,187,168,169,169,169,170,186,187,168,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,176,176,176,176,176,176,176,176,172,171,176,176,176,172,188,189,171,176,176,176,172,188,189,171,176,176,176,172,188,189,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,172,171,176,176,176,172,186,187,171,176,176,176,172,186,187,171,176,176,176,172,186,187,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,172,171,176,176,176,172,188,189,171,176,176,176,172,188,189,171,176,176,176,172,188,189,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,574,0,0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,591,592,592,592,593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,591,592,592,592,593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,532,534,534,533,532,0,0,0,0,0,0,0,0,0,0,533,532,0,0,0,576,577,577,577,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,534,533,532,0,0,574,0,0,0,0,0,0,575,574,0,0,0,0,0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,591,592,592,592,592,592,592,593,591,592,592,592,592,592,592,593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,591,592,592,592,592,592,592,593,591,592,592,592,592,592,592,593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,576,577,577,577,577,577,577,578,576,577,577,577,577,577,577,578,534,532,0,0,0,0,532,534,532,0,0,534,0,0,0,532,534,534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_gas BREAK 5 BREAK 2,29,816,698.05,3 BREAK 3,30,1418,821.05,3 BREAK 4,3,-8,577,1,100,act5s2,1550,700 BREAK 5,3,1606,653,1,100,act5s4,50,810 BREAK 6,32,235,618';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_gasSound');
		military1arr = [];
		military2arr = [];
		bf1 = false;
		createAcidRain();
		onEnterFrame = function () {
			runAcidRain();
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 387 {
		allmap = '48 BREAK 807 BREAK 72 BREAK 30 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,202,202,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,202,202,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,202,202,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,202,202,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,170,182,183,182,183,182,183,168,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,170,182,183,182,183,182,183,168,169,169,169,169,169,169,169,169,169,169,169,169,169,170,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,172,184,185,184,185,184,185,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,172,184,185,184,185,184,185,171,176,176,176,176,176,176,176,176,176,176,176,176,176,172,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,179,169,169,169,169,169,169,180,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,179,169,169,169,169,169,169,180,176,176,176,176,176,176,176,176,176,176,176,176,176,172,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,172,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,579,579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,581,0,0,581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,581,0,0,581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,579,582,0,0,581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,582,0,0,581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,581,0,0,0,0,0,0,0,0,0,0,0,0,581,0,0,581,0,0,581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,539,540,0,0,0,0,0,0,0,0,0,0,0,0,581,0,0,581,0,0,581,0,0,0,0,0,0,0,0,579,579,0,0,582,0,0,582,0,0,582,0,0,579,579,579,0,0,0,579,0,0,0,0,579,579,0,532,533,532,0,0,0,0,0,0,0,579,579,579,0,580,579,541,542,0,580,0,0,0,579,0,0,0,532,533,532,582,579,0,582,0,579,582,0,579,0,579,579,579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_gas BREAK 5 BREAK 1,31,1649,600.05,-1 BREAK 2,30,2089,794.05,3 BREAK 3,30,1630,798.05,3 BREAK 4,30,1323,796.05,3 BREAK 5,29,587,827.05,3 BREAK 6,29,1901,796.05,3 BREAK 7,29,1832,797.05,3 BREAK 8,32,1744,751.05 BREAK 9,3,-7,711,1,100,act5s3,1550,815 BREAK 10,3,2310,591.05,1,100,act5s5,50,780 BREAK 11,32,288,699.05 BREAK 12,23,303,500,10,2,59 BREAK 13,23,635,294,10,3,59 BREAK 14,23,1328,321,6,3,60';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_gasSound');
		military1arr = [];
		military2arr = [];
		bf2 = false;
		createAcidRain();
		onEnterFrame = function () {
			runAcidRain();
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 388 {
		allmap = '48 BREAK 775 BREAK 72 BREAK 30 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,202,202,202,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,202,202,202,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,202,202,202,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,169,169,169,169,169,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,176,176,176,176,176,172,168,169,169,169,170,182,183,182,183,182,183,182,183,168,169,169,169,170,188,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,169,170,182,183,182,183,182,183,182,183,182,183,182,183,182,183,182,183,182,183,182,183,168,169,169,169,176,176,176,176,176,176,172,171,176,176,176,172,184,185,184,185,184,185,184,185,171,176,176,176,172,168,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,170,171,176,172,184,185,184,185,184,185,184,185,184,185,184,185,184,185,184,185,184,185,184,185,171,176,176,176,176,176,176,176,176,176,172,171,176,176,176,179,169,169,169,169,169,169,169,169,180,176,176,176,172,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,172,171,176,179,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,180,176,176,176,176,176,176,176,176,176,172,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,172,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,172,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,581,0,0,0,581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,581,0,0,0,581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,581,0,0,0,581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,581,0,0,0,581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,582,579,579,0,582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,581,0,0,0,581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,566,567,568,569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,581,0,0,0,581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,532,532,579,0,0,0,570,571,0,0,0,0,585,586,0,0,0,0,0,0,0,0,579,0,581,0,0,0,581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,585,586,0,0,0,0,585,586,0,0,0,0,585,586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,534,532,572,573,579,579,0,587,588,589,590,0,0,0,579,579,0,532,0,0,581,0,0,0,581,0,0,0,581,0,0,0,0,0,0,0,0,0,0,579,579,579,0,587,588,589,590,579,579,587,588,589,590,0,532,587,588,589,590,533,532,532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,582,533,532,0,582,579,579,579,582,532,0,0,579,579,579,0,0,579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_gas BREAK 5 BREAK 1,31,1364,861.05,-1 BREAK 2,30,1099,763.05,3 BREAK 3,30,1933,826.05,3 BREAK 4,30,1996,826.05,3 BREAK 5,30,1580,829.05,3 BREAK 6,29,1803,829.05,3 BREAK 7,29,587,827.05,3 BREAK 8,29,363,830.05,3 BREAK 9,30,748,827.05,3 BREAK 10,32,527,751.05 BREAK 11,3,-7,625,1,100,act5s4,2255,780 BREAK 12,32,242,694.05 BREAK 13,3,2313,701,1,100,act5s6,50,400 BREAK 14,2,980,664.05,98,5 BREAK 15,2,1051,759.05,99,5';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_gasSound');
		military1arr = [];
		military2arr = [];
		bf3 = false;
		createAcidRain();
		onEnterFrame = function () {
			runAcidRain();
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 389 {
		allmap = '44 BREAK 399 BREAK 60 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,169,169,169,169,169,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,176,176,176,176,176,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,169,169,169,169,170,0,0,0,0,0,173,174,178,176,177,174,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,169,180,177,174,174,174,175,0,0,0,0,0,0,0,173,174,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,173,174,174,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,169,169,180,179,169,169,169,169,169,170,168,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,176,176,176,176,176,176,176,176,176,172,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,169,169,169,169,169,169,169,169,170,0,0,173,174,174,174,174,174,174,174,174,174,175,173,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,175,0,0,168,169,169,169,169,169,169,169,169,169,169,169,176,176,176,176,176,176,176,176,176,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,179,169,169,169,169,169,169,169,169,169,169,170,0,0,0,0,0,0,168,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,180,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,179,169,169,169,169,169,169,180,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,579,0,0,0,579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0,0,0,562,0,0,0,562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0,562,0,0,0,0,0,0,562,0,0,0,562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,579,579,0,0,0,579,0,0,0,0,0,0,563,0,579,579,0,563,0,0,0,0,0,579,563,0,579,579,563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0,0,561,0,0,0,0,0,0,0,0,561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,579,0,0,563,0,0,0,0,532,563,0,0,0,0,0,0,0,0,563,0,0,0,0,0,0,532,533,533,532,0,0,0,0,0,563,0,0,579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,532,0,0,532,533,532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_gas BREAK 5 BREAK 1,32,107,199.05 BREAK 2,32,159,206.05 BREAK 3,29,744,339.05,3 BREAK 4,29,874,187.05,3 BREAK 5,30,1296,121.05,3 BREAK 6,30,1371,347.05,3 BREAK 7,30,1118,344.05,3 BREAK 8,29,1068,342.05,3 BREAK 9,31,128,404.05,1 BREAK 10,31,1736,402.05,-1 BREAK 11,30,940,187,3 BREAK 12,29,1234,117,3 BREAK 13,3,-8,349,1,100,act5s5,2255,820 BREAK 14,3,1929,294,1,100,act5s7,50,820 BREAK 15,2,1027,345,88,5 BREAK 16,2,1234,343,89,5 BREAK 17,2,908,182,90,5 BREAK 19,2,1416,345.05,91,3 BREAK 20,2,1269,124.05,92,3';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_gasSound');
		military1arr = [];
		military2arr = [];
		bf4 = false;
		createAcidRain();
		onEnterFrame = function () {
			runAcidRain();
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 390 {
		allmap = '81 BREAK 806 BREAK 50 BREAK 30 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,539,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,541,542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,543,544,545,0,0,0,543,544,545,0,0,0,535,536,0,535,536,0,535,536,0,0,564,565,0,0,0,0,0,0,0,0,0,543,544,545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,546,547,548,0,0,0,546,547,548,0,0,0,537,538,0,537,538,0,537,538,0,566,567,568,569,0,0,0,0,0,0,0,0,546,547,548,0,0,0,0,0,0,0,0,0,0,0,0,0,549,550,551,552,553,0,549,550,551,552,553,0,0,539,540,0,539,540,0,539,540,0,0,570,571,0,559,0,559,0,0,0,0,549,550,551,552,553,0,0,0,0,0,0,0,0,532,533,532,0,554,555,556,557,558,0,554,555,556,557,558,532,533,541,542,532,541,542,0,541,542,0,532,572,573,0,560,0,560,0,0,0,532,554,555,556,557,558,533,532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_gas BREAK 5 BREAK 1,3,-10,765.05,1,100,act5s6,1870,400 BREAK 2,3,1611,722.05,1,100,act5s8,50,820 BREAK 5,7,304,802,1,3,act5s7h1,335,530 BREAK 6,7,497,805,1,3,act5s7h2,335,530 BREAK 7,7,1360,803.05,1,3,act5s7h3,335,530';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_gasSound');
		if (!bf1 and !bf2 and !bf3 and !bf4) {
			givemedal(20);
		}
		bf1 = true;
		bf2 = true;
		bf3 = true;
		bf4 = true;
		if (!actions[68] and !actions[22]) {
			++count;
			holder.background.attachMovie('objects', 'ship', count);
			holder.background.ship.gotoAndStop(45);
			holder.background.ship._x = 1212;
			holder.background.ship._y = 820;
			custarr = [1, 8, 1100, 820, 'oldman', 11, 'Madness! These people could band', 'together and solve their problem,', 'instead they fight each other. All the', 'while, they are oblivious to the even', 'greater threat posed by X\'o\'chthu... I\'m', 'sure the Essence is down somewhere in', 'the maze beneath us. You just have to', 'get past whatever is lurking there.'];
			++count;
			holder.objects.attachMovie('objects', 'oldman', count);
			holder.objects.oldman._x = custarr[2];
			holder.objects.oldman._y = custarr[3];
			holder.objects.oldman.specarr = new Array();
			holder.objects.oldman.specarr = custarr;
		}
		military1arr = [];
		military2arr = [];
		createAcidRain();
		if (!actions[55]) {
			custarr = [4, 8, 691, 827.05, 'gasman', 8, 'The city of Rani attacked us to steal', 'our oxygen. We have to defend', 'ourselves.'];
		} else {
			custarr = [4, 8, 691, 827.05, 'gasman', 8, 'I hope Rani backs off now.'];
		}
		++count;
		holder.objects.attachMovie('objects', 'npc' + count, count);
		holder.objects['npc' + count]._x = custarr[2];
		holder.objects['npc' + count]._y = custarr[3];
		holder.objects['npc' + count].specarr = new Array();
		holder.objects['npc' + count].specarr = custarr;
		if (!actions[55]) {
			custarr = [3, 8, 400, 829.05, 'gaswoman', 9, 'Why won\'t the people of Rani leave us', 'alone?'];
		} else {
			custarr = [3, 8, 400, 829.05, 'gaswoman', 9, 'We\'re safe...'];
		}
		++count;
		holder.objects.attachMovie('objects', 'npc' + count, count);
		holder.objects['npc' + count]._x = custarr[2];
		holder.objects['npc' + count]._y = custarr[3];
		holder.objects['npc' + count].specarr = new Array();
		holder.objects['npc' + count].specarr = custarr;
		onEnterFrame = function () {
			runAcidRain();
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 391 {
		allmap = '47 BREAK 809 BREAK 50 BREAK 30 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,169,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,176,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,176,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,176,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,176,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,176,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,173,174,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,169,169,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,176,176,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,176,176,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,176,176,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,176,176,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,176,176,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,176,176,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,176,176,176,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,170,182,183,182,183,182,183,182,183,182,183,182,183,0,0,182,183,182,183,182,183,182,183,182,183,182,183,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,172,184,185,184,185,184,185,184,185,184,185,184,185,0,0,184,185,184,185,184,185,184,185,184,185,184,185,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,179,169,169,169,169,169,169,169,169,169,170,182,183,0,0,182,183,168,169,169,169,169,169,169,169,169,170,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,172,184,185,0,0,184,185,171,176,176,176,176,176,176,176,176,172,171,176,176,176 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,543,544,545,0,0,0,564,565,0,0,0,0,543,544,545,0,0,535,536,0,0,0,0,0,0,535,536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,546,547,548,0,0,566,567,568,569,0,0,0,546,547,548,0,0,537,538,0,0,0,0,0,0,537,538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,559,0,0,0,549,550,551,552,553,0,559,570,571,0,0,0,549,550,551,552,553,0,539,540,0,0,0,0,0,0,539,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,532,533,560,0,0,0,554,555,556,557,558,0,560,572,573,0,532,532,554,555,556,557,558,0,541,542,0,120,121,121,122,0,541,542,0,533,0,0,532,533,534,534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_gas BREAK 5 BREAK 1,3,-9,686.05,1,100,act5s7,1550,820 BREAK 2,3,1056,942.05,2,2,act5s9,1055,160 BREAK 3,4,274,821.05 BREAK 4,7,400,804.05,1,3,act5s8h1,335,530 BREAK 5,7,783,804.05,1,3,act5s8h2,300,334';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_gasSound');
		bf1 = true;
		bf2 = true;
		bf3 = true;
		bf4 = true;
		military1arr = [];
		military2arr = [];
		createAcidRain();
		if (!actions[55]) {
			custarr = [8, 8, 915, 821.05, 'gasman', 8, 'We use a solution of Sparkdust@', 'Effluvian Gasrock and Heartfruit to', 'clean the oxygen station... But we\'re', 'running out of supplies.'];
		} else {
			custarr = [8, 8, 915, 821.05, 'gasman', 8, 'We used a solution of Sparkdust@', 'Effluvian Gasrock and Heartfruit to', 'clean the oxygen station.'];
		}
		++count;
		holder.objects.attachMovie('objects', 'npc' + count, count);
		holder.objects['npc' + count]._x = custarr[2];
		holder.objects['npc' + count]._y = custarr[3];
		holder.objects['npc' + count].specarr = new Array();
		holder.objects['npc' + count].specarr = custarr;
		oxyman = holder.objects['npc' + count];
		if (!actions[55]) {
			custarr = [7, 8, 625, 829.05, 'gaswoman', 9, 'It\'s kind of strange when you think', 'about it... We fight Rani@ but really@ the', 'problem is the sludge monster in the', 'oxygen station below us.'];
		} else {
			custarr = [7, 8, 625, 829.05, 'gaswoman', 9, 'The sludge monster is dead. We killed', 'each other for no reason.'];
		}
		++count;
		holder.objects.attachMovie('objects', 'npc' + count, count);
		holder.objects['npc' + count]._x = custarr[2];
		holder.objects['npc' + count]._y = custarr[3];
		holder.objects['npc' + count].specarr = new Array();
		holder.objects['npc' + count].specarr = custarr;
		if (!actions[55]) {
			custarr = [6, 8, 1294, 819.05, 'gasman', 8, 'We get our oxygen from the complex', 'below. It\'s inhabited by some really', 'nasty creatures though.'];
		} else {
			custarr = [6, 8, 1294, 819.05, 'gasman', 8, 'Thank you for your help. We\'ll clear out', 'the remaining creatures.'];
		}
		++count;
		holder.objects.attachMovie('objects', 'npc' + count, count);
		holder.objects['npc' + count]._x = custarr[2];
		holder.objects['npc' + count]._y = custarr[3];
		holder.objects['npc' + count].specarr = new Array();
		holder.objects['npc' + count].specarr = custarr;
		onEnterFrame = function () {
			if (holder.player.hitTest(oxyman) and (Key.isDown(40) or Key.isDown(83))) {
				potionsowned[9] = 1;
				trace(potionsowned[9]);
			}
			runAcidRain();
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 392 {
		allmap = '1052 BREAK 186 BREAK 40 BREAK 30 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,183,0,0,182,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,185,0,0,184,185,0,0,0,0,0,0,194,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,196,0,0,182,183,0,0,182,183,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,184,185,0,0,184,185,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,182,183,0,0,182,183,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,195,195,184,185,0,0,184,185,195,196,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,199,200,200,200,200,182,183,0,0,182,183,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,201,0,0,0,0,0,0,0,0,0,184,185,0,0,184,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,183,0,0,182,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,185,0,0,184,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,183,0,0,182,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,195,195,195,195,184,185,0,0,184,185,195,195,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,194,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,196,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,200,200,200,201,0,0,195,195,193,0,0,0,0,0,0,0,0,0,0,0,0,192,195,195,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,195,195,195,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,610,611,0,0,0,0,0,0,0,0,0,0,610,611,0,0,0,0,0,0,76,76,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,118,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,118,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,601,602,603,601,602,603,0,0,0,595,596,0,0,119,0,0,118,0,0,0,76,76,76,76,0,0,0,0,0,0,120,121,121,122,0,0,0,0,0,0,604,605,606,604,605,606,0,0,594,597,598,594,0,119,0,0,118,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,599,0,0,0,119,0,0,118,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,600,0,0,0,119,0,0,118,0,0,0,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,119,0,0,118,0,0,0,0,76,76,0,0,612,613,614,612,613,614,612,613,614,612,613,614,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,119,0,0,118,0,0,0,0,76,76,0,0,615,616,617,615,616,617,615,616,617,615,616,617,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,119,0,0,118,0,0,0,0,76,76,0,0,618,619,620,618,619,620,618,619,620,618,619,620,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,119,0,0,118,0,0,0,0,76,76,0,0,612,613,614,612,613,614,612,613,614,612,613,614,0,0,0,0,0,0,76,76,0,0,0,0,0,0,0,0,119,0,0,118,0,0,0,0,0,0,0,0,615,616,617,615,616,617,615,616,617,615,616,617,0,0,76,76,76,76,76,76,0,0,607,0,0,0,0,0,119,0,0,118,0,0,0,607,0,0,607,0,618,619,620,618,619,620,618,619,620,618,619,620,0,0,0,0,0,0,76,76,0,0,608,0,0,0,0,0,119,0,0,118,0,0,0,608,0,0,608,0,612,613,614,612,613,614,612,613,614,612,613,614,0,0,0,0,0,0,76,76,0,0,608,0,0,0,0,0,119,0,0,118,0,0,0,608,0,0,608,0,615,616,617,615,616,617,615,616,617,615,616,617,0,601,602,603,0,0,76,76,0,0,609,0,0,0,0,0,119,0,0,118,0,0,0,609,0,0,609,0,618,619,620,618,619,620,618,619,620,618,619,620,0,604,605,606,0,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_oxygen BREAK 0 BREAK 1,3,1055,33,2,2,act5s8,1055,870 BREAK 2,3,-9,801,1,10,act5s10,1235,530 BREAK 3,34,409,304,5 BREAK 4,34,816,845,5 BREAK 5,2,1169,663,104,7 BREAK 6,2,1078,665,105,7 BREAK 7,2,1125,668,106,5';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_gasSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 393 {
		allmap = '1228 BREAK 519 BREAK 40 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,195,195,195,195,195,195,195,195,195,195,195,195,195,196,0,0,0,0,0,0,194,195,195,195,195,195,195,195,195,195,195,195,195,195,196,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,195,195,193,0,0,0,0,0,0,0,0,0,0,0,0,0,192,195,195,195,195,195,195,193,0,0,0,0,0,0,0,0,0,0,0,0,0,192,195,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,599,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,76,76,76,76,0,0,600,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,600,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,607,0,0,0,0,0,0,0,0,0,0,0,0,0,607,0,0,0,0,599,0,607,0,0,0,0,0,0,0,0,0,0,0,0,0,607,0,0,0,0,608,0,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0,600,0,608,0,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0,608,0,0,0,0,0,0,0,0,0,0,0,0,0,608,0,601,602,603,0,0,608,0,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0,609,0,0,0,0,0,0,0,0,0,0,0,0,0,609,0,604,605,606,0,0,609,0,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_oxygen BREAK 0 BREAK 2,33,881,534.05 BREAK 3,33,241,537.05 BREAK 6,33,1038,539 BREAK 8,3,1287,480.05,1,10,act5s9,50,850 BREAK 9,33,392,533.05 BREAK 10,34,458,537.05,5 BREAK 11,34,681,533.05,5 BREAK 13,3,-9,473.05,1,10,act5s11,1230,850 BREAK 14,23,639,484,8,4,57';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_gasSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 394 {
		allmap = '1228 BREAK 839 BREAK 40 BREAK 30 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,196,0,0,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0,190,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,201,0,0,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,195,195,195,195,195,195,195,195,195,195,193,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,200,191,203,204,0,0,0,203,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,195,195,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,204,0,0,0,0,203,204,0,0,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,200,200,191,0,0,190,200,200,200,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,197,0,0,198,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,197,0,0,198,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,610,611,0,607,0,0,0,0,0,607,0,0,0,0,0,0,610,611,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,608,0,0,0,0,0,608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,608,0,0,0,0,0,608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,608,0,0,0,0,0,608,0,601,602,603,621,622,0,0,621,622,621,622,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,609,0,0,0,0,0,609,0,604,605,606,623,624,0,594,623,624,623,624,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,627,628,0,599,0,627,628,0,599,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,629,630,0,600,0,629,630,0,600,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,627,628,0,0,0,627,628,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,629,630,0,0,0,629,630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,0,0,627,628,0,0,0,627,628,0,0,0,0,0,0,0,0,0,599,0,627,628,0,599,599,0,627,628,0,599,0,0,0,0,0,0,0,0,76,76,0,0,629,630,0,0,0,629,630,0,0,0,0,0,0,0,0,0,600,0,629,630,0,600,600,0,629,630,0,600,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,627,628,0,0,0,0,627,628,0,0,0,0,0,0,0,0,0,0,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,629,630,0,0,0,0,629,630,0,0,0,0,0,0,0,0,0,0,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,627,628,0,0,0,0,627,628,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,629,630,0,0,0,0,629,630,0,0,0,0,0,0,0,0,0,607,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,0,76,76,0,440,440,0,76,76,76,76,0,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,0,76,76,0,441,441,0,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_oxygen BREAK 0 BREAK 5,35,579,795.05,-1 BREAK 6,35,357,794.05,1 BREAK 7,3,1288,800.05,1,10,act5s10,50,530 BREAK 8,3,-9,545,1,10,act5s12,1550,370 BREAK 9,2,678,251,101,11 BREAK 10,2,804,183,102,11 BREAK 11,2,580,246,103,7 BREAK 12,8,946,244,gasman,8,I got stuck here after I came down to,try and deal with the cause of the,pollution. Why do Rani and Vanni fight,each other when this is the problem?,null,null,null,null,null';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_gasSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 395 {
		allmap = '1548 BREAK 359 BREAK 50 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,196,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,195,195,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,195,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,200,191,0,0,0,0,203,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,204,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,204,0,0,190,200,200,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,610,611,0,627,628,0,599,0,599,0,0,0,0,0,0,0,610,611,0,0,610,611,0,0,0,0,0,0,610,611,0,0,610,611,0,627,628,0,0,627,628,0,0,0,76,76,0,0,0,0,0,0,0,629,630,0,600,0,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,629,630,0,0,629,630,0,0,0,0,0,0,0,607,0,0,0,0,627,628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,627,628,0,0,627,628,0,0,607,0,0,0,0,608,0,0,0,0,629,630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,629,630,0,0,629,630,0,0,608,0,0,0,0,608,0,0,0,0,627,628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,627,628,0,0,627,628,0,0,608,0,0,0,0,609,0,0,0,0,629,630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,629,630,0,0,629,630,0,0,608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,627,628,0,0,608,0,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,629,630,0,0,609,0,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,0,76,76,76,76,0,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,0,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_oxygen BREAK 0 BREAK 2,35,1187,347.05,-1 BREAK 3,35,1060,346.05,-1 BREAK 4,35,809,347.05,1 BREAK 5,35,680,346.05,1 BREAK 6,35,419,346.05,2 BREAK 7,3,1608,295.05,1,10,act5s11,50,630 BREAK 8,3,-7,254,1,10,act5s13,1550,360';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_gasSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 396 {
		allmap = '1553 BREAK 366 BREAK 50 BREAK 17 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,195,195,195,195,195,195,195,195,195,195,195,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,193,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,195,195,195,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,200,200,200,200,200,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,200,200,200,200,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,627,628,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,629,630,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,627,628,0,0,0,0,0,0,76,76,76,76,0,0,0,0,607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,629,630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,627,628,0,0,0,0,0,0,607,0,0,0,0,0,0,0,608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,629,630,0,0,0,0,0,0,608,0,0,0,0,0,0,0,609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,627,628,0,0,0,0,0,0,608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,629,630,0,0,0,0,0,0,608,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,0,76,76,76,76,76,76,76,76,76,76,0,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,0,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_oxygen BREAK 0 BREAK 1,16,993,140.05,1 BREAK 2,35,992,312.05,-1 BREAK 3,35,862,310,-1 BREAK 4,35,734,307,-1 BREAK 5,35,541,313,-2 BREAK 6,35,413,312,-2 BREAK 7,16,866,139.05,1 BREAK 10,16,736,138.05,1 BREAK 11,16,384,140,1 BREAK 12,16,449,139,1 BREAK 13,3,1606,281,1,10,act5s12,50,300 BREAK 14,3,-8,226.05,1,10,act5s14,590,850 BREAK 15,4,89,276.05';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_gasSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 397 {
		allmap = '592 BREAK 848 BREAK 20 BREAK 30 BREAK 167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,167,197,0,0,0,0,190,200,200,191,0,0,0,0,0,0,198,167,167,167,167,197,0,0,0,0,192,195,195,193,0,0,0,0,0,0,198,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,190,201,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,167,167,197,0,0,0,0,0,0,0,0,190,191,0,0,0,198,167,167,167,167,167,199,191,0,0,0,0,0,0,0,192,193,0,0,0,192,196,167,167,167,167,194,193,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,190,201,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,167,167,197,0,0,0,190,200,200,200,191,0,0,0,0,0,192,196,167,167,167,167,197,0,0,0,192,195,195,195,193,0,0,0,0,0,0,198,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,167,199,191,0,0,0,0,0,0,0,0,0,0,0,0,0,192,195,195,167,167,194,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,167,197,0,0,0,0,0,0,0,0,190,200,200,191,0,0,0,0,0,167,167,197,0,0,0,0,0,0,0,0,198,167,167,197,0,0,0,0,0,167,167,199,200,200,200,200,200,200,200,200,201,167,167,199,200,200,200,200,200,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_oxygen BREAK 0 BREAK 3,35,289,502,3 BREAK 5,3,295,17,50,2,act5s15,110,850 BREAK 6,3,648,816.05,1,10,act5s13,50,280';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_gasSound');
		++count;
		holder.attachMovie('acidrise1', 'acidrise', count);
		holder.acidrise._y = 980;
		acidtick = 0;
		++count;
		attachMovie('acidsign1', 'acidsign', count);
		onEnterFrame = function () {
			if (!gamepaused) {
				++acidtick;
				if (holder.acidrise._y > 900) {
					--holder.acidrise._y;
				}
				if (holder.acidrise._y <= 900) {
					holder.acidrise._y -= 2;
				}
				if (holder.acidrise.hitTest(holder.player.hitbox)) {
					takedamage(maxhealth * 2);
				}
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 398 {
		allmap = '112 BREAK 849 BREAK 20 BREAK 30 BREAK 167,197,0,0,198,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,197,0,0,198,167,167,167,167,194,195,195,195,195,195,195,195,195,196,167,167,197,0,0,198,167,167,167,167,197,0,0,0,0,0,0,0,0,198,167,167,197,0,0,198,167,167,167,167,197,0,0,0,0,0,0,0,0,198,167,167,197,0,0,192,195,195,195,195,193,0,0,190,200,200,191,0,0,198,167,167,197,0,0,0,0,0,0,0,0,0,0,198,167,167,197,0,0,198,167,167,197,0,0,0,0,0,0,0,0,0,0,198,167,167,197,0,0,198,167,167,199,200,200,200,200,200,200,200,200,200,200,201,167,167,197,0,0,198,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,197,0,0,198,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,197,0,0,198,167,167,194,195,195,195,195,195,195,195,195,195,195,195,195,195,193,0,0,198,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,200,201,167,167,197,0,0,190,200,200,200,200,200,200,200,200,200,200,200,201,167,167,167,167,197,0,0,192,195,195,195,195,195,195,195,195,195,195,195,195,195,196,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,197,0,0,0,190,200,200,200,200,200,200,191,0,0,0,0,0,198,167,167,197,0,0,0,192,195,195,195,195,195,195,193,0,0,0,0,0,198,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,201,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,196,167,167,197,0,0,0,0,0,0,0,190,200,200,191,0,0,0,0,0,198,167,167,197,0,0,0,0,0,0,0,192,195,195,193,0,0,0,0,0,198,167,167,199,200,200,191,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,124,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,121,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,124,124,0,0,0,0,0,0,0,0,124,124,124,124,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_oxygen BREAK 0 BREAK 2,35,199,476,-2 BREAK 3,35,321,475,-2 BREAK 4,35,448,474,-2 BREAK 5,3,97,2,5,2,act5s16,430,340';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_gasSound');
		++count;
		holder.attachMovie('acidrise1', 'acidrise', count);
		holder.acidrise._y = 960;
		acidtick = 0;
		++count;
		attachMovie('acidsign1', 'acidsign', count);
		onEnterFrame = function () {
			if (!gamepaused) {
				++acidtick;
				if (holder.acidrise._y > 750) {
					--holder.acidrise._y;
				}
				if (holder.acidrise._y <= 750) {
					holder.acidrise._y -= 2;
				}
				if (holder.acidrise.hitTest(holder.player.hitbox)) {
					takedamage(maxhealth * 2);
				}
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 399 {
		allmap = '432 BREAK 334 BREAK 20 BREAK 15 BREAK 167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,194,195,195,195,195,195,195,195,195,195,195,195,195,195,196,167,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,195,195,195,193,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,200,200,200,200,200,200,200,200,200,200,200,200,200,200,191,0,0,198,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,197,0,0,198,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,197,0,0,198,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,197,0,0,198,167,167 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,599,0,0,0,599,0,0,0,0,0,0,0,0,0,0,0,600,0,0,0,600,0,0,0,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,121,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0 BREAK bg_oxygen BREAK 0 BREAK 1,4,291,340.05 BREAK 2,3,512,463.05,10,2,act5s15,95,100 BREAK 3,3,-6,302.05,1,10,act5s17,1230,370';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_gasSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 400 {
		allmap = '1231 BREAK 370 BREAK 40 BREAK 15 BREAK 167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,194,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,196,167,167,167,167,167,167,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,167,167,167,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,167,167,167,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,167,167,167,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,167,167,167,167,167,167,167,199,200,191,0,0,0,0,0,0,0,0,0,0,190,200,200,191,0,0,0,0,0,0,0,0,0,0,190,200,201,167,167,167,167,167,195,195,195,195,195,195,195,193,0,0,0,0,0,0,0,0,0,0,192,195,195,193,0,0,0,0,0,0,0,0,0,0,192,195,195,195,195,195,195,195,0,0,0,0,0,0,0,0,0,0,0,203,204,203,204,0,0,0,0,0,0,0,0,0,0,203,204,203,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,599,0,627,628,0,678,679,680,0,0,0,0,678,679,680,0,627,628,0,599,0,0,599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,600,0,0,600,0,629,630,0,681,682,683,0,0,0,0,681,682,683,0,629,630,0,600,0,0,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,627,628,0,669,670,671,0,0,0,0,669,670,671,0,627,628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,629,630,0,672,673,674,0,0,0,0,672,673,674,0,629,630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,627,628,0,675,676,677,0,0,0,0,675,676,677,0,627,628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,669,670,671,0,629,630,0,678,679,680,0,0,0,0,678,679,680,0,629,630,0,669,670,671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,673,674,0,0,0,0,678,679,680,0,0,0,0,678,679,680,0,0,0,0,672,673,674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,675,676,677,0,0,0,0,678,679,680,0,0,0,0,678,679,680,0,0,0,0,675,676,677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,678,679,680,0,0,0,0,678,679,680,0,0,0,0,678,679,680,0,0,0,0,678,679,680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,681,682,683,0,0,0,0,681,682,683,0,0,0,0,681,682,683,0,0,0,0,681,682,683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_oxygen BREAK 0 BREAK 1,3,1289,325.05,1,10,act5s16,50,340 BREAK 2,3,-9,317.05,1,10,act5s18,595,370';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_gasSound');
		if (!actions[55]) {
			fadeout_music();
			++count;
			holder.objects.attachMovie('gasboss', 'boss', count);
			holder.objects.boss.maxlife = 50;
			holder.objects.boss.life = holder.objects.boss.maxlife;
			holder.objects.boss.actiondelay = 50;
			holder.objects.boss.damageDelay = 0;
			holder.objects.boss.flashCount = 0;
			startboss = false;
			holder.objects.boss.onEnterFrame = function () {
				if (!game_paused and !msgbox._visible and startboss) {
					if (this._currentframe > 1 and !this.attacking) {
						this.play();
					}
					if (this.acid.hitTest(_root.holder.player.hitbox)) {
						takedamage(maxhealth * 2);
					}
					if (_root.damageDelay == 0 and _root.effectInvisibility == 0) {
						if (this.char.hitTest(_root.holder.player._x + _root.holder._x + tilesize / 2, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true)) {
							_root.xspeed = 0;
							_root.bumpAmount -= _root.standardBump;
							_root.shadeCount = 30;
							_root.takedamage(1);
						}
						if (this.char.hitTest(_root.holder.player._x + _root.holder._x - tilesize / 2, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true)) {
							_root.xspeed = 0;
							_root.bumpAmount += _root.standardBump;
							_root.shadeCount = 30;
							_root.takedamage(1);
						}
					}
					if (this.damageDelay == 0 and _root.holder.cloudsMolotov.hitTest(this.char)) {
						this.life -= _root.molotovDamage;
						this.flashCount = 12;
						this.damageDelay = 12;
					}
					if (this.damageDelay == 0 and _root.holder.cloudsExplosion.hitTest(this.char)) {
						this.life -= _root.explosionDamage;
						this.flashCount = 12;
						this.damageDelay = 12;
					}
					if (this.damageDelay == 0 and _root.holder.cloudsIce.hitTest(this.char)) {
						this.life -= _root.iceDamage;
						this.flashCount = 12;
						this.damageDelay = 12;
					}
					if (this.flashCount > 0) {
						this.char.att.setBrightness(random(100));
						--this.flashCount;
						if (this.flashCount == 0) {
							this.char.att.setBrightness(0);
						}
					}
					if (this.damageDelay > 0) {
						--this.damageDelay;
					}
					if (this.life <= 0 and this._currentframe == 1) {
						if (!actions[55]) {
							fadeout_music();
							++count;
							attachMovie('whiteflash_short', 'whiteflash', count);
							_root.createBody(640, 192, 17, false);
							trace(this.char._x);
							trace(this.char._y);
							i = 0;
							while (i < maxhealth - health) {
								_root.dropHealth(640, 192, 100);
								++i;
							}
							_root.create_blood(640, 192, tilesize * 2, 'blood', 30);
							_root.actions[55] = true;
							_root.holder.ground.door1.play();
							_root.holder.ground.door2.play();
							_root.bosshealth.removeMovieClip();
							this.char._visible = false;
							this.removeMovieClip();
						}
					}
					if (this._currentframe == 1) {
						--this.actiondelay;
						if (this.actiondelay <= 0) {
							this.actiondelay = 50 * (0.2 + 0.8 * this.life / this.maxlife);
							rnd = random(100);
							if (rnd > 75) {
								this.gotoAndPlay('flying1');
							} else {
								if (rnd > 50) {
									this.gotoAndPlay('flying2');
								} else {
									if (rnd > 25) {
										this.gotoAndPlay('attacking');
										this.attacking = true;
										this.bulletcount = 0;
									} else {
										this.gotoAndPlay('acid');
									}
								}
							}
						}
					} else {
						if (this.attacking) {
							if (this.char.att._currentframe == this.char.att._totalframes) {
								rnd = random(100);
								if (rnd > 50 and this.bulletcount > 2 or bulletcount > 5) {
									this.attacking = false;
									this.gotoAndStop(1);
								}
							}
							if (this.char.att._currentframe == 10) {
								playsound('artillery1Sound');
								++this.bulletcount;
								i = 0;
								while (i < 2) {
									++count;
									holder.attachMovie('gasbossbullet', 'bullet' + count, count);
									holder['bullet' + count]._x = this.char._x - 70 + i * 140;
									holder['bullet' + count]._y = this.char._y - 100;
									holder['bullet' + count].xspeed = (-5 + 10 * i) * (random(20) / 100 + 0.8);
									holder['bullet' + count].yspeed = -5 * (random(20) / 100 + 0.8);
									holder['bullet' + count].lifecount = 120;
									holder['bullet' + count].onEnterFrame = function () {
										if (!game_paused) {
											this._x += this.xspeed;
											this._y += this.yspeed;
											if (holder.player._x > this._x and this.xspeed < 5) {
												this.xspeed += 0.2;
											}
											if (holder.player._x < this._x and this.xspeed > -5) {
												this.xspeed -= 0.2;
											}
											if (holder.player._y > this._y and this.yspeed < 5) {
												this.yspeed += 0.2;
											}
											if (holder.player._y < this._y and this.yspeed > -5) {
												this.yspeed -= 0.2;
											}
											if (this._currentframe == 1 and _root.damageDelay == 0 and _root.effectInvisibility == 0 and _root.holder.player.hitTest(this._x + holder._x, this._y + holder._y, true)) {
												takedamage(1);
												_root.xspeed = 0;
												_root.shadeCount = 30;
												this.play();
												if (this.xspeed < 0) {
													_root.bumpAmount -= _root.standardBump;
												} else {
													_root.bumpAmount += _root.standardBump;
												}
											}
											--this.lifecount;
											if (this.lifecount < 0) {
												this.play();
											}
										}
									};
									++i;
								}
							}
						}
					}
				} else {
					this.stop();
				}
			};
		} else {
			_root.createBody(640, 192, 17, false);
		}
		onEnterFrame = function () {
			if (!actions[55] and !startboss and holder.player._x < 1000) {
				++count;
				attachMovie('bosshealth', 'bosshealth', count);
				bosshealth._alpha = 0;
				++count;
				holder.ground.attachMovie('gasboss_door', 'door1', count);
				holder.ground.door1._x = 1024;
				holder.ground.door1._y = 256;
				++count;
				holder.ground.attachMovie('gasboss_door', 'door2', count);
				holder.ground.door2._x = 224;
				holder.ground.door2._y = 256;
				startboss = true;
				fadein_music();
				music_load('zos_bossSound');
				if (!actions[56]) {
					actions[56] = true;
					mesarr = new Array();
					mesarr[0] = 'So this is what\'s destroying all the';
					mesarr[1] = 'oxygen...';
					mesarr[2] = 'When I\'m done with you, everyone will';
					mesarr[3] = 'breathe clearly.';
					_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'hero');
				}
			}
			if (bosshealth._alpha < 100) {
				bosshealth._alpha += 2;
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 401 {
		allmap = '593 BREAK 367 BREAK 20 BREAK 15 BREAK 167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,194,195,195,195,195,195,195,195,195,195,195,195,195,196,167,167,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,195,195,195,193,0,0,0,0,0,0,0,0,0,0,0,0,192,195,195,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,200,200,200,200,191,0,0,0,0,0,0,0,200,200,200,200,200,200,200,201,167,167,167,167,199,200,200,200,200,200,200,200,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,607,0,0,0,0,607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0,608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0,608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0,608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0,608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0,608,0,0,0,0,0,0,0,0,0,0,607,0,0,0,608,0,0,0,0,608,0,0,0,607,0,0,0,0,0,0,608,0,0,0,609,0,0,0,0,609,0,0,0,608,0,0,0,0,0,0,609,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_oxygen BREAK 0 BREAK 1,3,647,336.05,1,10,act5s17,50,370 BREAK 2,23,322,143.05,12,3,61 BREAK 3,3,-7,337,1,10,act5s19,1230,850';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_gasSound');
		++count;
		holder.nohtobjects.attachMovie('essences', 'essences', count);
		holder.nohtobjects.essences._x = 318;
		holder.nohtobjects.essences._y = 320;
		holder.nohtobjects.essences.id = 22;
		holder.nohtobjects.essences.gotoAndStop(5);
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 402 {
		allmap = '1230 BREAK 845 BREAK 40 BREAK 30 BREAK 167,167,167,184,185,0,0,184,185,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,167,167,182,183,0,0,182,183,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,167,167,184,185,0,0,184,185,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,167,167,182,183,0,0,182,183,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,167,167,184,185,0,0,184,185,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,167,167,182,183,0,0,182,183,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,167,167,184,185,0,0,184,185,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,167,167,182,183,0,0,182,183,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,167,167,184,185,0,0,184,185,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,167,167,182,183,0,0,182,183,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,167,167,184,185,0,0,184,185,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,167,167,182,183,0,0,182,183,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,167,167,184,185,0,0,184,185,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,182,183,0,0,182,183,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,184,185,0,0,184,185,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,182,183,0,0,182,183,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,184,185,0,0,184,185,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,182,183,0,0,182,183,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,184,185,0,0,184,185,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,182,183,0,0,182,183,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,184,185,0,0,184,185,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,182,183,0,0,182,183,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,184,185,0,0,184,185,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,197,0,0,192,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,167,167,167,199,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,607,0,610,611,0,607,0,610,611,0,607,0,610,611,0,607,0,610,611,0,607,0,610,611,0,607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0,608,0,0,0,0,608,0,0,0,0,608,0,0,0,0,608,0,0,0,0,608,0,0,0,0,0,0,0,0,533,533,532,0,0,0,609,534,532,0,0,609,0,532,0,0,609,0,0,0,0,609,0,0,0,0,609,0,0,0,0,609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_oxygen BREAK 0 BREAK 2,3,1287,818.05,1,10,act5s18,50,370 BREAK 3,3,192,33,10,2,act5s2,705,820 BREAK 4,2,283,857.05,175,5 BREAK 5,2,331,858.05,176,5';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_gasSound');
		if (!actions[55]) {
			++count;
			holder.attachMovie('sludge1', 'sludge', count);
			holder.sludge._x = 640;
			holder.sludge._y = 766;
		}
		onEnterFrame = function () {
			if (!actions[55] and holder.player._x > 600) {
				xspeed = 0;
				holder.player._x = 595;
				mesarr = new Array();
				mesarr[0] = 'That sludge doesn\'t look natural...';
				mesarr[1] = 'Something evil lurks down here.';
				mesarr[2] = 'I\'ll have to get in some other way.';
				_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'hero');
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 410 {
		allmap = '594 BREAK 173 BREAK 20 BREAK 15 BREAK 176,176,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,176,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,176,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,176,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,176,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,176,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,176,172,0,0,0,0,0,0,0,0,0,0,0,0,0,168,169,169,169,176,176,172,0,0,0,0,0,0,0,0,0,0,0,0,0,171,176,176,176,176,176,172,0,0,0,0,0,0,0,0,0,0,0,0,0,171,176,176,176,176,176,172,0,0,0,0,0,0,0,0,0,0,168,169,169,180,176,176,176,176,176,172,0,0,0,0,0,0,0,0,0,0,171,176,176,176,176,176,176,176,176,172,0,0,0,0,0,0,0,0,0,0,171,176,176,176,176,176,176,176,176,179,169,169,169,169,169,169,169,169,169,169,180,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_gas BREAK 5 BREAK 1,3,649,105.1,1,10,act5s0,50,460';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_gasSound');
		++count;
		holder.nohtobjects.attachMovie('morax', 'morax', count);
		holder.nohtobjects._x = 208;
		holder.nohtobjects._y = 384;
		createAcidRain();
		onEnterFrame = function () {
			runAcidRain();
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 411 {
		allmap = '339 BREAK 519 BREAK 20 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,195,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,193,0,192,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,193,0,0,0,192,196,0,0,0,0,0,0,0,0,0,0,0,0,194,193,0,0,0,0,0,192,196,0,0,0,0,0,0,0,0,0,0,194,193,0,0,0,0,0,0,0,192,196,0,0,0,0,0,0,0,0,194,193,0,0,0,0,0,0,0,0,0,192,196,0,0,0,0,0,0,194,193,0,0,0,0,0,0,0,0,0,0,0,192,196,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,199,200,200,200,200,200,200,200,200,200,200,200,200,200,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,599,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,600,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,599,0,0,0,0,0,599,0,0,76,76,76,76,76,76,76,76,0,0,0,600,0,0,0,0,0,600,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,0,0,0,595,596,0,0,583,0,0,595,596,0,0,0,76,76,76,76,76,0,0,0,597,598,594,0,584,0,594,597,598,594,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_pyramid BREAK 0 BREAK 1,7,339,513.05,1,3,act5s1,720,525';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_gasSound');
		if (!actions[55]) {
			custarr = [2, 8, 214, 534.05, 'gaswoman', 9, 'I\'m too afraid to go out...', 'The air is so suffocating.'];
		} else {
			custarr = [2, 8, 214, 534.05, 'gaswoman', 9, 'Is it safe to go out?'];
		}
		++count;
		holder.objects.attachMovie('objects', 'npc' + count, count);
		holder.objects['npc' + count]._x = custarr[2];
		holder.objects['npc' + count]._y = custarr[3];
		holder.objects['npc' + count].specarr = new Array();
		holder.objects['npc' + count].specarr = custarr;
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 412 {
		allmap = '339 BREAK 519 BREAK 20 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,195,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,193,0,192,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,193,0,0,0,192,196,0,0,0,0,0,0,0,0,0,0,0,0,194,193,0,0,0,0,0,192,196,0,0,0,0,0,0,0,0,0,0,194,193,0,0,0,0,0,0,0,192,196,0,0,0,0,0,0,0,0,194,193,0,0,0,0,0,0,0,0,0,192,196,0,0,0,0,0,0,194,193,0,0,0,0,0,0,0,0,0,0,0,192,196,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,199,200,200,200,200,200,200,200,200,200,200,200,200,200,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,599,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,600,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,599,0,0,0,0,0,599,0,0,76,76,76,76,76,76,76,76,0,0,0,600,0,0,0,0,0,600,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,0,0,0,0,0,0,0,583,0,0,595,596,0,0,0,76,76,76,76,76,0,0,0,0,0,0,0,584,0,594,597,598,594,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_pyramid BREAK 0 BREAK 1,7,339,517,1,3,act5s1,1105,525 BREAK 2,2,146,539.05,86,3 BREAK 3,2,177,539.05,87,3';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_gasSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 413 {
		allmap = '339 BREAK 519 BREAK 20 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,195,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,193,0,192,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,193,0,0,0,192,196,0,0,0,0,0,0,0,0,0,0,0,0,194,193,0,0,0,0,0,192,196,0,0,0,0,0,0,0,0,0,0,194,193,0,0,0,0,0,0,0,192,196,0,0,0,0,0,0,0,0,194,193,0,0,0,0,0,0,0,0,0,192,196,0,0,0,0,0,0,194,193,0,0,0,0,0,0,0,0,0,0,0,192,196,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,199,200,200,200,200,200,200,200,200,200,200,200,200,200,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,599,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,600,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,599,0,0,0,0,0,599,0,0,76,76,76,76,76,76,76,76,0,0,0,600,0,0,0,0,0,600,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,0,0,0,601,602,603,0,583,0,0,595,596,0,0,0,76,76,76,76,76,0,0,0,604,605,606,0,584,0,594,597,598,594,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_pyramid BREAK 0 BREAK 1,7,337,512.05,1,3,act5s7,305,820 BREAK 2,2,211,474.05,93,1 BREAK 3,2,261,475.05,94,1';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_gasSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 414 {
		allmap = '339 BREAK 519 BREAK 20 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,195,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,193,0,192,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,193,0,0,0,192,196,0,0,0,0,0,0,0,0,0,0,0,0,194,193,0,0,0,0,0,192,196,0,0,0,0,0,0,0,0,0,0,194,193,0,0,0,0,0,0,0,192,196,0,0,0,0,0,0,0,0,194,193,0,0,0,0,0,0,0,0,0,192,196,0,0,0,0,0,0,194,193,0,0,0,0,0,0,0,0,0,0,0,192,196,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,199,200,200,200,200,200,200,200,200,200,200,200,200,200,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,599,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,600,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,599,0,0,0,0,0,599,0,0,76,76,76,76,76,76,76,76,0,0,0,600,0,0,0,0,0,600,0,0,0,76,76,76,76,76,76,0,0,0,612,613,614,0,0,0,612,613,614,0,0,0,76,76,76,76,76,0,0,0,615,616,617,0,583,0,615,616,617,0,0,0,76,76,76,76,76,0,0,0,618,619,620,0,584,0,618,619,620,0,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_pyramid BREAK 0 BREAK 1,7,337,512.05,1,3,act5s7,495,820';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_gasSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 415 {
		allmap = '339 BREAK 519 BREAK 20 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,195,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,193,0,192,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,193,0,0,0,192,196,0,0,0,0,0,0,0,0,0,0,0,0,194,193,0,0,0,0,0,192,196,0,0,0,0,0,0,0,0,0,0,194,193,0,0,0,0,0,0,0,192,196,0,0,0,0,0,0,0,0,194,193,0,0,0,0,0,0,0,0,0,192,196,0,0,0,0,0,0,194,193,0,0,0,0,0,0,0,0,0,0,0,192,196,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,199,200,200,200,200,200,200,200,200,200,200,200,200,200,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,599,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,600,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,599,0,0,0,0,0,599,0,0,76,76,76,76,76,76,76,76,0,0,0,600,0,0,0,0,0,600,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,0,0,0,595,596,0,0,583,0,621,622,621,622,0,0,76,76,76,76,76,0,0,594,597,598,594,0,584,0,623,624,623,624,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_pyramid BREAK 0 BREAK 1,7,337,512.05,1,3,act5s7,1360,820 BREAK 2,2,529,531.05,95,3';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_gasSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 416 {
		allmap = '339 BREAK 519 BREAK 20 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,195,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,193,0,192,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,193,0,0,0,192,196,0,0,0,0,0,0,0,0,0,0,0,0,194,193,0,0,0,0,0,192,196,0,0,0,0,0,0,0,0,0,0,194,193,0,0,0,0,0,0,0,192,196,0,0,0,0,0,0,0,0,194,193,0,0,0,0,0,0,0,0,0,192,196,0,0,0,0,0,0,194,193,0,0,0,0,0,0,0,0,0,0,0,192,196,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,199,200,200,200,200,200,200,200,200,200,200,200,200,200,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,599,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,600,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,0,0,599,0,0,0,0,0,599,0,0,76,76,76,76,76,76,76,76,0,0,0,600,0,0,0,0,0,600,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,0,0,621,622,621,622,0,583,0,601,602,602,603,0,0,76,76,76,76,76,0,0,623,624,623,624,0,584,0,604,605,605,606,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_pyramid BREAK 0 BREAK 1,7,337,512.05,1,3,act5s8,400,820 BREAK 2,2,414,475.05,96,3 BREAK 3,2,530,534.05,97,3';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_gasSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 417 {
		allmap = '303 BREAK 334 BREAK 40 BREAK 15 BREAK 167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,194,195,196,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,194,193,0,192,196,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,194,193,0,0,0,192,196,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,194,193,0,0,0,0,0,192,196,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,194,193,0,0,0,0,0,0,0,192,196,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,194,193,0,0,0,0,0,0,0,0,0,192,196,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,194,195,195,195,195,196,167,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,167,167,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,167,167,167,167,167,199,200,200,200,200,200,200,200,200,200,200,200,201,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,199,200,200,200,200,201,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,600,0,0,0,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,583,0,0,0,0,0,626,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,584,0,0,0,0,0,626,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_pyramid BREAK 0 BREAK 1,7,306,323,1,3,act5s8,785,820 BREAK 2,28,1121,328.05,54';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_gasSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 426 {
		allmap = '640 BREAK 876 BREAK 40 BREAK 30 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,228,223,0,0,0,0,0,0,220,228,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,228,223,0,0,0,0,0,0,220,228,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,228,223,0,0,0,0,0,0,220,231,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,231,223,0,0,0,0,0,0,220,231,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,229,223,0,0,0,0,0,0,220,229,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,230,223,0,0,0,0,0,0,220,230,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,225,226,0,0,0,0,0,0,224,225,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,206,206,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,209,209,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,212,212,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,206,206,206,207,0,0,0,0,0,0,0,0,205,206,206,207,205,206,206,206,205,206,207,0,0,205,206,206,0,0,0,0,0,0,0,0,0,208,209,209,209,209,209,210,0,0,0,0,0,0,0,0,208,209,209,209,208,209,209,210,209,209,210,0,0,208,209,209,0,0,0,0,0,0,0,205,206,206,207,209,209,209,209,210,0,0,0,0,0,0,0,0,211,212,212,212,208,209,209,210,212,212,213,0,0,208,209,209,0,0,0,0,0,0,0,208,209,209,210,209,209,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,208,209,209,210,0,0,0,0,0,208,209,209,0,0,0,0,0,0,0,208,209,209,210,212,212,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,213,0,0,0,0,0,211,212,212,0,0,0,0,0,0,0,211,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,207,205,206,206,206,206,207,205,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,209,208,209,209,209,209,210,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,208,209,209,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,209,209,209,210,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,653,654,655,656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,657,658,659,660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,661,663,663,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,632,631,0,0,631,0,0,0,0,0,0,0,0,0,0,0,0,0,665,666,667,668,631,633,632,0,0,0,632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK stars_floaty BREAK 0 BREAK 1,9,1010,824.05 BREAK 4,8,1039,467,zealot,10,Welcome to Aeryl. Tell me@ are you,awakened? Look around you@ what do,you see? Soil@ stone@ metal... But what,you don\'t see@ yet what envelops,everything@ is empty space. The air.,This is what Aeo created for us.,Blessings of Aeo be upon you.,null,null,null,null,null BREAK 5,4,848,826 BREAK 6,8,399,466,zealot,10,Prophecies claim that Aeo will rise,again@ soar up to the Sky temple above,and the vast space beyond to save the,universe from annihilation.,null,null,null,null,null BREAK 7,8,106,307,zealot,10,Your jump is impressive. Aeo looks,down with pride at you.,null,null,null,null,null BREAK 8,40,642,925.05,0,-2,0,-10 BREAK 9,36,1011,817,2,5,select1,530,380 BREAK 11,3,1289,400,1,10,act6s2,50,330 BREAK 12,2,882,469,109,1 BREAK 13,3,-7,288,1,10,act6s9,1550,820 BREAK 14,3,642,16,7,2,act6s12,465,850 BREAK 15,2,261,535,177,5';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_aerylSound');
		holder.createEmptyMovieClip('floatcloud', frontbgdep);
		numclouds = Math.ceil(((levelwidth / stagewidth) * levelheight / stageheight) * 2);
		i = 0;
		while (i < numclouds) {
			++count;
			holder.floatcloud.attachMovie('cloudholder', 'cloud' + i, count);
			holder.floatcloud['cloud' + i]._x = random(levelwidth);
			holder.floatcloud['cloud' + i]._y = random(levelheight);
			holder.floatcloud['cloud' + i].gotoAndStop(random(holder.floatcloud['cloud' + i]._totalframes) + 1);
			holder.floatcloud['cloud' + i].cacheAsBitmap();
			++i;
		}
		holder.floatcloud.cacheAsBitmap();
		bgam = 0.8;
		onEnterFrame = function () {
			if (!fadeout and !fadein and (holder.player._x + xspeed > levelwidth or holder.player._x + xspeed < 0)) {
				holder.player._x -= xspeed;
				xspeed = 0;
			}
			if (holder.player._x < 5) {
				holder.player._x = 5;
			}
			if (holder.player._x > levelwidth) {
				holder.player._x = levelwidth;
			}
			playercode();
			camerafollow(xcam, ycam);
			if (!game_paused) {
				if (!dying and !fadeout) {
					begxdiff = holder._x - begx;
					begydiff = holder._y - begy;
					holder.bg._x -= begxdiff * bgam;
					holder.bg._y -= begydiff * bgam;
					holder.floatcloud._x -= begxdiff * bgam * 0.5;
					holder.floatcloud._y -= begydiff * bgam * 0.5;
				}
			}
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 427 {
		allmap = '47 BREAK 334 BREAK 45 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,207,0,0,0,0,0,0,0,0,0,0,211,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,207,0,0,0,0,0,0,0,0,0,0,205,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,213,0,0,0,0,0,0,0,0,0,0,211,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,206,206,207,0,0,0,0,0,211,212,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,632,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK stars_floaty BREAK 0 BREAK 1,8,368,304,zealot,10,Remain vigilant@ friend. Aeo watches,over you@ but so do...,Others...,null,null,null,null,null BREAK 2,3,-11,256.05,1,20,act6s1,1230,460 BREAK 3,3,1449,30,1,10,act6s3,50,330 BREAK 4,2,626,246.05,110,5';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_aerylSound');
		holder.createEmptyMovieClip('floatcloud', frontbgdep);
		numclouds = Math.ceil(((levelwidth / stagewidth) * levelheight / stageheight) * 2);
		i = 0;
		while (i < numclouds) {
			++count;
			holder.floatcloud.attachMovie('cloudholder', 'cloud' + i, count);
			holder.floatcloud['cloud' + i]._x = random(levelwidth);
			holder.floatcloud['cloud' + i]._y = random(levelheight);
			holder.floatcloud['cloud' + i].gotoAndStop(random(holder.floatcloud['cloud' + i]._totalframes) + 1);
			holder.floatcloud['cloud' + i].cacheAsBitmap();
			++i;
		}
		holder.floatcloud.cacheAsBitmap();
		bgam = 0.8;
		onEnterFrame = function () {
			if (!fadeout and !fadein and (holder.player._x + xspeed > levelwidth or holder.player._x + xspeed < 0)) {
				holder.player._x -= xspeed;
				xspeed = 0;
			}
			if (holder.player._x < 5) {
				holder.player._x = 5;
			}
			if (holder.player._x > levelwidth) {
				holder.player._x = levelwidth;
			}
			playercode();
			camerafollow(xcam, ycam);
			if (!game_paused) {
				if (!dying and !fadeout) {
					begxdiff = holder._x - begx;
					begydiff = holder._y - begy;
					holder.bg._x -= begxdiff * bgam;
					holder.bg._y -= begydiff * bgam;
					holder.floatcloud._x -= begxdiff * bgam * 0.5;
					holder.floatcloud._y -= begydiff * bgam * 0.5;
				}
			}
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 428 {
		allmap = '51 BREAK 333 BREAK 40 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,206,206,207,0,0,0,0,0,0,0,0,0,0,205,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,212,213,0,0,0,0,0,0,0,0,0,0,211,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,653,654,655,656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,657,658,659,660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,661,662,663,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,665,666,667,668,0,0,0,0,0,0,0,0,0,0,0,0,631,633,632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK stars_floaty BREAK 0 BREAK 1,40,419,320.05,3,0,10,0 BREAK 2,37,786,62,3 BREAK 3,40,929,319,2,-2,5,-5 BREAK 5,3,-11,243.05,1,50,act6s2,1395,40 BREAK 6,3,1288,48,1,10,act6s4,50,340';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_aerylSound');
		holder.createEmptyMovieClip('floatcloud', frontbgdep);
		numclouds = Math.ceil(((levelwidth / stagewidth) * levelheight / stageheight) * 2);
		i = 0;
		while (i < numclouds) {
			++count;
			holder.floatcloud.attachMovie('cloudholder', 'cloud' + i, count);
			holder.floatcloud['cloud' + i]._x = random(levelwidth);
			holder.floatcloud['cloud' + i]._y = random(levelheight);
			holder.floatcloud['cloud' + i].gotoAndStop(random(holder.floatcloud['cloud' + i]._totalframes) + 1);
			holder.floatcloud['cloud' + i].cacheAsBitmap();
			++i;
		}
		holder.floatcloud.cacheAsBitmap();
		bgam = 0.8;
		onEnterFrame = function () {
			if (!fadeout and !fadein and (holder.player._x + xspeed > levelwidth or holder.player._x + xspeed < 0)) {
				holder.player._x -= xspeed;
				xspeed = 0;
			}
			if (holder.player._x < 5) {
				holder.player._x = 5;
			}
			if (holder.player._x > levelwidth) {
				holder.player._x = levelwidth;
			}
			playercode();
			camerafollow(xcam, ycam);
			if (!game_paused) {
				if (!dying and !fadeout) {
					begxdiff = holder._x - begx;
					begydiff = holder._y - begy;
					holder.bg._x -= begxdiff * bgam;
					holder.bg._y -= begydiff * bgam;
					holder.floatcloud._x -= begxdiff * bgam * 0.5;
					holder.floatcloud._y -= begydiff * bgam * 0.5;
				}
			}
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 429 {
		allmap = '50 BREAK 337 BREAK 50 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,206,206,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,212,212,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,206,206,206,206,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,212,212,212,212,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,653,654,655,656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,657,658,659,660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,661,662,663,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,665,666,667,668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK stars_floaty BREAK 0 BREAK 2,3,-10,334,1,10,act6s3,1230,80 BREAK 3,3,1607,78,1,10,act6s5,50,210 BREAK 17,44,374,281 BREAK 18,44,407,280 BREAK 19,44,822,184 BREAK 20,44,856,184 BREAK 21,44,981,218 BREAK 22,44,1141,154 BREAK 23,44,1302,248 BREAK 24,44,1337,247 BREAK 25,44,1018,216 BREAK 26,2,416,441,147,5 BREAK 27,2,636,187,148,7 BREAK 28,2,1466,149,149,7';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_aerylSound');
		holder.createEmptyMovieClip('floatcloud', frontbgdep);
		numclouds = Math.ceil(((levelwidth / stagewidth) * levelheight / stageheight) * 2);
		i = 0;
		while (i < numclouds) {
			++count;
			holder.floatcloud.attachMovie('cloudholder', 'cloud' + i, count);
			holder.floatcloud['cloud' + i]._x = random(levelwidth);
			holder.floatcloud['cloud' + i]._y = random(levelheight);
			holder.floatcloud['cloud' + i].gotoAndStop(random(holder.floatcloud['cloud' + i]._totalframes) + 1);
			holder.floatcloud['cloud' + i].cacheAsBitmap();
			++i;
		}
		holder.floatcloud.cacheAsBitmap();
		bgam = 0.8;
		onEnterFrame = function () {
			if (!fadeout and !fadein and (holder.player._x + xspeed > levelwidth or holder.player._x + xspeed < 0)) {
				holder.player._x -= xspeed;
				xspeed = 0;
			}
			if (holder.player._x < 5) {
				holder.player._x = 5;
			}
			if (holder.player._x > levelwidth) {
				holder.player._x = levelwidth;
			}
			playercode();
			camerafollow(xcam, ycam);
			if (!game_paused) {
				if (!dying and !fadeout) {
					begxdiff = holder._x - begx;
					begydiff = holder._y - begy;
					holder.bg._x -= begxdiff * bgam;
					holder.bg._y -= begydiff * bgam;
					holder.floatcloud._x -= begxdiff * bgam * 0.5;
					holder.floatcloud._y -= begydiff * bgam * 0.5;
				}
			}
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 430 {
		allmap = '45 BREAK 203 BREAK 20 BREAK 72 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,206,206,206,206,207,205,206,207,0,0,0,0,0,0,0,0,0,0,0,209,209,209,209,209,210,208,209,210,0,0,0,0,0,0,0,0,0,0,0,209,209,209,209,209,210,208,209,213,0,0,0,0,0,0,0,0,0,0,0,209,209,209,209,209,210,211,213,0,0,0,0,0,0,0,0,0,0,0,0,212,212,212,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,207,205,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,213,211,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,209,209,209,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,207,208,209,210,0,0,0,0,0,205,206,206,206,207,0,0,0,208,209,209,210,208,209,210,0,0,0,0,0,211,212,212,212,213,0,0,0,211,212,212,213,211,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,209,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,206,206,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,212,212,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,632,633,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,653,654,655,656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,657,658,659,660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,661,662,663,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,665,666,667,668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK stars_floaty BREAK 0 BREAK 1,4,111,215 BREAK 2,8,209,215,zealot,10,Acolytes of Aeo jump off this cliff.,Most of them die of course@ but isn\'t,death just another way of becoming one,with Aeo?,					,Are you jumping?,null,null,null,null,null BREAK 3,41,574,730 BREAK 4,41,612,730 BREAK 5,41,27,760 BREAK 6,41,68,760 BREAK 7,41,442,1147 BREAK 8,41,483,1146 BREAK 9,41,28,1239 BREAK 10,41,66,1237 BREAK 11,41,101,1240 BREAK 12,41,125,1564 BREAK 13,41,195,1561 BREAK 14,41,161,1560 BREAK 15,41,230,1563 BREAK 16,2,160,885.05,111,5 BREAK 17,2,557,1495.05,112,7 BREAK 18,2,465,1526.05,113,7 BREAK 19,2,403,1525.05,114,7 BREAK 20,2,32,1844.05,115,1 BREAK 22,2,550,2067.05,116,1 BREAK 23,3,-10,174,1,10,act6s4,1550,140 BREAK 24,41,402,2076 BREAK 25,41,435,2076 BREAK 26,3,-9,2192.05,1,10,act6s6,2255,820 BREAK 27,8,117,2203.05,zealot,10,My friend@ your pilgrimage is admirable.,My brethren commend your dedication,to Aeo. I feel I must warn you though...,Beyond this point are zealots@ driven,mad by their religious fervor@ they,attack anyone that looks different from,them. From us.,null,null,null,null,null BREAK 28,2,147,1847,150,1 BREAK 29,2,611,1298.05,151,5 BREAK 30,2,544,500.05,152,7 BREAK 31,2,450,502.05,153,7';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_aerylSound');
		holder.createEmptyMovieClip('floatcloud', frontbgdep);
		numclouds = Math.ceil(((levelwidth / stagewidth) * levelheight / stageheight) * 2);
		i = 0;
		while (i < numclouds) {
			++count;
			holder.floatcloud.attachMovie('cloudholder', 'cloud' + i, count);
			holder.floatcloud['cloud' + i]._x = random(levelwidth);
			holder.floatcloud['cloud' + i]._y = random(levelheight);
			holder.floatcloud['cloud' + i].gotoAndStop(random(holder.floatcloud['cloud' + i]._totalframes) + 1);
			holder.floatcloud['cloud' + i].cacheAsBitmap();
			++i;
		}
		holder.floatcloud.cacheAsBitmap();
		bgam = 0.8;
		onEnterFrame = function () {
			if (!fadeout and !fadein and (holder.player._x + xspeed > levelwidth or holder.player._x + xspeed < 0)) {
				holder.player._x -= xspeed;
				xspeed = 0;
			}
			if (holder.player._x < 5) {
				holder.player._x = 5;
			}
			if (holder.player._x > levelwidth) {
				holder.player._x = levelwidth;
			}
			playercode();
			camerafollow(xcam, ycam);
			if (!game_paused) {
				if (!dying and !fadeout) {
					begxdiff = holder._x - begx;
					begydiff = holder._y - begy;
					holder.bg._x -= begxdiff * bgam;
					holder.bg._y -= begydiff * bgam;
					holder.floatcloud._x -= begxdiff * bgam * 0.5;
					holder.floatcloud._y -= begydiff * bgam * 0.5;
				}
			}
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 431 {
		allmap = '2255 BREAK 807 BREAK 72 BREAK 30 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,207,205,206,206,207,205,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,212,208,209,209,210,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,207,0,0,0,0,0,0,0,208,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,213,0,0,0,0,0,0,0,211,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,206,206,207,0,0,0,205,206,206,206,206,206,207,208,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,209,209,210,0,0,0,208,209,209,209,209,209,210,208,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,212,212,213,0,0,0,211,212,212,212,212,212,213,208,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,210,205,206,206,207,0,0,0,0,205,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,210,208,209,209,210,0,0,0,0,208,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,213,208,209,209,210,0,0,0,0,211,212,212,213,0,0,0,0,205,207,205,206,206,207,205,206,206,206,207,205,206,206,207,205,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,211,213,208,209,209,209,208,209,209,209,210,209,209,209,210,211,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,212,208,209,209,209,210,212,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,212,213,0,0,0,0,0,0,0,0,0,205,206,207,205,206,206,206,206,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,210,208,209,209,209,209,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,213,208,209,209,209,209,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,212,212,212,212,213,0,0,0,205,206,206,206,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,212,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,702,703,704,0,0,0,0,703,704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,706,707,0,0,0,705,706,707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,708,709,710,0,0,0,708,709,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,653,654,655,656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,657,658,659,660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,661,662,663,664,0,631,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,632,631,0,0,0,0,0,631,665,666,667,668,632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,698,699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,647,637,637,638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,698,699,634,635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,647,637,637,637,637,650,684,685,651,638,0,0,0,0,0,0,653,654,655,656,0,0,0,698,699,698,699,634,635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,647,650,648,684,685,648,648,686,687,640,640,639,0,0,0,0,0,657,658,659,660,0,634,635,698,699,698,699,698,699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,686,687,648,648,0,0,0,0,0,0,0,0,0,0,661,662,663,664,0,698,699,698,699,698,699,698,699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,648,652,643,643,0,0,0,0,0,0,0,0,0,0,665,666,667,668,631,700,701,700,701,700,701,700,701,633,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,643,641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,702,703,704,702,703,704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,706,707,705,706,707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,708,709,710,708,709,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK stars_floaty BREAK 7 BREAK 1,37,1669,470.05,3 BREAK 2,37,444,187.05,3 BREAK 3,3,2315,772,1,10,act6s5,50,2190 BREAK 4,43,1008,180,3 BREAK 5,3,-10,432,1,20,act6s7,2255,460 BREAK 6,2,893,181,126,7 BREAK 7,2,933,183,127,7 BREAK 8,2,2182,827,154,1 BREAK 9,2,1758,725,155,7 BREAK 10,2,1117,633,156,7 BREAK 11,2,623,280,157,7 BREAK 12,2,572,569,158,7';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_aerylSound');
		holder.createEmptyMovieClip('floatcloud', frontbgdep);
		numclouds = Math.ceil(((levelwidth / stagewidth) * levelheight / stageheight) * 2);
		i = 0;
		while (i < numclouds) {
			++count;
			holder.floatcloud.attachMovie('cloudholder', 'cloud' + i, count);
			holder.floatcloud['cloud' + i]._x = random(levelwidth);
			holder.floatcloud['cloud' + i]._y = random(levelheight);
			holder.floatcloud['cloud' + i].gotoAndStop(random(holder.floatcloud['cloud' + i]._totalframes) + 1);
			holder.floatcloud['cloud' + i].cacheAsBitmap();
			++i;
		}
		holder.floatcloud.cacheAsBitmap();
		bgam = 0.8;
		onEnterFrame = function () {
			if (!fadeout and !fadein and (holder.player._x + xspeed > levelwidth or holder.player._x + xspeed < 0)) {
				holder.player._x -= xspeed;
				xspeed = 0;
			}
			if (holder.player._x < 5) {
				holder.player._x = 5;
			}
			if (holder.player._x > levelwidth) {
				holder.player._x = levelwidth;
			}
			playercode();
			camerafollow(xcam, ycam);
			if (!game_paused) {
				if (!dying and !fadeout) {
					begxdiff = holder._x - begx;
					begydiff = holder._y - begy;
					holder.bg._x -= begxdiff * bgam;
					holder.bg._y -= begydiff * bgam;
					holder.floatcloud._x -= begxdiff * bgam * 0.5;
					holder.floatcloud._y -= begydiff * bgam * 0.5;
				}
			}
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 432 {
		allmap = '2255 BREAK 457 BREAK 72 BREAK 30 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,207,205,206,206,206,206,206,207,205,206,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,212,208,209,209,209,209,209,210,212,212,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,212,212,212,213,0,0,0,0,0,0,0,0,0,0,205,206,206,207,0,0,0,0,0,0,0,0,205,206,207,205,206,206,206,206,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,209,210,0,0,0,0,0,0,0,0,211,212,213,208,209,209,209,209,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,213,0,0,0,0,0,0,0,0,0,0,0,208,209,209,209,209,209,209,210,205,206,206,206,206,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,212,212,212,212,213,208,209,209,209,209,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,212,212,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,207,205,206,206,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,210,208,209,209,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,207,208,209,210,211,212,212,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,209,210,208,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,209,210,211,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,207,208,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,210,211,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,206,206,207,0,0,0,205,207,0,0,0,205,207,0,0,0,0,211,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,209,209,210,0,0,0,208,210,0,0,0,208,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,209,209,210,0,0,0,208,210,0,0,0,208,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,653,654,655,656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,657,658,659,660,0,688,689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,661,662,663,664,0,690,691,694,695,694,695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,631,0,665,666,667,668,0,692,693,696,697,696,697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,688,689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,694,695,690,691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,632,631,696,697,692,693,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0,0,0,644,649,646,652,641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,644,649,640,639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,645,646,640,639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,645,646,651,638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,632,647,650,646,651,638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,632,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK stars_floaty BREAK 0 BREAK 1,38,1705,283.05,9 BREAK 2,43,784,338,3 BREAK 3,43,812,597,3 BREAK 4,3,2312,463,1,10,act6s6,50,470 BREAK 5,2,963,344.05,123,1 BREAK 6,2,1193,340.05,124,5 BREAK 7,2,968,600.05,125,7 BREAK 8,3,-5,827.05,1,10,act6s8,750,1490 BREAK 9,2,2141,468.05,159,7 BREAK 10,2,1464,407.05,160,7 BREAK 11,2,257,856.05,161,1';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_aerylSound');
		holder.createEmptyMovieClip('floatcloud', frontbgdep);
		numclouds = Math.ceil(((levelwidth / stagewidth) * levelheight / stageheight) * 2);
		i = 0;
		while (i < numclouds) {
			++count;
			holder.floatcloud.attachMovie('cloudholder', 'cloud' + i, count);
			holder.floatcloud['cloud' + i]._x = random(levelwidth);
			holder.floatcloud['cloud' + i]._y = random(levelheight);
			holder.floatcloud['cloud' + i].gotoAndStop(random(holder.floatcloud['cloud' + i]._totalframes) + 1);
			holder.floatcloud['cloud' + i].cacheAsBitmap();
			++i;
		}
		holder.floatcloud.cacheAsBitmap();
		bgam = 0.8;
		onEnterFrame = function () {
			if (!fadeout and !fadein and (holder.player._x + xspeed > levelwidth or holder.player._x + xspeed < 0)) {
				holder.player._x -= xspeed;
				xspeed = 0;
			}
			if (holder.player._x < 5) {
				holder.player._x = 5;
			}
			if (holder.player._x > levelwidth) {
				holder.player._x = levelwidth;
			}
			playercode();
			camerafollow(xcam, ycam);
			if (!game_paused) {
				if (!dying and !fadeout) {
					begxdiff = holder._x - begx;
					begydiff = holder._y - begy;
					holder.bg._x -= begxdiff * bgam;
					holder.bg._y -= begydiff * bgam;
					holder.floatcloud._x -= begxdiff * bgam * 0.5;
					holder.floatcloud._y -= begydiff * bgam * 0.5;
				}
			}
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 433 {
		allmap = '752 BREAK 1486 BREAK 25 BREAK 50 BREAK 0,0,0,0,0,0,0,0,0,0,0,205,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,216,205,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,209,209,209,210,0,0,0,205,206,206,206,207,0,0,0,0,0,0,0,0,0,0,0,211,212,212,215,209,210,0,0,0,211,212,212,212,213,0,0,0,0,0,0,0,205,207,0,0,0,0,0,208,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,213,0,0,0,0,0,208,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,216,206,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,212,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,206,207,0,0,0,0,0,205,206,206,206,206,206,206,207,0,0,0,0,0,0,0,0,0,212,212,213,0,0,0,0,0,211,212,212,212,212,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,206,206,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,209,209,209,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,209,209,209,209 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,121,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK stars_floaty BREAK 0 BREAK 2,37,17,1570.05,3 BREAK 6,40,574,1529.05,-3,-3,-10,-10 BREAK 7,43,491,759,3 BREAK 10,40,195,282,-1,-2,-5,-10 BREAK 13,40,416,696,0,-3,0,-5 BREAK 14,40,323,414,0,3,0,5 BREAK 15,3,81,29,5,3,act6s1,640,875 BREAK 16,3,807,1455,1,20,act6s7,50,850 BREAK 17,2,657,665,162,7 BREAK 18,2,762,532,163,5 BREAK 19,2,67,1106,164,7 BREAK 20,2,481,181,178,2';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_aerylSound');
		holder.createEmptyMovieClip('floatcloud', frontbgdep);
		numclouds = Math.ceil(((levelwidth / stagewidth) * levelheight / stageheight) * 2);
		i = 0;
		while (i < numclouds) {
			++count;
			holder.floatcloud.attachMovie('cloudholder', 'cloud' + i, count);
			holder.floatcloud['cloud' + i]._x = random(levelwidth);
			holder.floatcloud['cloud' + i]._y = random(levelheight);
			holder.floatcloud['cloud' + i].gotoAndStop(random(holder.floatcloud['cloud' + i]._totalframes) + 1);
			holder.floatcloud['cloud' + i].cacheAsBitmap();
			++i;
		}
		holder.floatcloud.cacheAsBitmap();
		bgam = 0.8;
		if (actions[62]) {
			++count;
			holder.attachMovie('zealotfallcutscene', 'cutscene', count);
			holder.cutscene._x = 604;
			holder.cutscene._y = 448;
			holder.cutscene.gotoAndStop(holder.cutscene._totalframes);
		}
		++count;
		holder.nohtobjects.attachMovie('computer2', 'computer', count);
		holder.nohtobjects.computer._x = 716;
		holder.nohtobjects.computer._y = 224;
		holder.nohtobjects.computer.myActions = function () {
			if (!actions[62] and this.msg2delivered and msgbox._visible == false) {
				actions[62] = true;
				++count;
				holder.attachMovie('zealotfallcutscene', 'cutscene', count);
				holder.cutscene._x = 604;
				holder.cutscene._y = 448;
			}
			if (!actions[62] and this.msgdelivered and msgbox._visible == false) {
				mesarr = new Array();
				mesarr[0] = 'AAAAAIIIIIIEEEEEE!!!!!!!!';
				_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'zealot');
				this.msg2delivered = true;
			}
			if (this.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true)) {
				_root.giveExclamation();
				if (Key.isDown(40) or Key.isDown(83)) {
					if (_root.msgbox._visible == false and _root.msgbreather == 0) {
						playsound('computer1Sound');
						mesarr = new Array();
						if (effectScience <= 0 and !actions[84]) {
							mesarr[0] = '0110000101100101011011110011010001100';
							mesarr[1] = '101011101100110010101110010';
						} else {
							actions[84] = true;
							potionsowned[3] = 1;
							potionsowned[11] = 1;
							mesarr[0] = 'Improving my jump was easy, all it took';
							mesarr[1] = 'was Heartfruit, Gasrock and of course';
							mesarr[2] = 'the sacred Vasberry. But flying? Years';
							mesarr[3] = 'I\'ve struggled, and I think I have finally';
							mesarr[4] = 'found the answer. Gasrock, Vasberry -';
							mesarr[5] = 'and the mysterious Kzal Chert. Soon I';
							mesarr[6] = 'will be one with Aeo.';
							mesarr[7] = '...Or maybe I AM Aeo, reborn?';
							this.msgdelivered = true;
						}
						_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'computer');
					}
				}
			}
		};
		onEnterFrame = function () {
			if (!fadeout and !fadein and (holder.player._x + xspeed > levelwidth or holder.player._x + xspeed < 0)) {
				holder.player._x -= xspeed;
				xspeed = 0;
			}
			if (holder.player._x < 5) {
				holder.player._x = 5;
			}
			if (holder.player._x > levelwidth) {
				holder.player._x = levelwidth;
			}
			playercode();
			camerafollow(xcam, ycam);
			if (!game_paused) {
				if (!dying and !fadeout) {
					begxdiff = holder._x - begx;
					begydiff = holder._y - begy;
					holder.bg._x -= begxdiff * bgam;
					holder.bg._y -= begydiff * bgam;
					holder.floatcloud._x -= begxdiff * bgam * 0.5;
					holder.floatcloud._y -= begydiff * bgam * 0.5;
				}
			}
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 434 {
		allmap = '1550 BREAK 813 BREAK 50 BREAK 30 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,206,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,209,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,212,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,206,206,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,209,209,209,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,212,212,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK stars_floaty BREAK 0 BREAK 1,44,1329,731 BREAK 2,44,1168,634 BREAK 3,44,949,569 BREAK 4,44,885,504 BREAK 5,44,822,441 BREAK 6,44,629,346 BREAK 7,44,467,273 BREAK 8,44,309,184 BREAK 9,44,1138,634 BREAK 10,3,1605,813.05,1,10,act6s1,50,310 BREAK 11,3,-6,70,1,10,act6s10,1550,110 BREAK 12,44,1105,634 BREAK 13,44,981,569 BREAK 14,44,661,346 BREAK 15,44,500,271 BREAK 16,44,339,184 BREAK 17,44,788,440';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_aerylSound');
		holder.createEmptyMovieClip('floatcloud', frontbgdep);
		numclouds = Math.ceil(((levelwidth / stagewidth) * levelheight / stageheight) * 2);
		i = 0;
		while (i < numclouds) {
			++count;
			holder.floatcloud.attachMovie('cloudholder', 'cloud' + i, count);
			holder.floatcloud['cloud' + i]._x = random(levelwidth);
			holder.floatcloud['cloud' + i]._y = random(levelheight);
			holder.floatcloud['cloud' + i].gotoAndStop(random(holder.floatcloud['cloud' + i]._totalframes) + 1);
			holder.floatcloud['cloud' + i].cacheAsBitmap();
			++i;
		}
		holder.floatcloud.cacheAsBitmap();
		bgam = 0.8;
		onEnterFrame = function () {
			if (!fadeout and !fadein and (holder.player._x + xspeed > levelwidth or holder.player._x + xspeed < 0)) {
				holder.player._x -= xspeed;
				xspeed = 0;
			}
			if (holder.player._x < 5) {
				holder.player._x = 5;
			}
			if (holder.player._x > levelwidth) {
				holder.player._x = levelwidth;
			}
			playercode();
			camerafollow(xcam, ycam);
			if (!game_paused) {
				if (!dying and !fadeout) {
					begxdiff = holder._x - begx;
					begydiff = holder._y - begy;
					holder.bg._x -= begxdiff * bgam;
					holder.bg._y -= begydiff * bgam;
					holder.floatcloud._x -= begxdiff * bgam * 0.5;
					holder.floatcloud._y -= begydiff * bgam * 0.5;
				}
			}
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 435 {
		allmap = '1551 BREAK 109 BREAK 50 BREAK 30 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,206,206,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,209,209,209,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,212,212,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,206,206,207,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,218,205,206,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,206,206,206,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,212,212,212,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,206,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,209,209,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,212,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,206,206,206,206,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,209,209,209,209,209,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,209,209,209,209,209,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,212,212,212,212,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,121,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,124,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,631,632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK stars_floaty BREAK 0 BREAK 2,28,64,463,63 BREAK 3,8,850,473,zealot,10,Trust in Aeo.,Your faith will carry you.,null,null,null,null BREAK 4,43,1101,657,3 BREAK 5,3,1610,82,1,10,act6s9,50,110 BREAK 6,3,1607,782.05,1,10,act6s11,50,620 BREAK 7,2,1040,343,179,5 BREAK 8,2,1278,216,180,5';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_aerylSound');
		if (!actions[68] and !actions[23]) {
			++count;
			holder.background.attachMovie('objects', 'ship', count);
			holder.background.ship.gotoAndStop(45);
			holder.background.ship._x = 1536;
			holder.background.ship._y = 530;
			custarr = [1, 8, 1440, 530, 'oldman', 11, 'Yes, yes, these people are all about the', 'jumping and flying. But I get the sense', 'that you could use some of these', 'ingredients to improve other traits.', 'What about replacing the Effluvian', 'Gasrock from the jump recipe with', 'Ashima Sparkdust?'];
			++count;
			holder.objects.attachMovie('objects', 'oldman', count);
			holder.objects.oldman._x = custarr[2];
			holder.objects.oldman._y = custarr[3];
			holder.objects.oldman.specarr = new Array();
			holder.objects.oldman.specarr = custarr;
		}
		holder.createEmptyMovieClip('floatcloud', frontbgdep);
		numclouds = Math.ceil(((levelwidth / stagewidth) * levelheight / stageheight) * 2);
		i = 0;
		while (i < numclouds) {
			++count;
			holder.floatcloud.attachMovie('cloudholder', 'cloud' + i, count);
			holder.floatcloud['cloud' + i]._x = random(levelwidth);
			holder.floatcloud['cloud' + i]._y = random(levelheight);
			holder.floatcloud['cloud' + i].gotoAndStop(random(holder.floatcloud['cloud' + i]._totalframes) + 1);
			holder.floatcloud['cloud' + i].cacheAsBitmap();
			++i;
		}
		holder.floatcloud.cacheAsBitmap();
		bgam = 0.8;
		onEnterFrame = function () {
			if (holder.player.hitTest(holder.objects.oldman) and (Key.isDown(40) or Key.isDown(83))) {
				potionsowned[4] = 1;
				trace(potionsowned[4]);
			}
			if (!fadeout and !fadein and (holder.player._x + xspeed > levelwidth or holder.player._x + xspeed < 0)) {
				holder.player._x -= xspeed;
				xspeed = 0;
			}
			if (holder.player._x < 5) {
				holder.player._x = 5;
			}
			if (holder.player._x > levelwidth) {
				holder.player._x = levelwidth;
			}
			playercode();
			camerafollow(xcam, ycam);
			if (!game_paused) {
				if (!dying and !fadeout) {
					begxdiff = holder._x - begx;
					begydiff = holder._y - begy;
					holder.bg._x -= begxdiff * bgam;
					holder.bg._y -= begydiff * bgam;
					holder.floatcloud._x -= begxdiff * bgam * 0.5;
					holder.floatcloud._y -= begydiff * bgam * 0.5;
				}
			}
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 436 {
		allmap = '49 BREAK 614 BREAK 72 BREAK 30 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,207,0,0,0,0,205,207,0,0,205,207,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,213,0,0,0,0,211,213,0,0,211,213,0,0,0,205,206,206,206,206,206,206,206,206,207,208,209,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,206,206,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,209,209,209,209,209,209,209,210,208,209,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,209,209,209,209,0,0,0,0,0,0,0,0,0,0,0,0,0,205,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,212,212,212,212,212,212,213,208,209,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,209,209,209,209,0,0,0,0,0,0,0,0,0,0,0,0,0,211,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,209,209,209,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,212,212,212,0,0,0,0,0,0,205,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,206,206,206,207,205,206,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,206,207,217,209,209,209,209,209,210,209,209,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,206,206,206,207,0,0,0,0,0,0,208,209,209,209,209,209,209,209,209,209,209,210,212,212,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,209,209,209,209,210,205,206,206,207,0,0,211,212,212,212,212,212,212,212,212,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,212,212,212,213,208,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,206,206,207,205,206,206,206,207,205,206,206,206,207,0,0,0,0,0,0,0,0,0,0,211,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,209,209,209,210,208,209,209,209,210,208,209,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,212,212,213,208,209,209,209,210,211,212,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,206,206,206,206,206,206,207,205,206,206,206,206,207,0,0,0,0,0,0,0,0,0,211,212,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,209,209,209,209,209,209,210,208,209,209,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,209,209,209,209,209,209,210,211,212,212,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,212,212,212,212,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,653,654,655,656,0,0,0,0,647,637,637,638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,657,658,659,660,0,0,0,0,650,643,643,651,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,631,632,632,0,0,0,0,0,637,638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,631,632,0,0,0,0,0,0,0,0,0,0,0,0,0,661,662,663,664,0,0,0,0,642,642,642,642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,646,651,638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,665,666,667,668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,646,648,640,639,0,0,0,0,0,0,0,0,0,0,0,647,637,637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,648,0,0,0,0,0,646,648,640,639,0,0,0,0,0,0,0,0,0,0,647,650,640,640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,647,650,648,648,0,0,0,0,0,646,648,640,639,0,0,0,0,0,0,0,0,0,647,650,640,640,640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,647,650,648,648,648,648,0,0,0,644,646,648,648,638,0,0,0,0,0,647,637,637,637,650,650,640,652,641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,635,0,0,0,0,0,0,0,0,0,0,0,645,646,648,684,685,648,648,648,641,0,0,644,649,648,651,638,0,0,0,645,646,640,640,640,640,640,652,641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,698,699,0,0,0,0,0,0,0,0,0,0,0,645,646,648,686,687,648,652,641,0,0,0,0,644,649,648,651,638,0,631,631,644,643,643,643,643,643,641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,698,699,634,635,0,0,0,0,0,0,0,0,0,645,646,648,648,648,652,641,0,0,0,0,0,0,644,648,648,648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,635,698,699,698,699,634,635,0,0,0,0,0,0,0,647,650,648,648,652,641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,702,703,704,698,699,698,699,698,699,698,699,0,0,0,0,0,0,0,0,0,0,0,0,0,633,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,706,707,698,699,698,699,698,699,698,699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,653,654,655,656,0,653,654,655,656,0,0,0,0,0,631,708,709,710,700,701,700,701,700,701,700,701,632,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,657,658,659,660,0,657,658,659,660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,661,662,663,664,0,661,662,663,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,665,666,667,668,0,665,666,667,668,0,0,0,0,0,0,0,0,0,648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,647,650,648,648,648,648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,647,650,648,648,648,648,648,648,652,641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,647,650,648,684,685,648,648,643,643,641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,647,650,651,638,0,0,647,650,648,648,686,687,648,652,641,642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,645,646,648,648,651,637,637,650,648,684,685,648,648,652,641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,645,646,648,648,648,648,648,648,648,686,687,648,652,641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,644,643,643,643,643,649,648,648,648,648,652,641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,642,642,642,644,643,643,643,643,641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,642,642,642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK stars_floaty BREAK 0 BREAK 1,38,937,399.2,9 BREAK 2,43,1264,153,3 BREAK 3,43,274,632,3 BREAK 4,38,1775,253,9 BREAK 5,43,1874,379,3 BREAK 6,3,-8,582,1,10,act6s10,1550,790 BREAK 7,40,2016,341,0,-2,0,-5 BREAK 8,40,2179,122,2,-2,4,-5 BREAK 9,3,2225,16,5,2,act6s1,640,875 BREAK 10,2,1282,441.05,120,11 BREAK 11,2,1216,152,121,11 BREAK 12,2,927,116,122,11 BREAK 13,2,1039,537,146,11';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_aerylSound');
		holder.createEmptyMovieClip('floatcloud', frontbgdep);
		numclouds = Math.ceil(((levelwidth / stagewidth) * levelheight / stageheight) * 2);
		i = 0;
		while (i < numclouds) {
			++count;
			holder.floatcloud.attachMovie('cloudholder', 'cloud' + i, count);
			holder.floatcloud['cloud' + i]._x = random(levelwidth);
			holder.floatcloud['cloud' + i]._y = random(levelheight);
			holder.floatcloud['cloud' + i].gotoAndStop(random(holder.floatcloud['cloud' + i]._totalframes) + 1);
			holder.floatcloud['cloud' + i].cacheAsBitmap();
			++i;
		}
		holder.floatcloud.cacheAsBitmap();
		bgam = 0.8;
		onEnterFrame = function () {
			if (!fadeout and !fadein and (holder.player._x + xspeed > levelwidth or holder.player._x + xspeed < 0)) {
				holder.player._x -= xspeed;
				xspeed = 0;
			}
			if (holder.player._x < 5) {
				holder.player._x = 5;
			}
			if (holder.player._x > levelwidth) {
				holder.player._x = levelwidth;
			}
			playercode();
			camerafollow(xcam, ycam);
			if (!game_paused) {
				if (!dying and !fadeout) {
					begxdiff = holder._x - begx;
					begydiff = holder._y - begy;
					holder.bg._x -= begxdiff * bgam;
					holder.bg._y -= begydiff * bgam;
					holder.floatcloud._x -= begxdiff * bgam * 0.5;
					holder.floatcloud._y -= begydiff * bgam * 0.5;
				}
			}
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 437 {
		allmap = '464 BREAK 840 BREAK 50 BREAK 30 BREAK 228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,227,227,227,227,227,227,227,227,227,227,227,227,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,227,227,227,227,227,227,227,227,227,227,227,227,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,227,227,227,227,227,227,227,227,227,227,227,227,228,231,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,227,227,227,227,227,227,227,227,227,227,227,227,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,227,227,227,227,227,227,227,227,227,227,227,227,231,228,223,0,0,0,0,219,220,220,220,220,220,220,220,220,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,227,227,227,227,227,227,227,227,227,227,227,227,231,228,223,0,0,0,0,222,227,227,227,227,227,227,227,227,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,227,227,227,227,227,227,227,227,227,227,227,227,231,228,223,0,0,0,0,224,225,225,225,225,225,225,225,225,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,227,227,227,227,227,227,227,227,227,227,227,227,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,227,227,227,227,227,227,227,227,227,227,227,227,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,227,227,227,227,227,227,227,227,227,227,227,227,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,227,227,227,227,227,227,227,227,227,227,227,227,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,227,227,227,227,227,227,227,227,227,227,227,227,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,227,227,227,227,227,227,227,227,227,227,227,227,228,231,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,227,227,227,227,227,227,227,227,227,227,227,227,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,227,227,227,227,227,227,227,227,227,227,227,227,228,231,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,227,227,227,227,227,227,227,227,227,227,227,227,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,227,227,227,227,227,227,227,227,227,227,227,227,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,227,227,227,227,227,227,227,227,227,227,227,227,231,228,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,227,227,227,227,227,227,227,227,227,227,227,227,231,228,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,225,225,225,225,225,225,225,225,225,225,225,225,231,228,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,230,230,229,229,231,228,228,228,228,228,231,228,228,228,229,229,228,231,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,230,230,229,229,231,228,228,231,231,228,228,231,228,231,229,229,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,228,231,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,231,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229,229,223,219,220,220,220,221,0,0,0,0,0,0,219,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,230,230,223,222,229,230,230,223,0,0,0,0,0,0,222,230,230,229,227,227,229,229,227,227,229,229,227,227,229,229,227,227,230,230,227,227,229,229,227,227,229,229,227,227,229,229,227,227,229,229,230,230,223,222,229,230,230,223,0,0,0,0,0,0,222,230,230,229,231,228,229,229,228,228,229,229,228,228,229,229,228,231,230,230,228,228,229,229,228,228,229,229,231,228,229,229,228,228,229,229 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,712,0,0,0,0,0,0,711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,713,0,0,0,0,0,0,713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,714,0,0,0,0,0,0,714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,714,0,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,711,0,0,0,0,0,0,711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,713,0,653,654,655,656,0,713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,713,0,0,0,0,0,0,0,0,0,0,0,0,711,0,0,0,0,713,0,657,658,659,660,0,713,0,0,0,0,0,0,712,0,0,0,0,712,721,722,723,721,722,723,721,722,0,0,0,0,713,0,0,0,0,0,0,0,0,0,0,0,0,713,0,0,0,0,713,0,661,662,663,664,0,713,0,0,0,0,0,0,713,0,0,0,0,713,724,725,726,724,725,726,724,725,0,0,0,0,714,0,0,0,0,0,0,0,0,0,631,631,0,714,0,0,0,0,714,0,665,666,667,668,0,714,0,0,631,632,631,0,714,0,0,0,0,714,727,728,729,727,728,729,727,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK stars_floaty BREAK 0 BREAK 2,3,351,943.05,10,2,act6s1,640,110 BREAK 3,3,1607,818,1,10,act6s13,50,1490 BREAK 4,2,338,151,117,11 BREAK 5,2,433,152,118,11 BREAK 6,2,1138,630,119,7 BREAK 7,8,679,854.05,zealot,10,Wh-WHAT?!,How did you get here? I have stood,vigil for so long@ is it possible@ finally...,You are Aeo reborn? I am not worthy!,null,null,null BREAK 8,2,191,854.05,137,7 BREAK 9,2,873,860.05,138,7 BREAK 10,2,1135,855.05,139,11 BREAK 11,2,1287,852.05,140,11 BREAK 12,2,112,856,141,5';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_aerylSound');
		holder.createEmptyMovieClip('floatcloud', frontbgdep);
		numclouds = Math.ceil(((levelwidth / stagewidth) * levelheight / stageheight) * 2);
		i = 0;
		while (i < numclouds) {
			++count;
			holder.floatcloud.attachMovie('cloudholder', 'cloud' + i, count);
			holder.floatcloud['cloud' + i]._x = random(levelwidth);
			holder.floatcloud['cloud' + i]._y = random(levelheight);
			holder.floatcloud['cloud' + i].gotoAndStop(random(holder.floatcloud['cloud' + i]._totalframes) + 1);
			holder.floatcloud['cloud' + i].cacheAsBitmap();
			++i;
		}
		holder.floatcloud.cacheAsBitmap();
		bgam = 0.8;
		onEnterFrame = function () {
			if (!fadeout and !fadein and (holder.player._x + xspeed > levelwidth or holder.player._x + xspeed < 0)) {
				holder.player._x -= xspeed;
				xspeed = 0;
			}
			if (holder.player._x < 5) {
				holder.player._x = 5;
			}
			if (holder.player._x > levelwidth) {
				holder.player._x = levelwidth;
			}
			playercode();
			camerafollow(xcam, ycam);
			if (!game_paused) {
				if (!dying and !fadeout) {
					begxdiff = holder._x - begx;
					begydiff = holder._y - begy;
					holder.bg._x -= begxdiff * bgam;
					holder.bg._y -= begydiff * bgam;
					holder.floatcloud._x -= begxdiff * bgam * 0.5;
					holder.floatcloud._y -= begydiff * bgam * 0.5;
				}
			}
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 438 {
		allmap = '52 BREAK 1483 BREAK 20 BREAK 50 BREAK 228,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,222,228,228,228,228,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,222,228,228,228,228,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,222,228,228,228,228,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,222,228,228,228,228,228,228,223,0,0,0,219,220,220,220,220,221,0,0,0,222,228,228,228,228,228,228,223,0,0,0,224,225,225,225,225,226,0,0,0,222,228,228,228,228,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,222,228,228,228,228,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,222,228,228,228,228,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,222,228,228,228,228,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,222,228,228,228,228,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,222,228,228,228,228,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,222,228,228,228,228,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,222,228,228,228,228,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,222,228,228,228,228,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,222,228,228,228,228,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,222,228,228,228,228,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,222,228,228,228,228,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,222,228,228,228,228,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,222,228,228,228,228,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,222,228,228,228,228,228,229,223,0,0,0,0,0,0,0,0,0,0,0,0,222,229,228,228,228,227,227,223,219,220,221,0,0,0,0,0,0,219,220,221,222,227,227,228,228,227,227,223,224,225,226,0,0,0,0,0,0,224,225,226,222,227,227,228,228,228,229,223,0,0,0,0,0,0,0,0,0,0,0,0,222,229,228,228,228,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,222,228,228,228,228,228,229,223,0,0,0,0,0,0,0,0,0,0,0,0,222,229,228,228,228,227,227,223,219,220,221,0,0,0,0,0,0,219,220,221,222,227,227,228,228,227,227,223,224,225,226,0,0,0,0,0,0,224,225,226,222,227,227,228,228,228,229,223,0,0,0,0,0,0,0,0,0,0,0,0,222,229,228,228,228,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,222,228,228,228,228,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,222,228,228,228,228,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,222,228,228,228,228,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,222,228,228,228,228,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,222,228,228,228,228,228,229,223,0,0,0,0,0,0,0,0,0,0,0,0,222,229,228,228,228,227,227,223,219,220,221,0,0,0,0,0,0,219,220,221,222,227,227,228,228,227,227,223,224,225,226,0,0,0,0,0,0,224,225,226,222,227,227,228,228,228,229,223,0,0,0,0,0,0,0,0,0,0,0,0,222,229,228,228,228,228,228,223,0,0,0,0,0,0,0,0,0,0,0,0,222,228,228,228,228,228,229,223,0,0,0,0,0,0,0,0,0,0,0,0,222,229,228,228,228,227,227,223,219,220,221,0,0,0,0,0,0,219,220,221,222,227,227,228,228,227,227,223,224,225,226,0,0,0,0,0,0,224,225,226,222,227,227,228,228,228,229,223,0,0,0,0,0,0,0,0,0,0,0,0,222,229,228,228,225,225,225,226,0,0,0,0,0,0,0,0,0,0,0,0,222,228,228,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,228,228,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,228,228,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,225,225,225,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,229,229,228,228,228,228,228,231,231,228,228,228,231,231,228,228,228,228,229,229,229,229,228,228,228,228,231,231,231,231,228,228,228,228,228,228,228,228,229,229 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,722,723,0,0,0,0,0,0,721,722,723,0,0,0,0,0,0,0,0,724,725,726,0,0,0,0,0,0,724,725,726,0,0,0,0,0,0,0,0,727,728,729,0,0,0,0,0,0,727,728,729,0,0,0,0,0,0,0,0,721,722,723,721,722,723,721,722,723,721,722,723,0,0,0,0,0,0,0,0,724,725,726,724,725,726,724,725,726,724,725,726,0,0,0,0,0,0,0,0,727,728,729,727,728,729,727,728,729,727,728,729,0,0,0,0,0,0,0,0,721,722,723,0,0,0,0,0,0,721,722,723,0,0,0,0,0,0,0,0,724,725,726,0,0,0,0,0,0,724,725,726,0,0,0,0,0,0,0,0,727,728,729,0,0,0,0,0,0,727,728,729,0,0,0,0,0,0,0,0,721,722,723,721,722,723,721,722,723,721,722,723,0,0,0,0,0,0,0,0,724,725,726,724,725,726,724,725,726,724,725,726,0,0,0,0,0,0,0,0,727,728,729,727,728,729,727,728,729,727,728,729,0,0,0,0,0,0,0,0,0,0,0,721,722,723,721,722,723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,724,725,726,724,725,726,0,0,0,0,0,0,0,0,0,0,0,0,711,0,727,728,729,727,728,729,0,0,0,0,0,0,0,0,0,0,0,0,713,0,0,0,0,0,0,0,0,711,0,0,0,0,0,0,0,0,0,0,713,0,0,0,0,0,0,0,0,713,0,0,0,0,0,0,0,0,0,0,714,0,0,0,0,0,0,0,0,714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,712,0,0,0,0,0,0,0,0,712,0,0,0,0,0,0,0,0,0,0,713,0,0,0,0,0,0,0,0,713,0,0,0,0,0,0,0,0,0,0,714,0,0,0,0,0,0,0,0,714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,713,0,0,0,0,0,0,0,0,711,0,0,0,0,0,0,0,0,0,0,713,0,0,0,0,0,0,0,0,713,0,0,0,0,0,0,0,0,0,0,713,0,0,0,0,0,0,0,0,713,0,0,0,0,0,0,0,0,0,0,714,0,0,0,0,0,0,0,0,714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,712,0,0,0,0,0,0,0,0,712,0,0,0,0,0,0,0,0,0,0,713,0,0,0,0,0,0,0,0,713,0,0,0,0,0,0,0,0,0,0,714,0,0,0,0,0,0,0,0,714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,722,723,712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,724,725,726,713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,727,728,729,714,0,0,631,632,632,631,0,0,631,632,632,633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK stars_floaty BREAK 0 BREAK 1,4,319,120 BREAK 2,3,-2,1458.05,1,10,act6s12,1550,850';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_aerylSound');
		if (!actions[65] or !actions[23]) {
			custarr = [3, 3, 322, 2, 50, 2, 'act6s14', 50, 360];
			++count;
			holder.objects.attachMovie('objects', 'shifter1', count);
			holder.objects.shifter1._x = custarr[2];
			holder.objects.shifter1._y = custarr[3];
			holder.objects.shifter1.specarr = new Array();
			holder.objects.shifter1.specarr = custarr;
		}
		holder.createEmptyMovieClip('floatcloud', frontbgdep);
		numclouds = Math.ceil(((levelwidth / stagewidth) * levelheight / stageheight) * 2);
		i = 0;
		while (i < numclouds) {
			++count;
			holder.floatcloud.attachMovie('cloudholder', 'cloud' + i, count);
			holder.floatcloud['cloud' + i]._x = random(levelwidth);
			holder.floatcloud['cloud' + i]._y = random(levelheight);
			holder.floatcloud['cloud' + i].gotoAndStop(random(holder.floatcloud['cloud' + i]._totalframes) + 1);
			holder.floatcloud['cloud' + i].cacheAsBitmap();
			++i;
		}
		holder.floatcloud.cacheAsBitmap();
		bgam = 0.8;
		onEnterFrame = function () {
			if (!fadeout and !fadein and (holder.player._x + xspeed > levelwidth or holder.player._x + xspeed < 0)) {
				holder.player._x -= xspeed;
				xspeed = 0;
			}
			if (holder.player._x < 5) {
				holder.player._x = 5;
			}
			if (holder.player._x > levelwidth) {
				holder.player._x = levelwidth;
			}
			playercode();
			camerafollow(xcam, ycam);
			if (!game_paused) {
				if (!dying and !fadeout) {
					begxdiff = holder._x - begx;
					begydiff = holder._y - begy;
					holder.bg._x -= begxdiff * bgam;
					holder.bg._y -= begydiff * bgam;
					holder.floatcloud._x -= begxdiff * bgam * 0.5;
					holder.floatcloud._y -= begydiff * bgam * 0.5;
				}
			}
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 439 {
		allmap = '47 BREAK 364 BREAK 20 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,220,0,0,220,0,0,0,220,0,220,0,0,220,0,0,221,0,0,222,0,227,0,0,227,0,0,0,227,0,227,0,0,227,0,0,223,0,0,222,0,227,0,0,227,0,0,0,227,0,227,0,0,227,0,0,223,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK stars_floaty BREAK 0';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_aerylSound');
		if (!actions[65]) {
			fadeout_music();
		}
		holder.player._xscale = 100;
		effectGravity = 0;
		holder.createEmptyMovieClip('floatcloud', frontbgdep);
		numclouds = Math.ceil(((levelwidth / stagewidth) * levelheight / stageheight) * 2);
		i = 0;
		while (i < numclouds) {
			++count;
			holder.floatcloud.attachMovie('cloudholder', 'cloud' + i, count);
			holder.floatcloud['cloud' + i]._x = random(levelwidth);
			holder.floatcloud['cloud' + i]._y = random(levelheight);
			holder.floatcloud['cloud' + i].gotoAndStop(random(holder.floatcloud['cloud' + i]._totalframes) + 1);
			holder.floatcloud['cloud' + i].cacheAsBitmap();
			++i;
		}
		holder.floatcloud.cacheAsBitmap();
		bgam = 0.8;
		++count;
		holder.ground.attachMovie('act6boss_pillars', 'pillars', count);
		pillarpos = 0;
		pillararr = new Array();
		i = 0;
		while (i < 11) {
			pillararr[i] = holder.ground.pillars['p' + (i + 1)];
			++i;
		}
		if (!actions[65]) {
			++count;
			holder.objects.attachMovie('act6boss1', 'boss', count);
			holder.objects.boss._x = 544;
			holder.objects.boss._visible = false;
			holder.objects.boss.maxlife = 50;
			holder.objects.boss.life = holder.objects.boss.maxlife;
			holder.objects.boss.actiondelay = 50;
			holder.objects.boss.damageDelay = 0;
			holder.objects.boss.flashCount = 0;
			holder.objects.boss.flydir = -1;
			holder.objects.boss.attacking = false;
			holder.objects.boss.playertarg = true;
			holder.objects.boss.gendelay = 180;
			startboss = false;
			holder.objects.boss.onEnterFrame = function () {
				if (!game_paused and !msgbox._visible and startboss) {
					if (pillarpos < 11) {
						if (!holder.objects.flyer1 or !holder.objects.flyer2) {
							--this.gendelay;
							if (this.gendelay < 0) {
								this.gendelay = 180;
								if (!holder.objects.flyer1) {
									++count;
									holder.objects.attachMovie('objects', 'flyer1', count);
									holder.objects.flyer1.gotoAndStop(39);
									holder.objects.flyer1.specarr = new Array();
									holder.objects.flyer1.specarr[4] = 1;
									holder.objects.flyer1._x = -50 + (stagewidth + 100) * random(2);
									holder.objects.flyer1._y = random(stageheight);
								} else {
									if (!holder.objects.flyer2) {
										++count;
										holder.objects.attachMovie('objects', 'flyer2', count);
										holder.objects.flyer2.gotoAndStop(39);
										holder.objects.flyer2.specarr = new Array();
										holder.objects.flyer2.specarr[4] = 1;
										holder.objects.flyer2._x = -50 + (stagewidth + 100) * random(2);
										holder.objects.flyer2._y = random(stageheight);
									}
								}
							}
						}
						if (!this.attacking) {
							this.gotoAndStop('fly');
							if (this._x < 192) {
								this.slowerx = 1 - 0.6 * (192 - this._x) / 160;
							} else {
								if (this._x > 448) {
									this.slowerx = 1 - 0.6 * (this._x - 448) / 160;
								} else {
									this.slowerx = 1;
								}
							}
							this.oldx = this._x;
							this._x += (8 + 4 * (pillarpos / 11)) * this.flydir * this.slowerx;
							if (this._x < 32 or this._x > 608) {
								this._x = this.oldx;
								this.flydir *= -1;
								if (this.flydir == 1) {
									this._xscale = -100;
								} else {
									this._xscale = 100;
								}
							}
							if (this.playertarg) {
								if (holder.player._x > this._x - tilesize and holder.player._x < this._x + tilesize) {
									this.attacking = true;
									this.attCount = 10;
								}
							} else {
								if (this._x > pillararr[pillarpos]._x - tilesize * 0.2 and this._x < pillararr[pillarpos]._x + tilesize * 0.2) {
									this.attacking = true;
									this.attCount = 11;
								}
							}
						} else {
							if (this.attacking) {
								if (!this.playertarg and this.attCount == 10) {
									this._x = _root.pillararr[pillarpos]._x;
								}
								this.gotoAndStop('attack');
								--this.attCount;
								if (this.attCount == 0) {
									playsoldiershoot();
									++count;
									holder.attachMovie('act6boss_lightning1', 'lightning' + count, count);
									light = holder['lightning' + count];
									light._x = this._x;
									light._y = -tilesize * 2;
									light.onEnterFrame = function () {
										if (!game_paused) {
											this._y += 15 + 5 * (pillarpos / 11);
											if (this.hitTest(_root.holder.player.hitbox)) {
												takedamage(1);
												_root.shadeCount = 30;
											}
											if (this._y >= 330) {
												if (!_root.holder.objects.boss.playertarg) {
													i = 0;
													while (i < 3) {
														++count;
														holder.attachMovie('dust1', 'dust' + count, count);
														holder['dust' + count]._x = _root.pillararr[pillarpos]._x;
														holder['dust' + count]._y = 386 + tilesize * i;
														++i;
													}
													++count;
													_root.pillararr[pillarpos].swapDepths(count);
													_root.pillararr[pillarpos].removeMovieClip();
													++_root.pillarpos;
													_root.holder.objects.boss.playertarg = false;
												} else {
													++count;
													holder.attachMovie('dust1', 'dust' + count, count);
													holder['dust' + count]._x = _root.holder.objects.boss._x;
													holder['dust' + count]._y = 386;
												}
												++count;
												attachMovie('whiteflash_mini1', 'whiteflash' + count, count);
												this.removeMovieClip();
											}
										}
									};
								}
								if (this.attCount == -40) {
									if (random(100) > 40) {
										this.playertarg = false;
									} else {
										this.playertarg = true;
									}
									this.attacking = false;
								}
							}
						}
					} else {
						this.gotoAndStop('fly');
						this._y -= 2;
						if (this._y < -128) {
							glassT = 90;
							this.removeMovieClip();
						}
					}
				}
			};
		} else {
			glassT = 90;
		}
		if (!actions[64]) {
			++count;
			holder.attachMovie('act6boss_cutscene1', 'cutscene', count);
		} else {
			holder.objects.boss._visible = true;
			cutscene = false;
		}
		onEnterFrame = function () {
			if (!startboss and holder.objects.boss._visible) {
				++count;
				attachMovie('bosshealth', 'bosshealth', count);
				bosshealth._alpha = 0;
				startboss = true;
			}
			if (bosshealth._alpha < 100) {
				bosshealth._alpha += 2;
			}
			if (glassT > 0) {
				--glassT;
				if (glassT == 60) {
					fadeout_music();
					custarr = [1, 3, 176, 16, 5, 2, 'act6s15', 80, 365];
					++count;
					holder.objects.attachMovie('objects', 'shifter1', count);
					holder.objects.shifter1._x = custarr[2];
					holder.objects.shifter1._y = custarr[3];
					holder.objects.shifter1.specarr = new Array();
					holder.objects.shifter1.specarr = custarr;
					++count;
					holder.objects.attachMovie('objects', 'glass' + count, count);
					holder.objects['glass' + count].gotoAndStop(44);
					holder.objects['glass' + count]._x = 400;
					holder.objects['glass' + count]._y = 310;
					holder.objects['glass' + count]._alpha = 0;
					glass1 = holder.objects['glass' + count];
				}
				if (glassT == 30) {
					++count;
					holder.objects.attachMovie('objects', 'glass' + count, count);
					holder.objects['glass' + count].gotoAndStop(44);
					holder.objects['glass' + count]._x = 272;
					holder.objects['glass' + count]._y = 215;
					holder.objects['glass' + count]._alpha = 0;
					glass2 = holder.objects['glass' + count];
				}
				if (glassT == 0) {
					++count;
					holder.objects.attachMovie('objects', 'glass' + count, count);
					holder.objects['glass' + count].gotoAndStop(44);
					holder.objects['glass' + count]._x = 144;
					holder.objects['glass' + count]._y = 120;
					holder.objects['glass' + count]._alpha = 0;
					glass3 = holder.objects['glass' + count];
				}
			}
			if (glass1._alpha < 100) {
				glass1._alpha += 5;
			}
			if (glass2._alpha < 100) {
				glass2._alpha += 5;
			}
			if (glass3._alpha < 100) {
				glass3._alpha += 5;
			}
			if (!fadeout and !fadein and (holder.player._x + xspeed > levelwidth or holder.player._x + xspeed < 0)) {
				holder.player._x -= xspeed;
				xspeed = 0;
			}
			if (holder.player._x < 5) {
				holder.player._x = 5;
			}
			if (holder.player._x > levelwidth) {
				holder.player._x = levelwidth;
			}
			playercode();
			camerafollow(xcam, ycam);
			if (!game_paused) {
				if (!dying and !fadeout) {
					begxdiff = holder._x - begx;
					begydiff = holder._y - begy;
					holder.bg._x -= begxdiff * bgam;
					holder.bg._y -= begydiff * bgam;
					holder.floatcloud._x -= begxdiff * bgam * 0.5;
					holder.floatcloud._y -= begydiff * bgam * 0.5;
				}
			}
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 440 {
		allmap = '79 BREAK 365 BREAK 20 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,221,0,0,222,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,223,0,0,222,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,227,223,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,712,0,0,0,0,0,0,712,0,0,0,0,0,0,0,0,0,712,0,0,713,0,0,715,716,0,0,713,0,0,712,0,0,0,0,0,0,713,0,0,713,0,0,717,718,0,0,713,0,0,713,0,0,0,0,0,0,714,0,0,714,0,0,719,720,0,0,714,0,0,714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK stars_floaty BREAK 0';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('');
		holder.player._xscale = 100;
		holder.createEmptyMovieClip('floatcloud', frontbgdep);
		numclouds = Math.ceil(((levelwidth / stagewidth) * levelheight / stageheight) * 2);
		i = 0;
		while (i < numclouds) {
			++count;
			holder.floatcloud.attachMovie('cloudholder', 'cloud' + i, count);
			holder.floatcloud['cloud' + i]._x = random(levelwidth);
			holder.floatcloud['cloud' + i]._y = random(levelheight);
			holder.floatcloud['cloud' + i].gotoAndStop(random(holder.floatcloud['cloud' + i]._totalframes) + 1);
			holder.floatcloud['cloud' + i].cacheAsBitmap();
			++i;
		}
		holder.floatcloud.cacheAsBitmap();
		bgam = 0.8;
		if (!actions[65]) {
			++count;
			holder.objects.attachMovie('act6boss2', 'boss', count);
			holder.objects.boss.gotoAndStop(1);
			holder.objects.boss._x = 384;
			holder.objects.boss._y = 384;
			holder.objects.boss.maxlife = 40;
			holder.objects.boss.life = holder.objects.boss.maxlife;
			holder.objects.boss.actiondelay = 50;
			holder.objects.boss.damageDelay = 0;
			holder.objects.boss.flashCount = 0;
			holder.objects.boss.walkdir = -1;
			holder.objects.boss.attacking = false;
			holder.objects.boss.moving = true;
			startboss = false;
			holder.objects.boss.onEnterFrame = function () {
				if (!game_paused and !msgbox._visible and startboss) {
					if (_root.damageDelay == 0 and _root.effectInvisibility == 0) {
						if (this.hitbox.hitTest(_root.holder.player._x + _root.holder._x + tilesize / 2, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true)) {
							_root.xspeed = 0;
							_root.bumpAmount -= _root.standardBump;
							_root.shadeCount = 30;
							_root.takedamage(1);
						}
						if (this.hitbox.hitTest(_root.holder.player._x + _root.holder._x - tilesize / 2, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true)) {
							_root.xspeed = 0;
							_root.bumpAmount += _root.standardBump;
							_root.shadeCount = 30;
							_root.takedamage(1);
						}
					}
					if (this.damageDelay == 0 and _root.holder.cloudsMolotov.hitTest(this._x + _root.holder._x, this._y + _root.holder._y - tilesize, true)) {
						if (this._x > _root.holder.player._x) {
							this.bumpAmount += 20;
						} else {
							this.bumpAmount -= 20;
						}
						this.life -= _root.molotovDamage;
						this.flashCount = 12;
						this.damageDelay = 12;
					}
					if (this.damageDelay == 0 and _root.holder.cloudsExplosion.hitTest(this._x + _root.holder._x, this._y + _root.holder._y - tilesize, true)) {
						if (_x > _root.holder.player._x) {
							this.bumpAmount += 20;
						} else {
							this.bumpAmount -= 20;
						}
						this.life -= _root.explosionDamage;
						this.flashCount = 12;
						this.damageDelay = 12;
					}
					if (this.damageDelay == 0 and _root.holder.cloudsIce.hitTest(this._x + _root.holder._x, this._y + _root.holder._y - tilesize, true)) {
						if (_x > _root.holder.player._x) {
							this.bumpAmount += 20;
						} else {
							this.bumpAmount -= 20;
						}
						this.life -= _root.iceDamage;
						this.flashCount = 12;
						this.damageDelay = 12;
						this.speed *= 0.5;
					}
					if (this.flashCount > 0) {
						this.setBrightness(random(100));
						--this.flashCount;
						if (this.flashCount == 0) {
							this.setBrightness(0);
						}
					}
					if (this.damageDelay > 0) {
						--this.damageDelay;
					}
					if (this.life <= 0) {
						fadeout_music();
						_root.actions[67] = this._x;
						_root.actions[65] = true;
						_root.createBody(this._x, this._y, 22, false, this._xscale);
						i = 0;
						while (i < maxhealth - health) {
							_root.dropHealth(this._x, this._y, 100);
							++i;
						}
						_root.create_blood(this._x, this._y, tilesize * 2, 'blood', 15);
						_root.bosshealth.removeMovieClip();
						glassT = 90;
						this.removeMovieClip();
					}
					if (this.moving) {
						this.gotoAndStop('run');
						this._x += (8 - 5 * (this.life / this.maxlife)) * this.walkdir;
						if (this._x < 64) {
							this._x = 64;
							this._xscale = -100;
							this.genatt = true;
							this.boltx = 110;
							this.boltdir = 1;
						}
						if (this._x > 576) {
							this._x = 576;
							this._xscale = 100;
							this.genatt = true;
							this.boltx = 530;
							this.boltdir = -1;
						}
						if (this.genatt) {
							this.walkdir *= -1;
							this.genatt = false;
							this.attacking = true;
							this.moving = false;
							if (random(100) > 50) {
								this.attacktype = 'lightning';
								this.lightningcount = 0;
								this.lightningdelay = framerate;
							} else {
								this.attacktype = 'bolt';
								this.boltdelay = 16;
							}
						}
					} else {
						if (this.attacking) {
							this.gotoAndStop(this.attacktype);
							if (this.attacktype == 'lightning') {
								--this.lightningdelay;
								if (this.lightningdelay == 0) {
									playsoldiershoot();
									this.lightningdelay = 15 + Math.round(10 * (holder.objects.boss.life / holder.objects.boss.maxlife));
									++this.lightningcount;
									++count;
									holder.attachMovie('act6boss_lightning1', 'lightning' + count, count);
									light = holder['lightning' + count];
									light._x = this._x + tilesize * 2 * this.lightningcount * this.boltdir;
									light._y = -tilesize * 2;
									light.onEnterFrame = function () {
										if (!game_paused) {
											this._y += 25 - 10 * (holder.objects.boss.life / holder.objects.boss.maxlife);
											if (this.hitTest(_root.holder.player.hitbox)) {
												takedamage(1);
												_root.shadeCount = 30;
											}
											if (this._y >= 330) {
												++count;
												holder.attachMovie('dust1', 'dust' + count, count);
												holder['dust' + count]._x = this._x;
												holder['dust' + count]._y = 386;
												++count;
												attachMovie('whiteflash_mini1', 'whiteflash' + count, count);
												_root['whiteflash' + count]._alpha = 50;
												this.removeMovieClip();
											}
											if (!holder.objects.boss) {
												this.removeMovieClip();
											}
										}
									};
									if (this.lightningcount == 8) {
										this.attacking = false;
										this.moving = true;
									}
								}
							} else {
								--this.boltdelay;
								if (this.boltdelay == 0) {
									playsound('aeo1Sound');
									++count;
									holder.attachMovie('act6boss_bolt1', 'bolt' + count, count);
									thisbolt = holder['bolt' + count];
									thisbolt._x = this.boltx;
									thisbolt.boltdir = this.boltdir;
									thisbolt._xscale = this.boltdir * -100;
									thisbolt._y = 335;
									thisbolt.xspeed = 3 - 2 * (holder.objects.boss.life / holder.objects.boss.maxlife);
									thisbolt.onEnterFrame = function () {
										if (!game_paused) {
											if (!holder.objects.boss) {
												this.removeMovieClip();
											}
											this._x += this.xspeed * this.boltdir;
											this.xspeed += 1.5 - 1 * (holder.objects.boss.life / holder.objects.boss.maxlife);
											if (this._x < -50 or this._x > stagewidth + 50) {
												this.removeMovieClip();
											}
											if (_root.damageDelay == 0 and _root.effectInvisibility == 0) {
												i = 0;
												while (i < 4) {
													if (this.hitTest(_root.holder.player._x + _root.holder._x + 16, _root.holder.player._y + _root.holder._y - i * 20, true)) {
														_root.xspeed = 0;
														_root.bumpAmount -= _root.standardBump;
														_root.shadeCount = 30;
														_root.takedamage(1);
													}
													if (this.hitTest(_root.holder.player._x + _root.holder._x - 16, _root.holder.player._y + _root.holder._y - i * 20, true)) {
														_root.xspeed = 0;
														_root.bumpAmount += _root.standardBump;
														_root.shadeCount = 30;
														_root.takedamage(1);
													}
													++i;
												}
											}
										}
									};
								}
								if (this.boltdelay == -10) {
									this.attacking = false;
									this.moving = true;
								}
							}
						}
					}
				}
			};
			if (!actions[66]) {
				++count;
				holder.attachMovie('act6boss_cutscene2', 'cutscene', count);
			} else {
				holder.objects.boss._visible = true;
				cutscene = false;
			}
		} else {
			glassT = 90;
		}
		onEnterFrame = function () {
			if (!startboss and holder.objects.boss._visible) {
				++count;
				attachMovie('bosshealth', 'bosshealth', count);
				bosshealth._alpha = 0;
				startboss = true;
			}
			if (bosshealth._alpha < 100) {
				bosshealth._alpha += 2;
			}
			if (glassT > 0) {
				--glassT;
				if (glassT == 60) {
					custarr = [1, 3, 176, 16, 5, 2, 'act6s16', 80, 365];
					++count;
					holder.objects.attachMovie('objects', 'shifter1', count);
					holder.objects.shifter1._x = custarr[2];
					holder.objects.shifter1._y = custarr[3];
					holder.objects.shifter1.specarr = new Array();
					holder.objects.shifter1.specarr = custarr;
					++count;
					holder.objects.attachMovie('objects', 'glass' + count, count);
					holder.objects['glass' + count].gotoAndStop(44);
					holder.objects['glass' + count]._x = 400;
					holder.objects['glass' + count]._y = 310;
					holder.objects['glass' + count]._alpha = 0;
					glass1 = holder.objects['glass' + count];
				}
				if (glassT == 30) {
					++count;
					holder.objects.attachMovie('objects', 'glass' + count, count);
					holder.objects['glass' + count].gotoAndStop(44);
					holder.objects['glass' + count]._x = 272;
					holder.objects['glass' + count]._y = 215;
					holder.objects['glass' + count]._alpha = 0;
					glass2 = holder.objects['glass' + count];
				}
				if (glassT == 0) {
					++count;
					holder.objects.attachMovie('objects', 'glass' + count, count);
					holder.objects['glass' + count].gotoAndStop(44);
					holder.objects['glass' + count]._x = 144;
					holder.objects['glass' + count]._y = 120;
					holder.objects['glass' + count]._alpha = 0;
					glass3 = holder.objects['glass' + count];
				}
			}
			if (glass1._alpha < 100) {
				glass1._alpha += 5;
			}
			if (glass2._alpha < 100) {
				glass2._alpha += 5;
			}
			if (glass3._alpha < 100) {
				glass3._alpha += 5;
			}
			if (!fadeout and !fadein and (holder.player._x + xspeed > levelwidth or holder.player._x + xspeed < 0)) {
				holder.player._x -= xspeed;
				xspeed = 0;
			}
			if (holder.player._x < 5) {
				holder.player._x = 5;
			}
			if (holder.player._x > levelwidth) {
				holder.player._x = levelwidth;
			}
			playercode();
			camerafollow(xcam, ycam);
			if (!game_paused) {
				if (!dying and !fadeout) {
					begxdiff = holder._x - begx;
					begydiff = holder._y - begy;
					holder.bg._x -= begxdiff * bgam;
					holder.bg._y -= begydiff * bgam;
					holder.floatcloud._x -= begxdiff * bgam * 0.5;
					holder.floatcloud._y -= begydiff * bgam * 0.5;
				}
			}
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 441 {
		allmap = '79 BREAK 365 BREAK 20 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,221,0,0,0,0,0,0,0,0,0,0,219,220,220,220,220,220,220,221,229,229,219,220,220,220,220,220,220,221,0,0,222,230,227,227,227,227,229,223,229,229,222,229,227,227,227,227,230,223,0,0,222,227,227,227,227,227,227,223,222,223,222,227,227,227,227,227,227,223,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,711,0,0,0,0,0,0,711,0,0,0,0,0,0,0,0,0,0,0,0,713,0,0,0,0,0,0,713,0,0,0,0,0,0,0,0,0,0,0,0,713,0,0,0,0,0,0,713,0,0,0,0,0,0,0,0,0,0,0,711,713,0,0,0,0,0,0,713,711,0,0,0,0,0,0,0,0,0,711,713,713,0,0,0,0,0,0,713,713,711,0,0,0,0,0,0,0,0,713,713,713,0,0,0,0,0,0,713,713,713,0,0,0,0,0,0,0,0,713,713,713,0,0,0,0,0,0,713,713,713,0,0,0,0,0,0,0,0,714,714,714,0,0,0,0,0,0,714,714,714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK stars_floaty BREAK 0 BREAK 1,3,320,463.05,100,2,act6s1,1070,10';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_aerylSound');
		++count;
		holder.nohtobjects.attachMovie('essences', 'essences', count);
		holder.nohtobjects.essences._x = 318;
		holder.nohtobjects.essences._y = 320;
		holder.nohtobjects.essences.id = 23;
		holder.nohtobjects.essences.gotoAndStop(6);
		holder.createEmptyMovieClip('floatcloud', frontbgdep);
		numclouds = Math.ceil(((levelwidth / stagewidth) * levelheight / stageheight) * 2);
		i = 0;
		while (i < numclouds) {
			++count;
			holder.floatcloud.attachMovie('cloudholder', 'cloud' + i, count);
			holder.floatcloud['cloud' + i]._x = random(levelwidth);
			holder.floatcloud['cloud' + i]._y = random(levelheight);
			holder.floatcloud['cloud' + i].gotoAndStop(random(holder.floatcloud['cloud' + i]._totalframes) + 1);
			holder.floatcloud['cloud' + i].cacheAsBitmap();
			++i;
		}
		holder.floatcloud.cacheAsBitmap();
		bgam = 0.8;
		onEnterFrame = function () {
			if (!fadeout and !fadein and (holder.player._x + xspeed > levelwidth or holder.player._x + xspeed < 0)) {
				holder.player._x -= xspeed;
				xspeed = 0;
			}
			if (holder.player._x < 5) {
				holder.player._x = 5;
			}
			if (holder.player._x > levelwidth) {
				holder.player._x = levelwidth;
			}
			playercode();
			camerafollow(xcam, ycam);
			if (!game_paused) {
				if (!dying and !fadeout) {
					begxdiff = holder._x - begx;
					begydiff = holder._y - begy;
					holder.bg._x -= begxdiff * bgam;
					holder.bg._y -= begydiff * bgam;
					holder.floatcloud._x -= begxdiff * bgam * 0.5;
					holder.floatcloud._y -= begydiff * bgam * 0.5;
				}
			}
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 449 {
		allmap = '369 BREAK 495 BREAK 50 BREAK 20 BREAK 240,240,240,240,240,240,240,236,0,0,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,236,0,0,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,236,0,0,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,236,0,0,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,236,0,0,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,236,0,0,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,236,0,0,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,236,0,0,0,0,0,0,0,237,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,242,240,240,240,240,240,240,240,240,240,240,240,240,240,240,241,238,238,238,238,238,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,242,240,240,240,240,240,240,240,240,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,238,238,238,238,238,238,238,238,238,238,238,238,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,243,233,233,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,240,240,240,240,243,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,244,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,709,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,711,712,0,0,0,0,0,0,703,0,0,0,0,0,0,0,0,704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,713,714,0,0,0,0,0,0,704,0,0,0,0,0,0,0,0,705,0,702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,715,716,0,0,0,0,0,0,705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,757,758,0,0,757,758,738,0,0,749,750,738,0,738,0,0,0,749,750,738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,757,758,0,0,0,0,0,0,0,0,759,760,0,0,759,760,739,0,0,751,752,739,0,739,0,0,0,751,752,739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,759,760,0,0,0,0,0,0,0,0,761,762,0,0,761,762,740,0,0,753,754,740,0,740,0,0,0,753,754,740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,761,762,0,0,0,0,0,0,0,0,763,764,0,0,763,764,0,0,0,755,756,0,0,0,0,0,0,755,756,0,0,0,0,769,770,0,0,769,770,769,770,0,767,0,0,0,0,0,0,0,763,764,0,0,0,0,0,0,0,0,765,766,0,0,765,766,0,741,742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,771,772,0,0,771,772,771,772,0,768,0,0,0,731,730,731,732,765,766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,743,744,0,0,0,735,0,0,0,0,0,0,0,0,0,0,773,774,0,0,773,774,773,774,0,767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,745,746,0,0,0,736,0,0,0,0,0,0,0,734,0,0,775,776,0,0,775,776,775,776,0,768,0,0,0,0,0,0,0,732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,730,731,747,748,0,0,0,737,0,734,0,732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_teeth BREAK 0 BREAK 1,9,369,498.2 BREAK 2,4,514,502 BREAK 3,36,369,479.05,2,5,select1,490,125 BREAK 4,3,1607,413,1,10,t2,50,340';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_monsterSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 450 {
		allmap = '51 BREAK 335 BREAK 40 BREAK 15 BREAK 240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,241,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,238,238,238,238,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,0,0,0,0,0,0,0,0,232,233,233,234,0,0,0,0,0,0,0,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,233,233,233,233,233,233,233,233,244,240,240,243,233,233,233,233,233,233,233,233,233,233,233,233,244,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,706,0,0,0,0,737,738,0,0,0,0,737,738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,707,0,0,0,0,739,740,0,0,0,0,739,740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,708,0,0,0,0,741,742,0,0,0,0,741,742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,743,744,0,0,0,0,743,744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,737,738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,739,740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,741,742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,743,744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,757,758,0,0,0,738,0,0,738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,769,770,0,0,0,0,0,0,0,0,0,0,0,0,759,760,0,0,0,739,0,0,739,0,0,0,0,0,0,0,735,0,0,0,735,0,0,0,0,0,771,772,0,0,0,0,0,0,0,0,0,0,0,0,761,762,0,0,0,740,0,0,740,0,0,0,0,0,0,0,736,0,0,0,736,0,0,0,0,0,773,774,0,0,0,0,0,0,0,0,0,0,0,0,763,764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,737,0,0,0,737,0,0,0,0,0,775,776,0,0,0,0,0,0,0,0,0,0,0,0,765,766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,733,0,0,0,0,0,0,0,0,741,742,0,0,0,0,741,742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,743,744,0,0,735,0,743,744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,734,0,0,0,745,746,0,0,736,0,745,746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,730,731,0,0,0,0,0,0,747,748,0,0,737,0,747,748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_teeth BREAK 0 BREAK 1,46,630,344,3 BREAK 2,46,973,178.1,3 BREAK 3,3,-8,290,1,10,t1,1550,460 BREAK 4,3,1287,128,1,10,t3,50,210';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_monsterSound');
		if (actions[86]) {
			++count;
			holder.ground.attachMovie('t2_ledge', 'ledge', count);
			holder.ground.ledge._x = 704;
			holder.ground.ledge._y = 320;
			holder.ground.ledge.cacheAsBitmap();
		}
		onEnterFrame = function () {
			if (holder.player._x > 800) {
				actions[86] = true;
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 451 {
		allmap = '44 BREAK 205 BREAK 30 BREAK 20 BREAK 240,240,240,240,240,240,241,238,238,238,238,238,242,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,236,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,238,238,238,238,238,238,239,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,0,0,0,0,0,0,0,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,0,0,0,0,0,0,0,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,0,0,0,0,0,0,0,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,0,0,0,0,0,0,0,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,233,233,233,233,233,233,234,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,236,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,236,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,236,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,236,0,0,0,0,0,237,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,240,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,240,240,240,240,240,243,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,737,738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,739,740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,741,742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,743,744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,738,0,757,758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,739,0,759,760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,740,0,761,762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,763,764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,765,766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,769,770,769,770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,735,0,0,0,0,0,0,771,772,771,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,736,0,0,0,0,0,0,773,774,773,774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,730,731,0,734,0,737,0,0,0,0,0,0,775,776,775,776,0,732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_teeth BREAK 0 BREAK 2,3,-8,153.05,1,10,t2,1230,180 BREAK 3,23,513,448.05,3,5,69 BREAK 4,3,967,450.05,1,10,t4,50,300';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_monsterSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 452 {
		allmap = '47 BREAK 299 BREAK 20 BREAK 15 BREAK 240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,238,238,238,238,238,238,238,242,240,240,240,240,241,238,238,238,238,238,238,238,0,0,0,0,0,0,0,237,238,238,238,238,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,233,233,233,234,0,0,0,0,0,0,0,0,0,0,232,233,233,233,233,240,240,240,240,243,233,233,233,233,233,233,233,233,233,233,244,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,730,731,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_teeth BREAK 0 BREAK 1,3,-8,257.05,1,10,t3,910,500 BREAK 2,3,645,257,1,10,t5,50,620';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_monsterSound');
		++count;
		holder.background.attachMovie('lava1', 'lava', count);
		onEnterFrame = function () {
			if (holder.background.lava._currentframe == 1) {
				if (holder.background.lava.hitbox.hitTest(holder.cloudsIce)) {
					holder.background.lava.gotoAndStop(2);
					++count;
					holder.ground.attachMovie('lava1', 'lava', count);
					holder.ground.lava.gotoAndStop(2);
					holder.ground.lava._alpha = 0;
				}
				if (holder.background.lava.hitbox.hitTest(holder.player)) {
					takedamage(maxhealth * 2);
				}
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 453 {
		allmap = '47 BREAK 621 BREAK 50 BREAK 25 BREAK 240,240,240,240,240,240,240,236,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,236,0,0,237,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,238,242,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,238,238,238,238,238,238,242,240,240,240,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,240,240,240,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,238,240,240,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,240,240,240,240,240,240,236,0,0,0,0,0,0,0,0,232,233,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,240,240,240,240,240,240,236,0,0,0,0,0,0,0,0,237,238,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,233,233,233,233,233,233,233,233,234,0,0,0,240,240,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,233,233,234,0,0,0,0,0,0,232,244,240,240,240,240,240,240,240,240,236,0,0,0,240,240,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,238,242,243,233,234,0,0,0,0,237,242,240,240,240,240,240,240,240,240,240,233,233,233,240,240,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,238,238,239,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,232,233,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,238,238,238,238,238,238,238,239,0,0,0,0,0,0,0,0,0,0,237,238,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,233,234,0,0,0,0,0,0,0,232,244,240,240,240,240,240,240,240,240,240,240,240,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,238,239,0,0,0,0,0,0,0,237,242,240,240,240,240,240,240,240,240,240,240,240,240,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,737,738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,739,740,0,0,0,0,703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,741,742,0,0,0,0,704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,743,744,0,0,0,0,705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,757,758,0,0,0,738,0,0,0,749,750,0,0,0,0,738,0,0,0,757,758,0,0,0,0,749,750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,759,760,0,0,0,739,0,0,0,751,752,0,0,0,0,739,0,0,0,759,760,0,0,0,0,751,752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,761,762,0,0,0,740,0,0,0,753,754,0,0,0,0,740,0,0,0,761,762,0,0,0,0,753,754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,763,764,0,0,0,0,0,0,0,755,756,0,0,0,0,0,0,0,0,763,764,0,0,0,0,755,756,0,0,0,0,738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,765,766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,765,766,0,0,0,0,0,0,0,0,0,0,739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,730,731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,730,731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,730,731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,741,742,0,0,0,738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,735,0,735,0,0,743,744,0,735,0,739,0,0,0,0,0,0,0,730,731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,736,0,736,0,0,745,746,0,736,0,740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,734,0,737,0,737,0,0,747,748,0,737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,441,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_teeth BREAK 0 BREAK 1,47,648,637.05,3 BREAK 2,47,1476,276.05,3 BREAK 3,46,1167,566.05,3 BREAK 4,46,1170,311.05,3 BREAK 5,3,-3,575.05,1,10,t4,590,300 BREAK 6,3,288,30,2,2,ts1,240,340 BREAK 7,3,1607,286,1,10,t6,50,340';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_monsterSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 454 {
		allmap = '240 BREAK 331 BREAK 20 BREAK 15 BREAK 240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,241,238,238,238,238,238,238,238,238,238,238,238,238,238,242,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,235,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,235,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,235,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,235,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,235,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,235,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,235,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,235,240,240,240,240,240,236,0,0,232,233,233,233,233,233,233,233,233,233,233,240,240,240,240,240,240,236,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,236,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,236,0,0,235,240,240,240,240,240,240,240,240,240,240,240,240,240 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,738,0,749,750,0,0,738,0,757,758,0,0,0,0,0,0,0,0,0,0,739,0,751,752,0,0,739,0,759,760,0,0,0,0,0,0,0,0,0,0,740,0,753,754,0,0,740,0,761,762,0,0,0,0,0,0,0,0,0,0,0,0,755,756,0,0,0,0,763,764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,765,766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,730,731,0,0,0,0,0,0,732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_teeth BREAK 0 BREAK 1,3,158,432.05,3,2,t5,270,120 BREAK 2,2,497,343,128,8 BREAK 3,2,465,343,129,8';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_monsterSound');
		++count;
		holder.nohtobjects.attachMovie('btbh1', 'btbh', count);
		holder.nohtobjects.btbh._x = 384;
		holder.nohtobjects.btbh._y = 352;
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 455 {
		allmap = '49 BREAK 332 BREAK 30 BREAK 15 BREAK 240,240,240,240,236,235,240,240,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,240,240,240,236,235,240,240,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,240,240,240,236,235,240,240,240,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,240,240,240,236,237,238,238,238,238,238,238,238,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,240,240,240,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,238,238,238,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,233,234,0,0,0,0,0,0,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,236,0,0,0,0,0,0,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,236,0,0,0,0,0,0,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,240,236,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,757,758,0,738,0,749,750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,759,760,0,739,0,751,752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,761,762,0,740,0,753,754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,769,770,0,0,763,764,0,0,0,755,756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,771,772,0,0,765,766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,773,774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,776,0,0,0,0,0,730,731,0,0,732,0,0,0,0,0,0,0,0,730,731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,440,440,440,440,440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,441,441,441,441,441 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_teeth BREAK 0 BREAK 2,3,-8,291,1,10,t5,1550,340';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_monsterSound');
		essencecount = 0;
		i = 18;
		while (i < 24) {
			if (actions[i]) {
				++essencecount;
			}
			++i;
		}
		trace(essencecount);
		if (essencecount >= 6) {
			actions[68] = true;
		}
		++count;
		holder.objects.attachMovie('objects', 'ship', count);
		holder.objects.ship.gotoAndStop(45);
		holder.objects.ship._x = 651;
		holder.objects.ship._y = 333;
		if (actions[68]) {
			if (!actions[70]) {
				holder.objects.ship.ship.gotoAndStop(2);
			}
			++count;
			holder.attachMovie('oldman_dead', 'oldman', count);
			holder.oldman._x = 530;
			holder.oldman._y = 333;
			if (actions[70]) {
				custarr = [1, 36, 650, 300, 3, 4, 'select2', 80, 270];
				++count;
				holder.objects.attachMovie('objects', 'shipdoor', count);
				holder.objects.shipdoor._x = custarr[2];
				holder.objects.shipdoor._y = custarr[3];
				holder.objects.shipdoor.specarr = new Array();
				holder.objects.shipdoor.specarr = custarr;
			} else {
				custarr = [1, 47, 512, 338, 3];
				++count;
				holder.objects.attachMovie('objects', 'enemy', count);
				holder.objects.enemy._x = custarr[2];
				holder.objects.enemy._y = custarr[3];
				holder.objects.enemy.specarr = new Array();
				holder.objects.enemy.specarr = custarr;
			}
		} else {
			numess = 6 - essencecount;
			if (numess == 6) {
				numess = 'six';
			} else {
				if (numess == 5) {
					numess = 'five';
				} else {
					if (numess == 4) {
						numess = 'four';
					} else {
						if (numess == 3) {
							numess = 'three';
						} else {
							if (numess == 2) {
								numess = 'two';
							} else {
								if (numess == 1) {
									numess = 'one';
								}
							}
						}
					}
				}
			}
			custarr = [1, 8, 530, 342, 'oldman', 11, 'Ah! You\'re here already. You still need', numess + ' Essences before it\'s time for you', 'to proceed inside and collect the', 'seventh...', 'Hurry. We\'re all counting on you.'];
			++count;
			holder.objects.attachMovie('objects', 'oldman', count);
			holder.objects.oldman._x = custarr[2];
			holder.objects.oldman._y = custarr[3];
			holder.objects.oldman.specarr = new Array();
			holder.objects.oldman.specarr = custarr;
		}
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 461 {
		allmap = '352 BREAK 781 BREAK 40 BREAK 30 BREAK 253,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,253,256,246,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,253,253,256,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,253,253,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,245,246,246,246,246,247,0,0,0,0,0,0,0,0,253,253,253,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,245,246,246,246,246,246,247,248,253,253,253,253,249,245,246,246,247,0,0,0,0,253,253,253,253,249,245,246,246,246,246,246,246,246,246,246,246,246,246,247,248,253,253,253,253,253,249,248,253,253,253,253,249,248,253,253,249,245,246,246,246,253,253,253,253,249,248,253,253,253,253,253,253,253,253,253,253,253,253,249,248,253,253,253,253,253,249,248,253,253,253,253,249,248,253,253,249,248,253,253,253,253,253,253,253,249,248,253,253,253,253,253,253,253,253,253,253,253,253,249,248,253,253,253,253,253,249,248,253,253,253,253,249,248,253,253,249,248,253,253,253,253,253,253,253,249,248,253,253,253,253,253,253,253,253,253,253,253,253,249,248,253,253,253,253,253,249,248,253,253,253,253,249,248,253,253,249,248,253,253,253,253,253,253,253,249,248,253,253,253,253,253,253,253,253,253,253,253,253,249,248,253,253,253,253,253,249,248,253,253,253,253,249,248,253,253,249,248,253,253,253 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,751,752,753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,754,755,756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,757,758,759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,760,761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,794,795,796,797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,798,799,800,801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,802,803,804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,778,0,0,0,0,0,0,777,0,0,0,0,0,0,0,0,0,0,0,0,777,779,0,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,778,779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_planet7 BREAK 6 BREAK 1,45,353,783.05 BREAK 2,4,486,792 BREAK 3,36,350,777,4,3,select2,310,275 BREAK 4,8,922,727.05,shroomwoman,13,Great that you\'re here.,Is it just you? BREAK 5,2,113,666,144,5 BREAK 6,2,145,664,145,5';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_shroomsSound');
		if (!actions[71]) {
			++count;
			holder.foreground.attachMovie('planet7_overlay', 'overlay', count);
		}
		if (!actions[71]) {
			custarr = [3, 3, 1288, 695, 1, 100, 'act7s2', 50, 820];
		} else {
			custarr = [3, 3, 1288, 695, 1, 100, 'act7s2l', 50, 820];
		}
		++count;
		holder.objects.attachMovie('objects', 'shifter', count);
		holder.objects.shifter._x = custarr[2];
		holder.objects.shifter._y = custarr[3];
		holder.objects.shifter.specarr = new Array();
		holder.objects.shifter.specarr = custarr;
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
			holder.foreground.overlay._x = -holder._x;
			holder.foreground.overlay._y = -holder._y;
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 462 {
		allmap = '54 BREAK 815 BREAK 45 BREAK 30 BREAK 253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,249,245,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,251,252,250,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,258,259,259,260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,258,259,259,260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,245,261,246,246,246,246,261,261,246,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,253,253,253,253,253,253,253,253,249,245,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,258,259,260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,251,251,251,251,251,251,251,251,252,250,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,258,259,259,259,260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,258,259,259,259,259,259,259,260,0,0,0,0,0,0,0,0,0,0,0,0,0,258,259,260,0,0,0,0,0,0,0,0,0,245,246,246,246,246,246,246,246,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,253,253,253,253,253,253,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,253,253,253,253,253,253,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,246,246,246,246,246,246,246,246,246,246,261,261,246,261,261,246,246,246,261,246,261,246,247,248,253,253,253,253,253,253,253,249,245,246,261,246,261,261,246,246,261,246,246,261,246,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,249,248,253,253,253,253,253,253,253,249,248,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,249,248,253,253,253,253,253,253,253,249,248,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,249,248,253,253,253,253,253,253,253,249,248,253,253,253,253,253,253,253,253,253,253,253,253 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,124,124,124,124,124,124,124,124,128,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,124,124,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,777,778,808,813,813,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,808,814,814,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,808,813,813,809,808,813,813,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,808,813,816,809,808,813,813,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,810,812,815,811,810,812,812,811,779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,808,814,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,780,781,0,794,795,796,797,0,0,0,0,0,0,808,814,809,0,817,818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0,0,781,781,0,798,799,800,801,0,0,0,0,0,0,810,812,811,0,819,820,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,782,0,0,802,803,804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,783,784,785,0,0,0,0,0,0,808,813,813,813,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,808,813,813,813,813,813,813,809,0,0,0,0,0,0,0,786,787,788,0,817,818,808,814,809,808,813,816,813,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,808,813,814,813,816,813,814,809,0,0,0,0,0,0,0,789,790,791,0,819,820,810,812,811,810,813,815,813,811,0,0,778,779,0,0,0,0,0,0,0,0,0,777,0,779,810,812,812,812,815,812,812,811,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_planet7 BREAK 6 BREAK 1,2,82,121.1,130,9 BREAK 2,2,113,121.1,131,7 BREAK 3,3,-8,802.05,1,15,act7s1,1230,780 BREAK 4,3,1447,733,1,100,act7s3,50,500 BREAK 6,7,369,514,1,3,act7s2h2,270,460 BREAK 7,7,531,805.05,1,3,act7s2h1,400,340 BREAK 8,7,1263,805.05,1,3,act7s2h3,370,460';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_shroomsSound');
		if (!actions[71]) {
			++count;
			holder.foreground.attachMovie('planet7_overlay', 'overlay', count);
		}
		if (!actions[71]) {
			custarr = [10, 8, 832, 731.05, 'shroomwoman', 13, 'The Orb is a bit further to the right@', 'but it\'s useless until it\'s activated.'];
		} else {
			custarr = [10, 8, 832, 731.05, 'shroomwoman', 13, 'The light feels good on my skin.'];
		}
		++count;
		holder.objects.attachMovie('objects', 'npc' + count, count);
		holder.objects['npc' + count]._x = custarr[2];
		holder.objects['npc' + count]._y = custarr[3];
		holder.objects['npc' + count].specarr = new Array();
		holder.objects['npc' + count].specarr = custarr;
		if (!actions[71]) {
			custarr = [9, 8, 269, 826.05, 'shroomman', 12, 'We will not survive long in here without', 'daylight.'];
		} else {
			custarr = [9, 8, 269, 826.05, 'shroomman', 12, 'It\'s not the sun, but it will do.'];
		}
		++count;
		holder.objects.attachMovie('objects', 'npc' + count, count);
		holder.objects['npc' + count]._x = custarr[2];
		holder.objects['npc' + count]._y = custarr[3];
		holder.objects['npc' + count].specarr = new Array();
		holder.objects['npc' + count].specarr = custarr;
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
			holder.foreground.overlay._x = -holder._x;
			holder.foreground.overlay._y = -holder._y;
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 463 {
		allmap = '48 BREAK 488 BREAK 50 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,262,0,262,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,262,0,262,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,262,0,262,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,262,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,262,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,262,262,262,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,258,259,260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,245,246,246,246,246,246,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,258,259,260,0,0,0,0,0,0,0,0,0,0,245,246,246,246,246,246,246,246,246,246,246,247,248,253,253,253,253,253,249,245,246,246,246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,253,253,253,253,253,253,253,253,253,253,249,248,253,253,253,253,253,249,248,253,253,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,245,246,246,246,246,247,248,253,253,253,253,253,253,253,253,253,253,249,248,253,253,253,253,253,249,248,253,253,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,253,253,253,253,249,248,253,253,253,253,253,253,253,253,253,253,249,248,253,253,253,253,253,249,248,253,253,253,0,0,0,0,0,0,0,0,0,0,0,0,0,245,246,246,246,246,246,246,247,248,253,253,253,253,249,248,253,253,253,253,253,253,253,253,253,253,249,248,253,253,253,253,253,249,248,253,253,253,0,0,0,0,0,0,0,0,0,245,246,246,247,248,253,253,253,253,253,253,249,248,253,253,253,253,249,248,253,253,253,253,253,253,253,253,253,253,249,248,253,253,253,253,253,249,248,253,253,253,246,246,246,246,246,246,246,246,247,248,253,253,249,248,253,253,253,253,253,253,249,248,253,253,253,253,249,248,253,253,253,253,253,253,253,253,253,253,249,248,253,253,253,253,253,249,248,253,253,253,253,253,253,253,253,253,253,253,249,248,253,253,249,248,253,253,253,253,253,253,249,248,253,253,253,253,249,248,253,253,253,253,253,253,253,253,253,253,249,248,253,253,253,253,253,249,248,253,253,253,253,253,253,253,253,253,253,253,249,248,253,253,249,248,253,253,253,253,253,253,249,248,253,253,253,253,249,248,253,253,253,253,253,253,253,253,253,253,249,248,253,253,253,253,253,249,248,253,253,253,253,253,253,253,253,253,253,253,249,248,253,253,249,248,253,253,253,253,253,253,249,248,253,253,253,253,249,248,253,253,253,253,253,253,253,253,253,253,249,248,253,253,253,253,253,249,248,253,253,253 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,808,814,809,0,783,784,785,0,0,0,0,0,0,0,0,0,0,0,0,0,817,818,0,777,779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,777,808,814,809,0,786,787,788,0,0,0,0,777,777,0,0,0,777,778,777,778,819,820,0,0,0,0,0,0,0,777,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,808,813,809,0,789,790,791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,808,814,809,808,813,809,0,0,792,793,0,0,777,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,821,822,0,0,808,813,809,808,816,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,821,822,0,0,823,824,0,777,810,812,811,810,815,811,779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,817,818,823,824,0,0,825,826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,819,820,825,826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_planet7 BREAK 6 BREAK 1,48,1070,6 BREAK 2,3,-7,423,1,100,act7s2,1390,820 BREAK 3,3,1361,19,3,2,act7orb,910,660 BREAK 4,7,592,416,1,3,act7s3h1,400,470 BREAK 5,3,1604,200,1,30,act7s4,50,310 BREAK 6,8,1002,305.05,shroomman,12,When we were swallowed by X\'o\'chthu@,it quickly became apparent that the lack,of sunlight was our biggest threat. So,we constructed this Orb. It\'s ready to,be lit@ but we\'re struggling with the,ignition mechanism of the core. Besides@,the core is full of winged creatures.,It\'s really all quite hopeless.,null,null,null,null,null BREAK 7,8,190,497.05,shroomwoman,13,You\'d expect it to be cold without the,sun@ but it\'s actually quite warm@ isn\'t,it? We must be feeling the body heat of,the monster.,null,null,null,null,null';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_shroomsSound');
		if (!actions[71]) {
			++count;
			holder.foreground.attachMovie('planet7_overlay', 'overlay', count);
		}
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
			holder.foreground.overlay._x = -holder._x;
			holder.foreground.overlay._y = -holder._y;
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 464 {
		allmap = '911 BREAK 652 BREAK 30 BREAK 30 BREAK 277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,275,277,277,277,277,277,277,277,275,275,277,277,277,276,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,276,276,277,277,277,275,282,283,282,283,282,283,277,277,277,277,276,277,277,277,277,277,277,277,277,277,277,277,276,277,278,279,277,275,282,283,284,285,284,285,284,285,282,283,275,277,278,279,277,277,275,277,277,277,277,277,277,277,277,277,280,281,276,276,284,285,0,0,0,0,0,0,284,285,276,276,280,281,277,277,277,276,277,277,277,275,278,279,277,275,276,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,275,275,277,278,279,277,277,278,279,280,281,276,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,276,280,281,277,277,280,281,276,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,276,277,277,276,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,277,277,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,277,277,275,0,0,0,0,0,0,0,0,0,0,282,283,282,283,282,283,0,0,0,0,0,0,0,0,0,0,278,279,277,275,0,0,0,0,0,0,0,0,0,0,284,285,284,285,284,285,0,0,0,0,0,0,0,0,0,0,280,281,277,276,0,0,0,0,0,0,0,0,0,0,276,276,275,0,0,0,0,0,0,0,0,0,0,0,0,0,275,276,275,276,0,0,0,0,0,0,0,0,0,0,276,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,277,282,283,0,0,0,0,0,0,0,0,0,0,0,275,0,0,0,0,0,0,0,282,283,282,283,0,0,0,275,277,284,285,0,0,0,0,0,0,275,276,0,0,0,0,0,0,0,0,0,0,0,284,285,284,285,0,0,0,282,283,282,283,0,0,0,278,279,276,275,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,284,285,284,285,0,0,0,280,281,276,276,276,0,0,276,282,283,282,283,276,276,0,0,0,0,0,0,0,0,275,276,277,277,276,0,0,0,0,0,0,0,0,0,0,276,284,285,284,285,275,276,0,0,0,0,0,0,0,0,276,275,276,277,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,278,279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,280,281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,276,276,277,277,276,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,276,277,277,277,277,277,275,278,279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,276,275,277,277,277,277,277,276,277,280,281,276,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,276,282,283,277,277,277,277,277,277,275,277,278,279,276,275,276,276,276,276,0,0,0,0,0,0,276,276,276,276,275,275,284,285,277,277,277,277,277,277,277,277,280,281,277,277,275,282,283,275,276,276,276,275,275,276,275,275,282,283,282,283,282,283,275,277,277,277,277,277,277,277,277,277,277,277,275,284,285,278,279,282,283,275,278,279,278,279,284,285,284,285,284,285,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,280,281,284,285,277,280,281,280,281,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277,277 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_orb BREAK 0';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_shroomsSound');
		orbshift = false;
		++count;
		holder.objects.attachMovie('act7orblight', 'orblight', count);
		holder.objects.orblight._x = 480;
		holder.objects.orblight._y = 320;
		if (actions[71]) {
			holder.objects.orblight.gotoAndStop(2);
		}
		if (!actions[71]) {
			custarr = [6, 3, 951, 640.05, 1, 10, 'act7s3', 1360, 110];
		} else {
			custarr = [6, 3, 951, 640.05, 1, 10, 'act7s3l', 1360, 110];
		}
		++count;
		holder.objects.attachMovie('objects', 'shifter', count);
		holder.objects.shifter._x = custarr[2];
		holder.objects.shifter._y = custarr[3];
		holder.objects.shifter.specarr = new Array();
		holder.objects.shifter.specarr = custarr;
		custarr = [5, 12, 292, 696.05, 3];
		++count;
		holder.objects.attachMovie('objects', 'bird1', count);
		holder.objects.bird1._x = custarr[2];
		holder.objects.bird1._y = custarr[3];
		holder.objects.bird1.specarr = new Array();
		holder.objects.bird1.specarr = custarr;
		custarr = [4, 12, 716, 644.05, 3];
		++count;
		holder.objects.attachMovie('objects', 'bird2', count);
		holder.objects.bird2._x = custarr[2];
		holder.objects.bird2._y = custarr[3];
		holder.objects.bird2.specarr = new Array();
		holder.objects.bird2.specarr = custarr;
		custarr = [3, 12, 661, 258.05, 3];
		++count;
		holder.objects.attachMovie('objects', 'bird3', count);
		holder.objects.bird3._x = custarr[2];
		holder.objects.bird3._y = custarr[3];
		holder.objects.bird3.specarr = new Array();
		holder.objects.bird3.specarr = custarr;
		custarr = [1, 12, 270, 347.05, 3];
		++count;
		holder.objects.attachMovie('objects', 'bird4', count);
		holder.objects.bird4._x = custarr[2];
		holder.objects.bird4._y = custarr[3];
		holder.objects.bird4.specarr = new Array();
		holder.objects.bird4.specarr = custarr;
		onEnterFrame = function () {
			if (!actions[71] and holder.objects.orblight.hitTest(holder.cloudsExplosion)) {
				actions[71] = true;
				holder.objects.orblight.gotoAndStop(2);
				holder.objects.shifter.removeMovieClip();
				custarr = [6, 3, 951, 640.05, 1, 10, 'act7s3l', 1360, 110];
				++count;
				holder.objects.attachMovie('objects', 'shifter', count);
				holder.objects.shifter._x = custarr[2];
				holder.objects.shifter._y = custarr[3];
				holder.objects.shifter.specarr = new Array();
				holder.objects.shifter.specarr = custarr;
				orbtargx = holder.player._x;
				orbtargy = holder.player._y;
				orbshift = true;
				cutscene = true;
				transferbirds = true;
				if (holder.objects.bird1) {
					bird1 = true;
					bird1x = holder.objects.bird1._x;
					bird1y = holder.objects.bird1._y;
				}
				if (holder.objects.bird2) {
					bird2 = true;
					bird2x = holder.objects.bird2._x;
					bird2y = holder.objects.bird2._y;
				}
				if (holder.objects.bird3) {
					bird3 = true;
					bird3x = holder.objects.bird3._x;
					bird3y = holder.objects.bird3._y;
				}
				if (holder.objects.bird4) {
					bird4 = true;
					bird4x = holder.objects.bird4._x;
					bird4y = holder.objects.bird4._y;
				}
			}
			if (orbshift) {
				shift_frame('act7orbl', orbtargx, orbtargy);
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 465 {
		allmap = '48 BREAK 301 BREAK 30 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,248,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,0,0,0,0,0,0,0,0,0,0,0,0,248,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,0,0,0,0,0,0,0,0,0,0,0,0,248,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,0,0,0,0,0,0,0,0,0,262,262,262,248,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,0,0,0,0,0,0,0,0,0,262,0,262,248,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,0,0,0,0,0,0,0,0,0,262,0,262,248,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,0,0,0,0,0,0,0,0,0,258,259,260,250,251,251,255,253,253,253,253,253,253,253,253,253,253,253,253,253,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,253,253,253,253,253,253,253,253,253,253,253,253,253,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,253,253,253,253,253,253,253,253,253,253,253,253,253,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,253,253,253,253,253,253,253,253,253,253,253,253,253,253,246,246,246,246,246,246,246,247,0,245,246,246,246,246,247,248,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,249,0,248,253,253,253,253,249,248,253,253,253,253,253,254,251,251,251,251,251,251,251,251,253,253,253,253,253,253,253,249,0,248,253,253,253,253,249,248,253,253,253,253,253,249,0,0,0,0,0,0,0,0,253,253,253,253,253,253,253,249,0,248,253,253,253,253,249,248,253,253,253,253,253,249,0,0,0,0,0,0,0,0,253,253,253,253,253,253,253,249,0,250,251,251,251,251,252,250,251,251,251,251,251,252,0,0,0,0,0,0,0,0,253,253,253,253,253,253,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,245,246,246,246,253,253,253,253,253,253,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,253,253,253,253,253,253,253,253,253,253,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,253,253,253,253,253,253,253,253,253,253,249,245,246,246,246,246,246,247,245,246,246,246,246,246,246,246,246,246,247,248,253,253,253,253,253,253,253,253,253,253,249,248,253,253,253,253,253,249,248,253,253,253,253,253,253,253,253,253,249,248,253,253,253 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,121,122,778,779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,808,813,809,808,813,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,808,813,809,808,816,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,777,119,0,810,812,811,810,815,811,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_planet7 BREAK 7 BREAK 1,7,433,286,1,3,act7factory1,145,370 BREAK 2,3,-9,209,1,30,act7s3,1550,300';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_shroomsSound');
		if (!actions[71]) {
			++count;
			holder.foreground.attachMovie('planet7_overlay', 'overlay', count);
			++count;
			holder.attachMovie('act7s4darkness', 'darkness', count);
		}
		onEnterFrame = function () {
			if (holder.player._x > 480) {
				holder.player._x = 470;
				mesarr = new Array();
				mesarr[0] = 'It\'s too dark, I can\'t see anything.';
				_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'hero');
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
			holder.foreground.overlay._x = -holder._x;
			holder.foreground.overlay._y = -holder._y;
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 466 {
		allmap = '352 BREAK 781 BREAK 40 BREAK 30 BREAK 294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,294,297,287,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,294,294,297,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,294,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,286,287,287,287,287,288,0,0,0,0,0,0,0,0,294,294,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,286,287,287,287,287,287,288,289,294,294,294,294,290,286,287,287,288,0,0,0,0,294,294,294,294,290,286,287,287,287,287,287,287,287,287,287,287,287,287,288,289,294,294,294,294,294,290,289,294,294,294,294,290,289,294,294,290,286,287,287,287,294,294,294,294,290,289,294,294,294,294,294,294,294,294,294,294,294,294,290,289,294,294,294,294,294,290,289,294,294,294,294,290,289,294,294,290,289,294,294,294,294,294,294,294,290,289,294,294,294,294,294,294,294,294,294,294,294,294,290,289,294,294,294,294,294,290,289,294,294,294,294,290,289,294,294,290,289,294,294,294,294,294,294,294,290,289,294,294,294,294,294,294,294,294,294,294,294,294,290,289,294,294,294,294,294,290,289,294,294,294,294,290,289,294,294,290,289,294,294,294,294,294,294,294,290,289,294,294,294,294,294,294,294,294,294,294,294,294,290,289,294,294,294,294,294,290,289,294,294,294,294,290,289,294,294,290,289,294,294,294 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,826,827,828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,829,830,831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,832,833,834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,835,836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,869,870,871,872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,873,874,875,876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,877,878,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,843,0,0,0,0,0,0,842,0,0,0,0,0,0,0,0,0,0,0,0,842,844,0,0,0,0,0,0,0,0,0,0,0,842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,843,844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_planet7 BREAK 6 BREAK 1,45,352,786.05 BREAK 2,4,486,792 BREAK 3,3,1288,695,1,100,act7s2l,50,820 BREAK 3,36,350,777,4,3,select2,310,275 BREAK 4,8,922,727.05,shroomwoman,13,Great that you\'re here.,Is it just you? BREAK 5,2,114,660,144,5 BREAK 6,2,144,659,145,5';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_shroomsSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 467 {
		allmap = '54 BREAK 815 BREAK 45 BREAK 30 BREAK 294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,290,286,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,293,291,293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,301,301,302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,301,301,302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,286,299,287,287,287,287,299,299,287,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,294,294,294,294,294,294,294,294,249,286,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,301,302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,292,292,292,292,292,292,292,292,293,291,293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,301,301,301,302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,301,301,301,301,301,301,302,0,0,0,0,0,0,0,0,0,0,0,0,0,300,301,302,0,0,0,0,0,0,0,0,0,286,287,287,287,287,287,287,287,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,294,294,294,294,294,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,294,294,294,294,294,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,287,287,287,287,287,287,287,287,287,287,299,299,287,299,299,287,287,287,299,287,299,287,288,289,294,294,294,294,294,294,294,290,286,287,299,287,299,299,287,287,299,287,287,299,287,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,290,289,294,294,294,294,294,294,294,290,289,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,290,289,294,294,294,294,294,294,294,290,289,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,290,289,294,294,294,294,294,294,294,290,289,294,294,294,294,294,294,294,294,294,294,294,294 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,124,124,124,124,124,124,124,124,128,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,124,124,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,842,843,884,890,890,886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,884,889,889,886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,884,890,890,886,884,890,890,886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,884,890,892,886,884,890,890,886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,885,888,891,887,885,888,888,887,844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,0,0,0,0,0,0,0,0,0,0,0,884,889,886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,850,0,869,870,871,872,0,0,0,0,0,0,884,889,886,0,845,846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,842,0,0,0,0,0,850,850,0,873,874,875,876,0,0,0,0,0,0,885,888,887,0,847,848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,849,849,0,0,877,878,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,858,859,860,0,0,0,0,0,0,884,890,890,890,886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,884,890,890,890,890,890,890,886,0,0,0,0,0,0,0,861,862,863,0,845,846,884,889,886,884,890,892,890,886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,884,890,889,890,892,890,889,886,0,0,0,0,0,0,0,864,865,866,0,847,848,885,888,887,885,890,891,890,887,0,0,843,844,0,0,0,0,0,0,0,0,0,842,0,844,885,888,888,888,891,888,888,887,843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_planet7 BREAK 6 BREAK 1,2,82,121.1,130,9 BREAK 2,2,113,121.1,131,7 BREAK 3,3,-8,802.05,1,15,act7s1l,1230,780 BREAK 4,3,1447,733,1,100,act7s3l,50,500 BREAK 6,7,369,514,1,3,act7s2h2,270,460 BREAK 7,7,531,805.05,1,3,act7s2h1,400,340 BREAK 8,7,1263,805.05,1,3,act7s2h3,370,460';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_shroomsSound');
		if (!actions[71]) {
			custarr = [10, 8, 832, 731.05, 'shroomwoman', 13, 'The Orb is a bit further to the right@', 'but it\'s useless until it\'s activated.'];
		} else {
			custarr = [10, 8, 832, 731.05, 'shroomwoman', 13, 'The light feels good on my skin.'];
		}
		++count;
		holder.objects.attachMovie('objects', 'npc' + count, count);
		holder.objects['npc' + count]._x = custarr[2];
		holder.objects['npc' + count]._y = custarr[3];
		holder.objects['npc' + count].specarr = new Array();
		holder.objects['npc' + count].specarr = custarr;
		if (!actions[71]) {
			custarr = [9, 8, 269, 826.05, 'shroomman', 12, 'We will not survive long in here without', 'daylight.'];
		} else {
			custarr = [9, 8, 269, 826.05, 'shroomman', 12, 'It\'s not the sun, but it will do.'];
		}
		++count;
		holder.objects.attachMovie('objects', 'npc' + count, count);
		holder.objects['npc' + count]._x = custarr[2];
		holder.objects['npc' + count]._y = custarr[3];
		holder.objects['npc' + count].specarr = new Array();
		holder.objects['npc' + count].specarr = custarr;
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 468 {
		allmap = '48 BREAK 488 BREAK 50 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,303,0,303,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,303,0,303,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,303,0,303,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,303,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,303,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,303,303,303,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,301,302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,286,287,287,287,287,287,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,301,302,0,0,0,0,0,0,0,0,0,0,286,287,287,287,287,287,287,287,287,287,287,288,289,294,294,294,294,294,290,286,287,287,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,294,294,294,294,294,294,294,294,294,294,290,289,294,294,294,294,294,290,289,294,294,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,286,287,287,287,287,288,289,294,294,294,294,294,294,294,294,294,294,290,289,294,294,294,294,294,290,289,294,294,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,294,294,294,294,290,289,294,294,294,294,294,294,294,294,294,294,290,289,294,294,294,294,294,290,289,294,294,294,0,0,0,0,0,0,0,0,0,0,0,0,0,286,287,287,287,287,287,287,288,289,294,294,294,294,290,289,294,294,294,294,294,294,294,294,294,294,290,289,294,294,294,294,294,290,289,294,294,294,0,0,0,0,0,0,0,0,0,286,287,287,288,289,294,294,294,294,294,294,290,289,294,294,294,294,290,289,294,294,294,294,294,294,294,294,294,294,290,289,294,294,294,294,294,290,289,294,294,294,287,287,287,287,287,287,287,287,288,289,294,294,290,289,294,294,294,294,294,294,290,289,294,294,294,294,290,289,294,294,294,294,294,294,294,294,294,294,290,289,294,294,294,294,294,290,289,294,294,294,294,294,294,294,294,294,294,294,290,289,294,294,290,289,294,294,294,294,294,294,290,289,294,294,294,294,290,289,294,294,294,294,294,294,294,294,294,294,290,289,294,294,294,294,294,290,289,294,294,294,294,294,294,294,294,294,294,294,290,289,294,294,290,289,294,294,294,294,294,294,290,289,294,294,294,294,290,289,294,294,294,294,294,294,294,294,294,294,290,289,294,294,294,294,294,290,289,294,294,294,294,294,294,294,294,294,294,294,290,289,294,294,290,289,294,294,294,294,294,294,290,289,294,294,294,294,290,289,294,294,294,294,294,294,294,294,294,294,290,289,294,294,294,294,294,290,289,294,294,294 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,884,889,886,0,858,859,860,0,0,0,0,0,0,0,0,0,0,0,0,0,845,846,0,842,844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,842,884,889,886,0,861,862,863,0,0,0,0,842,842,0,0,0,842,843,842,843,847,848,0,0,0,0,0,0,0,842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,884,890,886,0,864,865,866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,884,889,886,884,890,886,0,0,867,868,0,0,842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,852,853,0,0,884,890,886,884,892,886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,852,853,0,0,854,855,0,842,885,888,887,885,891,887,844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,845,846,854,855,0,0,856,857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,847,848,856,857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_planet7 BREAK 6 BREAK 1,48,1070,6 BREAK 2,3,-7,423,1,100,act7s2l,1390,820 BREAK 3,3,1361,19,3,2,act7orbl,910,660 BREAK 4,7,592,416,1,3,act7s3h1,400,470 BREAK 5,3,1607,178.05,1,30,act7s4l,50,310 BREAK 6,8,986,312.05,shroomman,12,You lit the core! You\'re a hero!,null,null,null,null BREAK 7,8,215,499,shroomwoman,13,It\'s nice and warm@ bright fake sun...,Think I\'ll get a tan? Ha-ha.,.  .  .	.	.,It\'s a bad situation@ what else can I do,but joke?,null,null,null,null,null';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_shroomsSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 469 {
		allmap = '911 BREAK 652 BREAK 30 BREAK 30 BREAK 314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,312,314,314,314,314,314,314,314,312,312,314,314,314,313,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,313,313,314,314,314,312,308,309,308,309,308,309,314,314,314,314,313,314,314,314,314,314,314,314,314,314,314,314,313,314,304,305,314,312,308,309,310,311,310,311,310,311,308,309,312,314,304,305,314,314,312,314,314,314,314,314,314,314,314,314,306,307,313,313,310,311,0,0,0,0,0,0,310,311,313,313,306,307,314,314,314,313,314,314,314,312,304,305,314,312,313,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,312,312,314,304,305,314,314,304,305,306,307,313,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,313,306,307,314,314,306,307,313,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,313,314,314,313,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,314,314,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,314,314,312,0,0,0,0,0,0,0,0,0,0,308,309,308,309,308,309,0,0,0,0,0,0,0,0,0,0,304,305,314,312,0,0,0,0,0,0,0,0,0,0,310,311,310,311,310,311,0,0,0,0,0,0,0,0,0,0,306,307,314,313,0,0,0,0,0,0,0,0,0,0,313,313,312,0,0,0,0,0,0,0,0,0,0,0,0,0,312,313,312,313,0,0,0,0,0,0,0,0,0,0,313,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,312,314,308,309,0,0,0,0,0,0,0,0,0,0,0,312,0,0,0,0,0,0,0,308,309,308,309,0,0,0,312,314,310,311,0,0,0,0,0,0,312,313,0,0,0,0,0,0,0,0,0,0,0,310,311,310,311,0,0,0,308,309,308,309,0,0,0,304,305,313,312,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,312,310,311,310,311,0,0,0,306,307,313,313,313,0,0,313,308,309,308,309,313,313,0,0,0,0,0,0,0,0,312,313,314,314,313,0,0,0,0,0,0,0,0,0,0,313,310,311,310,311,312,313,0,0,0,0,0,0,0,0,313,312,313,314,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,314,304,305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,314,306,307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,313,313,314,314,313,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,313,314,314,314,314,314,312,304,305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,313,312,314,314,314,314,314,313,314,306,307,313,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,313,308,309,314,314,314,314,314,314,312,314,304,305,313,312,313,313,313,313,0,0,0,0,0,0,313,313,313,313,312,312,310,311,314,314,314,314,314,314,314,314,306,307,314,314,312,308,309,312,313,313,313,312,312,313,312,312,308,309,308,309,308,309,312,314,314,314,314,314,314,314,314,314,314,314,312,310,311,304,305,308,309,312,304,305,304,305,310,311,310,311,310,311,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,306,307,310,311,314,306,307,306,307,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314,314 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_orb BREAK 0';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_shroomsSound');
		++count;
		holder.objects.attachMovie('act7orblight', 'orblight', count);
		holder.objects.orblight._x = 480;
		holder.objects.orblight._y = 320;
		if (actions[71]) {
			holder.objects.orblight.gotoAndStop(2);
		}
		if (!actions[71]) {
			custarr = [6, 3, 951, 640.05, 1, 10, 'act7s3', 1360, 110];
		} else {
			custarr = [6, 3, 951, 640.05, 1, 10, 'act7s3l', 1360, 110];
		}
		++count;
		holder.objects.attachMovie('objects', 'shifter', count);
		holder.objects.shifter._x = custarr[2];
		holder.objects.shifter._y = custarr[3];
		holder.objects.shifter.specarr = new Array();
		holder.objects.shifter.specarr = custarr;
		if (transferbirds) {
			if (bird1) {
				custarr = [5, 12, bird1x, bird1y, 3];
				++count;
				holder.objects.attachMovie('objects', 'bird1', count);
				holder.objects.bird1._x = custarr[2];
				holder.objects.bird1._y = custarr[3];
				holder.objects.bird1.specarr = new Array();
				holder.objects.bird1.specarr = custarr;
			}
			if (bird2) {
				custarr = [5, 12, bird2x, bird2y, 3];
				++count;
				holder.objects.attachMovie('objects', 'bird2', count);
				holder.objects.bird2._x = custarr[2];
				holder.objects.bird2._y = custarr[3];
				holder.objects.bird2.specarr = new Array();
				holder.objects.bird2.specarr = custarr;
			}
			if (bird3) {
				custarr = [5, 12, bird3x, bird3y, 3];
				++count;
				holder.objects.attachMovie('objects', 'bird3', count);
				holder.objects.bird3._x = custarr[2];
				holder.objects.bird3._y = custarr[3];
				holder.objects.bird3.specarr = new Array();
				holder.objects.bird3.specarr = custarr;
			}
			if (bird4) {
				custarr = [5, 12, bird4x, bird4y, 3];
				++count;
				holder.objects.attachMovie('objects', 'bird4', count);
				holder.objects.bird4._x = custarr[2];
				holder.objects.bird4._y = custarr[3];
				holder.objects.bird4.specarr = new Array();
				holder.objects.bird4.specarr = custarr;
			}
		} else {
			custarr = [5, 12, 292, 696.05, 3];
			++count;
			holder.objects.attachMovie('objects', 'bird1', count);
			holder.objects.bird1._x = custarr[2];
			holder.objects.bird1._y = custarr[3];
			holder.objects.bird1.specarr = new Array();
			holder.objects.bird1.specarr = custarr;
			custarr = [4, 12, 716, 644.05, 3];
			++count;
			holder.objects.attachMovie('objects', 'bird2', count);
			holder.objects.bird2._x = custarr[2];
			holder.objects.bird2._y = custarr[3];
			holder.objects.bird2.specarr = new Array();
			holder.objects.bird2.specarr = custarr;
			custarr = [3, 12, 661, 258.05, 3];
			++count;
			holder.objects.attachMovie('objects', 'bird3', count);
			holder.objects.bird3._x = custarr[2];
			holder.objects.bird3._y = custarr[3];
			holder.objects.bird3.specarr = new Array();
			holder.objects.bird3.specarr = custarr;
			custarr = [1, 12, 270, 347.05, 3];
			++count;
			holder.objects.attachMovie('objects', 'bird4', count);
			holder.objects.bird4._x = custarr[2];
			holder.objects.bird4._y = custarr[3];
			holder.objects.bird4.specarr = new Array();
			holder.objects.bird4.specarr = custarr;
		}
		transferbirds = false;
		bird1 = false;
		bird2 = false;
		bird3 = false;
		bird4 = false;
		onEnterFrame = function () {
			if (!actions[71] and holder.objects.orblight.hitTest(holder.cloudsExplosion)) {
				actions[71] = true;
				holder.objects.orblight.gotoAndStop(2);
				holder.objects.shifter.removeMovieClip();
				custarr = [6, 3, 951, 640.05, 1, 10, 'act7s3l', 1360, 110];
				++count;
				holder.objects.attachMovie('objects', 'shifter', count);
				holder.objects.shifter._x = custarr[2];
				holder.objects.shifter._y = custarr[3];
				holder.objects.shifter.specarr = new Array();
				holder.objects.shifter.specarr = custarr;
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 470 {
		allmap = '48 BREAK 301 BREAK 30 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,289,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,0,0,0,0,0,0,0,0,0,0,0,0,289,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,0,0,0,0,0,0,0,0,0,0,0,0,289,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,0,0,0,0,0,0,0,0,0,303,303,303,289,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,0,0,0,0,0,0,0,0,0,303,0,303,289,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,0,0,0,0,0,0,0,0,0,303,0,303,289,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,0,0,0,0,0,0,0,0,0,300,301,302,291,292,292,296,294,294,294,294,294,294,294,294,294,294,294,294,294,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,294,294,294,294,294,294,294,294,294,294,294,294,294,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,294,294,294,294,294,294,294,294,294,294,294,294,294,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,294,294,294,294,294,294,294,294,294,294,294,294,294,294,287,287,287,287,287,287,287,288,0,286,287,287,287,287,288,289,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,290,0,289,294,294,294,294,290,289,294,294,294,294,294,295,292,292,292,292,292,292,292,292,294,294,294,294,294,294,294,290,0,289,294,294,294,294,290,289,294,294,294,294,294,290,0,0,0,0,0,0,0,0,294,294,294,294,294,294,294,290,0,289,294,294,294,294,290,289,294,294,294,294,294,290,0,0,0,0,0,0,0,0,294,294,294,294,294,294,294,290,0,291,292,292,292,292,293,291,292,292,292,292,292,293,0,0,0,0,0,0,0,0,294,294,294,294,294,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,286,287,287,287,294,294,294,294,294,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,294,294,294,294,294,294,294,294,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,294,294,294,294,294,294,294,294,294,294,290,286,287,287,287,287,287,288,286,287,287,287,287,287,287,287,287,287,288,289,294,294,294,294,294,294,294,294,294,294,290,289,294,294,294,294,294,290,289,294,294,294,294,294,294,294,294,294,290,289,294,294,294 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,121,122,843,844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,884,890,886,884,890,886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,884,890,886,884,816,886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,842,119,0,885,888,887,885,815,887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_planet7 BREAK 7 BREAK 1,7,433,286,1,3,act7factory1,145,370 BREAK 3,3,-7,242.05,1,30,act7s3l,1550,300 BREAK 4,4,751,565.05 BREAK 5,3,963,431.05,1,10,act7s5,120,370';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_shroomsSound');
		if (!actions[73]) {
			custarr = [6, 8, 625, 565.05, 'shroomman', 12, 'Thank heavens you\'re here! Master', 'Movo told us you were coming@ so we', 'prepared the Essence for you. Alas@ its', 'energy combined with the forces of', 'X\'o\'chthu drew forth something evil', 'from the ground. You\'ve got to stop it!'];
		} else {
			custarr = [6, 8, 625, 565.05, 'shroomman', 12, 'Well done. Keep going@ only you can', 'save us all.', 'By the way...', 'I know what happened to Movo. I am so', 'sorry.'];
		}
		++count;
		holder.objects.attachMovie('objects', 'npc' + count, count);
		holder.objects['npc' + count]._x = custarr[2];
		holder.objects['npc' + count]._y = custarr[3];
		holder.objects['npc' + count].specarr = new Array();
		holder.objects['npc' + count].specarr = custarr;
		storewalkspeed = walkspeed;
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 471 {
		allmap = '121 BREAK 367 BREAK 30 BREAK 15 BREAK 294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,294,294,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,294,294,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,294,294,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,294,294,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,294,294,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,294,294,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,294,294,294,294,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,294,294,292,292,293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,294,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,294,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,294,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,294,294,287,287,287,287,287,287,287,287,287,287,287,287,287,287,287,287,287,287,287,287,287,287,287,287,287,287,288,289,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,290,289,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,294,290,289,294,294 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_planet7 BREAK 7 BREAK 1,3,-6,335.05,1,10,act7s4l,910,470';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('');
		msgdelay = 60;
		currentwind = 0;
		if (storewalkspeed != null) {
			walkspeed = storewalkspeed;
		} else {
			storewalkspeed = walkspeed;
		}
		if (!actions[73]) {
			fadeout_music();
			++count;
			holder.ground.attachMovie('act7boss_door', 'door1', count);
			holder.ground.door1._x = 96;
			holder.ground.door1._y = 384;
			++count;
			holder.objects.attachMovie('act7boss', 'boss', count);
			holder.objects.boss._x = 480;
			holder.objects.boss._y = 384;
			holder.objects.boss.maxlife = 80;
			holder.objects.boss.life = holder.objects.boss.maxlife;
			holder.objects.boss.actiondelay = 50;
			holder.objects.boss.damageDelay = 0;
			holder.objects.boss.flashCount = 0;
			holder.objects.boss.tentacleDelay = 30;
			holder.objects.boss.windDelay = 300;
			holder.objects.boss.covered = false;
			startboss = false;
			holder.objects.boss.onEnterFrame = function () {
				if (!game_paused and !msgbox._visible and startboss) {
					this.pctlife = this.life / this.maxlife;
					this.generateTentacle();
					this.driveWind();
					this.generateSpore();
					if (_root.damageDelay == 0) {
						if (this.hitbox.hitTest(_root.holder.player._x + _root.holder._x + tilesize / 2, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true)) {
							_root.xspeed = 0;
							_root.bumpAmount -= _root.standardBump;
							_root.shadeCount = 30;
							_root.takedamage(1);
						}
						if (this.hitbox.hitTest(_root.holder.player._x + _root.holder._x - tilesize / 2, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true)) {
							_root.xspeed = 0;
							_root.bumpAmount += _root.standardBump;
							_root.shadeCount = 30;
							_root.takedamage(1);
						}
					}
					if (!this.covered and this.damageDelay == 0 and _root.holder.cloudsMolotov.hitTest(this._x + _root.holder._x, this._y + _root.holder._y - tilesize, true)) {
						this.life -= _root.molotovDamage;
						this.flashCount = 12;
						this.damageDelay = 12;
						this.sporeCount = 50;
					}
					if (!this.covered and this.damageDelay == 0 and _root.holder.cloudsExplosion.hitTest(this._x + _root.holder._x, this._y + _root.holder._y - tilesize, true)) {
						this.life -= _root.explosionDamage;
						this.flashCount = 12;
						this.damageDelay = 12;
						this.sporeCount = 100;
					}
					if (!this.covered and this.damageDelay == 0 and _root.holder.cloudsIce.hitTest(this._x + _root.holder._x, this._y + _root.holder._y - tilesize, true)) {
						this.life -= _root.iceDamage;
						this.flashCount = 12;
						this.damageDelay = 12;
						this.sporeCount = 30;
					}
					if (this.flashCount > 0) {
						this.setBrightness(random(100));
						--this.flashCount;
						if (this.flashCount == 0) {
							this.setBrightness(0);
						}
					}
					if (this.damageDelay > 0) {
						--this.damageDelay;
					}
					if (this.life <= 0) {
						fadeout_music();
						_root.actions[73] = true;
						_root.createBody(this._x, this._y, 25, false, this._xscale);
						i = 0;
						while (i < maxhealth - health) {
							_root.dropHealth(this._x, this._y, 100);
							++i;
						}
						_root.create_blood(this._x, this._y, tilesize * 3, 'blood', 15);
						currentwind = 0;
						holder.ground.door1.play();
						++count;
						attachMovie('whiteflash_short', 'whiteflash' + count, count);
						++count;
						holder.nohtobjects.attachMovie('essences', 'essences', count);
						holder.nohtobjects.essences._x = 480;
						holder.nohtobjects.essences._y = 310;
						holder.nohtobjects.essences.id = 24;
						holder.nohtobjects.essences.gotoAndStop(7);
						_root.bosshealth.removeMovieClip();
						this.removeMovieClip();
					}
				}
			};
			holder.objects.boss.createTentacle = function () {
				++_root.count;
				holder.nohtobjects.attachMovie('act7boss_tentacle', 'tentacle' + count, count);
				tent = holder.nohtobjects['tentacle' + count];
				tent._x = _root.holder.player._x;
				tent._y = 384;
				tent.onEnterFrame = function () {
					if (this.hitbox.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true)) {
						_root.shadeCount = 30;
						_root.takedamage(1);
					}
					if (this._currentframe == 35) {
						playsound('artillery1Sound');
					}
				};
			};
			holder.objects.boss.generateTentacle = function () {
				if (this.pctlife < 0.8) {
					--this.tentacleDelay;
				}
				if (this.tentacleDelay == 0) {
					this.createTentacle();
					if (this.pctlife > 0.6) {
						this.tentacleDelay = 120;
					} else {
						if (this.pctlife > 0.4) {
							this.tentacleDelay = 80;
						} else {
							if (this.pctlife > 0.2) {
								this.tentacleDelay = 60;
							} else {
								this.tentacleDelay = 40;
							}
						}
					}
				}
			};
			holder.objects.boss.generateSpore = function () {
				if (this.sporeCount > 0) {
					--this.sporeCount;
					if (this.sporeCount % 10 == 0) {
						this.createSpore();
					}
				}
			};
			holder.objects.boss.createSpore = function () {
				playsoldiershoot();
				++_root.count;
				holder.nohtobjects.attachMovie('act7boss_spore', 'spore' + count, count);
				spore = holder.nohtobjects['spore' + count];
				spore._y = this._y - 50;
				spore._x = this._x;
				spore.yspeed = -5 - random(30) / 10;
				spore.xspeed = 2 + random(20) / 10;
				if (holder.player._x < this._x) {
					spore.xspeed *= -1;
				}
				spore.dir = 'up';
				spore._alpha = 20;
				spore.windeffect = 0.8 + random(40) / 100;
				spore.onEnterFrame = function () {
					if (!game_paused) {
						if (this.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true)) {
							_root.shadeCount = 30;
							_root.takedamage(1);
						}
						if (this._x < -50 or this._x > levelwidth + 50) {
							this.removeMovieClip();
						}
						this._y += this.yspeed;
						if (this.dir == 'up') {
							this._x += this.xspeed + _root.currentwind * 10 * this.windeffect * 0.2;
							this.yspeed += 0.1;
							if (this.yspeed > 0) {
								this.dir = 'down';
							}
						} else {
							this._x += this.xspeed + _root.currentwind * 10 * this.windeffect;
							if (this.yspeed < 2) {
								this.yspeed += 0.025;
							}
						}
						if (this._alpha < 100) {
							this._alpha += random(5);
							if (this._alpha > 100) {
								this._alpha = 100;
							}
						}
					}
				};
			};
			holder.objects.boss.driveWind = function () {
				--this.windDelay;
				if (this.pctlife > 0.6) {
					this.shieldTarg = 140;
				} else {
					if (this.pctlife > 0.3) {
						this.shieldTarg = 180;
					} else {
						this.shieldTarg = 210;
					}
				}
				if (this.windDelay == this.shieldTarg and _root.currentwind == 0) {
					this.createSporeShield();
					this.covered = true;
				}
				if (this.windDelay == 0) {
					if (_root.currentwind == 0) {
						playsound('wind1Sound');
						this.covered = false;
						if (_root.holder.player._x > this._x) {
							_root.currentwind = -1;
						} else {
							_root.currentwind = 1;
						}
						walkspeed *= 1.25;
						this.windDelay = 180;
					} else {
						_root.currentwind = 0;
						walkspeed /= 1.25;
						this.windDelay = 270;
					}
				}
				if (_root.currentwind != 0) {
					this.covered = false;
					if (_root.jumping) {
						_root.xspeed += _root.currentwind * 0.6;
					} else {
						_root.xspeed += _root.currentwind * 1.1;
					}
				}
			};
			holder.objects.boss.createSporeShield = function () {
				i = 0;
				while (i < 50) {
					++count;
					holder.nohtobjects.attachMovie('act7boss_spore', 'spore' + count, count);
					spore = holder.nohtobjects['spore' + count];
					spore._y = this._y - random(100);
					spore._x = this._x - 50 + random(100);
					spore.yspeed = 0;
					spore.xspeed = 0;
					spore.windeffect = 0.8 + random(40) / 100;
					spore.gotoAndStop(random(spore._totalframes) + 1);
					if (holder.player._x < this._x) {
						spore.xspeed *= -1;
					}
					spore._alpha = 20;
					spore.onEnterFrame = function () {
						if (!game_paused) {
							if (actions[73]) {
								this.removeMovieClip();
							}
							if (this.hitTest(_root.holder.player._x + _root.holder._x, _root.holder.player._y + _root.holder._y - _root.playheight / 2, true)) {
								_root.shadeCount = 30;
								_root.takedamage(1);
							}
							this._x += _root.currentwind * 6 * this.windeffect;
							this._y += _root.currentwind * (this.windeffect - 1) * 4;
							if (this._x < -50 or this._x > levelwidth + 50) {
								this.removeMovieClip();
							}
							if (this._alpha < 100) {
								this._alpha += random(5);
								if (this._alpha > 100) {
									this._alpha = 100;
								}
							}
						}
					};
					++i;
				}
			};
		} else {
			++count;
			holder.nohtobjects.attachMovie('essences', 'essences', count);
			holder.nohtobjects.essences._x = 480;
			holder.nohtobjects.essences._y = 310;
			holder.nohtobjects.essences.id = 24;
			holder.nohtobjects.essences.gotoAndStop(7);
			createBody(480, 384, 25, false, 100);
		}
		if (!actions[73]) {
			i = 0;
			while (i < 35) {
				++count;
				holder.foreground.attachMovie('act7leaf', 'leaf' + count, count);
				holder.foreground['leaf' + count]._x = random(levelwidth + 200) - 100;
				holder.foreground['leaf' + count]._y = random(levelheight + 150) - 150;
				holder.foreground['leaf' + count].yspeed = random(50) / 10 - 2.5;
				holder.foreground['leaf' + count].ychange = 0.12 + random(60) / 1000;
				holder.foreground['leaf' + count].xspeed = 0;
				holder.foreground['leaf' + count].xdir = 0.15;
				holder.foreground['leaf' + count].xlim = 2 + random(150) / 100;
				holder.foreground['leaf' + count]._alpha = 50 + random(25);
				holder.foreground['leaf' + count].cacheAsBitmap();
				if (random(100) > 50) {
					holder.foreground['leaf' + count].downdir = 'down';
				} else {
					holder.foreground['leaf' + count].downdir = 'up';
				}
				holder.foreground['leaf' + count].gotoAndStop(random(holder.foreground['leaf' + count]._totalframes) + 1);
				holder.foreground['leaf' + count].onEnterFrame = function () {
					if (this.downdir == 'down') {
						this.yspeed += this.ychange;
					} else {
						this.yspeed -= this.ychange;
					}
					if (this.yspeed > 4) {
						this.downdir = 'up';
					} else {
						if (this.yspeed < -1.25) {
							this.downdir = 'down';
							this.xdir *= -1;
						}
					}
					if (this.xspeed > this.xlim) {
						this.xspeed = this.xlim;
					} else {
						if (this.xspeed < -this.xlim) {
							this.xspeed = -this.xlim;
						}
					}
					this.xspeed += this.xdir;
					this._y += this.yspeed;
					this._x += this.xspeed + _root.currentwind * 15;
					if (this._y > levelheight + 50) {
						if (!actions[73]) {
							this._y = -100 - random(50);
							this._x = random(levelwidth);
							this.gotoAndStop(random(this._totalframes + 1));
						} else {
							this.removeMovieClip();
						}
					}
					if (currentwind != 0 and (this._x < -50 or this._x > levelwidth + 50)) {
						if (currentwind > 0) {
							this._x = -30;
						} else {
							if (currentwind < 0) {
								this._x = levelwidth + 30;
							}
						}
						this.gotoAndStop(random(this._totalframes + 1));
					}
				};
				++i;
			}
		}
		onEnterFrame = function () {
			if (!actions[74]) {
				--msgdelay;
				if (msgdelay == 0) {
					mesarr = new Array();
					mesarr[0] = 'What kind of accursed fungus is this?';
					mesarr[1] = 'It is clearly feeding on the Essence.';
					mesarr[2] = 'I must destroy it.';
					_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'hero');
					actions[74] = true;
					startboss = true;
					fadein_music();
					music_load('zos_bossSound');
				}
			} else {
				startboss = true;
			}
			if (startboss and !bosshealth and msgbox._visible == false and !actions[73]) {
				++count;
				attachMovie('bosshealth', 'bosshealth', count);
				bosshealth._alpha = 0;
				startboss = true;
			}
			if (bosshealth._alpha < 100) {
				bosshealth._alpha += 2;
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 479 {
		allmap = '401 BREAK 330 BREAK 20 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,268,268,268,268,268,268,269,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,0,0,0,271,0,0,0,0,0,0,267,268,268,268,268,268,266,0,0,0,0,0,0,271,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,272,273,273,273,273,273,273,273,273,273,273,273,273,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,830,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,831,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,832,838,0,0,0,0,0,829,0,0,0,0,76,76,76,76,76,76,0,0,833,839,840,841,0,0,0,828,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_shroomhouse BREAK 0 BREAK 1,8,293,347.05,shroomwoman,13,Since we\'re all going to die@ it\'s obvious,that when and how don\'t matter.,null,null,null,null,null';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_shroomsSound');
		if (!actions[71]) {
			custarr = [1, 7, 401, 320, 1, 3, 'act7s2', 530, 820];
		} else {
			custarr = [1, 7, 401, 320, 1, 3, 'act7s2l', 530, 820];
		}
		++count;
		holder.objects.attachMovie('objects', 'shifter', count);
		holder.objects.shifter._x = custarr[2];
		holder.objects.shifter._y = custarr[3];
		holder.objects.shifter.specarr = new Array();
		holder.objects.shifter.specarr = custarr;
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 480 {
		allmap = '275 BREAK 459 BREAK 24 BREAK 19 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,268,268,268,268,268,268,268,268,269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,267,268,268,268,268,268,268,268,266,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,270,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,270,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,19,271,0,0,0,0,0,0,272,273,273,273,273,273,273,273,273,273,273,273,273,273,273,273,273,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,830,0,0,830,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,831,0,0,831,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,830,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,831,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,829,0,0,0,0,832,836,837,838,834,0,0,0,76,76,76,76,76,76,0,0,0,0,0,828,0,0,0,0,833,839,840,841,835,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_shroomhouse BREAK 0 BREAK 1,28,161,407,75 BREAK 2,8,524,469,shroomman,12,Swallowed whole by some sort of,cosmic Leviathan!,It\'s absurd!,null,null,null,null';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_shroomsSound');
		if (!actions[71]) {
			custarr = [1, 7, 272, 449.05, 1, 3, 'act7s2', 370, 520];
		} else {
			custarr = [1, 7, 272, 449.05, 1, 3, 'act7s2l', 370, 520];
		}
		++count;
		holder.objects.attachMovie('objects', 'shifter', count);
		holder.objects.shifter._x = custarr[2];
		holder.objects.shifter._y = custarr[3];
		holder.objects.shifter.specarr = new Array();
		holder.objects.shifter.specarr = custarr;
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 481 {
		allmap = '368 BREAK 458 BREAK 20 BREAK 19 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,268,268,268,269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,266,0,0,0,265,268,268,268,268,268,268,268,268,268,269,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,272,273,273,273,273,273,273,273,273,273,273,273,273,273,273,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,830,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,831,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,830,0,0,0,0,0,0,0,0,830,0,0,0,76,76,76,76,0,0,0,831,0,0,0,0,0,0,0,0,831,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,0,72,73,72,73,0,0,0,0,829,0,0,0,0,0,0,76,76,76,76,0,74,75,74,75,0,0,0,0,828,0,0,69,70,71,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_shroomhouse BREAK 0 BREAK 1,8,187,470,shroomman,12,This situation has made me feel free.,Status@ fame and money aren\'t,important here anymore. When the end,of the world is near@ you are free to do,whatever you want. BREAK 2,2,271,473,142,0 BREAK 3,2,430,472,143,0';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_shroomsSound');
		if (!actions[71]) {
			custarr = [1, 7, 369, 449, 1, 3, 'act7s2', 1260, 820];
		} else {
			custarr = [1, 7, 369, 449, 1, 3, 'act7s2l', 1260, 820];
		}
		++count;
		holder.objects.attachMovie('objects', 'shifter', count);
		holder.objects.shifter._x = custarr[2];
		holder.objects.shifter._y = custarr[3];
		holder.objects.shifter.specarr = new Array();
		holder.objects.shifter.specarr = custarr;
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 482 {
		allmap = '400 BREAK 470 BREAK 20 BREAK 19 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,268,268,268,268,268,269,0,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,0,0,271,0,0,0,0,0,0,0,0,267,268,268,268,268,266,0,0,0,0,0,271,0,0,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,272,273,273,273,273,273,273,273,273,273,273,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,830,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,831,0,0,0,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,0,0,0,830,0,0,0,0,830,0,0,0,76,76,76,76,76,76,76,76,0,0,0,831,0,0,0,0,831,0,0,0,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,0,821,822,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,0,823,824,817,818,817,818,0,829,0,0,0,76,76,76,76,76,76,76,76,0,825,826,819,820,819,820,0,828,0,778,0,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_shroomhouse BREAK 0 BREAK 1,8,291,468,shroomwoman,13,This planet is doomed. I just want to,get out of here@ out of this monster@,and start a new life on another planet.,null,null,null,null,null';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_shroomsSound');
		if (!actions[71]) {
			custarr = [1, 7, 402, 448, 1, 3, 'act7s3', 590, 440];
		} else {
			custarr = [1, 7, 402, 448, 1, 3, 'act7s3l', 590, 440];
		}
		++count;
		holder.objects.attachMovie('objects', 'shifter', count);
		holder.objects.shifter._x = custarr[2];
		holder.objects.shifter._y = custarr[3];
		holder.objects.shifter.specarr = new Array();
		holder.objects.shifter.specarr = custarr;
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 483 {
		allmap = '149 BREAK 360 BREAK 20 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,316,316,316,316,316,316,316,316,316,316,316,316,316,316,317,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,316,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,323,321,321,321,329,330,321,321,321,0,0,318,0,0,0,0,0,328,327,327,319,0,0,0,331,332,0,0,0,0,0,320,321,321,321,321,329,330,329,330,322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,332,331,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,0,0,0,897,898,0,0,0,0,895,896,0,897,898,0,0,0,76,76,76,0,0,0,0,0,0,0,0,0,893,894,0,0,0,0,0,0,76,76,76,0,0,0,0,0,0,0,0,0,895,896,0,0,0,0,0,0,76,76,76,0,0,0,0,0,0,0,0,0,893,894,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,0,0,0,895,896,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,0,0,0,893,894,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,0,0,0,895,896,0,0,0,0,0,0,0,76,76,0,0,829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,0,0,828,0,0,0,0,0,0,0,76,76,76,0,0,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_factory BREAK 0 BREAK 1,3,646,271.05,1,10,act7factory2,50,340 BREAK 2,4,560,310';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_noise2Sound');
		if (!actions[71]) {
			custarr = [2, 7, 145, 358, 1, 3, 'act7s4', 430, 310];
		} else {
			custarr = [2, 7, 145, 358, 1, 3, 'act7s4l', 430, 310];
		}
		++count;
		holder.objects.attachMovie('objects', 'shifter', count);
		holder.objects.shifter._x = custarr[2];
		holder.objects.shifter._y = custarr[3];
		holder.objects.shifter.specarr = new Array();
		holder.objects.shifter.specarr = custarr;
		if (!actions[72]) {
			custarr = [3, 8, 449, 307.05, 'shroomman', 12, 'We constructed the Orb in this factory.', 'We used Gabbro Paragon to create the', 'luminous core. The factory is dangerous', 'now though@ the garbage compactor has', 'malfunctioned.'];
		} else {
			custarr = [3, 8, 449, 307.05, 'shroomman', 12, 'Did you hear me? I turned off the', 'garbage compactor. Saved your life I', 'did.'];
		}
		++count;
		holder.objects.attachMovie('objects', 'npc' + count, count);
		holder.objects['npc' + count]._x = custarr[2];
		holder.objects['npc' + count]._y = custarr[3];
		holder.objects['npc' + count].specarr = new Array();
		holder.objects['npc' + count].specarr = custarr;
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 484 {
		allmap = '47 BREAK 340 BREAK 72 BREAK 15 BREAK 167,167,167,167,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,167,167,167,167,167,167,167,167,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,167,328,167,167,167,167,167,167,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,167,333,334,167,167,167,167,167,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,316,335,336,316,167,167,167,167,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,167,167,167,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,167,167,167,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,316,316,316,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,327,321,327,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,321,328,328,321,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,167,167,167,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,167,167,167,167,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,327,321,327,324,0,0,0,0,319,167,167,167,318,0,0,0,0,0,323,327,321,327,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,167,167,167,167,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,167,167,167,318,0,0,0,0,319,167,167,167,318,0,0,0,0,0,319,167,167,167,318,0,0,0,0,0,0,323,328,328,324,0,0,0,0,0,319,167,167,167,167,167,321,321,321,321,321,321,327,329,330,329,330,329,330,324,0,0,0,0,323,328,328,321,324,0,0,0,0,319,167,167,167,318,0,0,0,0,319,167,167,167,318,0,0,0,0,0,319,167,167,167,318,0,0,0,0,0,0,319,333,334,318,0,0,0,0,0,319,167,167,167,167,167,167,167,167,167,167,167,167,331,332,331,332,331,332,318,0,0,0,0,319,333,334,167,318,0,0,0,0,319,167,167,167,318,0,0,0,0,319,167,167,167,318,0,0,0,0,0,319,167,167,167,318,0,0,0,0,0,0,319,335,336,318,0,0,0,0,0,319,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,328,327,167,318,0,0,0,0,319,335,336,167,318,0,0,0,0,319,167,167,167,318,0,0,0,0,319,167,167,167,318,0,0,0,0,0,319,167,167,167,318,0,0,0,0,0,0,319,167,167,318,0,0,0,0,0,319,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,318,0,0,0,0,319,167,167,167,318,0,0,0,0,319,167,167,167,318,0,0,0,0,319,167,167,167,318,0,0,0,0,0,319,167,167,167,318,0,0,0,0,0,0,319,167,167,318,0,0,0,0,0,319,167,167,167,167,167 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,440,440,440,0,0,0,0,0,440,440,440,440,0,0,0,0,0,440,440,440,440,0,0,0,0,0,440,440,440,440,440,0,0,0,0,0,440,440,440,440,440,440,0,0,0,0,440,440,440,440,440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,441,441,441,0,0,0,0,0,441,441,441,441,0,0,0,0,0,441,441,441,441,0,0,0,0,0,441,441,441,441,441,0,0,0,0,0,441,441,441,441,441,441,0,0,0,0,441,441,441,441,441,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_factory BREAK 0 BREAK 1,49,726,-19 BREAK 2,49,1551,-20 BREAK 3,49,1162,-19 BREAK 4,3,2310,177,1,10,act7factory3,50,370 BREAK 5,3,-5,303.05,1,10,act7factory1,590,310';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_noise2Sound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 485 {
		allmap = '48 BREAK 364 BREAK 72 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,333,334,333,334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,316,316,316,328,328,316,316,316,316,316,316,316,327,316,316,316,316,316,335,336,335,336,316,316,316,327,327,316,316,327,327,316,316,316,316,316,316,316,317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0,333,334,0,0,0,0,0,0,333,334,0,0,0,0,0,0,0,0,0,0,0,0,329,330,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0,315,316,316,316,316,316,316,316,316,316,316,316,316,316,316,316,333,334,333,334,0,0,0,0,0,0,0,318,0,0,0,0,335,336,0,0,0,0,0,0,335,336,0,0,0,0,0,0,0,0,0,0,0,0,331,332,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,336,335,336,316,316,316,316,316,316,316,326,0,0,0,0,333,334,0,0,0,0,0,0,333,334,0,0,0,0,0,0,0,0,0,0,0,0,329,330,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,336,0,0,0,0,0,0,335,336,0,0,0,0,0,0,0,0,0,0,0,0,331,332,0,0,333,334,0,0,0,0,0,0,0,325,316,316,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,329,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,336,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,333,334,0,0,329,330,0,0,0,0,0,0,316,316,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,336,0,0,331,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,321,321,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,321,321,321,321,321,327,327,333,334,333,334,333,334,327,321,321,321,321,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,329,330,329,330,328,0,0,0,319,0,0,318,0,0,0,0,333,334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0,0,0,0,335,336,335,336,335,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,327,327,0,0,331,332,331,332,328,0,0,0,319,0,0,318,0,0,0,0,335,336,0,0,0,0,0,0,0,0,0,0,328,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0,328,328,0,0,0,0,0,0,0,0,321,321,321,321,321,321,321,321,321,321,321,321,321,321,321,321,321,321,321,333,334,321,321,321,321,321,322,0,0,318,0,0,323,321,328,321,321,324,0,0,0,0,323,328,321,321,321,324,0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,336,0,0,0,0,0,0,0,0,318,0,0,319,0,0,0,0,318,0,0,0,0,319,0,0,0,0,318,0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,319,0,0,0,0,318,0,0,0,0,319,0,0,0,0,318,0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,896,0,0,0,0,0,0,0,0,0,0,0,0,895,896,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,893,894,0,0,0,0,0,0,0,0,0,0,0,0,893,894,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,896,0,0,0,0,0,0,0,0,0,0,0,0,895,896,0,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,893,894,0,0,0,0,0,0,0,0,0,0,0,0,893,894,0,0,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,893,894,0,0,0,0,0,0,0,0,893,894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,896,0,0,0,0,0,0,0,0,0,0,0,0,895,896,0,0,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,896,0,0,0,0,0,0,0,0,895,896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,893,894,899,900,0,0,0,0,0,0,0,0,0,0,893,894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,893,894,0,0,0,0,0,0,0,0,893,894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,896,901,902,0,0,0,0,0,0,0,0,0,0,895,896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,896,0,0,0,0,0,0,0,0,895,896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,899,900,899,900,899,900,0,0,0,0,0,0,0,0,0,0,0,0,893,894,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,901,902,901,902,901,902,0,0,0,0,0,0,0,0,0,0,0,0,895,896,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,0,0,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,76,76,76,76,76,76,76,76,0,440,440,0,76,76,76,76,0,440,440,440,440,0,76,76,76,76,0,440,440,440,440,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,441,441,0,76,76,76,76,0,441,441,441,441,0,76,76,76,76,0,441,441,441,441,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_factory BREAK 0 BREAK 1,3,-7,335.05,1,10,act7factory2,2250,210 BREAK 2,3,2313,238.05,1,10,act7factory4,50,430';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('');
		if (!actions[72]) {
			++count;
			holder.attachMovie('movingwall', 'movingwall', count);
			holder.movingwall._x = -100;
			holder.movingwall.cacheAsBitmap();
			music_load('zos_noiseSound');
		} else {
			music_load('zos_noise2Sound');
		}
		movingwallhit = false;
		onEnterFrame = function () {
			if (!actions[72] and !dying and !movingwallhit) {
				holder.movingwall._x += 5;
				if (holder.movingwall._x > holder.player._x - playwidth / 2) {
					if (!sideblocking) {
						holder.player._x = holder.movingwall._x + playwidth / 2;
					}
					if (holder.ground.hitTest(holder.player._x + holder._x + playwidth / 2 + xspeed + 5, holder.player._y + holder._y - playheight * 0.25, true)) {
						movingwallhit = true;
						takedamage(maxhealth * 2);
					}
				}
				if (falldeath_count == 29) {
					holder.movingwall._x = -300;
				}
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 486 {
		allmap = '43 BREAK 426 BREAK 72 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0,329,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0,331,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,315,316,316,316,316,316,327,327,316,316,316,316,316,316,316,316,316,316,316,316,316,316,316,316,316,316,316,316,316,316,316,317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,319,333,334,0,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,0,327,327,0,0,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,319,335,336,0,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,328,329,330,329,330,0,0,0,333,334,0,318,0,0,0,0,0,0,0,0,0,0,0,0,325,316,316,316,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0,0,0,0,0,315,316,316,316,316,331,332,331,332,316,316,316,335,336,316,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,329,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,327,329,330,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,329,330,0,0,0,329,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,328,331,332,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,332,0,0,0,331,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,316,316,316,316,316,316,316,316,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,321,321,329,330,329,330,321,321,321,321,321,321,321,321,327,321,321,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,333,334,331,332,331,332,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,333,334,0,0,0,0,0,0,0,0,0,0,0,0,319,335,336,327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,336,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,323,321,333,334,333,334,328,321,321,321,321,321,321,321,321,329,330,329,330,0,0,0,0,0,0,0,323,321,321,324,0,0,0,0,0,0,0,323,321,321,328,328,322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,319,0,335,336,335,336,0,0,0,0,0,0,0,0,0,331,332,331,332,0,0,0,0,0,0,0,319,0,0,318,0,0,0,0,0,0,0,319,0,327,333,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,319,0,0,328,328,0,0,0,0,0,0,0,0,0,0,0,327,328,318,0,0,0,0,0,0,0,319,0,0,318,0,0,0,0,0,0,0,319,0,0,335,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0,0,0,0,319,0,0,318,0,0,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,323,321,322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0,0,0,0,319,0,0,318,0,0,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0,0,0,0,319,0,0,318,0,0,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,897,898,0,895,896,0,0,0,897,898,0,0,0,0,0,0,897,898,0,0,0,0,0,0,897,898,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,893,894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,76,76,76,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,893,894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,895,896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,893,894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,895,896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,121,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,893,894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,893,894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,893,894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,118,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,0,0,0,76,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,118,0,0,0,0,0,0,0,0,0,0,76,76,0,0,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,0,0,0,76,76,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,124,125,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,440,440,440,440,440,440,440,0,76,76,0,440,440,440,440,440,440,440,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,440,440,440,440,440,440,440,440,440,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,441,441,441,441,441,441,441,0,76,76,0,441,441,441,441,441,441,441,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,441,441,441,441,441,441,441,441,441,0,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_factory BREAK 0 BREAK 1,3,-8,400.05,1,10,act7factory3,2250,270 BREAK 2,3,2304,370.05,1,10,act7factory5,50,340';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('');
		if (!actions[72]) {
			++count;
			holder.attachMovie('movingwall', 'movingwall', count);
			holder.movingwall._x = -100;
			holder.movingwall.cacheAsBitmap();
			music_load('zos_noiseSound');
		} else {
			music_load('zos_noise2Sound');
		}
		movingwallhit = false;
		onEnterFrame = function () {
			if (!actions[72] and !dying and !movingwallhit) {
				holder.movingwall._x += 6;
				if (holder.movingwall._x > holder.player._x - playwidth / 2) {
					if (!sideblocking) {
						holder.player._x = holder.movingwall._x + playwidth / 2;
					}
					if (holder.ground.hitTest(holder.player._x + holder._x + playwidth / 2 + xspeed + 6, holder.player._y + holder._y - playheight * 0.25, true)) {
						movingwallhit = true;
						takedamage(maxhealth * 2);
					}
				}
				if (falldeath_count == 29) {
					holder.movingwall._x = -400;
				}
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 487 {
		allmap = '47 BREAK 334 BREAK 20 BREAK 15 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,316,316,316,316,316,316,316,316,316,316,316,317,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,316,316,316,316,326,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,323,321,324,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,319,167,318,0,0,0,0,0,319,0,0,321,321,321,321,321,321,321,321,321,322,167,320,321,321,321,321,321,322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_factory BREAK 0 BREAK 1,2,338,279,132,6 BREAK 2,3,-5,302,1,10,act7factory4,2260,400 BREAK 3,8,465,345,shroomman,12,The Gabbro Paragon is a powerful,compound. We combined it with Effluvian,Gasrock to build the core. Add a,reacting agent@ and you have a potent,explosive.';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_noise2Sound');
		actions[72] = true;
		msgdelay = 30;
		potionsowned[2] = 1;
		onEnterFrame = function () {
			--msgdelay;
			if (msgdelay == 0) {
				mesarr = new Array();
				mesarr[0] = '"Hey! Hmm... Can you hear me? Does';
				mesarr[1] = 'this thing work?';
				mesarr[2] = 'I found the off switch for the garbage';
				mesarr[3] = 'compactor!"';
				_root.msgbox.initmessage(mesarr, _root.standardlettertime, 1);
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove(0);
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 499 {
		allmap = '334 BREAK 522 BREAK 30 BREAK 20 BREAK 345,345,345,345,345,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,346,343,343,343,343,343,343,343,343,343,343,343,344,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,343,343,343,343,343,343,343,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,345,341,337,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,345,341,340,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,345,341,340,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,345,341,340,348,338,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,338,338,338,338,338,338,338,338,338,345,341,340,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,345,345,341,340,345,345,341,337,338,338,338,338,338,338,338,338,338,338,338,338,339,340,345,345,345,345,345,345,345,345,345,345,341,340,345,345,341,340,345,345,345,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,345,345,341,340,345,345,341,340,345,345,345,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,345 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,769,770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,771,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,773,774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,769,770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,771,772,0,0,0,0,0,0,906,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,910,911,912,906,907,773,774,0,0,0,0,0,0,908,909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,913,914,915,916,908,909,775,776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,917,918,919,920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,921,922,923,924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_brain BREAK 0 BREAK 1,45,332,537.05 BREAK 2,4,92,379.05 BREAK 3,36,337,525.05,5,3,select2,580,300 BREAK 4,3,967,419.05,1,10,brain2,50,470';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_monsterSound');
		onEnterFrame = function () {
			if (holder.player._x > 750 and !actions[24]) {
				holder.player._x = 740;
				xspeed = 0;
				mesarr = [];
				mesarr[0] = 'I am not ready to face X\'o\'chthu. I need';
				mesarr[1] = 'to get the last Essence first.';
				_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'hero');
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 500 {
		allmap = '49 BREAK 456 BREAK 72 BREAK 20 BREAK 345,345,345,345,341,340,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,340,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,340,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,340,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,340,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,341,0,0,0,0,0,337,338,338,338,339,340,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,345,341,342,343,343,343,343,344,0,0,0,0,0,342,343,343,343,344,340,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,341,337,338,338,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,343,343,343,343,343,344,340,345,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,343,344,342,343,343,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,343,343,343,343,343,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,338,338,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,343,343,343,343,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,343,343,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,338,338,339,0,0,0,0,337,338,338,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,338,338,339,0,0,0,0,0,337,338,338,339,0,0,0,0,0,337,338,338,339,0,0,0,0,0,337,338,338,338,338,338,338,338,338,0,0,0,0,0,0,0,0,340,345,345,341,0,0,0,0,340,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,341,0,0,0,0,0,340,345,345,341,0,0,0,0,0,340,345,345,341,0,0,0,0,0,340,345,345,345,345,345,345,345,345,338,338,338,338,338,338,338,339,340,345,345,341,0,0,0,0,340,345,345,341,337,338,338,338,338,338,338,338,338,338,338,338,338,338,338,339,340,345,345,341,0,0,0,0,0,340,345,345,341,0,0,0,0,0,340,345,345,341,0,0,0,0,0,340,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,341,340,345,345,341,0,0,0,0,340,345,345,341,340,345,345,345,345,345,345,345,345,345,345,345,345,345,345,341,340,345,345,341,0,0,0,0,0,340,345,345,341,0,0,0,0,0,340,345,345,341,0,0,0,0,0,340,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,341,340,345,345,341,0,0,0,0,340,345,345,341,340,345,345,345,345,345,345,345,345,345,345,345,345,345,345,341,340,345,345,341,0,0,0,0,0,340,345,345,341,0,0,0,0,0,340,345,345,341,0,0,0,0,0,340,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,341,340,345,345,341,0,0,0,0,340,345,345,341,340,345,345,345,345,345,345,345,345,345,345,345,345,345,345,341,340,345,345,341,0,0,0,0,0,340,345,345,341,0,0,0,0,0,340,345,345,341,0,0,0,0,0,340,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,341,340,345,345,341,0,0,0,0,340,345,345,341,340,345,345,345,345,345,345,345,345,345,345,345,345,345,345,341,340,345,345,341,0,0,0,0,0,340,345,345,341,0,0,0,0,0,340,345,345,341,0,0,0,0,0,340,345,345,345,345,345,345,345,345 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,910,911,912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,913,914,915,916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,769,770,769,770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,771,772,771,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,917,918,919,920,0,0,0,0,0,0,767,0,0,0,0,0,769,770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,773,774,773,774,0,0,0,0,0,0,0,0,0,0,0,903,904,905,0,0,0,0,921,922,923,924,0,0,0,0,0,0,768,0,0,0,0,0,771,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,776,775,776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,917,918,919,920,906,907,767,0,0,0,0,0,773,774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,903,904,905,0,0,0,0,0,0,0,0,0,0,0,0,921,922,923,924,908,909,768,0,0,0,0,0,775,776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,440,440,440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,440,440,440,440,0,0,0,0,440,440,440,440,440,0,0,0,0,440,440,440,440,440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,441,441,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,441,441,441,441,0,0,0,0,441,441,441,441,441,0,0,0,0,441,441,441,441,441,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_brain BREAK 0 BREAK 1,47,818,477,3 BREAK 2,47,1103,478,3 BREAK 3,46,1522,408,3 BREAK 4,47,1810,408,3 BREAK 5,3,-8,415.1,1,10,brain1,910,470 BREAK 6,2,801,183.1,133,8 BREAK 7,2,861,183.1,134,8 BREAK 8,3,2308,358.05,1,10,brain3,50,430 BREAK 9,2,550,121,135,1 BREAK 10,2,614,119,136,10';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_monsterSound');
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 501 {
		allmap = '47 BREAK 430 BREAK 72 BREAK 20 BREAK 345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,341,340,345,341,340,345,345,345,345,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,341,340,345,341,340,345,345,345,345,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,341,342,343,343,343,343,343,343,343,343,343,343,343,343,343,343,344,340,345,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,341,340,345,341,340,345,345,345,345,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,341,342,343,343,343,343,343,343,343,343,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,341,340,345,341,340,345,345,345,345,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,343,343,343,343,343,343,343,343,343,343,344,340,345,345,345,345,345,345,341,340,345,341,340,345,345,345,345,345,345,345,345,345,345,345,345,345,341,342,343,343,343,343,343,343,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,343,343,343,343,343,343,344,340,345,341,340,345,345,345,345,345,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,341,340,345,345,345,345,345,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,343,344,340,345,345,345,345,345,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,343,343,343,343,343,343,343,343,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,343,343,343,343,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,338,338,338,338,338,338,338,338,338,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,338,338,338,338,338,338,338,338,338,338,338,338,338,339,340,345,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,345,341,337,338,338,338,338,338,338,338,338,338,338,338,338,339,0,0,0,0,0,0,0,0,0,0,0,0,0,338,338,338,338,338,338,338,338,338,338,338,338,338,339,0,0,0,0,0,340,345,345,345,345,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,345,345,345,345,341,337,338,338,338,338,338,338,338,338,338,338,338,338,345,345,345,345,345,345,345,345,345,345,345,345,345,341,0,0,0,0,0,340,345,345,345,345,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,341,0,0,0,0,0,340,345,345,345,345,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,341,0,0,0,0,0,340,345,345,345,345,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,341,0,0,0,0,0,340,345,345,345,345,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,341,0,0,0,0,0,340,345,345,345,345,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,345,345,345,345,341,340,345,345,345,345,345,345,345,345,345,345,345,345 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,737,738,737,738,737,738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,739,740,739,740,739,740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,741,742,741,742,741,742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,743,744,743,744,743,744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,917,918,919,920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,910,911,912,0,0,0,903,905,0,921,922,923,924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,917,918,919,919,0,0,0,913,914,915,916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,906,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,917,918,919,920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,906,907,0,0,908,909,0,0,0,0,903,905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,921,922,923,924,0,903,904,905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,903,904,905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_brain BREAK 0 BREAK 1,4,1649,404 BREAK 2,3,-8,390.05,1,10,brain2,2250,400 BREAK 3,3,2305,381,1,10,lastbossframe,245,847';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_monsterSound');
		fadeout_music(0.5);
		onEnterFrame = function () {
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 502 {
		function swapscale(targ) {
			if (targ.xspeed > 0) {
				targ._xscale = 100;
			} else {
				targ._xscale = -100;
			}
		}
		function runform3(targ) {
			targ._x = levelwidth / 2 - 100 - 450 * (holder._x / levelwidth);
			targ._y = levelheight / 2 - 100 - 200 * (holder._y / levelheight);
			if (targ.flashCount > 0) {
				targ.gotoAndPlay(2);
				targ.setBrightness(random(100));
				--targ.flashCount;
				if (targ.flashCount == 0) {
					targ.setBrightness(0);
				}
			}
			if (eyesarr.length <= 0) {
				cutscene = true;
				seq = 7;
				cutscenetime = 0;
				holder.ground._alpha = 75;
			}
		}
		function runeyes() {
			if (!game_paused and !cutscene and msgbox._visible == false) {
				--eyesDelay;
				if (eyesDelay == 0) {
					if (!activeEye) {
						activeEye = true;
						if (eyesarr.length == 7) {
							targetEye = 1;
						} else {
							targetEye = eyesarr[random(eyesarr.length)];
						}
						holder.background.boss['eye' + targetEye].eye.play();
						eyesDelay = 150;
						i = 1;
						while (i <= 3) {
							holder.nohtobjects['altar' + targetEye]['shimmer' + i]._visible = true;
							++i;
						}
						holder.nohtobjects['altar' + targetEye].activated = true;
					} else {
						activeEye = false;
						eyesDelay = 200;
						eyeIsAlive = false;
						eyeslen = eyesarr.length;
						i = 0;
						while (i < eyeslen) {
							if (eyesarr[i] == targetEye) {
								eyeIsAlive = true;
								break;
							}
							++i;
						}
						if (eyeIsAlive) {
							holder.background.boss['eye' + targetEye].eye.play();
							i = 1;
							while (i <= 3) {
								holder.nohtobjects['altar' + targetEye]['shimmer' + i]._visible = false;
								++i;
							}
							holder.nohtobjects['altar' + targetEye].activated = false;
						}
					}
				}
			}
		}
		function runmouth() {
			if (!game_paused and !cutscene and msgbox._visible == false) {
				--mouthDelay;
				if (mouthDelay == 10) {
					holder.background.boss.play();
				}
				if (mouthDelay == 0) {
					playsound('lastboss1Sound');
					mouthDelay = random(90) + 30 + 5 * eyesarr.length;
					++count;
					holder.foreground.attachMovie('last_mouthbullet', 'bullet' + count, count);
					bullet = holder.foreground['bullet' + count];
					bullet._x = holder.background.boss._x;
					bullet._y = holder.background.boss._y + 90;
					bullet.xspeed = (holder.player._x - bullet._x) / 25;
					bullet.yspeed = (holder.player._y - bullet._y) / 25;
					bullet.scalerate = 1;
					bullet.onEnterFrame = function () {
						if (!game_paused) {
							this._x += this.xspeed;
							this._y += this.yspeed;
							this._xscale += this.scalerate;
							this._yscale += this.scalerate;
							this.scalerate *= 1.15;
							if (this._xscale > 300) {
								if (this.hitbox.hitTest(holder.player.hitbox)) {
									shadeCount = 30;
									takedamage(3);
								}
								this.removeMovieClip();
							}
						}
					};
				}
			}
		}
		function runrocks() {
			if (!game_paused and msgbox._visible == false) {
				--rockDelay;
				if (rockDelay <= 0) {
					rockDelay = (10 + 10 * eyesarr.length) * (0.8 + random(40) / 100);
					if (seq == 7) {
						rockDelay = 10;
					}
					++count;
					holder.objects.attachMovie('last_rocks', 'rock' + count, count);
					rock = holder.objects['rock' + count];
					rock.gotoAndStop(random(rock._totalframes) + 1);
					rock._x = 250 + random(1250);
					rock._y = -50;
					rock.yspeed = 2;
					rock.removeRock = function () {
						create_blood(this._x, this._y + this._height / 2, this._height, 'blood');
						++count;
						holder.attachMovie('dust1', 'dust' + count, count);
						holder['dust' + count]._x = this._x;
						holder['dust' + count]._y = this._y + this._height * 0.4;
						this.removeMovieClip();
					};
					rock.onEnterFrame = function () {
						if (!game_paused) {
							this.yspeed += 0.1;
							this._y += this.yspeed;
							this._rotation += 5;
							if (this._y > 150 and holder.ground.hitTest(this._x + holder._x, this._y + holder._y + this._height * 0.4, true)) {
								this.removeRock();
							}
							if (this.hitTest(holder.player.hitbox) and !cutscene) {
								shadeCount = 30;
								takedamage(1);
								this.removeRock();
							}
						}
					};
				}
			}
		}
		function form2cutscene() {
			if (initcutscene) {
				initcutscene = false;
				loadedface = false;
				form2count = 0;
			}
			if (!loadedface) {
				holder.objects.boss.gotoAndStop(1);
				++form2count;
				holder.objects.boss.setBrightness(random(form2count));
				holder.objects.boss._xscale = 100 + (random(40) - 20) * (form2count / 100);
				holder.objects.boss._yscale = 100 + (random(40) - 20) * (form2count / 100);
				if (form2count == 100) {
					++count;
					attachMovie('whiteflash_long1', 'whiteflash', count);
				}
				if (form2count == 117) {
					holder.ground.ceiling.gotoAndStop(2);
					create_blood(holder.objects.boss._x, holder.objects.boss._y + 100, 200, 'blood');
					create_blood(holder.objects.boss._x + 100, holder.objects.boss._y + 100, 200, 'blood');
					create_blood(holder.objects.boss._x - 100, holder.objects.boss._y + 100, 200, 'blood');
					holder.objects.boss.removeMovieClip();
					fadeout_music(0.5);
					altarx = [1042, 272, 686, 1184, 1456, 848, 512];
					altary = [600, 470, 600, 340, 460, 210, 340];
					i = 1;
					while (i <= 7) {
						++count;
						holder.nohtobjects.attachMovie('last_altars', 'altar' + i, count);
						holder.nohtobjects['altar' + i].gotoAndStop(i);
						holder.nohtobjects['altar' + i].essence._visible = false;
						holder.nohtobjects['altar' + i].essence.gotoAndStop(essencearr[i - 1]);
						holder.nohtobjects['altar' + i].id = i;
						holder.nohtobjects['altar' + i]._x = altarx[i - 1];
						holder.nohtobjects['altar' + i]._y = altary[i - 1];
						holder.nohtobjects['altar' + i]._y = Math.ceil(holder.nohtobjects['altar' + i]._y / tilesize) * tilesize;
						holder.nohtobjects['altar' + i].activated = false;
						j = 1;
						while (j <= 3) {
							holder.nohtobjects['altar' + i]['shimmer' + j]._visible = false;
							++j;
						}
						holder.nohtobjects['altar' + i].onEnterFrame = function () {
							if (this.activated and this.hitTest(holder.player)) {
								giveExclamation();
								if (Key.isDown(40) or Key.isDown(83)) {
									++count;
									attachMovie('whiteflash_short', 'whiteflash', count);
									holder.background.boss.flashCount = 24;
									this.activated = false;
									this.essence._visible = true;
									i = 1;
									while (i <= 3) {
										this['shimmer' + i]._visible = false;
										++i;
									}
									this.arrlen = eyesarr.length;
									i = 0;
									while (i < this.arrlen) {
										if (eyesarr[i] == this.id) {
											eyesarr.splice(i, 1);
											break;
										}
										++i;
									}
								}
							}
						};
						++i;
					}
					++count;
					holder.background.attachMovie('last_form3', 'boss', count);
					holder.background.boss._alpha = 0;
					runform3(holder.background.boss);
					i = 1;
					while (i <= 7) {
						holder.background.boss['eye' + i].gotoAndStop(i);
						holder.background.boss['eye' + i].eye.gotoAndStop(7);
						++i;
					}
					loadedface = true;
					form2count = 0;
				}
			} else {
				if (msgbox._visible == false) {
					runform3(holder.background.boss);
					++form2count;
					if (form2count == 300) {
						fadein_music();
						music_load('zos_bossSound');
						mesarr = new Array();
						mesarr[0] = 'punY crEAturE! coMES aLone THIS timE.';
						mesarr[1] = 'agEs Have pAssed, Yet YOu vERmin STIll';
						mesarr[2] = 'iNSist ON YouR contiNUEd EXIStence.';
						mesarr[3] = 'yoU hAve Gotten As Far AS YoUR';
						mesarr[4] = 'precIOuS seven hEROeS, BUt YoU sHalL';
						mesarr[5] = 'not Defeat ME tHIs TimE. LEt me tAKe';
						mesarr[6] = 'On An ApPEaRANCE YOu WiLL reCoGnisE,';
						mesarr[7] = 'so You MAy geT faMIlIAR wiTh yoUR';
						mesarr[8] = 'ANNIhILAtION.';
						mesarr[9] = '';
						mesarr[10] = 'I do NOT ForgeT. I do NOt foRGive.';
						_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'lastboss');
					}
					if (form2count == 350) {
						playsound('lastboss3Sound');
						mesarr = new Array();
						mesarr[0] = 'ha Ha hA Ha!';
						_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'lastboss');
						cutscene = false;
					}
					if (form2count > 400) {
						++holder.background.boss._alpha;
						if (holder.background.boss._alpha >= 100) {
							seq = 6;
						}
					}
				}
			}
		}
		function runform2(targ) {
			if (!game_paused and !cutscene and msgbox._visible == false) {
				if (damageDelay == 0) {
					if (holder.player.hitbox.hitTest(targ.hitbox)) {
						if (holder.player._x > targ._x) {
							bumpAmount += standardBump;
						} else {
							bumpAmount -= standardBump;
						}
						xspeed = 0;
						shadeCount = 30;
						takedamage(2);
					}
				}
				targ.anim.play();
				if (form2stage == 1 or form2stage == 2) {
					if (targ.resetside) {
						targ.resetside = false;
						if (random(100) > 50) {
							targ.xspeed = 19 - 5 * (targ.life / targ.maxlife);
							targ._x = -100;
						} else {
							targ.xspeed = -19 + 5 * (targ.life / targ.maxlife);
							targ._x = levelwidth + 100;
						}
						if (random(100) > 50 or form2stage == 2 and !targ.wentLow) {
							targ._y = 850;
							targ.wentLow = true;
						} else {
							targ._y = 700;
						}
					}
					targ._x += targ.xspeed;
					if (targ._x < -100 and targ.xspeed < 0 or targ._x > levelwidth + 100 and targ.xspeed > 0) {
						++form2stage;
						targ.resetside = true;
					}
				} else {
					if (form2stage == 3) {
						if (targ.resetside) {
							targ.resetside = false;
							targ.openeye = false;
							targ._x = levelwidth / 2;
							targ._y = 300;
						}
						if (!targ.openeye) {
							targ._y += (700 - targ._y) * 0.05;
							if (targ._y > 690) {
								targ.openeye = true;
								targ.placelaser = false;
								targ.gotoAndStop(2);
								targ.shootingTime = 190;
							}
						} else {
							--targ.shootingTime;
							if (targ.anim.laser and !placelaser) {
								playsound('lastboss2Sound');
								placelaser = true;
								if (random(100) > 50) {
									targ.anim.gotoAndStop('laser1');
								} else {
									targ.anim.gotoAndStop('laser2');
								}
							}
							targ.anim.laser._rotation += targ.rotspeed;
							if (targ.anim.laser.hitbox.hitTest(holder.player._x + holder._x, holder.player._y + holder._y - playheight / 2, true)) {
								xspeed = 0;
								shadeCount = 30;
								takedamage(1);
							}
							if (targ.shootingTime <= 0) {
								targ.gotoAndStop(1);
								targ.yspeed = 0;
								++form2stage;
							}
						}
					} else {
						targ._y += targ.yspeed;
						targ.yspeed -= 0.5;
						if (targ._y < 300) {
							form2stage = 1;
							targ.wentLow = false;
							targ.resetside = true;
						}
					}
				}
				if (form2stage == 3 or form2stage == 4) {
					if (targ.flashCount > 0) {
						if (targ.flashCount == 24) {
							create_blood(targ._x - 70 + random(140), targ._y + 100, 200, 'blood');
						}
						targ.setBrightness(random(100));
						--targ.flashCount;
						if (targ.flashCount == 0) {
							targ.setBrightness(0);
						}
					}
					if (targ.damageDelay > 0) {
						--targ.damageDelay;
					}
					i = 0;
					while (i < 3) {
						if (targ.damageDelay == 0 and _root.holder.cloudsMolotov.hitTest(targ._x + _root.holder._x - 60 + i * 60, targ._y + _root.holder._y, true)) {
							targ.life -= _root.molotovDamage;
							targ.flashCount = 24;
							targ.damageDelay = 24;
							break;
						}
						++i;
					}
					i = 0;
					while (i < 3) {
						if (targ.damageDelay == 0 and _root.holder.cloudsExplosion.hitTest(targ._x + _root.holder._x - 60 + i * 60, targ._y + _root.holder._y, true)) {
							targ.life -= _root.explosionDamage;
							targ.flashCount = 24;
							targ.damageDelay = 24;
							break;
						}
						++i;
					}
					i = 0;
					while (i < 3) {
						if (targ.damageDelay == 0 and _root.holder.cloudsIce.hitTest(targ._x + _root.holder._x - 60 + i * 60, targ._y + _root.holder._y, true)) {
							targ.life -= _root.iceDamage;
							targ.flashCount = 24;
							targ.damageDelay = 24;
							break;
						}
						++i;
					}
				}
				if (targ.life <= 0) {
					targ.setBrightness(0);
					cutscene = true;
					bosshealth.removeMovieClip();
					holder.player.throwbar._visible = false;
					holder.player._alpha = 100;
					holder.player.setBrightness(0);
					initcutscene = true;
					seq = 5;
				}
			} else {
				targ.anim.stop();
			}
		}
		function runform1(targ) {
			if (!game_paused and !cutscene and msgbox._visible == false) {
				if (targ.anim._currentframe > 1) {
					targ.anim.play();
				}
				targ.organ1.gotoAndStop(1);
				targ.organ2.gotoAndStop(1);
				targ._x += targ.xspeed;
				targ.xspeed += random(3) / 5 - 0.2;
				if (targ.xspeed > 0) {
					if (targ.xspeed > targ.maxspeed) {
						targ.xspeed = targ.maxspeed;
					} else {
						if (targ.xspeed < targ.minspeed) {
							targ.xspeed = targ.minspeed;
						}
					}
				} else {
					if (targ.xspeed < -targ.maxspeed) {
						targ.xspeed = -targ.maxspeed;
					}
					if (targ.xspeed > -targ.minspeed) {
						targ.xspeed = -targ.minspeed;
					}
				}
				if (targ._x < 314 or targ._x > 1414) {
					targ._x -= targ.xspeed * 2;
					targ.xspeed *= -1;
				}
				--targ.attDelay;
				if (targ.attDelay == 0) {
					targ.anim.play();
					targ.timeToShoot = 42;
					targ.attDelay = 150;
					if (random(100) > 90) {
						targ.multipleShot = 3;
					}
				}
				--targ.timeToShoot;
				if (targ.timeToShoot == 0) {
					createBossBullet(targ._x - 44, targ._y + 225, -7 * (1 + random(30) / 100), -2 + random(40) / 10);
					createBossBullet(targ._x + 64, targ._y + 188, 7 * (1 + random(30) / 100), -2 + random(40) / 10);
					if (targ.multipleShot > 0) {
						targ.timeToShoot = 42;
						targ.attDelay = 360;
						--targ.multipleShot;
					}
				}
				if (targ.organ1life <= 0) {
					if (targ.organ1alive) {
						targ.organ1delay = 180;
						targ.organ1alive = false;
					}
					--targ.organ1delay;
					if (targ.organ1delay <= 0) {
						targ.organ1alive = true;
						targ.organ1life = 10;
					}
					targ.organ1.gotoAndStop(2);
				} else {
					targ.organ1.gotoAndStop(1);
				}
				if (targ.organ2life <= 0) {
					if (targ.organ2alive) {
						targ.organ2delay = 180;
						targ.organ2alive = false;
					}
					--targ.organ2delay;
					if (targ.organ2delay <= 0) {
						targ.organ2alive = true;
						targ.organ2life = 10;
					}
					targ.organ2.gotoAndStop(2);
				} else {
					targ.organ2.gotoAndStop(1);
				}
				i = 0;
				while (i < 3) {
					if (targ.damageDelay == 0 and _root.holder.cloudsMolotov.hitTest(targ._x + _root.holder._x - 60 + i * 60, targ._y + _root.holder._y + tilesize * 6, true)) {
						if (holder.player._x < targ._x) {
							if (targ.organ1life > 0) {
								targ.organ1life -= _root.molotovDamage;
								targ.organ1flashCount = 24;
							} else {
								targ.life -= _root.molotovDamage;
								targ.flashCount = 24;
							}
							targ.damageDelay = 24;
						} else {
							if (targ.organ2life > 0) {
								targ.organ2life -= _root.molotovDamage;
								targ.organ2flashCount = 24;
							} else {
								targ.life -= _root.molotovDamage;
								targ.flashCount = 24;
							}
							targ.damageDelay = 24;
						}
						break;
					}
					++i;
				}
				i = 0;
				while (i < 3) {
					if (targ.damageDelay == 0 and _root.holder.cloudsExplosion.hitTest(targ._x + _root.holder._x - 60 + i * 60, targ._y + _root.holder._y + tilesize * 6, true)) {
						if (holder.player._x < targ._x) {
							if (targ.organ1life > 0) {
								targ.organ1life -= _root.explosionDamage;
								targ.organ1flashCount = 24;
							} else {
								targ.life -= _root.explosionDamage;
								targ.flashCount = 24;
							}
							targ.damageDelay = 24;
						} else {
							if (targ.organ2life > 0) {
								targ.organ2life -= _root.explosionDamage;
								targ.organ2flashCount = 24;
							} else {
								targ.life -= _root.explosionDamage;
								targ.flashCount = 24;
							}
							targ.damageDelay = 24;
						}
						break;
					}
					++i;
				}
				i = 0;
				while (i < 3) {
					if (targ.damageDelay == 0 and _root.holder.cloudsIce.hitTest(targ._x + _root.holder._x - 60 + i * 60, targ._y + _root.holder._y + tilesize * 6, true)) {
						if (holder.player._x < targ._x) {
							if (targ.organ1life > 0) {
								targ.organ1life -= _root.iceDamage;
								targ.organ1flashCount = 24;
							} else {
								targ.life -= _root.iceDamage;
								targ.flashCount = 24;
							}
							targ.damageDelay = 24;
						} else {
							if (targ.organ2life > 0) {
								targ.organ2life -= _root.iceDamage;
								targ.organ2flashCount = 24;
							} else {
								targ.life -= _root.iceDamage;
								targ.flashCount = 24;
							}
							targ.damageDelay = 24;
						}
						break;
					}
					++i;
				}
				if (targ.flashCount > 0) {
					if (targ.flashCount == 24) {
						create_blood(targ._x - 60 + random(120), targ._y + 225, 225, 'blood');
					}
					targ.setBrightness(random(100));
					--targ.flashCount;
					if (targ.flashCount == 0) {
						targ.setBrightness(0);
					}
				}
				if (targ.organ1flashCount > 0) {
					targ.organ1.setBrightness(random(100));
					--targ.organ1flashCount;
					if (targ.organ1flashCount == 0) {
						targ.organ1.setBrightness(0);
					}
				}
				if (targ.organ2flashCount > 0) {
					targ.organ2.setBrightness(random(100));
					--targ.organ2flashCount;
					if (targ.organ2flashCount == 0) {
						targ.organ2.setBrightness(0);
					}
				}
				if (targ.damageDelay > 0) {
					--targ.damageDelay;
				}
				if (targ.life <= 0) {
					targ.setBrightness(0);
					targ.organ1.setBrightness(0);
					targ.organ2.setBrightness(0);
					cutscene = true;
					mergebrig = 0;
					bosshealth.removeMovieClip();
					holder.player.throwbar._visible = false;
					holder.player._alpha = 100;
					holder.player.setBrightness(0);
					seq = 3;
				}
			} else {
				targ.anim.stop();
			}
		}
		function runsupporter(targ) {
			if (!game_paused and !cutscene and msgbox._visible == false) {
				if (targ.freezeCount == 0) {
					if (!targ.attacking) {
						targ.gotoAndStop('fly');
						targ._x += targ.xspeed;
						targ._y += targ.yspeed;
						if (targ._y > 864 or targ._y < 576) {
							targ._y -= targ.yspeed;
							targ.yspeed *= -1;
							swapscale(targ);
						}
						if (targ._x > 1504 or targ._x < 256) {
							targ._x -= targ.xspeed;
							targ.xspeed *= -1;
							swapscale(targ);
						}
						if (targ.attackDelay < 0) {
							if (targ._x < holder.player._x and targ._xscale > 0 or targ._x > holder.player._x and targ._xscale < 0) {
								if (targ._x + holder._x > 0 and targ._x + holder._x < stagewidth) {
									targ.ydist = Math.abs(targ._y - holder.player._y);
									if (targ.ydist < tilesize * 1.5 and targ._y + 5 > holder.player._y) {
										targ.attacking = true;
										targ.attackDelay = 21;
									}
								}
							}
						}
						--targ.attackDelay;
					} else {
						--targ.attackDelay;
						targ.gotoAndStop('attack');
						if (targ.attackDelay == 12) {
							createSupporterBullet(targ._x, targ._y - tilesize, targ._xscale / 100);
						}
						if (targ.attackDelay == 0) {
							targ.attacking = false;
							targ.attackDelay = 150;
						}
					}
				} else {
					targ.gotoAndStop('frozen');
					--targ.freezeCount;
				}
				if (damageDelay == 0 and targ.freezeCount == 0) {
					if (holder.player.hitbox.hitTest(targ._x + holder._x - tilesize, targ._y + holder._y - tilesize, true)) {
						xspeed = 0;
						bumpAmount -= standardBump;
						shadeCount = 30;
						takedamage(1);
					}
					if (holder.player.hitbox.hitTest(targ._x + holder._x + tilesize, targ._y + holder._y - tilesize, true)) {
						xspeed = 0;
						bumpAmount += standardBump;
						shadeCount = 30;
						takedamage(1);
					}
				}
				if (holder.cloudsIce.hitTest(targ._x + holder._x, targ._y + holder._y - tilesize, true)) {
					targ.freezeCount = framerate * (random(4) + 2);
				}
			}
		}
		function collectsupporters() {
			if (holder.objects.supp1) {
				targx1 = holder.objects.boss._x - 75;
				targy1 = holder.objects.boss._y + 175;
				targx2 = holder.objects.boss._x + 55;
				targy2 = holder.objects.boss._y + 155;
				holder.objects.supp1.gotoAndStop('fly');
				holder.objects.supp2.gotoAndStop('fly');
				if (holder.objects.supp1._x < targx1 - 5) {
					holder.objects.supp1._x += 8;
					holder.objects.supp1._xscale = 100;
				} else {
					if (holder.objects.supp1._x > targx1 + 5) {
						holder.objects.supp1._x -= 8;
						holder.objects.supp1._xscale = -100;
					}
				}
				if (holder.objects.supp1._y < targy1 - 5) {
					holder.objects.supp1._y += 4;
				} else {
					if (holder.objects.supp1._y > targy1 + 5) {
						holder.objects.supp1._y -= 4;
					}
				}
				if (holder.objects.supp2._x < targx2 - 5) {
					holder.objects.supp2._x += 8;
					holder.objects.supp2._xscale = 100;
				} else {
					if (holder.objects.supp2._x > targx2 + 5) {
						holder.objects.supp2._x -= 8;
						holder.objects.supp2._xscale = -100;
					}
				}
				if (holder.objects.supp2._y < targy2 - 5) {
					holder.objects.supp2._y += 4;
				} else {
					if (holder.objects.supp2._y > targy2 + 5) {
						holder.objects.supp2._y -= 4;
					}
				}
			}
			if (holder.objects.supp1.hitTest(holder.objects.boss) and holder.objects.supp2.hitTest(holder.objects.boss)) {
				++mergebrig;
				if (mergebrig < 100) {
					holder.objects.boss.setBrightness(mergebrig);
					holder.objects.supp1.setBrightness(mergebrig);
					holder.objects.supp2.setBrightness(mergebrig);
				} else {
					holder.objects.boss.setBrightness(random(mergebrig));
					holder.objects.supp1.setBrightness(random(mergebrig));
					holder.objects.supp2.setBrightness(random(mergebrig));
					holder.objects.boss._xscale = 100 + (random(40) - 20) * ((mergebrig - 100) / 50);
					holder.objects.boss._yscale = 100 + (random(40) - 20) * ((mergebrig - 100) / 50);
					holder.objects.supp1._xscale = (100 + (random(40) - 20) * ((mergebrig - 100) / 50)) * -1 * random(2);
					holder.objects.supp1._yscale = 100 + (random(40) - 20) * ((mergebrig - 100) / 50);
					holder.objects.supp2._xscale = (100 + (random(40) - 20) * ((mergebrig - 100) / 50)) * -1 * random(2);
					holder.objects.supp2._yscale = 100 + (random(40) - 20) * ((mergebrig - 100) / 50);
				}
				if (mergebrig == 150) {
					++count;
					attachMovie('whiteflash_long1', 'whiteflash', count);
				}
			}
			if (whiteflash._currentframe == 17) {
				bossxpos = holder.objects.boss._x;
				bossypos = holder.objects.boss._y + 135;
				holder.objects.boss.removeMovieClip();
				holder.objects.supp1.removeMovieClip();
				holder.objects.supp2.removeMovieClip();
				++count;
				holder.objects.attachMovie('last_form2', 'boss', count);
				holder.objects.boss._x = bossxpos;
				holder.objects.boss._y = bossypos;
				holder.objects.boss.flashCount = 0;
				holder.objects.boss.damageDelay = 0;
				holder.objects.boss.maxlife = 20;
				holder.objects.boss.life = holder.objects.boss.maxlife;
				holder.objects.boss.yspeed = 0;
			}
			if (whiteflash._currentframe == 56) {
				++count;
				attachMovie('bosshealth', 'bosshealth', count);
				form2stage = 4;
				cutscene = false;
				seq = 4;
			}
		}
		function createSupporterBullet(xx, yy, dir) {
			++count;
			holder.attachMovie('last_supportbullet', 'bullet' + count, count);
			holder['bullet' + count]._x = xx;
			holder['bullet' + count]._y = yy;
			holder['bullet' + count].speed = 1;
			holder['bullet' + count].onEnterFrame = function () {
				if (!game_paused) {
					if (!this.died) {
						if (this.hitTest(holder.player.hitbox)) {
							if (holder.player._x > this._x) {
								bumpAmount += standardBump;
							} else {
								bumpAmount -= standardBump;
							}
							xspeed = 0;
							shadeCount = 30;
							takedamage(1);
							this.died = true;
							this.play();
						}
						this._x += this.speed * dir;
						this.speed += 0.5;
						this._rotation += this.speed * 2 * dir;
					}
					if (this._x < 224) {
						this._x = 224;
						this.died = true;
						this.play();
					}
					if (this._x > 1504) {
						this._x = 1504;
						this.died = true;
						this.play();
					}
				}
			};
		}
		function createBossBullet(xx, yy, xsp, ysp) {
			++count;
			holder.attachMovie('last_bossbullet', 'bullet' + count, count);
			holder['bullet' + count]._x = xx;
			holder['bullet' + count]._y = yy;
			holder['bullet' + count].xspeed = xsp;
			holder['bullet' + count].yspeed = ysp;
			holder['bullet' + count].numBounces = 0;
			holder['bullet' + count].lifeTime = 0;
			holder['bullet' + count].lifeLimit = 50 + random(125);
			holder['bullet' + count].maxSpeed = 8;
			holder['bullet' + count].onEnterFrame = function () {
				if (!game_paused) {
					if (seq != 2) {
						this.play();
					}
					if (!this.died) {
						this._x += this.xspeed;
						this._y += this.yspeed;
						if (this.hitTest(holder.player.hitbox) and this.lifeTime > 10) {
							if (holder.player._x > this._x) {
								bumpAmount += standardBump;
							} else {
								bumpAmount -= standardBump;
							}
							xspeed = 0;
							shadeCount = 30;
							takedamage(1);
							this.died = true;
							this.play();
						}
						++this.lifeTime;
						if (this.lifeTime > 25) {
							if (this._x > holder.player._x and this.xspeed > -this.maxSpeed) {
								this.xspeed -= 0.25;
							}
							if (this._x < holder.player._x and this.xspeed < this.maxSpeed) {
								this.xspeed += 0.25;
							}
							this.ydist = Math.abs(this._y - holder.player._y);
							if (this.ydist > tilesize * 2) {
								if (this._y > holder.player._y and this.yspeed > -this.maxSpeed) {
									this.yspeed -= 0.25;
								}
								if (this._y < holder.player._y and this.yspeed < this.maxSpeed) {
									this.yspeed += 0.25;
								}
							} else {
								this.yspeed *= 0.9;
							}
						}
						if (this.lifeTime > this.lifeLimit) {
							this.died = true;
							this.play();
						}
					}
				}
			};
		}
		allmap = '245 BREAK 847 BREAK 50 BREAK 30 BREAK 345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,346,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,347,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,338,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,343,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,339,0,0,0,0,0,0,0,337,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,344,0,0,0,0,0,0,0,342,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,337,338,338,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,338,338,339,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,342,343,343,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,343,343,344,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,345,345,345,345,345,345,345,345,348,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,349,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345,345 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_brain BREAK 0';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('');
		if (!actions[77]) {
			seq = 1;
			seq1t = 0;
			cutscene = true;
			actions[77] = true;
		} else {
			seq = 2;
			fadeseq2 = true;
		}
		++count;
		holder.ground.attachMovie('last_halfceiling', 'ceiling', count);
		holder.ground.ceiling._x = 224;
		holder.ground.ceiling._y = 480;
		holder.ground.ceiling.cacheAsBitmap();
		holder.ground.ceiling.gotoAndStop(1);
		++count;
		holder.objects.attachMovie('last_form1', 'boss', count);
		holder.objects.boss._x = 848;
		holder.objects.boss._y = 512;
		holder.objects.boss.xspeed = -1;
		holder.objects.boss.maxspeed = 3.5;
		holder.objects.boss.minspeed = 0.5;
		holder.objects.boss.attDelay = 90;
		holder.objects.boss.damageDelay = 0;
		holder.objects.boss.maxlife = 60;
		holder.objects.boss.life = holder.objects.boss.maxlife;
		holder.objects.boss.organ1life = 10;
		holder.objects.boss.organ2life = 10;
		holder.objects.boss.flashCount = 0;
		holder.objects.boss.organ1flashCount = 0;
		holder.objects.boss.organ2flashCount = 0;
		holder.objects.boss.organ1alive = true;
		holder.objects.boss.organ2alive = true;
		++count;
		holder.objects.attachMovie('last_support', 'supp1', count);
		holder.objects.supp1._x = 700;
		holder.objects.supp1._y = 608;
		holder.objects.supp1.xspeed = 4;
		holder.objects.supp1.yspeed = 4;
		holder.objects.supp1.freezeCount = 0;
		holder.objects.supp1.attacking = false;
		holder.objects.supp1.attackDelay = 0;
		swapscale(holder.objects.supp1);
		++count;
		holder.objects.attachMovie('last_support', 'supp2', count);
		holder.objects.supp2._x = 1200;
		holder.objects.supp2._y = 864;
		holder.objects.supp2.xspeed = -3;
		holder.objects.supp2.yspeed = -3;
		holder.objects.supp2.freezeCount = 0;
		holder.objects.supp2.attacking = false;
		holder.objects.supp2.attackDelay = 0;
		swapscale(holder.objects.supp2);
		++count;
		attachMovie('bosshealth', 'bosshealth', count);
		bosshealth._alpha = 0;
		rockDelay = 90;
		mouthDelay = 90;
		essencearr = [3, 2, 1, 6, 4, 7, 5];
		eyesarr = [1, 2, 3, 4, 5, 6, 7];
		eyesDelay = 300;
		activeEye = false;
		bossfreezepotion = false;
		onEnterFrame = function () {
			if (bosshealth._alpha < 100) {
				bosshealth._alpha += 2;
			}
			if (Key.isDown(17)) {
				if (holder.ground.ceiling._currentframe == 1) {
					holder.ground.ceiling.gotoAndStop(2);
				} else {
					holder.ground.ceiling.gotoAndStop(1);
				}
			}
			if (seq == 1) {
				++seq1t;
				if (seq1t == 60) {
					mesarr = new Array();
					mesarr[0] = 'This is it...';
					mesarr[1] = 'I have to destroy the brain, it is surely';
					mesarr[2] = 'the only way to finally stop X\'o\'chthu.';
					mesarr[3] = '';
					mesarr[4] = '';
					mesarr[5] = 'For home...';
					mesarr[6] = 'For Movo...';
					_root.msgbox.initmessage(mesarr, _root.standardlettertime, 'hero');
					cutscene = false;
					fadeseq2 = true;
					seq = 2;
				}
			} else {
				if (seq == 2) {
					if (fadeseq2 and !msgbox._visible) {
						fadeseq2 = false;
						fadein_music(0.5);
						music_load('zos_bossSound');
					}
					runform1(holder.objects.boss);
					runsupporter(holder.objects.supp1);
					runsupporter(holder.objects.supp2);
				} else {
					if (seq == 3) {
						collectsupporters();
					} else {
						if (seq == 4) {
							runform2(holder.objects.boss);
						} else {
							if (seq == 5) {
								form2cutscene();
							} else {
								if (seq == 6) {
									runform3(holder.background.boss);
									runrocks();
									runmouth();
									runeyes();
								} else {
									if (seq == 7) {
										if (cutscenetime < 300) {
											runrocks();
										}
										holder.background.boss.gotoAndStop(2);
										holder.background.boss._xscale = 90 + random(21);
										holder.background.boss._yscale = 90 + random(21);
										holder.background.boss.setBrightness(random(50));
										holder.bg.setBrightness(random(50));
										holder.ground.setBrightness(random(50));
										if (cutscenetime == 0) {
											givemedal(12);
											++count;
											holder.attachMovie('player', 'playerdying', count);
											holder.playerdying._x = holder.player._x;
											holder.playerdying._y = holder.player._y;
											holder.playerdying._xscale = holder.player._xscale;
											holder.playerdying.anims.gotoAndStop(1);
											cutscenexpos = holder.background.boss._x;
											cutsceneypos = holder.background.boss._y;
										}
										if (holder.background.boss) {
											holder.player._x = cutscenexpos;
											holder.player._y = cutsceneypos;
										} else {
											holder.player._x = holder.playerdying._x;
											holder.player._y = holder.playerdying._y;
										}
										holder.player._visible = false;
										holder.playerdying.throwbar._visible = false;
										++cutscenetime;
										if (cutscenetime > 30 and cutscenetime < 90) {
											if (cutscenetime % 3 == 0) {
												create_blood(holder.background.boss._x - 170 + random(340), holder.background.boss._y + 150, 300, 'blood');
											}
										}
										if (cutscenetime == 100) {
											++count;
											attachMovie('whiteflash_long1', 'whiteflash', count);
										}
										if (cutscenetime > 210) {
											holder.setBrightness(-(cutscenetime - 210) * 0.5 - random(cutscenetime - 210) * 0.5);
										}
										if (cutscenetime == 250) {
											holder.playerdying.anims.gotoAndStop('dying');
											if (!bossfreezepotion) {
												givemedal(25);
											}
											_root.savegame();
											_root.runsave();
										}
										if (cutscenetime == 117) {
											holder.background.boss.removeMovieClip();
										}
										if (cutscenetime > 400) {
											--potionShortcut._alpha;
											--lives_bar._alpha;
										}
										if (cutscenetime == 500) {
											fadeout_music(0.5);
										}
										if (cutscenetime > 900) {
											stopAllSounds();
											shift_frame('endact3', 500, 430);
										}
									}
								}
							}
						}
					}
				}
			}
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 516 {
		allmap = '500 BREAK 430 BREAK 50 BREAK 20 BREAK 85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,86,83,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,83,83,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,81,77,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,81,80,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,81,80,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,326,327,0,0,0,328,329,0,0,0,324,325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,328,329,0,0,0,328,329,0,0,0,328,329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,328,329,0,0,0,328,329,0,0,0,328,329,0,0,0,0,245,246,247,0,0,0,276,277,0,0,0,245,246,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273,273,0,0,330,331,242,0,0,330,331,273,0,0,330,331,242,0,0,0,248,249,250,0,0,0,278,279,0,0,0,248,249,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0,280,281,0,0,0,0,252,0,0,0,0,320,321,320,321,320,321,320,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,242,0,0,253,0,241,0,0,282,283,0,241,243,244,253,242,0,0,0,322,323,322,323,322,323,322,323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_4 BREAK 3 BREAK 1,3,-9,431,1,5,act3s1,910,1165 BREAK 2,3,1610,385.05,1,100,act3s3,50,520';
		create_holders();
		loadmap();
		load_misc();
		player_properties(false);
		stopAllSounds();
		fadein_music(0.5);
		music_load('zos_menuSound');
		cutscene = true;
		fallspeed = 0;
		cutscenestarty = starty;
		holder.player._y = starty;
		camerafollow(1, 1);
		++count;
		attachMovie('fadein_long', 'fadein_long', count);
		++count;
		holder.attachMovie('credits_text', 'credits_text', count);
		holder.credits_text._x = 900;
		holder.credits_text._y = 300;
		holder.credits_text.gotoAndStop(1);
		selectedpotion = null;
		potionShortcut.removeMovieClip();
		lives_bar.removeMovieClip();
		msgbox.removeMovieClip();
		onEnterFrame = function () {
			fallspeed = 0;
			holder.player._x += 2;
			holder.player._y = cutscenestarty;
			holder.exclamation._visible = false;
			if (holder.player._x > 1200) {
				shift_frame('endact4', 350, 470);
			}
			potionShortcut._visible = false;
			holder.player._visible = false;
			lives_bar._visible = false;
			playercode();
			camerafollow(xcam, ycam);
			if (!game_paused) {
				if (!dying and !fadeout) {
					begxdiff = holder._x - begx;
					begydiff = holder._y - begy;
					holder.bg._x -= begxdiff * bgam;
					holder.bg._y -= begydiff * bgam;
					holder.floatcloud._x -= begxdiff * bgam * 0.5;
					holder.floatcloud._y -= begydiff * bgam * 0.5;
				}
			}
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 517 {
		allmap = '961 BREAK 300 BREAK 60 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,138,138,138,138,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,138,138,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,125,125,125,125,125,125,125,125,125,125,125,125,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,132,132,132,132,132,132,132,132,132,132,132,132,128,124,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,126,127,132,132,132,132,132,132,132,132,132,132,132,132,128,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,127,132,132,132,132,132,132,132,132,132,132,132,132,128,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,128,127,132,132,132,132,132,132,132,132,132,132,132,132,128,127,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,431,432,432,432,432,433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,431,432,432,433,431,432,430,432,430,433,0,0,409,410,411,412,0,389,390,391,389,390,391,0,0,389,390,391,0,0,405,0,0,0,0,0,0,0,389,390,391,0,0,0,389,390,391,389,390,391,389,390,391,0,0,405,0,0,0,0,431,432,428,433,431,432,432,432,432,433,0,0,413,414,415,416,0,392,393,394,392,393,394,0,0,392,393,394,0,0,406,0,0,0,0,0,0,0,392,393,394,0,0,0,392,393,394,392,393,394,392,393,394,0,0,406,0,0,0,0,425,426,429,427,425,426,426,426,426,427,384,386,417,418,419,420,0,395,396,397,395,396,397,0,0,395,396,397,387,0,407,0,0,0,0,0,0,0,395,396,397,0,401,402,395,396,397,395,396,397,395,396,397,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,421,422,423,424,386,398,399,400,398,399,400,0,384,398,399,400,388,0,408,0,0,0,0,0,0,0,398,399,400,386,403,404,398,399,400,398,399,400,398,399,400,0,0,408,384,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_bazaar BREAK 4 BREAK 1,3,-9,424,1,100,act4s3,1870,530 BREAK 2,3,1928,432.05,1,100,act4s2,50,490 BREAK 5,8,385,538.05,alien1,6,Special price for you@ friend.,null,null,null,null,null BREAK 6,8,1682,508.05,alien2,7,Well met@ outlander!,2 for 3@ just for you!,null,null,null,null BREAK 7,8,1207,510.05,alien2,7,Stay a while and listen!,null,null,null,null,null BREAK 8,8,1308,498.05,alien1,6,Fine day to make a deal@ hmm?,null,null,null,null,null BREAK 9,8,1413,507.05,woman,2,I can\'t decide what to buy.,There\'s so much!,null,null,null,null BREAK 10,8,289,531,alien2,7,N\'wah.,null,null,null,null,null BREAK 11,8,175,537.05,alien1,6,Sale! 2 for 10@ 3 for 20!,null,null,null,null,null BREAK 12,8,592,537.05,alien2,7,Watch your pockets@ stranger.,null,null,null,null,null BREAK 13,8,488,534,man,1,Where\'s my coinpurse?!,null,null,null,null,null BREAK 14,7,818,450,1,2,act4s1h1,275,360 BREAK 16,36,961,302.05,2,5,select1,248,124';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_menuSound');
		cutscene = true;
		fallspeed = 0;
		cutscenestarty = starty;
		holder.player._y = starty;
		camerafollow(1, 1);
		++count;
		attachMovie('fadein_long', 'fadein_long', count);
		++count;
		holder.attachMovie('credits_text', 'credits_text', count);
		holder.credits_text._x = 750;
		holder.credits_text._y = 200;
		holder.credits_text.gotoAndStop(2);
		potionShortcut.removeMovieClip();
		lives_bar.removeMovieClip();
		msgbox.removeMovieClip();
		onEnterFrame = function () {
			fallspeed = 0;
			holder.player._x += 2;
			holder.player._y = cutscenestarty;
			holder.exclamation._visible = false;
			if (holder.player._x > 1400) {
				shift_frame('endact6', 300, 470);
			}
			potionShortcut._visible = false;
			unpause();
			holder.player._visible = false;
			lives_bar._visible = false;
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 518 {
		allmap = '300 BREAK 459 BREAK 40 BREAK 30 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,228,223,0,0,0,0,0,0,220,228,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,228,223,0,0,0,0,0,0,220,228,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,228,223,0,0,0,0,0,0,220,231,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,231,223,0,0,0,0,0,0,220,231,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,229,223,0,0,0,0,0,0,220,229,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,230,223,0,0,0,0,0,0,220,230,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,225,226,0,0,0,0,0,0,224,225,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,206,206,206,206,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,209,209,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,212,212,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,206,206,206,206,207,0,0,0,0,0,0,0,0,205,206,206,207,205,206,206,206,205,206,207,0,0,205,206,206,0,0,0,0,0,0,0,0,0,208,209,209,209,209,209,210,0,0,0,0,0,0,0,0,208,209,209,209,208,209,209,210,209,209,210,0,0,208,209,209,0,0,0,0,0,0,0,205,206,206,207,209,209,209,209,210,0,0,0,0,0,0,0,0,211,212,212,212,208,209,209,210,212,212,213,0,0,208,209,209,0,0,0,0,0,0,0,208,209,209,210,209,209,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,208,209,209,210,0,0,0,0,0,208,209,209,0,0,0,0,0,0,0,208,209,209,210,212,212,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,213,0,0,0,0,0,211,212,212,0,0,0,0,0,0,0,211,212,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,206,207,205,206,206,206,206,207,205,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,209,208,209,209,209,209,210,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,212,208,209,209,209,209,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,209,209,209,209,210,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,653,654,655,656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,657,658,659,660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,661,663,663,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,632,631,0,0,631,0,0,0,0,0,0,0,0,0,0,0,0,0,665,666,667,668,631,633,632,0,0,0,632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK stars_floaty BREAK 0 BREAK 1,9,1010,824.05 BREAK 4,8,1039,467,zealot,10,Welcome to Aeryl. Tell me@ are you,awakened? Look around you@ what do,you see? Soil@ stone@ metal... But what,you don\'t see@ yet what envelops,everything@ is empty space. The air.,This is what Aeo created for us.,Blessings of Aeo be upon you.,null,null,null,null,null BREAK 5,4,848,826 BREAK 6,8,399,466,zealot,10,Prophecies claim that Aeo will rise,again@ soar up to the Sky temple above,and the vast space beyond to save the,universe from annihilation.,null,null,null,null,null BREAK 7,8,106,307,zealot,10,Your jump is impressive. Aeo looks,down with pride at you.,null,null,null,null,null BREAK 8,40,642,925.05,0,-2,0,-10 BREAK 9,36,1011,817,2,5,select1,530,380 BREAK 12,2,882,469,109,1';
		create_holders();
		loadmap();
		load_misc();
		player_properties(false);
		music_load('zos_menuSound');
		holder.createEmptyMovieClip('floatcloud', frontbgdep);
		numclouds = Math.ceil(((levelwidth / stagewidth) * levelheight / stageheight) * 2);
		i = 0;
		while (i < numclouds) {
			++count;
			holder.floatcloud.attachMovie('cloudholder', 'cloud' + i, count);
			holder.floatcloud['cloud' + i]._x = random(levelwidth);
			holder.floatcloud['cloud' + i]._y = random(levelheight);
			holder.floatcloud['cloud' + i].gotoAndStop(random(holder.floatcloud['cloud' + i]._totalframes) + 1);
			holder.floatcloud['cloud' + i].cacheAsBitmap();
			++i;
		}
		holder.floatcloud.cacheAsBitmap();
		bgam = 0.8;
		cutscene = true;
		fallspeed = 0;
		cutscenestarty = starty;
		holder.player._y = starty;
		camerafollow(1, 1);
		++count;
		attachMovie('fadein_long', 'fadein_long', count);
		++count;
		holder.attachMovie('credits_text', 'credits_text', count);
		holder.credits_text._x = 790;
		holder.credits_text._y = 270;
		holder.credits_text.gotoAndStop(3);
		potionShortcut.removeMovieClip();
		lives_bar.removeMovieClip();
		msgbox.removeMovieClip();
		onEnterFrame = function () {
			fallspeed = 0;
			holder.player._x += 2;
			holder.player._y = cutscenestarty;
			holder.exclamation._visible = false;
			if (holder.player._x > 920) {
				shift_frame('endact5', 350, 470);
			}
			potionShortcut._visible = false;
			holder.player._visible = false;
			lives_bar._visible = false;
			if (!fadeout and !fadein and (holder.player._x + xspeed > levelwidth or holder.player._x + xspeed < 0)) {
				holder.player._x -= xspeed;
				xspeed = 0;
			}
			if (holder.player._x < 5) {
				holder.player._x = 5;
			}
			if (holder.player._x > levelwidth) {
				holder.player._x = levelwidth;
			}
			playercode();
			camerafollow(xcam, ycam);
			if (!game_paused) {
				if (!dying and !fadeout) {
					begxdiff = holder._x - begx;
					begydiff = holder._y - begy;
					holder.bg._x -= begxdiff * bgam;
					holder.bg._y -= begydiff * bgam;
					holder.floatcloud._x -= begxdiff * bgam * 0.5;
					holder.floatcloud._y -= begydiff * bgam * 0.5;
				}
			}
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 519 {
		allmap = '180 BREAK 423 BREAK 50 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,169,169,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,176,176,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,176,176,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,176,176,172,168,169,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,176,176,172,171,176,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,169,169,169,169,176,176,176,172,171,176,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,176,176,176,176,176,176,176,172,171,176,172,168,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,170,171,176,176,176,176,176,176,176,172,171,176,172,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,172,171,176,176,176,176,176,176,176,172,171,176,172,171,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,172,171,176,176,176,176 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,532,533,0,0,0,0,0,0,0,0,0,0,537,538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,539,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,541,542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,566,567,568,569,0,0,0,0,0,534,532,532,0,0,535,536,0,0,535,536,0,0,0,0,0,0,543,544,545,0,0,0,0,564,565,0,0,0,543,544,545,0,0,0,0,535,536,0,0,0,0,570,571,0,0,0,0,0,0,0,0,0,0,0,537,538,0,0,537,538,0,0,0,0,0,0,546,547,548,0,0,0,566,567,568,569,0,0,546,547,548,0,0,0,0,537,538,0,0,0,0,572,573,0,0,0,0,0,0,0,0,0,0,0,539,540,0,0,539,540,0,0,0,559,0,549,550,551,552,553,0,559,0,570,571,0,0,549,550,551,552,553,0,0,0,539,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,532,0,541,542,0,0,541,542,0,0,0,560,0,554,555,556,557,558,0,560,0,572,573,532,0,554,555,556,557,558,532,533,532,541,542,0,0,532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_gas BREAK 5 BREAK 1,3,-9,307,1,100,act5s0,1550,660 BREAK 2,3,1606,381.05,1,100,act5s2,50,790 BREAK 3,7,722,519.05,1,3,act5s1h1,335,530 BREAK 4,7,1104,513.05,1,3,act5s1h2,335,530';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_menuSound');
		cutscene = true;
		fallspeed = 0;
		cutscenestarty = starty;
		holder.player._y = starty;
		camerafollow(1, 1);
		++count;
		attachMovie('fadein_long', 'fadein_long', count);
		++count;
		holder.attachMovie('credits_text', 'credits_text', count);
		holder.credits_text._x = 630;
		holder.credits_text._y = 170;
		holder.credits_text.gotoAndStop(4);
		potionShortcut.removeMovieClip();
		lives_bar.removeMovieClip();
		msgbox.removeMovieClip();
		onEnterFrame = function () {
			fallspeed = 0;
			holder.player._x += 2;
			holder.player._y = cutscenestarty;
			holder.exclamation._visible = false;
			if (holder.player._x > 1100) {
				shift_frame('endact2', 400, 360);
			}
			potionShortcut._visible = false;
			unpause();
			holder.player._visible = false;
			lives_bar._visible = false;
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 520 {
		allmap = '48 BREAK 521 BREAK 50 BREAK 20 BREAK 42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,42,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,42,42,42,42,42,42,43,39,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,42,42,42,42,42,42,42,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,39,39,39,39,39,39,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,47,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,47,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,47,0,0,0,0,47,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,35,35,35,35,35,35,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,42,42,42,42,42,42,37,34,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,0,0,0,0,0,0,34,35,35,35,35,35,35,35,35,35,35,35,36,41,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,0,0,0,0,0,0,41,42,42,42,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,35,35,35,35,35,36,41,42,42,42,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,42,42,37,41,42,42,42,42,42,42,37,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,168,170,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,170,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,170,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,175,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175,164,0,0,0,0,0,0,0,0,0,0,0,0,0,150,150,0,0,0,0,0,0,0,0,0,0,0,188,189,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,186,0,0,0,0,0,0,0,0,0,0,194,191,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,189,189,189,190,0,0,0,0,0,0,150,0,0,185,187,187,187,186,0,0,0,0,0,177,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,193,189,192,190,0,0,177,178,0,185,0,0,186,188,189,189,189,190,0,0,177,178,0,179,180,0,0,0,0,0,177,178,0,0,0,0,185,0,0,186,0,0,185,0,0,186,0,153,151,194,191,191,195,196,152,0,179,180,0,188,193,192,190,188,189,189,193,190,0,0,179,180,0,183,184,0,0,0,0,0,179,180,0,0,0,0,188,192,193,190,0,0,188,189,192,190,0,0,0,0,0,0,0,0,0,0,181,182,150,194,191,195,196,194,191,191,191,196,151,0,181,182,0,181,182,0,0,0,0,0,183,184,0,0,0,151,194,195,191,196,0,204,194,191,195,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,182,151,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_2 BREAK 2 BREAK 1,3,1610,290,1,50,act2s5,50,850 BREAK 2,7,303,450.05,1,2,act2s6h1,275,360 BREAK 3,7,528,451.05,1,2,act2s6h2,370,360 BREAK 4,7,784,386.05,1,2,act2s6h3,400,360 BREAK 5,7,1073,421.05,1,2,act2s6h4,175,370 BREAK 6,4,1329,441.1 BREAK 7,3,-11,438,1,10,act2s7,910,300 BREAK 8,8,415,474,tribalwoman,4,Few men climb Mount Ulahard.,Those that do grow strong through,chewing the bloodgrass of the summit.,null,null,null BREAK 9,2,891,446.05,25,1';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_menuSound');
		cutscene = true;
		fallspeed = 0;
		cutscenestarty = starty;
		holder.player._y = starty;
		camerafollow(1, 1);
		++count;
		attachMovie('fadein_long', 'fadein_long', count);
		potionShortcut.removeMovieClip();
		lives_bar.removeMovieClip();
		msgbox.removeMovieClip();
		onEnterFrame = function () {
			fallspeed = 0;
			holder.player._x += 2;
			holder.player._y = cutscenestarty;
			holder.exclamation._visible = false;
			if (holder.player._x > 1200) {
				shift_frame('endact1', 300, 470);
			}
			potionShortcut._visible = false;
			unpause();
			holder.player._visible = false;
			lives_bar._visible = false;
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 521 {
		allmap = '41 BREAK 461 BREAK 40 BREAK 20 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,17,17,17,18,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,17,17,17,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,18,0,0,0,0,0,16,17,17,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,1,2,2,3,1,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,9,5,4,9,9,9,9,9,9,9,9,9,9,9,9,9,5,4,9,9,9,9,9 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,48,48,48,49,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,52,48,48,49,45,0,0,0,0,0,0,0,6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,50,50,50,55,45,0,0,0,0,0,0,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0,77,78,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,46,56,0,0,0,0,0,0,4,0,4,0,0,0,0,0,77,78,0,0,0,79,80,81,82,0,0,0,0,0,0,0,0,0,0,47,48,48,48,49,0,0,0,0,0,0,0,0,5,0,5,0,0,0,0,79,80,81,82,0,0,83,84,85,86,0,0,0,0,0,0,0,0,47,49,47,52,48,48,49,47,48,48,49,0,0,0,0,4,0,4,0,0,0,0,83,84,85,86,0,0,0,87,88,0,0,0,0,0,0,0,0,0,47,49,47,52,51,48,49,47,48,52,49,0,0,0,0,5,0,5,0,0,0,0,0,87,88,0,0,0,0,89,90,3,0,0,0,0,0,0,0,3,53,55,53,50,54,50,55,53,50,50,55,96,95,0,0,4,0,4,0,0,0,0,3,89,90,2,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 BREAK bg_1 BREAK 1 BREAK 3,3,-2,329.05,1,100,act1s3,1550,350 BREAK 4,3,1280,305,1,100,act1s5,50,460 BREAK 5,7,304,480,1,3,act1s4h1,300,520 BREAK 6,8,629,504.05,man,1,undefined,null,null,null,null,null BREAK 7,8,949,505.05,man,1,undefined,null,null,null,null,null BREAK 8,8,907,504.05,man,2,undefined,null,null,null,null,null BREAK 9,8,575,500.05,man,2,undefined,null,null,null,null,null BREAK 10,8,528,505.05,man,5,undefined,null,null,null,null,null BREAK 11,8,307,344.05,man,5,undefined,null,null,null,null,null BREAK 12,8,1171,473.05,man,1,undefined,null,null,null,null,null BREAK 13,8,1012,501.05,man,5,undefined,null,null,null,null,null BREAK 14,8,150,496.05,man,1,undefined,null,null,null,null,null BREAK 15,8,453,504.05,man,2,undefined,null,null,null,null,null BREAK 16,8,721,505.05,man,1,undefined,null,null,null,null,null BREAK 17,8,688,498.05,man,5,undefined,null,null,null,null,null BREAK 18,8,986,492.05,man,2,undefined,null,null,null,null,null BREAK 19,8,342,500.05,man,1,undefined,null,null,null,null,null BREAK 20,8,223,494.05,man,2,undefined,null,null,null,null,null BREAK 21,8,56,508.05,man,2,undefined,null,null,null,null,null BREAK 22,8,919,499.05,man,1,undefined,null,null,null,null,null';
		create_holders();
		loadmap();
		load_misc();
		player_properties(true);
		music_load('zos_menuSound');
		cutscene = true;
		fallspeed = 0;
		cutscenestarty = starty;
		holder.player._y = starty;
		camerafollow(1, 1);
		++count;
		attachMovie('fadein_long', 'fadein_long', count);
		++count;
		holder.foreground.attachMovie('act1s4_dog', 'dog', count);
		holder.foreground.dog._y = 512;
		holder.foreground.dog._x = 770;
		++count;
		holder.attachMovie('end_statue', 'statue', count);
		holder.statue._y = 512;
		holder.statue._x = 820;
		enddelay = 400;
		potionShortcut.removeMovieClip();
		lives_bar.removeMovieClip();
		msgbox.removeMovieClip();
		onEnterFrame = function () {
			fallspeed = 0;
			holder.player._y = cutscenestarty;
			holder.exclamation._visible = false;
			if (holder.player._x < 800) {
				holder.player._x += 2;
			} else {
				--enddelay;
				if (enddelay < 0) {
					shift_frame('finalend', 0, 0);
				}
				if (enddelay == 100) {
					++count;
					attachMovie('fadeout_slow', 'fadeout_slow', count);
				}
			}
			potionShortcut._visible = false;
			unpause();
			holder.player._visible = false;
			lives_bar._visible = false;
			playercode();
			camerafollow(xcam, ycam);
			bgmove();
		};
		onMouseDown = function () {
			mousedown = true;
			lookdirection();
		};
		onMouseUp = function () {
			mousedown = false;
		};
		onMouseMove = function () {
			lookdirection();
		};
	}
	frame 522 {
		music_load('zos_menuSound');
		++count;
		attachMovie('fadein_long', 'fadein_long', count);
		++count;
		attachMovie('game_frame', 'game_frame', count + 10000);
		game_frame.cacheAsBitmap();
		shifting = false;
		backbutton._visible = false;
		backbutton._alpha = 0;
		backdelay = 1500;
		onEnterFrame = function () {
			music_run();
			if (backdelay == 100) {
				fadeout_music();
			}
			if (backdelay == 0) {
				fadein_music();
				music_load('zos_windSound');
			}
			--backdelay;
			if (backdelay < 0 and backbutton._alpha < 100) {
				backbutton._visible = true;
				++backbutton._alpha;
			}
			if (shifting) {
				shift_frame('mainmenu', 0, 0);
			}
		};
	}
	movieClip 4629	{
		frame 1090 {
			stop();
		}
	}
	button 4630 {
		on (release) {
			stopAllSounds();
			_root.gotoAndStop('mainmenu');
		}
	}
	movieClip 4631	{
	}
	frame 531 {
		count = 0;
		check_load = true;
		_currentframe = check_frame;
		gotoAndStop(check_frame);
	}
	button 4634 {
		on (release) {
			count = 0;
			check_load = true;
			_currentframe = check_frame;
			gotoAndStop(check_frame);
		}
	}
