Frame 5
function setupVirginGame() {
_global.storeSettings = false;
_global.dog = undefined;
_global.character = undefined;
_global.controlType = undefined;
_global.racetrack = undefined;
}
function setupGamePlayShortcuts() {
_global.feedback = feedback_mc;
_global.interface_mc = interface_mc;
_global.flashFeedback = interface_mc.flash_mc;
_global.track_mc = interface_mc.track_mc;
_global.altometer = interface_mc.altitude_txt;
_global.bonusText = interface_mc.bonus_txt;
_global.bknd = bknd_mc;
_global.gameRoot = gameRoot_mc;
_global.timerRoot = interface_mc.createEmptyMovieClip("timers", 20);
_global.noFocus = noFocus_txt;
}
function firstRunVariables() {
_global.ringCount = 0;
_global.passedRings = 0;
_global.firstRun = false;
_global.lap = 0;
_global.score = 0;
_global.inPlay = false;
_global.endActionTaken = false;
_global.gameComplete = false;
_global.currentLives = _global.root.startingLives;
}
function createLevels() {
var _local4 = {maxAmount:20, bonusType:"speedUp", myDuration:5000, myValue:5, bonusValue:750};
var _local5 = {maxAmount:8, bonusType:"speedDown", myDuration:4000, myValue:5, bonusValue:-500};
var _local2 = {maxAmount:4, bonusType:"ringSize", myDuration:8000, myValue:60, bonusValue:500};
var _local3 = {maxAmount:1, bonusType:"lifeBonus", bonusValue:500};
var _local8 = new com.teamrubber.Game(lap1, hareLap1, 50, 50, 15, _local4, _local5, _local2, _local3, 6, 35500);
_global.root.gameArray.push(_local8);
_local4 = {maxAmount:25, bonusType:"speedUp", myDuration:5000, myValue:6, bonusValue:750};
_local5 = {maxAmount:6, bonusType:"speedDown", myDuration:5000, myValue:6, bonusValue:-500};
_local2 = {maxAmount:4, bonusType:"ringSize", myDuration:7000, myValue:60, bonusValue:500};
_local3 = {maxAmount:3, bonusType:"lifeBonus", bonusValue:500};
var _local7 = new com.teamrubber.Game(lap2, hareLap2, 68, 62, 21, _local4, _local5, _local2, _local3, 9, 48000);
_global.root.gameArray.push(_local7);
_local4 = {maxAmount:30, bonusType:"speedUp", myDuration:5000, myValue:7, bonusValue:750};
_local5 = {maxAmount:8, bonusType:"speedDown", myDuration:6000, myValue:7, bonusValue:-500};
_local2 = {maxAmount:4, bonusType:"ringSize", myDuration:6000, myValue:60, bonusValue:500};
_local3 = {maxAmount:4, bonusType:"lifeBonus", bonusValue:500};
var _local6 = new com.teamrubber.Game(lap3, hareLap3, 80, 75, 27, _local4, _local5, _local2, _local3, 13, 65000);
_global.root.gameArray.push(_local6);
}
function setupBackground() {
_global.backgroundArray = new Array();
var _local2 = new com.teamrubber.BackgroundClass(_global.bknd.clouds1a_mc, _global.bknd.clouds1b_mc, 13, 34, 300, {yUp:-200, yDown:90});
_global.backgroundArray.push(_local2);
_local2 = new com.teamrubber.BackgroundClass(_global.bknd.clouds1b_mc, _global.bknd.clouds1a_mc, 13, 34, 300, {yUp:-200, yDown:90});
_global.backgroundArray.push(_local2);
_local2 = new com.teamrubber.BackgroundClass(_global.bknd.clouds2a_mc, _global.bknd.clouds2b_mc, 17, 48, 150, {yUp:50, yDown:253});
_global.backgroundArray.push(_local2);
_local2 = new com.teamrubber.BackgroundClass(_global.bknd.clouds2b_mc, _global.bknd.clouds2a_mc, 17, 48, 150, {yUp:50, yDown:253});
_global.backgroundArray.push(_local2);
_local2 = new com.teamrubber.BackgroundClass(_global.bknd.hill1a_mc, _global.bknd.hill1b_mc, 20, 80, 0, {yUp:275, yDown:317});
_global.backgroundArray.push(_local2);
_local2 = new com.teamrubber.BackgroundClass(_global.bknd.hill1b_mc, _global.bknd.hill1a_mc, 20, 80, 0, {yUp:275, yDown:317});
_global.backgroundArray.push(_local2);
_local2 = new com.teamrubber.BackgroundClass(_global.bknd.hill2a_mc, _global.bknd.hill2b_mc, 23, 80, 0, {yUp:240, yDown:285});
_global.backgroundArray.push(_local2);
_local2 = new com.teamrubber.BackgroundClass(_global.bknd.hill2b_mc, _global.bknd.hill2a_mc, 23, 80, 0, {yUp:240, yDown:285});
_global.backgroundArray.push(_local2);
_local2 = new com.teamrubber.BackgroundClass(_global.bknd.ground_mc, undefined, undefined, 80, undefined, {yUp:265, yDown:311});
_global.backgroundArray.push(_local2);
}
function getHighScores() {
_global.highScores = new Array();
var _local4 = new LoadVars();
_local4.onLoad = function (success) {
trace("============= LOADED : " + success);
if (success) {
_global.root.highScoresLoaded = true;
_global.highScores.length = 0;
i = 0;
while (i < _global.root.maxHighScores) {
var _local3 = new Object();
_local3.highScore = this["highscore_" + i];
_local3.dog = this["dog_" + i];
_local3.racetrack = this["track_" + i];
_local3.dogName = this["name_" + i];
_global.highScores.push(_local3);
i++;
}
} else if (_global.root.highScoresLoaded == false) {
_global.highScores.length = 0;
i = 0;
while (i < _global.root.maxHighScores) {
trace(i + " DB error");
var _local3 = new Object();
_local3.highScore = ((_global.root.maxHighScores - i) * 1000) + 10000;
_local3.dog = _global.root.dogOne;
_local3.racetrack = "Greyhound Stadium";
_local3.dogName = "-----";
_global.highScores.push(_local3);
i++;
}
}
_global.root.putHighScores(_global.highScoreRoot);
};
_local4.load(_global.baseURL + "getHighscore");
}
function putHighScores(gameRoot) {
trace("PUTTING HIGHSCORES");
var _local2 = 50;
var _local3 = 10;
i = 0;
while (i < _global.root.maxHighScores) {
_global.rankTable[i].box.text = _global.highScores[i].dogName;
_global.rankTable[i].myScore.text = _global.highScores[i].highScore;
_global.rankTable[i].myTrack.text = _global.highScores[i].racetrack;
i++;
}
}
function getRanking() {
var _local4 = new LoadVars();
var _local3 = new LoadVars();
_local3.highscore = _global.score;
_local3.dog = _global.dog;
_local3.track = _global.racetrack;
_local3.name = _global.character;
_local4.onLoad = function (success) {
if (success && (this.ok == 1)) {
_global.ranking = this.ranking;
} else {
_global.ranking = "---";
}
_global.root.putRanking();
_global.root.getHighScores();
};
_local3.sendAndLoad(_global.baseURL + "submitHighscore", _local4, "POST");
}
function putRanking() {
_global.rankingRoot.ranking_txt.text = _global.ranking;
}
function enterPrizeDraw(send_lv, clip) {
var _local3 = new LoadVars();
_local3.onLoad = function (success) {
var _local2;
if (success) {
_local2 = "email submitted";
} else {
_local2 = "sorry an error occurred";
}
_global.disabledForm = false;
_global.currentForm.getClipFor("prizeEmail").text = _local2;
};
send_lv.sendAndLoad(_global.baseURL + "addEmail", _local3, "POST");
}
function setupEmailForm(clip) {
var _local6 = new Object({textBox:clip.username_txt, boxType:"string", original:"enter your name", error:false, tmpVal:"", postVar:"name", arrayPos:0});
var _local5 = new Object({textBox:clip.userEmail_txt, boxType:"email", original:"enter your email", error:false, tmpVal:"", postVar:"email", arrayPos:1});
var _local4 = new Object({textBox:clip.friendName_txt, boxType:"string", original:"enter friend's name", error:false, tmpVal:"", postVar:"name_0", arrayPos:2});
var _local3 = new Object({textBox:clip.friendEmail_txt, boxType:"email", original:"enter friend's email", error:false, tmpVal:"", postVar:"email_0", arrayPos:3});
_global.emailScript.form = new Array(_local6, _local5, _local4, _local3);
if (clip.firstSend == undefined) {
clip.firstSend = false;
clip.numSends = 0;
}
Selection.addListener(this.selectionListener);
i = 0;
while (i < _global.emailScript.form.length) {
_global.emailScript.form[i].textBox.text = _global.emailScript.form[i].original;
_global.emailScript.form[i].textBox.tabIndex = i + 1;
trace("{email} TAB INDEX : " + _global.emailScript.form[i].textBox.tabIndex);
i++;
}
clip.send_btn.tabIndex = _global.emailScript.form.length + 1;
clip.send_btn.onRelease = function () {
sendEmail(clip, _global.emailScript.form, "sendToFriend", clip, clip);
};
clip.mailSent_mc._visible = false;
}
function sendSuccess(clip, form) {
clip.title_txt.text = ("Sent to " + clip.numSends) + " friend(s)";
clip.gotoAndPlay("sent");
form[2].textBox.text = form[2].original;
form[2].tmpVal = "";
form[3].textBox.text = form[3].original;
form[3].tmpVal = "";
}
function doSending(clip, form) {
clip.gotoAndPlay("sending");
}
function handleFocus(item) {
if ((item.error == false) && (item.textBox.text == item.original)) {
item.tmpVal = item.textBox.text;
item.textBox.text = "";
} else if (item.error == true) {
if (item.textBox.text != item.original) {
item.textBox.text = item.tmpVal;
}
item.error = false;
}
}
function sendEmail(emailRoot, form, sendScript, sendingRoot, successRoot) {
var _local5 = new LoadVars();
var _local4 = new LoadVars();
_local5.onLoad = function (success) {
if (success && (this.ok == 1)) {
_global.emailScript.sendSuccess(successRoot, form);
com.teamrubber.SeqTrackerAdaptor.sendToFriendConversion();
} else {
form[0].tmpVal = form[0].textBox.text;
form[0].error = true;
form[0].textBox.text = "Sorry, error sending email";
trace("Sorry, there was an error sending the email");
successRoot.gotoAndPlay("sent");
}
};
Selection.setFocus(_global.root.noFocus_txt);
var _local3 = 0;
i = 0;
while (i < form.length) {
if (form[i].boxType == "email") {
if (checkEmail(form[i]) == false) {
_local3++;
}
} else if (form[i].boxType == "string") {
if (checkOtherTextBox(form[i]) == false) {
_local3++;
}
}
i++;
}
if (_local3 == 0) {
emailRoot.numSends++;
i = 0;
while (i < form.length) {
_local4[form[i].postVar] = form[i].textBox.text;
i++;
}
_local4.score = _global.score;
if (sendingRoot == undefined) {
sendingRoot = emailRoot;
}
_global.emailScript.doSending(sendingRoot, form);
_local4.sendAndLoad(_global.baseURL + sendScript, _local5, "POST");
}
}
function checkEmail(item) {
var _local1;
var _local2 = item.textBox.text;
var _local5 = _local2.indexOf("@");
var _local3 = _local2.lastIndexOf(".");
if (_local5 == -1) {
_local1 = false;
} else if (_local3 == -1) {
_local1 = false;
} else if (_local5 > _local3) {
_local1 = false;
} else if ((_local3 + 1) >= _local2.length) {
_local1 = false;
} else {
_local1 = true;
}
if (_local1 == false) {
item.textBox.text = emailError;
item.error = true;
return(false);
}
item.error = false;
return(true);
}
function checkOtherTextBox(item) {
if (item.textBox.text == item.original) {
item.error = true;
item.textBox.text = stringError;
return(false);
}
if (item.textBox.text == "") {
item.error = true;
item.textBox.text = stringError;
return(false);
}
if (item.textBox.text == stringError) {
item.error = true;
item.textBox.text = stringError;
return(false);
}
return(true);
}
function preload(clip, goFrame, percentRequired) {
clip.currentPos = 0;
clip.preloadTo = percentRequired;
clip.goFrame = goFrame;
clip.tl = this;
clip.onEnterFrame = function () {
var _local2 = this.tl.getBytesLoaded();
var _local5 = this.tl.getBytesTotal();
var _local3 = Math.round((100 / _local5) * _local2);
var _local4 = Math.round((_local3 - this.currentPos) / 4);
if (_local4 < 1) {
_local4 = 1;
}
this.currentPos = this.currentPos + _local4;
if (this.currentPos >= _local3) {
this.currentPos = _local3;
}
if (_local2 > 16) {
this.gotoAndStop(this.currentPos);
if ((this.currentPos >= 100) && (_local2 >= _local5)) {
this.tl.gotoAndStop(goFrame);
}
}
};
}
function defaultMenuOver() {
_global.snd.playSound("bark");
_global.snd.setNewVolume(50, "bark");
}
function setupDefaultMenuOverSound(arr) {
trace("setting UP + " + arr);
i = 0;
while (i < arr.length) {
arr[i].onRollOver = defaultMenuOver;
i++;
}
}
function manageBGSound(dir, to) {
if (_global.snd.soundState == true) {
var _local2 = to;
if (_local2 == undefined) {
_local2 = 0;
}
if (dir == "up") {
if ((_global.snd.sounds.bg1.playing == undefined) || (_global.snd.sounds.bg1.playing == false)) {
_global.snd.playSound("bg1", 9999);
_global.snd.setNewVolume(0, "bg1");
}
_global.snd.setupAfade("bg1", 20, 1);
} else {
_global.snd.setupAfade("bg1", 5, -0.5);
}
}
}
function soundToggle() {
if (this.volState == undefined) {
this.volState = true;
}
this.volState = ((this.volState == true) ? false : true);
var _local3 = ((this.volState == true) ? "on" : "off");
_global.snd.setSoundState(this.volState);
this.gotoAndStop(_local3);
}
function campaignExit(from) {
com.teamrubber.SeqTrackerAdaptor.campaignExit(from);
}
function setupSplash(clip) {
var _local4 = ["bg", "bg1", "bgPlane", "bankUp", "bankDown", "ring", "bonus", "loseLife", "bark"];
if (_global.snd == undefined) {
_global.snd = new com.teamrubber.SoundManager(this, _local4, false);
}
manageBGSound("up");
soundToggle_mc.onPress = soundToggle;
_global.rankTable = [{box:clip.highScores_mc.name1_txt, myScore:clip.highScores_mc.score1_txt, myTrack:clip.highScores_mc.racetrack1_txt}, {box:clip.highScores_mc.name2_txt, myScore:clip.highScores_mc.score2_txt, myTrack:clip.highScores_mc.racetrack2_txt}, {box:clip.highScores_mc.name3_txt, myScore:clip.highScores_mc.score3_txt, myTrack:clip.highScores_mc.racetrack3_txt}];
_global.firstRun = true;
com.teamrubber.SeqTrackerAdaptor.viewSplash();
_global.highScoreRoot = clip;
_global.root.getHighScores();
clip.play_btn.onRelease = function () {
_global.root.gotoAndPlay("begin");
};
clip.skip_btn.onRelease = function () {
_global.character = "skip";
_global.racetrack = "skipRacetrack";
_global.root.gotoAndPlay("play");
};
clip.dogLink_btn.onRelease = function () {
_global.root.campaignExit("plane");
};
setupDefaultMenuOverSound([clip.skip_btn, clip.play_btn, clip.dogLink_btn]);
}
function setupBegin(clip, dogs, controlClip) {
function resetErrors(array) {
array[0].clip._parent.text_mc._visible = false;
i = 0;
while (i < array.length) {
array[i].clip._visible = false;
i++;
}
}
setupDefaultMenuOverSound([clip.startRace_btn]);
manageBGSound("up");
_global.firstRun = true;
com.teamrubber.SeqTrackerAdaptor.viewSplash();
var dog = new Object({clip:clip.error_mc.dog_mc, error:false, me_str:"dog"});
var controls = new Object({clip:clip.error_mc.controls_mc, error:false, me_str:"controls"});
var dogName = new Object({clip:clip.error_mc.name_mc, error:false, me_str:"dogName"});
var racetrack = new Object({clip:clip.error_mc.racetrack_mc, myHeight:100, error:false, me_str:"racetracks"});
var errorHandling = new Array(dog, controls, dogName, racetrack);
resetErrors(errorHandling);
if (_global.firstRun == true) {
clip.dogSelected = false;
clip.controlsSelected = true;
}
var original = "Enter a name here";
if (_global.character == undefined) {
clip.dogName_txt.text = original;
}
var selectionListener = new Object();
selectionListener.onSetFocus = function (oldFocus, newFocus) {
if (newFocus.text == original) {
resetErrors(errorHandling);
newFocus.text = "";
}
};
Selection.addListener(selectionListener);
i = 0;
while (i < _global.tracks.length) {
clip.track_cb.addItem(_global.tracks[i]);
i++;
}
var _local5 = new Object();
_local5.change = function (evt) {
_global.racetrack = evt.target.selectedItem.label;
resetErrors(errorHandling);
};
clip.track_cb.addEventListener("change", _local5);
dogs.dog1_btn.onRelease = function () {
resetErrors(errorHandling);
clip.dogSelected = true;
_global.dog = _global.root.dogOne;
this._parent.gotoAndPlay(_global.dog);
};
dogs.dog2_btn.onRelease = function () {
resetErrors(errorHandling);
clip.dogSelected = true;
_global.dog = _global.root.dogTwo;
this._parent.gotoAndPlay(_global.dog);
};
dogs.back_btn.onRelease = function () {
this._parent.gotoAndStop("home");
this._parent._parent.dogSelected = false;
};
controlClip.normal_btn.onRelease = function () {
resetErrors(errorHandling);
clip.controlsSelected = true;
_global.controlType = "normal";
this._parent.gotoAndPlay(_global.controlType);
_global.controls.up = -1;
_global.controls.down = 1;
};
controlClip.inverse_btn.onRelease = function () {
resetErrors(errorHandling);
clip.controlsSelected = true;
_global.controlType = "inverse";
this._parent.gotoAndPlay(_global.controlType);
_global.controls.up = 1;
_global.controls.down = -1;
};
controlClip.back_btn.onRelease = function () {
this._parent.gotoAndStop("home");
this._parent._parent.controlsSelected = false;
};
if (_global.storeSettings == true) {
controlClip.gotoAndStop(_global.controlType + "_set");
dogs.gotoAndStop(_global.dog + "_set");
clip.dogSelected = true;
clip.controlsSelected = true;
clip.dogName_txt.text = _global.character;
i = 0;
while (i < _global.tracks.length) {
if (_global.racetrack == _global.tracks[i]) {
clip.track_cb.selectedIndex = i;
break;
}
i++;
}
}
clip.startRace_btn.onRelease = function () {
i = 0;
while (i < errorHandling.length) {
errorHandling[i].error = false;
i++;
}
Selection.setFocus(_global.root.noFocus_txt);
var _local2 = false;
if ((_global.racetrack == undefined) || (clip.track_cb.selectedItem.label == _global.tracks[0])) {
_local2 = true;
racetrack.error = true;
}
if (clip.dogName_txt.text == "") {
_local2 = true;
dogName.error = true;
clip.dogName_txt.text = original;
} else if (clip.dogName_txt.text == original) {
_local2 = true;
dogName.error = true;
clip.dogName_txt.text = original;
} else if (_global.character == undefined) {
_global.character = clip.dogName_txt.text;
Selection.removeListener(selectionListener);
} else {
Selection.removeListener(selectionListener);
}
if (clip.dogSelected == false) {
dog.error = true;
_local2 = true;
}
if (clip.controlsSelected == false) {
controls.error = true;
_local2 = true;
}
if (_local2 == true) {
i = 0;
while (i < errorHandling.length) {
errorHandling[0].clip._parent.text_mc._visible = true;
if (errorHandling[i].error == true) {
errorHandling[i].clip._visible = true;
}
i++;
}
} else if (_local2 == false) {
_global.storeSettings = true;
_global.character = clip.dogName_txt.text;
_global.root.gotoAndPlay("play");
com.teamrubber.SeqTrackerAdaptor.startSession();
com.teamrubber.SeqTrackerAdaptor.viewTrack(_global.racetrack);
com.teamrubber.SeqTrackerAdaptor.viewDog(_global.dog);
}
};
}
function setupNextLap(clip) {
var listener = new Object();
listener.onKeyDown = function () {
if (Key.isDown(13) || (Key.isDown(32))) {
Key.removeListener(listener);
_global.root.gotoAndPlay("play");
}
};
Key.addListener(listener);
manageBGSound("down");
setupDefaultMenuOverSound([clip.nextLap_btn]);
clip.nextLap_btn.onRelease = function () {
_global.root.gotoAndPlay("play");
};
clip.display_txt.text = (((((("well done " + _global.character) + ", lap ") + _global.lap) + " of ") + _global.maxLaps) + " completed!\nYour score is ") + _global.score;
}
function setupPodium(clip) {
manageBGSound("down");
if (_global.gameComplete == false) {
clip.gotoAndStop(_global.dog + "_lose");
} else if (_global.gameComplete == true) {
clip.gotoAndStop(_global.dog + "_win");
} else {
clip.gotoAndStop(_global.dog + "_lose");
}
_global.root.trace_mc.t_txt.text = (((_global.gameComplete + " ") + _global.dog) + " ") + clip._name;
trace((((_global.gameComplete + " ") + _global.dog) + " ") + clip._name);
}
function setupGameComplete(clip, promo) {
setupDefaultMenuOverSound([clip.playAgain_btn, clip.dogLink_btn, clip.emailForm_mc.sendToFriend_btn, promo.exit_btn]);
if (_global.gameComplete == false) {
clip.gotoAndStop("lose");
clip.score_txt.text = _global.score;
}
_global.root.onEnterFrame = undefined;
com.teamrubber.SeqTrackerAdaptor.endSession();
_global.highScoreRoot = clip;
_global.rankingRoot = clip;
_global.rankTable = [{box:clip.name1_txt, myScore:clip.score1_txt, myTrack:clip.racetrack1_txt}, {box:clip.name2_txt, myScore:clip.score2_txt, myTrack:clip.racetrack2_txt}, {box:clip.name3_txt, myScore:clip.score3_txt, myTrack:clip.racetrack3_txt}];
_global.root.getRanking();
clip.playAgain_btn.onRelease = function () {
_global.root.gotoAndPlay("begin");
};
clip.dogLink_btn.onRelease = function () {
getURL (_global.dogLink, "_blank");
};
clip.sendToFriend_btn.onPress = function () {
clip.emailForm_mc.gotoAndPlay("out");
_global.root.setupSendToFriend(clip.emailForm_mc);
};
clip.tandc_btn.onPress = function () {
getURL (_global.tandc, "_blank");
};
promo.exit_btn.onPress = function () {
_global.root.campaignExit("endBanner");
};
if (_global.score == 0) {
_global.score = 2000;
}
clip.score_txt.text = _global.score;
var _local3 = new Array({id:"prizeEmail", clip:clip.prize_txt, itemType:"email", original:"Your Email Address", error:false, errorClip:clip.err1_mc, tmpVal:""});
Selection.removeListener(_global.emailScript.selectionListener);
_global.currentForm = new com.teamrubber.FormClass(_local3, "Enter a valid email!", "Enter a name!", clip, clip);
_global.disabledForm = false;
clip.prize_btn.onRelease = function () {
Selection.setFocus(_global.root.noFocus_txt);
if (_global.disabledForm == false) {
var _local2 = new LoadVars();
if (_global.currentForm.validateForm() == true) {
_global.disabledForm = true;
trace("form should be fine");
_local2.email = _global.currentForm.getValueFor("prizeEmail");
_local2.track = _global.racetrack;
_global.root.enterPrizeDraw(_local2, clip);
}
}
};
}
function setupSendToFriend(clip) {
clip._parent.prize_txt.enabled = false;
Selection.removeListener(_global.currentForm.selectionListener);
setupEmailForm(clip.emailForm_mc);
clip.emailForm_mc.close_btn.onRelease = function () {
clip._parent.prize_txt.enabled = true;
this._parent._parent.gotoAndPlay("return");
Selection.removeListener(_global.emailScript.selectionListener);
Selection.addListener(_global.currentForm.selectionListener);
};
}
function setupGame() {
setupGamePlayShortcuts();
setupDefaultMenuOverSound([_global.interface_mc.campaignExit_btn]);
if (_global.firstRun == true) {
firstRunVariables();
setupBackground();
createLevels();
_global.UI = new com.teamrubber.UserInterfaceClass();
_global.UI.putLives();
}
_global.game = _global.root.gameArray[_global.lap];
_global.game.setupLap();
_global.interface_mc.campaignExit_btn.onRelease = function () {
_global.root.campaignExit("topBanner");
};
if (_global.lap == 2) {
}
_global.track_mc.track1_txt.text = _global.racetrack;
_global.track_mc.track2_txt.text = _global.racetrack;
if (_global.highScores[0].highScore == undefined) {
_global.interface_mc.best_txt.text = "unavailable";
} else {
_global.interface_mc.best_txt.text = _global.highScores[0].highScore;
}
_global.interface_mc.hoops_txt.text = (_global.passedRings + " / ") + _global.ringsOnStage.length;
manageBGSound("up");
}
function everyFrame() {
if (_global.endActionTaken == false) {
if (Key.isDown(37)) {
_global.planeObj.steer("x", -1);
} else if (Key.isDown(39)) {
_global.planeObj.steer("x", 1);
} else {
_global.planeObj.steer("x", 0);
}
if (Key.isDown(38)) {
_global.planeObj.steer("y", _global.controls.up);
} else if (Key.isDown(40)) {
_global.planeObj.steer("y", _global.controls.down);
} else {
_global.planeObj.steer("y", 0);
}
}
if (_global.endActionTaken == false) {
_global.planeObj.movePlane();
}
if (hareTrace == false) {
_global.hare.drawClip();
}
if (hareTrace == true) {
_global.record1 = _global.record1 + ((((((((((", {x:" + Math.round(_global.planeObj.x)) + ", y:") + Math.round(_global.planeObj.y)) + ", z:") + Math.round(_global.planeObj.z)) + ", rotation:") + Math.round(_global.planeObj.plane._rotation)) + ", frame:") + _global.planeObj.frame) + "}");
}
i = _global.ringCount;
while (i < (_global.root.maxVisibleRings + _global.ringCount)) {
_global.ringsOnStage[i].drawClip();
i++;
}
i = 0;
while (i < _global.selectedBonuses.length) {
_global.selectedBonuses[i].drawClip();
i++;
}
i = 0;
while (i < _global.backgroundArray.length) {
_global.backgroundArray[i].drawBackground();
i++;
}
}
function formatTime(milliseconds) {
var _local2 = Math.floor(milliseconds / 10);
var _local1 = Math.floor(_local2 / 100);
var _local3 = Math.floor(_local1 / 60);
_local2 = _local2 % 100;
_local1 = _local1 % 60;
_local3 = _local3 % 60;
if (_local2 < 10) {
_local2 = "0" + _local2;
}
if (_local1 < 10) {
_local1 = "0" + _local1;
}
if (_local3 < 10) {
_local3 = "0" + _local3;
}
return(_local1);
}
function doTimer(obj) {
var _local3 = getTimer();
var _local4 = _local3 - obj.startTime;
var _local1 = obj.myDuration - _local4;
if (_local1 < 0) {
_local1 = 0;
}
obj.timer.time_txt.text = formatTime(_local1);
}
function setupFeedbackSlide(dir) {
var _local2 = _global.feedback;
_local2.startTime = 0;
var _local3 = ((dir == "out") ? 17 : 12);
_local2.slideDuration = _local3;
_local2.startY = _local2._y;
_local2.targetY = ((dir == "out") ? (_global.root.feedbackYPos) : -100);
_local2.onEnterFrame = doMenuSlide;
}
function doMenuSlide() {
var _local2 = com.robertpenner.easing.Bounce.easeOut(this.startTime, this.startY, this.targetY - this.startY, this.slideDuration);
this.startTime++;
if (this.startTime < this.slideDuration) {
this._y = _local2;
} else {
this._y = _local2;
this.onEnterFrame = undefined;
}
}
_global.root = this;
_global.baseURL = "http://www.racedoggles.com/";
_global.tandc = "terms_and_conditions";
_global.dogLink = "http://www.anightatthedogs.co.uk";
var stageWidth = 750;
var stageXCentre = 375;
var stageHeight = 450;
var stageYCentre = 225;
_global.fl = 150;
_global.fullVisPoint = 1000;
_global.fadeInPoint = 3000;
_global.maxStrayAmount = 5000;
_global.minHareDist = 100;
_global.maxHareDist = 250;
var hareTrace = false;
var hareSpeedFraction = 3;
_global.controls = {up:-1, down:1};
_global.firstRun = true;
_global.ringCount = 0;
_global.passedRings = 0;
var maxVisibleRings = 4;
var startingLives = 3;
var maxLives = 5;
var maxHighScores = 3;
var ringBonusAmount = 500;
var dogOne = "Oscar";
var dogTwo = "Fanny";
var maxHighScores = 3;
var highScoresLoaded = false;
_global.feedbackInterval = undefined;
_global.maxLaps = 3;
_global.minBonusDistance = 200;
_global.maxBonusDistance = 0;
_global.minBonusSpacing = 350;
_global.lifePenalty = -250;
_global.allLivesBonus = 650;
var feedbackYPos = 100;
setupVirginGame();
var lap1 = new Array({x:0, y:400, z:800, corner:false}, {x:-1500, y:1000, z:1700, corner:true}, {x:-1500, y:-100, z:2600, corner:false}, {x:-3000, y:1500, z:3500, corner:false}, {x:-5500, y:800, z:4400, corner:true});
var lap2 = new Array({x:0, y:-500, z:1000, corner:false}, {x:-1500, y:-800, z:2100, corner:true}, {x:-5000, y:200, z:3700, corner:true}, {x:-6000, y:1500, z:4800, corner:false}, {x:-7500, y:800, z:5900, corner:true}, {x:-11000, y:200, z:7500, corner:true}, {x:-12000, y:0, z:9100, corner:false}, {x:-14500, y:0, z:10200, corner:true});
var lap3 = new Array({x:0, y:600, z:1000, corner:false}, {x:-1500, y:-200, z:2400, corner:true}, {x:-5000, y:300, z:4200, corner:true}, {x:-6000, y:2000, z:5300, corner:false}, {x:-7500, y:800, z:6900, corner:true}, {x:-11000, y:200, z:8300, corner:true}, {x:-12000, y:0, z:9800, corner:false}, {x:-14500, y:0, z:11700, corner:true}, {x:-17000, y:500, z:13800, corner:true}, {x:-19000, y:1200, z:15800, corner:false}, {x:-21500, y:0, z:17900, corner:true}, {x:-24000, y:-1300, z:19600, corner:false});
var gameArray = new Array();
_global.tracks = new Array("Choose a racetrack", "Hall Green", "Perry Barr", "Coral Brighton & Hove Stadium", "Coventry Stadium", "Crayford", "Doncaster Stadium", "Shawfield Stadium", "Yarmouth Stadium", "Harlow", "Henlow Stadium", "Boulevard Stadium", "Walthamstow", "Wimbledon", "Belle Vue", "Mildenhall Stadium", "Brough Park", "Nottingham", "Oxford", "Pelaw Grange", "Peterborough", "Kinsley, Nr Pontefract", "Poole Stadium", "Portsmouth", "Reading Stadium ", "Coral Romford Stadium ", "Rye House Stadium ", "Sheffield Sports Stadium ", "Sittingbourne", "Tetleys Sunderland Stadium", "Abbey Stadium, Swindon", "Monmore Green");
_global.emailScript = this;
var selectionListener = new Object();
var emailError = "please enter valid email address";
var stringError = "enter a name here!";
selectionListener.onSetFocus = function (oldFocus, newFocus) {
i = 0;
while (i < form.length) {
if (_global.emailScript.form[i].textBox._name == newFocus._name) {
trace("TAB INDEX {email} : " + _global.emailScript.form[i].textBox.tabIndex);
handleFocus(_global.emailScript.form[i]);
break;
}
i++;
}
};
var hareLap1 = new Array({arrName:"lapOne", x:275, y:350, z:189, rotation:0, frame:down}, {x:275, y:362, z:194, rotation:0, frame:down}, {x:275, y:375, z:199, rotation:0, frame:forward}, {x:275, y:384, z:204, rotation:0, frame:forward}, {x:275, y:392, z:209, rotation:0, frame:forward}, {x:275, y:399, z:214, rotation:0, frame:forward}, {x:275, y:405, z:219, rotation:0, frame:forward}, {x:275, y:410, z:224, rotation:0, frame:forward}, {x:275, y:414, z:229, rotation:0, frame:forward}, {x:275, y:417, z:234, rotation:0, frame:forward}, {x:275, y:419, z:239, rotation:0, frame:forward}, {x:275, y:420, z:244, rotation:0, frame:forward}, {x:275, y:420, z:249, rotation:0, frame:forward}, {x:275, y:420, z:254, rotation:0, frame:forward}, {x:275, y:420, z:259, rotation:0, frame:forward}, {x:275, y:420, z:264, rotation:0, frame:forward}, {x:275, y:420, z:269, rotation:0, frame:forward}, {x:275, y:420, z:274, rotation:0, frame:forward}, {x:275, y:420, z:279, rotation:0, frame:forward}, {x:275, y:420, z:284, rotation:0, frame:forward}, {x:275, y:420, z:289, rotation:0, frame:forward}, {x:275, y:420, z:294, rotation:0, frame:forward}, {x:275, y:420, z:299, rotation:0, frame:forward}, {x:275, y:420, z:304, rotation:0, frame:forward}, {x:275, y:420, z:309, rotation:0, frame:forward}, {x:275, y:420, z:314, rotation:0, frame:forward}, {x:275, y:420, z:319, rotation:0, frame:forward}, {x:275, y:420, z:324, rotation:0, frame:forward}, {x:275, y:420, z:329, rotation:0, frame:forward}, {x:275, y:420, z:334, rotation:0, frame:forward}, {x:275, y:420, z:339, rotation:0, frame:forward}, {x:275, y:420, z:344, rotation:0, frame:forward}, {x:275, y:420, z:349, rotation:0, frame:forward}, {x:275, y:420, z:354, rotation:0, frame:forward}, {x:275, y:420, z:359, rotation:0, frame:forward}, {x:275, y:420, z:364, rotation:0, frame:forward}, {x:275, y:420, z:369, rotation:0, frame:forward}, {x:275, y:420, z:374, rotation:0, frame:forward}, {x:275, y:420, z:379, rotation:0, frame:forward}, {x:275, y:420, z:384, rotation:0, frame:forward}, {x:275, y:420, z:389, rotation:0, frame:forward}, {x:275, y:420, z:394, rotation:0, frame:forward}, {x:275, y:420, z:399, rotation:0, frame:forward}, {x:275, y:420, z:404, rotation:0, frame:forward}, {x:275, y:420, z:409, rotation:0, frame:forward}, {x:275, y:420, z:414, rotation:0, frame:forward}, {x:275, y:420, z:419, rotation:0, frame:forward}, {x:275, y:420, z:424, rotation:0, frame:forward}, {x:275, y:420, z:429, rotation:0, frame:forward}, {x:275, y:420, z:434, rotation:0, frame:forward}, {x:275, y:420, z:439, rotation:0, frame:forward}, {x:275, y:420, z:444, rotation:0, frame:forward}, {x:275, y:420, z:449, rotation:0, frame:forward}, {x:275, y:420, z:454, rotation:0, frame:forward}, {x:275, y:420, z:459, rotation:0, frame:forward}, {x:275, y:420, z:464, rotation:0, frame:forward}, {x:275, y:420, z:469, rotation:0, frame:forward}, {x:275, y:420, z:474, rotation:0, frame:forward}, {x:275, y:420, z:479, rotation:0, frame:forward}, {x:275, y:420, z:484, rotation:0, frame:forward}, {x:275, y:420, z:489, rotation:0, frame:forward}, {x:275, y:420, z:494, rotation:0, frame:forward}, {x:275, y:420, z:499, rotation:0, frame:forward}, {x:275, y:420, z:504, rotation:0, frame:forward}, {x:275, y:420, z:509, rotation:0, frame:forward}, {x:275, y:420, z:514, rotation:0, frame:forward}, {x:275, y:420, z:519, rotation:0, frame:forward}, {x:275, y:420, z:524, rotation:0, frame:forward}, {x:275, y:420, z:529, rotation:0, frame:forward}, {x:275, y:420, z:534, rotation:0, frame:forward}, {x:275, y:420, z:539, rotation:0, frame:forward}, {x:275, y:420, z:544, rotation:0, frame:forward}, {x:275, y:420, z:549, rotation:0, frame:forward}, {x:275, y:420, z:554, rotation:0, frame:forward}, {x:275, y:420, z:559, rotation:0, frame:forward}, {x:275, y:420, z:564, rotation:0, frame:forward}, {x:275, y:420, z:569, rotation:0, frame:forward}, {x:275, y:420, z:574, rotation:0, frame:forward}, {x:275, y:420, z:579, rotation:0, frame:forward}, {x:275, y:420, z:584, rotation:0, frame:forward}, {x:275, y:420, z:589, rotation:0, frame:forward}, {x:275, y:420, z:594, rotation:0, frame:forward}, {x:275, y:420, z:599, rotation:0, frame:forward}, {x:275, y:420, z:604, rotation:0, frame:forward}, {x:275, y:420, z:609, rotation:0, frame:forward}, {x:275, y:420, z:614, rotation:0, frame:forward}, {x:275, y:420, z:619, rotation:0, frame:forward}, {x:275, y:420, z:624, rotation:0, frame:forward}, {x:275, y:420, z:629, rotation:0, frame:forward}, {x:275, y:420, z:634, rotation:0, frame:forward}, {x:275, y:420, z:639, rotation:0, frame:forward}, {x:275, y:420, z:644, rotation:0, frame:forward}, {x:275, y:420, z:649, rotation:0, frame:forward}, {x:275, y:420, z:654, rotation:0, frame:forward}, {x:275, y:420, z:659, rotation:0, frame:forward}, {x:275, y:420, z:664, rotation:0, frame:forward}, {x:275, y:420, z:669, rotation:0, frame:forward}, {x:275, y:420, z:674, rotation:0, frame:forward}, {x:275, y:420, z:679, rotation:0, frame:forward}, {x:275, y:420, z:684, rotation:0, frame:forward}, {x:275, y:420, z:689, rotation:0, frame:forward}, {x:275, y:420, z:694, rotation:0, frame:forward}, {x:275, y:420, z:699, rotation:-1, frame:forward}, {x:274, y:421, z:704, rotation:-2, frame:forward}, {x:272, y:425, z:709, rotation:-2, frame:forward}, {x:269, y:433, z:714, rotation:-3, frame:down}, {x:265, y:444, z:719, rotation:-4, frame:down}, {x:260, y:457, z:724, rotation:-5, frame:down}, {x:254, y:469, z:729, rotation:-5, frame:down}, {x:247, y:482, z:734, rotation:-6, frame:down}, {x:240, y:494, z:739, rotation:-6, frame:down}, {x:231, y:507, z:744, rotation:-7, frame:down}, {x:222, y:519, z:749, rotation:-8, frame:down}, {x:212, y:532, z:754, rotation:-8, frame:down}, {x:201, y:544, z:759, rotation:-9, frame:down}, {x:190, y:557, z:764, rotation:-10, frame:down}, {x:177, y:569, z:769, rotation:-10, frame:down}, {x:164, y:582, z:774, rotation:-11, frame:down}, {x:150, y:594, z:779, rotation:-11, frame:down}, {x:135, y:607, z:784, rotation:-12, frame:down}, {x:120, y:619, z:789, rotation:-13, frame:down}, {x:103, y:632, z:794, rotation:-13, frame:down}, {x:87, y:644, z:799, rotation:-13, frame:down}, {x:70, y:657, z:804, rotation:-13, frame:down}, {x:53, y:669, z:809, rotation:-13, frame:down}, {x:37, y:682, z:814, rotation:-13, frame:down}, {x:20, y:694, z:819, rotation:-13, frame:down}, {x:3, y:707, z:824, rotation:-13, frame:down}, {x:-13, y:719, z:829, rotation:-13, frame:down}, {x:-30, y:732, z:834, rotation:-13, frame:down}, {x:-47, y:744, z:839, rotation:-13, frame:down}, {x:-63, y:757, z:844, rotation:-13, frame:down}, {x:-80, y:769, z:849, rotation:-13, frame:down}, {x:-97, y:782, z:854, rotation:-13, frame:down}, {x:-113, y:794, z:859, rotation:-13, frame:down}, {x:-130, y:807, z:864, rotation:-13, frame:down}, {x:-147, y:819, z:869, rotation:-13, frame:down}, {x:-163, y:832, z:874, rotation:-13, frame:down}, {x:-180, y:844, z:879, rotation:-13, frame:down}, {x:-197, y:857, z:884, rotation:-13, frame:down}, {x:-213, y:869, z:889, rotation:-13, frame:down}, {x:-230, y:882, z:894, rotation:-13, frame:down}, {x:-247, y:894, z:899, rotation:-13, frame:down}, {x:-263, y:907, z:904, rotation:-13, frame:down}, {x:-280, y:919, z:909, rotation:-13, frame:down}, {x:-297, y:932, z:914, rotation:-13, frame:down}, {x:-313, y:944, z:919, rotation:-13, frame:down}, {x:-330, y:957, z:924, rotation:-13, frame:forward}, {x:-347, y:966, z:929, rotation:-13, frame:forward}, {x:-363, y:974, z:934, rotation:-13, frame:forward}, {x:-380, y:981, z:939, rotation:-13, frame:forward}, {x:-397, y:987, z:944, rotation:-13, frame:forward}, {x:-413, y:992, z:949, rotation:-13, frame:forward}, {x:-430, y:996, z:954, rotation:-13, frame:forward}, {x:-447, y:999, z:959, rotation:-13, frame:forward}, {x:-463, y:1001, z:964, rotation:-13, frame:forward}, {x:-480, y:1002, z:969, rotation:-13, frame:forward}, {x:-497, y:1002, z:974, rotation:-13, frame:forward}, {x:-513, y:1002, z:979, rotation:-13, frame:forward}, {x:-530, y:1003, z:984, rotation:-13, frame:forward}, {x:-547, y:1007, z:989, rotation:-13, frame:forward}, {x:-563, y:1015, z:994, rotation:-13, frame:down}, {x:-580, y:1027, z:999, rotation:-13, frame:down}, {x:-597, y:1039, z:1004, rotation:-13, frame:down}, {x:-613, y:1052, z:1009, rotation:-13, frame:forward}, {x:-630, y:1060, z:1014, rotation:-13, frame:forward}, {x:-647, y:1068, z:1019, rotation:-13, frame:forward}, {x:-663, y:1076, z:1024, rotation:-13, frame:forward}, {x:-680, y:1082, z:1029, rotation:-13, frame:forward}, {x:-697, y:1087, z:1034, rotation:-13, frame:forward}, {x:-713, y:1091, z:1039, rotation:-13, frame:forward}, {x:-730, y:1094, z:1044, rotation:-13, frame:forward}, {x:-747, y:1096, z:1049, rotation:-13, frame:forward}, {x:-763, y:1096, z:1054, rotation:-13, frame:forward}, {x:-780, y:1096, z:1059, rotation:-13, frame:forward}, {x:-797, y:1096, z:1064, rotation:-13, frame:forward}, {x:-813, y:1096, z:1069, rotation:-13, frame:forward}, {x:-830, y:1096, z:1074, rotation:-13, frame:forward}, {x:-847, y:1096, z:1079, rotation:-13, frame:forward}, {x:-863, y:1096, z:1084, rotation:-13, frame:forward}, {x:-880, y:1096, z:1089, rotation:-13, frame:forward}, {x:-897, y:1096, z:1094, rotation:-12, frame:forward}, {x:-913, y:1096, z:1099, rotation:-11, frame:forward}, {x:-927, y:1096, z:1104, rotation:-11, frame:forward}, {x:-942, y:1096, z:1109, rotation:-10, frame:forward}, {x:-955, y:1096, z:1114, rotation:-9, frame:forward}, {x:-967, y:1096, z:1119, rotation:-9, frame:forward}, {x:-978, y:1096, z:1124, rotation:-8, frame:forward}, {x:-989, y:1096, z:1129, rotation:-7, frame:forward}, {x:-998, y:1096, z:1134, rotation:-7, frame:forward}, {x:-1007, y:1096, z:1139, rotation:-6, frame:forward}, {x:-1015, y:1096, z:1144, rotation:-5, frame:forward}, {x:-1022, y:1096, z:1149, rotation:-5, frame:forward}, {x:-1028, y:1096, z:1154, rotation:-5, frame:forward}, {x:-1035, y:1096, z:1159, rotation:-6, frame:forward}, {x:-1043, y:1096, z:1164, rotation:-7, frame:forward}, {x:-1051, y:1096, z:1169, rotation:-7, frame:forward}, {x:-1061, y:1096, z:1174, rotation:-8, frame:forward}, {x:-1071, y:1096, z:1179, rotation:-8, frame:forward}, {x:-1082, y:1096, z:1184, rotation:-9, frame:forward}, {x:-1093, y:1096, z:1189, rotation:-10, frame:forward}, {x:-1106, y:1096, z:1194, rotation:-10, frame:forward}, {x:-1119, y:1096, z:1199, rotation:-11, frame:forward}, {x:-1133, y:1096, z:1204, rotation:-10, frame:forward}, {x:-1146, y:1096, z:1209, rotation:-9, frame:forward}, {x:-1159, y:1096, z:1214, rotation:-9, frame:forward}, {x:-1170, y:1096, z:1219, rotation:-8, frame:forward}, {x:-1181, y:1096, z:1224, rotation:-7, frame:forward}, {x:-1191, y:1096, z:1229, rotation:-7, frame:forward}, {x:-1199, y:1096, z:1234, rotation:-6, frame:forward}, {x:-1207, y:1096, z:1239, rotation:-7, frame:forward}, {x:-1216, y:1096, z:1244, rotation:-6, frame:forward}, {x:-1224, y:1096, z:1249, rotation:-5, frame:forward}, {x:-1231, y:1096, z:1254, rotation:-5, frame:forward}, {x:-1237, y:1096, z:1259, rotation:-4, frame:forward}, {x:-1242, y:1096, z:1264, rotation:-3, frame:forward}, {x:-1246, y:1096, z:1269, rotation:-2, frame:forward}, {x:-1249, y:1096, z:1274, rotation:-1, frame:forward}, {x:-1251, y:1096, z:1279, rotation:-1, frame:forward}, {x:-1252, y:1096, z:1284, rotation:0, frame:forward}, {x:-1252, y:1096, z:1289, rotation:0, frame:forward}, {x:-1252, y:1096, z:1294, rotation:0, frame:forward}, {x:-1252, y:1096, z:1299, rotation:0, frame:forward}, {x:-1252, y:1096, z:1304, rotation:0, frame:forward}, {x:-1252, y:1096, z:1309, rotation:0, frame:forward}, {x:-1252, y:1096, z:1314, rotation:0, frame:forward}, {x:-1252, y:1096, z:1319, rotation:0, frame:forward}, {x:-1252, y:1096, z:1324, rotation:0, frame:forward}, {x:-1252, y:1096, z:1329, rotation:0, frame:forward}, {x:-1252, y:1096, z:1334, rotation:0, frame:forward}, {x:-1252, y:1096, z:1339, rotation:0, frame:forward}, {x:-1252, y:1096, z:1344, rotation:0, frame:forward}, {x:-1252, y:1096, z:1349, rotation:0, frame:forward}, {x:-1252, y:1096, z:1354, rotation:0, frame:forward}, {x:-1252, y:1096, z:1359, rotation:0, frame:forward}, {x:-1252, y:1096, z:1364, rotation:0, frame:forward}, {x:-1252, y:1096, z:1369, rotation:0, frame:forward}, {x:-1252, y:1096, z:1374, rotation:0, frame:forward}, {x:-1252, y:1096, z:1379, rotation:0, frame:forward}, {x:-1252, y:1096, z:1384, rotation:0, frame:forward}, {x:-1252, y:1096, z:1389, rotation:0, frame:forward}, {x:-1252, y:1096, z:1394, rotation:0, frame:forward}, {x:-1252, y:1096, z:1399, rotation:0, frame:forward}, {x:-1252, y:1096, z:1404, rotation:0, frame:forward}, {x:-1252, y:1096, z:1409, rotation:0, frame:forward}, {x:-1252, y:1096, z:1414, rotation:0, frame:forward}, {x:-1252, y:1096, z:1419, rotation:0, frame:forward}, {x:-1252, y:1096, z:1424, rotation:0, frame:forward}, {x:-1252, y:1096, z:1429, rotation:0, frame:forward}, {x:-1252, y:1096, z:1434, rotation:0, frame:forward}, {x:-1252, y:1096, z:1439, rotation:0, frame:forward}, {x:-1252, y:1096, z:1444, rotation:0, frame:forward}, {x:-1252, y:1096, z:1449, rotation:0, frame:forward}, {x:-1252, y:1096, z:1454, rotation:0, frame:forward}, {x:-1252, y:1096, z:1459, rotation:0, frame:forward}, {x:-1252, y:1096, z:1464, rotation:0, frame:forward}, {x:-1252, y:1096, z:1469, rotation:0, frame:forward}, {x:-1252, y:1096, z:1474, rotation:0, frame:forward}, {x:-1252, y:1096, z:1479, rotation:0, frame:forward}, {x:-1252, y:1096, z:1484, rotation:0, frame:forward}, {x:-1252, y:1096, z:1489, rotation:0, frame:forward}, {x:-1252, y:1096, z:1494, rotation:0, frame:forward}, {x:-1252, y:1096, z:1499, rotation:0, frame:forward}, {x:-1252, y:1096, z:1504, rotation:0, frame:forward}, {x:-1252, y:1096, z:1509, rotation:0, frame:forward}, {x:-1252, y:1096, z:1514, rotation:0, frame:forward}, {x:-1252, y:1096, z:1519, rotation:0, frame:forward}, {x:-1252, y:1096, z:1524, rotation:0, frame:forward}, {x:-1252, y:1096, z:1529, rotation:0, frame:forward}, {x:-1252, y:1096, z:1534, rotation:0, frame:forward}, {x:-1252, y:1096, z:1539, rotation:0, frame:forward}, {x:-1252, y:1096, z:1544, rotation:0, frame:forward}, {x:-1252, y:1096, z:1549, rotation:0, frame:forward}, {x:-1252, y:1096, z:1554, rotation:0, frame:forward}, {x:-1252, y:1096, z:1559, rotation:0, frame:forward}, {x:-1252, y:1096, z:1564, rotation:0, frame:forward}, {x:-1252, y:1096, z:1569, rotation:0, frame:forward}, {x:-1252, y:1096, z:1574, rotation:0, frame:forward}, {x:-1252, y:1096, z:1579, rotation:0, frame:forward}, {x:-1252, y:1096, z:1584, rotation:0, frame:forward}, {x:-1252, y:1096, z:1589, rotation:0, frame:forward}, {x:-1252, y:1096, z:1594, rotation:0, frame:forward}, {x:-1252, y:1096, z:1599, rotation:0, frame:forward}, {x:-1252, y:1096, z:1604, rotation:0, frame:forward}, {x:-1252, y:1096, z:1609, rotation:0, frame:forward}, {x:-1252, y:1096, z:1614, rotation:0, frame:forward}, {x:-1252, y:1096, z:1619, rotation:0, frame:forward}, {x:-1252, y:1096, z:1624, rotation:0, frame:forward}, {x:-1252, y:1096, z:1629, rotation:0, frame:forward}, {x:-1252, y:1096, z:1634, rotation:0, frame:forward}, {x:-1252, y:1096, z:1639, rotation:0, frame:forward}, {x:-1252, y:1096, z:1644, rotation:0, frame:forward}, {x:-1252, y:1096, z:1649, rotation:0, frame:forward}, {x:-1252, y:1096, z:1654, rotation:0, frame:forward}, {x:-1252, y:1096, z:1659, rotation:0, frame:forward}, {x:-1252, y:1096, z:1664, rotation:0, frame:forward}, {x:-1252, y:1096, z:1669, rotation:0, frame:forward}, {x:-1252, y:1096, z:1674, rotation:0, frame:forward}, {x:-1252, y:1096, z:1679, rotation:0, frame:forward}, {x:-1252, y:1096, z:1684, rotation:0, frame:forward}, {x:-1252, y:1096, z:1689, rotation:0, frame:forward}, {x:-1252, y:1096, z:1694, rotation:0, frame:forward}, {x:-1252, y:1096, z:1699, rotation:0, frame:forward}, {x:-1252, y:1095, z:1704, rotation:0, frame:forward}, {x:-1252, y:1091, z:1709, rotation:0, frame:forward}, {x:-1252, y:1083, z:1714, rotation:0, frame:up}, {x:-1252, y:1072, z:1719, rotation:0, frame:up}, {x:-1252, y:1059, z:1724, rotation:0, frame:up}, {x:-1252, y:1047, z:1729, rotation:0, frame:up}, {x:-1252, y:1034, z:1734, rotation:0, frame:up}, {x:-1252, y:1022, z:1739, rotation:0, frame:up}, {x:-1252, y:1009, z:1744, rotation:0, frame:up}, {x:-1252, y:997, z:1749, rotation:0, frame:up}, {x:-1252, y:984, z:1754, rotation:0, frame:up}, {x:-1252, y:972, z:1759, rotation:0, frame:up}, {x:-1252, y:959, z:1764, rotation:0, frame:up}, {x:-1252, y:947, z:1769, rotation:0, frame:up}, {x:-1252, y:934, z:1774, rotation:0, frame:up}, {x:-1252, y:922, z:1779, rotation:0, frame:up}, {x:-1252, y:909, z:1784, rotation:0, frame:up}, {x:-1252, y:897, z:1789, rotation:0, frame:up}, {x:-1252, y:884, z:1794, rotation:0, frame:up}, {x:-1252, y:872, z:1799, rotation:0, frame:up}, {x:-1252, y:859, z:1804, rotation:0, frame:up}, {x:-1252, y:847, z:1809, rotation:0, frame:up}, {x:-1252, y:834, z:1814, rotation:0, frame:up}, {x:-1252, y:822, z:1819, rotation:0, frame:up}, {x:-1252, y:809, z:1824, rotation:0, frame:up}, {x:-1252, y:797, z:1829, rotation:0, frame:up}, {x:-1252, y:784, z:1834, rotation:0, frame:up}, {x:-1252, y:772, z:1839, rotation:0, frame:up}, {x:-1252, y:759, z:1844, rotation:0, frame:up}, {x:-1252, y:747, z:1849, rotation:0, frame:up}, {x:-1252, y:734, z:1854, rotation:0, frame:up}, {x:-1252, y:722, z:1859, rotation:0, frame:up}, {x:-1252, y:709, z:1864, rotation:0, frame:up}, {x:-1252, y:697, z:1869, rotation:0, frame:up}, {x:-1252, y:684, z:1874, rotation:0, frame:up}, {x:-1252, y:672, z:1879, rotation:0, frame:up}, {x:-1252, y:659, z:1884, rotation:0, frame:up}, {x:-1252, y:647, z:1889, rotation:0, frame:up}, {x:-1252, y:634, z:1894, rotation:0, frame:up}, {x:-1252, y:622, z:1899, rotation:0, frame:up}, {x:-1252, y:609, z:1904, rotation:0, frame:up}, {x:-1252, y:597, z:1909, rotation:0, frame:up}, {x:-1252, y:584, z:1914, rotation:0, frame:up}, {x:-1252, y:572, z:1919, rotation:0, frame:up}, {x:-1252, y:559, z:1924, rotation:0, frame:up}, {x:-1252, y:547, z:1929, rotation:0, frame:up}, {x:-1252, y:534, z:1934, rotation:0, frame:up}, {x:-1252, y:522, z:1939, rotation:0, frame:up}, {x:-1252, y:509, z:1944, rotation:0, frame:up}, {x:-1252, y:497, z:1949, rotation:0, frame:up}, {x:-1252, y:484, z:1954, rotation:0, frame:up}, {x:-1252, y:472, z:1959, rotation:0, frame:up}, {x:-1252, y:459, z:1964, rotation:0, frame:up}, {x:-1252, y:447, z:1969, rotation:0, frame:up}, {x:-1252, y:434, z:1974, rotation:0, frame:up}, {x:-1252, y:422, z:1979, rotation:0, frame:up}, {x:-1252, y:409, z:1984, rotation:0, frame:up}, {x:-1252, y:397, z:1989, rotation:0, frame:up}, {x:-1252, y:384, z:1994, rotation:0, frame:up}, {x:-1252, y:372, z:1999, rotation:0, frame:up}, {x:-1252, y:359, z:2004, rotation:0, frame:up}, {x:-1252, y:347, z:2009, rotation:0, frame:up}, {x:-1252, y:334, z:2014, rotation:0, frame:up}, {x:-1252, y:322, z:2019, rotation:0, frame:up}, {x:-1252, y:309, z:2024, rotation:0, frame:up}, {x:-1252, y:297, z:2029, rotation:0, frame:up}, {x:-1252, y:284, z:2034, rotation:0, frame:up}, {x:-1252, y:272, z:2039, rotation:0, frame:up}, {x:-1252, y:259, z:2044, rotation:0, frame:up}, {x:-1252, y:247, z:2049, rotation:0, frame:up}, {x:-1252, y:234, z:2054, rotation:0, frame:up}, {x:-1252, y:222, z:2059, rotation:0, frame:up}, {x:-1252, y:209, z:2064, rotation:0, frame:up}, {x:-1252, y:197, z:2069, rotation:0, frame:up}, {x:-1252, y:184, z:2074, rotation:0, frame:up}, {x:-1252, y:172, z:2079, rotation:0, frame:up}, {x:-1252, y:159, z:2084, rotation:0, frame:up}, {x:-1252, y:147, z:2089, rotation:0, frame:up}, {x:-1252, y:134, z:2094, rotation:0, frame:up}, {x:-1252, y:122, z:2099, rotation:0, frame:up}, {x:-1252, y:109, z:2104, rotation:0, frame:forward}, {x:-1252, y:100, z:2109, rotation:0, frame:forward}, {x:-1252, y:92, z:2114, rotation:0, frame:forward}, {x:-1252, y:85, z:2119, rotation:0, frame:forward}, {x:-1252, y:79, z:2124, rotation:0, frame:forward}, {x:-1252, y:74, z:2129, rotation:0, frame:forward}, {x:-1252, y:70, z:2134, rotation:0, frame:forward}, {x:-1252, y:65, z:2139, rotation:0, frame:forward}, {x:-1252, y:56, z:2144, rotation:0, frame:forward}, {x:-1252, y:51, z:2149, rotation:0, frame:forward}, {x:-1252, y:48, z:2154, rotation:0, frame:forward}, {x:-1252, y:45, z:2159, rotation:0, frame:forward}, {x:-1252, y:43, z:2164, rotation:0, frame:forward}, {x:-1252, y:43, z:2169, rotation:0, frame:forward}, {x:-1252, y:43, z:2174, rotation:0, frame:forward}, {x:-1252, y:43, z:2179, rotation:0, frame:forward}, {x:-1252, y:43, z:2184, rotation:0, frame:forward}, {x:-1252, y:43, z:2189, rotation:0, frame:forward}, {x:-1252, y:44, z:2194, rotation:0, frame:forward}, {x:-1252, y:43, z:2199, rotation:0, frame:forward}, {x:-1252, y:44, z:2204, rotation:0, frame:forward}, {x:-1252, y:43, z:2209, rotation:0, frame:forward}, {x:-1252, y:44, z:2214, rotation:0, frame:forward}, {x:-1252, y:43, z:2219, rotation:0, frame:forward}, {x:-1252, y:39, z:2224, rotation:0, frame:forward}, {x:-1252, y:32, z:2229, rotation:0, frame:forward}, {x:-1252, y:28, z:2234, rotation:0, frame:forward}, {x:-1252, y:26, z:2239, rotation:0, frame:forward}, {x:-1252, y:24, z:2244, rotation:0, frame:forward}, {x:-1252, y:24, z:2249, rotation:0, frame:forward}, {x:-1252, y:24, z:2254, rotation:0, frame:forward}, {x:-1252, y:24, z:2259, rotation:0, frame:forward}, {x:-1252, y:24, z:2264, rotation:0, frame:forward}, {x:-1252, y:24, z:2269, rotation:0, frame:forward}, {x:-1252, y:23, z:2274, rotation:0, frame:forward}, {x:-1252, y:19, z:2279, rotation:0, frame:forward}, {x:-1252, y:18, z:2284, rotation:0, frame:forward}, {x:-1252, y:18, z:2289, rotation:0, frame:forward}, {x:-1252, y:18, z:2294, rotation:0, frame:forward}, {x:-1252, y:18, z:2299, rotation:0, frame:forward}, {x:-1252, y:18, z:2304, rotation:0, frame:forward}, {x:-1252, y:18, z:2309, rotation:0, frame:forward}, {x:-1252, y:18, z:2314, rotation:0, frame:forward}, {x:-1252, y:18, z:2319, rotation:0, frame:forward}, {x:-1252, y:18, z:2324, rotation:0, frame:forward}, {x:-1252, y:18, z:2329, rotation:0, frame:forward}, {x:-1252, y:18, z:2334, rotation:0, frame:forward}, {x:-1252, y:18, z:2339, rotation:0, frame:forward}, {x:-1252, y:18, z:2344, rotation:0, frame:forward}, {x:-1252, y:18, z:2349, rotation:0, frame:forward}, {x:-1252, y:18, z:2354, rotation:0, frame:forward}, {x:-1252, y:18, z:2359, rotation:0, frame:forward}, {x:-1252, y:18, z:2364, rotation:0, frame:forward}, {x:-1252, y:18, z:2369, rotation:0, frame:forward}, {x:-1252, y:18, z:2374, rotation:0, frame:forward}, {x:-1252, y:18, z:2379, rotation:0, frame:forward}, {x:-1252, y:18, z:2384, rotation:0, frame:forward}, {x:-1252, y:18, z:2389, rotation:0, frame:forward}, {x:-1252, y:18, z:2394, rotation:0, frame:forward}, {x:-1252, y:18, z:2399, rotation:0, frame:forward}, {x:-1252, y:18, z:2404, rotation:0, frame:forward}, {x:-1252, y:18, z:2409, rotation:0, frame:forward}, {x:-1252, y:18, z:2414, rotation:0, frame:forward}, {x:-1252, y:18, z:2419, rotation:0, frame:forward}, {x:-1252, y:18, z:2424, rotation:0, frame:forward}, {x:-1252, y:18, z:2429, rotation:0, frame:forward}, {x:-1252, y:18, z:2434, rotation:0, frame:forward}, {x:-1252, y:18, z:2439, rotation:0, frame:forward}, {x:-1252, y:18, z:2444, rotation:0, frame:forward}, {x:-1252, y:18, z:2449, rotation:0, frame:forward}, {x:-1252, y:18, z:2454, rotation:0, frame:forward}, {x:-1252, y:18, z:2459, rotation:0, frame:forward}, {x:-1252, y:18, z:2464, rotation:0, frame:forward}, {x:-1252, y:18, z:2469, rotation:0, frame:forward}, {x:-1252, y:18, z:2474, rotation:0, frame:forward}, {x:-1252, y:18, z:2479, rotation:0, frame:forward}, {x:-1252, y:18, z:2484, rotation:0, frame:forward}, {x:-1252, y:18, z:2489, rotation:0, frame:forward}, {x:-1252, y:18, z:2494, rotation:0, frame:forward}, {x:-1252, y:18, z:2499, rotation:0, frame:forward}, {x:-1252, y:18, z:2504, rotation:0, frame:forward}, {x:-1252, y:18, z:2509, rotation:0, frame:forward}, {x:-1252, y:18, z:2514, rotation:0, frame:forward}, {x:-1252, y:18, z:2519, rotation:0, frame:forward}, {x:-1252, y:18, z:2524, rotation:0, frame:forward}, {x:-1252, y:18, z:2529, rotation:0, frame:forward}, {x:-1252, y:18, z:2534, rotation:0, frame:forward}, {x:-1252, y:18, z:2539, rotation:0, frame:forward}, {x:-1252, y:18, z:2544, rotation:0, frame:forward}, {x:-1252, y:18, z:2549, rotation:0, frame:forward}, {x:-1252, y:18, z:2554, rotation:-1, frame:forward}, {x:-1253, y:18, z:2559, rotation:-2, frame:forward}, {x:-1255, y:18, z:2564, rotation:-2, frame:forward}, {x:-1258, y:18, z:2569, rotation:-3, frame:forward}, {x:-1262, y:19, z:2574, rotation:-4, frame:forward}, {x:-1267, y:23, z:2579, rotation:-5, frame:forward}, {x:-1273, y:31, z:2584, rotation:-5, frame:down}, {x:-1280, y:43, z:2589, rotation:-6, frame:down}, {x:-1288, y:55, z:2594, rotation:-6, frame:down}, {x:-1296, y:68, z:2599, rotation:-7, frame:down}, {x:-1305, y:80, z:2604, rotation:-8, frame:down}, {x:-1315, y:93, z:2609, rotation:-8, frame:down}, {x:-1326, y:105, z:2614, rotation:-9, frame:down}, {x:-1338, y:118, z:2619, rotation:-10, frame:down}, {x:-1350, y:130, z:2624, rotation:-10, frame:down}, {x:-1363, y:143, z:2629, rotation:-11, frame:down}, {x:-1377, y:155, z:2634, rotation:-11, frame:down}, {x:-1392, y:168, z:2639, rotation:-12, frame:down}, {x:-1408, y:180, z:2644, rotation:-13, frame:down}, {x:-1424, y:193, z:2649, rotation:-13, frame:down}, {x:-1441, y:205, z:2654, rotation:-13, frame:down}, {x:-1457, y:218, z:2659, rotation:-13, frame:down}, {x:-1474, y:230, z:2664, rotation:-13, frame:down}, {x:-1491, y:243, z:2669, rotation:-13, frame:down}, {x:-1507, y:255, z:2674, rotation:-13, frame:down}, {x:-1524, y:268, z:2679, rotation:-13, frame:down}, {x:-1541, y:280, z:2684, rotation:-13, frame:down}, {x:-1557, y:293, z:2689, rotation:-13, frame:down}, {x:-1574, y:305, z:2694, rotation:-13, frame:down}, {x:-1591, y:318, z:2699, rotation:-13, frame:down}, {x:-1607, y:330, z:2704, rotation:-13, frame:down}, {x:-1624, y:343, z:2709, rotation:-13, frame:down}, {x:-1641, y:355, z:2714, rotation:-13, frame:down}, {x:-1657, y:368, z:2719, rotation:-13, frame:down}, {x:-1674, y:380, z:2724, rotation:-13, frame:down}, {x:-1691, y:393, z:2729, rotation:-13, frame:down}, {x:-1707, y:405, z:2734, rotation:-13, frame:down}, {x:-1724, y:418, z:2739, rotation:-13, frame:down}, {x:-1741, y:430, z:2744, rotation:-13, frame:down}, {x:-1757, y:443, z:2749, rotation:-13, frame:down}, {x:-1774, y:455, z:2754, rotation:-13, frame:down}, {x:-1791, y:468, z:2759, rotation:-13, frame:down}, {x:-1807, y:480, z:2764, rotation:-13, frame:down}, {x:-1824, y:493, z:2769, rotation:-13, frame:down}, {x:-1841, y:505, z:2774, rotation:-13, frame:down}, {x:-1857, y:518, z:2779, rotation:-13, frame:down}, {x:-1874, y:530, z:2784, rotation:-13, frame:down}, {x:-1891, y:543, z:2789, rotation:-13, frame:down}, {x:-1907, y:555, z:2794, rotation:-13, frame:down}, {x:-1924, y:568, z:2799, rotation:-13, frame:down}, {x:-1941, y:580, z:2804, rotation:-13, frame:down}, {x:-1957, y:593, z:2809, rotation:-13, frame:down}, {x:-1974, y:605, z:2814, rotation:-13, frame:down}, {x:-1991, y:618, z:2819, rotation:-13, frame:down}, {x:-2007, y:630, z:2824, rotation:-13, frame:down}, {x:-2024, y:643, z:2829, rotation:-13, frame:down}, {x:-2041, y:655, z:2834, rotation:-13, frame:down}, {x:-2057, y:668, z:2839, rotation:-13, frame:down}, {x:-2074, y:680, z:2844, rotation:-13, frame:down}, {x:-2091, y:693, z:2849, rotation:-13, frame:down}, {x:-2107, y:705, z:2854, rotation:-13, frame:down}, {x:-2124, y:718, z:2859, rotation:-13, frame:down}, {x:-2141, y:730, z:2864, rotation:-13, frame:down}, {x:-2157, y:743, z:2869, rotation:-13, frame:down}, {x:-2174, y:755, z:2874, rotation:-13, frame:down}, {x:-2191, y:768, z:2879, rotation:-13, frame:down}, {x:-2207, y:780, z:2884, rotation:-13, frame:down}, {x:-2224, y:793, z:2889, rotation:-13, frame:down}, {x:-2241, y:805, z:2894, rotation:-13, frame:down}, {x:-2257, y:818, z:2899, rotation:-13, frame:down}, {x:-2274, y:830, z:2904, rotation:-13, frame:down}, {x:-2291, y:843, z:2909, rotation:-13, frame:down}, {x:-2307, y:855, z:2914, rotation:-13, frame:down}, {x:-2324, y:868, z:2919, rotation:-13, frame:down}, {x:-2341, y:880, z:2924, rotation:-13, frame:down}, {x:-2357, y:893, z:2929, rotation:-13, frame:down}, {x:-2374, y:905, z:2934, rotation:-13, frame:down}, {x:-2391, y:918, z:2939, rotation:-13, frame:down}, {x:-2407, y:930, z:2944, rotation:-13, frame:down}, {x:-2424, y:943, z:2949, rotation:-13, frame:down}, {x:-2441, y:955, z:2954, rotation:-13, frame:down}, {x:-2457, y:968, z:2959, rotation:-13, frame:down}, {x:-2474, y:980, z:2964, rotation:-13, frame:down}, {x:-2491, y:993, z:2969, rotation:-12, frame:down}, {x:-2506, y:1005, z:2974, rotation:-11, frame:down}, {x:-2521, y:1018, z:2979, rotation:-11, frame:down}, {x:-2535, y:1030, z:2984, rotation:-10, frame:down}, {x:-2549, y:1043, z:2989, rotation:-11, frame:down}, {x:-2562, y:1055, z:2994, rotation:-11, frame:down}, {x:-2577, y:1068, z:2999, rotation:-11, frame:down}, {x:-2591, y:1080, z:3004, rotation:-10, frame:down}, {x:-2604, y:1093, z:3009, rotation:-9, frame:down}, {x:-2616, y:1105, z:3014, rotation:-9, frame:down}, {x:-2627, y:1118, z:3019, rotation:-8, frame:down}, {x:-2638, y:1130, z:3024, rotation:-7, frame:down}, {x:-2647, y:1143, z:3029, rotation:-7, frame:down}, {x:-2656, y:1155, z:3034, rotation:-6, frame:down}, {x:-2663, y:1168, z:3039, rotation:-5, frame:down}, {x:-2670, y:1180, z:3044, rotation:-5, frame:down}, {x:-2676, y:1193, z:3049, rotation:-4, frame:down}, {x:-2681, y:1205, z:3054, rotation:-3, frame:down}, {x:-2685, y:1218, z:3059, rotation:-2, frame:down}, {x:-2688, y:1230, z:3064, rotation:-1, frame:down}, {x:-2690, y:1243, z:3069, rotation:-1, frame:down}, {x:-2691, y:1255, z:3074, rotation:0, frame:down}, {x:-2691, y:1268, z:3079, rotation:0, frame:down}, {x:-2691, y:1280, z:3084, rotation:0, frame:down}, {x:-2691, y:1293, z:3089, rotation:0, frame:down}, {x:-2691, y:1305, z:3094, rotation:0, frame:down}, {x:-2691, y:1318, z:3099, rotation:0, frame:down}, {x:-2691, y:1330, z:3104, rotation:0, frame:down}, {x:-2691, y:1343, z:3109, rotation:0, frame:down}, {x:-2691, y:1355, z:3114, rotation:0, frame:down}, {x:-2691, y:1368, z:3119, rotation:0, frame:down}, {x:-2691, y:1380, z:3124, rotation:0, frame:down}, {x:-2691, y:1393, z:3129, rotation:0, frame:down}, {x:-2691, y:1405, z:3134, rotation:0, frame:down}, {x:-2691, y:1418, z:3139, rotation:0, frame:down}, {x:-2691, y:1430, z:3144, rotation:0, frame:down}, {x:-2691, y:1443, z:3149, rotation:0, frame:down}, {x:-2691, y:1455, z:3154, rotation:0, frame:down}, {x:-2691, y:1468, z:3159, rotation:0, frame:down}, {x:-2691, y:1480, z:3164, rotation:0, frame:forward}, {x:-2691, y:1489, z:3169, rotation:0, frame:forward}, {x:-2691, y:1497, z:3174, rotation:0, frame:forward}, {x:-2691, y:1504, z:3179, rotation:0, frame:forward}, {x:-2691, y:1510, z:3184, rotation:0, frame:forward}, {x:-2691, y:1516, z:3189, rotation:0, frame:forward}, {x:-2691, y:1520, z:3194, rotation:0, frame:forward}, {x:-2691, y:1522, z:3199, rotation:0, frame:forward}, {x:-2691, y:1526, z:3204, rotation:0, frame:forward}, {x:-2691, y:1534, z:3209, rotation:0, frame:down}, {x:-2691, y:1545, z:3214, rotation:0, frame:forward}, {x:-2691, y:1552, z:3219, rotation:0, frame:forward}, {x:-2691, y:1558, z:3224, rotation:0, frame:forward}, {x:-2691, y:1563, z:3229, rotation:0, frame:forward}, {x:-2691, y:1567, z:3234, rotation:0, frame:forward}, {x:-2691, y:1570, z:3239, rotation:0, frame:forward}, {x:-2691, y:1572, z:3244, rotation:0, frame:forward}, {x:-2691, y:1572, z:3249, rotation:0, frame:forward}, {x:-2691, y:1572, z:3254, rotation:0, frame:forward}, {x:-2691, y:1572, z:3259, rotation:0, frame:forward}, {x:-2691, y:1572, z:3264, rotation:0, frame:forward}, {x:-2691, y:1573, z:3269, rotation:0, frame:forward}, {x:-2691, y:1578, z:3274, rotation:0, frame:forward}, {x:-2691, y:1586, z:3279, rotation:0, frame:forward}, {x:-2691, y:1590, z:3284, rotation:0, frame:forward}, {x:-2691, y:1594, z:3289, rotation:0, frame:forward}, {x:-2691, y:1596, z:3294, rotation:0, frame:forward}, {x:-2691, y:1599, z:3299, rotation:0, frame:forward}, {x:-2691, y:1606, z:3304, rotation:0, frame:forward}, {x:-2691, y:1608, z:3309, rotation:0, frame:forward}, {x:-2691, y:1610, z:3314, rotation:0, frame:forward}, {x:-2691, y:1611, z:3319, rotation:0, frame:forward}, {x:-2691, y:1611, z:3324, rotation:0, frame:forward}, {x:-2691, y:1611, z:3329, rotation:0, frame:forward}, {x:-2691, y:1611, z:3334, rotation:0, frame:forward}, {x:-2691, y:1611, z:3339, rotation:0, frame:forward}, {x:-2691, y:1611, z:3344, rotation:0, frame:forward}, {x:-2691, y:1611, z:3349, rotation:0, frame:forward}, {x:-2691, y:1611, z:3354, rotation:0, frame:forward}, {x:-2691, y:1611, z:3359, rotation:0, frame:forward}, {x:-2691, y:1611, z:3364, rotation:0, frame:forward}, {x:-2691, y:1611, z:3369, rotation:0, frame:forward}, {x:-2691, y:1611, z:3374, rotation:0, frame:forward}, {x:-2691, y:1611, z:3379, rotation:0, frame:forward}, {x:-2691, y:1611, z:3384, rotation:0, frame:forward}, {x:-2691, y:1611, z:3389, rotation:0, frame:forward}, {x:-2691, y:1611, z:3394, rotation:0, frame:forward}, {x:-2691, y:1611, z:3399, rotation:-1, frame:forward}, {x:-2692, y:1611, z:3404, rotation:-2, frame:forward}, {x:-2694, y:1611, z:3409, rotation:-2, frame:forward}, {x:-2697, y:1611, z:3414, rotation:-1, frame:forward}, {x:-2698, y:1611, z:3419, rotation:-1, frame:forward}, {x:-2699, y:1611, z:3424, rotation:-1, frame:forward}, {x:-2701, y:1611, z:3429, rotation:-2, frame:forward}, {x:-2704, y:1611, z:3434, rotation:-3, frame:forward}, {x:-2708, y:1611, z:3439, rotation:-4, frame:forward}, {x:-2712, y:1611, z:3444, rotation:-4, frame:forward}, {x:-2718, y:1611, z:3449, rotation:-5, frame:forward}, {x:-2725, y:1611, z:3454, rotation:-6, frame:forward}, {x:-2733, y:1611, z:3459, rotation:-6, frame:forward}, {x:-2741, y:1611, z:3464, rotation:-7, frame:forward}, {x:-2750, y:1611, z:3469, rotation:-8, frame:forward}, {x:-2760, y:1611, z:3474, rotation:-8, frame:forward}, {x:-2771, y:1611, z:3479, rotation:-9, frame:forward}, {x:-2783, y:1611, z:3484, rotation:-10, frame:forward}, {x:-2795, y:1611, z:3489, rotation:-10, frame:forward}, {x:-2808, y:1611, z:3494, rotation:-11, frame:forward}, {x:-2822, y:1611, z:3499, rotation:-11, frame:forward}, {x:-2837, y:1611, z:3504, rotation:-12, frame:forward}, {x:-2853, y:1611, z:3509, rotation:-13, frame:forward}, {x:-2869, y:1611, z:3514, rotation:-13, frame:forward}, {x:-2886, y:1611, z:3519, rotation:-13, frame:forward}, {x:-2902, y:1611, z:3524, rotation:-13, frame:forward}, {x:-2919, y:1611, z:3529, rotation:-13, frame:forward}, {x:-2936, y:1611, z:3534, rotation:-13, frame:forward}, {x:-2952, y:1611, z:3539, rotation:-13, frame:forward}, {x:-2969, y:1611, z:3544, rotation:-13, frame:forward}, {x:-2986, y:1611, z:3549, rotation:-13, frame:forward}, {x:-3002, y:1611, z:3554, rotation:-13, frame:forward}, {x:-3019, y:1611, z:3559, rotation:-13, frame:forward}, {x:-3036, y:1611, z:3564, rotation:-13, frame:forward}, {x:-3052, y:1611, z:3569, rotation:-13, frame:forward}, {x:-3069, y:1611, z:3574, rotation:-13, frame:forward}, {x:-3086, y:1611, z:3579, rotation:-13, frame:forward}, {x:-3102, y:1610, z:3584, rotation:-13, frame:forward}, {x:-3119, y:1605, z:3589, rotation:-13, frame:forward}, {x:-3136, y:1597, z:3594, rotation:-13, frame:up}, {x:-3152, y:1586, z:3599, rotation:-13, frame:up}, {x:-3169, y:1573, z:3604, rotation:-13, frame:up}, {x:-3186, y:1561, z:3609, rotation:-13, frame:up}, {x:-3202, y:1548, z:3614, rotation:-13, frame:up}, {x:-3219, y:1536, z:3619, rotation:-13, frame:up}, {x:-3236, y:1523, z:3624, rotation:-13, frame:up}, {x:-3252, y:1511, z:3629, rotation:-13, frame:up}, {x:-3269, y:1498, z:3634, rotation:-13, frame:up}, {x:-3286, y:1486, z:3639, rotation:-13, frame:up}, {x:-3302, y:1473, z:3644, rotation:-13, frame:up}, {x:-3319, y:1461, z:3649, rotation:-13, frame:up}, {x:-3336, y:1448, z:3654, rotation:-13, frame:up}, {x:-3352, y:1436, z:3659, rotation:-13, frame:up}, {x:-3369, y:1423, z:3664, rotation:-13, frame:up}, {x:-3386, y:1411, z:3669, rotation:-13, frame:up}, {x:-3402, y:1398, z:3674, rotation:-13, frame:up}, {x:-3419, y:1386, z:3679, rotation:-13, frame:up}, {x:-3436, y:1373, z:3684, rotation:-13, frame:up}, {x:-3452, y:1361, z:3689, rotation:-13, frame:up}, {x:-3469, y:1348, z:3694, rotation:-13, frame:up}, {x:-3486, y:1336, z:3699, rotation:-13, frame:up}, {x:-3502, y:1323, z:3704, rotation:-13, frame:up}, {x:-3519, y:1311, z:3709, rotation:-13, frame:up}, {x:-3536, y:1298, z:3714, rotation:-13, frame:up}, {x:-3552, y:1286, z:3719, rotation:-13, frame:up}, {x:-3569, y:1273, z:3724, rotation:-13, frame:up}, {x:-3586, y:1261, z:3729, rotation:-13, frame:up}, {x:-3602, y:1248, z:3734, rotation:-13, frame:up}, {x:-3619, y:1236, z:3739, rotation:-13, frame:up}, {x:-3636, y:1223, z:3744, rotation:-13, frame:up}, {x:-3652, y:1211, z:3749, rotation:-13, frame:up}, {x:-3669, y:1198, z:3754, rotation:-13, frame:up}, {x:-3686, y:1186, z:3759, rotation:-13, frame:up}, {x:-3702, y:1173, z:3764, rotation:-13, frame:up}, {x:-3719, y:1161, z:3769, rotation:-13, frame:up}, {x:-3736, y:1148, z:3774, rotation:-13, frame:up}, {x:-3752, y:1136, z:3779, rotation:-13, frame:up}, {x:-3769, y:1123, z:3784, rotation:-13, frame:up}, {x:-3786, y:1111, z:3789, rotation:-13, frame:forward}, {x:-3802, y:1102, z:3794, rotation:-13, frame:forward}, {x:-3819, y:1094, z:3799, rotation:-13, frame:forward}, {x:-3836, y:1087, z:3804, rotation:-13, frame:forward}, {x:-3852, y:1081, z:3809, rotation:-13, frame:forward}, {x:-3869, y:1076, z:3814, rotation:-13, frame:forward}, {x:-3886, y:1072, z:3819, rotation:-13, frame:forward}, {x:-3902, y:1069, z:3824, rotation:-13, frame:forward}, {x:-3919, y:1067, z:3829, rotation:-13, frame:forward}, {x:-3936, y:1066, z:3834, rotation:-13, frame:forward}, {x:-3952, y:1066, z:3839, rotation:-13, frame:forward}, {x:-3969, y:1066, z:3844, rotation:-13, frame:forward}, {x:-3986, y:1066, z:3849, rotation:-13, frame:forward}, {x:-4002, y:1066, z:3854, rotation:-13, frame:forward}, {x:-4019, y:1066, z:3859, rotation:-13, frame:forward}, {x:-4036, y:1066, z:3864, rotation:-13, frame:forward}, {x:-4052, y:1066, z:3869, rotation:-13, frame:forward}, {x:-4069, y:1066, z:3874, rotation:-13, frame:forward}, {x:-4086, y:1066, z:3879, rotation:-13, frame:forward}, {x:-4102, y:1066, z:3884, rotation:-13, frame:forward}, {x:-4119, y:1066, z:3889, rotation:-13, frame:forward}, {x:-4136, y:1066, z:3894, rotation:-13, frame:forward}, {x:-4152, y:1066, z:3899, rotation:-13, frame:forward}, {x:-4169, y:1066, z:3904, rotation:-13, frame:forward}, {x:-4186, y:1066, z:3909, rotation:-13, frame:forward}, {x:-4202, y:1066, z:3914, rotation:-13, frame:forward}, {x:-4219, y:1066, z:3919, rotation:-13, frame:forward}, {x:-4236, y:1066, z:3924, rotation:-13, frame:forward}, {x:-4252, y:1066, z:3929, rotation:-13, frame:forward}, {x:-4269, y:1066, z:3934, rotation:-13, frame:forward}, {x:-4286, y:1066, z:3939, rotation:-13, frame:forward}, {x:-4302, y:1066, z:3944, rotation:-13, frame:forward}, {x:-4319, y:1066, z:3949, rotation:-13, frame:forward}, {x:-4336, y:1066, z:3954, rotation:-13, frame:forward}, {x:-4352, y:1066, z:3959, rotation:-13, frame:forward}, {x:-4369, y:1066, z:3964, rotation:-13, frame:forward}, {x:-4386, y:1066, z:3969, rotation:-13, frame:forward}, {x:-4402, y:1066, z:3974, rotation:-13, frame:forward}, {x:-4419, y:1066, z:3979, rotation:-13, frame:forward}, {x:-4436, y:1066, z:3984, rotation:-13, frame:forward}, {x:-4452, y:1066, z:3989, rotation:-13, frame:forward}, {x:-4469, y:1066, z:3994, rotation:-13, frame:forward}, {x:-4486, y:1066, z:3999, rotation:-13, frame:forward}, {x:-4502, y:1066, z:4004, rotation:-13, frame:forward}, {x:-4519, y:1066, z:4009, rotation:-13, frame:forward}, {x:-4536, y:1066, z:4014, rotation:-13, frame:forward}, {x:-4552, y:1066, z:4019, rotation:-13, frame:forward}, {x:-4569, y:1066, z:4024, rotation:-13, frame:forward}, {x:-4586, y:1066, z:4029, rotation:-13, frame:forward}, {x:-4602, y:1066, z:4034, rotation:-13, frame:forward}, {x:-4619, y:1066, z:4039, rotation:-13, frame:forward}, {x:-4636, y:1066, z:4044, rotation:-13, frame:forward}, {x:-4652, y:1065, z:4049, rotation:-13, frame:forward}, {x:-4669, y:1061, z:4054, rotation:-13, frame:forward}, {x:-4686, y:1053, z:4059, rotation:-13, frame:up}, {x:-4702, y:1041, z:4064, rotation:-13, frame:up}, {x:-4719, y:1029, z:4069, rotation:-13, frame:up}, {x:-4736, y:1016, z:4074, rotation:-13, frame:forward}, {x:-4752, y:1007, z:4079, rotation:-13, frame:forward}, {x:-4769, y:999, z:4084, rotation:-13, frame:forward}, {x:-4786, y:992, z:4089, rotation:-13, frame:forward}, {x:-4802, y:986, z:4094, rotation:-13, frame:forward}, {x:-4819, y:981, z:4099, rotation:-13, frame:forward}, {x:-4836, y:977, z:4104, rotation:-13, frame:forward}, {x:-4852, y:974, z:4109, rotation:-13, frame:forward}, {x:-4869, y:972, z:4114, rotation:-13, frame:forward}, {x:-4886, y:971, z:4119, rotation:-13, frame:forward}, {x:-4902, y:971, z:4124, rotation:-13, frame:forward}, {x:-4919, y:971, z:4129, rotation:-13, frame:forward}, {x:-4936, y:971, z:4134, rotation:-13, frame:forward}, {x:-4952, y:971, z:4139, rotation:-13, frame:forward}, {x:-4969, y:971, z:4144, rotation:-13, frame:forward}, {x:-4986, y:971, z:4149, rotation:-13, frame:forward}, {x:-5002, y:971, z:4154, rotation:-13, frame:forward}, {x:-5019, y:971, z:4159, rotation:-13, frame:forward}, {x:-5036, y:971, z:4164, rotation:-13, frame:forward}, {x:-5052, y:971, z:4169, rotation:-13, frame:forward}, {x:-5069, y:971, z:4174, rotation:-13, frame:forward}, {x:-5086, y:971, z:4179, rotation:-13, frame:forward}, {x:-5102, y:971, z:4184, rotation:-13, frame:forward}, {x:-5119, y:971, z:4189, rotation:-13, frame:forward}, {x:-5136, y:971, z:4194, rotation:-12, frame:forward}, {x:-5152, y:971, z:4199, rotation:-11, frame:forward}, {x:-5166, y:971, z:4204, rotation:-11, frame:forward}, {x:-5180, y:971, z:4209, rotation:-10, frame:forward}, {x:-5194, y:971, z:4214, rotation:-9, frame:forward}, {x:-5206, y:971, z:4219, rotation:-9, frame:forward}, {x:-5217, y:971, z:4224, rotation:-8, frame:forward}, {x:-5228, y:971, z:4229, rotation:-7, frame:forward}, {x:-5237, y:971, z:4234, rotation:-7, frame:forward}, {x:-5246, y:971, z:4239, rotation:-6, frame:forward}, {x:-5254, y:971, z:4244, rotation:-5, frame:forward}, {x:-5261, y:971, z:4249, rotation:-5, frame:forward}, {x:-5267, y:971, z:4254, rotation:-4, frame:forward}, {x:-5272, y:971, z:4259, rotation:-3, frame:forward}, {x:-5276, y:971, z:4264, rotation:-2, frame:forward}, {x:-5280, y:971, z:4269, rotation:-1, frame:forward}, {x:-5281, y:971, z:4274, rotation:-1, frame:forward}, {x:-5282, y:971, z:4279, rotation:0, frame:forward}, {x:-5282, y:971, z:4284, rotation:0, frame:forward}, {x:-5282, y:971, z:4289, rotation:0, frame:forward}, {x:-5282, y:971, z:4294, rotation:0, frame:forward}, {x:-5282, y:971, z:4299, rotation:0, frame:forward}, {x:-5282, y:971, z:4304, rotation:0, frame:forward}, {x:-5282, y:971, z:4309, rotation:0, frame:forward}, {x:-5282, y:971, z:4314, rotation:0, frame:forward}, {x:-5282, y:971, z:4319, rotation:0, frame:forward}, {x:-5282, y:971, z:4324, rotation:0, frame:forward}, {x:-5282, y:971, z:4329, rotation:0, frame:forward}, {x:-5282, y:971, z:4334, rotation:0, frame:forward}, {x:-5282, y:971, z:4339, rotation:0, frame:forward}, {x:-5282, y:971, z:4344, rotation:0, frame:forward}, {x:-5282, y:971, z:4349, rotation:0, frame:forward}, {x:-5282, y:971, z:4354, rotation:0, frame:forward}, {x:-5282, y:971, z:4359, rotation:0, frame:forward}, {x:-5282, y:971, z:4364, rotation:0, frame:forward}, {x:-5282, y:971, z:4369, rotation:0, frame:forward}, {x:-5282, y:971, z:4374, rotation:0, frame:forward}, {x:-5282, y:971, z:4379, rotation:0, frame:forward}, {x:-5282, y:971, z:4384, rotation:0, frame:forward}, {x:-5282, y:971, z:4389, rotation:0, frame:forward}, {x:-5282, y:971, z:4394, rotation:0, frame:forward}, {x:-5282, y:971, z:4399, rotation:0, frame:forward}, {x:-5282, y:971, z:4404, rotation:0, frame:forward}, {x:-5282, y:971, z:4409, rotation:0, frame:forward}, {x:-5282, y:971, z:4414, rotation:0, frame:forward}, {x:-5282, y:971, z:4419, rotation:0, frame:forward}, {x:-5282, y:971, z:4424, rotation:0, frame:forward}, {x:-5282, y:971, z:4429, rotation:0, frame:forward}, {x:-5282, y:971, z:4434, rotation:0, frame:forward}, {x:-5282, y:971, z:4439, rotation:0, frame:forward}, {x:-5282, y:971, z:4444, rotation:0, frame:forward}, {x:-5282, y:971, z:4449, rotation:0, frame:forward}, {x:-5282, y:971, z:4454, rotation:0, frame:forward}, {x:-5282, y:970, z:4459, rotation:0, frame:forward}, {x:-5282, y:966, z:4464, rotation:0, frame:forward}, {x:-5282, y:958, z:4469, rotation:0, frame:up}, {x:-5282, y:947, z:4474, rotation:0, frame:up}, {x:-5282, y:934, z:4479, rotation:0, frame:up}, {x:-5282, y:922, z:4484, rotation:0, frame:up}, {x:-5282, y:909, z:4489, rotation:0, frame:up}, {x:-5282, y:897, z:4494, rotation:0, frame:up}, {x:-5282, y:884, z:4499, rotation:0, frame:up}, {x:-5282, y:872, z:4504, rotation:0, frame:up}, {x:-5282, y:859, z:4509, rotation:0, frame:up}, {x:-5282, y:847, z:4514, rotation:0, frame:up}, {x:-5282, y:834, z:4519, rotation:0, frame:up}, {x:-5282, y:822, z:4524, rotation:0, frame:up}, {x:-5282, y:809, z:4529, rotation:0, frame:up}, {x:-5282, y:797, z:4534, rotation:1, frame:up}, {x:-5281, y:784, z:4539, rotation:2, frame:up}, {x:-5279, y:772, z:4544, rotation:2, frame:up}, {x:-5276, y:759, z:4549, rotation:3, frame:up}, {x:-5272, y:747, z:4554, rotation:4, frame:up}, {x:-5267, y:734, z:4559, rotation:5, frame:up}, {x:-5261, y:722, z:4564, rotation:5, frame:up}, {x:-5254, y:709, z:4569, rotation:6, frame:up}, {x:-5247, y:697, z:4574, rotation:6, frame:up}, {x:-5238, y:684, z:4579, rotation:7, frame:up}, {x:-5229, y:672, z:4584, rotation:8, frame:up}, {x:-5219, y:659, z:4589, rotation:8, frame:up}, {x:-5208, y:647, z:4594, rotation:9, frame:up}, {x:-5197, y:634, z:4599, rotation:10, frame:up}, {x:-5184, y:622, z:4604, rotation:10, frame:up}, {x:-5171, y:609, z:4609, rotation:11, frame:up}, {x:-5157, y:597, z:4614, rotation:11, frame:up}, {x:-5142, y:584, z:4619, rotation:12, frame:up}, {x:-5127, y:572, z:4624, rotation:13, frame:up}, {x:-5110, y:559, z:4629, rotation:13, frame:up}, {x:-5094, y:547, z:4634, rotation:13, frame:up}, {x:-5077, y:534, z:4639, rotation:13, frame:up}, {x:-5060, y:522, z:4644, rotation:13, frame:up}, {x:-5044, y:509, z:4649, rotation:13, frame:up}, {x:-5027, y:497, z:4654, rotation:13, frame:up}, {x:-5010, y:484, z:4659, rotation:13, frame:up}, {x:-4994, y:472, z:4664, rotation:13, frame:up}, {x:-4977, y:459, z:4669, rotation:13, frame:up}, {x:-4960, y:447, z:4674, rotation:13, frame:up}, {x:-4944, y:434, z:4679, rotation:13, frame:up}, {x:-4927, y:422, z:4684, rotation:13, frame:up}, {x:-4910, y:409, z:4689, rotation:13, frame:up}, {x:-4894, y:397, z:4694, rotation:13, frame:up}, {x:-4877, y:384, z:4699, rotation:13, frame:up}, {x:-4860, y:372, z:4704, rotation:13, frame:up}, {x:-4844, y:359, z:4709, rotation:13, frame:up}, {x:-4827, y:347, z:4714, rotation:13, frame:up}, {x:-4810, y:334, z:4719, rotation:13, frame:up}, {x:-4794, y:322, z:4724, rotation:13, frame:up}, {x:-4777, y:309, z:4729, rotation:13, frame:up}, {x:-4760, y:297, z:4734, rotation:13, frame:up}, {x:-4744, y:284, z:4739, rotation:13, frame:up}, {x:-4727, y:272, z:4744, rotation:13, frame:up}, {x:-4710, y:259, z:4749, rotation:13, frame:up}, {x:-4694, y:247, z:4754, rotation:13, frame:up}, {x:-4677, y:234, z:4759, rotation:13, frame:up}, {x:-4660, y:222, z:4764, rotation:13, frame:up}, {x:-4644, y:209, z:4769, rotation:13, frame:up}, {x:-4627, y:197, z:4774, rotation:13, frame:up}, {x:-4610, y:184, z:4779, rotation:13, frame:up}, {x:-4594, y:172, z:4784, rotation:13, frame:up}, {x:-4577, y:159, z:4789, rotation:13, frame:up}, {x:-4560, y:147, z:4794, rotation:13, frame:up}, {x:-4544, y:134, z:4799, rotation:13, frame:up}, {x:-4527, y:122, z:4804, rotation:13, frame:up}, {x:-4510, y:109, z:4809, rotation:13, frame:up}, {x:-4494, y:97, z:4814, rotation:13, frame:up}, {x:-4477, y:84, z:4819, rotation:13, frame:up}, {x:-4460, y:72, z:4824, rotation:13, frame:up}, {x:-4444, y:59, z:4829, rotation:13, frame:up}, {x:-4427, y:47, z:4834, rotation:13, frame:up}, {x:-4410, y:34, z:4839, rotation:13, frame:up}, {x:-4394, y:22, z:4844, rotation:13, frame:up}, {x:-4377, y:9, z:4849, rotation:13, frame:up}, {x:-4360, y:-3, z:4854, rotation:13, frame:up}, {x:-4344, y:-16, z:4859, rotation:13, frame:up}, {x:-4327, y:-28, z:4864, rotation:13, frame:up}, {x:-4310, y:-41, z:4869, rotation:13, frame:up}, {x:-4294, y:-53, z:4874, rotation:13, frame:up}, {x:-4277, y:-66, z:4879, rotation:13, frame:up}, {x:-4260, y:-78, z:4884, rotation:13, frame:up}, {x:-4244, y:-91, z:4889, rotation:13, frame:up}, {x:-4227, y:-103, z:4894, rotation:13, frame:up}, {x:-4210, y:-116, z:4899, rotation:13, frame:up}, {x:-4194, y:-128, z:4904, rotation:13, frame:up}, {x:-4177, y:-141, z:4909, rotation:13, frame:up}, {x:-4160, y:-153, z:4914, rotation:13, frame:up}, {x:-4144, y:-166, z:4919, rotation:13, frame:up}, {x:-4127, y:-178, z:4924, rotation:13, frame:up}, {x:-4110, y:-191, z:4929, rotation:13, frame:up}, {x:-4094, y:-203, z:4934, rotation:13, frame:up}, {x:-4077, y:-216, z:4939, rotation:13, frame:up}, {x:-4060, y:-228, z:4944, rotation:13, frame:up}, {x:-4044, y:-241, z:4949, rotation:13, frame:up}, {x:-4027, y:-253, z:4954, rotation:13, frame:up}, {x:-4010, y:-266, z:4959, rotation:13, frame:up}, {x:-3994, y:-278, z:4964, rotation:13, frame:up}, {x:-3977, y:-291, z:4969, rotation:13, frame:up}, {x:-3960, y:-303, z:4974, rotation:13, frame:up}, {x:-3944, y:-316, z:4979, rotation:13, frame:up}, {x:-3927, y:-328, z:4984, rotation:13, frame:up}, {x:-3910, y:-341, z:4989, rotation:13, frame:up}, {x:-3894, y:-353, z:4994, rotation:13, frame:up}, {x:-3877, y:-366, z:4999, rotation:13, frame:up}, {x:-3860, y:-378, z:5004, rotation:13, frame:up}, {x:-3844, y:-391, z:5009, rotation:13, frame:up}, {x:-3827, y:-403, z:5014, rotation:13, frame:up}, {x:-3810, y:-416, z:5019, rotation:13, frame:up}, {x:-3794, y:-428, z:5024, rotation:13, frame:up}, {x:-3777, y:-441, z:5029, rotation:13, frame:up}, {x:-3760, y:-453, z:5034, rotation:13, frame:up}, {x:-3744, y:-466, z:5039, rotation:13, frame:up}, {x:-3727, y:-478, z:5044, rotation:13, frame:up}, {x:-3710, y:-491, z:5049, rotation:13, frame:up}, {x:-3694, y:-503, z:5054, rotation:13, frame:up}, {x:-3677, y:-516, z:5059, rotation:13, frame:up}, {x:-3660, y:-528, z:5064, rotation:13, frame:up}, {x:-3644, y:-541, z:5069, rotation:13, frame:up}, {x:-3627, y:-553, z:5074, rotation:13, frame:up}, {x:-3610, y:-566, z:5079, rotation:13, frame:up}, {x:-3594, y:-578, z:5084, rotation:13, frame:up}, {x:-3577, y:-591, z:5089, rotation:13, frame:up}, {x:-3560, y:-603, z:5094, rotation:13, frame:up}, {x:-3544, y:-616, z:5099, rotation:13, frame:up}, {x:-3527, y:-628, z:5104, rotation:13, frame:up}, {x:-3510, y:-641, z:5109, rotation:13, frame:up}, {x:-3494, y:-653, z:5114, rotation:13, frame:up}, {x:-3477, y:-666, z:5119, rotation:13, frame:up}, {x:-3460, y:-678, z:5124, rotation:13, frame:up}, {x:-3444, y:-691, z:5129, rotation:13, frame:up}, {x:-3427, y:-703, z:5134, rotation:13, frame:up}, {x:-3410, y:-716, z:5139, rotation:13, frame:up}, {x:-3394, y:-728, z:5144, rotation:13, frame:up}, {x:-3377, y:-741, z:5149, rotation:13, frame:up}, {x:-3360, y:-753, z:5154, rotation:13, frame:up}, {x:-3344, y:-766, z:5159, rotation:13, frame:up}, {x:-3327, y:-778, z:5164, rotation:13, frame:up}, {x:-3310, y:-791, z:5169, rotation:13, frame:up}, {x:-3294, y:-803, z:5174, rotation:13, frame:up}, {x:-3277, y:-816, z:5179, rotation:13, frame:up}, {x:-3260, y:-828, z:5184, rotation:13, frame:up}, {x:-3244, y:-841, z:5189, rotation:13, frame:up}, {x:-3227, y:-853, z:5194, rotation:13, frame:up}, {x:-3210, y:-866, z:5199, rotation:13, frame:up}, {x:-3194, y:-878, z:5204, rotation:13, frame:up}, {x:-3177, y:-891, z:5209, rotation:13, frame:up}, {x:-3160, y:-903, z:5214, rotation:13, frame:up}, {x:-3144, y:-916, z:5219, rotation:13, frame:up}, {x:-3127, y:-928, z:5224, rotation:13, frame:up}, {x:-3110, y:-941, z:5229, rotation:13, frame:up}, {x:-3094, y:-953, z:5234, rotation:13, frame:up}, {x:-3077, y:-966, z:5239, rotation:13, frame:up}, {x:-3060, y:-978, z:5244, rotation:13, frame:up}, {x:-3044, y:-991, z:5249, rotation:13, frame:up}, {x:-3027, y:-1003, z:5254, rotation:13, frame:up}, {x:-3010, y:-1016, z:5259, rotation:13, frame:up}, {x:-2994, y:-1028, z:5264, rotation:13, frame:up}, {x:-2977, y:-1041, z:5269, rotation:13, frame:up}, {x:-2960, y:-1053, z:5274, rotation:13, frame:up}, {x:-2944, y:-1066, z:5279, rotation:13, frame:up}, {x:-2927, y:-1078, z:5284, rotation:13, frame:up}, {x:-2910, y:-1091, z:5289, rotation:13, frame:up}, {x:-2894, y:-1103, z:5294, rotation:13, frame:up}, {x:-2877, y:-1116, z:5299, rotation:13, frame:up}, {x:-2860, y:-1128, z:5304, rotation:13, frame:up}, {x:-2844, y:-1141, z:5309, rotation:13, frame:up}, {x:-2827, y:-1153, z:5314, rotation:13, frame:up}, {x:-2810, y:-1166, z:5319, rotation:13, frame:up}, {x:-2794, y:-1178, z:5324, rotation:13, frame:up}, {x:-2777, y:-1191, z:5329, rotation:13, frame:up}, {x:-2760, y:-1203, z:5334, rotation:13, frame:up}, {x:-2744, y:-1216, z:5339, rotation:13, frame:up}, {x:-2727, y:-1228, z:5344, rotation:13, frame:up}, {x:-2710, y:-1241, z:5349, rotation:13, frame:up}, {x:-2694, y:-1253, z:5354, rotation:13, frame:up}, {x:-2677, y:-1266, z:5359, rotation:13, frame:up}, {x:-2660, y:-1278, z:5364, rotation:13, frame:up}, {x:-2644, y:-1291, z:5369, rotation:13, frame:up}, {x:-2627, y:-1303, z:5374, rotation:13, frame:up}, {x:-2610, y:-1316, z:5379, rotation:13, frame:up}, {x:-2594, y:-1328, z:5384, rotation:13, frame:up}, {x:-2577, y:-1341, z:5389, rotation:13, frame:up}, {x:-2560, y:-1353, z:5394, rotation:13, frame:up}, {x:-2544, y:-1366, z:5399, rotation:13, frame:up}, {x:-2527, y:-1378, z:5404, rotation:13, frame:up}, {x:-2510, y:-1391, z:5409, rotation:13, frame:up}, {x:-2494, y:-1403, z:5414, rotation:13, frame:up}, {x:-2477, y:-1416, z:5419, rotation:13, frame:up}, {x:-2460, y:-1428, z:5424, rotation:13, frame:up}, {x:-2444, y:-1441, z:5429, rotation:13, frame:up}, {x:-2427, y:-1453, z:5434, rotation:13, frame:up}, {x:-2410, y:-1466, z:5439, rotation:13, frame:up}, {x:-2394, y:-1478, z:5444, rotation:13, frame:up}, {x:-2377, y:-1491, z:5449, rotation:13, frame:up}, {x:-2360, y:-1503, z:5454, rotation:13, frame:up}, {x:-2344, y:-1516, z:5459, rotation:13, frame:up}, {x:-2327, y:-1528, z:5464, rotation:13, frame:up}, {x:-2310, y:-1541, z:5469, rotation:13, frame:up}, {x:-2294, y:-1553, z:5474, rotation:13, frame:up}, {x:-2277, y:-1566, z:5479, rotation:13, frame:up}, {x:-2260, y:-1578, z:5484, rotation:13, frame:up}, {x:-2244, y:-1591, z:5489, rotation:13, frame:up}, {x:-2227, y:-1603, z:5494, rotation:13, frame:up}, {x:-2210, y:-1616, z:5499, rotation:13, frame:up}, {x:-2194, y:-1628, z:5504, rotation:13, frame:up}, {x:-2177, y:-1641, z:5509, rotation:13, frame:up}, {x:-2160, y:-1653, z:5514, rotation:13, frame:up}, {x:-2144, y:-1666, z:5519, rotation:13, frame:up}, {x:-2127, y:-1678, z:5524, rotation:13, frame:up}, {x:-2110, y:-1691, z:5529, rotation:13, frame:up}, {x:-2094, y:-1703, z:5534, rotation:13, frame:up}, {x:-2077, y:-1716, z:5539, rotation:13, frame:up}, {x:-2060, y:-1728, z:5544, rotation:13, frame:up}, {x:-2044, y:-1741, z:5549, rotation:13, frame:up}, {x:-2027, y:-1753, z:5554, rotation:13, frame:up}, {x:-2010, y:-1766, z:5559, rotation:13, frame:up}, {x:-1994, y:-1778, z:5564, rotation:13, frame:up}, {x:-1977, y:-1791, z:5569, rotation:13, frame:up}, {x:-1960, y:-1803, z:5574, rotation:13, frame:up}, {x:-1944, y:-1816, z:5579, rotation:13, frame:up}, {x:-1927, y:-1828, z:5584, rotation:13, frame:up}, {x:-1910, y:-1841, z:5589, rotation:13, frame:up}, {x:-1894, y:-1853, z:5594, rotation:13, frame:up}, {x:-1877, y:-1866, z:5599, rotation:13, frame:up}, {x:-1860, y:-1878, z:5604, rotation:13, frame:up}, {x:-1844, y:-1891, z:5609, rotation:13, frame:up}, {x:-1827, y:-1903, z:5614, rotation:13, frame:up}, {x:-1810, y:-1916, z:5619, rotation:13, frame:up}, {x:-1794, y:-1928, z:5624, rotation:13, frame:up}, {x:-1777, y:-1941, z:5629, rotation:13, frame:up}, {x:-1760, y:-1953, z:5634, rotation:13, frame:up}, {x:-1744, y:-1966, z:5639, rotation:13, frame:up}, {x:-1727, y:-1978, z:5644, rotation:13, frame:up}, {x:-1710, y:-1991, z:5649, rotation:13, frame:up}, {x:-1694, y:-2003, z:5654, rotation:13, frame:up}, {x:-1677, y:-2016, z:5659, rotation:13, frame:up}, {x:-1660, y:-2028, z:5664, rotation:13, frame:up}, {x:-1644, y:-2041, z:5669, rotation:13, frame:up}, {x:-1627, y:-2053, z:5674, rotation:13, frame:up}, {x:-1610, y:-2066, z:5679, rotation:13, frame:up}, {x:-1594, y:-2078, z:5684, rotation:13, frame:up}, {x:-1577, y:-2091, z:5689, rotation:13, frame:up}, {x:-1560, y:-2103, z:5694, rotation:13, frame:up}, {x:-1544, y:-2116, z:5699, rotation:13, frame:up}, {x:-1527, y:-2128, z:5704, rotation:13, frame:up}, {x:-1510, y:-2141, z:5709, rotation:13, frame:up}, {x:-1494, y:-2153, z:5714, rotation:13, frame:up}, {x:-1477, y:-2166, z:5719, rotation:13, frame:up}, {x:-1460, y:-2178, z:5724, rotation:13, frame:up}, {x:-1444, y:-2191, z:5729, rotation:13, frame:up}, {x:-1427, y:-2203, z:5734, rotation:13, frame:up}, {x:-1410, y:-2216, z:5739, rotation:13, frame:up}, {x:-1394, y:-2228, z:5744, rotation:13, frame:up}, {x:-1377, y:-2241, z:5749, rotation:13, frame:up}, {x:-1360, y:-2253, z:5754, rotation:13, frame:up}, {x:-1344, y:-2266, z:5759, rotation:13, frame:up}, {x:-1327, y:-2278, z:5764, rotation:13, frame:up}, {x:-1310, y:-2291, z:5769, rotation:13, frame:up}, {x:-1294, y:-2303, z:5774, rotation:13, frame:up}, {x:-1277, y:-2316, z:5779, rotation:13, frame:up}, {x:-1260, y:-2328, z:5784, rotation:13, frame:up}, {x:-1244, y:-2341, z:5789, rotation:13, frame:up}, {x:-1227, y:-2353, z:5794, rotation:13, frame:up}, {x:-1210, y:-2366, z:5799, rotation:13, frame:up}, {x:-1194, y:-2378, z:5804, rotation:13, frame:up}, {x:-1177, y:-2391, z:5809, rotation:13, frame:up}, {x:-1160, y:-2403, z:5814, rotation:13, frame:up}, {x:-1144, y:-2416, z:5819, rotation:13, frame:up}, {x:-1127, y:-2428, z:5824, rotation:13, frame:up}, {x:-1110, y:-2441, z:5829, rotation:13, frame:up}, {x:-1094, y:-2453, z:5834, rotation:13, frame:up}, {x:-1077, y:-2466, z:5839, rotation:13, frame:up}, {x:-1060, y:-2478, z:5844, rotation:13, frame:up}, {x:-1044, y:-2491, z:5849, rotation:13, frame:up}, {x:-1027, y:-2503, z:5854, rotation:13, frame:up}, {x:-1010, y:-2516, z:5859, rotation:13, frame:up}, {x:-994, y:-2528, z:5864, rotation:13, frame:forward}, {x:-977, y:-2537, z:5869, rotation:13, frame:forward}, {x:-960, y:-2545, z:5874, rotation:13, frame:forward}, {x:-944, y:-2552, z:5879, rotation:13, frame:forward}, {x:-927, y:-2559, z:5884, rotation:13, frame:forward}, {x:-910, y:-2564, z:5889, rotation:13, frame:forward}, {x:-894, y:-2568, z:5894, rotation:13, frame:forward}, {x:-877, y:-2571, z:5899, rotation:13, frame:forward}, {x:-860, y:-2572, z:5904, rotation:13, frame:forward}, {x:-844, y:-2573, z:5909, rotation:13, frame:forward}, {x:-827, y:-2573, z:5914, rotation:13, frame:forward}, {x:-810, y:-2573, z:5919, rotation:13, frame:forward}, {x:-794, y:-2573, z:5924, rotation:13, frame:forward}, {x:-777, y:-2573, z:5929, rotation:13, frame:forward}, {x:-760, y:-2573, z:5934, rotation:13, frame:forward}, {x:-744, y:-2573, z:5939, rotation:13, frame:forward}, {x:-727, y:-2573, z:5944, rotation:13, frame:forward}, {x:-710, y:-2573, z:5949, rotation:13, frame:forward}, {x:-694, y:-2573, z:5954, rotation:13, frame:forward}, {x:-677, y:-2573, z:5959, rotation:13, frame:forward}, {x:-660, y:-2573, z:5964, rotation:13, frame:forward}, {x:-644, y:-2573, z:5969, rotation:13, frame:forward}, {x:-627, y:-2573, z:5974, rotation:13, frame:forward}, {x:-610, y:-2573, z:5979, rotation:13, frame:forward}, {x:-594, y:-2573, z:5984, rotation:13, frame:forward}, {x:-577, y:-2573, z:5989, rotation:13, frame:forward}, {x:-560, y:-2573, z:5994, rotation:13, frame:forward}, {x:-544, y:-2573, z:5999, rotation:13, frame:forward}, {x:-527, y:-2573, z:6004, rotation:13, frame:forward}, {x:-510, y:-2573, z:6009, rotation:13, frame:forward}, {x:-494, y:-2573, z:6014, rotation:13, frame:forward}, {x:-477, y:-2573, z:6019, rotation:13, frame:forward}, {x:-460, y:-2573, z:6024, rotation:13, frame:forward}, {x:-444, y:-2573, z:6029, rotation:13, frame:forward}, {x:-427, y:-2573, z:6034, rotation:13, frame:forward}, {x:-410, y:-2573, z:6039, rotation:13, frame:forward}, {x:-394, y:-2573, z:6044, rotation:13, frame:forward}, {x:-377, y:-2573, z:6049, rotation:13, frame:forward}, {x:-360, y:-2573, z:6054, rotation:13, frame:forward}, {x:-344, y:-2573, z:6059, rotation:13, frame:forward}, {x:-327, y:-2573, z:6064, rotation:13, frame:forward}, {x:-310, y:-2573, z:6069, rotation:13, frame:forward}, {x:-294, y:-2573, z:6074, rotation:13, frame:forward}, {x:-277, y:-2573, z:6079, rotation:13, frame:forward}, {x:-260, y:-2573, z:6084, rotation:13, frame:forward}, {x:-244, y:-2573, z:6089, rotation:13, frame:forward}, {x:-227, y:-2573, z:6094, rotation:13, frame:forward}, {x:-210, y:-2573, z:6099, rotation:13, frame:forward}, {x:-194, y:-2573, z:6104, rotation:13, frame:forward}, {x:-177, y:-2573, z:6109, rotation:13, frame:forward}, {x:-160, y:-2573, z:6114, rotation:13, frame:forward}, {x:-144, y:-2573, z:6119, rotation:13, frame:forward}, {x:-127, y:-2573, z:6124, rotation:13, frame:forward}, {x:-110, y:-2573, z:6129, rotation:13, frame:forward}, {x:-94, y:-2573, z:6134, rotation:13, frame:forward}, {x:-77, y:-2573, z:6139, rotation:13, frame:forward}, {x:-60, y:-2573, z:6144, rotation:13, frame:forward}, {x:-44, y:-2573, z:6149, rotation:13, frame:forward}, {x:-27, y:-2573, z:6154, rotation:13, frame:forward}, {x:-10, y:-2573, z:6159, rotation:13, frame:forward}, {x:6, y:-2573, z:6164, rotation:13, frame:forward}, {x:23, y:-2573, z:6169, rotation:13, frame:forward}, {x:40, y:-2573, z:6174, rotation:13, frame:forward}, {x:56, y:-2573, z:6179, rotation:13, frame:forward}, {x:73, y:-2573, z:6184, rotation:13, frame:forward}, {x:90, y:-2573, z:6189, rotation:13, frame:forward}, {x:106, y:-2573, z:6194, rotation:13, frame:forward}, {x:123, y:-2573, z:6199, rotation:13, frame:forward}, {x:140, y:-2573, z:6204, rotation:13, frame:forward}, {x:156, y:-2573, z:6209, rotation:13, frame:forward}, {x:173, y:-2573, z:6214, rotation:13, frame:forward}, {x:190, y:-2573, z:6219, rotation:13, frame:forward}, {x:206, y:-2573, z:6224, rotation:13, frame:forward}, {x:223, y:-2573, z:6229, rotation:13, frame:forward}, {x:240, y:-2573, z:6234, rotation:13, frame:forward}, {x:256, y:-2573, z:6239, rotation:13, frame:forward}, {x:273, y:-2573, z:6244, rotation:13, frame:forward}, {x:290, y:-2573, z:6249, rotation:13, frame:forward}, {x:306, y:-2573, z:6254, rotation:13, frame:forward}, {x:323, y:-2573, z:6259, rotation:13, frame:forward}, {x:340, y:-2573, z:6264, rotation:13, frame:forward}, {x:356, y:-2573, z:6269, rotation:13, frame:forward}, {x:373, y:-2573, z:6274, rotation:13, frame:forward}, {x:390, y:-2573, z:6279, rotation:13, frame:forward}, {x:406, y:-2573, z:6284, rotation:13, frame:forward}, {x:423, y:-2573, z:6289, rotation:13, frame:forward}, {x:440, y:-2573, z:6294, rotation:13, frame:forward}, {x:456, y:-2573, z:6299, rotation:13, frame:forward}, {x:473, y:-2573, z:6304, rotation:13, frame:forward}, {x:490, y:-2573, z:6309, rotation:13, frame:forward}, {x:506, y:-2573, z:6314, rotation:13, frame:forward}, {x:523, y:-2573, z:6319, rotation:13, frame:forward}, {x:540, y:-2573, z:6324, rotation:13, frame:forward}, {x:556, y:-2573, z:6329, rotation:13, frame:forward}, {x:573, y:-2573, z:6334, rotation:13, frame:forward}, {x:590, y:-2573, z:6339, rotation:13, frame:forward}, {x:606, y:-2573, z:6344, rotation:13, frame:forward}, {x:623, y:-2573, z:6349, rotation:13, frame:forward}, {x:640, y:-2573, z:6354, rotation:13, frame:forward}, {x:656, y:-2573, z:6359, rotation:13, frame:forward}, {x:673, y:-2573, z:6364, rotation:13, frame:forward}, {x:690, y:-2573, z:6369, rotation:13, frame:forward}, {x:706, y:-2573, z:6374, rotation:13, frame:forward}, {x:723, y:-2573, z:6379, rotation:13, frame:forward}, {x:740, y:-2573, z:6384, rotation:13, frame:forward}, {x:756, y:-2573, z:6389, rotation:13, frame:forward}, {x:773, y:-2573, z:6394, rotation:13, frame:forward}, {x:790, y:-2573, z:6399, rotation:13, frame:forward});
var hareLap2 = new Array({arrName:"lapTwo", x:275, y:200, z:102, rotation:0, frame:"forward"}, {x:275, y:200, z:109, rotation:0, frame:"forward"}, {x:275, y:200, z:116, rotation:0, frame:"forward"}, {x:275, y:199, z:123, rotation:0, frame:"forward"}, {x:275, y:187, z:130, rotation:0, frame:"up"}, {x:275, y:166, z:137, rotation:0, frame:"up"}, {x:275, y:146, z:143, rotation:0, frame:"up"}, {x:275, y:125, z:150, rotation:0, frame:"up"}, {x:275, y:104, z:157, rotation:0, frame:"up"}, {x:275, y:84, z:163, rotation:0, frame:"up"}, {x:275, y:63, z:170, rotation:0, frame:"up"}, {x:275, y:42, z:177, rotation:0, frame:"up"}, {x:275, y:22, z:183, rotation:0, frame:"up"}, {x:275, y:1, z:190, rotation:0, frame:"up"}, {x:275, y:-20, z:197, rotation:0, frame:"up"}, {x:275, y:-40, z:204, rotation:0, frame:"up"}, {x:275, y:-61, z:210, rotation:0, frame:"up"}, {x:275, y:-82, z:217, rotation:0, frame:"up"}, {x:275, y:-102, z:224, rotation:0, frame:"up"}, {x:275, y:-123, z:230, rotation:0, frame:"up"}, {x:275, y:-144, z:237, rotation:0, frame:"up"}, {x:275, y:-164, z:244, rotation:0, frame:"up"}, {x:275, y:-185, z:251, rotation:0, frame:"up"}, {x:275, y:-206, z:257, rotation:0, frame:"up"}, {x:275, y:-226, z:264, rotation:0, frame:"up"}, {x:275, y:-247, z:271, rotation:0, frame:"up"}, {x:275, y:-268, z:277, rotation:0, frame:"up"}, {x:275, y:-288, z:284, rotation:0, frame:"up"}, {x:275, y:-309, z:291, rotation:0, frame:"up"}, {x:275, y:-330, z:297, rotation:0, frame:"up"}, {x:275, y:-350, z:304, rotation:0, frame:"up"}, {x:275, y:-371, z:311, rotation:0, frame:"forward"}, {x:275, y:-380, z:318, rotation:0, frame:"forward"}, {x:275, y:-388, z:325, rotation:0, frame:"forward"}, {x:275, y:-395, z:332, rotation:0, frame:"forward"}, {x:275, y:-401, z:338, rotation:0, frame:"forward"}, {x:275, y:-406, z:345, rotation:0, frame:"forward"}, {x:275, y:-411, z:352, rotation:0, frame:"forward"}, {x:275, y:-414, z:359, rotation:0, frame:"forward"}, {x:275, y:-416, z:366, rotation:0, frame:"forward"}, {x:275, y:-417, z:373, rotation:0, frame:"forward"}, {x:275, y:-417, z:380, rotation:0, frame:"forward"}, {x:275, y:-417, z:387, rotation:0, frame:"forward"}, {x:275, y:-417, z:394, rotation:0, frame:"forward"}, {x:275, y:-417, z:401, rotation:0, frame:"forward"}, {x:275, y:-417, z:408, rotation:0, frame:"forward"}, {x:275, y:-417, z:415, rotation:0, frame:"forward"}, {x:275, y:-417, z:422, rotation:0, frame:"forward"}, {x:275, y:-417, z:429, rotation:0, frame:"forward"}, {x:275, y:-417, z:436, rotation:0, frame:"forward"}, {x:275, y:-417, z:443, rotation:0, frame:"forward"}, {x:275, y:-417, z:450, rotation:0, frame:"forward"}, {x:275, y:-417, z:457, rotation:0, frame:"forward"}, {x:275, y:-417, z:464, rotation:0, frame:"forward"}, {x:275, y:-417, z:471, rotation:0, frame:"forward"}, {x:275, y:-417, z:478, rotation:0, frame:"forward"}, {x:275, y:-417, z:485, rotation:0, frame:"forward"}, {x:275, y:-417, z:492, rotation:0, frame:"forward"}, {x:275, y:-417, z:499, rotation:0, frame:"forward"}, {x:275, y:-417, z:506, rotation:0, frame:"forward"}, {x:275, y:-417, z:513, rotation:0, frame:"forward"}, {x:275, y:-417, z:520, rotation:0, frame:"forward"}, {x:275, y:-417, z:527, rotation:0, frame:"forward"}, {x:275, y:-417, z:534, rotation:0, frame:"forward"}, {x:275, y:-417, z:541, rotation:0, frame:"forward"}, {x:275, y:-417, z:548, rotation:0, frame:"forward"}, {x:275, y:-417, z:555, rotation:0, frame:"forward"}, {x:275, y:-417, z:562, rotation:0, frame:"forward"}, {x:275, y:-417, z:569, rotation:0, frame:"forward"}, {x:275, y:-417, z:576, rotation:0, frame:"forward"}, {x:275, y:-417, z:583, rotation:0, frame:"forward"}, {x:275, y:-417, z:590, rotation:0, frame:"forward"}, {x:275, y:-417, z:597, rotation:0, frame:"forward"}, {x:275, y:-417, z:604, rotation:0, frame:"forward"}, {x:275, y:-417, z:611, rotation:0, frame:"forward"}, {x:275, y:-417, z:618, rotation:0, frame:"forward"}, {x:275, y:-417, z:625, rotation:0, frame:"forward"}, {x:275, y:-417, z:632, rotation:0, frame:"forward"}, {x:275, y:-417, z:639, rotation:0, frame:"forward"}, {x:275, y:-417, z:646, rotation:0, frame:"forward"}, {x:275, y:-417, z:653, rotation:0, frame:"forward"}, {x:275, y:-417, z:660, rotation:0, frame:"forward"}, {x:275, y:-417, z:667, rotation:0, frame:"forward"}, {x:275, y:-417, z:674, rotation:0, frame:"forward"}, {x:275, y:-417, z:681, rotation:0, frame:"forward"}, {x:275, y:-417, z:688, rotation:0, frame:"forward"}, {x:275, y:-417, z:695, rotation:0, frame:"forward"}, {x:275, y:-417, z:702, rotation:0, frame:"forward"}, {x:275, y:-417, z:709, rotation:0, frame:"forward"}, {x:275, y:-417, z:716, rotation:0, frame:"forward"}, {x:275, y:-417, z:723, rotation:0, frame:"forward"}, {x:275, y:-417, z:730, rotation:0, frame:"forward"}, {x:275, y:-417, z:737, rotation:0, frame:"forward"}, {x:275, y:-417, z:744, rotation:0, frame:"forward"}, {x:275, y:-417, z:751, rotation:0, frame:"forward"}, {x:275, y:-417, z:758, rotation:0, frame:"forward"}, {x:275, y:-417, z:765, rotation:0, frame:"forward"}, {x:275, y:-417, z:772, rotation:0, frame:"forward"}, {x:275, y:-417, z:779, rotation:0, frame:"forward"}, {x:275, y:-417, z:786, rotation:0, frame:"forward"}, {x:275, y:-417, z:793, rotation:0, frame:"forward"}, {x:275, y:-417, z:800, rotation:0, frame:"forward"}, {x:275, y:-417, z:807, rotation:0, frame:"forward"}, {x:275, y:-417, z:814, rotation:0, frame:"forward"}, {x:275, y:-417, z:821, rotation:0, frame:"forward"}, {x:275, y:-417, z:828, rotation:0, frame:"forward"}, {x:275, y:-417, z:835, rotation:0, frame:"forward"}, {x:275, y:-417, z:842, rotation:0, frame:"forward"}, {x:275, y:-417, z:849, rotation:0, frame:"forward"}, {x:275, y:-417, z:856, rotation:0, frame:"forward"}, {x:275, y:-417, z:863, rotation:0, frame:"forward"}, {x:275, y:-417, z:870, rotation:0, frame:"forward"}, {x:275, y:-417, z:877, rotation:0, frame:"forward"}, {x:275, y:-417, z:884, rotation:0, frame:"forward"}, {x:275, y:-417, z:891, rotation:0, frame:"forward"}, {x:275, y:-417, z:898, rotation:0, frame:"forward"}, {x:275, y:-417, z:905, rotation:0, frame:"forward"}, {x:275, y:-417, z:912, rotation:-1, frame:"forward"}, {x:274, y:-417, z:919, rotation:-2, frame:"forward"}, {x:272, y:-417, z:926, rotation:-3, frame:"forward"}, {x:269, y:-417, z:933, rotation:-4, frame:"forward"}, {x:265, y:-417, z:940, rotation:-5, frame:"forward"}, {x:260, y:-417, z:947, rotation:-6, frame:"forward"}, {x:254, y:-417, z:954, rotation:-7, frame:"forward"}, {x:248, y:-417, z:961, rotation:-7, frame:"forward"}, {x:240, y:-417, z:968, rotation:-8, frame:"forward"}, {x:232, y:-417, z:975, rotation:-9, frame:"forward"}, {x:223, y:-417, z:981, rotation:-10, frame:"forward"}, {x:213, y:-417, z:988, rotation:-11, frame:"forward"}, {x:203, y:-417, z:995, rotation:-11, frame:"forward"}, {x:191, y:-417, z:1002, rotation:-12, frame:"forward"}, {x:179, y:-417, z:1009, rotation:-13, frame:"forward"}, {x:166, y:-417, z:1016, rotation:-14, frame:"forward"}, {x:152, y:-417, z:1022, rotation:-15, frame:"forward"}, {x:138, y:-417, z:1029, rotation:-15, frame:"forward"}, {x:122, y:-417, z:1036, rotation:-16, frame:"forward"}, {x:106, y:-417, z:1043, rotation:-17, frame:"forward"}, {x:89, y:-417, z:1050, rotation:-18, frame:"forward"}, {x:71, y:-417, z:1056, rotation:-19, frame:"forward"}, {x:53, y:-417, z:1063, rotation:-19, frame:"forward"}, {x:33, y:-417, z:1070, rotation:-20, frame:"forward"}, {x:13, y:-417, z:1076, rotation:-21, frame:"forward"}, {x:-8, y:-417, z:1083, rotation:-22, frame:"forward"}, {x:-30, y:-417, z:1090, rotation:-23, frame:"forward"}, {x:-52, y:-417, z:1097, rotation:-23, frame:"forward"}, {x:-75, y:-417, z:1103, rotation:-23, frame:"forward"}, {x:-98, y:-417, z:1110, rotation:-23, frame:"forward"}, {x:-120, y:-417, z:1117, rotation:-23, frame:"forward"}, {x:-143, y:-417, z:1123, rotation:-23, frame:"forward"}, {x:-166, y:-417, z:1130, rotation:-23, frame:"forward"}, {x:-188, y:-417, z:1137, rotation:-23, frame:"forward"}, {x:-211, y:-417, z:1143, rotation:-23, frame:"forward"}, {x:-234, y:-417, z:1150, rotation:-23, frame:"forward"}, {x:-256, y:-417, z:1157, rotation:-23, frame:"forward"}, {x:-279, y:-417, z:1163, rotation:-23, frame:"forward"}, {x:-302, y:-417, z:1170, rotation:-23, frame:"forward"}, {x:-324, y:-417, z:1177, rotation:-23, frame:"forward"}, {x:-347, y:-417, z:1183, rotation:-23, frame:"forward"}, {x:-370, y:-417, z:1190, rotation:-23, frame:"forward"}, {x:-392, y:-417, z:1197, rotation:-23, frame:"forward"}, {x:-415, y:-417, z:1203, rotation:-23, frame:"forward"}, {x:-438, y:-418, z:1210, rotation:-23, frame:"forward"}, {x:-460, y:-430, z:1216, rotation:-23, frame:"up"}, {x:-483, y:-451, z:1223, rotation:-23, frame:"up"}, {x:-506, y:-471, z:1229, rotation:-23, frame:"up"}, {x:-528, y:-492, z:1236, rotation:-23, frame:"up"}, {x:-551, y:-513, z:1242, rotation:-23, frame:"up"}, {x:-574, y:-533, z:1248, rotation:-23, frame:"up"}, {x:-596, y:-554, z:1255, rotation:-23, frame:"up"}, {x:-619, y:-575, z:1261, rotation:-23, frame:"up"}, {x:-642, y:-595, z:1268, rotation:-23, frame:"up"}, {x:-664, y:-616, z:1274, rotation:-23, frame:"up"}, {x:-687, y:-637, z:1280, rotation:-23, frame:"up"}, {x:-710, y:-657, z:1287, rotation:-23, frame:"up"}, {x:-732, y:-678, z:1293, rotation:-23, frame:"up"}, {x:-755, y:-699, z:1299, rotation:-23, frame:"forward"}, {x:-778, y:-708, z:1306, rotation:-23, frame:"forward"}, {x:-800, y:-715, z:1313, rotation:-23, frame:"forward"}, {x:-823, y:-722, z:1319, rotation:-23, frame:"forward"}, {x:-846, y:-729, z:1326, rotation:-23, frame:"forward"}, {x:-868, y:-734, z:1332, rotation:-23, frame:"forward"}, {x:-891, y:-738, z:1339, rotation:-23, frame:"forward"}, {x:-914, y:-742, z:1346, rotation:-23, frame:"forward"}, {x:-936, y:-744, z:1352, rotation:-23, frame:"forward"}, {x:-959, y:-745, z:1359, rotation:-23, frame:"forward"}, {x:-982, y:-745, z:1366, rotation:-23, frame:"forward"}, {x:-1004, y:-745, z:1372, rotation:-23, frame:"forward"}, {x:-1027, y:-745, z:1379, rotation:-23, frame:"forward"}, {x:-1050, y:-745, z:1386, rotation:-23, frame:"forward"}, {x:-1072, y:-745, z:1392, rotation:-23, frame:"forward"}, {x:-1095, y:-745, z:1399, rotation:-23, frame:"forward"}, {x:-1118, y:-745, z:1406, rotation:-23, frame:"forward"}, {x:-1140, y:-745, z:1412, rotation:-22, frame:"forward"}, {x:-1162, y:-745, z:1419, rotation:-21, frame:"forward"}, {x:-1183, y:-745, z:1426, rotation:-20, frame:"forward"}, {x:-1203, y:-745, z:1432, rotation:-19, frame:"forward"}, {x:-1222, y:-745, z:1439, rotation:-18, frame:"forward"}, {x:-1241, y:-745, z:1446, rotation:-17, frame:"forward"}, {x:-1258, y:-745, z:1453, rotation:-17, frame:"forward"}, {x:-1274, y:-745, z:1459, rotation:-16, frame:"forward"}, {x:-1290, y:-745, z:1466, rotation:-15, frame:"forward"}, {x:-1305, y:-745, z:1473, rotation:-14, frame:"forward"}, {x:-1319, y:-745, z:1480, rotation:-13, frame:"forward"}, {x:-1332, y:-745, z:1487, rotation:-12, frame:"forward"}, {x:-1344, y:-745, z:1493, rotation:-11, frame:"forward"}, {x:-1355, y:-745, z:1500, rotation:-10, frame:"forward"}, {x:-1365, y:-745, z:1507, rotation:-9, frame:"forward"}, {x:-1375, y:-745, z:1514, rotation:-9, frame:"forward"}, {x:-1383, y:-745, z:1521, rotation:-8, frame:"forward"}, {x:-1391, y:-745, z:1528, rotation:-7, frame:"forward"}, {x:-1398, y:-745, z:1535, rotation:-6, frame:"forward"}, {x:-1404, y:-745, z:1542, rotation:-5, frame:"forward"}, {x:-1409, y:-745, z:1548, rotation:-4, frame:"forward"}, {x:-1413, y:-745, z:1555, rotation:-3, frame:"forward"}, {x:-1416, y:-745, z:1562, rotation:-2, frame:"forward"}, {x:-1418, y:-745, z:1569, rotation:-1, frame:"forward"}, {x:-1419, y:-745, z:1576, rotation:0, frame:"forward"}, {x:-1419, y:-745, z:1583, rotation:0, frame:"forward"}, {x:-1419, y:-745, z:1590, rotation:0, frame:"forward"}, {x:-1419, y:-745, z:1597, rotation:0, frame:"forward"}, {x:-1419, y:-745, z:1604, rotation:0, frame:"forward"}, {x:-1419, y:-745, z:1611, rotation:0, frame:"forward"}, {x:-1419, y:-745, z:1618, rotation:0, frame:"forward"}, {x:-1419, y:-745, z:1625, rotation:0, frame:"forward"}, {x:-1419, y:-745, z:1632, rotation:0, frame:"forward"}, {x:-1419, y:-745, z:1639, rotation:0, frame:"forward"}, {x:-1419, y:-745, z:1646, rotation:0, frame:"forward"}, {x:-1419, y:-745, z:1653, rotation:0, frame:"forward"}, {x:-1419, y:-745, z:1660, rotation:0, frame:"forward"}, {x:-1419, y:-745, z:1667, rotation:0, frame:"forward"}, {x:-1419, y:-745, z:1674, rotation:0, frame:"forward"}, {x:-1419, y:-745, z:1681, rotation:0, frame:"forward"}, {x:-1419, y:-745, z:1688, rotation:0, frame:"forward"}, {x:-1419, y:-745, z:1695, rotation:0, frame:"forward"}, {x:-1419, y:-745, z:1702, rotation:0, frame:"forward"}, {x:-1419, y:-745, z:1709, rotation:0, frame:"forward"}, {x:-1419, y:-745, z:1716, rotation:0, frame:"forward"}, {x:-1419, y:-745, z:1723, rotation:1, frame:"forward"}, {x:-1418, y:-745, z:1730, rotation:2, frame:"forward"}, {x:-1416, y:-745, z:1737, rotation:3, frame:"forward"}, {x:-1413, y:-745, z:1744, rotation:4, frame:"forward"}, {x:-1409, y:-745, z:1751, rotation:5, frame:"forward"}, {x:-1404, y:-745, z:1758, rotation:6, frame:"forward"}, {x:-1398, y:-745, z:1765, rotation:7, frame:"forward"}, {x:-1392, y:-745, z:1772, rotation:7, frame:"forward"}, {x:-1384, y:-745, z:1779, rotation:8, frame:"forward"}, {x:-1376, y:-745, z:1786, rotation:9, frame:"forward"}, {x:-1367, y:-745, z:1793, rotation:10, frame:"forward"}, {x:-1357, y:-745, z:1799, rotation:11, frame:"forward"}, {x:-1347, y:-745, z:1806, rotation:11, frame:"forward"}, {x:-1335, y:-745, z:1813, rotation:12, frame:"forward"}, {x:-1323, y:-745, z:1820, rotation:11, frame:"forward"}, {x:-1312, y:-745, z:1827, rotation:10, frame:"forward"}, {x:-1301, y:-745, z:1834, rotation:10, frame:"forward"}, {x:-1292, y:-745, z:1840, rotation:9, frame:"forward"}, {x:-1283, y:-745, z:1847, rotation:8, frame:"forward"}, {x:-1275, y:-745, z:1854, rotation:7, frame:"forward"}, {x:-1268, y:-745, z:1861, rotation:6, frame:"forward"}, {x:-1262, y:-745, z:1868, rotation:5, frame:"forward"}, {x:-1257, y:-745, z:1875, rotation:4, frame:"forward"}, {x:-1253, y:-745, z:1882, rotation:3, frame:"forward"}, {x:-1250, y:-745, z:1889, rotation:2, frame:"forward"}, {x:-1248, y:-745, z:1896, rotation:1, frame:"forward"}, {x:-1247, y:-745, z:1903, rotation:0, frame:"forward"}, {x:-1247, y:-745, z:1910, rotation:0, frame:"forward"}, {x:-1247, y:-745, z:1917, rotation:0, frame:"forward"}, {x:-1247, y:-745, z:1924, rotation:0, frame:"forward"}, {x:-1247, y:-745, z:1931, rotation:0, frame:"forward"}, {x:-1247, y:-745, z:1938, rotation:0, frame:"forward"}, {x:-1247, y:-745, z:1945, rotation:0, frame:"forward"}, {x:-1247, y:-745, z:1952, rotation:0, frame:"forward"}, {x:-1247, y:-745, z:1959, rotation:0, frame:"forward"}, {x:-1247, y:-745, z:1966, rotation:0, frame:"forward"}, {x:-1247, y:-745, z:1973, rotation:0, frame:"forward"}, {x:-1247, y:-745, z:1980, rotation:0, frame:"forward"}, {x:-1247, y:-745, z:1987, rotation:0, frame:"forward"}, {x:-1247, y:-745, z:1994, rotation:0, frame:"forward"}, {x:-1247, y:-745, z:2001, rotation:0, frame:"forward"}, {x:-1247, y:-745, z:2008, rotation:0, frame:"forward"}, {x:-1247, y:-745, z:2015, rotation:0, frame:"forward"}, {x:-1247, y:-745, z:2022, rotation:0, frame:"forward"}, {x:-1247, y:-745, z:2029, rotation:0, frame:"forward"}, {x:-1247, y:-745, z:2036, rotation:0, frame:"forward"}, {x:-1247, y:-745, z:2043, rotation:0, frame:"forward"}, {x:-1247, y:-745, z:2050, rotation:-1, frame:"forward"}, {x:-1248, y:-745, z:2057, rotation:-2, frame:"forward"}, {x:-1250, y:-745, z:2064, rotation:-3, frame:"forward"}, {x:-1253, y:-745, z:2071, rotation:-4, frame:"forward"}, {x:-1257, y:-745, z:2078, rotation:-5, frame:"forward"}, {x:-1262, y:-744, z:2085, rotation:-6, frame:"forward"}, {x:-1267, y:-732, z:2091, rotation:-7, frame:"down"}, {x:-1274, y:-711, z:2098, rotation:-7, frame:"down"}, {x:-1281, y:-690, z:2105, rotation:-8, frame:"down"}, {x:-1290, y:-670, z:2111, rotation:-9, frame:"down"}, {x:-1299, y:-649, z:2118, rotation:-10, frame:"down"}, {x:-1308, y:-628, z:2124, rotation:-11, frame:"down"}, {x:-1319, y:-608, z:2131, rotation:-11, frame:"down"}, {x:-1330, y:-587, z:2137, rotation:-12, frame:"down"}, {x:-1343, y:-566, z:2144, rotation:-13, frame:"down"}, {x:-1356, y:-546, z:2150, rotation:-14, frame:"down"}, {x:-1369, y:-525, z:2157, rotation:-15, frame:"down"}, {x:-1384, y:-504, z:2163, rotation:-15, frame:"down"}, {x:-1399, y:-484, z:2170, rotation:-16, frame:"down"}, {x:-1416, y:-463, z:2176, rotation:-17, frame:"down"}, {x:-1433, y:-442, z:2183, rotation:-18, frame:"down"}, {x:-1450, y:-422, z:2189, rotation:-19, frame:"down"}, {x:-1469, y:-401, z:2196, rotation:-19, frame:"down"}, {x:-1488, y:-380, z:2202, rotation:-20, frame:"down"}, {x:-1509, y:-360, z:2209, rotation:-21, frame:"down"}, {x:-1530, y:-339, z:2215, rotation:-22, frame:"down"}, {x:-1551, y:-318, z:2221, rotation:-23, frame:"down"}, {x:-1574, y:-298, z:2228, rotation:-23, frame:"down"}, {x:-1597, y:-277, z:2234, rotation:-23, frame:"down"}, {x:-1619, y:-256, z:2241, rotation:-23, frame:"down"}, {x:-1642, y:-236, z:2247, rotation:-23, frame:"down"}, {x:-1665, y:-215, z:2253, rotation:-23, frame:"down"}, {x:-1687, y:-194, z:2260, rotation:-23, frame:"down"}, {x:-1710, y:-174, z:2266, rotation:-23, frame:"forward"}, {x:-1733, y:-165, z:2273, rotation:-23, frame:"forward"}, {x:-1755, y:-157, z:2279, rotation:-23, frame:"forward"}, {x:-1778, y:-150, z:2286, rotation:-23, frame:"forward"}, {x:-1801, y:-144, z:2292, rotation:-23, frame:"forward"}, {x:-1823, y:-139, z:2299, rotation:-23, frame:"forward"}, {x:-1846, y:-134, z:2306, rotation:-23, frame:"forward"}, {x:-1869, y:-131, z:2312, rotation:-23, frame:"forward"}, {x:-1891, y:-129, z:2319, rotation:-23, frame:"forward"}, {x:-1914, y:-128, z:2325, rotation:-23, frame:"forward"}, {x:-1937, y:-128, z:2332, rotation:-23, frame:"forward"}, {x:-1959, y:-128, z:2339, rotation:-23, frame:"forward"}, {x:-1982, y:-128, z:2346, rotation:-23, frame:"forward"}, {x:-2005, y:-128, z:2352, rotation:-23, frame:"forward"}, {x:-2027, y:-128, z:2359, rotation:-23, frame:"forward"}, {x:-2050, y:-128, z:2366, rotation:-23, frame:"forward"}, {x:-2073, y:-128, z:2372, rotation:-23, frame:"forward"}, {x:-2095, y:-128, z:2379, rotation:-23, frame:"forward"}, {x:-2118, y:-128, z:2386, rotation:-23, frame:"forward"}, {x:-2141, y:-128, z:2392, rotation:-23, frame:"forward"}, {x:-2163, y:-128, z:2399, rotation:-23, frame:"forward"}, {x:-2186, y:-128, z:2406, rotation:-23, frame:"forward"}, {x:-2209, y:-128, z:2412, rotation:-23, frame:"forward"}, {x:-2231, y:-128, z:2419, rotation:-23, frame:"forward"}, {x:-2254, y:-128, z:2426, rotation:-23, frame:"forward"}, {x:-2277, y:-127, z:2432, rotation:-23, frame:"forward"}, {x:-2299, y:-115, z:2439, rotation:-23, frame:"down"}, {x:-2322, y:-94, z:2445, rotation:-23, frame:"down"}, {x:-2345, y:-73, z:2452, rotation:-23, frame:"down"}, {x:-2367, y:-53, z:2458, rotation:-23, frame:"down"}, {x:-2390, y:-32, z:2464, rotation:-23, frame:"down"}, {x:-2413, y:-11, z:2471, rotation:-23, frame:"down"}, {x:-2435, y:9, z:2477, rotation:-23, frame:"down"}, {x:-2458, y:30, z:2483, rotation:-23, frame:"down"}, {x:-2481, y:51, z:2490, rotation:-23, frame:"down"}, {x:-2503, y:71, z:2496, rotation:-23, frame:"down"}, {x:-2526, y:92, z:2503, rotation:-23, frame:"forward"}, {x:-2549, y:101, z:2509, rotation:-23, frame:"forward"}, {x:-2571, y:109, z:2516, rotation:-23, frame:"forward"}, {x:-2594, y:116, z:2522, rotation:-23, frame:"forward"}, {x:-2617, y:122, z:2529, rotation:-23, frame:"forward"}, {x:-2639, y:127, z:2535, rotation:-23, frame:"forward"}, {x:-2662, y:131, z:2542, rotation:-23, frame:"forward"}, {x:-2685, y:135, z:2549, rotation:-23, frame:"forward"}, {x:-2707, y:137, z:2555, rotation:-23, frame:"forward"}, {x:-2730, y:138, z:2562, rotation:-23, frame:"forward"}, {x:-2753, y:138, z:2569, rotation:-23, frame:"forward"}, {x:-2775, y:138, z:2575, rotation:-23, frame:"forward"}, {x:-2798, y:138, z:2582, rotation:-23, frame:"forward"}, {x:-2821, y:138, z:2589, rotation:-23, frame:"forward"}, {x:-2843, y:138, z:2595, rotation:-23, frame:"forward"}, {x:-2866, y:138, z:2602, rotation:-23, frame:"forward"}, {x:-2889, y:138, z:2609, rotation:-23, frame:"forward"}, {x:-2911, y:138, z:2615, rotation:-23, frame:"forward"}, {x:-2934, y:138, z:2622, rotation:-23, frame:"forward"}, {x:-2957, y:138, z:2629, rotation:-23, frame:"forward"}, {x:-2979, y:138, z:2635, rotation:-23, frame:"forward"}, {x:-3002, y:138, z:2642, rotation:-23, frame:"forward"}, {x:-3025, y:138, z:2649, rotation:-23, frame:"forward"}, {x:-3047, y:138, z:2656, rotation:-23, frame:"forward"}, {x:-3070, y:138, z:2662, rotation:-23, frame:"forward"}, {x:-3093, y:138, z:2669, rotation:-23, frame:"forward"}, {x:-3115, y:138, z:2676, rotation:-23, frame:"forward"}, {x:-3138, y:138, z:2682, rotation:-23, frame:"forward"}, {x:-3161, y:138, z:2689, rotation:-23, frame:"forward"}, {x:-3183, y:138, z:2696, rotation:-23, frame:"forward"}, {x:-3206, y:138, z:2702, rotation:-23, frame:"forward"}, {x:-3229, y:138, z:2709, rotation:-23, frame:"forward"}, {x:-3251, y:138, z:2716, rotation:-23, frame:"forward"}, {x:-3274, y:138, z:2722, rotation:-23, frame:"forward"}, {x:-3297, y:138, z:2729, rotation:-23, frame:"forward"}, {x:-3319, y:138, z:2736, rotation:-23, frame:"forward"}, {x:-3342, y:138, z:2742, rotation:-23, frame:"forward"}, {x:-3365, y:138, z:2749, rotation:-23, frame:"forward"}, {x:-3387, y:138, z:2756, rotation:-23, frame:"forward"}, {x:-3410, y:138, z:2762, rotation:-23, frame:"forward"}, {x:-3433, y:138, z:2769, rotation:-23, frame:"forward"}, {x:-3455, y:138, z:2776, rotation:-23, frame:"forward"}, {x:-3478, y:138, z:2782, rotation:-23, frame:"forward"}, {x:-3501, y:138, z:2789, rotation:-23, frame:"forward"}, {x:-3523, y:138, z:2796, rotation:-23, frame:"forward"}, {x:-3546, y:138, z:2802, rotation:-23, frame:"forward"}, {x:-3569, y:138, z:2809, rotation:-23, frame:"forward"}, {x:-3591, y:138, z:2816, rotation:-23, frame:"forward"}, {x:-3614, y:138, z:2822, rotation:-23, frame:"forward"}, {x:-3637, y:138, z:2829, rotation:-23, frame:"forward"}, {x:-3659, y:138, z:2836, rotation:-23, frame:"forward"}, {x:-3682, y:138, z:2842, rotation:-23, frame:"forward"}, {x:-3705, y:138, z:2849, rotation:-23, frame:"forward"}, {x:-3727, y:138, z:2856, rotation:-23, frame:"forward"}, {x:-3750, y:138, z:2862, rotation:-23, frame:"forward"}, {x:-3773, y:138, z:2869, rotation:-23, frame:"forward"}, {x:-3795, y:138, z:2876, rotation:-23, frame:"forward"}, {x:-3818, y:138, z:2882, rotation:-23, frame:"forward"}, {x:-3841, y:138, z:2889, rotation:-23, frame:"forward"}, {x:-3863, y:138, z:2896, rotation:-23, frame:"forward"}, {x:-3886, y:138, z:2903, rotation:-23, frame:"forward"}, {x:-3909, y:138, z:2909, rotation:-23, frame:"forward"}, {x:-3931, y:138, z:2916, rotation:-23, frame:"forward"}, {x:-3954, y:138, z:2923, rotation:-23, frame:"forward"}, {x:-3977, y:138, z:2929, rotation:-23, frame:"forward"}, {x:-3999, y:138, z:2936, rotation:-23, frame:"forward"}, {x:-4022, y:138, z:2943, rotation:-23, frame:"forward"}, {x:-4045, y:138, z:2949, rotation:-23, frame:"forward"}, {x:-4067, y:138, z:2956, rotation:-23, frame:"forward"}, {x:-4090, y:138, z:2963, rotation:-23, frame:"forward"}, {x:-4113, y:138, z:2969, rotation:-23, frame:"forward"}, {x:-4135, y:138, z:2976, rotation:-23, frame:"forward"}, {x:-4158, y:138, z:2983, rotation:-23, frame:"forward"}, {x:-4181, y:138, z:2989, rotation:-23, frame:"forward"}, {x:-4203, y:138, z:2996, rotation:-23, frame:"forward"}, {x:-4226, y:139, z:3003, rotation:-23, frame:"forward"}, {x:-4249, y:151, z:3009, rotation:-23, frame:"down"}, {x:-4271, y:172, z:3016, rotation:-23, frame:"forward"}, {x:-4294, y:180, z:3022, rotation:-23, frame:"forward"}, {x:-4317, y:188, z:3029, rotation:-23, frame:"forward"}, {x:-4339, y:195, z:3035, rotation:-23, frame:"forward"}, {x:-4362, y:202, z:3042, rotation:-23, frame:"forward"}, {x:-4385, y:207, z:3048, rotation:-23, frame:"forward"}, {x:-4407, y:211, z:3055, rotation:-23, frame:"forward"}, {x:-4430, y:214, z:3062, rotation:-23, frame:"forward"}, {x:-4453, y:217, z:3068, rotation:-23, frame:"forward"}, {x:-4475, y:218, z:3075, rotation:-23, frame:"forward"}, {x:-4498, y:218, z:3082, rotation:-23, frame:"forward"}, {x:-4521, y:218, z:3088, rotation:-23, frame:"forward"}, {x:-4543, y:218, z:3095, rotation:-22, frame:"forward"}, {x:-4565, y:218, z:3102, rotation:-21, frame:"forward"}, {x:-4586, y:218, z:3108, rotation:-20, frame:"forward"}, {x:-4606, y:218, z:3115, rotation:-19, frame:"forward"}, {x:-4625, y:218, z:3122, rotation:-18, frame:"forward"}, {x:-4644, y:218, z:3129, rotation:-17, frame:"forward"}, {x:-4661, y:218, z:3135, rotation:-17, frame:"forward"}, {x:-4677, y:218, z:3142, rotation:-16, frame:"forward"}, {x:-4693, y:218, z:3149, rotation:-15, frame:"forward"}, {x:-4708, y:218, z:3156, rotation:-14, frame:"forward"}, {x:-4722, y:218, z:3162, rotation:-13, frame:"forward"}, {x:-4735, y:218, z:3169, rotation:-12, frame:"forward"}, {x:-4747, y:218, z:3176, rotation:-11, frame:"forward"}, {x:-4758, y:218, z:3183, rotation:-10, frame:"forward"}, {x:-4768, y:218, z:3190, rotation:-9, frame:"forward"}, {x:-4778, y:218, z:3197, rotation:-9, frame:"forward"}, {x:-4786, y:218, z:3204, rotation:-8, frame:"forward"}, {x:-4794, y:218, z:3210, rotation:-7, frame:"forward"}, {x:-4801, y:218, z:3217, rotation:-6, frame:"forward"}, {x:-4807, y:218, z:3224, rotation:-5, frame:"forward"}, {x:-4812, y:218, z:3231, rotation:-4, frame:"forward"}, {x:-4816, y:218, z:3238, rotation:-3, frame:"forward"}, {x:-4819, y:218, z:3245, rotation:-2, frame:"forward"}, {x:-4821, y:218, z:3252, rotation:-1, frame:"forward"}, {x:-4822, y:218, z:3259, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3266, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3273, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3280, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3287, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3294, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3301, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3308, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3315, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3322, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3329, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3336, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3343, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3350, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3357, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3364, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3371, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3378, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3385, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3392, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3399, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3406, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3413, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3420, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3427, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3434, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3441, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3448, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3455, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3462, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3469, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3476, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3483, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3490, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3497, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3504, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3511, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3518, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3525, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3532, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3539, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3546, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3553, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3560, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3567, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3574, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3581, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3588, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3595, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3602, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3609, rotation:0, frame:"forward"}, {x:-4822, y:218, z:3616, rotation:0, frame:"forward"}, {x:-4822, y:219, z:3623, rotation:0, frame:"forward"}, {x:-4822, y:231, z:3630, rotation:0, frame:"down"}, {x:-4822, y:251, z:3637, rotation:0, frame:"down"}, {x:-4822, y:272, z:3643, rotation:0, frame:"down"}, {x:-4822, y:293, z:3650, rotation:0, frame:"down"}, {x:-4822, y:313, z:3657, rotation:0, frame:"down"}, {x:-4822, y:334, z:3663, rotation:-1, frame:"down"}, {x:-4823, y:355, z:3670, rotation:-2, frame:"down"}, {x:-4825, y:375, z:3677, rotation:-3, frame:"down"}, {x:-4828, y:396, z:3683, rotation:-4, frame:"down"}, {x:-4832, y:417, z:3690, rotation:-5, frame:"down"}, {x:-4837, y:437, z:3697, rotation:-6, frame:"down"}, {x:-4843, y:458, z:3703, rotation:-7, frame:"down"}, {x:-4849, y:479, z:3710, rotation:-7, frame:"down"}, {x:-4857, y:499, z:3716, rotation:-8, frame:"down"}, {x:-4865, y:520, z:3723, rotation:-9, frame:"down"}, {x:-4874, y:541, z:3730, rotation:-10, frame:"down"}, {x:-4884, y:561, z:3736, rotation:-11, frame:"down"}, {x:-4894, y:582, z:3743, rotation:-11, frame:"down"}, {x:-4906, y:603, z:3749, rotation:-12, frame:"down"}, {x:-4918, y:623, z:3756, rotation:-13, frame:"down"}, {x:-4931, y:644, z:3762, rotation:-14, frame:"down"}, {x:-4945, y:665, z:3769, rotation:-15, frame:"down"}, {x:-4959, y:685, z:3775, rotation:-15, frame:"down"}, {x:-4975, y:706, z:3782, rotation:-16, frame:"down"}, {x:-4991, y:727, z:3788, rotation:-17, frame:"down"}, {x:-5008, y:747, z:3795, rotation:-18, frame:"down"}, {x:-5026, y:768, z:3801, rotation:-19, frame:"down"}, {x:-5044, y:789, z:3808, rotation:-19, frame:"down"}, {x:-5064, y:809, z:3814, rotation:-20, frame:"down"}, {x:-5084, y:830, z:3821, rotation:-21, frame:"down"}, {x:-5105, y:851, z:3827, rotation:-22, frame:"down"}, {x:-5127, y:871, z:3833, rotation:-23, frame:"down"}, {x:-5149, y:892, z:3840, rotation:-23, frame:"down"}, {x:-5172, y:913, z:3846, rotation:-23, frame:"down"}, {x:-5195, y:933, z:3852, rotation:-23, frame:"down"}, {x:-5217, y:954, z:3859, rotation:-23, frame:"down"}, {x:-5240, y:975, z:3865, rotation:-23, frame:"down"}, {x:-5263, y:995, z:3872, rotation:-23, frame:"down"}, {x:-5285, y:1016, z:3878, rotation:-23, frame:"down"}, {x:-5308, y:1037, z:3884, rotation:-23, frame:"down"}, {x:-5331, y:1057, z:3891, rotation:-23, frame:"down"}, {x:-5353, y:1078, z:3897, rotation:-23, frame:"down"}, {x:-5376, y:1099, z:3904, rotation:-23, frame:"down"}, {x:-5399, y:1119, z:3910, rotation:-23, frame:"down"}, {x:-5421, y:1140, z:3916, rotation:-23, frame:"down"}, {x:-5444, y:1161, z:3923, rotation:-23, frame:"down"}, {x:-5467, y:1181, z:3929, rotation:-23, frame:"down"}, {x:-5489, y:1202, z:3935, rotation:-23, frame:"down"}, {x:-5512, y:1223, z:3942, rotation:-22, frame:"down"}, {x:-5534, y:1243, z:3948, rotation:-21, frame:"down"}, {x:-5555, y:1264, z:3955, rotation:-20, frame:"down"}, {x:-5575, y:1285, z:3961, rotation:-19, frame:"down"}, {x:-5594, y:1305, z:3967, rotation:-18, frame:"down"}, {x:-5612, y:1326, z:3974, rotation:-17, frame:"down"}, {x:-5630, y:1347, z:3980, rotation:-17, frame:"down"}, {x:-5646, y:1367, z:3987, rotation:-16, frame:"down"}, {x:-5662, y:1388, z:3993, rotation:-15, frame:"forward"}, {x:-5677, y:1397, z:4000, rotation:-14, frame:"forward"}, {x:-5690, y:1405, z:4007, rotation:-13, frame:"forward"}, {x:-5703, y:1412, z:4013, rotation:-12, frame:"forward"}, {x:-5715, y:1418, z:4020, rotation:-11, frame:"forward"}, {x:-5727, y:1423, z:4027, rotation:-10, frame:"forward"}, {x:-5737, y:1428, z:4034, rotation:-9, frame:"forward"}, {x:-5747, y:1431, z:4040, rotation:-9, frame:"forward"}, {x:-5755, y:1433, z:4047, rotation:-8, frame:"forward"}, {x:-5763, y:1434, z:4054, rotation:-7, frame:"forward"}, {x:-5770, y:1434, z:4061, rotation:-6, frame:"forward"}, {x:-5776, y:1434, z:4068, rotation:-5, frame:"forward"}, {x:-5781, y:1435, z:4075, rotation:-4, frame:"forward"}, {x:-5785, y:1447, z:4082, rotation:-3, frame:"down"}, {x:-5788, y:1468, z:4088, rotation:-2, frame:"down"}, {x:-5790, y:1488, z:4095, rotation:-1, frame:"down"}, {x:-5791, y:1509, z:4102, rotation:0, frame:"down"}, {x:-5791, y:1530, z:4108, rotation:0, frame:"down"}, {x:-5791, y:1550, z:4115, rotation:0, frame:"down"}, {x:-5791, y:1571, z:4122, rotation:0, frame:"down"}, {x:-5791, y:1592, z:4129, rotation:0, frame:"forward"}, {x:-5791, y:1601, z:4135, rotation:0, frame:"forward"}, {x:-5791, y:1609, z:4142, rotation:0, frame:"forward"}, {x:-5791, y:1616, z:4149, rotation:0, frame:"forward"}, {x:-5791, y:1622, z:4156, rotation:0, frame:"forward"}, {x:-5791, y:1627, z:4163, rotation:0, frame:"forward"}, {x:-5791, y:1631, z:4170, rotation:0, frame:"forward"}, {x:-5791, y:1635, z:4177, rotation:0, frame:"forward"}, {x:-5791, y:1637, z:4184, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4191, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4198, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4205, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4212, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4219, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4226, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4233, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4240, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4247, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4254, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4261, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4268, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4275, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4282, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4289, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4296, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4303, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4310, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4317, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4324, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4331, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4338, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4345, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4352, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4359, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4366, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4373, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4380, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4387, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4394, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4401, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4408, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4415, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4422, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4429, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4436, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4443, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4450, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4457, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4464, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4471, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4478, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4485, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4492, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4499, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4506, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4513, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4520, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4527, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4534, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4541, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4548, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4555, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4562, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4569, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4576, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4583, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4590, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4597, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4604, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4611, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4618, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4625, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4632, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4639, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4646, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4653, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4660, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4667, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4674, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4681, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4688, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4695, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4702, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4709, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4716, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4723, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4730, rotation:0, frame:"forward"}, {x:-5791, y:1638, z:4737, rotation:-1, frame:"forward"}, {x:-5792, y:1638, z:4744, rotation:-2, frame:"forward"}, {x:-5794, y:1638, z:4751, rotation:-3, frame:"forward"}, {x:-5797, y:1638, z:4758, rotation:-4, frame:"forward"}, {x:-5801, y:1638, z:4765, rotation:-5, frame:"forward"}, {x:-5806, y:1638, z:4772, rotation:-6, frame:"forward"}, {x:-5812, y:1638, z:4779, rotation:-7, frame:"forward"}, {x:-5818, y:1638, z:4785, rotation:-7, frame:"forward"}, {x:-5826, y:1638, z:4792, rotation:-8, frame:"forward"}, {x:-5834, y:1638, z:4799, rotation:-9, frame:"forward"}, {x:-5843, y:1638, z:4806, rotation:-10, frame:"forward"}, {x:-5853, y:1638, z:4813, rotation:-11, frame:"forward"}, {x:-5863, y:1638, z:4820, rotation:-11, frame:"forward"}, {x:-5875, y:1638, z:4827, rotation:-12, frame:"forward"}, {x:-5887, y:1638, z:4834, rotation:-13, frame:"forward"}, {x:-5900, y:1637, z:4840, rotation:-14, frame:"forward"}, {x:-5914, y:1625, z:4847, rotation:-15, frame:"up"}, {x:-5928, y:1604, z:4853, rotation:-15, frame:"up"}, {x:-5944, y:1584, z:4860, rotation:-16, frame:"up"}, {x:-5960, y:1563, z:4866, rotation:-17, frame:"up"}, {x:-5977, y:1542, z:4873, rotation:-18, frame:"up"}, {x:-5995, y:1522, z:4879, rotation:-19, frame:"up"}, {x:-6013, y:1501, z:4886, rotation:-19, frame:"up"}, {x:-6033, y:1480, z:4892, rotation:-20, frame:"up"}, {x:-6053, y:1460, z:4899, rotation:-21, frame:"up"}, {x:-6074, y:1439, z:4905, rotation:-22, frame:"up"}, {x:-6096, y:1418, z:4911, rotation:-23, frame:"up"}, {x:-6118, y:1398, z:4918, rotation:-23, frame:"up"}, {x:-6141, y:1377, z:4924, rotation:-23, frame:"up"}, {x:-6164, y:1356, z:4931, rotation:-23, frame:"up"}, {x:-6186, y:1336, z:4937, rotation:-23, frame:"up"}, {x:-6209, y:1315, z:4943, rotation:-23, frame:"up"}, {x:-6232, y:1294, z:4950, rotation:-23, frame:"up"}, {x:-6254, y:1274, z:4956, rotation:-23, frame:"up"}, {x:-6277, y:1253, z:4962, rotation:-23, frame:"up"}, {x:-6300, y:1232, z:4969, rotation:-23, frame:"up"}, {x:-6322, y:1212, z:4975, rotation:-23, frame:"up"}, {x:-6345, y:1191, z:4982, rotation:-23, frame:"up"}, {x:-6368, y:1170, z:4988, rotation:-23, frame:"up"}, {x:-6390, y:1150, z:4994, rotation:-23, frame:"up"}, {x:-6413, y:1129, z:5001, rotation:-23, frame:"up"}, {x:-6436, y:1108, z:5007, rotation:-23, frame:"up"}, {x:-6458, y:1088, z:5013, rotation:-23, frame:"up"}, {x:-6481, y:1067, z:5020, rotation:-23, frame:"up"}, {x:-6504, y:1046, z:5026, rotation:-23, frame:"up"}, {x:-6526, y:1026, z:5033, rotation:-23, frame:"up"}, {x:-6549, y:1005, z:5039, rotation:-23, frame:"up"}, {x:-6572, y:984, z:5045, rotation:-23, frame:"forward"}, {x:-6594, y:975, z:5052, rotation:-23, frame:"forward"}, {x:-6617, y:968, z:5059, rotation:-23, frame:"forward"}, {x:-6640, y:961, z:5065, rotation:-23, frame:"forward"}, {x:-6662, y:954, z:5072, rotation:-23, frame:"forward"}, {x:-6685, y:949, z:5078, rotation:-23, frame:"forward"}, {x:-6708, y:945, z:5085, rotation:-23, frame:"forward"}, {x:-6730, y:941, z:5092, rotation:-23, frame:"forward"}, {x:-6753, y:939, z:5098, rotation:-23, frame:"forward"}, {x:-6776, y:938, z:5105, rotation:-23, frame:"forward"}, {x:-6798, y:938, z:5111, rotation:-23, frame:"forward"}, {x:-6821, y:938, z:5118, rotation:-23, frame:"forward"}, {x:-6844, y:938, z:5125, rotation:-23, frame:"forward"}, {x:-6866, y:938, z:5132, rotation:-23, frame:"forward"}, {x:-6889, y:938, z:5138, rotation:-23, frame:"forward"}, {x:-6912, y:938, z:5145, rotation:-23, frame:"forward"}, {x:-6934, y:938, z:5152, rotation:-23, frame:"forward"}, {x:-6957, y:938, z:5158, rotation:-23, frame:"forward"}, {x:-6980, y:938, z:5165, rotation:-23, frame:"forward"}, {x:-7002, y:938, z:5172, rotation:-23, frame:"forward"}, {x:-7025, y:938, z:5178, rotation:-22, frame:"forward"}, {x:-7047, y:938, z:5185, rotation:-21, frame:"forward"}, {x:-7068, y:938, z:5192, rotation:-20, frame:"forward"}, {x:-7088, y:938, z:5198, rotation:-19, frame:"forward"}, {x:-7107, y:938, z:5205, rotation:-18, frame:"forward"}, {x:-7125, y:938, z:5212, rotation:-17, frame:"forward"}, {x:-7142, y:938, z:5219, rotation:-17, frame:"forward"}, {x:-7159, y:938, z:5225, rotation:-16, frame:"forward"}, {x:-7175, y:938, z:5232, rotation:-15, frame:"forward"}, {x:-7189, y:938, z:5239, rotation:-14, frame:"forward"}, {x:-7203, y:938, z:5246, rotation:-13, frame:"forward"}, {x:-7216, y:938, z:5253, rotation:-12, frame:"forward"}, {x:-7228, y:938, z:5259, rotation:-11, frame:"forward"}, {x:-7239, y:938, z:5266, rotation:-10, frame:"forward"}, {x:-7250, y:938, z:5273, rotation:-9, frame:"forward"}, {x:-7259, y:938, z:5280, rotation:-9, frame:"forward"}, {x:-7268, y:938, z:5287, rotation:-8, frame:"forward"}, {x:-7276, y:938, z:5294, rotation:-7, frame:"forward"}, {x:-7282, y:938, z:5301, rotation:-6, frame:"forward"}, {x:-7288, y:938, z:5307, rotation:-5, frame:"forward"}, {x:-7293, y:938, z:5314, rotation:-4, frame:"forward"}, {x:-7298, y:938, z:5321, rotation:-3, frame:"forward"}, {x:-7301, y:938, z:5328, rotation:-2, frame:"forward"}, {x:-7303, y:938, z:5335, rotation:-1, frame:"forward"}, {x:-7304, y:938, z:5342, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5349, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5356, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5363, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5370, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5377, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5384, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5391, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5398, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5405, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5412, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5419, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5426, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5433, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5440, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5447, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5454, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5461, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5468, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5475, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5482, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5489, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5496, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5503, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5510, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5517, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5524, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5531, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5538, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5545, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5552, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5559, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5566, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5573, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5580, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5587, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5594, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5601, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5608, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5615, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5622, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5629, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5636, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5643, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5650, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5657, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5664, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5671, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5678, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5685, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5692, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5699, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5706, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5713, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5720, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5727, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5734, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5741, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5748, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5755, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5762, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5769, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5776, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5783, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5790, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5797, rotation:0, frame:"forward"}, {x:-7304, y:938, z:5804, rotation:-1, frame:"forward"}, {x:-7305, y:938, z:5811, rotation:-2, frame:"forward"}, {x:-7307, y:938, z:5818, rotation:-3, frame:"forward"}, {x:-7310, y:938, z:5825, rotation:-4, frame:"forward"}, {x:-7314, y:938, z:5832, rotation:-5, frame:"forward"}, {x:-7319, y:938, z:5839, rotation:-6, frame:"forward"}, {x:-7324, y:938, z:5846, rotation:-7, frame:"forward"}, {x:-7331, y:938, z:5853, rotation:-7, frame:"forward"}, {x:-7338, y:938, z:5860, rotation:-8, frame:"forward"}, {x:-7347, y:938, z:5867, rotation:-9, frame:"forward"}, {x:-7356, y:938, z:5874, rotation:-10, frame:"forward"}, {x:-7365, y:938, z:5880, rotation:-11, frame:"forward"}, {x:-7376, y:938, z:5887, rotation:-11, frame:"forward"}, {x:-7387, y:938, z:5894, rotation:-12, frame:"forward"}, {x:-7400, y:938, z:5901, rotation:-13, frame:"forward"}, {x:-7413, y:938, z:5908, rotation:-14, frame:"forward"}, {x:-7426, y:938, z:5915, rotation:-15, frame:"forward"}, {x:-7441, y:938, z:5921, rotation:-15, frame:"forward"}, {x:-7456, y:938, z:5928, rotation:-16, frame:"forward"}, {x:-7473, y:938, z:5935, rotation:-17, frame:"forward"}, {x:-7490, y:938, z:5942, rotation:-18, frame:"forward"}, {x:-7507, y:938, z:5948, rotation:-19, frame:"forward"}, {x:-7526, y:938, z:5955, rotation:-19, frame:"forward"}, {x:-7545, y:938, z:5962, rotation:-20, frame:"forward"}, {x:-7566, y:938, z:5969, rotation:-21, frame:"forward"}, {x:-7587, y:938, z:5975, rotation:-22, frame:"forward"}, {x:-7608, y:938, z:5982, rotation:-23, frame:"forward"}, {x:-7631, y:938, z:5989, rotation:-23, frame:"forward"}, {x:-7654, y:938, z:5995, rotation:-23, frame:"forward"}, {x:-7676, y:938, z:6002, rotation:-23, frame:"forward"}, {x:-7699, y:938, z:6009, rotation:-23, frame:"forward"}, {x:-7722, y:938, z:6015, rotation:-23, frame:"forward"}, {x:-7744, y:937, z:6022, rotation:-23, frame:"forward"}, {x:-7767, y:925, z:6028, rotation:-23, frame:"up"}, {x:-7790, y:904, z:6035, rotation:-23, frame:"up"}, {x:-7812, y:884, z:6041, rotation:-23, frame:"up"}, {x:-7835, y:863, z:6048, rotation:-23, frame:"up"}, {x:-7858, y:842, z:6054, rotation:-23, frame:"up"}, {x:-7880, y:822, z:6060, rotation:-23, frame:"up"}, {x:-7903, y:801, z:6067, rotation:-23, frame:"up"}, {x:-7926, y:780, z:6073, rotation:-23, frame:"up"}, {x:-7948, y:760, z:6080, rotation:-23, frame:"up"}, {x:-7971, y:739, z:6086, rotation:-23, frame:"up"}, {x:-7994, y:718, z:6092, rotation:-23, frame:"up"}, {x:-8016, y:698, z:6099, rotation:-23, frame:"up"}, {x:-8039, y:677, z:6105, rotation:-23, frame:"up"}, {x:-8062, y:656, z:6111, rotation:-23, frame:"up"}, {x:-8084, y:636, z:6118, rotation:-23, frame:"up"}, {x:-8107, y:615, z:6124, rotation:-23, frame:"up"}, {x:-8130, y:594, z:6131, rotation:-23, frame:"forward"}, {x:-8152, y:586, z:6137, rotation:-23, frame:"forward"}, {x:-8175, y:578, z:6144, rotation:-23, frame:"forward"}, {x:-8198, y:571, z:6150, rotation:-23, frame:"forward"}, {x:-8220, y:565, z:6157, rotation:-23, frame:"forward"}, {x:-8243, y:559, z:6163, rotation:-23, frame:"forward"}, {x:-8266, y:555, z:6170, rotation:-23, frame:"forward"}, {x:-8288, y:552, z:6177, rotation:-23, frame:"forward"}, {x:-8311, y:550, z:6183, rotation:-23, frame:"forward"}, {x:-8334, y:546, z:6190, rotation:-23, frame:"forward"}, {x:-8356, y:532, z:6196, rotation:-23, frame:"up"}, {x:-8379, y:511, z:6203, rotation:-23, frame:"up"}, {x:-8402, y:491, z:6209, rotation:-23, frame:"up"}, {x:-8424, y:470, z:6216, rotation:-23, frame:"up"}, {x:-8447, y:449, z:6222, rotation:-23, frame:"up"}, {x:-8470, y:429, z:6228, rotation:-23, frame:"up"}, {x:-8492, y:408, z:6235, rotation:-23, frame:"up"}, {x:-8515, y:387, z:6241, rotation:-23, frame:"up"}, {x:-8538, y:367, z:6247, rotation:-23, frame:"forward"}, {x:-8560, y:358, z:6254, rotation:-23, frame:"forward"}, {x:-8583, y:350, z:6261, rotation:-23, frame:"forward"}, {x:-8606, y:343, z:6267, rotation:-23, frame:"forward"}, {x:-8628, y:337, z:6274, rotation:-23, frame:"forward"}, {x:-8651, y:332, z:6280, rotation:-23, frame:"forward"}, {x:-8674, y:327, z:6287, rotation:-23, frame:"forward"}, {x:-8696, y:324, z:6294, rotation:-23, frame:"forward"}, {x:-8719, y:322, z:6300, rotation:-23, frame:"forward"}, {x:-8742, y:321, z:6307, rotation:-23, frame:"forward"}, {x:-8764, y:321, z:6314, rotation:-23, frame:"forward"}, {x:-8787, y:321, z:6320, rotation:-23, frame:"forward"}, {x:-8810, y:321, z:6327, rotation:-23, frame:"forward"}, {x:-8832, y:321, z:6334, rotation:-23, frame:"forward"}, {x:-8855, y:321, z:6340, rotation:-23, frame:"forward"}, {x:-8878, y:321, z:6347, rotation:-23, frame:"forward"}, {x:-8900, y:321, z:6354, rotation:-23, frame:"forward"}, {x:-8923, y:321, z:6360, rotation:-23, frame:"forward"}, {x:-8946, y:321, z:6367, rotation:-23, frame:"forward"}, {x:-8968, y:321, z:6374, rotation:-23, frame:"forward"}, {x:-8991, y:321, z:6380, rotation:-23, frame:"forward"}, {x:-9014, y:321, z:6387, rotation:-23, frame:"forward"}, {x:-9036, y:321, z:6394, rotation:-23, frame:"forward"}, {x:-9059, y:321, z:6400, rotation:-23, frame:"forward"}, {x:-9082, y:321, z:6407, rotation:-23, frame:"forward"}, {x:-9104, y:321, z:6414, rotation:-23, frame:"forward"}, {x:-9127, y:321, z:6420, rotation:-23, frame:"forward"}, {x:-9150, y:321, z:6427, rotation:-23, frame:"forward"}, {x:-9172, y:321, z:6434, rotation:-23, frame:"forward"}, {x:-9195, y:321, z:6440, rotation:-23, frame:"forward"}, {x:-9218, y:321, z:6447, rotation:-23, frame:"forward"}, {x:-9240, y:321, z:6454, rotation:-23, frame:"forward"}, {x:-9263, y:321, z:6460, rotation:-23, frame:"forward"}, {x:-9286, y:321, z:6467, rotation:-23, frame:"forward"}, {x:-9308, y:321, z:6474, rotation:-23, frame:"forward"}, {x:-9331, y:321, z:6480, rotation:-23, frame:"forward"}, {x:-9354, y:321, z:6487, rotation:-23, frame:"forward"}, {x:-9376, y:321, z:6494, rotation:-23, frame:"forward"}, {x:-9399, y:321, z:6501, rotation:-23, frame:"forward"}, {x:-9422, y:321, z:6507, rotation:-23, frame:"forward"}, {x:-9444, y:321, z:6514, rotation:-23, frame:"forward"}, {x:-9467, y:321, z:6521, rotation:-23, frame:"forward"}, {x:-9490, y:321, z:6527, rotation:-23, frame:"forward"}, {x:-9512, y:321, z:6534, rotation:-23, frame:"forward"}, {x:-9535, y:321, z:6541, rotation:-23, frame:"forward"}, {x:-9558, y:321, z:6547, rotation:-23, frame:"forward"}, {x:-9580, y:321, z:6554, rotation:-23, frame:"forward"}, {x:-9603, y:321, z:6561, rotation:-23, frame:"forward"}, {x:-9626, y:321, z:6567, rotation:-23, frame:"forward"}, {x:-9648, y:321, z:6574, rotation:-23, frame:"forward"}, {x:-9671, y:321, z:6581, rotation:-23, frame:"forward"}, {x:-9694, y:321, z:6587, rotation:-23, frame:"forward"}, {x:-9716, y:321, z:6594, rotation:-23, frame:"forward"}, {x:-9739, y:321, z:6601, rotation:-23, frame:"forward"}, {x:-9762, y:321, z:6607, rotation:-23, frame:"forward"}, {x:-9784, y:321, z:6614, rotation:-23, frame:"forward"}, {x:-9807, y:321, z:6621, rotation:-23, frame:"forward"}, {x:-9830, y:321, z:6627, rotation:-23, frame:"forward"}, {x:-9852, y:321, z:6634, rotation:-23, frame:"forward"}, {x:-9875, y:321, z:6641, rotation:-23, frame:"forward"}, {x:-9898, y:321, z:6647, rotation:-23, frame:"forward"}, {x:-9920, y:321, z:6654, rotation:-23, frame:"forward"}, {x:-9943, y:321, z:6661, rotation:-23, frame:"forward"}, {x:-9966, y:321, z:6667, rotation:-23, frame:"forward"}, {x:-9988, y:321, z:6674, rotation:-23, frame:"forward"}, {x:-10011, y:321, z:6681, rotation:-23, frame:"forward"}, {x:-10034, y:321, z:6687, rotation:-23, frame:"forward"}, {x:-10056, y:321, z:6694, rotation:-23, frame:"forward"}, {x:-10079, y:321, z:6701, rotation:-23, frame:"forward"}, {x:-10102, y:321, z:6707, rotation:-23, frame:"forward"}, {x:-10124, y:321, z:6714, rotation:-23, frame:"forward"}, {x:-10147, y:321, z:6721, rotation:-23, frame:"forward"}, {x:-10170, y:321, z:6728, rotation:-23, frame:"forward"}, {x:-10192, y:321, z:6734, rotation:-23, frame:"forward"}, {x:-10215, y:321, z:6741, rotation:-23, frame:"forward"}, {x:-10238, y:321, z:6748, rotation:-23, frame:"forward"}, {x:-10260, y:321, z:6754, rotation:-23, frame:"forward"}, {x:-10283, y:321, z:6761, rotation:-23, frame:"forward"}, {x:-10306, y:321, z:6768, rotation:-23, frame:"forward"}, {x:-10328, y:321, z:6774, rotation:-23, frame:"forward"}, {x:-10351, y:321, z:6781, rotation:-23, frame:"forward"}, {x:-10374, y:321, z:6788, rotation:-23, frame:"forward"}, {x:-10396, y:321, z:6794, rotation:-23, frame:"forward"}, {x:-10419, y:321, z:6801, rotation:-23, frame:"forward"}, {x:-10442, y:321, z:6808, rotation:-23, frame:"forward"}, {x:-10464, y:321, z:6814, rotation:-23, frame:"forward"}, {x:-10487, y:321, z:6821, rotation:-23, frame:"forward"}, {x:-10510, y:321, z:6828, rotation:-23, frame:"forward"}, {x:-10532, y:321, z:6834, rotation:-23, frame:"forward"}, {x:-10555, y:321, z:6841, rotation:-23, frame:"forward"}, {x:-10578, y:321, z:6848, rotation:-22, frame:"forward"}, {x:-10599, y:321, z:6854, rotation:-21, frame:"forward"}, {x:-10620, y:321, z:6861, rotation:-20, frame:"forward"}, {x:-10640, y:321, z:6868, rotation:-19, frame:"forward"}, {x:-10659, y:321, z:6875, rotation:-18, frame:"forward"}, {x:-10678, y:321, z:6881, rotation:-17, frame:"forward"}, {x:-10695, y:321, z:6888, rotation:-17, frame:"forward"}, {x:-10712, y:321, z:6895, rotation:-16, frame:"forward"}, {x:-10727, y:321, z:6902, rotation:-15, frame:"forward"}, {x:-10742, y:321, z:6908, rotation:-14, frame:"forward"}, {x:-10756, y:321, z:6915, rotation:-13, frame:"forward"}, {x:-10769, y:321, z:6922, rotation:-12, frame:"forward"}, {x:-10781, y:321, z:6929, rotation:-11, frame:"forward"}, {x:-10792, y:321, z:6936, rotation:-10, frame:"forward"}, {x:-10803, y:321, z:6942, rotation:-9, frame:"forward"}, {x:-10812, y:321, z:6949, rotation:-9, frame:"forward"}, {x:-10821, y:321, z:6956, rotation:-8, frame:"forward"}, {x:-10828, y:321, z:6963, rotation:-7, frame:"forward"}, {x:-10835, y:321, z:6970, rotation:-6, frame:"forward"}, {x:-10841, y:321, z:6977, rotation:-5, frame:"forward"}, {x:-10846, y:321, z:6984, rotation:-4, frame:"forward"}, {x:-10850, y:321, z:6991, rotation:-3, frame:"forward"}, {x:-10853, y:321, z:6998, rotation:-2, frame:"forward"}, {x:-10855, y:321, z:7005, rotation:-1, frame:"forward"}, {x:-10856, y:321, z:7012, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7019, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7026, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7033, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7040, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7047, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7054, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7061, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7068, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7075, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7082, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7089, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7096, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7103, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7110, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7117, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7124, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7131, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7138, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7145, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7152, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7159, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7166, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7173, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7180, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7187, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7194, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7201, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7208, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7215, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7222, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7229, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7236, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7243, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7250, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7257, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7264, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7271, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7278, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7285, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7292, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7299, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7306, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7313, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7320, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7327, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7334, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7341, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7348, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7355, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7362, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7369, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7376, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7383, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7390, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7397, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7404, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7411, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7418, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7425, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7432, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7439, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7446, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7453, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7460, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7467, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7474, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7481, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7488, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7495, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7502, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7509, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7516, rotation:0, frame:"forward"}, {x:-10856, y:321, z:7523, rotation:-1, frame:"forward"}, {x:-10857, y:321, z:7530, rotation:-2, frame:"forward"}, {x:-10859, y:321, z:7537, rotation:-3, frame:"forward"}, {x:-10862, y:321, z:7544, rotation:-4, frame:"forward"}, {x:-10866, y:321, z:7551, rotation:-5, frame:"forward"}, {x:-10871, y:321, z:7557, rotation:-6, frame:"forward"}, {x:-10877, y:321, z:7564, rotation:-7, frame:"forward"}, {x:-10884, y:321, z:7571, rotation:-7, frame:"forward"}, {x:-10891, y:321, z:7578, rotation:-8, frame:"forward"}, {x:-10899, y:321, z:7585, rotation:-9, frame:"forward"}, {x:-10908, y:321, z:7592, rotation:-10, frame:"forward"}, {x:-10918, y:321, z:7599, rotation:-11, frame:"forward"}, {x:-10929, y:321, z:7606, rotation:-11, frame:"forward"}, {x:-10940, y:321, z:7613, rotation:-12, frame:"forward"}, {x:-10952, y:321, z:7619, rotation:-13, frame:"forward"}, {x:-10965, y:321, z:7626, rotation:-14, frame:"forward"}, {x:-10979, y:321, z:7633, rotation:-15, frame:"forward"}, {x:-10994, y:321, z:7640, rotation:-15, frame:"forward"}, {x:-11009, y:321, z:7647, rotation:-16, frame:"forward"}, {x:-11025, y:321, z:7653, rotation:-17, frame:"forward"}, {x:-11042, y:320, z:7660, rotation:-18, frame:"forward"}, {x:-11060, y:308, z:7667, rotation:-19, frame:"up"}, {x:-11079, y:287, z:7673, rotation:-19, frame:"up"}, {x:-11098, y:266, z:7679, rotation:-20, frame:"up"}, {x:-11118, y:246, z:7686, rotation:-21, frame:"up"}, {x:-11139, y:225, z:7692, rotation:-22, frame:"up"}, {x:-11161, y:204, z:7699, rotation:-23, frame:"up"}, {x:-11184, y:184, z:7705, rotation:-23, frame:"up"}, {x:-11206, y:163, z:7711, rotation:-23, frame:"forward"}, {x:-11229, y:154, z:7718, rotation:-23, frame:"forward"}, {x:-11252, y:146, z:7725, rotation:-23, frame:"forward"}, {x:-11274, y:139, z:7731, rotation:-23, frame:"forward"}, {x:-11297, y:133, z:7738, rotation:-23, frame:"forward"}, {x:-11320, y:128, z:7744, rotation:-23, frame:"forward"}, {x:-11342, y:124, z:7751, rotation:-23, frame:"forward"}, {x:-11365, y:120, z:7758, rotation:-23, frame:"forward"}, {x:-11388, y:118, z:7764, rotation:-23, frame:"forward"}, {x:-11410, y:117, z:7771, rotation:-23, frame:"forward"}, {x:-11433, y:117, z:7778, rotation:-23, frame:"forward"}, {x:-11456, y:117, z:7784, rotation:-23, frame:"forward"}, {x:-11478, y:117, z:7791, rotation:-23, frame:"forward"}, {x:-11501, y:117, z:7798, rotation:-22, frame:"forward"}, {x:-11523, y:117, z:7804, rotation:-21, frame:"forward"}, {x:-11544, y:117, z:7811, rotation:-20, frame:"forward"}, {x:-11564, y:117, z:7818, rotation:-19, frame:"forward"}, {x:-11583, y:117, z:7824, rotation:-18, frame:"forward"}, {x:-11601, y:117, z:7831, rotation:-17, frame:"forward"}, {x:-11619, y:117, z:7838, rotation:-17, frame:"forward"}, {x:-11635, y:117, z:7845, rotation:-16, frame:"forward"}, {x:-11651, y:117, z:7851, rotation:-15, frame:"forward"}, {x:-11665, y:117, z:7858, rotation:-14, frame:"forward"}, {x:-11679, y:117, z:7865, rotation:-13, frame:"forward"}, {x:-11692, y:117, z:7872, rotation:-12, frame:"forward"}, {x:-11704, y:117, z:7879, rotation:-11, frame:"forward"}, {x:-11716, y:117, z:7886, rotation:-10, frame:"forward"}, {x:-11726, y:117, z:7892, rotation:-9, frame:"forward"}, {x:-11735, y:117, z:7899, rotation:-9, frame:"forward"}, {x:-11744, y:117, z:7906, rotation:-8, frame:"forward"}, {x:-11752, y:117, z:7913, rotation:-7, frame:"forward"}, {x:-11759, y:117, z:7920, rotation:-6, frame:"forward"}, {x:-11764, y:117, z:7927, rotation:-5, frame:"forward"}, {x:-11770, y:117, z:7934, rotation:-4, frame:"forward"}, {x:-11774, y:117, z:7941, rotation:-3, frame:"forward"}, {x:-11777, y:117, z:7948, rotation:-2, frame:"forward"}, {x:-11779, y:117, z:7955, rotation:-1, frame:"forward"}, {x:-11780, y:117, z:7962, rotation:0, frame:"forward"}, {x:-11780, y:117, z:7969, rotation:0, frame:"forward"}, {x:-11780, y:117, z:7976, rotation:0, frame:"forward"}, {x:-11780, y:117, z:7983, rotation:0, frame:"forward"}, {x:-11780, y:117, z:7990, rotation:0, frame:"forward"}, {x:-11780, y:117, z:7997, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8004, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8011, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8018, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8025, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8032, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8039, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8046, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8053, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8060, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8067, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8074, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8081, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8088, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8095, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8102, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8109, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8116, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8123, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8130, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8137, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8144, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8151, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8158, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8165, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8172, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8179, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8186, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8193, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8200, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8207, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8214, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8221, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8228, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8235, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8242, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8249, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8256, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8263, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8270, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8277, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8284, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8291, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8298, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8305, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8312, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8319, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8326, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8333, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8340, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8347, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8354, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8361, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8368, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8375, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8382, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8389, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8396, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8403, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8410, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8417, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8424, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8431, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8438, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8445, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8452, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8459, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8466, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8473, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8480, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8487, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8494, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8501, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8508, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8515, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8522, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8529, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8536, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8543, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8550, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8557, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8564, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8571, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8578, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8585, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8592, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8599, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8606, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8613, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8620, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8627, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8634, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8641, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8648, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8655, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8662, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8669, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8676, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8683, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8690, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8697, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8704, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8711, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8718, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8725, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8732, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8739, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8746, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8753, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8760, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8767, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8774, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8781, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8788, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8795, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8802, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8809, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8816, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8823, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8830, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8837, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8844, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8851, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8858, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8865, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8872, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8879, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8886, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8893, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8900, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8907, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8914, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8921, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8928, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8935, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8942, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8949, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8956, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8963, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8970, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8977, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8984, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8991, rotation:0, frame:"forward"}, {x:-11780, y:117, z:8998, rotation:0, frame:"forward"}, {x:-11780, y:117, z:9005, rotation:0, frame:"forward"}, {x:-11780, y:117, z:9012, rotation:0, frame:"forward"}, {x:-11780, y:117, z:9019, rotation:0, frame:"forward"}, {x:-11780, y:117, z:9026, rotation:-1, frame:"forward"}, {x:-11781, y:117, z:9033, rotation:-2, frame:"forward"}, {x:-11783, y:117, z:9040, rotation:-3, frame:"forward"}, {x:-11786, y:117, z:9047, rotation:-4, frame:"forward"}, {x:-11790, y:117, z:9053, rotation:-5, frame:"forward"}, {x:-11795, y:117, z:9060, rotation:-6, frame:"forward"}, {x:-11801, y:117, z:9067, rotation:-7, frame:"forward"}, {x:-11807, y:117, z:9074, rotation:-7, frame:"forward"}, {x:-11815, y:117, z:9081, rotation:-8, frame:"forward"}, {x:-11823, y:117, z:9088, rotation:-9, frame:"forward"}, {x:-11832, y:117, z:9095, rotation:-10, frame:"forward"}, {x:-11842, y:117, z:9102, rotation:-11, frame:"forward"}, {x:-11852, y:117, z:9109, rotation:-11, frame:"forward"}, {x:-11864, y:117, z:9115, rotation:-12, frame:"forward"}, {x:-11876, y:117, z:9122, rotation:-13, frame:"forward"}, {x:-11889, y:117, z:9129, rotation:-14, frame:"forward"}, {x:-11903, y:117, z:9136, rotation:-15, frame:"forward"}, {x:-11917, y:117, z:9143, rotation:-15, frame:"forward"}, {x:-11933, y:117, z:9149, rotation:-16, frame:"forward"}, {x:-11949, y:117, z:9156, rotation:-17, frame:"forward"}, {x:-11966, y:117, z:9163, rotation:-18, frame:"forward"}, {x:-11984, y:117, z:9170, rotation:-19, frame:"forward"}, {x:-12002, y:117, z:9176, rotation:-19, frame:"forward"}, {x:-12022, y:117, z:9183, rotation:-20, frame:"forward"}, {x:-12042, y:117, z:9190, rotation:-21, frame:"forward"}, {x:-12063, y:117, z:9197, rotation:-22, frame:"forward"}, {x:-12085, y:117, z:9203, rotation:-23, frame:"forward"}, {x:-12107, y:117, z:9210, rotation:-23, frame:"forward"}, {x:-12130, y:117, z:9217, rotation:-23, frame:"forward"}, {x:-12152, y:117, z:9223, rotation:-23, frame:"forward"}, {x:-12175, y:117, z:9230, rotation:-23, frame:"forward"}, {x:-12198, y:117, z:9237, rotation:-23, frame:"forward"}, {x:-12220, y:117, z:9243, rotation:-23, frame:"forward"}, {x:-12243, y:117, z:9250, rotation:-23, frame:"forward"}, {x:-12266, y:117, z:9257, rotation:-23, frame:"forward"}, {x:-12288, y:117, z:9263, rotation:-23, frame:"forward"}, {x:-12311, y:117, z:9270, rotation:-23, frame:"forward"}, {x:-12334, y:117, z:9277, rotation:-23, frame:"forward"}, {x:-12356, y:117, z:9283, rotation:-23, frame:"forward"}, {x:-12379, y:117, z:9290, rotation:-23, frame:"forward"}, {x:-12402, y:117, z:9297, rotation:-23, frame:"forward"}, {x:-12424, y:117, z:9303, rotation:-23, frame:"forward"}, {x:-12447, y:117, z:9310, rotation:-23, frame:"forward"}, {x:-12470, y:117, z:9317, rotation:-23, frame:"forward"}, {x:-12492, y:117, z:9323, rotation:-23, frame:"forward"}, {x:-12515, y:117, z:9330, rotation:-23, frame:"forward"}, {x:-12538, y:117, z:9337, rotation:-23, frame:"forward"}, {x:-12560, y:117, z:9343, rotation:-23, frame:"forward"}, {x:-12583, y:117, z:9350, rotation:-23, frame:"forward"}, {x:-12606, y:117, z:9357, rotation:-23, frame:"forward"}, {x:-12628, y:117, z:9363, rotation:-23, frame:"forward"}, {x:-12651, y:117, z:9370, rotation:-23, frame:"forward"}, {x:-12674, y:117, z:9377, rotation:-23, frame:"forward"}, {x:-12696, y:117, z:9384, rotation:-23, frame:"forward"}, {x:-12719, y:117, z:9390, rotation:-23, frame:"forward"}, {x:-12742, y:117, z:9397, rotation:-23, frame:"forward"}, {x:-12764, y:117, z:9404, rotation:-23, frame:"forward"}, {x:-12787, y:117, z:9410, rotation:-23, frame:"forward"}, {x:-12810, y:117, z:9417, rotation:-23, frame:"forward"}, {x:-12832, y:117, z:9424, rotation:-23, frame:"forward"}, {x:-12855, y:117, z:9430, rotation:-23, frame:"forward"}, {x:-12878, y:117, z:9437, rotation:-23, frame:"forward"}, {x:-12900, y:117, z:9444, rotation:-23, frame:"forward"}, {x:-12923, y:117, z:9450, rotation:-23, frame:"forward"}, {x:-12946, y:117, z:9457, rotation:-23, frame:"forward"}, {x:-12968, y:117, z:9464, rotation:-23, frame:"forward"}, {x:-12991, y:117, z:9470, rotation:-23, frame:"forward"}, {x:-13014, y:117, z:9477, rotation:-23, frame:"forward"}, {x:-13036, y:117, z:9484, rotation:-23, frame:"forward"}, {x:-13059, y:117, z:9490, rotation:-23, frame:"forward"}, {x:-13082, y:117, z:9497, rotation:-23, frame:"forward"}, {x:-13104, y:117, z:9504, rotation:-23, frame:"forward"}, {x:-13127, y:117, z:9510, rotation:-23, frame:"forward"}, {x:-13150, y:117, z:9517, rotation:-23, frame:"forward"}, {x:-13172, y:117, z:9524, rotation:-23, frame:"forward"}, {x:-13195, y:117, z:9530, rotation:-23, frame:"forward"}, {x:-13218, y:117, z:9537, rotation:-23, frame:"forward"}, {x:-13240, y:117, z:9544, rotation:-23, frame:"forward"}, {x:-13263, y:117, z:9550, rotation:-23, frame:"forward"}, {x:-13286, y:117, z:9557, rotation:-23, frame:"forward"}, {x:-13308, y:117, z:9564, rotation:-23, frame:"forward"}, {x:-13331, y:117, z:9570, rotation:-23, frame:"forward"}, {x:-13354, y:117, z:9577, rotation:-23, frame:"forward"}, {x:-13376, y:117, z:9584, rotation:-23, frame:"forward"}, {x:-13399, y:117, z:9590, rotation:-23, frame:"forward"}, {x:-13422, y:117, z:9597, rotation:-23, frame:"forward"}, {x:-13444, y:117, z:9604, rotation:-23, frame:"forward"}, {x:-13467, y:117, z:9610, rotation:-23, frame:"forward"}, {x:-13490, y:117, z:9617, rotation:-23, frame:"forward"}, {x:-13512, y:117, z:9624, rotation:-23, frame:"forward"}, {x:-13535, y:117, z:9631, rotation:-23, frame:"forward"}, {x:-13558, y:117, z:9637, rotation:-23, frame:"forward"}, {x:-13580, y:117, z:9644, rotation:-23, frame:"forward"}, {x:-13603, y:117, z:9651, rotation:-23, frame:"forward"}, {x:-13626, y:117, z:9657, rotation:-23, frame:"forward"}, {x:-13648, y:117, z:9664, rotation:-23, frame:"forward"}, {x:-13671, y:117, z:9671, rotation:-23, frame:"forward"}, {x:-13694, y:117, z:9677, rotation:-23, frame:"forward"}, {x:-13716, y:117, z:9684, rotation:-23, frame:"forward"}, {x:-13739, y:117, z:9691, rotation:-23, frame:"forward"}, {x:-13762, y:117, z:9697, rotation:-23, frame:"forward"}, {x:-13784, y:117, z:9704, rotation:-23, frame:"forward"}, {x:-13807, y:117, z:9711, rotation:-23, frame:"forward"}, {x:-13830, y:117, z:9717, rotation:-23, frame:"forward"}, {x:-13852, y:117, z:9724, rotation:-23, frame:"forward"}, {x:-13875, y:117, z:9731, rotation:-23, frame:"forward"}, {x:-13898, y:117, z:9737, rotation:-23, frame:"forward"}, {x:-13920, y:117, z:9744, rotation:-23, frame:"forward"}, {x:-13943, y:117, z:9751, rotation:-23, frame:"forward"}, {x:-13966, y:117, z:9757, rotation:-23, frame:"forward"}, {x:-13988, y:117, z:9764, rotation:-23, frame:"forward"}, {x:-14011, y:117, z:9771, rotation:-22, frame:"forward"}, {x:-14033, y:117, z:9777, rotation:-21, frame:"forward"}, {x:-14054, y:117, z:9784, rotation:-20, frame:"forward"}, {x:-14074, y:117, z:9791, rotation:-19, frame:"forward"}, {x:-14093, y:117, z:9798, rotation:-18, frame:"forward"}, {x:-14111, y:117, z:9804, rotation:-17, frame:"forward"}, {x:-14129, y:117, z:9811, rotation:-17, frame:"forward"}, {x:-14145, y:117, z:9818, rotation:-16, frame:"forward"}, {x:-14161, y:117, z:9825, rotation:-15, frame:"forward"}, {x:-14176, y:117, z:9831, rotation:-14, frame:"forward"}, {x:-14189, y:117, z:9838, rotation:-13, frame:"forward"}, {x:-14202, y:117, z:9845, rotation:-12, frame:"forward"}, {x:-14214, y:117, z:9852, rotation:-11, frame:"forward"}, {x:-14226, y:117, z:9859, rotation:-10, frame:"forward"}, {x:-14236, y:117, z:9866, rotation:-9, frame:"forward"}, {x:-14246, y:117, z:9872, rotation:-9, frame:"forward"}, {x:-14254, y:117, z:9879, rotation:-8, frame:"forward"}, {x:-14262, y:117, z:9886, rotation:-7, frame:"forward"}, {x:-14269, y:117, z:9893, rotation:-6, frame:"forward"}, {x:-14275, y:117, z:9900, rotation:-5, frame:"forward"}, {x:-14280, y:117, z:9907, rotation:-4, frame:"forward"}, {x:-14284, y:117, z:9914, rotation:-3, frame:"forward"}, {x:-14287, y:117, z:9921, rotation:-2, frame:"forward"}, {x:-14289, y:117, z:9928, rotation:-1, frame:"forward"}, {x:-14290, y:117, z:9935, rotation:0, frame:"forward"}, {x:-14290, y:117, z:9942, rotation:0, frame:"forward"}, {x:-14290, y:117, z:9949, rotation:0, frame:"forward"}, {x:-14290, y:117, z:9956, rotation:0, frame:"forward"}, {x:-14290, y:117, z:9963, rotation:0, frame:"forward"}, {x:-14290, y:117, z:9970, rotation:0, frame:"forward"}, {x:-14290, y:117, z:9977, rotation:0, frame:"forward"}, {x:-14290, y:117, z:9984, rotation:0, frame:"forward"}, {x:-14290, y:117, z:9991, rotation:0, frame:"forward"}, {x:-14290, y:117, z:9998, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10005, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10012, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10019, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10026, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10033, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10040, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10047, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10054, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10061, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10068, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10075, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10082, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10089, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10096, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10103, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10110, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10117, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10124, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10131, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10138, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10145, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10152, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10159, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10166, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10173, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10180, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10187, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10194, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10201, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10208, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10215, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10222, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10229, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10236, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10243, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10250, rotation:0, frame:"forward"}, {x:-14290, y:117, z:10257, rotation:1, frame:"forward"}, {x:-14289, y:117, z:10264, rotation:2, frame:"forward"}, {x:-14287, y:117, z:10271, rotation:3, frame:"forward"}, {x:-14284, y:117, z:10278, rotation:4, frame:"forward"}, {x:-14280, y:117, z:10285, rotation:5, frame:"forward"}, {x:-14275, y:117, z:10292, rotation:6, frame:"forward"}, {x:-14269, y:117, z:10298, rotation:7, frame:"forward"}, {x:-14262, y:117, z:10305, rotation:7, frame:"forward"}, {x:-14255, y:117, z:10312, rotation:8, frame:"forward"}, {x:-14247, y:117, z:10319, rotation:9, frame:"forward"}, {x:-14238, y:117, z:10326, rotation:10, frame:"forward"}, {x:-14228, y:117, z:10333, rotation:11, frame:"forward"}, {x:-14217, y:117, z:10340, rotation:11, frame:"forward"}, {x:-14206, y:117, z:10347, rotation:12, frame:"forward"}, {x:-14194, y:117, z:10353, rotation:13, frame:"forward"}, {x:-14181, y:117, z:10360, rotation:14, frame:"forward"}, {x:-14167, y:117, z:10367, rotation:15, frame:"forward"}, {x:-14152, y:117, z:10374, rotation:15, frame:"forward"}, {x:-14137, y:117, z:10381, rotation:16, frame:"forward"}, {x:-14121, y:117, z:10387, rotation:17, frame:"forward"}, {x:-14104, y:117, z:10394, rotation:18, frame:"forward"}, {x:-14086, y:117, z:10401, rotation:19, frame:"forward"}, {x:-14067, y:117, z:10408, rotation:19, frame:"forward"}, {x:-14048, y:117, z:10414, rotation:20, frame:"forward"}, {x:-14028, y:117, z:10421, rotation:21, frame:"forward"}, {x:-14007, y:117, z:10428, rotation:22, frame:"forward"}, {x:-13985, y:117, z:10434, rotation:23, frame:"forward"}, {x:-13962, y:117, z:10441, rotation:23, frame:"forward"}, {x:-13940, y:117, z:10448, rotation:23, frame:"forward"}, {x:-13917, y:116, z:10454, rotation:23, frame:"forward"}, {x:-13894, y:104, z:10461, rotation:23, frame:"up"}, {x:-13872, y:83, z:10467, rotation:23, frame:"up"}, {x:-13849, y:63, z:10474, rotation:23, frame:"up"}, {x:-13826, y:42, z:10480, rotation:23, frame:"up"}, {x:-13804, y:21, z:10486, rotation:23, frame:"up"}, {x:-13781, y:1, z:10493, rotation:23, frame:"up"}, {x:-13758, y:-20, z:10499, rotation:23, frame:"up"}, {x:-13736, y:-41, z:10506, rotation:23, frame:"up"}, {x:-13713, y:-61, z:10512, rotation:23, frame:"up"}, {x:-13690, y:-82, z:10518, rotation:23, frame:"up"}, {x:-13668, y:-103, z:10525, rotation:23, frame:"up"}, {x:-13645, y:-123, z:10531, rotation:23, frame:"up"}, {x:-13622, y:-144, z:10537, rotation:23, frame:"up"}, {x:-13600, y:-165, z:10544, rotation:23, frame:"up"}, {x:-13577, y:-185, z:10550, rotation:23, frame:"up"}, {x:-13554, y:-206, z:10557, rotation:23, frame:"up"}, {x:-13532, y:-227, z:10563, rotation:23, frame:"up"}, {x:-13509, y:-247, z:10569, rotation:23, frame:"up"}, {x:-13486, y:-268, z:10576, rotation:23, frame:"up"}, {x:-13464, y:-289, z:10582, rotation:23, frame:"up"}, {x:-13441, y:-309, z:10589, rotation:23, frame:"up"}, {x:-13418, y:-330, z:10595, rotation:23, frame:"up"}, {x:-13396, y:-351, z:10601, rotation:23, frame:"up"}, {x:-13373, y:-371, z:10608, rotation:23, frame:"up"}, {x:-13350, y:-392, z:10614, rotation:23, frame:"up"}, {x:-13328, y:-413, z:10620, rotation:23, frame:"up"}, {x:-13305, y:-433, z:10627, rotation:23, frame:"up"}, {x:-13282, y:-454, z:10633, rotation:23, frame:"up"}, {x:-13260, y:-475, z:10640, rotation:23, frame:"up"}, {x:-13237, y:-495, z:10646, rotation:23, frame:"up"}, {x:-13214, y:-516, z:10652, rotation:23, frame:"up"}, {x:-13192, y:-537, z:10659, rotation:23, frame:"up"}, {x:-13169, y:-557, z:10665, rotation:23, frame:"up"}, {x:-13146, y:-578, z:10671, rotation:23, frame:"up"}, {x:-13124, y:-599, z:10678, rotation:23, frame:"up"}, {x:-13101, y:-619, z:10684, rotation:23, frame:"up"}, {x:-13078, y:-640, z:10691, rotation:23, frame:"up"}, {x:-13056, y:-661, z:10697, rotation:23, frame:"up"}, {x:-13033, y:-681, z:10703, rotation:23, frame:"up"}, {x:-13010, y:-702, z:10710, rotation:23, frame:"up"}, {x:-12988, y:-723, z:10716, rotation:23, frame:"up"}, {x:-12965, y:-743, z:10723, rotation:23, frame:"up"}, {x:-12942, y:-764, z:10729, rotation:23, frame:"up"}, {x:-12920, y:-785, z:10735, rotation:23, frame:"up"}, {x:-12897, y:-805, z:10742, rotation:23, frame:"up"}, {x:-12874, y:-826, z:10748, rotation:23, frame:"up"}, {x:-12852, y:-847, z:10754, rotation:23, frame:"up"}, {x:-12829, y:-867, z:10761, rotation:23, frame:"up"}, {x:-12806, y:-888, z:10767, rotation:23, frame:"up"}, {x:-12784, y:-909, z:10774, rotation:23, frame:"up"}, {x:-12761, y:-929, z:10780, rotation:23, frame:"up"}, {x:-12738, y:-950, z:10786, rotation:23, frame:"up"}, {x:-12716, y:-971, z:10793, rotation:23, frame:"up"}, {x:-12693, y:-991, z:10799, rotation:23, frame:"up"}, {x:-12670, y:-1012, z:10805, rotation:23, frame:"up"}, {x:-12648, y:-1033, z:10812, rotation:23, frame:"up"}, {x:-12625, y:-1053, z:10818, rotation:23, frame:"up"}, {x:-12602, y:-1074, z:10825, rotation:23, frame:"up"}, {x:-12580, y:-1095, z:10831, rotation:23, frame:"up"}, {x:-12557, y:-1115, z:10837, rotation:23, frame:"up"}, {x:-12534, y:-1136, z:10844, rotation:23, frame:"up"}, {x:-12512, y:-1157, z:10850, rotation:23, frame:"up"}, {x:-12489, y:-1177, z:10857, rotation:23, frame:"up"}, {x:-12466, y:-1198, z:10863, rotation:23, frame:"up"}, {x:-12444, y:-1219, z:10869, rotation:23, frame:"up"}, {x:-12421, y:-1239, z:10876, rotation:23, frame:"up"}, {x:-12398, y:-1260, z:10882, rotation:23, frame:"up"}, {x:-12376, y:-1281, z:10888, rotation:23, frame:"up"}, {x:-12353, y:-1301, z:10895, rotation:22, frame:"up"}, {x:-12331, y:-1322, z:10901, rotation:21, frame:"up"}, {x:-12310, y:-1343, z:10908, rotation:20, frame:"up"}, {x:-12290, y:-1363, z:10914, rotation:19, frame:"up"}, {x:-12271, y:-1384, z:10920, rotation:18, frame:"up"}, {x:-12253, y:-1405, z:10927, rotation:17, frame:"up"}, {x:-12236, y:-1425, z:10933, rotation:17, frame:"up"}, {x:-12219, y:-1446, z:10940, rotation:16, frame:"up"}, {x:-12203, y:-1467, z:10946, rotation:15, frame:"up"}, {x:-12189, y:-1487, z:10953, rotation:14, frame:"up"}, {x:-12175, y:-1508, z:10959, rotation:13, frame:"up"}, {x:-12162, y:-1529, z:10966, rotation:12, frame:"up"}, {x:-12150, y:-1549, z:10972, rotation:11, frame:"up"}, {x:-12138, y:-1570, z:10979, rotation:10, frame:"up"}, {x:-12128, y:-1591, z:10985, rotation:9, frame:"up"}, {x:-12119, y:-1611, z:10992, rotation:9, frame:"up"}, {x:-12110, y:-1632, z:10999, rotation:8, frame:"up"}, {x:-12102, y:-1653, z:11005, rotation:7, frame:"up"}, {x:-12096, y:-1673, z:11012, rotation:6, frame:"up"}, {x:-12090, y:-1694, z:11018, rotation:5, frame:"up"}, {x:-12085, y:-1715, z:11025, rotation:4, frame:"up"}, {x:-12080, y:-1735, z:11032, rotation:3, frame:"up"}, {x:-12077, y:-1756, z:11038, rotation:2, frame:"up"}, {x:-12075, y:-1777, z:11045, rotation:1, frame:"up"}, {x:-12074, y:-1797, z:11052, rotation:0, frame:"up"}, {x:-12074, y:-1818, z:11058, rotation:0, frame:"up"}, {x:-12074, y:-1839, z:11065, rotation:0, frame:"up"}, {x:-12074, y:-1859, z:11072, rotation:0, frame:"up"}, {x:-12074, y:-1880, z:11079, rotation:0, frame:"up"}, {x:-12074, y:-1901, z:11085, rotation:0, frame:"up"}, {x:-12074, y:-1921, z:11092, rotation:0, frame:"up"}, {x:-12074, y:-1942, z:11099, rotation:0, frame:"up"}, {x:-12074, y:-1963, z:11105, rotation:0, frame:"up"}, {x:-12074, y:-1983, z:11112, rotation:0, frame:"up"}, {x:-12074, y:-2004, z:11119, rotation:0, frame:"up"}, {x:-12074, y:-2025, z:11125, rotation:0, frame:"up"}, {x:-12074, y:-2045, z:11132, rotation:0, frame:"up"}, {x:-12074, y:-2066, z:11139, rotation:0, frame:"up"}, {x:-12074, y:-2087, z:11146, rotation:0, frame:"up"}, {x:-12074, y:-2107, z:11152, rotation:0, frame:"up"}, {x:-12074, y:-2128, z:11159, rotation:0, frame:"up"}, {x:-12074, y:-2149, z:11166, rotation:0, frame:"up"}, {x:-12074, y:-2169, z:11172, rotation:0, frame:"up"}, {x:-12074, y:-2190, z:11179, rotation:0, frame:"up"}, {x:-12074, y:-2211, z:11186, rotation:0, frame:"up"}, {x:-12074, y:-2231, z:11193, rotation:0, frame:"up"}, {x:-12074, y:-2252, z:11199, rotation:0, frame:"up"}, {x:-12074, y:-2273, z:11206, rotation:0, frame:"up"}, {x:-12074, y:-2293, z:11213, rotation:0, frame:"up"}, {x:-12074, y:-2314, z:11219, rotation:0, frame:"up"}, {x:-12074, y:-2335, z:11226, rotation:0, frame:"up"}, {x:-12074, y:-2355, z:11233, rotation:0, frame:"up"}, {x:-12074, y:-2376, z:11239, rotation:0, frame:"up"}, {x:-12074, y:-2397, z:11246, rotation:0, frame:"up"}, {x:-12074, y:-2417, z:11253, rotation:0, frame:"up"}, {x:-12074, y:-2438, z:11260, rotation:0, frame:"up"}, {x:-12074, y:-2459, z:11266, rotation:0, frame:"up"}, {x:-12074, y:-2479, z:11273, rotation:0, frame:"up"}, {x:-12074, y:-2500, z:11280, rotation:0, frame:"up"}, {x:-12074, y:-2521, z:11286, rotation:0, frame:"up"}, {x:-12074, y:-2541, z:11293, rotation:0, frame:"up"}, {x:-12074, y:-2562, z:11300, rotation:0, frame:"up"}, {x:-12074, y:-2583, z:11307, rotation:0, frame:"up"}, {x:-12074, y:-2603, z:11313, rotation:0, frame:"up"}, {x:-12074, y:-2624, z:11320, rotation:0, frame:"up"}, {x:-12074, y:-2645, z:11327, rotation:0, frame:"up"}, {x:-12074, y:-2665, z:11333, rotation:0, frame:"up"}, {x:-12074, y:-2686, z:11340, rotation:0, frame:"up"}, {x:-12074, y:-2707, z:11347, rotation:0, frame:"up"}, {x:-12074, y:-2727, z:11353, rotation:0, frame:"up"}, {x:-12074, y:-2748, z:11360, rotation:0, frame:"up"}, {x:-12074, y:-2769, z:11367, rotation:0, frame:"up"}, {x:-12074, y:-2789, z:11374, rotation:0, frame:"up"}, {x:-12074, y:-2810, z:11380, rotation:0, frame:"up"}, {x:-12074, y:-2831, z:11387, rotation:0, frame:"up"}, {x:-12074, y:-2851, z:11394, rotation:0, frame:"up"}, {x:-12074, y:-2872, z:11400, rotation:0, frame:"up"}, {x:-12074, y:-2893, z:11407, rotation:0, frame:"up"}, {x:-12074, y:-2913, z:11414, rotation:0, frame:"up"}, {x:-12074, y:-2934, z:11421, rotation:0, frame:"up"}, {x:-12074, y:-2955, z:11427, rotation:0, frame:"up"}, {x:-12074, y:-2975, z:11434, rotation:0, frame:"up"}, {x:-12074, y:-2996, z:11441, rotation:0, frame:"up"}, {x:-12074, y:-3017, z:11447, rotation:0, frame:"up"}, {x:-12074, y:-3037, z:11454, rotation:0, frame:"up"}, {x:-12074, y:-3058, z:11461, rotation:0, frame:"up"}, {x:-12074, y:-3079, z:11467, rotation:0, frame:"up"}, {x:-12074, y:-3099, z:11474, rotation:0, frame:"up"}, {x:-12074, y:-3120, z:11481, rotation:0, frame:"up"}, {x:-12074, y:-3141, z:11488, rotation:0, frame:"up"}, {x:-12074, y:-3161, z:11494, rotation:0, frame:"up"}, {x:-12074, y:-3182, z:11501, rotation:0, frame:"up"}, {x:-12074, y:-3203, z:11508, rotation:-1, frame:"up"}, {x:-12075, y:-3223, z:11514, rotation:-2, frame:"up"}, {x:-12077, y:-3244, z:11521, rotation:-3, frame:"up"}, {x:-12080, y:-3265, z:11528, rotation:-4, frame:"up"}, {x:-12084, y:-3285, z:11534, rotation:-5, frame:"up"}, {x:-12089, y:-3306, z:11541, rotation:-6, frame:"up"}, {x:-12095, y:-3327, z:11548, rotation:-7, frame:"up"}, {x:-12102, y:-3347, z:11554, rotation:-7, frame:"up"}, {x:-12109, y:-3368, z:11561, rotation:-8, frame:"up"}, {x:-12117, y:-3389, z:11567, rotation:-9, frame:"up"}, {x:-12126, y:-3409, z:11574, rotation:-10, frame:"up"}, {x:-12136, y:-3430, z:11581, rotation:-11, frame:"up"}, {x:-12147, y:-3451, z:11587, rotation:-11, frame:"up"}, {x:-12158, y:-3471, z:11594, rotation:-12, frame:"up"}, {x:-12170, y:-3492, z:11600, rotation:-13, frame:"up"}, {x:-12183, y:-3513, z:11607, rotation:-14, frame:"up"}, {x:-12197, y:-3533, z:11613, rotation:-15, frame:"up"}, {x:-12212, y:-3554, z:11620, rotation:-15, frame:"up"}, {x:-12227, y:-3575, z:11626, rotation:-16, frame:"up"}, {x:-12243, y:-3595, z:11633, rotation:-17, frame:"up"}, {x:-12260, y:-3616, z:11639, rotation:-18, frame:"up"}, {x:-12278, y:-3637, z:11646, rotation:-19, frame:"up"}, {x:-12297, y:-3657, z:11652, rotation:-19, frame:"up"}, {x:-12316, y:-3678, z:11658, rotation:-20, frame:"up"}, {x:-12336, y:-3699, z:11665, rotation:-21, frame:"up"}, {x:-12357, y:-3719, z:11671, rotation:-22, frame:"up"}, {x:-12379, y:-3740, z:11678, rotation:-23, frame:"up"}, {x:-12402, y:-3761, z:11684, rotation:-23, frame:"up"}, {x:-12424, y:-3781, z:11690, rotation:-23, frame:"up"}, {x:-12447, y:-3802, z:11697, rotation:-23, frame:"up"}, {x:-12470, y:-3823, z:11703, rotation:-23, frame:"up"}, {x:-12492, y:-3843, z:11710, rotation:-23, frame:"up"}, {x:-12515, y:-3864, z:11716, rotation:-23, frame:"up"}, {x:-12538, y:-3885, z:11722, rotation:-23, frame:"up"}, {x:-12560, y:-3905, z:11729, rotation:-23, frame:"up"}, {x:-12583, y:-3926, z:11735, rotation:-23, frame:"up"}, {x:-12606, y:-3947, z:11741, rotation:-23, frame:"up"}, {x:-12628, y:-3967, z:11748, rotation:-23, frame:"up"}, {x:-12651, y:-3988, z:11754, rotation:-23, frame:"up"}, {x:-12674, y:-4009, z:11761, rotation:-23, frame:"up"}, {x:-12696, y:-4029, z:11767, rotation:-23, frame:"up"}, {x:-12719, y:-4050, z:11773, rotation:-23, frame:"up"}, {x:-12742, y:-4071, z:11780, rotation:-23, frame:"up"}, {x:-12764, y:-4091, z:11786, rotation:-23, frame:"up"}, {x:-12787, y:-4112, z:11792, rotation:-23, frame:"up"}, {x:-12810, y:-4133, z:11799, rotation:-23, frame:"up"}, {x:-12832, y:-4153, z:11805, rotation:-23, frame:"up"}, {x:-12855, y:-4174, z:11812, rotation:-23, frame:"up"}, {x:-12878, y:-4195, z:11818, rotation:-23, frame:"up"}, {x:-12900, y:-4215, z:11824, rotation:-23, frame:"up"}, {x:-12923, y:-4236, z:11831, rotation:-23, frame:"up"}, {x:-12946, y:-4257, z:11837, rotation:-23, frame:"up"}, {x:-12968, y:-4277, z:11844, rotation:-23, frame:"up"}, {x:-12991, y:-4298, z:11850, rotation:-23, frame:"up"}, {x:-13014, y:-4319, z:11856, rotation:-23, frame:"up"}, {x:-13036, y:-4339, z:11863, rotation:-23, frame:"up"}, {x:-13059, y:-4360, z:11869, rotation:-23, frame:"up"}, {x:-13082, y:-4381, z:11875, rotation:-23, frame:"up"}, {x:-13104, y:-4401, z:11882, rotation:-23, frame:"up"}, {x:-13127, y:-4422, z:11888, rotation:-23, frame:"up"}, {x:-13150, y:-4443, z:11895, rotation:-23, frame:"up"}, {x:-13172, y:-4463, z:11901, rotation:-23, frame:"up"}, {x:-13195, y:-4484, z:11907, rotation:-23, frame:"up"}, {x:-13218, y:-4505, z:11914, rotation:-23, frame:"up"}, {x:-13240, y:-4525, z:11920, rotation:-23, frame:"up"}, {x:-13263, y:-4546, z:11926, rotation:-23, frame:"up"}, {x:-13286, y:-4567, z:11933, rotation:-23, frame:"up"}, {x:-13308, y:-4587, z:11939, rotation:-23, frame:"up"}, {x:-13331, y:-4608, z:11946, rotation:-23, frame:"up"}, {x:-13354, y:-4629, z:11952, rotation:-23, frame:"up"}, {x:-13376, y:-4649, z:11958, rotation:-23, frame:"up"}, {x:-13399, y:-4670, z:11965, rotation:-23, frame:"up"}, {x:-13422, y:-4691, z:11971, rotation:-23, frame:"up"}, {x:-13444, y:-4711, z:11978, rotation:-23, frame:"up"}, {x:-13467, y:-4732, z:11984, rotation:-23, frame:"up"}, {x:-13490, y:-4753, z:11990, rotation:-23, frame:"up"}, {x:-13512, y:-4773, z:11997, rotation:-23, frame:"up"}, {x:-13535, y:-4794, z:12003, rotation:-23, frame:"up"}, {x:-13558, y:-4815, z:12009, rotation:-23, frame:"up"}, {x:-13580, y:-4835, z:12016, rotation:-23, frame:"up"}, {x:-13603, y:-4856, z:12022, rotation:-23, frame:"up"}, {x:-13626, y:-4877, z:12029, rotation:-23, frame:"up"}, {x:-13648, y:-4897, z:12035, rotation:-23, frame:"up"}, {x:-13671, y:-4918, z:12041, rotation:-23, frame:"up"}, {x:-13694, y:-4939, z:12048, rotation:-23, frame:"up"}, {x:-13716, y:-4959, z:12054, rotation:-23, frame:"up"}, {x:-13739, y:-4980, z:12060, rotation:-23, frame:"up"}, {x:-13762, y:-5001, z:12067, rotation:-23, frame:"up"}, {x:-13784, y:-5021, z:12073, rotation:-23, frame:"up"}, {x:-13807, y:-5042, z:12080, rotation:-23, frame:"up"}, {x:-13830, y:-5063, z:12086, rotation:-23, frame:"up"}, {x:-13852, y:-5083, z:12092, rotation:-23, frame:"up"}, {x:-13875, y:-5104, z:12099, rotation:-23, frame:"up"}, {x:-13898, y:-5125, z:12105, rotation:-23, frame:"up"}, {x:-13920, y:-5145, z:12112, rotation:-23, frame:"up"}, {x:-13943, y:-5166, z:12118, rotation:-23, frame:"up"}, {x:-13966, y:-5187, z:12124, rotation:-23, frame:"up"}, {x:-13988, y:-5207, z:12131, rotation:-23, frame:"up"}, {x:-14011, y:-5228, z:12137, rotation:-23, frame:"up"}, {x:-14034, y:-5249, z:12143, rotation:-23, frame:"up"}, {x:-14056, y:-5269, z:12150, rotation:-23, frame:"up"}, {x:-14079, y:-5290, z:12156, rotation:-23, frame:"up"}, {x:-14102, y:-5311, z:12163, rotation:-23, frame:"up"}, {x:-14124, y:-5331, z:12169, rotation:-23, frame:"up"}, {x:-14147, y:-5352, z:12175, rotation:-23, frame:"up"}, {x:-14170, y:-5373, z:12182, rotation:-23, frame:"up"}, {x:-14192, y:-5393, z:12188, rotation:-23, frame:"up"}, {x:-14215, y:-5414, z:12194, rotation:-23, frame:"up"});
var hareLap3 = new Array({arrName:"lapThree", x:275, y:200, z:100, rotation:0, frame:"forward"}, {x:275, y:200, z:109, rotation:0, frame:"forward"}, {x:275, y:200, z:118, rotation:0, frame:"forward"}, {x:275, y:200, z:127, rotation:0, frame:"forward"}, {x:275, y:200, z:136, rotation:0, frame:"forward"}, {x:275, y:200, z:145, rotation:0, frame:"forward"}, {x:275, y:200, z:154, rotation:0, frame:"forward"}, {x:275, y:200, z:163, rotation:0, frame:"forward"}, {x:275, y:200, z:172, rotation:0, frame:"forward"}, {x:275, y:200, z:181, rotation:0, frame:"forward"}, {x:275, y:200, z:190, rotation:0, frame:"forward"}, {x:275, y:200, z:199, rotation:0, frame:"forward"}, {x:275, y:200, z:208, rotation:0, frame:"forward"}, {x:275, y:200, z:217, rotation:0, frame:"forward"}, {x:275, y:201, z:226, rotation:0, frame:"forward"}, {x:275, y:213, z:235, rotation:0, frame:"down"}, {x:275, y:232, z:244, rotation:0, frame:"down"}, {x:275, y:251, z:252, rotation:0, frame:"down"}, {x:275, y:269, z:261, rotation:0, frame:"down"}, {x:275, y:288, z:270, rotation:0, frame:"down"}, {x:275, y:307, z:278, rotation:0, frame:"down"}, {x:275, y:326, z:287, rotation:0, frame:"down"}, {x:275, y:344, z:296, rotation:0, frame:"down"}, {x:275, y:363, z:305, rotation:0, frame:"down"}, {x:275, y:382, z:313, rotation:0, frame:"down"}, {x:275, y:401, z:322, rotation:0, frame:"down"}, {x:275, y:419, z:331, rotation:0, frame:"down"}, {x:275, y:438, z:340, rotation:0, frame:"down"}, {x:275, y:457, z:348, rotation:0, frame:"down"}, {x:275, y:476, z:357, rotation:0, frame:"down"}, {x:275, y:494, z:366, rotation:0, frame:"down"}, {x:275, y:513, z:375, rotation:0, frame:"down"}, {x:275, y:532, z:383, rotation:0, frame:"down"}, {x:275, y:551, z:392, rotation:0, frame:"forward"}, {x:275, y:557, z:401, rotation:0, frame:"forward"}, {x:275, y:563, z:410, rotation:0, frame:"forward"}, {x:275, y:568, z:419, rotation:0, frame:"forward"}, {x:275, y:572, z:428, rotation:0, frame:"forward"}, {x:275, y:575, z:437, rotation:0, frame:"forward"}, {x:275, y:577, z:446, rotation:0, frame:"forward"}, {x:275, y:578, z:455, rotation:0, frame:"forward"}, {x:275, y:578, z:464, rotation:0, frame:"forward"}, {x:275, y:578, z:473, rotation:0, frame:"forward"}, {x:275, y:578, z:482, rotation:0, frame:"forward"}, {x:275, y:578, z:491, rotation:0, frame:"forward"}, {x:275, y:578, z:500, rotation:0, frame:"forward"}, {x:275, y:578, z:509, rotation:0, frame:"forward"}, {x:275, y:578, z:518, rotation:0, frame:"forward"}, {x:275, y:578, z:527, rotation:0, frame:"forward"}, {x:275, y:578, z:536, rotation:0, frame:"forward"}, {x:275, y:578, z:545, rotation:0, frame:"forward"}, {x:275, y:578, z:554, rotation:0, frame:"forward"}, {x:275, y:578, z:563, rotation:0, frame:"forward"}, {x:275, y:578, z:572, rotation:0, frame:"forward"}, {x:275, y:578, z:581, rotation:0, frame:"forward"}, {x:275, y:578, z:590, rotation:0, frame:"forward"}, {x:275, y:578, z:599, rotation:0, frame:"forward"}, {x:275, y:578, z:608, rotation:0, frame:"forward"}, {x:275, y:578, z:617, rotation:0, frame:"forward"}, {x:275, y:578, z:626, rotation:0, frame:"forward"}, {x:275, y:578, z:635, rotation:0, frame:"forward"}, {x:275, y:578, z:644, rotation:0, frame:"forward"}, {x:275, y:578, z:653, rotation:0, frame:"forward"}, {x:275, y:578, z:662, rotation:0, frame:"forward"}, {x:275, y:578, z:671, rotation:0, frame:"forward"}, {x:275, y:578, z:680, rotation:0, frame:"forward"}, {x:275, y:578, z:689, rotation:0, frame:"forward"}, {x:275, y:578, z:698, rotation:0, frame:"forward"}, {x:275, y:578, z:707, rotation:0, frame:"forward"}, {x:275, y:578, z:716, rotation:0, frame:"forward"}, {x:275, y:578, z:725, rotation:0, frame:"forward"}, {x:275, y:578, z:734, rotation:0, frame:"forward"}, {x:275, y:578, z:743, rotation:0, frame:"forward"}, {x:275, y:578, z:752, rotation:0, frame:"forward"}, {x:275, y:578, z:761, rotation:0, frame:"forward"}, {x:275, y:578, z:770, rotation:0, frame:"forward"}, {x:275, y:578, z:779, rotation:0, frame:"forward"}, {x:275, y:578, z:788, rotation:0, frame:"forward"}, {x:275, y:578, z:797, rotation:0, frame:"forward"}, {x:275, y:578, z:806, rotation:0, frame:"forward"}, {x:275, y:578, z:815, rotation:0, frame:"forward"}, {x:275, y:578, z:824, rotation:0, frame:"forward"}, {x:275, y:578, z:833, rotation:0, frame:"forward"}, {x:275, y:578, z:842, rotation:0, frame:"forward"}, {x:275, y:578, z:851, rotation:0, frame:"forward"}, {x:275, y:579, z:860, rotation:0, frame:"forward"}, {x:275, y:591, z:868, rotation:0, frame:"down"}, {x:275, y:610, z:877, rotation:0, frame:"down"}, {x:275, y:628, z:886, rotation:0, frame:"down"}, {x:275, y:647, z:895, rotation:-1, frame:"down"}, {x:274, y:666, z:903, rotation:-2, frame:"down"}, {x:272, y:685, z:912, rotation:-2, frame:"down"}, {x:269, y:703, z:921, rotation:-3, frame:"forward"}, {x:265, y:710, z:930, rotation:-4, frame:"forward"}, {x:260, y:716, z:938, rotation:-4, frame:"forward"}, {x:255, y:721, z:947, rotation:-5, frame:"forward"}, {x:248, y:725, z:956, rotation:-6, frame:"forward"}, {x:241, y:728, z:965, rotation:-6, frame:"forward"}, {x:233, y:730, z:974, rotation:-7, frame:"forward"}, {x:224, y:731, z:983, rotation:-7, frame:"forward"}, {x:215, y:731, z:992, rotation:-8, frame:"forward"}, {x:204, y:731, z:1000, rotation:-9, frame:"forward"}, {x:193, y:731, z:1009, rotation:-9, frame:"forward"}, {x:181, y:731, z:1018, rotation:-10, frame:"forward"}, {x:168, y:731, z:1027, rotation:-10, frame:"forward"}, {x:155, y:731, z:1036, rotation:-11, frame:"forward"}, {x:140, y:731, z:1044, rotation:-12, frame:"forward"}, {x:125, y:731, z:1053, rotation:-12, frame:"forward"}, {x:109, y:731, z:1062, rotation:-13, frame:"forward"}, {x:92, y:731, z:1071, rotation:-14, frame:"forward"}, {x:75, y:731, z:1080, rotation:-14, frame:"forward"}, {x:56, y:731, z:1088, rotation:-15, frame:"forward"}, {x:37, y:731, z:1097, rotation:-15, frame:"forward"}, {x:17, y:731, z:1106, rotation:-16, frame:"forward"}, {x:-4, y:731, z:1114, rotation:-17, frame:"forward"}, {x:-25, y:731, z:1123, rotation:-17, frame:"forward"}, {x:-48, y:731, z:1132, rotation:-18, frame:"forward"}, {x:-71, y:731, z:1140, rotation:-18, frame:"forward"}, {x:-95, y:731, z:1149, rotation:-19, frame:"forward"}, {x:-120, y:731, z:1158, rotation:-20, frame:"forward"}, {x:-145, y:731, z:1166, rotation:-20, frame:"forward"}, {x:-172, y:730, z:1175, rotation:-21, frame:"forward"}, {x:-198, y:718, z:1183, rotation:-21, frame:"up"}, {x:-225, y:699, z:1192, rotation:-21, frame:"up"}, {x:-252, y:680, z:1200, rotation:-21, frame:"up"}, {x:-278, y:662, z:1209, rotation:-21, frame:"up"}, {x:-305, y:643, z:1217, rotation:-21, frame:"up"}, {x:-332, y:624, z:1225, rotation:-21, frame:"up"}, {x:-358, y:605, z:1234, rotation:-21, frame:"up"}, {x:-385, y:587, z:1242, rotation:-21, frame:"up"}, {x:-412, y:568, z:1250, rotation:-21, frame:"up"}, {x:-438, y:549, z:1259, rotation:-21, frame:"up"}, {x:-465, y:530, z:1267, rotation:-21, frame:"up"}, {x:-492, y:512, z:1275, rotation:-21, frame:"up"}, {x:-518, y:493, z:1284, rotation:-21, frame:"up"}, {x:-545, y:474, z:1292, rotation:-21, frame:"up"}, {x:-572, y:455, z:1300, rotation:-21, frame:"up"}, {x:-598, y:437, z:1309, rotation:-21, frame:"up"}, {x:-625, y:418, z:1317, rotation:-21, frame:"up"}, {x:-652, y:399, z:1325, rotation:-21, frame:"up"}, {x:-678, y:380, z:1334, rotation:-21, frame:"up"}, {x:-705, y:362, z:1342, rotation:-21, frame:"up"}, {x:-732, y:343, z:1350, rotation:-21, frame:"up"}, {x:-758, y:324, z:1359, rotation:-21, frame:"up"}, {x:-785, y:305, z:1367, rotation:-21, frame:"up"}, {x:-812, y:287, z:1376, rotation:-21, frame:"up"}, {x:-838, y:268, z:1384, rotation:-21, frame:"up"}, {x:-865, y:249, z:1392, rotation:-21, frame:"up"}, {x:-892, y:230, z:1401, rotation:-21, frame:"up"}, {x:-918, y:212, z:1409, rotation:-21, frame:"up"}, {x:-945, y:193, z:1417, rotation:-21, frame:"forward"}, {x:-972, y:186, z:1426, rotation:-21, frame:"forward"}, {x:-998, y:180, z:1434, rotation:-21, frame:"forward"}, {x:-1025, y:175, z:1443, rotation:-21, frame:"forward"}, {x:-1052, y:171, z:1451, rotation:-21, frame:"forward"}, {x:-1078, y:168, z:1460, rotation:-20, frame:"forward"}, {x:-1104, y:166, z:1469, rotation:-19, frame:"forward"}, {x:-1129, y:165, z:1477, rotation:-18, frame:"forward"}, {x:-1153, y:165, z:1486, rotation:-18, frame:"forward"}, {x:-1176, y:165, z:1495, rotation:-17, frame:"forward"}, {x:-1199, y:165, z:1503, rotation:-16, frame:"forward"}, {x:-1220, y:165, z:1512, rotation:-16, frame:"forward"}, {x:-1240, y:165, z:1521, rotation:-15, frame:"forward"}, {x:-1260, y:165, z:1529, rotation:-14, frame:"forward"}, {x:-1279, y:165, z:1538, rotation:-14, frame:"forward"}, {x:-1297, y:165, z:1547, rotation:-13, frame:"forward"}, {x:-1314, y:165, z:1556, rotation:-12, frame:"forward"}, {x:-1330, y:165, z:1564, rotation:-12, frame:"forward"}, {x:-1345, y:165, z:1573, rotation:-11, frame:"forward"}, {x:-1359, y:165, z:1582, rotation:-10, frame:"forward"}, {x:-1373, y:165, z:1591, rotation:-10, frame:"forward"}, {x:-1385, y:165, z:1600, rotation:-9, frame:"forward"}, {x:-1397, y:165, z:1608, rotation:-8, frame:"forward"}, {x:-1408, y:165, z:1617, rotation:-8, frame:"forward"}, {x:-1418, y:165, z:1626, rotation:-7, frame:"forward"}, {x:-1427, y:165, z:1635, rotation:-6, frame:"forward"}, {x:-1435, y:165, z:1644, rotation:-6, frame:"forward"}, {x:-1442, y:165, z:1653, rotation:-5, frame:"forward"}, {x:-1449, y:165, z:1662, rotation:-4, frame:"forward"}, {x:-1454, y:165, z:1671, rotation:-4, frame:"forward"}, {x:-1459, y:165, z:1680, rotation:-3, frame:"forward"}, {x:-1463, y:165, z:1689, rotation:-2, frame:"forward"}, {x:-1466, y:165, z:1697, rotation:-1, frame:"forward"}, {x:-1468, y:165, z:1706, rotation:-1, frame:"forward"}, {x:-1468, y:165, z:1715, rotation:0, frame:"forward"}, {x:-1468, y:165, z:1724, rotation:0, frame:"forward"}, {x:-1468, y:165, z:1733, rotation:1, frame:"forward"}, {x:-1467, y:165, z:1742, rotation:2, frame:"forward"}, {x:-1465, y:165, z:1751, rotation:2, frame:"forward"}, {x:-1462, y:165, z:1760, rotation:3, frame:"forward"}, {x:-1458, y:165, z:1769, rotation:4, frame:"forward"}, {x:-1454, y:164, z:1778, rotation:4, frame:"forward"}, {x:-1448, y:152, z:1787, rotation:5, frame:"up"}, {x:-1442, y:134, z:1796, rotation:6, frame:"up"}, {x:-1434, y:115, z:1804, rotation:6, frame:"up"}, {x:-1426, y:96, z:1813, rotation:7, frame:"up"}, {x:-1418, y:77, z:1821, rotation:7, frame:"forward"}, {x:-1408, y:71, z:1830, rotation:8, frame:"forward"}, {x:-1398, y:65, z:1839, rotation:9, frame:"forward"}, {x:-1386, y:59, z:1848, rotation:9, frame:"forward"}, {x:-1374, y:55, z:1857, rotation:10, frame:"forward"}, {x:-1362, y:53, z:1865, rotation:10, frame:"forward"}, {x:-1348, y:51, z:1874, rotation:10, frame:"forward"}, {x:-1335, y:50, z:1883, rotation:9, frame:"forward"}, {x:-1323, y:50, z:1892, rotation:8, frame:"forward"}, {x:-1312, y:50, z:1901, rotation:8, frame:"forward"}, {x:-1302, y:50, z:1909, rotation:7, frame:"forward"}, {x:-1293, y:50, z:1918, rotation:6, frame:"forward"}, {x:-1285, y:50, z:1927, rotation:6, frame:"forward"}, {x:-1277, y:50, z:1936, rotation:5, frame:"forward"}, {x:-1271, y:50, z:1945, rotation:4, frame:"forward"}, {x:-1265, y:50, z:1954, rotation:4, frame:"forward"}, {x:-1260, y:50, z:1963, rotation:3, frame:"forward"}, {x:-1256, y:50, z:1972, rotation:2, frame:"forward"}, {x:-1253, y:50, z:1981, rotation:1, frame:"forward"}, {x:-1251, y:50, z:1990, rotation:1, frame:"forward"}, {x:-1251, y:50, z:1999, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2008, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2017, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2026, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2035, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2044, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2053, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2062, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2071, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2080, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2089, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2098, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2107, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2116, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2125, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2134, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2143, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2152, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2161, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2170, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2179, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2188, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2197, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2206, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2215, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2224, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2233, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2242, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2251, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2260, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2269, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2278, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2287, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2296, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2305, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2314, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2323, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2332, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2341, rotation:0, frame:"forward"}, {x:-1251, y:50, z:2350, rotation:-1, frame:"forward"}, {x:-1252, y:50, z:2359, rotation:-2, frame:"forward"}, {x:-1254, y:50, z:2368, rotation:-2, frame:"forward"}, {x:-1257, y:50, z:2377, rotation:-3, frame:"forward"}, {x:-1261, y:50, z:2386, rotation:-4, frame:"forward"}, {x:-1265, y:50, z:2394, rotation:-4, frame:"forward"}, {x:-1271, y:50, z:2403, rotation:-5, frame:"forward"}, {x:-1277, y:50, z:2412, rotation:-6, frame:"forward"}, {x:-1285, y:50, z:2421, rotation:-6, frame:"forward"}, {x:-1293, y:50, z:2430, rotation:-7, frame:"forward"}, {x:-1301, y:50, z:2439, rotation:-7, frame:"forward"}, {x:-1311, y:50, z:2448, rotation:-8, frame:"forward"}, {x:-1321, y:50, z:2457, rotation:-9, frame:"forward"}, {x:-1333, y:50, z:2466, rotation:-9, frame:"forward"}, {x:-1345, y:50, z:2474, rotation:-10, frame:"forward"}, {x:-1357, y:50, z:2483, rotation:-10, frame:"forward"}, {x:-1371, y:50, z:2492, rotation:-11, frame:"forward"}, {x:-1385, y:51, z:2501, rotation:-12, frame:"forward"}, {x:-1401, y:63, z:2509, rotation:-12, frame:"down"}, {x:-1417, y:82, z:2518, rotation:-13, frame:"down"}, {x:-1433, y:100, z:2526, rotation:-14, frame:"down"}, {x:-1451, y:119, z:2535, rotation:-14, frame:"down"}, {x:-1469, y:138, z:2543, rotation:-15, frame:"forward"}, {x:-1489, y:145, z:2552, rotation:-15, frame:"forward"}, {x:-1509, y:151, z:2561, rotation:-16, frame:"forward"}, {x:-1529, y:156, z:2569, rotation:-17, frame:"forward"}, {x:-1551, y:160, z:2578, rotation:-17, frame:"forward"}, {x:-1573, y:163, z:2586, rotation:-18, frame:"forward"}, {x:-1597, y:165, z:2595, rotation:-18, frame:"forward"}, {x:-1621, y:165, z:2604, rotation:-19, frame:"forward"}, {x:-1645, y:165, z:2612, rotation:-20, frame:"forward"}, {x:-1671, y:165, z:2621, rotation:-20, frame:"forward"}, {x:-1697, y:166, z:2630, rotation:-21, frame:"forward"}, {x:-1724, y:178, z:2638, rotation:-21, frame:"down"}, {x:-1751, y:197, z:2646, rotation:-21, frame:"down"}, {x:-1777, y:216, z:2655, rotation:-21, frame:"down"}, {x:-1804, y:235, z:2663, rotation:-21, frame:"down"}, {x:-1831, y:253, z:2671, rotation:-21, frame:"down"}, {x:-1857, y:272, z:2680, rotation:-21, frame:"down"}, {x:-1884, y:291, z:2688, rotation:-21, frame:"down"}, {x:-1911, y:310, z:2697, rotation:-21, frame:"forward"}, {x:-1937, y:317, z:2705, rotation:-21, frame:"forward"}, {x:-1964, y:323, z:2714, rotation:-21, frame:"forward"}, {x:-1991, y:328, z:2722, rotation:-21, frame:"forward"}, {x:-2017, y:332, z:2731, rotation:-21, frame:"forward"}, {x:-2044, y:335, z:2739, rotation:-21, frame:"forward"}, {x:-2071, y:336, z:2748, rotation:-21, frame:"forward"}, {x:-2097, y:337, z:2756, rotation:-21, frame:"forward"}, {x:-2124, y:337, z:2765, rotation:-21, frame:"forward"}, {x:-2151, y:337, z:2774, rotation:-21, frame:"forward"}, {x:-2177, y:337, z:2782, rotation:-21, frame:"forward"}, {x:-2204, y:337, z:2791, rotation:-21, frame:"forward"}, {x:-2231, y:337, z:2800, rotation:-21, frame:"forward"}, {x:-2257, y:337, z:2808, rotation:-21, frame:"forward"}, {x:-2284, y:337, z:2817, rotation:-21, frame:"forward"}, {x:-2311, y:337, z:2825, rotation:-21, frame:"forward"}, {x:-2337, y:337, z:2834, rotation:-21, frame:"forward"}, {x:-2364, y:337, z:2843, rotation:-21, frame:"forward"}, {x:-2391, y:337, z:2851, rotation:-21, frame:"forward"}, {x:-2417, y:337, z:2860, rotation:-21, frame:"forward"}, {x:-2444, y:337, z:2869, rotation:-21, frame:"forward"}, {x:-2471, y:337, z:2877, rotation:-21, frame:"forward"}, {x:-2497, y:337, z:2886, rotation:-21, frame:"forward"}, {x:-2524, y:337, z:2894, rotation:-21, frame:"forward"}, {x:-2551, y:337, z:2903, rotation:-21, frame:"forward"}, {x:-2577, y:337, z:2912, rotation:-21, frame:"forward"}, {x:-2604, y:337, z:2920, rotation:-21, frame:"forward"}, {x:-2631, y:337, z:2929, rotation:-21, frame:"forward"}, {x:-2657, y:337, z:2937, rotation:-21, frame:"forward"}, {x:-2684, y:337, z:2946, rotation:-21, frame:"forward"}, {x:-2711, y:337, z:2955, rotation:-21, frame:"forward"}, {x:-2737, y:337, z:2963, rotation:-21, frame:"forward"}, {x:-2764, y:337, z:2972, rotation:-21, frame:"forward"}, {x:-2791, y:337, z:2981, rotation:-21, frame:"forward"}, {x:-2817, y:337, z:2989, rotation:-21, frame:"forward"}, {x:-2844, y:337, z:2998, rotation:-21, frame:"forward"}, {x:-2871, y:337, z:3006, rotation:-21, frame:"forward"}, {x:-2897, y:337, z:3015, rotation:-21, frame:"forward"}, {x:-2924, y:337, z:3024, rotation:-21, frame:"forward"}, {x:-2951, y:337, z:3032, rotation:-21, frame:"forward"}, {x:-2977, y:337, z:3041, rotation:-21, frame:"forward"}, {x:-3004, y:337, z:3050, rotation:-21, frame:"forward"}, {x:-3031, y:337, z:3058, rotation:-21, frame:"forward"}, {x:-3057, y:337, z:3067, rotation:-21, frame:"forward"}, {x:-3084, y:337, z:3075, rotation:-21, frame:"forward"}, {x:-3111, y:337, z:3084, rotation:-21, frame:"forward"}, {x:-3137, y:337, z:3093, rotation:-21, frame:"forward"}, {x:-3164, y:337, z:3101, rotation:-21, frame:"forward"}, {x:-3191, y:337, z:3110, rotation:-21, frame:"forward"}, {x:-3217, y:337, z:3118, rotation:-21, frame:"forward"}, {x:-3244, y:337, z:3127, rotation:-21, frame:"forward"}, {x:-3271, y:337, z:3136, rotation:-21, frame:"forward"}, {x:-3297, y:337, z:3144, rotation:-21, frame:"forward"}, {x:-3324, y:337, z:3153, rotation:-21, frame:"forward"}, {x:-3351, y:337, z:3162, rotation:-21, frame:"forward"}, {x:-3377, y:337, z:3170, rotation:-21, frame:"forward"}, {x:-3404, y:337, z:3179, rotation:-21, frame:"forward"}, {x:-3431, y:337, z:3187, rotation:-21, frame:"forward"}, {x:-3457, y:337, z:3196, rotation:-21, frame:"forward"}, {x:-3484, y:337, z:3205, rotation:-21, frame:"forward"}, {x:-3511, y:337, z:3213, rotation:-21, frame:"forward"}, {x:-3537, y:337, z:3222, rotation:-21, frame:"forward"}, {x:-3564, y:337, z:3231, rotation:-21, frame:"forward"}, {x:-3591, y:337, z:3239, rotation:-21, frame:"forward"}, {x:-3617, y:337, z:3248, rotation:-21, frame:"forward"}, {x:-3644, y:337, z:3256, rotation:-21, frame:"forward"}, {x:-3671, y:337, z:3265, rotation:-21, frame:"forward"}, {x:-3697, y:337, z:3274, rotation:-21, frame:"forward"}, {x:-3724, y:337, z:3282, rotation:-21, frame:"forward"}, {x:-3751, y:337, z:3291, rotation:-21, frame:"forward"}, {x:-3777, y:337, z:3299, rotation:-21, frame:"forward"}, {x:-3804, y:337, z:3308, rotation:-21, frame:"forward"}, {x:-3831, y:337, z:3317, rotation:-21, frame:"forward"}, {x:-3857, y:337, z:3325, rotation:-21, frame:"forward"}, {x:-3884, y:337, z:3334, rotation:-21, frame:"forward"}, {x:-3911, y:337, z:3343, rotation:-21, frame:"forward"}, {x:-3937, y:337, z:3351, rotation:-21, frame:"forward"}, {x:-3964, y:337, z:3360, rotation:-21, frame:"forward"}, {x:-3991, y:337, z:3368, rotation:-21, frame:"forward"}, {x:-4017, y:337, z:3377, rotation:-21, frame:"forward"}, {x:-4044, y:337, z:3386, rotation:-21, frame:"forward"}, {x:-4071, y:337, z:3394, rotation:-21, frame:"forward"}, {x:-4097, y:337, z:3403, rotation:-21, frame:"forward"}, {x:-4124, y:337, z:3412, rotation:-21, frame:"forward"}, {x:-4151, y:337, z:3420, rotation:-21, frame:"forward"}, {x:-4177, y:337, z:3429, rotation:-21, frame:"forward"}, {x:-4204, y:337, z:3437, rotation:-21, frame:"forward"}, {x:-4231, y:337, z:3446, rotation:-21, frame:"forward"}, {x:-4257, y:337, z:3455, rotation:-21, frame:"forward"}, {x:-4284, y:337, z:3463, rotation:-21, frame:"forward"}, {x:-4311, y:337, z:3472, rotation:-21, frame:"forward"}, {x:-4337, y:337, z:3480, rotation:-21, frame:"forward"}, {x:-4364, y:337, z:3489, rotation:-21, frame:"forward"}, {x:-4391, y:337, z:3498, rotation:-20, frame:"forward"}, {x:-4417, y:337, z:3506, rotation:-19, frame:"forward"}, {x:-4441, y:337, z:3515, rotation:-18, frame:"forward"}, {x:-4465, y:337, z:3524, rotation:-18, frame:"forward"}, {x:-4489, y:337, z:3532, rotation:-17, frame:"forward"}, {x:-4511, y:337, z:3541, rotation:-16, frame:"forward"}, {x:-4532, y:337, z:3550, rotation:-16, frame:"forward"}, {x:-4553, y:337, z:3558, rotation:-15, frame:"forward"}, {x:-4572, y:337, z:3567, rotation:-14, frame:"forward"}, {x:-4591, y:337, z:3576, rotation:-14, frame:"forward"}, {x:-4609, y:337, z:3585, rotation:-13, frame:"forward"}, {x:-4626, y:337, z:3593, rotation:-12, frame:"forward"}, {x:-4642, y:337, z:3602, rotation:-12, frame:"forward"}, {x:-4657, y:337, z:3611, rotation:-11, frame:"forward"}, {x:-4672, y:337, z:3620, rotation:-10, frame:"forward"}, {x:-4685, y:337, z:3629, rotation:-10, frame:"forward"}, {x:-4698, y:337, z:3637, rotation:-9, frame:"forward"}, {x:-4709, y:337, z:3646, rotation:-8, frame:"forward"}, {x:-4720, y:337, z:3655, rotation:-8, frame:"forward"}, {x:-4730, y:337, z:3664, rotation:-7, frame:"forward"}, {x:-4739, y:337, z:3673, rotation:-6, frame:"forward"}, {x:-4747, y:337, z:3682, rotation:-6, frame:"forward"}, {x:-4755, y:337, z:3691, rotation:-5, frame:"forward"}, {x:-4761, y:337, z:3699, rotation:-4, frame:"forward"}, {x:-4767, y:337, z:3708, rotation:-4, frame:"forward"}, {x:-4771, y:337, z:3717, rotation:-3, frame:"forward"}, {x:-4775, y:337, z:3726, rotation:-2, frame:"forward"}, {x:-4778, y:337, z:3735, rotation:-1, frame:"forward"}, {x:-4780, y:337, z:3744, rotation:-1, frame:"forward"}, {x:-4781, y:337, z:3753, rotation:0, frame:"forward"}, {x:-4781, y:337, z:3762, rotation:0, frame:"forward"}, {x:-4781, y:337, z:3771, rotation:0, frame:"forward"}, {x:-4781, y:337, z:3780, rotation:0, frame:"forward"}, {x:-4781, y:337, z:3789, rotation:0, frame:"forward"}, {x:-4781, y:337, z:3798, rotation:0, frame:"forward"}, {x:-4781, y:337, z:3807, rotation:0, frame:"forward"}, {x:-4781, y:337, z:3816, rotation:0, frame:"forward"}, {x:-4781, y:337, z:3825, rotation:0, frame:"forward"}, {x:-4781, y:337, z:3834, rotation:0, frame:"forward"}, {x:-4781, y:337, z:3843, rotation:0, frame:"forward"}, {x:-4781, y:337, z:3852, rotation:0, frame:"forward"}, {x:-4781, y:337, z:3861, rotation:0, frame:"forward"}, {x:-4781, y:337, z:3870, rotation:0, frame:"forward"}, {x:-4781, y:337, z:3879, rotation:0, frame:"forward"}, {x:-4781, y:337, z:3888, rotation:0, frame:"forward"}, {x:-4781, y:337, z:3897, rotation:0, frame:"forward"}, {x:-4781, y:337, z:3906, rotation:0, frame:"forward"}, {x:-4781, y:337, z:3915, rotation:0, frame:"forward"}, {x:-4781, y:337, z:3924, rotation:0, frame:"forward"}, {x:-4781, y:337, z:3933, rotation:0, frame:"forward"}, {x:-4781, y:337, z:3942, rotation:0, frame:"forward"}, {x:-4781, y:337, z:3951, rotation:0, frame:"forward"}, {x:-4781, y:337, z:3960, rotation:0, frame:"forward"}, {x:-4781, y:337, z:3969, rotation:0, frame:"forward"}, {x:-4781, y:337, z:3978, rotation:0, frame:"forward"}, {x:-4781, y:337, z:3987, rotation:0, frame:"forward"}, {x:-4781, y:337, z:3996, rotation:0, frame:"forward"}, {x:-4781, y:337, z:4005, rotation:0, frame:"forward"}, {x:-4781, y:337, z:4014, rotation:0, frame:"forward"}, {x:-4781, y:337, z:4023, rotation:0, frame:"forward"}, {x:-4781, y:337, z:4032, rotation:0, frame:"forward"}, {x:-4781, y:337, z:4041, rotation:0, frame:"forward"}, {x:-4781, y:337, z:4050, rotation:0, frame:"forward"}, {x:-4781, y:337, z:4059, rotation:0, frame:"forward"}, {x:-4781, y:337, z:4068, rotation:0, frame:"forward"}, {x:-4781, y:337, z:4077, rotation:0, frame:"forward"}, {x:-4781, y:337, z:4086, rotation:0, frame:"forward"}, {x:-4781, y:337, z:4095, rotation:0, frame:"forward"}, {x:-4781, y:338, z:4104, rotation:0, frame:"forward"}, {x:-4781, y:350, z:4113, rotation:0, frame:"down"}, {x:-4781, y:369, z:4122, rotation:0, frame:"down"}, {x:-4781, y:388, z:4130, rotation:0, frame:"down"}, {x:-4781, y:406, z:4139, rotation:0, frame:"down"}, {x:-4781, y:425, z:4148, rotation:0, frame:"down"}, {x:-4781, y:444, z:4157, rotation:0, frame:"down"}, {x:-4781, y:463, z:4165, rotation:0, frame:"down"}, {x:-4781, y:481, z:4174, rotation:0, frame:"down"}, {x:-4781, y:500, z:4183, rotation:0, frame:"down"}, {x:-4781, y:519, z:4192, rotation:0, frame:"down"}, {x:-4781, y:538, z:4200, rotation:0, frame:"down"}, {x:-4781, y:556, z:4209, rotation:0, frame:"down"}, {x:-4781, y:575, z:4218, rotation:-1, frame:"down"}, {x:-4782, y:594, z:4226, rotation:-2, frame:"down"}, {x:-4784, y:613, z:4235, rotation:-2, frame:"down"}, {x:-4787, y:631, z:4244, rotation:-3, frame:"down"}, {x:-4791, y:650, z:4253, rotation:-4, frame:"down"}, {x:-4795, y:669, z:4261, rotation:-4, frame:"down"}, {x:-4801, y:688, z:4270, rotation:-5, frame:"down"}, {x:-4807, y:706, z:4278, rotation:-6, frame:"down"}, {x:-4815, y:725, z:4287, rotation:-6, frame:"down"}, {x:-4823, y:744, z:4296, rotation:-7, frame:"down"}, {x:-4831, y:763, z:4304, rotation:-7, frame:"down"}, {x:-4841, y:781, z:4313, rotation:-8, frame:"down"}, {x:-4851, y:800, z:4322, rotation:-9, frame:"down"}, {x:-4863, y:819, z:4330, rotation:-9, frame:"down"}, {x:-4875, y:838, z:4339, rotation:-10, frame:"down"}, {x:-4887, y:856, z:4347, rotation:-10, frame:"down"}, {x:-4901, y:875, z:4356, rotation:-11, frame:"down"}, {x:-4915, y:894, z:4364, rotation:-12, frame:"down"}, {x:-4931, y:913, z:4373, rotation:-12, frame:"down"}, {x:-4947, y:931, z:4381, rotation:-13, frame:"down"}, {x:-4963, y:950, z:4390, rotation:-14, frame:"down"}, {x:-4981, y:969, z:4398, rotation:-14, frame:"down"}, {x:-4999, y:988, z:4407, rotation:-15, frame:"down"}, {x:-5019, y:1006, z:4415, rotation:-15, frame:"down"}, {x:-5039, y:1025, z:4424, rotation:-16, frame:"down"}, {x:-5059, y:1044, z:4432, rotation:-17, frame:"down"}, {x:-5081, y:1063, z:4440, rotation:-17, frame:"down"}, {x:-5103, y:1081, z:4449, rotation:-18, frame:"down"}, {x:-5127, y:1100, z:4457, rotation:-18, frame:"down"}, {x:-5151, y:1119, z:4466, rotation:-19, frame:"down"}, {x:-5175, y:1138, z:4474, rotation:-20, frame:"down"}, {x:-5201, y:1156, z:4482, rotation:-20, frame:"down"}, {x:-5227, y:1175, z:4491, rotation:-21, frame:"down"}, {x:-5254, y:1194, z:4499, rotation:-21, frame:"down"}, {x:-5281, y:1213, z:4507, rotation:-21, frame:"down"}, {x:-5307, y:1231, z:4516, rotation:-21, frame:"down"}, {x:-5334, y:1250, z:4524, rotation:-21, frame:"down"}, {x:-5361, y:1269, z:4533, rotation:-20, frame:"down"}, {x:-5387, y:1288, z:4541, rotation:-19, frame:"down"}, {x:-5411, y:1306, z:4549, rotation:-18, frame:"down"}, {x:-5435, y:1325, z:4558, rotation:-18, frame:"down"}, {x:-5459, y:1344, z:4566, rotation:-17, frame:"down"}, {x:-5481, y:1363, z:4574, rotation:-16, frame:"down"}, {x:-5502, y:1381, z:4583, rotation:-16, frame:"down"}, {x:-5523, y:1400, z:4591, rotation:-15, frame:"down"}, {x:-5542, y:1419, z:4600, rotation:-14, frame:"down"}, {x:-5561, y:1438, z:4608, rotation:-14, frame:"down"}, {x:-5579, y:1456, z:4617, rotation:-13, frame:"down"}, {x:-5596, y:1475, z:4625, rotation:-12, frame:"down"}, {x:-5612, y:1494, z:4634, rotation:-12, frame:"down"}, {x:-5627, y:1513, z:4642, rotation:-11, frame:"down"}, {x:-5642, y:1531, z:4651, rotation:-10, frame:"down"}, {x:-5655, y:1550, z:4659, rotation:-10, frame:"down"}, {x:-5668, y:1569, z:4668, rotation:-9, frame:"down"}, {x:-5679, y:1588, z:4676, rotation:-8, frame:"down"}, {x:-5690, y:1606, z:4685, rotation:-8, frame:"down"}, {x:-5700, y:1625, z:4694, rotation:-7, frame:"down"}, {x:-5709, y:1644, z:4702, rotation:-6, frame:"down"}, {x:-5717, y:1663, z:4711, rotation:-6, frame:"down"}, {x:-5725, y:1681, z:4719, rotation:-5, frame:"down"}, {x:-5731, y:1700, z:4728, rotation:-4, frame:"down"}, {x:-5737, y:1719, z:4737, rotation:-4, frame:"down"}, {x:-5741, y:1738, z:4745, rotation:-3, frame:"down"}, {x:-5745, y:1756, z:4754, rotation:-2, frame:"down"}, {x:-5748, y:1775, z:4763, rotation:-1, frame:"down"}, {x:-5750, y:1794, z:4771, rotation:-1, frame:"down"}, {x:-5751, y:1813, z:4780, rotation:0, frame:"down"}, {x:-5751, y:1831, z:4789, rotation:0, frame:"down"}, {x:-5751, y:1850, z:4798, rotation:0, frame:"down"}, {x:-5751, y:1869, z:4806, rotation:0, frame:"down"}, {x:-5751, y:1888, z:4815, rotation:0, frame:"down"}, {x:-5751, y:1906, z:4824, rotation:0, frame:"down"}, {x:-5751, y:1925, z:4833, rotation:0, frame:"down"}, {x:-5751, y:1944, z:4841, rotation:0, frame:"forward"}, {x:-5751, y:1951, z:4850, rotation:0, frame:"forward"}, {x:-5751, y:1957, z:4859, rotation:0, frame:"forward"}, {x:-5751, y:1962, z:4868, rotation:0, frame:"forward"}, {x:-5751, y:1966, z:4877, rotation:0, frame:"forward"}, {x:-5751, y:1969, z:4886, rotation:0, frame:"forward"}, {x:-5751, y:1971, z:4895, rotation:0, frame:"forward"}, {x:-5751, y:1971, z:4904, rotation:0, frame:"forward"}, {x:-5751, y:1971, z:4913, rotation:0, frame:"forward"}, {x:-5751, y:1971, z:4922, rotation:0, frame:"forward"}, {x:-5751, y:1971, z:4931, rotation:0, frame:"forward"}, {x:-5751, y:1971, z:4940, rotation:0, frame:"forward"}, {x:-5751, y:1971, z:4949, rotation:0, frame:"forward"}, {x:-5751, y:1971, z:4958, rotation:0, frame:"forward"}, {x:-5751, y:1971, z:4967, rotation:0, frame:"forward"}, {x:-5751, y:1971, z:4976, rotation:0, frame:"forward"}, {x:-5751, y:1971, z:4985, rotation:0, frame:"forward"}, {x:-5751, y:1972, z:4994, rotation:0, frame:"forward"}, {x:-5751, y:1984, z:5003, rotation:0, frame:"down"}, {x:-5751, y:2003, z:5011, rotation:0, frame:"down"}, {x:-5751, y:2022, z:5020, rotation:0, frame:"down"}, {x:-5751, y:2040, z:5029, rotation:0, frame:"down"}, {x:-5751, y:2059, z:5038, rotation:0, frame:"down"}, {x:-5751, y:2078, z:5046, rotation:0, frame:"down"}, {x:-5751, y:2097, z:5055, rotation:0, frame:"forward"}, {x:-5751, y:2104, z:5064, rotation:0, frame:"forward"}, {x:-5751, y:2110, z:5073, rotation:0, frame:"forward"}, {x:-5751, y:2115, z:5082, rotation:0, frame:"forward"}, {x:-5751, y:2119, z:5091, rotation:0, frame:"forward"}, {x:-5751, y:2122, z:5100, rotation:0, frame:"forward"}, {x:-5751, y:2123, z:5109, rotation:0, frame:"forward"}, {x:-5751, y:2124, z:5118, rotation:0, frame:"forward"}, {x:-5751, y:2124, z:5127, rotation:0, frame:"forward"}, {x:-5751, y:2124, z:5136, rotation:0, frame:"forward"}, {x:-5751, y:2124, z:5145, rotation:0, frame:"forward"}, {x:-5751, y:2124, z:5154, rotation:0, frame:"forward"}, {x:-5751, y:2124, z:5163, rotation:0, frame:"forward"}, {x:-5751, y:2124, z:5172, rotation:0, frame:"forward"}, {x:-5751, y:2124, z:5181, rotation:0, frame:"forward"}, {x:-5751, y:2124, z:5190, rotation:0, frame:"forward"}, {x:-5751, y:2124, z:5199, rotation:0, frame:"forward"}, {x:-5751, y:2124, z:5208, rotation:0, frame:"forward"}, {x:-5751, y:2124, z:5217, rotation:0, frame:"forward"}, {x:-5751, y:2124, z:5226, rotation:0, frame:"forward"}, {x:-5751, y:2124, z:5235, rotation:0, frame:"forward"}, {x:-5751, y:2124, z:5244, rotation:-1, frame:"forward"}, {x:-5752, y:2124, z:5253, rotation:-2, frame:"forward"}, {x:-5754, y:2124, z:5262, rotation:-2, frame:"forward"}, {x:-5757, y:2124, z:5271, rotation:-3, frame:"forward"}, {x:-5761, y:2124, z:5280, rotation:-4, frame:"forward"}, {x:-5765, y:2124, z:5289, rotation:-4, frame:"forward"}, {x:-5771, y:2124, z:5297, rotation:-5, frame:"forward"}, {x:-5777, y:2124, z:5306, rotation:-6, frame:"forward"}, {x:-5785, y:2124, z:5315, rotation:-6, frame:"forward"}, {x:-5793, y:2124, z:5324, rotation:-7, frame:"forward"}, {x:-5801, y:2124, z:5333, rotation:-7, frame:"forward"}, {x:-5811, y:2124, z:5342, rotation:-8, frame:"forward"}, {x:-5821, y:2124, z:5351, rotation:-9, frame:"forward"}, {x:-5833, y:2124, z:5360, rotation:-9, frame:"forward"}, {x:-5845, y:2124, z:5368, rotation:-10, frame:"forward"}, {x:-5857, y:2124, z:5377, rotation:-10, frame:"forward"}, {x:-5871, y:2124, z:5386, rotation:-11, frame:"forward"}, {x:-5885, y:2124, z:5395, rotation:-12, frame:"forward"}, {x:-5901, y:2123, z:5404, rotation:-12, frame:"forward"}, {x:-5917, y:2111, z:5412, rotation:-13, frame:"up"}, {x:-5933, y:2092, z:5421, rotation:-14, frame:"up"}, {x:-5951, y:2074, z:5429, rotation:-14, frame:"up"}, {x:-5969, y:2055, z:5438, rotation:-15, frame:"up"}, {x:-5989, y:2036, z:5446, rotation:-15, frame:"up"}, {x:-6009, y:2017, z:5455, rotation:-16, frame:"up"}, {x:-6029, y:1999, z:5463, rotation:-17, frame:"up"}, {x:-6051, y:1980, z:5471, rotation:-17, frame:"up"}, {x:-6073, y:1961, z:5480, rotation:-18, frame:"up"}, {x:-6097, y:1942, z:5488, rotation:-18, frame:"up"}, {x:-6121, y:1924, z:5497, rotation:-19, frame:"up"}, {x:-6145, y:1905, z:5505, rotation:-20, frame:"up"}, {x:-6171, y:1886, z:5513, rotation:-20, frame:"up"}, {x:-6197, y:1867, z:5522, rotation:-21, frame:"up"}, {x:-6224, y:1849, z:5530, rotation:-21, frame:"up"}, {x:-6251, y:1830, z:5538, rotation:-21, frame:"up"}, {x:-6277, y:1811, z:5547, rotation:-21, frame:"up"}, {x:-6304, y:1792, z:5555, rotation:-21, frame:"up"}, {x:-6331, y:1774, z:5563, rotation:-21, frame:"up"}, {x:-6357, y:1755, z:5572, rotation:-21, frame:"up"}, {x:-6384, y:1736, z:5580, rotation:-21, frame:"up"}, {x:-6411, y:1717, z:5589, rotation:-21, frame:"up"}, {x:-6437, y:1699, z:5597, rotation:-21, frame:"up"}, {x:-6464, y:1680, z:5605, rotation:-21, frame:"up"}, {x:-6491, y:1661, z:5614, rotation:-21, frame:"up"}, {x:-6517, y:1642, z:5622, rotation:-21, frame:"up"}, {x:-6544, y:1624, z:5630, rotation:-21, frame:"up"}, {x:-6571, y:1605, z:5639, rotation:-21, frame:"up"}, {x:-6597, y:1586, z:5647, rotation:-21, frame:"up"}, {x:-6624, y:1567, z:5655, rotation:-21, frame:"up"}, {x:-6651, y:1549, z:5664, rotation:-21, frame:"up"}, {x:-6677, y:1530, z:5672, rotation:-21, frame:"up"}, {x:-6704, y:1511, z:5680, rotation:-21, frame:"up"}, {x:-6731, y:1492, z:5689, rotation:-21, frame:"up"}, {x:-6757, y:1474, z:5697, rotation:-21, frame:"up"}, {x:-6784, y:1455, z:5705, rotation:-21, frame:"up"}, {x:-6811, y:1436, z:5714, rotation:-21, frame:"up"}, {x:-6837, y:1417, z:5722, rotation:-21, frame:"up"}, {x:-6864, y:1399, z:5730, rotation:-21, frame:"up"}, {x:-6891, y:1380, z:5739, rotation:-21, frame:"up"}, {x:-6917, y:1361, z:5747, rotation:-21, frame:"up"}, {x:-6944, y:1342, z:5756, rotation:-21, frame:"up"}, {x:-6971, y:1324, z:5764, rotation:-21, frame:"up"}, {x:-6997, y:1305, z:5772, rotation:-21, frame:"up"}, {x:-7024, y:1286, z:5781, rotation:-20, frame:"up"}, {x:-7050, y:1267, z:5789, rotation:-19, frame:"up"}, {x:-7075, y:1249, z:5797, rotation:-18, frame:"up"}, {x:-7099, y:1230, z:5806, rotation:-18, frame:"up"}, {x:-7122, y:1211, z:5814, rotation:-17, frame:"up"}, {x:-7144, y:1192, z:5823, rotation:-16, frame:"up"}, {x:-7166, y:1174, z:5831, rotation:-16, frame:"up"}, {x:-7186, y:1155, z:5839, rotation:-15, frame:"up"}, {x:-7206, y:1136, z:5848, rotation:-14, frame:"up"}, {x:-7224, y:1117, z:5856, rotation:-14, frame:"up"}, {x:-7242, y:1099, z:5865, rotation:-13, frame:"up"}, {x:-7259, y:1080, z:5873, rotation:-12, frame:"up"}, {x:-7275, y:1061, z:5882, rotation:-12, frame:"forward"}, {x:-7291, y:1054, z:5890, rotation:-11, frame:"forward"}, {x:-7305, y:1048, z:5899, rotation:-10, frame:"forward"}, {x:-7318, y:1043, z:5908, rotation:-10, frame:"forward"}, {x:-7331, y:1039, z:5917, rotation:-9, frame:"forward"}, {x:-7343, y:1036, z:5925, rotation:-8, frame:"forward"}, {x:-7354, y:1034, z:5934, rotation:-8, frame:"forward"}, {x:-7364, y:1034, z:5943, rotation:-7, frame:"forward"}, {x:-7373, y:1034, z:5952, rotation:-6, frame:"forward"}, {x:-7381, y:1034, z:5961, rotation:-6, frame:"forward"}, {x:-7388, y:1034, z:5970, rotation:-5, frame:"forward"}, {x:-7395, y:1034, z:5979, rotation:-4, frame:"forward"}, {x:-7400, y:1034, z:5988, rotation:-4, frame:"forward"}, {x:-7405, y:1034, z:5997, rotation:-3, frame:"forward"}, {x:-7409, y:1034, z:6005, rotation:-2, frame:"forward"}, {x:-7411, y:1034, z:6014, rotation:-1, frame:"forward"}, {x:-7413, y:1034, z:6023, rotation:-1, frame:"forward"}, {x:-7414, y:1034, z:6032, rotation:0, frame:"forward"}, {x:-7414, y:1034, z:6041, rotation:0, frame:"forward"}, {x:-7414, y:1034, z:6050, rotation:0, frame:"forward"}, {x:-7414, y:1034, z:6059, rotation:0, frame:"forward"}, {x:-7414, y:1034, z:6068, rotation:0, frame:"forward"}, {x:-7414, y:1034, z:6077, rotation:0, frame:"forward"}, {x:-7414, y:1034, z:6086, rotation:0, frame:"forward"}, {x:-7414, y:1034, z:6095, rotation:0, frame:"forward"}, {x:-7414, y:1034, z:6104, rotation:0, frame:"forward"}, {x:-7414, y:1034, z:6113, rotation:0, frame:"forward"}, {x:-7414, y:1034, z:6122, rotation:0, frame:"forward"}, {x:-7414, y:1034, z:6131, rotation:0, frame:"forward"}, {x:-7414, y:1034, z:6140, rotation:0, frame:"forward"}, {x:-7414, y:1034, z:6149, rotation:0, frame:"forward"}, {x:-7414, y:1034, z:6158, rotation:0, frame:"forward"}, {x:-7414, y:1034, z:6167, rotation:0, frame:"forward"}, {x:-7414, y:1034, z:6176, rotation:0, frame:"forward"}, {x:-7414, y:1034, z:6185, rotation:0, frame:"forward"}, {x:-7414, y:1034, z:6194, rotation:0, frame:"forward"}, {x:-7414, y:1034, z:6203, rotation:0, frame:"forward"}, {x:-7414, y:1034, z:6212, rotation:0, frame:"forward"}, {x:-7414, y:1034, z:6221, rotation:0, frame:"forward"}, {x:-7414, y:1034, z:6230, rotation:0, frame:"forward"}, {x:-7414, y:1034, z:6239, rotation:0, frame:"forward"}, {x:-7414, y:1034, z:6248, rotation:0, frame:"forward"}, {x:-7414, y:1034, z:6257, rotation:0, frame:"forward"}, {x:-7414, y:1034, z:6266, rotation:0, frame:"forward"}, {x:-7414, y:1034, z:6275, rotation:0, frame:"forward"}, {x:-7414, y:1034, z:6284, rotation:0, frame:"forward"}, {x:-7414, y:1034, z:6293, rotation:0, frame:"forward"}, {x:-7414, y:1034, z:6302, rotation:1, frame:"forward"}, {x:-7413, y:1034, z:6311, rotation:2, frame:"forward"}, {x:-7411, y:1034, z:6320, rotation:2, frame:"forward"}, {x:-7408, y:1034, z:6329, rotation:3, frame:"forward"}, {x:-7404, y:1034, z:6338, rotation:4, frame:"forward"}, {x:-7399, y:1034, z:6347, rotation:4, frame:"forward"}, {x:-7394, y:1034, z:6356, rotation:5, frame:"forward"}, {x:-7387, y:1034, z:6365, rotation:6, frame:"forward"}, {x:-7380, y:1034, z:6374, rotation:6, frame:"forward"}, {x:-7372, y:1034, z:6383, rotation:7, frame:"forward"}, {x:-7363, y:1034, z:6392, rotation:6, frame:"forward"}, {x:-7355, y:1034, z:6401, rotation:5, frame:"forward"}, {x:-7348, y:1034, z:6409, rotation:5, frame:"forward"}, {x:-7342, y:1034, z:6418, rotation:4, frame:"forward"}, {x:-7337, y:1034, z:6427, rotation:3, frame:"forward"}, {x:-7332, y:1034, z:6436, rotation:3, frame:"forward"}, {x:-7329, y:1034, z:6445, rotation:2, frame:"forward"}, {x:-7326, y:1034, z:6454, rotation:1, frame:"forward"}, {x:-7325, y:1034, z:6463, rotation:0, frame:"forward"}, {x:-7325, y:1034, z:6472, rotation:0, frame:"forward"}, {x:-7325, y:1034, z:6481, rotation:0, frame:"forward"}, {x:-7325, y:1034, z:6490, rotation:0, frame:"forward"}, {x:-7325, y:1034, z:6499, rotation:0, frame:"forward"}, {x:-7325, y:1034, z:6508, rotation:0, frame:"forward"}, {x:-7325, y:1034, z:6517, rotation:0, frame:"forward"}, {x:-7325, y:1034, z:6526, rotation:0, frame:"forward"}, {x:-7325, y:1034, z:6535, rotation:0, frame:"forward"}, {x:-7325, y:1034, z:6544, rotation:0, frame:"forward"}, {x:-7325, y:1034, z:6553, rotation:0, frame:"forward"}, {x:-7325, y:1033, z:6562, rotation:0, frame:"forward"}, {x:-7325, y:1021, z:6571, rotation:0, frame:"up"}, {x:-7325, y:1002, z:6580, rotation:0, frame:"forward"}, {x:-7325, y:995, z:6589, rotation:0, frame:"forward"}, {x:-7325, y:989, z:6598, rotation:0, frame:"forward"}, {x:-7325, y:984, z:6606, rotation:0, frame:"forward"}, {x:-7325, y:980, z:6615, rotation:0, frame:"forward"}, {x:-7325, y:977, z:6624, rotation:0, frame:"forward"}, {x:-7325, y:975, z:6633, rotation:0, frame:"forward"}, {x:-7325, y:975, z:6642, rotation:0, frame:"forward"}, {x:-7325, y:975, z:6651, rotation:0, frame:"forward"}, {x:-7325, y:975, z:6660, rotation:0, frame:"forward"}, {x:-7325, y:975, z:6669, rotation:0, frame:"forward"}, {x:-7325, y:975, z:6678, rotation:0, frame:"forward"}, {x:-7325, y:975, z:6687, rotation:0, frame:"forward"}, {x:-7325, y:975, z:6696, rotation:0, frame:"forward"}, {x:-7325, y:975, z:6705, rotation:0, frame:"forward"}, {x:-7325, y:975, z:6714, rotation:0, frame:"forward"}, {x:-7325, y:975, z:6723, rotation:0, frame:"forward"}, {x:-7325, y:975, z:6732, rotation:0, frame:"forward"}, {x:-7325, y:975, z:6741, rotation:0, frame:"forward"}, {x:-7325, y:975, z:6750, rotation:0, frame:"forward"}, {x:-7325, y:975, z:6759, rotation:0, frame:"forward"}, {x:-7325, y:975, z:6768, rotation:0, frame:"forward"}, {x:-7325, y:975, z:6777, rotation:0, frame:"forward"}, {x:-7325, y:975, z:6786, rotation:-1, frame:"forward"}, {x:-7326, y:975, z:6795, rotation:-2, frame:"forward"}, {x:-7328, y:975, z:6804, rotation:-2, frame:"forward"}, {x:-7331, y:975, z:6813, rotation:-3, frame:"forward"}, {x:-7335, y:975, z:6822, rotation:-4, frame:"forward"}, {x:-7339, y:975, z:6831, rotation:-4, frame:"forward"}, {x:-7345, y:975, z:6840, rotation:-5, frame:"forward"}, {x:-7351, y:975, z:6849, rotation:-6, frame:"forward"}, {x:-7359, y:975, z:6858, rotation:-6, frame:"forward"}, {x:-7367, y:975, z:6867, rotation:-7, frame:"forward"}, {x:-7375, y:975, z:6876, rotation:-7, frame:"forward"}, {x:-7385, y:975, z:6884, rotation:-8, frame:"forward"}, {x:-7395, y:975, z:6893, rotation:-9, frame:"forward"}, {x:-7407, y:975, z:6902, rotation:-9, frame:"forward"}, {x:-7419, y:975, z:6911, rotation:-10, frame:"forward"}, {x:-7431, y:975, z:6920, rotation:-10, frame:"forward"}, {x:-7445, y:975, z:6929, rotation:-11, frame:"forward"}, {x:-7459, y:975, z:6937, rotation:-12, frame:"forward"}, {x:-7475, y:975, z:6946, rotation:-12, frame:"forward"}, {x:-7491, y:975, z:6955, rotation:-13, frame:"forward"}, {x:-7507, y:975, z:6964, rotation:-14, frame:"forward"}, {x:-7525, y:975, z:6972, rotation:-14, frame:"forward"}, {x:-7543, y:975, z:6981, rotation:-15, frame:"forward"}, {x:-7563, y:975, z:6990, rotation:-15, frame:"forward"}, {x:-7583, y:975, z:6999, rotation:-16, frame:"forward"}, {x:-7603, y:975, z:7007, rotation:-17, frame:"forward"}, {x:-7625, y:975, z:7016, rotation:-17, frame:"forward"}, {x:-7647, y:975, z:7025, rotation:-18, frame:"forward"}, {x:-7671, y:975, z:7033, rotation:-18, frame:"forward"}, {x:-7695, y:975, z:7042, rotation:-19, frame:"forward"}, {x:-7719, y:975, z:7051, rotation:-20, frame:"forward"}, {x:-7745, y:975, z:7059, rotation:-20, frame:"forward"}, {x:-7771, y:975, z:7068, rotation:-21, frame:"forward"}, {x:-7798, y:975, z:7077, rotation:-21, frame:"forward"}, {x:-7825, y:975, z:7085, rotation:-21, frame:"forward"}, {x:-7851, y:975, z:7094, rotation:-21, frame:"forward"}, {x:-7878, y:975, z:7102, rotation:-21, frame:"forward"}, {x:-7905, y:975, z:7111, rotation:-21, frame:"forward"}, {x:-7931, y:975, z:7120, rotation:-21, frame:"forward"}, {x:-7958, y:975, z:7128, rotation:-21, frame:"forward"}, {x:-7985, y:975, z:7137, rotation:-21, frame:"forward"}, {x:-8011, y:975, z:7145, rotation:-21, frame:"forward"}, {x:-8038, y:975, z:7154, rotation:-21, frame:"forward"}, {x:-8065, y:975, z:7163, rotation:-21, frame:"forward"}, {x:-8091, y:975, z:7171, rotation:-21, frame:"forward"}, {x:-8118, y:975, z:7180, rotation:-21, frame:"forward"}, {x:-8145, y:975, z:7189, rotation:-21, frame:"forward"}, {x:-8171, y:975, z:7197, rotation:-21, frame:"forward"}, {x:-8198, y:975, z:7206, rotation:-21, frame:"forward"}, {x:-8225, y:975, z:7214, rotation:-21, frame:"forward"}, {x:-8251, y:975, z:7223, rotation:-21, frame:"forward"}, {x:-8278, y:975, z:7232, rotation:-21, frame:"forward"}, {x:-8305, y:975, z:7240, rotation:-21, frame:"forward"}, {x:-8331, y:975, z:7249, rotation:-21, frame:"forward"}, {x:-8358, y:975, z:7258, rotation:-21, frame:"forward"}, {x:-8385, y:974, z:7266, rotation:-21, frame:"forward"}, {x:-8411, y:962, z:7275, rotation:-21, frame:"up"}, {x:-8438, y:943, z:7283, rotation:-21, frame:"up"}, {x:-8465, y:924, z:7291, rotation:-21, frame:"up"}, {x:-8491, y:905, z:7300, rotation:-21, frame:"up"}, {x:-8518, y:887, z:7308, rotation:-21, frame:"up"}, {x:-8545, y:868, z:7316, rotation:-21, frame:"up"}, {x:-8571, y:849, z:7325, rotation:-21, frame:"up"}, {x:-8598, y:830, z:7333, rotation:-21, frame:"up"}, {x:-8625, y:812, z:7341, rotation:-21, frame:"up"}, {x:-8651, y:793, z:7350, rotation:-21, frame:"up"}, {x:-8678, y:774, z:7358, rotation:-21, frame:"up"}, {x:-8705, y:755, z:7366, rotation:-21, frame:"up"}, {x:-8731, y:737, z:7375, rotation:-21, frame:"up"}, {x:-8758, y:718, z:7383, rotation:-21, frame:"up"}, {x:-8785, y:699, z:7392, rotation:-21, frame:"up"}, {x:-8811, y:680, z:7400, rotation:-21, frame:"up"}, {x:-8838, y:662, z:7408, rotation:-21, frame:"up"}, {x:-8865, y:643, z:7417, rotation:-21, frame:"up"}, {x:-8891, y:624, z:7425, rotation:-21, frame:"up"}, {x:-8918, y:605, z:7433, rotation:-21, frame:"up"}, {x:-8945, y:587, z:7442, rotation:-21, frame:"up"}, {x:-8971, y:568, z:7450, rotation:-21, frame:"up"}, {x:-8998, y:549, z:7458, rotation:-21, frame:"up"}, {x:-9025, y:530, z:7467, rotation:-21, frame:"up"}, {x:-9051, y:512, z:7475, rotation:-21, frame:"forward"}, {x:-9078, y:505, z:7484, rotation:-21, frame:"forward"}, {x:-9105, y:499, z:7492, rotation:-21, frame:"forward"}, {x:-9131, y:494, z:7501, rotation:-21, frame:"forward"}, {x:-9158, y:490, z:7509, rotation:-21, frame:"forward"}, {x:-9185, y:487, z:7518, rotation:-21, frame:"forward"}, {x:-9211, y:485, z:7526, rotation:-21, frame:"forward"}, {x:-9238, y:484, z:7535, rotation:-21, frame:"forward"}, {x:-9265, y:484, z:7544, rotation:-21, frame:"forward"}, {x:-9291, y:484, z:7552, rotation:-21, frame:"forward"}, {x:-9318, y:484, z:7561, rotation:-21, frame:"forward"}, {x:-9345, y:484, z:7569, rotation:-21, frame:"forward"}, {x:-9371, y:484, z:7578, rotation:-21, frame:"forward"}, {x:-9398, y:484, z:7587, rotation:-21, frame:"forward"}, {x:-9425, y:484, z:7595, rotation:-21, frame:"forward"}, {x:-9451, y:484, z:7604, rotation:-21, frame:"forward"}, {x:-9478, y:484, z:7613, rotation:-21, frame:"forward"}, {x:-9505, y:484, z:7621, rotation:-21, frame:"forward"}, {x:-9531, y:484, z:7630, rotation:-21, frame:"forward"}, {x:-9558, y:484, z:7638, rotation:-21, frame:"forward"}, {x:-9585, y:484, z:7647, rotation:-21, frame:"forward"}, {x:-9611, y:484, z:7656, rotation:-21, frame:"forward"}, {x:-9638, y:484, z:7664, rotation:-21, frame:"forward"}, {x:-9665, y:484, z:7673, rotation:-21, frame:"forward"}, {x:-9691, y:483, z:7681, rotation:-21, frame:"forward"}, {x:-9718, y:471, z:7690, rotation:-21, frame:"up"}, {x:-9745, y:452, z:7698, rotation:-21, frame:"up"}, {x:-9771, y:434, z:7707, rotation:-21, frame:"up"}, {x:-9798, y:415, z:7715, rotation:-21, frame:"up"}, {x:-9825, y:396, z:7723, rotation:-21, frame:"forward"}, {x:-9851, y:389, z:7732, rotation:-21, frame:"forward"}, {x:-9878, y:383, z:7740, rotation:-21, frame:"forward"}, {x:-9905, y:378, z:7749, rotation:-21, frame:"forward"}, {x:-9931, y:374, z:7757, rotation:-21, frame:"forward"}, {x:-9958, y:371, z:7766, rotation:-21, frame:"forward"}, {x:-9985, y:369, z:7775, rotation:-21, frame:"forward"}, {x:-10011, y:369, z:7783, rotation:-21, frame:"forward"}, {x:-10038, y:369, z:7792, rotation:-21, frame:"forward"}, {x:-10065, y:369, z:7800, rotation:-21, frame:"forward"}, {x:-10091, y:369, z:7809, rotation:-21, frame:"forward"}, {x:-10118, y:369, z:7818, rotation:-21, frame:"forward"}, {x:-10145, y:369, z:7826, rotation:-21, frame:"forward"}, {x:-10171, y:369, z:7835, rotation:-21, frame:"forward"}, {x:-10198, y:369, z:7844, rotation:-21, frame:"forward"}, {x:-10225, y:369, z:7852, rotation:-21, frame:"forward"}, {x:-10251, y:369, z:7861, rotation:-21, frame:"forward"}, {x:-10278, y:369, z:7869, rotation:-21, frame:"forward"}, {x:-10305, y:369, z:7878, rotation:-20, frame:"forward"}, {x:-10331, y:369, z:7887, rotation:-19, frame:"forward"}, {x:-10355, y:369, z:7895, rotation:-18, frame:"forward"}, {x:-10380, y:369, z:7904, rotation:-18, frame:"forward"}, {x:-10403, y:369, z:7913, rotation:-17, frame:"forward"}, {x:-10425, y:369, z:7921, rotation:-16, frame:"forward"}, {x:-10446, y:369, z:7930, rotation:-16, frame:"forward"}, {x:-10467, y:369, z:7939, rotation:-15, frame:"forward"}, {x:-10486, y:369, z:7947, rotation:-14, frame:"forward"}, {x:-10505, y:369, z:7956, rotation:-14, frame:"forward"}, {x:-10523, y:369, z:7965, rotation:-13, frame:"forward"}, {x:-10540, y:369, z:7974, rotation:-12, frame:"forward"}, {x:-10556, y:369, z:7982, rotation:-12, frame:"forward"}, {x:-10571, y:369, z:7991, rotation:-11, frame:"forward"}, {x:-10586, y:369, z:8000, rotation:-10, frame:"forward"}, {x:-10599, y:369, z:8009, rotation:-10, frame:"forward"}, {x:-10612, y:369, z:8018, rotation:-9, frame:"forward"}, {x:-10623, y:369, z:8027, rotation:-8, frame:"forward"}, {x:-10634, y:369, z:8035, rotation:-8, frame:"forward"}, {x:-10644, y:369, z:8044, rotation:-7, frame:"forward"}, {x:-10653, y:369, z:8053, rotation:-6, frame:"forward"}, {x:-10662, y:369, z:8062, rotation:-6, frame:"forward"}, {x:-10669, y:369, z:8071, rotation:-5, frame:"forward"}, {x:-10675, y:369, z:8080, rotation:-4, frame:"forward"}, {x:-10681, y:369, z:8089, rotation:-4, frame:"forward"}, {x:-10685, y:369, z:8098, rotation:-3, frame:"forward"}, {x:-10689, y:369, z:8107, rotation:-2, frame:"forward"}, {x:-10692, y:369, z:8116, rotation:-1, frame:"forward"}, {x:-10694, y:369, z:8125, rotation:-1, frame:"forward"}, {x:-10695, y:369, z:8134, rotation:0, frame:"forward"}, {x:-10695, y:369, z:8143, rotation:0, frame:"forward"}, {x:-10695, y:369, z:8152, rotation:0, frame:"forward"}, {x:-10695, y:369, z:8161, rotation:0, frame:"forward"}, {x:-10695, y:369, z:8170, rotation:0, frame:"forward"}, {x:-10695, y:369, z:8179, rotation:0, frame:"forward"}, {x:-10695, y:369, z:8188, rotation:0, frame:"forward"}, {x:-10695, y:369, z:8197, rotation:0, frame:"forward"}, {x:-10695, y:369, z:8206, rotation:0, frame:"forward"}, {x:-10695, y:369, z:8215, rotation:0, frame:"forward"}, {x:-10695, y:369, z:8224, rotation:0, frame:"forward"}, {x:-10695, y:369, z:8233, rotation:-1, frame:"forward"}, {x:-10696, y:369, z:8241, rotation:-2, frame:"forward"}, {x:-10698, y:369, z:8250, rotation:-2, frame:"forward"}, {x:-10701, y:369, z:8259, rotation:-3, frame:"forward"}, {x:-10705, y:369, z:8268, rotation:-4, frame:"forward"}, {x:-10709, y:369, z:8277, rotation:-4, frame:"forward"}, {x:-10715, y:369, z:8286, rotation:-5, frame:"forward"}, {x:-10721, y:369, z:8295, rotation:-6, frame:"forward"}, {x:-10729, y:369, z:8304, rotation:-6, frame:"forward"}, {x:-10737, y:369, z:8313, rotation:-7, frame:"forward"}, {x:-10745, y:369, z:8322, rotation:-7, frame:"forward"}, {x:-10755, y:369, z:8331, rotation:-8, frame:"forward"}, {x:-10765, y:369, z:8339, rotation:-9, frame:"forward"}, {x:-10777, y:369, z:8348, rotation:-9, frame:"forward"}, {x:-10789, y:369, z:8357, rotation:-10, frame:"forward"}, {x:-10801, y:369, z:8366, rotation:-10, frame:"forward"}, {x:-10815, y:369, z:8375, rotation:-11, frame:"forward"}, {x:-10829, y:369, z:8384, rotation:-12, frame:"forward"}, {x:-10845, y:369, z:8392, rotation:-12, frame:"forward"}, {x:-10861, y:368, z:8401, rotation:-13, frame:"forward"}, {x:-10877, y:356, z:8410, rotation:-14, frame:"up"}, {x:-10895, y:337, z:8418, rotation:-14, frame:"up"}, {x:-10913, y:318, z:8427, rotation:-15, frame:"up"}, {x:-10933, y:299, z:8435, rotation:-15, frame:"up"}, {x:-10953, y:281, z:8444, rotation:-16, frame:"up"}, {x:-10973, y:262, z:8452, rotation:-17, frame:"up"}, {x:-10995, y:243, z:8460, rotation:-17, frame:"up"}, {x:-11017, y:224, z:8469, rotation:-18, frame:"up"}, {x:-11041, y:206, z:8477, rotation:-18, frame:"up"}, {x:-11065, y:187, z:8486, rotation:-19, frame:"up"}, {x:-11089, y:168, z:8494, rotation:-20, frame:"forward"}, {x:-11115, y:161, z:8503, rotation:-20, frame:"forward"}, {x:-11141, y:155, z:8511, rotation:-21, frame:"forward"}, {x:-11168, y:150, z:8520, rotation:-21, frame:"forward"}, {x:-11195, y:146, z:8528, rotation:-21, frame:"forward"}, {x:-11221, y:143, z:8537, rotation:-21, frame:"forward"}, {x:-11248, y:142, z:8545, rotation:-21, frame:"forward"}, {x:-11275, y:141, z:8554, rotation:-21, frame:"forward"}, {x:-11301, y:141, z:8563, rotation:-21, frame:"forward"}, {x:-11328, y:141, z:8571, rotation:-21, frame:"forward"}, {x:-11355, y:141, z:8580, rotation:-21, frame:"forward"}, {x:-11381, y:141, z:8588, rotation:-21, frame:"forward"}, {x:-11408, y:141, z:8597, rotation:-21, frame:"forward"}, {x:-11435, y:141, z:8606, rotation:-20, frame:"forward"}, {x:-11461, y:141, z:8614, rotation:-19, frame:"forward"}, {x:-11485, y:141, z:8623, rotation:-18, frame:"forward"}, {x:-11510, y:141, z:8632, rotation:-18, frame:"forward"}, {x:-11533, y:141, z:8640, rotation:-17, frame:"forward"}, {x:-11555, y:141, z:8649, rotation:-16, frame:"forward"}, {x:-11576, y:141, z:8658, rotation:-16, frame:"forward"}, {x:-11597, y:141, z:8666, rotation:-15, frame:"forward"}, {x:-11616, y:141, z:8675, rotation:-14, frame:"forward"}, {x:-11635, y:141, z:8684, rotation:-14, frame:"forward"}, {x:-11653, y:141, z:8693, rotation:-13, frame:"forward"}, {x:-11670, y:141, z:8701, rotation:-12, frame:"forward"}, {x:-11686, y:141, z:8710, rotation:-12, frame:"forward"}, {x:-11701, y:141, z:8719, rotation:-11, frame:"forward"}, {x:-11716, y:141, z:8728, rotation:-10, frame:"forward"}, {x:-11729, y:141, z:8736, rotation:-10, frame:"forward"}, {x:-11742, y:141, z:8745, rotation:-9, frame:"forward"}, {x:-11753, y:141, z:8754, rotation:-8, frame:"forward"}, {x:-11764, y:141, z:8763, rotation:-8, frame:"forward"}, {x:-11774, y:141, z:8772, rotation:-7, frame:"forward"}, {x:-11783, y:141, z:8781, rotation:-6, frame:"forward"}, {x:-11792, y:141, z:8790, rotation:-6, frame:"forward"}, {x:-11799, y:141, z:8798, rotation:-5, frame:"forward"}, {x:-11805, y:141, z:8807, rotation:-4, frame:"forward"}, {x:-11811, y:141, z:8816, rotation:-4, frame:"forward"}, {x:-11815, y:141, z:8825, rotation:-3, frame:"forward"}, {x:-11819, y:141, z:8834, rotation:-2, frame:"forward"}, {x:-11822, y:141, z:8843, rotation:-1, frame:"forward"}, {x:-11824, y:141, z:8852, rotation:-1, frame:"forward"}, {x:-11825, y:141, z:8861, rotation:0, frame:"forward"}, {x:-11825, y:141, z:8870, rotation:0, frame:"forward"}, {x:-11825, y:141, z:8879, rotation:0, frame:"forward"}, {x:-11825, y:141, z:8888, rotation:0, frame:"forward"}, {x:-11825, y:141, z:8897, rotation:0, frame:"forward"}, {x:-11825, y:141, z:8906, rotation:0, frame:"forward"}, {x:-11825, y:141, z:8915, rotation:0, frame:"forward"}, {x:-11825, y:141, z:8924, rotation:0, frame:"forward"}, {x:-11825, y:141, z:8933, rotation:0, frame:"forward"}, {x:-11825, y:141, z:8942, rotation:0, frame:"forward"}, {x:-11825, y:141, z:8951, rotation:0, frame:"forward"}, {x:-11825, y:141, z:8960, rotation:0, frame:"forward"}, {x:-11825, y:141, z:8969, rotation:0, frame:"forward"}, {x:-11825, y:141, z:8978, rotation:0, frame:"forward"}, {x:-11825, y:141, z:8987, rotation:0, frame:"forward"}, {x:-11825, y:141, z:8996, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9005, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9014, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9023, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9032, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9041, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9050, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9059, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9068, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9077, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9086, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9095, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9104, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9113, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9122, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9131, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9140, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9149, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9158, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9167, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9176, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9185, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9194, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9203, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9212, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9221, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9230, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9239, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9248, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9257, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9266, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9275, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9284, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9293, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9302, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9311, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9320, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9329, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9338, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9347, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9356, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9365, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9374, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9383, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9392, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9401, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9410, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9419, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9428, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9437, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9446, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9455, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9464, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9473, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9482, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9491, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9500, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9509, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9518, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9527, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9536, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9545, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9554, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9563, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9572, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9581, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9590, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9599, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9608, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9617, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9626, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9635, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9644, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9653, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9662, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9671, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9680, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9689, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9698, rotation:0, frame:"forward"}, {x:-11825, y:141, z:9707, rotation:-1, frame:"forward"}, {x:-11826, y:141, z:9716, rotation:-2, frame:"forward"}, {x:-11828, y:141, z:9725, rotation:-2, frame:"forward"}, {x:-11831, y:141, z:9734, rotation:-3, frame:"forward"}, {x:-11835, y:141, z:9743, rotation:-4, frame:"forward"}, {x:-11839, y:141, z:9752, rotation:-4, frame:"forward"}, {x:-11845, y:141, z:9761, rotation:-5, frame:"forward"}, {x:-11851, y:141, z:9770, rotation:-6, frame:"forward"}, {x:-11859, y:141, z:9779, rotation:-6, frame:"forward"}, {x:-11867, y:141, z:9788, rotation:-7, frame:"forward"}, {x:-11875, y:141, z:9796, rotation:-7, frame:"forward"}, {x:-11885, y:141, z:9805, rotation:-8, frame:"forward"}, {x:-11895, y:141, z:9814, rotation:-9, frame:"forward"}, {x:-11907, y:141, z:9823, rotation:-9, frame:"forward"}, {x:-11919, y:141, z:9832, rotation:-10, frame:"forward"}, {x:-11931, y:141, z:9841, rotation:-10, frame:"forward"}, {x:-11945, y:141, z:9849, rotation:-11, frame:"forward"}, {x:-11959, y:141, z:9858, rotation:-12, frame:"forward"}, {x:-11975, y:141, z:9867, rotation:-12, frame:"forward"}, {x:-11991, y:141, z:9876, rotation:-13, frame:"forward"}, {x:-12007, y:141, z:9884, rotation:-14, frame:"forward"}, {x:-12025, y:141, z:9893, rotation:-14, frame:"forward"}, {x:-12043, y:141, z:9902, rotation:-15, frame:"forward"}, {x:-12063, y:141, z:9911, rotation:-15, frame:"forward"}, {x:-12083, y:141, z:9919, rotation:-16, frame:"forward"}, {x:-12103, y:141, z:9928, rotation:-17, frame:"forward"}, {x:-12125, y:141, z:9937, rotation:-17, frame:"forward"}, {x:-12147, y:141, z:9945, rotation:-18, frame:"forward"}, {x:-12171, y:141, z:9954, rotation:-18, frame:"forward"}, {x:-12195, y:141, z:9963, rotation:-19, frame:"forward"}, {x:-12219, y:141, z:9971, rotation:-20, frame:"forward"}, {x:-12245, y:141, z:9980, rotation:-20, frame:"forward"}, {x:-12271, y:141, z:9989, rotation:-21, frame:"forward"}, {x:-12298, y:141, z:9997, rotation:-21, frame:"forward"}, {x:-12325, y:141, z:10006, rotation:-21, frame:"forward"}, {x:-12351, y:141, z:10015, rotation:-21, frame:"forward"}, {x:-12378, y:141, z:10023, rotation:-21, frame:"forward"}, {x:-12405, y:141, z:10032, rotation:-21, frame:"forward"}, {x:-12431, y:141, z:10040, rotation:-21, frame:"forward"}, {x:-12458, y:141, z:10049, rotation:-21, frame:"forward"}, {x:-12485, y:141, z:10058, rotation:-21, frame:"forward"}, {x:-12511, y:141, z:10066, rotation:-21, frame:"forward"}, {x:-12538, y:141, z:10075, rotation:-21, frame:"forward"}, {x:-12565, y:141, z:10084, rotation:-21, frame:"forward"}, {x:-12591, y:141, z:10092, rotation:-21, frame:"forward"}, {x:-12618, y:141, z:10101, rotation:-21, frame:"forward"}, {x:-12645, y:141, z:10109, rotation:-21, frame:"forward"}, {x:-12671, y:141, z:10118, rotation:-21, frame:"forward"}, {x:-12698, y:141, z:10127, rotation:-21, frame:"forward"}, {x:-12725, y:141, z:10135, rotation:-21, frame:"forward"}, {x:-12751, y:141, z:10144, rotation:-21, frame:"forward"}, {x:-12778, y:141, z:10152, rotation:-21, frame:"forward"}, {x:-12805, y:141, z:10161, rotation:-21, frame:"forward"}, {x:-12831, y:141, z:10170, rotation:-21, frame:"forward"}, {x:-12858, y:141, z:10178, rotation:-21, frame:"forward"}, {x:-12885, y:141, z:10187, rotation:-21, frame:"forward"}, {x:-12911, y:141, z:10196, rotation:-21, frame:"forward"}, {x:-12938, y:141, z:10204, rotation:-21, frame:"forward"}, {x:-12965, y:141, z:10213, rotation:-21, frame:"forward"}, {x:-12991, y:141, z:10221, rotation:-21, frame:"forward"}, {x:-13018, y:141, z:10230, rotation:-21, frame:"forward"}, {x:-13045, y:141, z:10239, rotation:-21, frame:"forward"}, {x:-13071, y:141, z:10247, rotation:-21, frame:"forward"}, {x:-13098, y:141, z:10256, rotation:-21, frame:"forward"}, {x:-13125, y:141, z:10265, rotation:-21, frame:"forward"}, {x:-13151, y:141, z:10273, rotation:-21, frame:"forward"}, {x:-13178, y:141, z:10282, rotation:-21, frame:"forward"}, {x:-13205, y:141, z:10290, rotation:-21, frame:"forward"}, {x:-13231, y:141, z:10299, rotation:-21, frame:"forward"}, {x:-13258, y:141, z:10308, rotation:-21, frame:"forward"}, {x:-13285, y:141, z:10316, rotation:-21, frame:"forward"}, {x:-13311, y:141, z:10325, rotation:-21, frame:"forward"}, {x:-13338, y:141, z:10333, rotation:-21, frame:"forward"}, {x:-13365, y:141, z:10342, rotation:-21, frame:"forward"}, {x:-13391, y:141, z:10351, rotation:-21, frame:"forward"}, {x:-13418, y:141, z:10359, rotation:-21, frame:"forward"}, {x:-13445, y:141, z:10368, rotation:-21, frame:"forward"}, {x:-13471, y:141, z:10377, rotation:-21, frame:"forward"}, {x:-13498, y:141, z:10385, rotation:-21, frame:"forward"}, {x:-13525, y:141, z:10394, rotation:-21, frame:"forward"}, {x:-13551, y:141, z:10402, rotation:-21, frame:"forward"}, {x:-13578, y:141, z:10411, rotation:-21, frame:"forward"}, {x:-13605, y:141, z:10420, rotation:-21, frame:"forward"}, {x:-13631, y:141, z:10428, rotation:-21, frame:"forward"}, {x:-13658, y:141, z:10437, rotation:-21, frame:"forward"}, {x:-13685, y:141, z:10446, rotation:-21, frame:"forward"}, {x:-13711, y:141, z:10454, rotation:-21, frame:"forward"}, {x:-13738, y:141, z:10463, rotation:-21, frame:"forward"}, {x:-13765, y:141, z:10471, rotation:-21, frame:"forward"}, {x:-13791, y:141, z:10480, rotation:-21, frame:"forward"}, {x:-13818, y:141, z:10489, rotation:-21, frame:"forward"}, {x:-13845, y:141, z:10497, rotation:-21, frame:"forward"}, {x:-13871, y:141, z:10506, rotation:-21, frame:"forward"}, {x:-13898, y:141, z:10514, rotation:-21, frame:"forward"}, {x:-13925, y:141, z:10523, rotation:-21, frame:"forward"}, {x:-13951, y:141, z:10532, rotation:-21, frame:"forward"}, {x:-13978, y:141, z:10540, rotation:-21, frame:"forward"}, {x:-14005, y:141, z:10549, rotation:-20, frame:"forward"}, {x:-14031, y:141, z:10558, rotation:-19, frame:"forward"}, {x:-14055, y:141, z:10566, rotation:-18, frame:"forward"}, {x:-14080, y:141, z:10575, rotation:-18, frame:"forward"}, {x:-14103, y:141, z:10584, rotation:-17, frame:"forward"}, {x:-14125, y:141, z:10592, rotation:-16, frame:"forward"}, {x:-14146, y:141, z:10601, rotation:-16, frame:"forward"}, {x:-14167, y:141, z:10610, rotation:-15, frame:"forward"}, {x:-14186, y:141, z:10618, rotation:-14, frame:"forward"}, {x:-14205, y:141, z:10627, rotation:-14, frame:"forward"}, {x:-14223, y:141, z:10636, rotation:-13, frame:"forward"}, {x:-14240, y:141, z:10645, rotation:-12, frame:"forward"}, {x:-14256, y:141, z:10653, rotation:-12, frame:"forward"}, {x:-14271, y:141, z:10662, rotation:-11, frame:"forward"}, {x:-14286, y:141, z:10671, rotation:-10, frame:"forward"}, {x:-14299, y:141, z:10680, rotation:-10, frame:"forward"}, {x:-14312, y:141, z:10689, rotation:-9, frame:"forward"}, {x:-14323, y:141, z:10697, rotation:-8, frame:"forward"}, {x:-14334, y:141, z:10706, rotation:-8, frame:"forward"}, {x:-14344, y:141, z:10715, rotation:-7, frame:"forward"}, {x:-14353, y:141, z:10724, rotation:-6, frame:"forward"}, {x:-14362, y:141, z:10733, rotation:-6, frame:"forward"}, {x:-14369, y:141, z:10742, rotation:-5, frame:"forward"}, {x:-14375, y:141, z:10751, rotation:-4, frame:"forward"}, {x:-14381, y:141, z:10760, rotation:-4, frame:"forward"}, {x:-14385, y:141, z:10769, rotation:-3, frame:"forward"}, {x:-14389, y:141, z:10777, rotation:-2, frame:"forward"}, {x:-14392, y:141, z:10786, rotation:-1, frame:"forward"}, {x:-14394, y:141, z:10795, rotation:-1, frame:"forward"}, {x:-14395, y:141, z:10804, rotation:0, frame:"forward"}, {x:-14395, y:141, z:10813, rotation:0, frame:"forward"}, {x:-14395, y:141, z:10822, rotation:0, frame:"forward"}, {x:-14395, y:141, z:10831, rotation:0, frame:"forward"}, {x:-14395, y:141, z:10840, rotation:0, frame:"forward"}, {x:-14395, y:141, z:10849, rotation:0, frame:"forward"}, {x:-14395, y:141, z:10858, rotation:0, frame:"forward"}, {x:-14395, y:141, z:10867, rotation:0, frame:"forward"}, {x:-14395, y:141, z:10876, rotation:0, frame:"forward"}, {x:-14395, y:141, z:10885, rotation:1, frame:"forward"}, {x:-14394, y:141, z:10894, rotation:2, frame:"forward"}, {x:-14392, y:141, z:10903, rotation:2, frame:"forward"}, {x:-14389, y:141, z:10912, rotation:3, frame:"forward"}, {x:-14385, y:141, z:10921, rotation:4, frame:"forward"}, {x:-14380, y:141, z:10930, rotation:4, frame:"forward"}, {x:-14374, y:141, z:10939, rotation:5, frame:"forward"}, {x:-14368, y:141, z:10948, rotation:6, frame:"forward"}, {x:-14361, y:141, z:10957, rotation:5, frame:"forward"}, {x:-14354, y:141, z:10966, rotation:4, frame:"forward"}, {x:-14349, y:141, z:10975, rotation:4, frame:"forward"}, {x:-14344, y:141, z:10984, rotation:3, frame:"forward"}, {x:-14341, y:141, z:10993, rotation:2, frame:"forward"}, {x:-14338, y:141, z:11002, rotation:1, frame:"forward"}, {x:-14336, y:141, z:11011, rotation:0, frame:"forward"}, {x:-14336, y:141, z:11020, rotation:1, frame:"forward"}, {x:-14334, y:141, z:11029, rotation:2, frame:"forward"}, {x:-14331, y:141, z:11037, rotation:3, frame:"forward"}, {x:-14328, y:141, z:11046, rotation:2, frame:"forward"}, {x:-14325, y:141, z:11055, rotation:1, frame:"forward"}, {x:-14323, y:141, z:11064, rotation:0, frame:"forward"}, {x:-14323, y:141, z:11073, rotation:0, frame:"forward"}, {x:-14323, y:141, z:11082, rotation:0, frame:"forward"}, {x:-14323, y:141, z:11091, rotation:0, frame:"forward"}, {x:-14324, y:141, z:11100, rotation:0, frame:"forward"}, {x:-14323, y:141, z:11109, rotation:0, frame:"forward"}, {x:-14324, y:141, z:11118, rotation:0, frame:"forward"}, {x:-14323, y:141, z:11127, rotation:0, frame:"forward"}, {x:-14324, y:141, z:11136, rotation:0, frame:"forward"}, {x:-14323, y:141, z:11145, rotation:0, frame:"forward"}, {x:-14324, y:141, z:11154, rotation:0, frame:"forward"}, {x:-14323, y:141, z:11163, rotation:0, frame:"forward"}, {x:-14324, y:141, z:11172, rotation:0, frame:"forward"}, {x:-14323, y:141, z:11181, rotation:0, frame:"forward"}, {x:-14324, y:141, z:11190, rotation:0, frame:"forward"}, {x:-14323, y:141, z:11199, rotation:0, frame:"forward"}, {x:-14324, y:141, z:11208, rotation:0, frame:"forward"}, {x:-14323, y:141, z:11217, rotation:0, frame:"forward"}, {x:-14324, y:141, z:11226, rotation:0, frame:"forward"}, {x:-14323, y:141, z:11235, rotation:1, frame:"forward"}, {x:-14322, y:141, z:11244, rotation:2, frame:"forward"}, {x:-14319, y:141, z:11253, rotation:1, frame:"forward"}, {x:-14318, y:141, z:11262, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11271, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11280, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11289, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11298, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11307, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11316, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11325, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11334, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11343, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11352, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11361, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11370, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11379, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11388, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11397, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11406, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11415, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11424, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11433, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11442, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11451, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11460, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11469, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11478, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11487, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11496, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11505, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11514, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11523, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11532, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11541, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11550, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11559, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11568, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11577, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11586, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11595, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11604, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11613, rotation:0, frame:"forward"}, {x:-14318, y:141, z:11622, rotation:-1, frame:"forward"}, {x:-14319, y:141, z:11631, rotation:-2, frame:"forward"}, {x:-14321, y:141, z:11640, rotation:-2, frame:"forward"}, {x:-14324, y:141, z:11649, rotation:-3, frame:"forward"}, {x:-14328, y:141, z:11658, rotation:-4, frame:"forward"}, {x:-14333, y:141, z:11667, rotation:-4, frame:"forward"}, {x:-14338, y:141, z:11676, rotation:-5, frame:"forward"}, {x:-14345, y:141, z:11685, rotation:-6, frame:"forward"}, {x:-14352, y:141, z:11694, rotation:-6, frame:"forward"}, {x:-14360, y:141, z:11703, rotation:-7, frame:"forward"}, {x:-14369, y:141, z:11711, rotation:-7, frame:"forward"}, {x:-14378, y:141, z:11720, rotation:-8, frame:"forward"}, {x:-14389, y:141, z:11729, rotation:-9, frame:"forward"}, {x:-14400, y:141, z:11738, rotation:-9, frame:"forward"}, {x:-14412, y:141, z:11747, rotation:-10, frame:"forward"}, {x:-14425, y:141, z:11756, rotation:-10, frame:"forward"}, {x:-14438, y:141, z:11764, rotation:-11, frame:"forward"}, {x:-14453, y:141, z:11773, rotation:-12, frame:"forward"}, {x:-14468, y:141, z:11782, rotation:-12, frame:"forward"}, {x:-14484, y:141, z:11791, rotation:-13, frame:"forward"}, {x:-14501, y:141, z:11800, rotation:-14, frame:"forward"}, {x:-14518, y:141, z:11808, rotation:-14, frame:"forward"}, {x:-14537, y:141, z:11817, rotation:-15, frame:"forward"}, {x:-14556, y:141, z:11826, rotation:-15, frame:"forward"}, {x:-14576, y:141, z:11834, rotation:-16, frame:"forward"}, {x:-14597, y:141, z:11843, rotation:-17, frame:"forward"}, {x:-14618, y:141, z:11852, rotation:-17, frame:"forward"}, {x:-14641, y:141, z:11861, rotation:-18, frame:"forward"}, {x:-14664, y:142, z:11869, rotation:-18, frame:"forward"}, {x:-14688, y:154, z:11878, rotation:-19, frame:"down"}, {x:-14713, y:173, z:11886, rotation:-20, frame:"down"}, {x:-14738, y:191, z:11894, rotation:-20, frame:"down"}, {x:-14765, y:210, z:11903, rotation:-21, frame:"down"}, {x:-14791, y:229, z:11911, rotation:-21, frame:"down"}, {x:-14818, y:248, z:11919, rotation:-21, frame:"down"}, {x:-14845, y:266, z:11928, rotation:-21, frame:"down"}, {x:-14871, y:285, z:11936, rotation:-21, frame:"down"}, {x:-14898, y:304, z:11945, rotation:-21, frame:"down"}, {x:-14925, y:323, z:11953, rotation:-21, frame:"down"}, {x:-14951, y:341, z:11961, rotation:-21, frame:"down"}, {x:-14978, y:360, z:11970, rotation:-21, frame:"forward"}, {x:-15005, y:367, z:11978, rotation:-21, frame:"forward"}, {x:-15031, y:373, z:11987, rotation:-21, frame:"forward"}, {x:-15058, y:378, z:11995, rotation:-21, frame:"forward"}, {x:-15085, y:382, z:12004, rotation:-21, frame:"forward"}, {x:-15111, y:385, z:12012, rotation:-21, frame:"forward"}, {x:-15138, y:387, z:12021, rotation:-21, frame:"forward"}, {x:-15165, y:387, z:12030, rotation:-21, frame:"forward"}, {x:-15191, y:387, z:12038, rotation:-21, frame:"forward"}, {x:-15218, y:387, z:12047, rotation:-21, frame:"forward"}, {x:-15245, y:387, z:12055, rotation:-21, frame:"forward"}, {x:-15271, y:387, z:12064, rotation:-21, frame:"forward"}, {x:-15298, y:387, z:12073, rotation:-21, frame:"forward"}, {x:-15325, y:387, z:12081, rotation:-21, frame:"forward"}, {x:-15351, y:387, z:12090, rotation:-21, frame:"forward"}, {x:-15378, y:387, z:12098, rotation:-21, frame:"forward"}, {x:-15405, y:387, z:12107, rotation:-21, frame:"forward"}, {x:-15431, y:387, z:12116, rotation:-21, frame:"forward"}, {x:-15458, y:387, z:12124, rotation:-21, frame:"forward"}, {x:-15485, y:388, z:12133, rotation:-21, frame:"forward"}, {x:-15511, y:400, z:12141, rotation:-21, frame:"down"}, {x:-15538, y:419, z:12150, rotation:-21, frame:"down"}, {x:-15565, y:438, z:12158, rotation:-21, frame:"down"}, {x:-15591, y:457, z:12166, rotation:-21, frame:"down"}, {x:-15618, y:475, z:12175, rotation:-21, frame:"down"}, {x:-15645, y:494, z:12183, rotation:-21, frame:"forward"}, {x:-15671, y:501, z:12192, rotation:-21, frame:"forward"}, {x:-15698, y:507, z:12200, rotation:-21, frame:"forward"}, {x:-15725, y:512, z:12209, rotation:-21, frame:"forward"}, {x:-15751, y:516, z:12217, rotation:-21, frame:"forward"}, {x:-15778, y:519, z:12226, rotation:-21, frame:"forward"}, {x:-15805, y:521, z:12234, rotation:-21, frame:"forward"}, {x:-15831, y:522, z:12243, rotation:-21, frame:"forward"}, {x:-15858, y:522, z:12252, rotation:-21, frame:"forward"}, {x:-15885, y:522, z:12260, rotation:-21, frame:"forward"}, {x:-15911, y:522, z:12269, rotation:-21, frame:"forward"}, {x:-15938, y:522, z:12278, rotation:-21, frame:"forward"}, {x:-15965, y:522, z:12286, rotation:-21, frame:"forward"}, {x:-15991, y:522, z:12295, rotation:-21, frame:"forward"}, {x:-16018, y:522, z:12303, rotation:-21, frame:"forward"}, {x:-16045, y:522, z:12312, rotation:-21, frame:"forward"}, {x:-16071, y:522, z:12321, rotation:-21, frame:"forward"}, {x:-16098, y:522, z:12329, rotation:-21, frame:"forward"}, {x:-16125, y:522, z:12338, rotation:-21, frame:"forward"}, {x:-16151, y:522, z:12347, rotation:-21, frame:"forward"}, {x:-16178, y:522, z:12355, rotation:-21, frame:"forward"}, {x:-16205, y:522, z:12364, rotation:-21, frame:"forward"}, {x:-16231, y:522, z:12372, rotation:-21, frame:"forward"}, {x:-16258, y:522, z:12381, rotation:-21, frame:"forward"}, {x:-16285, y:522, z:12390, rotation:-21, frame:"forward"}, {x:-16311, y:522, z:12398, rotation:-21, frame:"forward"}, {x:-16338, y:522, z:12407, rotation:-21, frame:"forward"}, {x:-16365, y:522, z:12415, rotation:-21, frame:"forward"}, {x:-16391, y:522, z:12424, rotation:-21, frame:"forward"}, {x:-16418, y:522, z:12433, rotation:-21, frame:"forward"}, {x:-16445, y:522, z:12441, rotation:-21, frame:"forward"}, {x:-16471, y:522, z:12450, rotation:-20, frame:"forward"}, {x:-16497, y:522, z:12459, rotation:-19, frame:"forward"}, {x:-16522, y:522, z:12467, rotation:-18, frame:"forward"}, {x:-16546, y:522, z:12476, rotation:-18, frame:"forward"}, {x:-16569, y:522, z:12485, rotation:-17, frame:"forward"}, {x:-16592, y:522, z:12493, rotation:-16, frame:"forward"}, {x:-16613, y:522, z:12502, rotation:-16, frame:"forward"}, {x:-16633, y:522, z:12511, rotation:-15, frame:"forward"}, {x:-16653, y:522, z:12519, rotation:-14, frame:"forward"}, {x:-16672, y:522, z:12528, rotation:-14, frame:"forward"}, {x:-16690, y:522, z:12537, rotation:-13, frame:"forward"}, {x:-16707, y:522, z:12546, rotation:-12, frame:"forward"}, {x:-16723, y:522, z:12554, rotation:-12, frame:"forward"}, {x:-16738, y:522, z:12563, rotation:-11, frame:"forward"}, {x:-16752, y:522, z:12572, rotation:-10, frame:"forward"}, {x:-16766, y:522, z:12581, rotation:-10, frame:"forward"}, {x:-16778, y:522, z:12590, rotation:-9, frame:"forward"}, {x:-16790, y:522, z:12598, rotation:-8, frame:"forward"}, {x:-16801, y:522, z:12607, rotation:-8, frame:"forward"}, {x:-16811, y:522, z:12616, rotation:-7, frame:"forward"}, {x:-16820, y:522, z:12625, rotation:-6, frame:"forward"}, {x:-16828, y:522, z:12634, rotation:-6, frame:"forward"}, {x:-16835, y:522, z:12643, rotation:-5, frame:"forward"}, {x:-16842, y:522, z:12652, rotation:-4, frame:"forward"}, {x:-16847, y:522, z:12661, rotation:-4, frame:"forward"}, {x:-16852, y:522, z:12670, rotation:-3, frame:"forward"}, {x:-16856, y:522, z:12678, rotation:-2, frame:"forward"}, {x:-16859, y:522, z:12687, rotation:-1, frame:"forward"}, {x:-16861, y:522, z:12696, rotation:-1, frame:"forward"}, {x:-16861, y:522, z:12705, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12714, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12723, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12732, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12741, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12750, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12759, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12768, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12777, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12786, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12795, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12804, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12813, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12822, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12831, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12840, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12849, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12858, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12867, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12876, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12885, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12894, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12903, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12912, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12921, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12930, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12939, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12948, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12957, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12966, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12975, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12984, rotation:0, frame:"forward"}, {x:-16861, y:522, z:12993, rotation:0, frame:"forward"}, {x:-16861, y:522, z:13002, rotation:0, frame:"forward"}, {x:-16861, y:522, z:13011, rotation:0, frame:"forward"}, {x:-16861, y:522, z:13020, rotation:0, frame:"forward"}, {x:-16861, y:522, z:13029, rotation:0, frame:"forward"}, {x:-16861, y:522, z:13038, rotation:0, frame:"forward"}, {x:-16861, y:522, z:13047, rotation:1, frame:"forward"}, {x:-16860, y:522, z:13056, rotation:2, frame:"forward"}, {x:-16858, y:522, z:13065, rotation:2, frame:"forward"}, {x:-16855, y:522, z:13074, rotation:3, frame:"forward"}, {x:-16851, y:522, z:13083, rotation:4, frame:"forward"}, {x:-16847, y:522, z:13092, rotation:3, frame:"forward"}, {x:-16843, y:522, z:13101, rotation:2, frame:"forward"}, {x:-16840, y:522, z:13110, rotation:1, frame:"forward"}, {x:-16838, y:522, z:13119, rotation:1, frame:"forward"}, {x:-16837, y:522, z:13128, rotation:0, frame:"forward"}, {x:-16837, y:522, z:13137, rotation:0, frame:"forward"}, {x:-16837, y:522, z:13146, rotation:0, frame:"forward"}, {x:-16837, y:522, z:13155, rotation:0, frame:"forward"}, {x:-16837, y:522, z:13164, rotation:0, frame:"forward"}, {x:-16837, y:522, z:13173, rotation:0, frame:"forward"}, {x:-16837, y:522, z:13182, rotation:0, frame:"forward"}, {x:-16837, y:522, z:13191, rotation:1, frame:"forward"}, {x:-16836, y:522, z:13200, rotation:2, frame:"forward"}, {x:-16834, y:522, z:13209, rotation:2, frame:"forward"}, {x:-16831, y:522, z:13218, rotation:3, frame:"forward"}, {x:-16827, y:522, z:13227, rotation:4, frame:"forward"}, {x:-16822, y:522, z:13236, rotation:4, frame:"forward"}, {x:-16816, y:522, z:13245, rotation:4, frame:"forward"}, {x:-16812, y:522, z:13254, rotation:3, frame:"forward"}, {x:-16808, y:522, z:13263, rotation:2, frame:"forward"}, {x:-16805, y:522, z:13272, rotation:1, frame:"forward"}, {x:-16803, y:522, z:13281, rotation:1, frame:"forward"}, {x:-16802, y:522, z:13290, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13299, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13308, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13317, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13326, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13335, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13344, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13353, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13362, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13371, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13380, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13389, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13398, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13407, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13416, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13425, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13434, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13443, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13452, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13461, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13470, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13479, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13488, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13497, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13506, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13515, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13524, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13533, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13542, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13551, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13560, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13569, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13578, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13587, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13596, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13605, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13614, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13623, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13632, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13641, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13650, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13659, rotation:0, frame:"forward"}, {x:-16802, y:522, z:13668, rotation:0, frame:"forward"}, {x:-16802, y:523, z:13677, rotation:0, frame:"forward"}, {x:-16802, y:535, z:13685, rotation:0, frame:"down"}, {x:-16802, y:553, z:13694, rotation:0, frame:"down"}, {x:-16802, y:572, z:13703, rotation:0, frame:"down"}, {x:-16802, y:591, z:13712, rotation:0, frame:"down"}, {x:-16802, y:610, z:13720, rotation:-1, frame:"down"}, {x:-16803, y:628, z:13729, rotation:-2, frame:"down"}, {x:-16805, y:647, z:13738, rotation:-2, frame:"down"}, {x:-16808, y:666, z:13746, rotation:-3, frame:"down"}, {x:-16812, y:685, z:13755, rotation:-4, frame:"down"}, {x:-16817, y:703, z:13764, rotation:-4, frame:"forward"}, {x:-16823, y:710, z:13773, rotation:-5, frame:"forward"}, {x:-16829, y:716, z:13781, rotation:-6, frame:"forward"}, {x:-16836, y:721, z:13790, rotation:-6, frame:"forward"}, {x:-16844, y:725, z:13799, rotation:-7, frame:"forward"}, {x:-16853, y:728, z:13808, rotation:-7, frame:"forward"}, {x:-16863, y:730, z:13817, rotation:-8, frame:"forward"}, {x:-16873, y:731, z:13826, rotation:-9, frame:"forward"}, {x:-16884, y:731, z:13834, rotation:-9, frame:"forward"}, {x:-16896, y:731, z:13843, rotation:-10, frame:"forward"}, {x:-16909, y:731, z:13852, rotation:-10, frame:"forward"}, {x:-16923, y:731, z:13861, rotation:-11, frame:"forward"}, {x:-16937, y:731, z:13870, rotation:-12, frame:"forward"}, {x:-16952, y:731, z:13878, rotation:-12, frame:"forward"}, {x:-16968, y:731, z:13887, rotation:-13, frame:"forward"}, {x:-16985, y:731, z:13896, rotation:-14, frame:"forward"}, {x:-17003, y:731, z:13905, rotation:-14, frame:"forward"}, {x:-17021, y:731, z:13913, rotation:-15, frame:"forward"}, {x:-17040, y:731, z:13922, rotation:-15, frame:"forward"}, {x:-17060, y:731, z:13931, rotation:-16, frame:"forward"}, {x:-17081, y:731, z:13940, rotation:-17, frame:"forward"}, {x:-17103, y:731, z:13948, rotation:-17, frame:"forward"}, {x:-17125, y:731, z:13957, rotation:-18, frame:"forward"}, {x:-17148, y:731, z:13966, rotation:-18, frame:"forward"}, {x:-17172, y:731, z:13974, rotation:-19, frame:"forward"}, {x:-17197, y:731, z:13983, rotation:-20, frame:"forward"}, {x:-17223, y:731, z:13992, rotation:-20, frame:"forward"}, {x:-17249, y:731, z:14000, rotation:-21, frame:"forward"}, {x:-17276, y:731, z:14009, rotation:-21, frame:"forward"}, {x:-17302, y:731, z:14017, rotation:-21, frame:"forward"}, {x:-17329, y:731, z:14026, rotation:-21, frame:"forward"}, {x:-17356, y:731, z:14035, rotation:-21, frame:"forward"}, {x:-17382, y:731, z:14043, rotation:-21, frame:"forward"}, {x:-17409, y:731, z:14052, rotation:-21, frame:"forward"}, {x:-17436, y:731, z:14060, rotation:-21, frame:"forward"}, {x:-17462, y:731, z:14069, rotation:-21, frame:"forward"}, {x:-17489, y:731, z:14078, rotation:-21, frame:"forward"}, {x:-17516, y:731, z:14086, rotation:-21, frame:"forward"}, {x:-17542, y:731, z:14095, rotation:-21, frame:"forward"}, {x:-17569, y:731, z:14104, rotation:-21, frame:"forward"}, {x:-17596, y:731, z:14112, rotation:-21, frame:"forward"}, {x:-17622, y:731, z:14121, rotation:-21, frame:"forward"}, {x:-17649, y:731, z:14129, rotation:-21, frame:"forward"}, {x:-17676, y:731, z:14138, rotation:-21, frame:"forward"}, {x:-17702, y:731, z:14147, rotation:-21, frame:"forward"}, {x:-17729, y:732, z:14155, rotation:-21, frame:"forward"}, {x:-17756, y:744, z:14164, rotation:-21, frame:"down"}, {x:-17782, y:763, z:14172, rotation:-21, frame:"down"}, {x:-17809, y:781, z:14180, rotation:-21, frame:"down"}, {x:-17836, y:800, z:14189, rotation:-21, frame:"down"}, {x:-17862, y:819, z:14197, rotation:-21, frame:"down"}, {x:-17889, y:838, z:14205, rotation:-21, frame:"down"}, {x:-17916, y:856, z:14214, rotation:-21, frame:"down"}, {x:-17942, y:875, z:14222, rotation:-21, frame:"down"}, {x:-17969, y:894, z:14231, rotation:-21, frame:"down"}, {x:-17996, y:913, z:14239, rotation:-21, frame:"down"}, {x:-18022, y:931, z:14247, rotation:-21, frame:"down"}, {x:-18049, y:950, z:14256, rotation:-21, frame:"down"}, {x:-18076, y:969, z:14264, rotation:-21, frame:"down"}, {x:-18102, y:988, z:14272, rotation:-21, frame:"forward"}, {x:-18129, y:994, z:14281, rotation:-21, frame:"forward"}, {x:-18156, y:1000, z:14289, rotation:-21, frame:"forward"}, {x:-18182, y:1006, z:14298, rotation:-21, frame:"forward"}, {x:-18209, y:1010, z:14306, rotation:-21, frame:"forward"}, {x:-18236, y:1012, z:14315, rotation:-21, frame:"forward"}, {x:-18262, y:1014, z:14324, rotation:-21, frame:"forward"}, {x:-18289, y:1015, z:14332, rotation:-21, frame:"forward"}, {x:-18316, y:1015, z:14341, rotation:-21, frame:"forward"}, {x:-18342, y:1015, z:14349, rotation:-21, frame:"forward"}, {x:-18369, y:1015, z:14358, rotation:-21, frame:"forward"}, {x:-18396, y:1015, z:14367, rotation:-21, frame:"forward"}, {x:-18422, y:1016, z:14375, rotation:-21, frame:"forward"}, {x:-18449, y:1028, z:14384, rotation:-21, frame:"down"}, {x:-18476, y:1047, z:14392, rotation:-21, frame:"down"}, {x:-18502, y:1065, z:14400, rotation:-21, frame:"down"}, {x:-18529, y:1084, z:14409, rotation:-21, frame:"forward"}, {x:-18556, y:1091, z:14417, rotation:-21, frame:"forward"}, {x:-18582, y:1097, z:14426, rotation:-20, frame:"forward"}, {x:-18608, y:1102, z:14434, rotation:-19, frame:"forward"}, {x:-18633, y:1106, z:14443, rotation:-18, frame:"forward"}, {x:-18657, y:1109, z:14452, rotation:-18, frame:"forward"}, {x:-18680, y:1111, z:14460, rotation:-17, frame:"forward"}, {x:-18703, y:1112, z:14469, rotation:-16, frame:"forward"}, {x:-18724, y:1112, z:14478, rotation:-16, frame:"forward"}, {x:-18744, y:1112, z:14486, rotation:-15, frame:"forward"}, {x:-18764, y:1112, z:14495, rotation:-14, frame:"forward"}, {x:-18783, y:1112, z:14504, rotation:-14, frame:"forward"}, {x:-18801, y:1112, z:14513, rotation:-13, frame:"forward"}, {x:-18818, y:1112, z:14521, rotation:-5, frame:"forward"}, {x:-18824, y:1112, z:14530, rotation:3, frame:"forward"}, {x:-18819, y:1112, z:14539, rotation:4, frame:"forward"}, {x:-18814, y:1112, z:14548, rotation:5, frame:"forward"}, {x:-18808, y:1112, z:14557, rotation:5, frame:"forward"}, {x:-18801, y:1112, z:14566, rotation:6, frame:"forward"}, {x:-18793, y:1112, z:14575, rotation:5, frame:"forward"}, {x:-18786, y:1112, z:14584, rotation:5, frame:"forward"}, {x:-18780, y:1112, z:14593, rotation:4, frame:"forward"}, {x:-18775, y:1112, z:14602, rotation:3, frame:"forward"}, {x:-18771, y:1112, z:14610, rotation:3, frame:"forward"}, {x:-18768, y:1112, z:14619, rotation:2, frame:"forward"}, {x:-18766, y:1112, z:14628, rotation:1, frame:"forward"}, {x:-18764, y:1112, z:14637, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14646, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14655, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14664, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14673, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14682, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14691, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14700, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14709, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14718, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14727, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14736, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14745, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14754, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14763, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14772, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14781, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14790, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14799, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14808, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14817, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14826, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14835, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14844, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14853, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14862, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14871, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14880, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14889, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14898, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14907, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14916, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14925, rotation:0, frame:"forward"}, {x:-18764, y:1112, z:14934, rotation:0, frame:"forward"}, {x:-18764, y:1113, z:14943, rotation:0, frame:"forward"}, {x:-18764, y:1125, z:14952, rotation:0, frame:"down"}, {x:-18764, y:1143, z:14961, rotation:0, frame:"down"}, {x:-18764, y:1162, z:14970, rotation:0, frame:"down"}, {x:-18764, y:1181, z:14978, rotation:0, frame:"down"}, {x:-18764, y:1200, z:14987, rotation:0, frame:"down"}, {x:-18764, y:1218, z:14996, rotation:0, frame:"forward"}, {x:-18764, y:1225, z:15005, rotation:0, frame:"forward"}, {x:-18764, y:1231, z:15014, rotation:0, frame:"forward"}, {x:-18764, y:1236, z:15023, rotation:0, frame:"forward"}, {x:-18764, y:1240, z:15032, rotation:0, frame:"forward"}, {x:-18764, y:1243, z:15040, rotation:0, frame:"forward"}, {x:-18764, y:1245, z:15049, rotation:0, frame:"forward"}, {x:-18764, y:1246, z:15058, rotation:0, frame:"forward"}, {x:-18764, y:1246, z:15067, rotation:0, frame:"forward"}, {x:-18764, y:1246, z:15076, rotation:0, frame:"forward"}, {x:-18764, y:1246, z:15085, rotation:0, frame:"forward"}, {x:-18764, y:1246, z:15094, rotation:0, frame:"forward"}, {x:-18764, y:1246, z:15103, rotation:0, frame:"forward"}, {x:-18764, y:1246, z:15112, rotation:0, frame:"forward"}, {x:-18764, y:1246, z:15121, rotation:0, frame:"forward"}, {x:-18764, y:1246, z:15130, rotation:0, frame:"forward"}, {x:-18764, y:1246, z:15139, rotation:0, frame:"forward"}, {x:-18764, y:1246, z:15148, rotation:0, frame:"forward"}, {x:-18764, y:1246, z:15157, rotation:0, frame:"forward"}, {x:-18764, y:1246, z:15166, rotation:0, frame:"forward"}, {x:-18764, y:1246, z:15175, rotation:0, frame:"forward"}, {x:-18764, y:1246, z:15184, rotation:0, frame:"forward"}, {x:-18764, y:1246, z:15193, rotation:0, frame:"forward"}, {x:-18764, y:1246, z:15202, rotation:0, frame:"forward"}, {x:-18764, y:1246, z:15211, rotation:0, frame:"forward"}, {x:-18764, y:1246, z:15220, rotation:0, frame:"forward"}, {x:-18764, y:1246, z:15229, rotation:0, frame:"forward"}, {x:-18764, y:1246, z:15238, rotation:0, frame:"forward"}, {x:-18764, y:1247, z:15247, rotation:0, frame:"forward"}, {x:-18764, y:1259, z:15256, rotation:0, frame:"down"}, {x:-18764, y:1278, z:15265, rotation:0, frame:"down"}, {x:-18764, y:1296, z:15274, rotation:0, frame:"down"}, {x:-18764, y:1315, z:15282, rotation:0, frame:"down"}, {x:-18764, y:1334, z:15291, rotation:0, frame:"forward"}, {x:-18764, y:1341, z:15300, rotation:0, frame:"forward"}, {x:-18764, y:1347, z:15309, rotation:0, frame:"forward"}, {x:-18764, y:1352, z:15318, rotation:0, frame:"forward"}, {x:-18764, y:1356, z:15327, rotation:0, frame:"forward"}, {x:-18764, y:1359, z:15336, rotation:0, frame:"forward"}, {x:-18764, y:1360, z:15345, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15354, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15363, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15372, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15381, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15390, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15399, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15408, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15417, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15426, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15435, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15444, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15453, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15462, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15471, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15480, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15489, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15498, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15507, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15516, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15525, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15534, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15543, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15552, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15561, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15570, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15579, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15588, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15597, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15606, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15615, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15624, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15633, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15642, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15651, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15660, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15669, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15678, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15687, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15696, rotation:0, frame:"forward"}, {x:-18764, y:1361, z:15705, rotation:-1, frame:"forward"}, {x:-18765, y:1361, z:15714, rotation:-2, frame:"forward"}, {x:-18767, y:1361, z:15723, rotation:-2, frame:"forward"}, {x:-18770, y:1361, z:15732, rotation:-3, frame:"forward"}, {x:-18774, y:1361, z:15741, rotation:-4, frame:"forward"}, {x:-18779, y:1361, z:15750, rotation:-4, frame:"forward"}, {x:-18785, y:1361, z:15759, rotation:-5, frame:"forward"}, {x:-18791, y:1361, z:15767, rotation:-6, frame:"forward"}, {x:-18798, y:1361, z:15776, rotation:-6, frame:"forward"}, {x:-18806, y:1360, z:15785, rotation:-7, frame:"forward"}, {x:-18815, y:1348, z:15794, rotation:-7, frame:"up"}, {x:-18825, y:1329, z:15802, rotation:-8, frame:"up"}, {x:-18835, y:1311, z:15811, rotation:-9, frame:"up"}, {x:-18846, y:1292, z:15820, rotation:-9, frame:"up"}, {x:-18858, y:1273, z:15828, rotation:-10, frame:"up"}, {x:-18871, y:1254, z:15837, rotation:-10, frame:"up"}, {x:-18885, y:1236, z:15845, rotation:-11, frame:"up"}, {x:-18899, y:1217, z:15854, rotation:-12, frame:"up"}, {x:-18914, y:1198, z:15862, rotation:-12, frame:"up"}, {x:-18930, y:1179, z:15871, rotation:-13, frame:"up"}, {x:-18947, y:1161, z:15879, rotation:-14, frame:"up"}, {x:-18965, y:1142, z:15888, rotation:-14, frame:"up"}, {x:-18983, y:1123, z:15896, rotation:-15, frame:"up"}, {x:-19002, y:1104, z:15905, rotation:-15, frame:"up"}, {x:-19022, y:1086, z:15913, rotation:-16, frame:"up"}, {x:-19043, y:1067, z:15922, rotation:-17, frame:"up"}, {x:-19065, y:1048, z:15930, rotation:-17, frame:"up"}, {x:-19087, y:1029, z:15938, rotation:-18, frame:"up"}, {x:-19110, y:1011, z:15947, rotation:-18, frame:"up"}, {x:-19134, y:992, z:15955, rotation:-19, frame:"up"}, {x:-19159, y:973, z:15964, rotation:-20, frame:"up"}, {x:-19185, y:954, z:15972, rotation:-20, frame:"up"}, {x:-19211, y:936, z:15980, rotation:-21, frame:"up"}, {x:-19238, y:917, z:15989, rotation:-21, frame:"up"}, {x:-19265, y:898, z:15997, rotation:-21, frame:"up"}, {x:-19291, y:879, z:16005, rotation:-21, frame:"up"}, {x:-19318, y:861, z:16014, rotation:-21, frame:"up"}, {x:-19345, y:842, z:16022, rotation:-21, frame:"up"}, {x:-19371, y:823, z:16030, rotation:-21, frame:"up"}, {x:-19398, y:804, z:16039, rotation:-21, frame:"up"}, {x:-19425, y:786, z:16047, rotation:-21, frame:"up"}, {x:-19451, y:767, z:16055, rotation:-21, frame:"up"}, {x:-19478, y:748, z:16064, rotation:-21, frame:"up"}, {x:-19505, y:729, z:16072, rotation:-21, frame:"up"}, {x:-19531, y:711, z:16081, rotation:-21, frame:"up"}, {x:-19558, y:692, z:16089, rotation:-21, frame:"up"}, {x:-19585, y:673, z:16097, rotation:-21, frame:"up"}, {x:-19611, y:654, z:16106, rotation:-21, frame:"up"}, {x:-19638, y:636, z:16114, rotation:-21, frame:"up"}, {x:-19665, y:617, z:16122, rotation:-21, frame:"up"}, {x:-19691, y:598, z:16131, rotation:-21, frame:"up"}, {x:-19718, y:579, z:16139, rotation:-21, frame:"up"}, {x:-19745, y:561, z:16147, rotation:-21, frame:"up"}, {x:-19771, y:542, z:16156, rotation:-21, frame:"up"}, {x:-19798, y:523, z:16164, rotation:-21, frame:"up"}, {x:-19825, y:504, z:16172, rotation:-21, frame:"up"}, {x:-19851, y:486, z:16181, rotation:-21, frame:"up"}, {x:-19878, y:467, z:16189, rotation:-21, frame:"up"}, {x:-19905, y:448, z:16197, rotation:-21, frame:"up"}, {x:-19931, y:429, z:16206, rotation:-21, frame:"up"}, {x:-19958, y:411, z:16214, rotation:-21, frame:"up"}, {x:-19985, y:392, z:16223, rotation:-21, frame:"up"}, {x:-20011, y:373, z:16231, rotation:-21, frame:"up"}, {x:-20038, y:354, z:16239, rotation:-21, frame:"up"}, {x:-20065, y:336, z:16248, rotation:-21, frame:"up"}, {x:-20091, y:317, z:16256, rotation:-21, frame:"up"}, {x:-20118, y:298, z:16264, rotation:-21, frame:"up"}, {x:-20145, y:279, z:16273, rotation:-21, frame:"up"}, {x:-20171, y:261, z:16281, rotation:-21, frame:"up"}, {x:-20198, y:242, z:16289, rotation:-21, frame:"up"}, {x:-20225, y:223, z:16298, rotation:-21, frame:"up"}, {x:-20251, y:204, z:16306, rotation:-21, frame:"up"}, {x:-20278, y:186, z:16314, rotation:-21, frame:"up"}, {x:-20305, y:167, z:16323, rotation:-21, frame:"up"}, {x:-20331, y:148, z:16331, rotation:-21, frame:"up"}, {x:-20358, y:129, z:16339, rotation:-21, frame:"up"}, {x:-20385, y:111, z:16348, rotation:-21, frame:"up"}, {x:-20411, y:92, z:16356, rotation:-21, frame:"up"}, {x:-20438, y:73, z:16364, rotation:-21, frame:"up"}, {x:-20465, y:54, z:16373, rotation:-21, frame:"up"}, {x:-20491, y:36, z:16381, rotation:-21, frame:"forward"}, {x:-20518, y:29, z:16390, rotation:-21, frame:"forward"}, {x:-20545, y:23, z:16398, rotation:-21, frame:"forward"}, {x:-20571, y:18, z:16407, rotation:-21, frame:"forward"}, {x:-20598, y:14, z:16415, rotation:-21, frame:"forward"}, {x:-20625, y:11, z:16424, rotation:-21, frame:"forward"}, {x:-20651, y:9, z:16433, rotation:-21, frame:"forward"}, {x:-20678, y:8, z:16441, rotation:-21, frame:"forward"}, {x:-20705, y:8, z:16450, rotation:-21, frame:"forward"}, {x:-20731, y:8, z:16458, rotation:-21, frame:"forward"}, {x:-20758, y:8, z:16467, rotation:-21, frame:"forward"}, {x:-20785, y:8, z:16476, rotation:-21, frame:"forward"}, {x:-20811, y:8, z:16484, rotation:-21, frame:"forward"}, {x:-20838, y:8, z:16493, rotation:-21, frame:"forward"}, {x:-20865, y:8, z:16501, rotation:-21, frame:"forward"}, {x:-20891, y:8, z:16510, rotation:-21, frame:"forward"}, {x:-20918, y:8, z:16519, rotation:-20, frame:"forward"}, {x:-20944, y:8, z:16527, rotation:-19, frame:"forward"}, {x:-20969, y:8, z:16536, rotation:-18, frame:"forward"}, {x:-20993, y:8, z:16545, rotation:-18, frame:"forward"}, {x:-21016, y:8, z:16553, rotation:-17, frame:"forward"}, {x:-21038, y:8, z:16562, rotation:-16, frame:"forward"}, {x:-21059, y:8, z:16571, rotation:-16, frame:"forward"}, {x:-21080, y:8, z:16579, rotation:-15, frame:"forward"}, {x:-21100, y:8, z:16588, rotation:-14, frame:"forward"}, {x:-21118, y:8, z:16597, rotation:-14, frame:"forward"}, {x:-21136, y:8, z:16606, rotation:-13, frame:"forward"}, {x:-21153, y:8, z:16614, rotation:-12, frame:"forward"}, {x:-21169, y:8, z:16623, rotation:-12, frame:"forward"}, {x:-21185, y:8, z:16632, rotation:-11, frame:"forward"}, {x:-21199, y:8, z:16641, rotation:-10, frame:"forward"}, {x:-21212, y:8, z:16650, rotation:-10, frame:"forward"}, {x:-21225, y:8, z:16658, rotation:-9, frame:"forward"}, {x:-21237, y:8, z:16667, rotation:-8, frame:"forward"}, {x:-21247, y:8, z:16676, rotation:-8, frame:"forward"}, {x:-21257, y:8, z:16685, rotation:-7, frame:"forward"}, {x:-21266, y:8, z:16694, rotation:-6, frame:"forward"}, {x:-21275, y:8, z:16703, rotation:-6, frame:"forward"}, {x:-21282, y:8, z:16712, rotation:-5, frame:"forward"}, {x:-21288, y:8, z:16720, rotation:-4, frame:"forward"}, {x:-21294, y:8, z:16729, rotation:-4, frame:"forward"}, {x:-21299, y:8, z:16738, rotation:-3, frame:"forward"}, {x:-21302, y:8, z:16747, rotation:-2, frame:"forward"}, {x:-21305, y:8, z:16756, rotation:-1, frame:"forward"}, {x:-21307, y:8, z:16765, rotation:-1, frame:"forward"}, {x:-21308, y:8, z:16774, rotation:0, frame:"forward"}, {x:-21308, y:8, z:16783, rotation:0, frame:"forward"}, {x:-21308, y:8, z:16792, rotation:0, frame:"forward"}, {x:-21308, y:8, z:16801, rotation:0, frame:"forward"}, {x:-21308, y:8, z:16810, rotation:0, frame:"forward"}, {x:-21308, y:8, z:16819, rotation:0, frame:"forward"}, {x:-21308, y:8, z:16828, rotation:0, frame:"forward"}, {x:-21308, y:8, z:16837, rotation:0, frame:"forward"}, {x:-21308, y:8, z:16846, rotation:0, frame:"forward"}, {x:-21308, y:8, z:16855, rotation:0, frame:"forward"}, {x:-21308, y:8, z:16864, rotation:0, frame:"forward"}, {x:-21308, y:8, z:16873, rotation:0, frame:"forward"}, {x:-21308, y:8, z:16882, rotation:0, frame:"forward"}, {x:-21308, y:8, z:16891, rotation:0, frame:"forward"}, {x:-21308, y:8, z:16900, rotation:0, frame:"forward"}, {x:-21308, y:8, z:16909, rotation:0, frame:"forward"}, {x:-21308, y:8, z:16918, rotation:0, frame:"forward"}, {x:-21308, y:8, z:16927, rotation:0, frame:"forward"}, {x:-21308, y:8, z:16936, rotation:0, frame:"forward"}, {x:-21308, y:8, z:16945, rotation:0, frame:"forward"}, {x:-21308, y:8, z:16954, rotation:0, frame:"forward"}, {x:-21308, y:8, z:16963, rotation:0, frame:"forward"}, {x:-21308, y:8, z:16972, rotation:0, frame:"forward"}, {x:-21308, y:8, z:16981, rotation:0, frame:"forward"}, {x:-21308, y:8, z:16990, rotation:0, frame:"forward"}, {x:-21308, y:8, z:16999, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17008, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17017, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17026, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17035, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17044, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17053, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17062, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17071, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17080, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17089, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17098, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17107, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17116, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17125, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17134, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17143, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17152, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17161, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17170, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17179, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17188, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17197, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17206, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17215, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17224, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17233, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17242, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17251, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17260, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17269, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17278, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17287, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17296, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17305, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17314, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17323, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17332, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17341, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17350, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17359, rotation:0, frame:"forward"}, {x:-21308, y:8, z:17368, rotation:0, frame:"forward"}, {x:-21308, y:9, z:17377, rotation:0, frame:"forward"}, {x:-21308, y:21, z:17386, rotation:0, frame:"down"}, {x:-21308, y:40, z:17395, rotation:0, frame:"forward"}, {x:-21308, y:47, z:17404, rotation:0, frame:"forward"}, {x:-21308, y:53, z:17413, rotation:0, frame:"forward"}, {x:-21308, y:58, z:17421, rotation:0, frame:"forward"}, {x:-21308, y:62, z:17430, rotation:0, frame:"forward"}, {x:-21308, y:65, z:17439, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17448, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17457, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17466, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17475, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17484, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17493, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17502, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17511, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17520, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17529, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17538, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17547, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17556, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17565, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17574, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17583, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17592, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17601, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17610, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17619, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17628, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17637, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17646, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17655, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17664, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17673, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17682, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17691, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17700, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17709, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17718, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17727, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17736, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17745, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17754, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17763, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17772, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17781, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17790, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17799, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17808, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17817, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17826, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17835, rotation:0, frame:"forward"}, {x:-21308, y:67, z:17844, rotation:-1, frame:"forward"}, {x:-21309, y:67, z:17853, rotation:-2, frame:"forward"}, {x:-21311, y:67, z:17862, rotation:-2, frame:"forward"}, {x:-21314, y:67, z:17871, rotation:-3, frame:"forward"}, {x:-21318, y:67, z:17880, rotation:-4, frame:"forward"}, {x:-21323, y:67, z:17889, rotation:-4, frame:"forward"}, {x:-21328, y:67, z:17898, rotation:-5, frame:"forward"}, {x:-21335, y:67, z:17907, rotation:-6, frame:"forward"}, {x:-21342, y:67, z:17916, rotation:-6, frame:"forward"}, {x:-21350, y:67, z:17925, rotation:-7, frame:"forward"}, {x:-21359, y:67, z:17934, rotation:-7, frame:"forward"}, {x:-21368, y:67, z:17942, rotation:-8, frame:"forward"}, {x:-21379, y:67, z:17951, rotation:-9, frame:"forward"}, {x:-21390, y:67, z:17960, rotation:-9, frame:"forward"}, {x:-21402, y:67, z:17969, rotation:-10, frame:"forward"}, {x:-21415, y:66, z:17978, rotation:-10, frame:"forward"}, {x:-21428, y:54, z:17986, rotation:-11, frame:"up"}, {x:-21443, y:36, z:17995, rotation:-12, frame:"up"}, {x:-21458, y:17, z:18003, rotation:-12, frame:"up"}, {x:-21474, y:-2, z:18012, rotation:-13, frame:"up"}, {x:-21491, y:-21, z:18020, rotation:-14, frame:"up"}, {x:-21508, y:-39, z:18029, rotation:-14, frame:"up"}, {x:-21527, y:-58, z:18037, rotation:-15, frame:"up"}, {x:-21546, y:-77, z:18046, rotation:-15, frame:"up"}, {x:-21566, y:-96, z:18054, rotation:-16, frame:"up"}, {x:-21587, y:-114, z:18063, rotation:-17, frame:"up"}, {x:-21608, y:-133, z:18071, rotation:-17, frame:"up"}, {x:-21631, y:-152, z:18080, rotation:-18, frame:"up"}, {x:-21654, y:-171, z:18088, rotation:-18, frame:"up"}, {x:-21678, y:-189, z:18096, rotation:-19, frame:"up"}, {x:-21703, y:-208, z:18105, rotation:-20, frame:"up"}, {x:-21728, y:-227, z:18113, rotation:-20, frame:"up"}, {x:-21755, y:-246, z:18121, rotation:-21, frame:"up"}, {x:-21781, y:-264, z:18130, rotation:-21, frame:"up"}, {x:-21808, y:-283, z:18138, rotation:-21, frame:"up"}, {x:-21835, y:-302, z:18146, rotation:-21, frame:"up"}, {x:-21861, y:-321, z:18155, rotation:-21, frame:"up"}, {x:-21888, y:-339, z:18163, rotation:-21, frame:"up"}, {x:-21915, y:-358, z:18172, rotation:-21, frame:"up"}, {x:-21941, y:-377, z:18180, rotation:-21, frame:"up"}, {x:-21968, y:-396, z:18188, rotation:-21, frame:"up"}, {x:-21995, y:-414, z:18197, rotation:-21, frame:"up"}, {x:-22021, y:-433, z:18205, rotation:-21, frame:"up"}, {x:-22048, y:-452, z:18213, rotation:-21, frame:"up"}, {x:-22075, y:-471, z:18222, rotation:-21, frame:"up"}, {x:-22101, y:-489, z:18230, rotation:-21, frame:"up"}, {x:-22128, y:-508, z:18238, rotation:-21, frame:"up"}, {x:-22155, y:-527, z:18247, rotation:-21, frame:"up"}, {x:-22181, y:-546, z:18255, rotation:-21, frame:"up"}, {x:-22208, y:-564, z:18263, rotation:-21, frame:"up"}, {x:-22235, y:-583, z:18272, rotation:-21, frame:"up"}, {x:-22261, y:-602, z:18280, rotation:-21, frame:"up"}, {x:-22288, y:-621, z:18288, rotation:-21, frame:"up"}, {x:-22315, y:-639, z:18297, rotation:-21, frame:"up"}, {x:-22341, y:-658, z:18305, rotation:-21, frame:"up"}, {x:-22368, y:-677, z:18314, rotation:-21, frame:"up"}, {x:-22395, y:-696, z:18322, rotation:-21, frame:"up"}, {x:-22421, y:-714, z:18330, rotation:-21, frame:"up"}, {x:-22448, y:-733, z:18339, rotation:-21, frame:"up"}, {x:-22475, y:-752, z:18347, rotation:-21, frame:"up"}, {x:-22501, y:-771, z:18355, rotation:-21, frame:"up"}, {x:-22528, y:-789, z:18364, rotation:-21, frame:"up"}, {x:-22555, y:-808, z:18372, rotation:-21, frame:"up"}, {x:-22581, y:-827, z:18380, rotation:-21, frame:"up"}, {x:-22608, y:-846, z:18389, rotation:-21, frame:"up"}, {x:-22635, y:-864, z:18397, rotation:-21, frame:"up"}, {x:-22661, y:-883, z:18405, rotation:-21, frame:"up"}, {x:-22688, y:-902, z:18414, rotation:-21, frame:"up"}, {x:-22715, y:-921, z:18422, rotation:-21, frame:"up"}, {x:-22741, y:-939, z:18430, rotation:-21, frame:"up"}, {x:-22768, y:-958, z:18439, rotation:-21, frame:"up"}, {x:-22795, y:-977, z:18447, rotation:-21, frame:"up"}, {x:-22821, y:-996, z:18455, rotation:-21, frame:"up"}, {x:-22848, y:-1014, z:18464, rotation:-21, frame:"up"}, {x:-22875, y:-1033, z:18472, rotation:-21, frame:"up"}, {x:-22901, y:-1052, z:18481, rotation:-21, frame:"forward"}, {x:-22928, y:-1059, z:18489, rotation:-21, frame:"forward"}, {x:-22955, y:-1065, z:18498, rotation:-21, frame:"forward"}, {x:-22981, y:-1070, z:18506, rotation:-21, frame:"forward"}, {x:-23008, y:-1074, z:18515, rotation:-21, frame:"forward"}, {x:-23035, y:-1077, z:18523, rotation:-21, frame:"forward"}, {x:-23061, y:-1078, z:18532, rotation:-21, frame:"forward"}, {x:-23088, y:-1079, z:18540, rotation:-21, frame:"forward"}, {x:-23115, y:-1079, z:18549, rotation:-21, frame:"forward"}, {x:-23141, y:-1079, z:18558, rotation:-21, frame:"forward"}, {x:-23168, y:-1079, z:18566, rotation:-21, frame:"forward"}, {x:-23195, y:-1079, z:18575, rotation:-21, frame:"forward"}, {x:-23221, y:-1079, z:18584, rotation:-21, frame:"forward"}, {x:-23248, y:-1079, z:18592, rotation:-21, frame:"forward"}, {x:-23275, y:-1079, z:18601, rotation:-21, frame:"forward"}, {x:-23301, y:-1079, z:18609, rotation:-20, frame:"forward"}, {x:-23327, y:-1079, z:18618, rotation:-19, frame:"forward"}, {x:-23352, y:-1079, z:18627, rotation:-18, frame:"forward"}, {x:-23376, y:-1079, z:18635, rotation:-18, frame:"forward"}, {x:-23399, y:-1079, z:18644, rotation:-17, frame:"forward"}, {x:-23421, y:-1079, z:18653, rotation:-16, frame:"forward"}, {x:-23443, y:-1079, z:18661, rotation:-16, frame:"forward"}, {x:-23463, y:-1079, z:18670, rotation:-15, frame:"forward"}, {x:-23483, y:-1079, z:18679, rotation:-14, frame:"forward"}, {x:-23502, y:-1079, z:18688, rotation:-14, frame:"forward"}, {x:-23520, y:-1079, z:18696, rotation:-13, frame:"forward"}, {x:-23537, y:-1079, z:18705, rotation:-12, frame:"forward"}, {x:-23553, y:-1079, z:18714, rotation:-12, frame:"forward"}, {x:-23568, y:-1079, z:18723, rotation:-11, frame:"forward"}, {x:-23582, y:-1079, z:18731, rotation:-10, frame:"forward"}, {x:-23596, y:-1079, z:18740, rotation:-10, frame:"forward"}, {x:-23608, y:-1079, z:18749, rotation:-9, frame:"forward"}, {x:-23620, y:-1079, z:18758, rotation:-8, frame:"forward"}, {x:-23631, y:-1079, z:18767, rotation:-8, frame:"forward"}, {x:-23641, y:-1079, z:18776, rotation:-7, frame:"forward"}, {x:-23650, y:-1079, z:18784, rotation:-6, frame:"forward"}, {x:-23658, y:-1079, z:18793, rotation:-6, frame:"forward"}, {x:-23665, y:-1079, z:18802, rotation:-5, frame:"forward"}, {x:-23672, y:-1079, z:18811, rotation:-4, frame:"forward"}, {x:-23677, y:-1079, z:18820, rotation:-4, frame:"forward"}, {x:-23682, y:-1079, z:18829, rotation:-3, frame:"forward"}, {x:-23686, y:-1079, z:18838, rotation:-2, frame:"forward"}, {x:-23689, y:-1079, z:18847, rotation:-1, frame:"forward"}, {x:-23690, y:-1079, z:18856, rotation:-1, frame:"forward"}, {x:-23691, y:-1079, z:18865, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:18874, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:18883, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:18892, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:18901, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:18910, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:18919, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:18928, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:18937, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:18946, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:18955, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:18964, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:18973, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:18982, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:18991, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:19000, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:19009, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:19018, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:19027, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:19036, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:19045, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:19054, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:19063, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:19072, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:19081, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:19090, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:19099, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:19108, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:19117, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:19126, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:19135, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:19144, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:19153, rotation:0, frame:"forward"}, {x:-23691, y:-1079, z:19162, rotation:-1, frame:"forward"}, {x:-23692, y:-1079, z:19171, rotation:-2, frame:"forward"}, {x:-23694, y:-1079, z:19180, rotation:-2, frame:"forward"}, {x:-23697, y:-1079, z:19189, rotation:-3, frame:"forward"}, {x:-23701, y:-1079, z:19198, rotation:-4, frame:"forward"}, {x:-23706, y:-1079, z:19207, rotation:-4, frame:"forward"}, {x:-23712, y:-1079, z:19216, rotation:-5, frame:"forward"}, {x:-23718, y:-1079, z:19224, rotation:-6, frame:"forward"}, {x:-23725, y:-1079, z:19233, rotation:-6, frame:"forward"}, {x:-23733, y:-1080, z:19242, rotation:-7, frame:"forward"}, {x:-23742, y:-1069, z:19251, rotation:-7, frame:"forward"}, {x:-23752, y:-1059, z:19260, rotation:-7, frame:"forward"}, {x:-23760, y:-1050, z:19268, rotation:-6, frame:"forward"}, {x:-23768, y:-1041, z:19277, rotation:-5, frame:"forward"}, {x:-23775, y:-1034, z:19286, rotation:-5, frame:"forward"}, {x:-23781, y:-1027, z:19295, rotation:-4, frame:"forward"}, {x:-23786, y:-1021, z:19304, rotation:-3, frame:"forward"}, {x:-23791, y:-1016, z:19313, rotation:-3, frame:"forward"}, {x:-23794, y:-1012, z:19321, rotation:-2, frame:"forward"}, {x:-23797, y:-1009, z:19330, rotation:-1, frame:"forward"}, {x:-23798, y:-1008, z:19339, rotation:0, frame:"forward"}, {x:-23798, y:-1007, z:19348, rotation:0, frame:"forward"}, {x:-23798, y:-1007, z:19357, rotation:0, frame:"forward"}, {x:-23798, y:-1018, z:19366, rotation:0, frame:"forward"}, {x:-23798, y:-1017, z:19375, rotation:0, frame:"forward"}, {x:-23798, y:-1017, z:19384, rotation:0, frame:"forward"}, {x:-23798, y:-1017, z:19393, rotation:0, frame:"forward"}, {x:-23798, y:-1018, z:19402, rotation:0, frame:"forward"}, {x:-23798, y:-1030, z:19411, rotation:0, frame:"up"}, {x:-23798, y:-1049, z:19420, rotation:0, frame:"up"}, {x:-23798, y:-1068, z:19428, rotation:0, frame:"up"}, {x:-23798, y:-1087, z:19437, rotation:0, frame:"forward"}, {x:-23798, y:-1093, z:19446, rotation:0, frame:"forward"}, {x:-23798, y:-1099, z:19455, rotation:0, frame:"forward"}, {x:-23798, y:-1105, z:19464, rotation:0, frame:"forward"}, {x:-23798, y:-1109, z:19473, rotation:0, frame:"forward"}, {x:-23798, y:-1111, z:19482, rotation:0, frame:"forward"}, {x:-23798, y:-1113, z:19491, rotation:0, frame:"forward"}, {x:-23798, y:-1114, z:19500, rotation:0, frame:"forward"}, {x:-23798, y:-1114, z:19509, rotation:0, frame:"forward"}, {x:-23798, y:-1114, z:19518, rotation:0, frame:"forward"}, {x:-23798, y:-1114, z:19527, rotation:0, frame:"forward"}, {x:-23798, y:-1114, z:19536, rotation:0, frame:"forward"}, {x:-23798, y:-1114, z:19545, rotation:0, frame:"forward"}, {x:-23798, y:-1114, z:19554, rotation:0, frame:"forward"}, {x:-23798, y:-1114, z:19563, rotation:0, frame:"forward"}, {x:-23798, y:-1114, z:19572, rotation:0, frame:"forward"}, {x:-23798, y:-1114, z:19581, rotation:0, frame:"forward"}, {x:-23798, y:-1114, z:19590, rotation:0, frame:"forward"}, {x:-23798, y:-1114, z:19599, rotation:0, frame:"forward"}, {x:-23798, y:-1114, z:19608, rotation:0, frame:"forward"}, {x:-23798, y:-1114, z:19617, rotation:0, frame:"forward"}, {x:-23798, y:-1114, z:19626, rotation:0, frame:"forward"}, {x:-23798, y:-1114, z:19635, rotation:0, frame:"forward"}, {x:-23798, y:-1114, z:19644, rotation:0, frame:"forward"}, {x:-23798, y:-1114, z:19653, rotation:0, frame:"forward"}, {x:-23798, y:-1114, z:19662, rotation:0, frame:"forward"}, {x:-23798, y:-1114, z:19671, rotation:0, frame:"forward"}, {x:-23798, y:-1114, z:19680, rotation:0, frame:"forward"}, {x:-23798, y:-1114, z:19689, rotation:0, frame:"forward"}, {x:-23798, y:-1114, z:19698, rotation:0, frame:"forward"}, {x:-23798, y:-1114, z:19707, rotation:0, frame:"forward"}, {x:-23798, y:-1114, z:19716, rotation:1, frame:"forward"}, {x:-23797, y:-1114, z:19725, rotation:2, frame:"forward"}, {x:-23795, y:-1114, z:19734, rotation:2, frame:"forward"}, {x:-23792, y:-1114, z:19743, rotation:3, frame:"forward"}, {x:-23788, y:-1114, z:19752, rotation:4, frame:"forward"}, {x:-23783, y:-1114, z:19761, rotation:4, frame:"forward"}, {x:-23778, y:-1114, z:19769, rotation:5, frame:"forward"}, {x:-23771, y:-1114, z:19778, rotation:6, frame:"forward"}, {x:-23764, y:-1114, z:19787, rotation:6, frame:"forward"}, {x:-23756, y:-1114, z:19796, rotation:7, frame:"forward"}, {x:-23747, y:-1114, z:19805, rotation:7, frame:"forward"}, {x:-23738, y:-1114, z:19814, rotation:8, frame:"forward"}, {x:-23727, y:-1114, z:19823, rotation:9, frame:"forward"}, {x:-23716, y:-1114, z:19832, rotation:9, frame:"forward"}, {x:-23704, y:-1114, z:19840, rotation:10, frame:"forward"}, {x:-23691, y:-1114, z:19849, rotation:10, frame:"forward"}, {x:-23678, y:-1114, z:19858, rotation:11, frame:"forward"}, {x:-23663, y:-1114, z:19867, rotation:12, frame:"forward"}, {x:-23648, y:-1114, z:19876, rotation:12, frame:"forward"}, {x:-23632, y:-1114, z:19884, rotation:13, frame:"forward"}, {x:-23615, y:-1114, z:19893, rotation:14, frame:"forward"}, {x:-23598, y:-1114, z:19902, rotation:14, frame:"forward"}, {x:-23579, y:-1115, z:19911, rotation:15, frame:"forward"}, {x:-23560, y:-1127, z:19919, rotation:15, frame:"up"}, {x:-23540, y:-1146, z:19928, rotation:16, frame:"up"}, {x:-23519, y:-1164, z:19936, rotation:17, frame:"up"}, {x:-23498, y:-1183, z:19944, rotation:17, frame:"up"}, {x:-23475, y:-1202, z:19953, rotation:18, frame:"up"}, {x:-23452, y:-1221, z:19961, rotation:18, frame:"up"}, {x:-23428, y:-1239, z:19970, rotation:19, frame:"up"}, {x:-23403, y:-1258, z:19978, rotation:20, frame:"up"}, {x:-23378, y:-1277, z:19986, rotation:20, frame:"up"}, {x:-23351, y:-1296, z:19995, rotation:21, frame:"up"}, {x:-23325, y:-1314, z:20003, rotation:21, frame:"up"}, {x:-23298, y:-1333, z:20011, rotation:21, frame:"up"}, {x:-23271, y:-1352, z:20020, rotation:21, frame:"up"}, {x:-23245, y:-1371, z:20028, rotation:21, frame:"up"}, {x:-23218, y:-1389, z:20036, rotation:21, frame:"up"}, {x:-23191, y:-1408, z:20045, rotation:21, frame:"up"}, {x:-23165, y:-1427, z:20053, rotation:21, frame:"up"}, {x:-23138, y:-1446, z:20062, rotation:21, frame:"up"}, {x:-23111, y:-1464, z:20070, rotation:21, frame:"up"}, {x:-23085, y:-1483, z:20078, rotation:21, frame:"up"}, {x:-23058, y:-1502, z:20087, rotation:21, frame:"up"}, {x:-23031, y:-1521, z:20095, rotation:21, frame:"up"}, {x:-23005, y:-1539, z:20103, rotation:21, frame:"up"}, {x:-22978, y:-1558, z:20112, rotation:21, frame:"up"}, {x:-22951, y:-1577, z:20120, rotation:21, frame:"up"}, {x:-22925, y:-1596, z:20128, rotation:21, frame:"up"}, {x:-22898, y:-1614, z:20137, rotation:21, frame:"up"}, {x:-22871, y:-1633, z:20145, rotation:21, frame:"up"}, {x:-22845, y:-1652, z:20153, rotation:21, frame:"up"}, {x:-22818, y:-1671, z:20162, rotation:21, frame:"up"}, {x:-22791, y:-1689, z:20170, rotation:21, frame:"up"}, {x:-22765, y:-1708, z:20178, rotation:21, frame:"up"}, {x:-22738, y:-1727, z:20187, rotation:21, frame:"up"}, {x:-22711, y:-1746, z:20195, rotation:21, frame:"up"}, {x:-22685, y:-1764, z:20204, rotation:21, frame:"up"}, {x:-22658, y:-1783, z:20212, rotation:21, frame:"up"}, {x:-22631, y:-1802, z:20220, rotation:21, frame:"up"}, {x:-22605, y:-1821, z:20229, rotation:21, frame:"up"}, {x:-22578, y:-1839, z:20237, rotation:21, frame:"up"}, {x:-22551, y:-1858, z:20245, rotation:21, frame:"up"}, {x:-22525, y:-1877, z:20254, rotation:21, frame:"up"}, {x:-22498, y:-1896, z:20262, rotation:21, frame:"up"}, {x:-22471, y:-1914, z:20270, rotation:21, frame:"up"}, {x:-22445, y:-1933, z:20279, rotation:21, frame:"up"}, {x:-22418, y:-1952, z:20287, rotation:21, frame:"up"}, {x:-22391, y:-1971, z:20295, rotation:21, frame:"up"}, {x:-22365, y:-1989, z:20304, rotation:21, frame:"up"}, {x:-22338, y:-2008, z:20312, rotation:21, frame:"up"}, {x:-22311, y:-2027, z:20320, rotation:21, frame:"up"}, {x:-22285, y:-2046, z:20329, rotation:21, frame:"up"}, {x:-22258, y:-2064, z:20337, rotation:20, frame:"up"}, {x:-22232, y:-2083, z:20346, rotation:19, frame:"up"}, {x:-22207, y:-2102, z:20354, rotation:18, frame:"up"}, {x:-22183, y:-2121, z:20362, rotation:18, frame:"up"}, {x:-22160, y:-2139, z:20371, rotation:17, frame:"up"}, {x:-22138, y:-2158, z:20379, rotation:16, frame:"up"}, {x:-22116, y:-2177, z:20388, rotation:16, frame:"up"}, {x:-22096, y:-2196, z:20396, rotation:15, frame:"up"}, {x:-22076, y:-2214, z:20404, rotation:14, frame:"up"}, {x:-22058, y:-2233, z:20413, rotation:14, frame:"up"}, {x:-22040, y:-2252, z:20421, rotation:13, frame:"up"}, {x:-22023, y:-2271, z:20430, rotation:12, frame:"up"}, {x:-22007, y:-2289, z:20438, rotation:12, frame:"up"}, {x:-21991, y:-2308, z:20447, rotation:11, frame:"up"}, {x:-21977, y:-2327, z:20455, rotation:10, frame:"up"}, {x:-21964, y:-2346, z:20464, rotation:10, frame:"up"}, {x:-21951, y:-2364, z:20472, rotation:9, frame:"up"}, {x:-21939, y:-2383, z:20481, rotation:8, frame:"up"}, {x:-21928, y:-2402, z:20490, rotation:8, frame:"up"}, {x:-21919, y:-2421, z:20498, rotation:7, frame:"up"}, {x:-21909, y:-2439, z:20507, rotation:6, frame:"up"}, {x:-21901, y:-2458, z:20515, rotation:6, frame:"up"}, {x:-21894, y:-2477, z:20524, rotation:5, frame:"up"}, {x:-21888, y:-2496, z:20533, rotation:4, frame:"up"}, {x:-21882, y:-2514, z:20541, rotation:4, frame:"up"}, {x:-21877, y:-2533, z:20550, rotation:3, frame:"up"}, {x:-21874, y:-2552, z:20559, rotation:2, frame:"up"}, {x:-21871, y:-2571, z:20567, rotation:1, frame:"up"}, {x:-21869, y:-2589, z:20576, rotation:1, frame:"up"}, {x:-21868, y:-2608, z:20585, rotation:0, frame:"up"}, {x:-21868, y:-2627, z:20594, rotation:0, frame:"up"}, {x:-21868, y:-2646, z:20602, rotation:0, frame:"up"}, {x:-21868, y:-2664, z:20611, rotation:0, frame:"up"}, {x:-21868, y:-2683, z:20620, rotation:0, frame:"up"}, {x:-21868, y:-2702, z:20628, rotation:0, frame:"up"}, {x:-21868, y:-2721, z:20637, rotation:0, frame:"up"}, {x:-21868, y:-2739, z:20646, rotation:0, frame:"up"}, {x:-21868, y:-2758, z:20655, rotation:0, frame:"up"}, {x:-21868, y:-2777, z:20663, rotation:0, frame:"up"}, {x:-21868, y:-2796, z:20672, rotation:0, frame:"up"}, {x:-21868, y:-2814, z:20681, rotation:0, frame:"up"}, {x:-21868, y:-2833, z:20690, rotation:0, frame:"up"}, {x:-21868, y:-2852, z:20698, rotation:0, frame:"up"}, {x:-21868, y:-2871, z:20707, rotation:0, frame:"up"}, {x:-21868, y:-2889, z:20716, rotation:0, frame:"up"}, {x:-21868, y:-2908, z:20725, rotation:0, frame:"up"}, {x:-21868, y:-2927, z:20733, rotation:0, frame:"up"}, {x:-21868, y:-2946, z:20742, rotation:0, frame:"up"}, {x:-21868, y:-2964, z:20751, rotation:0, frame:"up"}, {x:-21868, y:-2983, z:20759, rotation:0, frame:"up"}, {x:-21868, y:-3002, z:20768, rotation:0, frame:"up"}, {x:-21868, y:-3021, z:20777, rotation:0, frame:"up"}, {x:-21868, y:-3039, z:20786, rotation:0, frame:"up"}, {x:-21868, y:-3058, z:20794, rotation:0, frame:"up"}, {x:-21868, y:-3077, z:20803, rotation:0, frame:"up"}, {x:-21868, y:-3096, z:20812, rotation:0, frame:"up"}, {x:-21868, y:-3114, z:20821, rotation:0, frame:"up"}, {x:-21868, y:-3133, z:20829, rotation:0, frame:"up"}, {x:-21868, y:-3152, z:20838, rotation:0, frame:"up"}, {x:-21868, y:-3171, z:20847, rotation:0, frame:"up"}, {x:-21868, y:-3189, z:20855, rotation:0, frame:"up"}, {x:-21868, y:-3208, z:20864, rotation:0, frame:"up"}, {x:-21868, y:-3227, z:20873, rotation:0, frame:"up"}, {x:-21868, y:-3246, z:20882, rotation:0, frame:"up"}, {x:-21868, y:-3264, z:20890, rotation:0, frame:"up"}, {x:-21868, y:-3283, z:20899, rotation:0, frame:"up"}, {x:-21868, y:-3302, z:20908, rotation:0, frame:"up"}, {x:-21868, y:-3321, z:20917, rotation:0, frame:"up"}, {x:-21868, y:-3339, z:20925, rotation:0, frame:"up"}, {x:-21868, y:-3358, z:20934, rotation:0, frame:"up"}, {x:-21868, y:-3377, z:20943, rotation:0, frame:"up"}, {x:-21868, y:-3396, z:20952, rotation:0, frame:"up"}, {x:-21868, y:-3414, z:20960, rotation:0, frame:"up"}, {x:-21868, y:-3433, z:20969, rotation:0, frame:"up"}, {x:-21868, y:-3452, z:20978, rotation:0, frame:"up"}, {x:-21868, y:-3471, z:20986, rotation:0, frame:"up"}, {x:-21868, y:-3489, z:20995, rotation:0, frame:"up"}, {x:-21868, y:-3508, z:21004, rotation:0, frame:"up"}, {x:-21868, y:-3527, z:21013, rotation:0, frame:"up"}, {x:-21868, y:-3546, z:21021, rotation:0, frame:"up"}, {x:-21868, y:-3564, z:21030, rotation:0, frame:"up"}, {x:-21868, y:-3583, z:21039, rotation:0, frame:"up"}, {x:-21868, y:-3602, z:21048, rotation:0, frame:"up"}, {x:-21868, y:-3621, z:21056, rotation:0, frame:"up"}, {x:-21868, y:-3639, z:21065, rotation:0, frame:"up"}, {x:-21868, y:-3658, z:21074, rotation:0, frame:"up"}, {x:-21868, y:-3677, z:21083, rotation:0, frame:"up"}, {x:-21868, y:-3696, z:21091, rotation:0, frame:"up"}, {x:-21868, y:-3714, z:21100, rotation:0, frame:"up"}, {x:-21868, y:-3733, z:21109, rotation:0, frame:"up"}, {x:-21868, y:-3752, z:21117, rotation:0, frame:"up"}, {x:-21868, y:-3771, z:21126, rotation:0, frame:"up"}, {x:-21868, y:-3789, z:21135, rotation:0, frame:"up"}, {x:-21868, y:-3808, z:21144, rotation:0, frame:"up"}, {x:-21868, y:-3827, z:21152, rotation:0, frame:"up"}, {x:-21868, y:-3846, z:21161, rotation:0, frame:"up"}, {x:-21868, y:-3864, z:21170, rotation:0, frame:"up"}, {x:-21868, y:-3883, z:21179, rotation:0, frame:"up"}, {x:-21868, y:-3902, z:21187, rotation:0, frame:"up"}, {x:-21868, y:-3921, z:21196, rotation:-1, frame:"up"}, {x:-21869, y:-3939, z:21205, rotation:-2, frame:"up"}, {x:-21871, y:-3958, z:21213, rotation:-2, frame:"up"}, {x:-21874, y:-3977, z:21222, rotation:-3, frame:"up"}, {x:-21878, y:-3996, z:21231, rotation:-4, frame:"up"}, {x:-21883, y:-4014, z:21240, rotation:-4, frame:"up"}, {x:-21889, y:-4033, z:21248, rotation:-5, frame:"up"}, {x:-21895, y:-4052, z:21257, rotation:-6, frame:"up"}, {x:-21902, y:-4071, z:21265, rotation:-6, frame:"up"}, {x:-21910, y:-4089, z:21274, rotation:-7, frame:"up"}, {x:-21919, y:-4108, z:21283, rotation:-7, frame:"up"}, {x:-21929, y:-4127, z:21291, rotation:-8, frame:"up"}, {x:-21939, y:-4146, z:21300, rotation:-9, frame:"up"}, {x:-21950, y:-4164, z:21308, rotation:-9, frame:"up"}, {x:-21962, y:-4183, z:21317, rotation:-10, frame:"up"}, {x:-21975, y:-4202, z:21326, rotation:-10, frame:"up"}, {x:-21989, y:-4221, z:21334, rotation:-11, frame:"up"}, {x:-22003, y:-4239, z:21343, rotation:-12, frame:"up"}, {x:-22018, y:-4258, z:21351, rotation:-12, frame:"up"}, {x:-22034, y:-4277, z:21360, rotation:-13, frame:"up"}, {x:-22051, y:-4296, z:21368, rotation:-14, frame:"up"}, {x:-22069, y:-4314, z:21377, rotation:-14, frame:"up"}, {x:-22087, y:-4333, z:21385, rotation:-15, frame:"up"}, {x:-22106, y:-4352, z:21393, rotation:-15, frame:"up"}, {x:-22126, y:-4371, z:21402, rotation:-16, frame:"up"}, {x:-22147, y:-4389, z:21410, rotation:-17, frame:"up"}, {x:-22169, y:-4408, z:21419, rotation:-17, frame:"up"}, {x:-22191, y:-4427, z:21427, rotation:-18, frame:"up"}, {x:-22214, y:-4446, z:21436, rotation:-18, frame:"up"}, {x:-22238, y:-4464, z:21444, rotation:-19, frame:"up"}, {x:-22263, y:-4483, z:21452, rotation:-20, frame:"up"}, {x:-22289, y:-4502, z:21461, rotation:-20, frame:"up"}, {x:-22315, y:-4521, z:21469, rotation:-21, frame:"up"}, {x:-22342, y:-4539, z:21477, rotation:-21, frame:"up"}, {x:-22368, y:-4558, z:21486, rotation:-21, frame:"up"}, {x:-22395, y:-4577, z:21494, rotation:-21, frame:"up"}, {x:-22422, y:-4596, z:21503, rotation:-21, frame:"up"}, {x:-22448, y:-4614, z:21511, rotation:-21, frame:"up"}, {x:-22475, y:-4633, z:21519, rotation:-21, frame:"up"}, {x:-22502, y:-4652, z:21528, rotation:-21, frame:"up"}, {x:-22528, y:-4671, z:21536, rotation:-21, frame:"up"}, {x:-22555, y:-4689, z:21544, rotation:-21, frame:"up"}, {x:-22582, y:-4708, z:21553, rotation:-21, frame:"up"}, {x:-22608, y:-4727, z:21561, rotation:-21, frame:"up"}, {x:-22635, y:-4746, z:21569, rotation:-21, frame:"up"}, {x:-22662, y:-4764, z:21578, rotation:-21, frame:"up"}, {x:-22688, y:-4783, z:21586, rotation:-21, frame:"up"}, {x:-22715, y:-4802, z:21594, rotation:-21, frame:"up"});
preload(preload_mc, "tracker", 100);
stop();
Frame 10
function toSplash() {
com.teamrubber.SeqTrackerAdaptor.doLoad();
_global.root.gotoAndPlay("splash");
}
stop();
com.teamrubber.SeqTrackerAdaptor.setComponentReference(this.tracker_comp);
com.teamrubber.SeqTrackerAdaptor.initTracker(toSplash);
Instance of Symbol 161 MovieClip [ComboBox] "track_cb" in Frame 10
//component parameters
onClipEvent (construct) {
data = [];
data[0] = "fdf";
data[1] = "ddd";
data[2] = "asdf";
data[3] = "asdfasdf";
editable = false;
labels = [];
labels[0] = "asdf";
labels[1] = "asdf";
rowCount = 5;
restrict = "";
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Frame 18
stop();
setupSplash(splash_mc);
Frame 29
stop();
setupBegin(beginScreen_mc, beginScreen_mc.dogSelector_mc, beginScreen_mc.controlsSelector_mc);
Frame 38
stop();
setupGame();
Frame 58
stop();
setupNextLap(nextLap_mc);
Frame 74
setupPodium(podium_mc);
Frame 102
stop();
setupGameComplete(gameComplete_mc, gameComplete_mc.promo_mc);
Symbol 486 MovieClip [__Packages.com.teamrubber.SeqTrackerAdaptor] Frame 0
class com.teamrubber.SeqTrackerAdaptor
{
static var instance;
function SeqTrackerAdaptor () {
init();
setup();
}
function init() {
}
function setup() {
}
static function initTracker(func) {
if (active) {
getInstance().comp.setVerbose(true);
getInstance().comp.setBaseURL(BASE_URL);
getInstance().comp.setCampaignID(CAMPAIGN_ID);
getInstance().comp.setProjectID(PROJECT_ID);
getInstance().comp.initialise(func);
getInstance().comp._visible = false;
} else {
func();
}
}
static function doLoad() {
getInstance().comp.load();
}
static function setComponentReference(comp) {
if (active) {
getInstance().comp = comp;
}
}
static function viewSplash() {
if (active && (projectViewed == false)) {
projectViewed = true;
getInstance().comp.view("viewSplash");
}
}
static function viewTrack(racetrack) {
if (active) {
getInstance().comp.view(racetrack);
}
}
static function viewDog(dog) {
if (active) {
getInstance().comp.view(dog);
}
}
static function campaignExit(from) {
var _local1;
if (!from) {
_local1 = CAMPAIGN_LINK_EXIT_LABEL;
} else {
_local1 = from;
}
if (active) {
getInstance().comp.exit(CAMPAIGN_LINK, _local1, "_blank");
}
}
static function startSession() {
if (active) {
getInstance().comp.startSession();
}
}
static function endSession() {
if (active) {
getInstance().comp.endSession();
}
}
static function sendToFriendConversion() {
if (active) {
getInstance().comp.conversion("n/a", "sendToFriend");
}
}
static function getInstance() {
if (!instance) {
instance = new com.teamrubber.SeqTrackerAdaptor();
}
return(instance);
}
static var BASE_URL = "http://liono.teamrubber.com/management_system/dev_dashboard/";
static var CAMPAIGN_ID = "6";
static var PROJECT_ID = "greyhounds";
static var CAMPAIGN_LINK = "http://www.anightatthedogs.co.uk";
static var CAMPAIGN_LINK_EXIT_LABEL = "exitCampaign";
static var active = true;
static var projectViewed = false;
}
Symbol 487 MovieClip [__Packages.com.teamrubber.FormClass] Frame 0
class com.teamrubber.FormClass extends MovieClip
{
var formArray, emailError, stringError, errorRoot, formRoot, myObj, gotoAndStop;
function FormClass (formArray, emailError, stringError, errorRoot, formRoot) {
super();
_global.formArray = new Array(0);
_global.formArray = formArray;
this.formArray = _global.formArray;
this.emailError = emailError;
this.stringError = stringError;
this.errorRoot = errorRoot;
this.formRoot = formRoot;
var _local4 = 0;
while (_local4 < this.formArray.length) {
this.formArray[_local4].clip.tabIndex = _local4 + 1;
this.formArray[_local4].errorClip._visible = false;
if (this.formArray[_local4].itemType == "checkBox") {
formArray[_local4].clip.myObj = formArray[_local4];
formArray[_local4].clip.onRelease = boxClick;
} else {
this.formArray[_local4].clip.text = this.formArray[_local4].original;
}
_local4++;
}
selectionListener.onSetFocus = function (oldFocus, newFocus) {
_global.currentForm.handleFormError(false);
var _local3 = new Object();
var _local2 = 0;
while (_local2 < _global.formArray.length) {
if (_global.formArray[_local2].clip._name == newFocus._name) {
trace("TAB INDEX {FORM} : " + _global.formArray[_local2].clip.tabIndex);
_local3 = _global.formArray[_local2];
break;
}
_local2++;
}
if (_local3 == undefined) {
_local3 = _global.root.noFocus_txt;
}
if (_local3.error == true) {
_local3.error = false;
if (_local3.clip.text == _local3.original) {
_local3.clip.text = "";
} else if (_local3.clip.text == "") {
_local3.clip.text = _local3.tmpVal;
} else {
_local3.clip.text = _local3.tmpVal;
}
} else if (_local3.clip.text == _local3.original) {
_local3.clip.text = "";
}
};
Selection.addListener(selectionListener);
trace("------");
for (_local4 in this) {
trace((_local4 + " ") + this[_local4]);
}
for (_local4 in this.formArray[0]) {
trace((_local4 + " ") + this.formArray[0][_local4]);
}
trace("------");
}
function getValueFor(id) {
var _local2 = 0;
while (_local2 < formArray.length) {
if (formArray[_local2].id == id) {
if (formArray[_local2].itemType == "checkBox") {
if (formArray[_local2].myState == false) {
return("off");
}
return("on");
}
return(formArray[_local2].clip.text);
}
_local2++;
}
return("id not found");
}
function setErrorFor(id, error) {
var _local2 = 0;
while (_local2 < formArray.length) {
if (formArray[_local2].id == id) {
formArray[_local2].error = error;
}
_local2++;
}
}
function getClipFor(id) {
var _local2 = 0;
while (_local2 < formArray.length) {
if (formArray[_local2].id == id) {
return(formArray[_local2].clip);
}
_local2++;
}
return(undefined);
}
function boxClick() {
_global.currentForm.handleFormError(false);
if (myObj.myState == false) {
myObj.myState = true;
gotoAndStop("on");
} else {
myObj.myState = false;
gotoAndStop("off");
}
}
function recordSubmittedEmails() {
_global.submittedEmails = _global.submittedEmails.concat(submittedValues);
return(_global.submittedEmails.length);
}
function handleFormError(error) {
if (error == false) {
var _local3 = 0;
while (_local3 < formArray.length) {
formArray[_local3].errorClip._visible = error;
_local3++;
}
errorRoot.gotoAndPlay(_global.formTitle);
} else {
var _local3 = 0;
while (_local3 < formArray.length) {
formArray[_local3].errorClip._visible = formArray[_local3].error;
_local3++;
}
errorRoot.gotoAndPlay("error");
}
formRoot.gotoAndStop("home");
}
function validateForm() {
if (_global.root.noFocus_txt == undefined) {
_global.root.noFocus_txt = _global.root.createTextField("noFocus_txt", _global.root.getNextHighestDepth(), -300, -300, 30, 30);
}
var _local4 = false;
submittedValues = new Array();
var _local3 = 0;
while (_local3 < formArray.length) {
if (formArray[_local3].itemType == "email") {
submittedValues.push({pos:_local3, string:formArray[_local3].clip.text});
}
_local3++;
}
_local3 = 0;
while (_local3 < formArray.length) {
if (formArray[_local3].itemType == "email") {
if (checkEmail(formArray[_local3], emailError) == false) {
_local4 = true;
} else if (checkDuplication(formArray[_local3].clip.text)) {
formArray[_local3].error = true;
_local4 = true;
}
} else if (formArray[_local3].itemType == "string") {
if (checkOtherTextBox(formArray[_local3], stringError) == false) {
_local4 = true;
}
} else if (formArray[_local3].itemType == "checkBox") {
if (validateCheckBoxes(formArray[_local3]) == false) {
_local4 = true;
}
} else if (formArray[_local3].itemType == "postcode") {
if (checkPostcode(formArray[_local3], stringError) == false) {
_local4 = true;
}
}
_local3++;
}
if (_local4 == false) {
return(true);
}
handleFormError(true);
return(false);
}
function checkDuplication(currText) {
var _local4 = 0;
submittedValues = submittedValues.concat(_global.submittedEmails);
var _local3 = 0;
while (_local3 < submittedValues.length) {
trace((_local3 + " i * pos ") + submittedValues[_local3].pos);
if (currText == submittedValues[_local3].string) {
_local4++;
}
_local3++;
}
if (_local4 > 1) {
return(true);
}
return(false);
}
static function checkEmail(item, errorText) {
var _local4;
var _local2 = item.clip.text;
if (validEmail(_local2) == false) {
if ((item.clip.text != item.original) && (item.clip.text != errorText)) {
item.tmpVal = item.clip.text;
}
item.clip.text = errorText;
item.error = true;
return(false);
}
item.error = false;
return(true);
}
function checkOtherTextBox(item, errorText) {
if (item.clip.text == item.original) {
item.error = true;
item.clip.text = errorText;
return(false);
}
if (item.clip.text == "") {
item.error = true;
item.clip.text = errorText;
return(false);
}
if (item.clip.text == errorText) {
item.error = true;
item.clip.text = errorText;
return(false);
}
return(true);
}
function checkPostcode(item, errorText) {
var _local3 = item.clip.text;
if (_local3 == item.original) {
item.error = true;
item.clip.text = errorText;
return(false);
}
if (_local3 == "") {
item.error = true;
item.clip.text = errorText;
return(false);
}
if (_local3 == errorText) {
item.error = true;
item.clip.text = errorText;
return(false);
}
var _local5 = "*|,\":<>[]{}`';()&$#%-=";
var _local6 = _local3.length;
var _local1 = 0;
while (_local1 < _local6) {
if (_local5.indexOf(_local3.charAt(_local1)) != -1) {
trace(("Invalid Email Address : Illegal Character in Email Address : -->" + _local3.charAt(_local1)) + "<--.");
item.error = true;
item.clip.text = errorText;
item.tmpVal = _local3;
return(false);
}
_local1++;
}
return(true);
}
static function validateCheckBoxes(item) {
item.error = false;
if ((item.myState != item.required) && (item.required != false)) {
item.error = true;
return(false);
}
return(true);
}
static function validEmail(t) {
if (t.length < 5) {
return(false);
}
var _local4 = "*|,\":<>[]{}`';()&$#%";
var _local3 = t.length;
var _local1 = 0;
while (_local1 < _local3) {
if (_local4.indexOf(t.charAt(_local1)) != -1) {
trace(("Invalid Email Address : Illegal Character in Email Address : -->" + t.charAt(_local1)) + "<--.");
return(false);
}
_local1++;
}
var _local5 = t.lastIndexOf("@");
if ((_local5 < 1) || (_local5 == (_local3 - 1))) {
trace("Invalid Email Address : Email Address must contain @ as at least the second chararcter.");
return(false);
}
var _local6 = t.lastIndexOf(".");
if ((_local6 < 4) || (_local6 == (_local3 - 1))) {
trace("Invalid Email Address : Email Address must contain at least one . (period) in a valid position");
return(false);
}
if (_local5 > _local6) {
trace("Invalid Email Address : Email Address must be in the form of name@domain.domaintype");
return(false);
}
_local1 = 0;
while (_local1 < _local3) {
if (((t.charAt(_local1) == ".") || (t.charAt(_local1) == "@")) && (t.charAt(_local1) == t.charAt(_local1 - 1))) {
trace(("Invalid Email Address : Cannot contain two \".\" or \"@\" in a row : -->" + t.charAt(_local1)) + "<--.");
return(false);
}
_local1++;
}
return(true);
}
var selectionListener = new Object();
static var traceOn = true;
var submittedValues = new Array();
}
Symbol 488 MovieClip [__Packages.com.teamrubber.SoundManager] Frame 0
class com.teamrubber.SoundManager
{
var linkList, tl, soundHolder, fadeList, panList, volume, sounds, soundVolumes, playFlag, playList, currentPlayListSound, EOFlistener, soundState;
function SoundManager (tl, linkList) {
this.linkList = linkList;
this.tl = tl;
soundHolder = null;
fadeList = [];
panList = [];
volume = 100;
sounds = {};
soundVolumes = {};
playFlag = true;
playList = [];
currentPlayListSound = null;
EOFlistener = null;
soundState = true;
setupSounds();
setNewVolume(volume);
}
function setupSounds() {
soundHolder = tl.soundHolder_mc;
soundHolder.cb = this;
soundHolder.onEnterFrame = function () {
this.cb.doLoop();
};
var _local3 = 0;
while (_local3 < linkList.length) {
var _local2 = linkList[_local3];
soundHolder.createEmptyMovieClip(_local2, 999 + _local3);
sounds[_local2] = new Sound(soundHolder[_local2]);
sounds[_local2].attachSound(_local2);
soundVolumes[_local2] = {sound:_local2, vol:100};
_local3++;
}
}
function endOfPlayListSubscribe(obj) {
EOFlistener = obj;
}
function addToPlayList(linkName) {
playList.push(linkName);
}
function addArrayToPlayList(links) {
var _local2 = 0;
while (_local2 < links.length) {
playList.push(links[_local2]);
_local2++;
}
}
function playListKickIfEmpty() {
if (playList.length == 0) {
playListKick();
}
}
function playListKick() {
if (playList.length > 0) {
var _local2 = playList.shift();
sounds[_local2].cb = this;
sounds[_local2].onSoundComplete = function () {
this.playing = false;
this.cb.endOfSound();
};
currentPlayListSound = sounds[_local2];
currentPlayListSound.link = _local2;
playSound(_local2, 0, false);
} else {
EOFlistener.endOfPlayList();
EOFlistener = null;
}
}
function stopAndEmptyPlayList() {
if (playList.length > 0) {
for (var _local2 in playList) {
playList[_local2].stop();
playList[_local2].playing = false;
}
playList = [];
}
currentPlayListSound.stop();
currentPlayListSound.playing = false;
currentPlayListSound = null;
}
function endOfSound() {
currentPlayListSound.onSoundComplete = null;
currentPlayListSound.playing = false;
playListKick();
}
function doLoop() {
for (var _local2 in fadeList) {
if (fadeSound(fadeList[_local2])) {
delete fadeList[_local2];
}
}
for (var _local2 in panList) {
if (panSound(panList[_local2])) {
delete panList[_local2];
}
}
}
function playSound(linkname, loop, setOnComplete) {
if (playFlag && (!sounds[linkname].playing)) {
if (loop == undefined) {
loop = 0;
}
if (setOnComplete == undefined) {
setOnComplete = true;
}
if (setOnComplete) {
sounds[linkname].onSoundComplete = function () {
this.playing = false;
delete this.onSoundComplete;
};
}
sounds[linkname].start(0, loop);
sounds[linkname].playing = true;
}
}
function stopSound(linkname) {
sounds[linkname].stop(linkname);
sounds[linkname].playing = false;
sounds[linkname].onSoundComplete = null;
}
function setNewVolume(theVol_num, linkname) {
if (linkname == undefined) {
for (var _local3 in sounds) {
sounds[_local3].setVolume(theVol_num);
}
} else {
sounds[linkname].setVolume(theVol_num);
soundVolumes[linkname].vol = theVol_num;
}
}
function fadeSound(obj) {
obj.curVol = obj.curVol + obj.volInc;
if (obj.volInc < 0) {
if (obj.curVol <= obj.fadeTo) {
setNewVolume(obj.fadeTo, obj.linkName);
obj = null;
return(true);
}
setNewVolume(obj.curVol, obj.linkName);
return(false);
}
if (obj.volInc > 0) {
if (obj.curVol >= obj.fadeTo) {
setNewVolume(obj.fadeTo, obj.linkName);
obj = null;
return(true);
}
setNewVolume(obj.curVol, obj.linkName);
return(false);
}
obj = null;
return(true);
}
function setSoundState(flag) {
playFlag = flag;
if (playFlag) {
soundState = true;
setNewVolume(100);
} else {
soundState = false;
setNewVolume(0);
}
}
function setupAfade(linkName, fadeTo, inc) {
fadeList[linkName] = {linkName:linkName, curVol:sounds[linkName].getVolume(), volInc:inc, fadeTo:fadeTo};
}
function cancelFade(linkName) {
delete fadeList[linkName];
}
function fadeOutAllSounds() {
for (var _local2 in sounds) {
setupAfade(_local2, 0, -10);
}
}
function setNewPan(thePan_num, linkname) {
if (linkname == undefined) {
for (var _local3 in sounds) {
trace("set pan " + thePan_num);
sounds[_local3].setPan(thePan_num);
}
} else {
sounds[linkname].setPan(thePan_num);
}
}
function panSound(obj) {
obj.curPan = obj.curPan + obj.panInc;
if (obj.panInc < 0) {
if (obj.curPan <= obj.fadeTo) {
setNewPan(obj.fadeTo, obj.linkName);
obj = null;
return(true);
}
setNewPan(obj.curVol, obj.linkName);
return(false);
}
if (obj.panInc > 0) {
if (obj.curPan >= obj.fadeTo) {
setNewPan(obj.fadeTo, obj.linkName);
obj = null;
return(true);
}
setNewPan(obj.curPan, obj.linkName);
return(false);
}
obj = null;
return(true);
}
function setupAPan(linkName, fadeTo, inc) {
panList[linkName] = {linkName:linkName, curPan:sounds[linkName].getPan(), panInc:inc, fadeTo:fadeTo};
}
function cancelPan(linkName) {
delete panList[linkName];
}
}
Symbol 489 MovieClip [__Packages.com.teamrubber.Class3D] Frame 0
class com.teamrubber.Class3D
{
var z;
function Class3D () {
_global.KeyListener = this;
}
function manageDistance(clip) {
if (z > _global.fadeInPoint) {
clip._visible = false;
}
if (z < _global.fadeInPoint) {
clip._visible = true;
var _local4 = Math.round(((z - _global.fullVisPoint) / (_global.fadeInPoint - _global.fullVisPoint)) * 100);
clip._alpha = 100 - _local4;
}
}
function checkHit(zPos, myHit, targetHit) {
if (zPos < zDiscrepancy) {
if (myHit.hitTest(targetHit)) {
return(true);
}
return(false);
}
return(false);
}
function doPerspective(clip, x, y, z, skew, bonusScale) {
if (bonusScale == undefined) {
bonusScale = 1;
}
var _local5 = _global.root.stageXCentre;
var _local4 = _global.root.stageYCentre;
var _local3 = _global.fl / (_global.fl + z);
clip._x = (x * _local3) + _local5;
clip._y = (y * _local3) + _local4;
clip._xscale = (clip._yscale = (_local3 * 100) * bonusScale);
if (skew != undefined) {
clip._xscale = clip._xscale * skew;
}
}
function onKeyDown() {
switch (Key.getCode()) {
case 39 :
_global.planeObj.steer("x", 1);
break;
case 37 :
_global.planeObj.steer("x", -1);
break;
case 38 :
_global.planeObj.steer("y", _global.controls.up);
break;
case 40 :
_global.planeObj.steer("y", _global.controls.down);
break;
case 32 :
}
_global.controls.up = -1;
_global.controls.down = 1;
}
function onKeyUp() {
switch (Key.getCode()) {
case 39 :
_global.planeObj.steer("x", 0);
break;
case 37 :
_global.planeObj.steer("x", 0);
break;
case 38 :
_global.planeObj.steer("y", 0);
break;
case 40 :
_global.planeObj.steer("y", 0);
}
}
var zDiscrepancy = 20;
}
Symbol 490 MovieClip [__Packages.com.teamrubber.BackgroundClass] Frame 0
class com.teamrubber.BackgroundClass extends com.teamrubber.Class3D
{
var tilePartner, clip, xLevel, yLevel, spacer, planeNewX, planeOldX, planeNewY, planeOldY, limit, xSpeed, ySpeed, scrollDir, x, y;
function BackgroundClass (clip, tilePartner, xLevel, yLevel, spacer, limit) {
super();
this.tilePartner = tilePartner;
this.clip = clip;
this.xLevel = xLevel;
this.yLevel = yLevel;
this.spacer = spacer;
planeNewX = _global.planeObj.x;
planeOldX = _global.planeObj.x;
planeNewY = _global.planeObj.y;
planeOldY = _global.planeObj.y;
this.limit = limit;
}
function drawBackground() {
xSpeed = planeOldX - planeNewX;
ySpeed = planeOldY - planeNewY;
scrollDir = ((xSpeed < 0) ? "left" : "right");
doPerspective(x, y);
if (scrollDir == "left") {
if (clip._x < (-clip._width)) {
clip._x = (tilePartner._x + tilePartner._width) + spacer;
}
} else if (clip._x > _global.root.stageWidth) {
clip._x = ((tilePartner._x - tilePartner._width) - spacer) + 5;
}
planeOldX = planeNewX;
planeNewX = _global.planeObj.x;
planeOldY = planeNewY;
planeNewY = _global.planeObj.y;
}
function doPerspective(x, y) {
if (xLevel != undefined) {
clip._x = clip._x + (xSpeed / xLevel);
}
if (yLevel != undefined) {
if (((clip._y + (ySpeed / yLevel)) > limit.yUp) && ((clip._y + (ySpeed / yLevel)) < limit.yDown)) {
clip._y = clip._y + (ySpeed / yLevel);
}
}
}
var offset = 0.2;
}
Symbol 491 MovieClip [__Packages.com.teamrubber.Game] Frame 0
class com.teamrubber.Game
{
var hareLap, maxXSpeed, maxYSpeed, maxZSpeed, maxBonuses, speedUp, speedDown, ringBonus, lifeBonus, avgLapTime;
function Game (lapArray, hareLap, maxXSpeed, maxYSpeed, maxZSpeed, speedUp, speedDown, ringBonus, lifeBonus, maxBonuses, avgLapTime) {
lap = lapArray;
this.hareLap = hareLap;
if (_global.root.hareTrace == true) {
this.maxXSpeed = maxXSpeed / _global.root.hareSpeedFraction;
this.maxYSpeed = maxYSpeed / (_global.root.hareSpeedFraction + 1);
this.maxZSpeed = maxZSpeed / _global.root.hareSpeedFraction;
} else {
this.maxXSpeed = maxXSpeed;
this.maxYSpeed = maxYSpeed;
this.maxZSpeed = maxZSpeed;
}
this.maxBonuses = maxBonuses;
this.speedUp = speedUp;
this.speedDown = speedDown;
this.ringBonus = ringBonus;
this.lifeBonus = lifeBonus;
this.avgLapTime = avgLapTime;
}
function setupLap() {
_global.root.onEnterFrame = undefined;
_global.maxXSpeed = maxXSpeed;
_global.maxYSpeed = maxYSpeed;
_global.maxZSpeed = maxZSpeed;
_global.maxBonuses = maxBonuses;
_global.endActionTaken = false;
_global.totalRings = lap.length;
_global.ringCount = 0;
_global.targetScale = 1;
_global.actualScale = 1;
_global.scaleInc = 0.01;
_global.allBonuses = new Array();
_global.selectedBonuses = new Array();
_global.planeObj = new com.teamrubber.PlaneClass(_global.gameRoot.plane_mc, 275, 200, 0);
_global.harePos = hareLap;
if (_global.root.hareTrace == false) {
_global.hare = new com.teamrubber.HareClass(_global.gameRoot.hare_mc, 275, 200, _global.minHareDist);
_global.gameRoot.hare_mc._visible = true;
} else {
_global.gameRoot.hare_mc._visible = false;
}
placeRings();
if (_global.root.hareTrace == false) {
_global.UI.placeBonuses();
}
_global.hare.clip.swapDepths(_global.gameRoot.getNextHighestDepth());
_global.planeObj.plane.swapDepths(_global.gameRoot.getNextHighestDepth());
_global.UI.startTime = getTimer();
_global.inPlay = true;
_global.root.onEnterFrame = _global.root.everyFrame;
_global.snd.playSound("bgPlane", 9999);
_global.planeObj.managePlaneVolume("high");
}
function placeRings() {
_global.ringsOnStage = new Array(0);
_global.passedRings = 0;
var _local3 = 0;
while (_local3 < lap.length) {
if (_local3 == (lap.length - 1)) {
var _local5 = _global.gameRoot.attachMovie("endRing_mc", "ring" + _local3, _local3 + 1000, {_x:-1000, _y:-1000});
var _local4 = new com.teamrubber.RingClass(_local5, _local3, lap[_local3].x, lap[_local3].y, lap[_local3].z, lap[_local3].corner);
} else {
var _local5 = _global.gameRoot.attachMovie("ring_mc", "ring" + _local3, _local3 + 1000, {_x:-1000, _y:-1000});
var _local4 = new com.teamrubber.RingClass(_local5, _local3, lap[_local3].x, lap[_local3].y, lap[_local3].z, lap[_local3].corner);
}
_global.ringsOnStage[_local3] = _local4;
_local3++;
}
}
function finishLap() {
if (_global.endActionTaken == false) {
_global.endActionTaken = true;
_global.planeObj.steer("x", 0);
_global.planeObj.steer("y", 0);
Key.removeListener(_global.KeyListener);
_global.lap++;
if (_global.lap >= _global.maxLaps) {
_global.root.gotoAndPlay("completed");
_global.gameComplete = true;
_global.planeObj.managePlaneVolume("kill");
} else {
_global.root.gotoAndPlay("lapComplete");
_global.planeObj.managePlaneVolume("low");
}
_global.UI.calculateScore(0, true);
removeAllTimers();
}
}
function endRace() {
if (_global.endActionTaken == false) {
_global.endActionTaken = true;
_global.planeObj.steer("x", 0);
_global.planeObj.steer("y", 0);
_global.root.gotoAndPlay("completed");
_global.planeObj.managePlaneVolume("kill");
_global.gameComplete = false;
removeAllTimers();
}
}
function removeAllTimers() {
removeMovieClip(ringBonus.timer);
removeMovieClip(speedUp.timer);
removeMovieClip(speedDown.timer);
clearInterval(ringBonus.interval);
clearInterval(speedUp.interval);
clearInterval(speedDown.interval);
}
function get lapArray() {
return(lap);
}
var lap = new Array();
}
Symbol 492 MovieClip [__Packages.com.teamrubber.PlaneClass] Frame 0
class com.teamrubber.PlaneClass extends com.teamrubber.Class3D
{
var p_plane, p_hit, x, y, z, startX, startY, startZ, xAcceleration, yAcceleration, frame, strayTimer;
function PlaneClass (plane, x, y, z) {
super();
p_plane = plane;
p_hit = p_plane.hit_mc;
this.x = x;
this.y = y;
this.z = z;
startX = x;
startY = y;
startZ = z;
xAcceleration = (1 - (p_currentXSpeed / _global.maxXSpeed)) * p_acceleration;
yAcceleration = (1 - (p_currentYSpeed / _global.maxYSpeed)) * p_acceleration;
if (_global.root.hareTrace == true) {
returnBoost = 1.1;
p_acceleration = 0.4;
}
}
function get currentXSpeed() {
return(p_currentXSpeed);
}
function set currentXSpeed(speed) {
p_currentXSpeed = speed;
//return(currentXSpeed);
}
function get currentYSpeed() {
return(p_currentYSpeed);
}
function set currentYSpeed(speed) {
p_currentYSpeed = speed;
//return(currentYSpeed);
}
function get plane() {
return(p_plane);
}
function get xDir() {
return(p_xDir);
}
function set xDir(xDir) {
p_xDir = xDir;
//return(this.xDir);
}
function get yDir() {
return(p_yDir);
}
function set yDir(yDir) {
p_yDir = yDir;
//return(this.yDir);
}
function get hit() {
return(p_hit);
}
function movePlane() {
x = x + p_currentXSpeed;
y = y + p_currentYSpeed;
z = z + p_currentZSpeed;
calculateSpeeds();
rotatePlane();
calculateStray();
calculateHareDist();
var _local4 = Math.round((z / _global.game.lap[_global.totalRings - 1].z) * 100);
_global.track_mc.doggles_mc.gotoAndStop(_local4);
var _local3 = (((((((((((("SPEED | DISTANCE\r" + p_currentXSpeed) + " | ") + x) + newline) + p_currentYSpeed) + " | ") + y) + newline) + p_currentZSpeed) + " | ") + z) + newline) + _global.maxZSpeed;
_global.altometer.text = _local3;
if ((z > (_global.ringsOnStage[_global.totalRings - 1].startZ + 2000)) && (_global.root.hareTrace == true)) {
_global.game.finishLap();
if (_global.root.hareTrace == true) {
trace("hare trace -> " + _global.record1);
}
}
doBankVolume();
}
function calculateSpeeds() {
if (p_xDir == 1) {
if ((p_currentXSpeed + xAcceleration) < _global.maxXSpeed) {
p_currentXSpeed = p_currentXSpeed + xAcceleration;
} else {
p_currentXSpeed = _global.maxXSpeed;
}
} else if (p_xDir == -1) {
if ((p_currentXSpeed - xAcceleration) > (-_global.maxXSpeed)) {
p_currentXSpeed = p_currentXSpeed - xAcceleration;
} else {
p_currentXSpeed = -_global.maxXSpeed;
}
} else if (p_xDir == 0) {
if (p_currentXSpeed != 0) {
returnToCentre("x");
}
}
xAcceleration = acceleration(p_currentXSpeed, _global.maxXSpeed, p_xDir);
if (p_yDir == 1) {
if ((p_currentYSpeed - yAcceleration) > (-_global.maxYSpeed)) {
p_currentYSpeed = p_currentYSpeed - yAcceleration;
} else {
p_currentYSpeed = -_global.maxYSpeed;
}
} else if (p_yDir == -1) {
if ((p_currentYSpeed + yAcceleration) < _global.maxYSpeed) {
p_currentYSpeed = p_currentYSpeed + yAcceleration;
} else {
p_currentYSpeed = _global.maxYSpeed;
}
} else if (p_yDir == 0) {
if (p_currentYSpeed != 0) {
returnToCentre("y");
}
}
yAcceleration = acceleration(p_currentYSpeed, _global.maxYSpeed, p_yDir);
if (_global.maxZSpeed > p_currentZSpeed) {
if ((p_currentZSpeed + zAcceleration) < _global.maxZSpeed) {
p_currentZSpeed = p_currentZSpeed + zAcceleration;
} else {
p_currentZSpeed = _global.maxZSpeed;
}
} else if (_global.maxZSpeed < p_currentZSpeed) {
if ((p_currentZSpeed - zAcceleration) > _global.maxZSpeed) {
p_currentZSpeed = p_currentZSpeed - zAcceleration;
} else {
p_currentZSpeed = _global.maxZSpeed;
}
}
if (_global.root.hareTrace == false) {
var _local3 = (Math.abs(p_currentXSpeed) / (_global.maxZSpeed * 50)) + (Math.abs(p_currentYSpeed) / (_global.maxZSpeed * 50));
p_currentZSpeed = p_currentZSpeed * (1 - _local3);
}
}
function acceleration(currentSpeed, maxSpeed, dir) {
var _local5;
if (((dir == 1) && (currentSpeed < 0)) || ((dir == -1) && (currentSpeed > 0))) {
_local5 = _global.game.maxYSpeed / 5;
} else {
_local5 = 0;
}
currentSpeed = Math.abs(currentSpeed);
var _local3 = Math.round((1 - ((currentSpeed - 10) / maxSpeed)) * p_acceleration);
if (_local3 < handlingAllowance) {
_local3 = handlingAllowance;
}
return(_local3 + _local5);
}
function returnToCentre(dimension) {
switch (dimension) {
case "x" :
if (p_currentXSpeed < 0) {
p_currentXSpeed = p_currentXSpeed + (xAcceleration * returnBoost);
} else {
p_currentXSpeed = p_currentXSpeed - (xAcceleration * returnBoost);
}
break;
case "y" :
if (currentYSpeed < 0) {
p_currentYSpeed = p_currentYSpeed + (yAcceleration * returnBoost);
} else {
p_currentYSpeed = p_currentYSpeed - (yAcceleration * returnBoost);
}
}
p_currentXSpeed = roundToZero(p_currentXSpeed);
p_currentYSpeed = roundToZero(p_currentYSpeed);
}
function rotatePlane() {
var _local3 = _global.maxXSpeed / 25;
if (_local3 < 2) {
_local3 = 1.3;
}
if (p_currentXSpeed > 0) {
p_plane._rotation = p_currentXSpeed / _local3;
} else if (p_currentXSpeed < 0) {
p_plane._rotation = p_currentXSpeed / _local3;
}
if (p_currentXSpeed == 0) {
p_plane._rotation = 0;
}
var _local4 = _global.maxYSpeed - Math.round(_global.maxYSpeed / 8);
if (p_currentYSpeed < (-_local4)) {
frame = "up";
} else if (p_currentYSpeed < _local4) {
frame = "forward";
} else {
frame = "down";
}
p_plane.gotoAndStop(frame);
}
function steer(axis, dir) {
switch (axis) {
case "x" :
p_xDir = dir;
break;
case "y" :
p_yDir = dir;
}
}
function calculateStray() {
if (_global.inPlay == true) {
var _local3 = _global.ringsOnStage[_global.ringCount + 1];
if ((((_local3.trackCentre.avgX > _global.maxStrayAmount) || (_local3.trackCentre.avgX < (-_global.maxStrayAmount))) || (_local3.trackCentre.avgY > _global.maxStrayAmount)) || (_local3.trackCentre.avgY < (-_global.maxStrayAmount))) {
if (disarmStray == false) {
trace((((("+++++++++++ reset plane +++++++++++++ " + _global.maxStrayAmount) + " | ") + _local3.trackCentre.avgX) + " | ") + _local3.x);
_global.flashFeedback.gotoAndPlay("redFlash");
_global.UI.doFeedback("stray", "Quick! Get back on course");
disarmStray = true;
strayTimer = setInterval(strayTimeOut, strayTime);
}
}
}
}
function strayTimeOut() {
clearInterval(_global.planeObj.strayTimer);
_global.planeObj.disarmStray = false;
}
function calculateHareDist() {
var _local2;
if (_global.hare.z > _global.maxHareDist) {
_global.hare.speed = _global.hare.normSpeed - 0.5;
} else if (_global.hare.z > _global.minHareDist) {
_global.hare.speed = _global.hare.normSpeed - 0.1;
} else {
_global.hare.speed = _global.hare.normSpeed + 5;
}
}
function roundToZero(num) {
if (_global.root.hareTrace == false) {
if (num > 0) {
if (num < 5) {
return(10);
}
if (num < 10) {
return(5);
}
if (num < 15) {
return(0);
}
return(num);
}
if (num < 0) {
if (num > -5) {
return(10);
}
if (num > -10) {
return(5);
}
if (num > -15) {
return(0);
}
return(num);
}
return(0);
}
var _local3 = 0.5;
if ((num >= (-_local3)) && (num <= (0 + _local3))) {
return(0);
}
return(num);
}
function doBankVolume() {
var _local10;
var _local7 = Math.round(_global.game.maxYSpeed / 8);
var _local9 = Math.abs(p_currentYSpeed);
var _local4;
var _local6;
var _local5;
var _local3;
if (_local9 > _local7) {
_local6 = Math.round(((_local9 - _local7) / (_global.game.maxYSpeed - _local7)) * 100);
if (_local4 < _local6) {
_local4 = _local4 + ((_local6 - _local4) / 5);
} else if (_local4 >= _local6) {
_local4 = _local6;
}
} else {
_local4 = 0;
}
var _local8;
if (p_currentYSpeed > 0) {
_local8 = "down";
_local3 = "bankUp";
_local5 = "bankDown";
} else if (p_currentYSpeed < 0) {
_local8 = "up";
_local3 = "bankDown";
_local5 = "bankUp";
} else {
_local8 = undefined;
}
if (_local8 != undefined) {
if (_global.snd.sounds[_local5].playing == true) {
_global.snd.stopSound(_local5);
}
if ((_global.snd.sounds[_local3].playing == false) || (_global.snd.sounds[_local3].playing == undefined)) {
_global.snd.playSound(_local3);
}
_global.snd.setNewVolume(_local4, _local3);
} else {
if (_global.snd.sounds[_local3].playing == true) {
_global.snd.stopSound(_local3);
}
if (_global.snd.sounds[_local5].playing == true) {
_global.snd.stopSound(_local5);
}
}
}
function managePlaneVolume(dir) {
if (dir == "high") {
_global.snd.setNewVolume(100, "bgPlane");
_global.snd.setNewVolume(100, "bankUp");
_global.snd.setNewVolume(100, "bankDown");
} else if (dir == "low") {
_global.snd.setNewVolume(30, "bgPlane");
_global.snd.setNewVolume(30, "bankUp");
_global.snd.setNewVolume(30, "bankDown");
} else if (dir == "kill") {
_global.snd.stopSound("bgPlane");
_global.snd.stopSound("bankUp");
_global.snd.stopSound("bankDown");
}
}
var p_xDir = 0;
var p_yDir = 0;
var p_currentXSpeed = 0;
var p_currentYSpeed = 0;
var p_currentZSpeed = 10;
var p_acceleration = 10;
var zAcceleration = 2;
var handlingAllowance = 0.8;
var returnBoost = 1.5;
var disarmStray = false;
var strayTime = 5000;
}
Symbol 493 MovieClip [__Packages.com.teamrubber.HareClass] Frame 0
class com.teamrubber.HareClass extends com.teamrubber.Class3D
{
var normSpeed, speed, clip, startX, startY, startZ, x, y, z, doPerspective;
function HareClass (clip, x, y, z) {
super();
normSpeed = _global.root.hareSpeedFraction;
speed = normSpeed;
this.clip = clip;
startX = x;
startY = y;
startZ = z;
}
function drawClip() {
x = _global.harePos[Math.round(counter)].x - _global.planeObj.x;
y = _global.harePos[Math.round(counter)].y - _global.planeObj.y;
z = _global.harePos[Math.round(counter)].z - _global.planeObj.z;
counter = counter + speed;
doPerspective(clip, x, y, z);
var _local3 = -Math.round(z);
var _local4 = clip._parent.getInstanceAtDepth(_local3);
if (_local4 != undefined) {
_local3 = -Math.round(z + 1);
}
if (finished == false) {
clip.swapDepths(_local3);
}
animateHare();
if ((_global.harePos[Math.round(counter)].z >= _global.ringsOnStage[_global.totalRings - 1].startZ) && (finished == false)) {
_global.UI.hareDistance = z;
finished = true;
_local3 = -15000;
clip.swapDepths(_local3);
}
var _local5 = Math.round((_global.harePos[Math.round(counter)].z / _global.ringsOnStage[_global.totalRings - 1].startZ) * 100);
_global.track_mc.baron_mc.gotoAndStop(_local5);
}
function animateHare() {
clip.gotoAndStop(_global.harePos[Math.round(counter)].frame);
clip._rotation = _global.harePos[Math.round(counter)].rotation;
}
var counter = 0;
var finished = false;
}
Symbol 494 MovieClip [__Packages.com.teamrubber.RingClass] Frame 0
class com.teamrubber.RingClass extends com.teamrubber.Class3D
{
var p_ring, ringNum, hitClip, startX, startY, startZ, p_clipWidth, corner, z, x, y, manageDistance, trackCentre, doPerspective, zDiscrepancy;
function RingClass (ring, ringNum, x, y, z, corner) {
super();
p_ring = ring;
this.ringNum = ringNum;
hitClip = p_ring.hit_mc;
startX = x;
startY = y;
startZ = z;
p_clipWidth = p_ring._width;
this.corner = corner;
disabled = false;
drawClip();
}
function get ring() {
return(p_ring);
}
function drawClip() {
if (disabled == false) {
if (z >= -100) {
var _local3;
x = startX - _global.planeObj.x;
y = startY - _global.planeObj.y;
z = startZ - _global.planeObj.z;
if (x < 0) {
_local3 = 1 - (Math.abs(x) / skewFrom);
if (_local3 < 0.6) {
_local3 = 0.6;
}
} else {
_local3 = 1;
}
manageDistance(p_ring);
trackCentre = calculateTrackCentre();
doPerspective(p_ring, x, y, z, _local3, _global.actualScale);
var _local4 = -Math.round(z);
p_ring.swapDepths(_local4);
if (checkRingHit() and (ringHit == undefined)) {
broadcastHitorMiss("hit");
}
} else {
removeRing();
}
}
}
function checkRingHit() {
if (z < zDiscrepancy) {
p_ring.swapDepths(_global.gameRoot.getNextHighestDepth());
if (hitClip.hitTest(_global.planeObj.hit)) {
return(true);
}
if (ringHit == undefined) {
broadcastHitorMiss("miss");
}
}
return(false);
}
function broadcastHitorMiss(hitOrMiss) {
if (hitOrMiss == "hit") {
_global.snd.playSound("ring");
_global.flashFeedback.gotoAndPlay("greenFlash");
p_ring.gotoAndPlay("hit");
_global.UI.rings++;
ringHit = true;
_global.UI.calculateScore(_global.root.ringBonusAmount);
} else {
_global.UI.calculateScore(-_global.root.ringBonusAmount);
_global.UI.removeLife();
ringHit = false;
}
_global.passedRings++;
_global.interface_mc.hoops_txt.text = (_global.passedRings + " / ") + _global.ringsOnStage.length;
}
function calculateTrackCentre() {
var _local3;
if (ringNum == 0) {
return({avgX:x, avgY:y});
}
_local3 = ringNum - 1;
var _local5 = (_global.ringsOnStage[ringNum].x + _global.ringsOnStage[_local3].x) / 2;
var _local4 = (_global.ringsOnStage[ringNum].y + _global.ringsOnStage[_local3].y) / 2;
return({avgX:_local5, avgY:_local4});
}
function removeRing() {
p_ring.swapDepths(startZ);
removeMovieClip(p_ring);
disabled = true;
_global.ringCount++;
if ((_global.ringCount >= _global.totalRings) && (_global.root.hareTrace == false)) {
trace("\r\r");
_global.game.finishLap();
if (_global.root.hareTrace == true) {
trace("hare trace -> " + _global.record1);
}
}
}
var disabled = false;
var ringHit = undefined;
var skewFrom = 9000;
}
Symbol 495 MovieClip [__Packages.com.teamrubber.UserInterfaceClass] Frame 0
class com.teamrubber.UserInterfaceClass
{
var livesRoot, lapTime, startTime, hareDistance;
function UserInterfaceClass () {
zPosArray.length = 0;
}
function putLives() {
livesRoot = _global.interface_mc.createEmptyMovieClip("lives", _global.interface_mc.getNextHighestDepth());
var _local3 = 0;
while (_local3 < _global.root.startingLives) {
putLife();
_local3++;
}
livesRoot._x = 15;
livesRoot._y = (_global.root.stageHeight - livesRoot._height) - 15;
}
function putLife() {
var _local2 = livesRoot.attachMovie("life_mc", "life_mc" + lives.length, livesRoot.getNextHighestDepth());
if (lives.length == 0) {
_local2._x = 0;
} else {
_local2._x = (lives[lives.length - 1]._x + lives[lives.length - 1]._width) + spacer;
}
lives.push(_local2);
}
function removeLife() {
_global.snd.playSound("loseLife");
_global.currentLives--;
_global.flashFeedback.gotoAndPlay("redFlash");
var _local3 = lives.pop();
removeMovieClip(_local3);
if (_global.currentLives < 0) {
_global.game.endRace();
}
if (_global.currentLives < 0) {
_global.currentLives = 0;
}
if (_global.endActionTaken == false) {
doFeedback("missRing", ("You missed a ring! You have " + _global.currentLives) + " lives left");
}
}
function doFeedback(frame, msg) {
if (_global.endActionTaken == false) {
if (frame == undefined) {
frame = "noFeedback";
}
if (msg == undefined) {
msg = "";
}
_global.feedback.feedback_mc.detail_txt.text = msg;
_global.feedback.feedback_mc.gotoAndStop(frame);
_global.feedback.gotoAndPlay("feedback");
}
}
function calculateScore(bonus, end) {
_global.score = _global.score + bonus;
if (end == true) {
var _local3 = (_global.minHareDist + distBonusCap) - _global.UI.hareDistance;
if (_local3 > distBonusCap) {
_local3 = distBonusCap;
}
_local3 = ((_local3 > 0) ? (_local3 * 10) : 0);
lapTime = getTimer() - startTime;
var _local4 = (_global.game.avgLapTime - _global.UI.lapTime) / 5;
if (_local4 < 0) {
_local4 = 0;
}
if (_global.currentLives >= _global.root.startingLives) {
_global.score = _global.score + (((_global.currentLives - _global.root.startingLives) + 1) * _global.allLivesBonus);
}
_global.score = _global.score + _local3;
_global.score = _global.score + _local4;
var _local5 = (((((((("hareDist-> " + hareDistance) + " | distBonus-> ") + _local3) + " | lapTime-> ") + lapTime) + " | time bonu->s ") + _local4) + " | _global.minHareDist-> ") + _global.minHareDist;
trace(_local5);
_global.root.trace_mc.t_txt.text = _local5;
}
if (_global.score < 0) {
_global.score = 0;
}
_global.score = Math.round(_global.score / 10);
_global.score = _global.score * 10;
_global.interface_mc.score_txt.text = _global.score;
}
function placeBonuses() {
_global.allBonuses = new Array(0);
populateBonusesArray(_global.game.speedUp);
populateBonusesArray(_global.game.speedDown);
populateBonusesArray(_global.game.ringBonus);
populateBonusesArray(_global.game.lifeBonus);
var _local15 = _global.maxBonuses;
if (_local15 >= (_global.allBonuses.length - 1)) {
_local15 = _global.allBonuses.length - 1;
}
trace("numBonuses : " + _local15);
var _local3 = 0;
while (_local3 < _local15) {
var _local8 = random(_global.totalRings - 2) + 1;
var _local7 = _global.ringsOnStage[_local8];
var _local6 = _global.ringsOnStage[_local8 + 1];
var _local5 = newUniqueZ(_local7, _local6);
if (_local5 != undefined) {
var _local4 = random(_global.maxBonusDistance) - (_global.maxBonusDistance / 2);
var _local10 = ((_local6.x + _local7.x) / 2) + _local4;
_local4 = random(_global.maxBonusDistance) - (_global.maxBonusDistance / 2);
var _local9 = ((_local6.y + _local7.y) / 2) + _local4;
var _local12 = random(_global.allBonuses.length);
var _local13 = _global.allBonuses.splice(_local12, 1)[0];
var _local14 = _global.gameRoot.attachMovie("bonusClip_mc", "bonus" + _local3, _local5);
var _local11 = new com.teamrubber.BonusClass(_local14, _local13, _local3, _local10, _local9, _local5);
_global.selectedBonuses.push(_local11);
}
_local3++;
}
_global.root.trace_mc.t_txt.text = "zPos : " + zPosArray;
trace("zPos : " + zPosArray);
}
function populateBonusesArray(obj) {
trace("BONUS " + obj.bonusType);
var _local2 = 0;
while (_local2 < obj.maxAmount) {
trace("\t *");
_global.allBonuses.push(obj);
_local2++;
}
}
function generatePos(randPos, axis, offset) {
var _local4 = _global.ringsOnStage[randPos][axis];
var _local3 = _global.ringsOnStage[randPos + 1][axis];
var _local2 = Math.round((_local4 + _local3) / 2);
if (offset == undefined) {
return(_local2);
}
return(_local2 + offset);
}
function newUniqueZ(ring1, ring2) {
var _local5 = false;
var _local6 = 0;
var _local8 = 50;
var _local4;
while ((_local5 == false) && (_local6 < _local8)) {
_local6++;
_local5 = true;
_local4 = (random((ring2.z - _global.minBonusDistance) - ring1.z) + (_global.minBonusDistance / 2)) + ring1.z;
var _local3 = 0;
while (_local3 < zPosArray.length) {
if ((_local4 < (zPosArray[_local3] + _global.minBonusSpacing)) && (_local4 > (zPosArray[_local3] - _global.minBonusSpacing))) {
_local5 = false;
}
_local3++;
}
}
if (_local5 == false) {
trace("CAN't FIND UNIQUE Z DEPTH");
return(undefined);
}
zPosArray.push(_local4);
return(_local4);
}
var rings = 0;
var distBonusCap = 150;
var feedbackPause = 5000;
var spacer = 10;
var lives = new Array(0);
var zPosArray = new Array();
}
Symbol 496 MovieClip [__Packages.com.teamrubber.BonusClass] Frame 0
class com.teamrubber.BonusClass extends com.teamrubber.Class3D
{
var bonusNum, bonusClip, hitClip, startX, startY, startZ, bonusObj, myValue, myDuration, bonusType, timerXPos, timerYPos, timerDepth, z, x, y, manageDistance, doPerspective, zDiscrepancy, timer;
function BonusClass (bonusClip, bonusObj, bonusNum, x, y, z) {
super();
this.bonusNum = bonusNum;
this.bonusClip = bonusClip;
hitClip = this.bonusClip.bonus_mc.hit_mc;
startX = x;
startY = y;
startZ = z;
this.bonusObj = bonusObj;
myValue = bonusObj.myValue;
myDuration = bonusObj.myDuration;
bonusType = this.bonusObj.bonusType;
this.bonusClip.gotoAndStop(bonusType);
this.bonusClip._visible = false;
switch (bonusType) {
case "ringSize" :
timerXPos = _global.root.stageWidth - 50;
timerYPos = _global.root.stageHeight - 200;
timerDepth = 0;
break;
case "speedUp" :
timerXPos = _global.root.stageWidth - 50;
timerYPos = _global.root.stageHeight - 320;
timerDepth = 1;
break;
case "speedDown" :
timerXPos = _global.root.stageWidth - 50;
timerYPos = _global.root.stageHeight - 320;
timerDepth = 2;
}
drawClip();
trace((((((("{" + bonusType) + "} || x,y,z -> ") + startX) + " ") + startY) + " ") + startZ);
}
function drawClip() {
if (disabled == false) {
if (z >= -100) {
var _local4;
x = startX - _global.planeObj.x;
y = startY - _global.planeObj.y;
z = startZ - _global.planeObj.z;
manageDistance(bonusClip);
doPerspective(bonusClip, x, y, z);
var _local3 = -Math.round(z);
bonusClip.swapDepths(_local3);
if ((isHit == undefined) && (z < zDiscrepancy)) {
if (hitClip.hitTest(_global.planeObj.hit)) {
pickupBonus();
} else {
isHit = false;
}
}
} else {
removeBonus();
}
}
}
function pickupBonus() {
_global.UI.doFeedback(bonusType);
_global.flashFeedback.gotoAndPlay("bonusFlash");
_global.UI.calculateScore(bonusObj.bonusValue, false);
if (bonusType == "speedUp") {
_global.snd.playSound("bark");
pickupSpeedUp();
} else if (bonusType == "speedDown") {
_global.snd.playSound("bark");
pickupSpeedDown();
} else if (bonusType == "ringSize") {
_global.snd.playSound("bark");
pickupRingSize();
} else if (bonusType == "lifeBonus") {
_global.snd.playSound("bark");
_global.score = _global.score + _global.game.lifeBonus.bonusValue;
if (_global.currentLives < _global.root.maxLives) {
_global.UI.putLife();
_global.currentLives++;
}
}
isHit = true;
removeBonus();
}
function pickupRingSize() {
_global.game.ringBonus.timer = _global.timerRoot.attachMovie("timer_mc", "timer", timerDepth);
_global.game.ringBonus.timer._x = timerXPos;
_global.game.ringBonus.timer._y = timerYPos;
_global.game.ringBonus.timer.gotoAndStop("ringSize");
_global.game.ringBonus.timer.score1_txt.text = "+" + bonusObj.bonusValue;
_global.game.ringBonus.timer.score2_txt.text = "+" + bonusObj.bonusValue;
trace((((("RING TIMER : " + _global.game.ringBonus.timer._name) + " ") + _global.game.ringBonus.timer._y) + " ") + _global.game.ringBonus.timer.getDepth());
_global.game.ringBonus.startTime = getTimer();
clearInterval(_global.game.ringBonus.interval);
_global.game.ringBonus.interval = setInterval(ringBonusTimer, myDuration, _global.game.ringBonus);
if (_global.game.ringBonus.active == false) {
_global.game.ringBonus.active = true;
var _local3 = 0;
while (_local3 < _global.totalRings) {
_global.ringsOnStage[_local3].ring.gotoAndPlay("bonus");
_local3++;
}
}
_global.game.ringBonus.startTime = getTimer();
_global.game.ringBonus.timer.onEnterFrame = undefined;
_global.game.ringBonus.timer.onEnterFrame = function () {
_global.root.doTimer(_global.game.ringBonus);
};
}
function ringBonusTimer(bonusObj) {
removeMovieClip(bonusObj.timer);
clearInterval(bonusObj.interval);
bonusObj.active = false;
var _local2 = 0;
while (_local2 < _global.totalRings) {
_global.ringsOnStage[_local2].ring.gotoAndPlay("return");
_local2++;
}
}
function pickupSpeedUp() {
if (_global.game.speedUp.active == false) {
_global.game.speedUp.active = true;
_global.maxXSpeed = _global.maxXSpeed + (1.8 * _global.game.speedUp.myValue);
_global.maxYSpeed = _global.maxYSpeed + (1.8 * _global.game.speedUp.myValue);
_global.maxZSpeed = _global.maxZSpeed + _global.game.speedUp.myValue;
}
_global.game.speedUp.timer = _global.timerRoot.attachMovie("timer_mc", "timerSpeedUp", timerDepth);
_global.game.speedUp.timer._x = timerXPos;
_global.game.speedUp.timer._y = timerYPos;
_global.game.speedUp.timer.gotoAndStop("speedUp");
_global.game.speedUp.timer.score1_txt.text = "+" + bonusObj.bonusValue;
_global.game.speedUp.timer.score2_txt.text = "+" + bonusObj.bonusValue;
trace((((("SPEED UP TIMER : " + _global.game.speedUp.timer._name) + " ") + _global.game.speedUp.timer._y) + " ") + _global.game.speedUp.timer.getDepth());
clearInterval(_global.game.speedDown.interval);
removeMovieClip(_global.game.speedDown.timer);
clearInterval(_global.game.speedUp.interval);
_global.game.speedUp.interval = setInterval(speedUpTimer, myDuration, _global.game.speedUp);
_global.game.speedUp.startTime = getTimer();
_global.game.speedUp.timer.onEnterFrame = function () {
_global.root.doTimer(_global.game.speedUp);
};
}
function speedUpTimer(bonusObj) {
removeMovieClip(bonusObj.timer);
clearInterval(bonusObj.interval);
bonusObj.active = false;
_global.maxXSpeed = _global.maxXSpeed - bonusObj.myValue;
_global.maxYSpeed = _global.maxYSpeed - bonusObj.myValue;
_global.maxZSpeed = _global.maxZSpeed - bonusObj.myValue;
}
function pickupSpeedDown() {
if (_global.game.speedDown.active == false) {
_global.game.speedDown.active = true;
_global.maxXSpeed = _global.maxXSpeed - (1.8 * _global.game.speedDown.myValue);
_global.maxYSpeed = _global.maxYSpeed - (1.8 * _global.game.speedDown.myValue);
_global.maxZSpeed = _global.maxZSpeed - _global.game.speedDown.myValue;
}
_global.game.speedDown.timer = _global.timerRoot.attachMovie("timer_mc", "timerSpeedDown", timerDepth);
_global.game.speedDown.timer._x = timerXPos;
_global.game.speedDown.timer._y = timerYPos;
_global.game.speedDown.timer.gotoAndStop("speedDown");
trace((((("SPEED DOWN TIMER : " + _global.game.speedDown.timer._name) + " ") + _global.game.speedDown.timer._y) + " ") + _global.game.speedDown.timer.getDepth());
_global.game.speedDown.timer.score1_txt.text = bonusObj.bonusValue;
_global.game.speedDown.timer.score2_txt.text = bonusObj.bonusValue;
clearInterval(_global.game.speedUp.interval);
removeMovieClip(_global.game.speedUp.timer);
clearInterval(_global.game.speedDown.interval);
_global.game.speedDown.interval = setInterval(speedDownTimer, myDuration, _global.game.speedDown);
_global.game.speedDown.startTime = getTimer();
_global.game.speedDown.timer.onEnterFrame = function () {
_global.root.doTimer(_global.game.speedDown);
};
}
function speedDownTimer(bonusObj) {
removeMovieClip(bonusObj.timer);
bonusObj.active = false;
_global.maxXSpeed = _global.maxXSpeed + bonusObj.myValue;
_global.maxYSpeed = _global.maxYSpeed + bonusObj.myValue;
_global.maxZSpeed = _global.maxZSpeed + bonusObj.myValue;
clearInterval(bonusObj.interval);
}
function removeBonus() {
bonusClip.swapDepths(startZ);
removeMovieClip(bonusClip);
disabled = true;
}
function placeBonusTimer() {
timer = _global.timerRoot.attachMovie("timer_mc", "timer", timerDepth);
timer._x = timerXPos;
timer._y = timerYPos;
}
var isHit = undefined;
var disabled = false;
var active = false;
}
Symbol 497 MovieClip [__Packages.com.robertpenner.easing.Bounce] Frame 0
class com.robertpenner.easing.Bounce
{
function Bounce () {
}
static function easeOut(t, b, c, d) {
t = t / d;
if (t < 0.363636363636364) {
return((c * ((7.5625 * t) * t)) + b);
}
if (t < 0.727272727272727) {
t = t - 0.545454545454545;
return((c * (((7.5625 * t) * t) + 0.75)) + b);
}
if (t < 0.909090909090909) {
t = t - 0.818181818181818;
return((c * (((7.5625 * t) * t) + 0.9375)) + b);
}
t = t - 0.954545454545455;
return((c * (((7.5625 * t) * t) + 0.984375)) + b);
}
static function easeIn(t, b, c, d) {
return((c - easeOut(d - t, 0, c, d)) + b);
}
static function easeInOut(t, b, c, d) {
if (t < (d / 2)) {
return((easeIn(t * 2, 0, c, d) * 0.5) + b);
}
return(((easeOut((t * 2) - d, 0, c, d) * 0.5) + (c * 0.5)) + b);
}
}
Symbol 15 MovieClip [__Packages.com.rubberductions.Tracker] Frame 0
class com.rubberductions.Tracker extends MovieClip
{
var lvID, lvs, sessionID, referrer, flashMinorVersion, flashMajorVersion, debug, CID, baseURL, userID, projectID, getIDFunc, userLV, getURL;
function Tracker () {
super();
initVars();
}
function initVars() {
lvID = 0;
lvs = [];
sessionID = "-1";
referrer = ((_root.referrer == undefined) ? "" : (_root.referrer));
var _local3 = com.rubberductions.Utils.getFlashVersion();
flashMinorVersion = (_local3.result ? (_local3.minor) : -1);
flashMajorVersion = (_local3.result ? (_local3.major) : -1);
}
function getNextLvID() {
return(++lvID);
}
function getALoadVars(label) {
var _local2 = new LoadVars();
_local2.__arrID = getNextLvID();
_local2.__label = label;
_local2.__cb = this;
_local2.onLoad = function (success) {
if (success) {
this.__cb.checkRequest(this);
} else {
this.__cb.badRequest(this);
}
};
lvs[_local2.__arrID] = _local2;
return(_local2);
}
function badRequest(lv) {
output(("request " + lv.__label) + " failed");
delete lvs[lv.__arrID];
}
function checkRequest(lv) {
if (lv.ok == "1") {
output(("request " + lv.__label) + " returned ok");
} else {
output(("request " + lv.__label) + " failed on the server");
}
if (lv.sessionID != undefined) {
sessionID = lv.sessionID;
}
delete lvs[lv.__arrID];
}
function output(str) {
if (debug) {
trace("TRACKER: " + str);
}
}
function checkReady() {
if ((((CID != undefined) && (baseURL != undefined)) && (userID != undefined)) && (projectID != undefined)) {
return(true);
}
output("prerequisits haven't been defined, check you have made calls to setBaseURL() ,setCampaignID(), setProjectID() and initialise() and that they returned correctly");
return(false);
}
function initialise(cbFunction) {
if (typeof(cbFunction) == "function") {
getIDFunc = cbFunction;
var _local2 = com.rubberductions.Utils.readLSO(projectID, "id");
if (_local2 != "") {
userID = _local2;
output("cookie found... letting you know");
getIDFunc(true);
} else {
output("cookie not found...");
requestUserID();
}
} else {
output("check the passed function");
}
}
function requestUserID() {
if (CID != undefined) {
output(("asking the server for a new user id from: " + baseURL) + GETID);
userLV = new LoadVars();
userLV.CID = CID;
userLV.onLoad = mx.utils.Delegate.create(this, userIDRequestResponse);
userLV.sendAndLoad(baseURL + GETID, userLV, "POST");
} else {
output("define the campaign id first before calling requestUserID");
}
}
function userIDRequestResponse(success) {
if (success) {
if (userLV.id != undefined) {
output("server provided a user id: " + userLV.id);
userID = userLV.id;
com.rubberductions.Utils.writeLSO(projectID, "id", userID);
output("wrote the coookie");
getIDFunc(true);
} else {
output("server didn't provide a user id");
getIDFunc(false);
}
} else {
output("request for the user id failed");
getIDFunc(false);
}
delete userLV;
}
function setBaseURL(u) {
if (typeof(u) == "string") {
baseURL = u;
return(true);
}
output("check the URL you passed to setBaseURL()");
return(false);
}
function setProjectID(id) {
if (typeof(id) == "string") {
projectID = id;
output("project id set: " + projectID);
return(true);
}
output("project id was not a string");
return(false);
}
function setCampaignID(id) {
if (typeof(id) == "string") {
CID = id;
output("campaign id set: " + CID);
return(true);
}
output("campaign id was not a number");
return(false);
}
function load() {
if (checkReady()) {
var _local2 = getALoadVars("load");
_local2.CID = CID;
_local2.flversionmajor = flashMajorVersion;
_local2.flversionminor = flashMinorVersion;
_local2.referrer = referrer;
_local2.UID = userID;
_local2.sendAndLoad(baseURL + LOAD, _local2, "POST");
return(true);
}
return(false);
}
function startSession() {
sessionID = "0";
if (checkReady()) {
var _local2 = getALoadVars("start session");
_local2.CID = CID;
_local2.UID = userID;
_local2.currentTime = new Date().getTime();
_local2.sendAndLoad(baseURL + START_SESSION, _local2, "POST");
return(true);
}
return(false);
}
function endSession() {
if (checkReady()) {
var _local2 = getALoadVars("end session");
_local2.CID = CID;
_local2.UID = userID;
_local2.currentTime = new Date().getTime();
_local2.sessionID = sessionID;
_local2.sendAndLoad(baseURL + END_SESSION, _local2, "POST");
return(true);
}
return(false);
}
function exit(link, exitLabel, window) {
if (typeof(link) == "string") {
if (typeof(exitLabel) == "string") {
if (typeof(window) == "string") {
if (checkReady()) {
var _local2 = getALoadVars("exit");
_local2.UID = userID;
_local2.CID = CID;
_local2.label = exitLabel;
_local2.link = link;
_local2.sendAndLoad(baseURL + EXIT, _local2, "POST");
}
(getURL(link, window));// not popped
return(true);
}
output("check the window you passed");
} else {
output("check the exitLabel you passed");
}
} else {
output("check the link you passed");
}
return(false);
}
function conversion(label, type) {
if (typeof(label) == "string") {
if (typeof(type) == "string") {
if (checkReady()) {
var _local2 = getALoadVars("conversion");
_local2.UID = userID;
_local2.CID = CID;
_local2.label = label;
_local2.type = type;
_local2.sendAndLoad(baseURL + CONVERSION, _local2, "POST");
return(true);
}
return(false);
}
output("check the type you passed");
} else {
output("check the label you passed");
}
return(false);
}
function exitPass(toSplit) {
if (checkReady()) {
if (typeof(toSplit) == "string") {
var _local2 = toSplit.split("|");
exit(unescape(_local2[1]), _local2[0]);
return(true);
}
return(false);
}
}
function view(label) {
if (typeof(label) == "string") {
if (checkReady()) {
var _local2 = getALoadVars("view");
_local2.UID = userID;
_local2.CID = CID;
_local2.label = label;
_local2.sendAndLoad(baseURL + VIEW, _local2, "POST");
return(true);
}
} else {
output("check the label you passed");
return(false);
}
}
function custom(path, obj, id) {
if (typeof(path) == "string") {
if (typeof(obj) == "object") {
if (typeof(id) == "string") {
if (checkReady()) {
var _local3 = getALoadVars(id);
_local3.UID = userID;
_local3.CID = CID;
for (var _local4 in obj) {
_local3[_local4] = obj[_local4];
}
_local3.sendAndLoad(baseURL + path, _local3, "POST");
return(true);
}
return(false);
}
// unexpected jump
}
output("check the supplied data obj - doesn't seem to be a Object");
return(false);
}
output("check the supplied path - doesn't seem to be a string");
return(false);
}
function setVerbose(val) {
if (typeof(val) == "boolean") {
debug = val;
output("setVerbose: " + val);
return(true);
}
trace("TRACKER: setVerbose: param is not a boolean");
return(false);
}
static var GETID = "getUID";
static var LOAD = "load";
static var START_SESSION = "startSession";
static var END_SESSION = "endSession";
static var EXIT = "exit";
static var VIEW = "view";
static var CONVERSION = "conversion";
}
Symbol 18 MovieClip [__Packages.com.rubberductions.Utils] Frame 0
class com.rubberductions.Utils
{
function Utils () {
}
static function readLSO(lsoName, prop) {
if (lsoName != undefined) {
var _local1 = SharedObject.getLocal(lsoName);
if (_local1.data[prop] == undefined) {
return("");
}
return(_local1.data[prop]);
}
}
static function writeLSO(lsoName, prop, stuff) {
var _local1 = SharedObject.getLocal(lsoName);
_local1.data[prop] = stuff;
_local1.data.flush();
}
static function getFlashVersion() {
var _local1 = System.capabilities.version;
var _local2 = _local1.indexOf(" ");
if (_local2 != -1) {
_local1 = _local1.substr(_local2 + 1, _local1.length);
_local1 = _local1.split(",");
var _local5 = _local1[0];
var _local4 = _local1[1];
return({major:_local5, minor:_local4, result:true});
}
return({major:-1, minor:-1, result:false});
}
}
Symbol 19 MovieClip [__Packages.mx.utils.Delegate] Frame 0
class mx.utils.Delegate extends Object
{
var func;
function Delegate (f) {
super();
func = f;
}
static function create(obj, func) {
var _local2 = function () {
var _local2 = arguments.callee.target;
var _local3 = arguments.callee.func;
return(_local3.apply(_local2, arguments));
};
_local2.target = obj;
_local2.func = func;
return(_local2);
}
function createDelegate(obj) {
return(create(obj, func));
}
}
Symbol 45 MovieClip [__Packages.mx.core.UIObject] Frame 0
class mx.core.UIObject extends MovieClip
{
var _width, _height, _x, _y, _parent, _minHeight, _minWidth, _visible, dispatchEvent, _xscale, _yscale, methodTable, onEnterFrame, tfList, __width, __height, moveTo, lineTo, createTextField, attachMovie, buildDepthTable, findNextAvailableDepth, idNames, childrenCreated, _name, createAccessibilityImplementation, _endInit, validateNow, hasOwnProperty, initProperties, stylecache, className, ignoreClassStyleDeclaration, _tf, fontFamily, fontSize, color, marginLeft, marginRight, fontStyle, fontWeight, textAlign, textIndent, textDecoration, embedFonts, styleName, enabled;
function UIObject () {
super();
constructObject();
}
function get width() {
return(_width);
}
function get height() {
return(_height);
}
function get left() {
return(_x);
}
function get x() {
return(_x);
}
function get top() {
return(_y);
}
function get y() {
return(_y);
}
function get right() {
return(_parent.width - (_x + width));
}
function get bottom() {
return(_parent.height - (_y + height));
}
function getMinHeight(Void) {
return(_minHeight);
}
function setMinHeight(h) {
_minHeight = h;
}
function get minHeight() {
return(getMinHeight());
}
function set minHeight(h) {
setMinHeight(h);
//return(minHeight);
}
function getMinWidth(Void) {
return(_minWidth);
}
function setMinWidth(w) {
_minWidth = w;
}
function get minWidth() {
return(getMinWidth());
}
function set minWidth(w) {
setMinWidth(w);
//return(minWidth);
}
function setVisible(x, noEvent) {
if (x != _visible) {
_visible = x;
if (noEvent != true) {
dispatchEvent({type:(x ? "reveal" : "hide")});
}
}
}
function get visible() {
return(_visible);
}
function set visible(x) {
setVisible(x, false);
//return(visible);
}
function get scaleX() {
return(_xscale);
}
function set scaleX(x) {
_xscale = x;
//return(scaleX);
}
function get scaleY() {
return(_yscale);
}
function set scaleY(y) {
_yscale = y;
//return(scaleY);
}
function doLater(obj, fn) {
if (methodTable == undefined) {
methodTable = new Array();
}
methodTable.push({obj:obj, fn:fn});
onEnterFrame = doLaterDispatcher;
}
function doLaterDispatcher(Void) {
delete onEnterFrame;
if (invalidateFlag) {
redraw();
}
var _local3 = methodTable;
methodTable = new Array();
if (_local3.length > 0) {
var _local2;
while (_local2 = _local3.shift() , _local2 != undefined) {
_local2.obj[_local2.fn]();
}
}
}
function cancelAllDoLaters(Void) {
delete onEnterFrame;
methodTable = new Array();
}
function invalidate(Void) {
invalidateFlag = true;
onEnterFrame = doLaterDispatcher;
}
function invalidateStyle(Void) {
invalidate();
}
function redraw(bAlways) {
if (invalidateFlag || (bAlways)) {
invalidateFlag = false;
var _local2;
for (_local2 in tfList) {
tfList[_local2].draw();
}
draw();
dispatchEvent({type:"draw"});
}
}
function draw(Void) {
}
function move(x, y, noEvent) {
var _local3 = _x;
var _local2 = _y;
_x = x;
_y = y;
if (noEvent != true) {
dispatchEvent({type:"move", oldX:_local3, oldY:_local2});
}
}
function setSize(w, h, noEvent) {
var _local2 = __width;
var _local3 = __height;
__width = w;
__height = h;
size();
if (noEvent != true) {
dispatchEvent({type:"resize", oldWidth:_local2, oldHeight:_local3});
}
}
function size(Void) {
_width = __width;
_height = __height;
}
function drawRect(x1, y1, x2, y2) {
moveTo(x1, y1);
lineTo(x2, y1);
lineTo(x2, y2);
lineTo(x1, y2);
lineTo(x1, y1);
}
function createLabel(name, depth, text) {
createTextField(name, depth, 0, 0, 0, 0);
var _local2 = this[name];
_local2._color = textColorList;
_local2._visible = false;
_local2.__text = text;
if (tfList == undefined) {
tfList = new Object();
}
tfList[name] = _local2;
_local2.invalidateStyle();
invalidate();
_local2.styleName = this;
return(_local2);
}
function createObject(linkageName, id, depth, initobj) {
return(attachMovie(linkageName, id, depth, initobj));
}
function createClassObject(className, id, depth, initobj) {
var _local3 = className.symbolName == undefined;
if (_local3) {
Object.registerClass(className.symbolOwner.symbolName, className);
}
var _local4 = createObject(className.symbolOwner.symbolName, id, depth, initobj);
if (_local3) {
Object.registerClass(className.symbolOwner.symbolName, className.symbolOwner);
}
return(_local4);
}
function createEmptyObject(id, depth) {
return(createClassObject(mx.core.UIObject, id, depth));
}
function destroyObject(id) {
var _local2 = this[id];
if (_local2.getDepth() < 0) {
var _local4 = buildDepthTable();
var _local5 = findNextAvailableDepth(0, _local4, "up");
var _local3 = _local5;
_local2.swapDepths(_local3);
}
_local2.removeMovieClip();
delete this[id];
}
function getSkinIDName(tag) {
return(idNames[tag]);
}
function setSkin(tag, linkageName, initObj) {
if (_global.skinRegistry[linkageName] == undefined) {
mx.skins.SkinElement.registerElement(linkageName, mx.skins.SkinElement);
}
return(createObject(linkageName, getSkinIDName(tag), tag, initObj));
}
function createSkin(tag) {
var _local2 = getSkinIDName(tag);
createEmptyObject(_local2, tag);
return(this[_local2]);
}
function createChildren(Void) {
}
function _createChildren(Void) {
createChildren();
childrenCreated = true;
}
function constructObject(Void) {
if (_name == undefined) {
return(undefined);
}
init();
_createChildren();
createAccessibilityImplementation();
_endInit();
if (validateNow) {
redraw(true);
} else {
invalidate();
}
}
function initFromClipParameters(Void) {
var _local4 = false;
var _local2;
for (_local2 in clipParameters) {
if (hasOwnProperty(_local2)) {
_local4 = true;
this["def_" + _local2] = this[_local2];
delete this[_local2];
}
}
if (_local4) {
for (_local2 in clipParameters) {
var _local3 = this["def_" + _local2];
if (_local3 != undefined) {
this[_local2] = _local3;
}
}
}
}
function init(Void) {
__width = _width;
__height = _height;
if (initProperties == undefined) {
initFromClipParameters();
} else {
initProperties();
}
if (_global.cascadingStyles == true) {
stylecache = new Object();
}
}
function getClassStyleDeclaration(Void) {
var _local4 = this;
var _local3 = className;
while (_local3 != undefined) {
if (ignoreClassStyleDeclaration[_local3] == undefined) {
if (_global.styles[_local3] != undefined) {
return(_global.styles[_local3]);
}
}
_local4 = _local4.__proto__;
_local3 = _local4.className;
}
}
function setColor(color) {
}
function __getTextFormat(tf, bAll) {
var _local8 = stylecache.tf;
if (_local8 != undefined) {
var _local3;
for (_local3 in mx.styles.StyleManager.TextFormatStyleProps) {
if (bAll || (mx.styles.StyleManager.TextFormatStyleProps[_local3])) {
if (tf[_local3] == undefined) {
tf[_local3] = _local8[_local3];
}
}
}
return(false);
}
var _local6 = false;
for (var _local3 in mx.styles.StyleManager.TextFormatStyleProps) {
if (bAll || (mx.styles.StyleManager.TextFormatStyleProps[_local3])) {
if (tf[_local3] == undefined) {
var _local5 = _tf[_local3];
if (_local5 != undefined) {
tf[_local3] = _local5;
} else if ((_local3 == "font") && (fontFamily != undefined)) {
tf[_local3] = fontFamily;
} else if ((_local3 == "size") && (fontSize != undefined)) {
tf[_local3] = fontSize;
} else if ((_local3 == "color") && (color != undefined)) {
tf[_local3] = color;
} else if ((_local3 == "leftMargin") && (marginLeft != undefined)) {
tf[_local3] = marginLeft;
} else if ((_local3 == "rightMargin") && (marginRight != undefined)) {
tf[_local3] = marginRight;
} else if ((_local3 == "italic") && (fontStyle != undefined)) {
tf[_local3] = fontStyle == _local3;
} else if ((_local3 == "bold") && (fontWeight != undefined)) {
tf[_local3] = fontWeight == _local3;
} else if ((_local3 == "align") && (textAlign != undefined)) {
tf[_local3] = textAlign;
} else if ((_local3 == "indent") && (textIndent != undefined)) {
tf[_local3] = textIndent;
} else if ((_local3 == "underline") && (textDecoration != undefined)) {
tf[_local3] = textDecoration == _local3;
} else if ((_local3 == "embedFonts") && (embedFonts != undefined)) {
tf[_local3] = embedFonts;
} else {
_local6 = true;
}
}
}
}
if (_local6) {
var _local9 = styleName;
if (_local9 != undefined) {
if (typeof(_local9) != "string") {
_local6 = _local9.__getTextFormat(tf, true, this);
} else if (_global.styles[_local9] != undefined) {
_local6 = _global.styles[_local9].__getTextFormat(tf, true, this);
}
}
}
if (_local6) {
var _local10 = getClassStyleDeclaration();
if (_local10 != undefined) {
_local6 = _local10.__getTextFormat(tf, true, this);
}
}
if (_local6) {
if (_global.cascadingStyles) {
if (_parent != undefined) {
_local6 = _parent.__getTextFormat(tf, false);
}
}
}
if (_local6) {
_local6 = _global.style.__getTextFormat(tf, true, this);
}
return(_local6);
}
function _getTextFormat(Void) {
var _local2 = stylecache.tf;
if (_local2 != undefined) {
return(_local2);
}
_local2 = new TextFormat();
__getTextFormat(_local2, true);
stylecache.tf = _local2;
if (enabled == false) {
var _local3 = getStyle("disabledColor");
_local2.color = _local3;
}
return(_local2);
}
function getStyleName(Void) {
var _local2 = styleName;
if (_local2 != undefined) {
if (typeof(_local2) != "string") {
return(_local2.getStyleName());
}
return(_local2);
}
if (_parent != undefined) {
return(_parent.getStyleName());
}
return(undefined);
}
function getStyle(styleProp) {
var _local3;
_global.getStyleCounter++;
if (this[styleProp] != undefined) {
return(this[styleProp]);
}
var _local6 = styleName;
if (_local6 != undefined) {
if (typeof(_local6) != "string") {
_local3 = _local6.getStyle(styleProp);
} else {
var _local7 = _global.styles[_local6];
_local3 = _local7.getStyle(styleProp);
}
}
if (_local3 != undefined) {
return(_local3);
}
var _local7 = getClassStyleDeclaration();
if (_local7 != undefined) {
_local3 = _local7[styleProp];
}
if (_local3 != undefined) {
return(_local3);
}
if (_global.cascadingStyles) {
if (mx.styles.StyleManager.isInheritingStyle(styleProp) || (mx.styles.StyleManager.isColorStyle(styleProp))) {
var _local5 = stylecache;
if (_local5 != undefined) {
if (_local5[styleProp] != undefined) {
return(_local5[styleProp]);
}
}
if (_parent != undefined) {
_local3 = _parent.getStyle(styleProp);
} else {
_local3 = _global.style[styleProp];
}
if (_local5 != undefined) {
_local5[styleProp] = _local3;
}
return(_local3);
}
}
if (_local3 == undefined) {
_local3 = _global.style[styleProp];
}
return(_local3);
}
static function mergeClipParameters(o, p) {
for (var _local3 in p) {
o[_local3] = p[_local3];
}
return(true);
}
static var symbolName = "UIObject";
static var symbolOwner = mx.core.UIObject;
static var version = "2.0.2.126";
static var textColorList = {color:1, disabledColor:1};
var invalidateFlag = false;
var lineWidth = 1;
var lineColor = 0;
var tabEnabled = false;
var clipParameters = {visible:1, minHeight:1, minWidth:1, maxHeight:1, maxWidth:1, preferredHeight:1, preferredWidth:1};
}
Symbol 46 MovieClip [__Packages.mx.core.UIComponent] Frame 0
class mx.core.UIComponent extends mx.core.UIObject
{
var __width, __height, invalidate, stylecache, removeEventListener, dispatchEvent, drawFocus, addEventListener, _xscale, _yscale, _focusrect, watch, enabled;
function UIComponent () {
super();
}
function get width() {
return(__width);
}
function get height() {
return(__height);
}
function setVisible(x, noEvent) {
super.setVisible(x, noEvent);
}
function enabledChanged(id, oldValue, newValue) {
setEnabled(newValue);
invalidate();
delete stylecache.tf;
return(newValue);
}
function setEnabled(enabled) {
invalidate();
}
function getFocus() {
var selFocus = Selection.getFocus();
return(((selFocus === null) ? null : (eval (selFocus))));
}
function setFocus() {
Selection.setFocus(this);
}
function getFocusManager() {
var _local2 = this;
while (_local2 != undefined) {
if (_local2.focusManager != undefined) {
return(_local2.focusManager);
}
_local2 = _local2._parent;
}
return(undefined);
}
function onKillFocus(newFocus) {
removeEventListener("keyDown", this);
removeEventListener("keyUp", this);
dispatchEvent({type:"focusOut"});
drawFocus(false);
}
function onSetFocus(oldFocus) {
addEventListener("keyDown", this);
addEventListener("keyUp", this);
dispatchEvent({type:"focusIn"});
if (getFocusManager().bDrawFocus != false) {
drawFocus(true);
}
}
function findFocusInChildren(o) {
if (o.focusTextField != undefined) {
return(o.focusTextField);
}
if (o.tabEnabled == true) {
return(o);
}
return(undefined);
}
function findFocusFromObject(o) {
if (o.tabEnabled != true) {
if (o._parent == undefined) {
return(undefined);
}
if (o._parent.tabEnabled == true) {
o = o._parent;
} else if (o._parent.tabChildren) {
o = findFocusInChildren(o._parent);
} else {
o = findFocusFromObject(o._parent);
}
}
return(o);
}
function pressFocus() {
var _local3 = findFocusFromObject(this);
var _local2 = getFocus();
if (_local3 != _local2) {
_local2.drawFocus(false);
if (getFocusManager().bDrawFocus != false) {
_local3.drawFocus(true);
}
}
}
function releaseFocus() {
var _local2 = findFocusFromObject(this);
if (_local2 != getFocus()) {
_local2.setFocus();
}
}
function isParent(o) {
while (o != undefined) {
if (o == this) {
return(true);
}
o = o._parent;
}
return(false);
}
function size() {
}
function init() {
super.init();
_xscale = 100;
_yscale = 100;
_focusrect = _global.useFocusRect == false;
watch("enabled", enabledChanged);
if (enabled == false) {
setEnabled(false);
}
}
function dispatchValueChangedEvent(value) {
dispatchEvent({type:"valueChanged", value:value});
}
static var symbolName = "UIComponent";
static var symbolOwner = mx.core.UIComponent;
static var version = "2.0.2.126";
static var kStretch = 5000;
var focusEnabled = true;
var tabEnabled = true;
var origBorderStyles = {themeColor:16711680};
var clipParameters = {};
static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.core.UIComponent.prototype.clipParameters, mx.core.UIObject.prototype.clipParameters);
}
Symbol 47 MovieClip [__Packages.mx.controls.listclasses.DataSelector] Frame 0
class mx.controls.listclasses.DataSelector extends Object
{
var __vPosition, setVPosition, __dataProvider, enabled, lastSelID, lastSelected, selected, invUpdateControl, invalidate, multipleSelection, updateControl, __rowCount, rows;
function DataSelector () {
super();
}
static function Initialize(obj) {
var _local3 = mixinProps;
var _local4 = _local3.length;
obj = obj.prototype;
var _local1 = 0;
while (_local1 < _local4) {
obj[_local3[_local1]] = mixins[_local3[_local1]];
_local1++;
}
mixins.createProp(obj, "dataProvider", true);
mixins.createProp(obj, "length", false);
mixins.createProp(obj, "value", false);
mixins.createProp(obj, "selectedIndex", true);
mixins.createProp(obj, "selectedIndices", true);
mixins.createProp(obj, "selectedItems", false);
mixins.createProp(obj, "selectedItem", true);
return(true);
}
function createProp(obj, propName, setter) {
var p = (propName.charAt(0).toUpperCase() + propName.substr(1));
var _local2 = null;
var _local4 = function (Void) {
return(this["get" + p]());
};
if (setter) {
_local2 = function (val) {
this["set" + p](val);
};
}
obj.addProperty(propName, _local4, _local2);
}
function setDataProvider(dP) {
if (__vPosition != 0) {
setVPosition(0);
}
clearSelected();
__dataProvider.removeEventListener(this);
__dataProvider = dP;
dP.addEventListener("modelChanged", this);
dP.addView(this);
modelChanged({eventName:"updateAll"});
}
function getDataProvider(Void) {
return(__dataProvider);
}
function addItemAt(index, label, data) {
if ((index < 0) || (!enabled)) {
return(undefined);
}
var _local2 = __dataProvider;
if (_local2 == undefined) {
_local2 = (__dataProvider = new Array());
_local2.addEventListener("modelChanged", this);
index = 0;
}
if ((typeof(label) == "object") || (typeof(_local2.getItemAt(0)) == "string")) {
_local2.addItemAt(index, label);
} else {
_local2.addItemAt(index, {label:label, data:data});
}
}
function addItem(label, data) {
addItemAt(__dataProvider.length, label, data);
}
function removeItemAt(index) {
return(__dataProvider.removeItemAt(index));
}
function removeAll(Void) {
__dataProvider.removeAll();
}
function replaceItemAt(index, newLabel, newData) {
if (typeof(newLabel) == "object") {
__dataProvider.replaceItemAt(index, newLabel);
} else {
__dataProvider.replaceItemAt(index, {label:newLabel, data:newData});
}
}
function sortItemsBy(fieldName, order) {
lastSelID = __dataProvider.getItemID(lastSelected);
__dataProvider.sortItemsBy(fieldName, order);
}
function sortItems(compareFunc, order) {
lastSelID = __dataProvider.getItemID(lastSelected);
__dataProvider.sortItems(compareFunc, order);
}
function getLength(Void) {
return(__dataProvider.length);
}
function getItemAt(index) {
return(__dataProvider.getItemAt(index));
}
function modelChanged(eventObj) {
var _local3 = eventObj.firstItem;
var _local6 = eventObj.lastItem;
var _local7 = eventObj.eventName;
if (_local7 == undefined) {
_local7 = eventObj.event;
_local3 = eventObj.firstRow;
_local6 = eventObj.lastRow;
if (_local7 == "addRows") {
_local7 = (eventObj.eventName = "addItems");
} else if (_local7 == "deleteRows") {
_local7 = (eventObj.eventName = "removeItems");
} else if (_local7 == "updateRows") {
_local7 = (eventObj.eventName = "updateItems");
}
}
if (_local7 == "addItems") {
for (var _local2 in selected) {
var _local5 = selected[_local2];
if ((_local5 != undefined) && (_local5 >= _local3)) {
selected[_local2] = selected[_local2] + ((_local6 - _local3) + 1);
}
}
} else if (_local7 == "removeItems") {
if (__dataProvider.length == 0) {
delete selected;
} else {
var _local9 = eventObj.removedIDs;
var _local10 = _local9.length;
var _local2 = 0;
while (_local2 < _local10) {
var _local4 = _local9[_local2];
if (selected[_local4] != undefined) {
delete selected[_local4];
}
_local2++;
}
for (_local2 in selected) {
if (selected[_local2] >= _local3) {
selected[_local2] = selected[_local2] - ((_local6 - _local3) + 1);
}
}
}
} else if (_local7 == "sort") {
if (typeof(__dataProvider.getItemAt(0)) != "object") {
delete selected;
} else {
var _local10 = __dataProvider.length;
var _local2 = 0;
while (_local2 < _local10) {
if (isSelected(_local2)) {
var _local4 = __dataProvider.getItemID(_local2);
if (_local4 == lastSelID) {
lastSelected = _local2;
}
selected[_local4] = _local2;
}
_local2++;
}
}
} else if (_local7 == "filterModel") {
setVPosition(0);
}
invUpdateControl = true;
invalidate();
}
function getValue(Void) {
var _local2 = getSelectedItem();
if (typeof(_local2) != "object") {
return(_local2);
}
return(((_local2.data == undefined) ? (_local2.label) : (_local2.data)));
}
function getSelectedIndex(Void) {
for (var _local3 in selected) {
var _local2 = selected[_local3];
if (_local2 != undefined) {
return(_local2);
}
}
}
function setSelectedIndex(index) {
if (((index >= 0) && (index < __dataProvider.length)) && (enabled)) {
delete selected;
selectItem(index, true);
lastSelected = index;
invUpdateControl = true;
invalidate();
} else if (index == undefined) {
clearSelected();
}
}
function getSelectedIndices(Void) {
var _local2 = new Array();
for (var _local3 in selected) {
_local2.push(selected[_local3]);
}
_local2.reverse();
return(((_local2.length > 0) ? (_local2) : undefined));
}
function setSelectedIndices(indexArray) {
if (multipleSelection != true) {
return(undefined);
}
delete selected;
var _local3 = 0;
while (_local3 < indexArray.length) {
var _local2 = indexArray[_local3];
if ((_local2 >= 0) && (_local2 < __dataProvider.length)) {
selectItem(_local2, true);
}
_local3++;
}
invUpdateControl = true;
updateControl();
}
function getSelectedItems(Void) {
var _local3 = getSelectedIndices();
var _local4 = new Array();
var _local2 = 0;
while (_local2 < _local3.length) {
_local4.push(getItemAt(_local3[_local2]));
_local2++;
}
return(((_local4.length > 0) ? (_local4) : undefined));
}
function getSelectedItem(Void) {
return(__dataProvider.getItemAt(getSelectedIndex()));
}
function selectItem(index, selectedFlag) {
if (selected == undefined) {
selected = new Object();
}
var _local2 = __dataProvider.getItemID(index);
if (_local2 == undefined) {
return(undefined);
}
if (selectedFlag && (!isSelected(index))) {
selected[_local2] = index;
} else if (!selectedFlag) {
delete selected[_local2];
}
}
function isSelected(index) {
var _local2 = __dataProvider.getItemID(index);
if (_local2 == undefined) {
return(false);
}
return(selected[_local2] != undefined);
}
function clearSelected(transition) {
var _local3 = 0;
for (var _local4 in selected) {
var _local2 = selected[_local4];
if (((_local2 != undefined) && (__vPosition <= _local2)) && (_local2 < (__vPosition + __rowCount))) {
rows[_local2 - __vPosition].drawRow(rows[_local2 - __vPosition].item, "normal", transition && ((_local3 % 3) == 0));
}
_local3++;
}
delete selected;
}
static var mixins = new mx.controls.listclasses.DataSelector();
static var mixinProps = ["setDataProvider", "getDataProvider", "addItem", "addItemAt", "removeAll", "removeItemAt", "replaceItemAt", "sortItemsBy", "sortItems", "getLength", "getItemAt", "modelChanged", "calcPreferredWidthFromData", "calcPreferredHeightFromData", "getValue", "getSelectedIndex", "getSelectedItem", "getSelectedIndices", "getSelectedItems", "selectItem", "isSelected", "clearSelected", "setSelectedIndex", "setSelectedIndices"];
}
Symbol 48 MovieClip [__Packages.mx.controls.ComboBase] Frame 0
class mx.controls.ComboBase extends mx.core.UIComponent
{
var getValue, tabEnabled, tabChildren, boundingBox_mc, downArrow_mc, createClassObject, onDownArrow, border_mc, __border, text_mc, focusTextField, __width, __height, getFocusManager, __get__height, height, _parent;
function ComboBase () {
super();
getValue = _getValue;
}
function init() {
super.init();
tabEnabled = !_editable;
tabChildren = _editable;
boundingBox_mc._visible = false;
boundingBox_mc._width = (boundingBox_mc._height = 0);
}
function createChildren() {
var _local3 = new Object();
_local3.styleName = this;
if (downArrow_mc == undefined) {
_local3.falseUpSkin = downArrowUpName;
_local3.falseOverSkin = downArrowOverName;
_local3.falseDownSkin = downArrowDownName;
_local3.falseDisabledSkin = downArrowDisabledName;
_local3.validateNow = true;
_local3.tabEnabled = false;
createClassObject(mx.controls.SimpleButton, "downArrow_mc", 19, _local3);
downArrow_mc.buttonDownHandler = onDownArrow;
downArrow_mc.useHandCursor = false;
downArrow_mc.onPressWas = downArrow_mc.onPress;
downArrow_mc.onPress = function () {
this.trackAsMenuWas = this.trackAsMenu;
this.trackAsMenu = true;
if (!this._editable) {
this._parent.text_mc.trackAsMenu = this.trackAsMenu;
}
this.onPressWas();
};
downArrow_mc.onDragOutWas = downArrow_mc.onDragOut;
downArrow_mc.onDragOut = function () {
this.trackAsMenuWas = this.trackAsMenu;
this.trackAsMenu = false;
if (!this._editable) {
this._parent.text_mc.trackAsMenu = this.trackAsMenu;
}
this.onDragOutWas();
};
downArrow_mc.onDragOverWas = downArrow_mc.onDragOver;
downArrow_mc.onDragOver = function () {
this.trackAsMenu = this.trackAsMenuWas;
if (!this._editable) {
this._parent.text_mc.trackAsMenu = this.trackAsMenu;
}
this.onDragOverWas();
};
}
if (border_mc == undefined) {
_local3.tabEnabled = false;
createClassObject(_global.styles.rectBorderClass, "border_mc", 17, _local3);
border_mc.move(0, 0);
__border = border_mc;
}
_local3.borderStyle = "none";
_local3.readOnly = !_editable;
_local3.tabEnabled = _editable;
if (text_mc == undefined) {
createClassObject(mx.controls.TextInput, "text_mc", 18, _local3);
text_mc.move(0, 0);
text_mc.addEnterEvents();
text_mc.enterHandler = _enterHandler;
text_mc.changeHandler = _changeHandler;
text_mc.oldOnSetFocus = text_mc.onSetFocus;
text_mc.onSetFocus = function () {
this.oldOnSetFocus();
this._parent.onSetFocus();
};
text_mc.__set__restrict("^\x1B");
text_mc.oldOnKillFocus = text_mc.onKillFocus;
text_mc.onKillFocus = function (n) {
this.oldOnKillFocus(n);
this._parent.onKillFocus(n);
};
text_mc.drawFocus = function (b) {
this._parent.drawFocus(b);
};
delete text_mc.borderStyle;
}
focusTextField = text_mc;
text_mc.owner = this;
layoutChildren(__width, __height);
}
function onKillFocus() {
super.onKillFocus();
Key.removeListener(text_mc);
getFocusManager().defaultPushButtonEnabled = true;
}
function onSetFocus() {
super.onSetFocus();
getFocusManager().defaultPushButtonEnabled = false;
Key.addListener(text_mc);
}
function setFocus() {
if (_editable) {
Selection.setFocus(text_mc);
} else {
Selection.setFocus(this);
}
}
function setSize(w, h, noEvent) {
super.setSize(w, ((h == undefined) ? (__get__height()) : (h)), noEvent);
}
function setEnabled(enabledFlag) {
super.setEnabled(enabledFlag);
downArrow_mc.enabled = enabledFlag;
text_mc.enabled = enabledFlag;
}
function setEditable(e) {
_editable = e;
if (wrapDownArrowButton == false) {
if (e) {
border_mc.borderStyle = "inset";
text_mc.borderStyle = "inset";
symbolName = "ComboBox";
invalidateStyle();
} else {
border_mc.borderStyle = "comboNonEdit";
text_mc.borderStyle = "dropDown";
symbolName = "DropDown";
invalidateStyle();
}
}
tabEnabled = !e;
tabChildren = e;
text_mc.tabEnabled = e;
if (e) {
delete text_mc.onPress;
delete text_mc.onRelease;
delete text_mc.onReleaseOutside;
delete text_mc.onDragOut;
delete text_mc.onDragOver;
delete text_mc.onRollOver;
delete text_mc.onRollOut;
} else {
text_mc.onPress = function () {
this._parent.downArrow_mc.onPress();
};
text_mc.onRelease = function () {
this._parent.downArrow_mc.onRelease();
};
text_mc.onReleaseOutside = function () {
this._parent.downArrow_mc.onReleaseOutside();
};
text_mc.onDragOut = function () {
this._parent.downArrow_mc.onDragOut();
};
text_mc.onDragOver = function () {
this._parent.downArrow_mc.onDragOver();
};
text_mc.onRollOver = function () {
this._parent.downArrow_mc.onRollOver();
};
text_mc.onRollOut = function () {
this._parent.downArrow_mc.onRollOut();
};
text_mc.useHandCursor = false;
}
}
function get editable() {
return(_editable);
}
function set editable(e) {
setEditable(e);
//return(editable);
}
function _getValue() {
return((_editable ? (text_mc.getText()) : (DSgetValue())));
}
function draw() {
downArrow_mc.draw();
border_mc.draw();
}
function size() {
layoutChildren(__width, __height);
}
function setTheme(t) {
downArrowUpName = (t + "downArrow") + "Up_mc";
downArrowDownName = (t + "downArrow") + "Down_mc";
downArrowDisabledName = (t + "downArrow") + "Disabled_mc";
}
function get text() {
return(text_mc.getText());
}
function set text(t) {
setText(t);
//return(text);
}
function setText(t) {
text_mc.setText(t);
}
function get textField() {
return(text_mc);
}
function get restrict() {
return(text_mc.__get__restrict());
}
function set restrict(w) {
text_mc.__set__restrict(w);
//return(restrict);
}
function invalidateStyle() {
downArrow_mc.invalidateStyle();
text_mc.invalidateStyle();
border_mc.invalidateStyle();
}
function layoutChildren(w, h) {
if (downArrow_mc == undefined) {
return(undefined);
}
if (wrapDownArrowButton) {
var _local2 = border_mc.__get__borderMetrics();
downArrow_mc._width = (downArrow_mc._height = (h - _local2.top) - _local2.bottom);
downArrow_mc.move((w - downArrow_mc._width) - _local2.right, _local2.top);
border_mc.setSize(w, h);
text_mc.setSize(w - downArrow_mc._width, h);
} else {
downArrow_mc.move(w - downArrow_mc._width, 0);
border_mc.setSize(w - downArrow_mc.width, h);
text_mc.setSize(w - downArrow_mc._width, h);
downArrow_mc._height = height;
}
}
function _changeHandler(obj) {
}
function _enterHandler(obj) {
var _local2 = _parent;
obj.target = _local2;
_local2.dispatchEvent(obj);
}
function get tabIndex() {
return(text_mc.__get__tabIndex());
}
function set tabIndex(w) {
text_mc.__set__tabIndex(w);
//return(tabIndex);
}
static var mixIt1 = mx.controls.listclasses.DataSelector.Initialize(mx.controls.ComboBase);
static var symbolName = "ComboBase";
static var symbolOwner = mx.controls.ComboBase;
static var version = "2.0.2.126";
var _editable = false;
var downArrowUpName = "ScrollDownArrowUp";
var downArrowDownName = "ScrollDownArrowDown";
var downArrowOverName = "ScrollDownArrowOver";
var downArrowDisabledName = "ScrollDownArrowDisabled";
var wrapDownArrowButton = true;
var DSgetValue = mx.controls.listclasses.DataSelector.prototype.getValue;
var multipleSelection = false;
}
Symbol 49 MovieClip [__Packages.mx.controls.ComboBox] Frame 0
class mx.controls.ComboBox extends mx.controls.ComboBase
{
var __set__editable, editable, __labels, data, __dropdownWidth, __width, _editable, selectedIndex, __dropdown, dataProvider, __labelFunction, createObject, border_mc, mask, text_mc, dispatchValueChangedEvent, getValue, length, selectedItem, _y, isPressed, owner, __set__visible, height, localToGlobal, __selectedIndexOnDropdown, __initialSelectedIndexOnDropdown, __get__height, getStyle, _parent, width, __dataProvider, selected, dispatchEvent;
function ComboBox () {
super();
}
function init() {
super.init();
}
function createChildren() {
super.createChildren();
__set__editable(editable);
if (__labels.length > 0) {
var _local6 = new Array();
var _local3 = 0;
while (_local3 < labels.length) {
_local6.addItem({label:labels[_local3], data:data[_local3]});
_local3++;
}
setDataProvider(_local6);
}
dropdownWidth = (((typeof(__dropdownWidth) == "number") ? (__dropdownWidth) : (__width)));
if (!_editable) {
selectedIndex = 0;
}
initializing = false;
}
function onKillFocus(n) {
if (_showingDropdown && (n != null)) {
displayDropdown(false);
}
super.onKillFocus();
}
function getDropdown() {
if (initializing) {
return(undefined);
}
if (!hasDropdown()) {
var _local3 = new Object();
_local3.styleName = this;
if (dropdownBorderStyle != undefined) {
_local3.borderStyle = dropdownBorderStyle;
}
_local3._visible = false;
__dropdown = mx.managers.PopUpManager.createPopUp(this, mx.controls.List, false, _local3, true);
__dropdown.scroller.mask.removeMovieClip();
if (dataProvider == undefined) {
dataProvider = new Array();
}
__dropdown.setDataProvider(dataProvider);
__dropdown.selectMultiple = false;
__dropdown.rowCount = __rowCount;
__dropdown.selectedIndex = selectedIndex;
__dropdown.vScrollPolicy = "auto";
__dropdown.labelField = __labelField;
__dropdown.labelFunction = __labelFunction;
__dropdown.owner = this;
__dropdown.changeHandler = _changeHandler;
__dropdown.scrollHandler = _scrollHandler;
__dropdown.itemRollOverHandler = _itemRollOverHandler;
__dropdown.itemRollOutHandler = _itemRollOutHandler;
__dropdown.resizeHandler = _resizeHandler;
__dropdown.mouseDownOutsideHandler = function (eventObj) {
var _local3 = this.owner;
var _local4 = new Object();
_local4.x = _local3._root._xmouse;
_local4.y = _local3._root._ymouse;
_local3._root.localToGlobal(_local4);
if (_local3.hitTest(_local4.x, _local4.y, false)) {
} else if ((!this.wrapDownArrowButton) && (this.owner.downArrow_mc.hitTest(_root._xmouse, _root._ymouse, false))) {
} else {
_local3.displayDropdown(false);
}
};
__dropdown.onTweenUpdate = function (v) {
this._y = v;
};
__dropdown.setSize(__dropdownWidth, __dropdown.height);
createObject("BoundingBox", "mask", 20);
mask._y = border_mc.height;
mask._width = __dropdownWidth;
mask._height = __dropdown.height;
mask._visible = false;
__dropdown.setMask(mask);
}
return(__dropdown);
}
function setSize(w, h, noEvent) {
super.setSize(w, h, noEvent);
__dropdownWidth = w;
__dropdown.rowHeight = h;
__dropdown.setSize(__dropdownWidth, __dropdown.height);
}
function setEditable(e) {
super.setEditable(e);
if (e) {
text_mc.setText("");
} else {
text_mc.setText(selectedLabel);
}
}
function get labels() {
return(__labels);
}
function set labels(lbls) {
__labels = lbls;
setDataProvider(lbls);
//return(labels);
}
function getLabelField() {
return(__labelField);
}
function get labelField() {
return(getLabelField());
}
function setLabelField(s) {
__dropdown.labelField = (__labelField = s);
text_mc.setText(selectedLabel);
}
function set labelField(s) {
setLabelField(s);
//return(labelField);
}
function getLabelFunction() {
return(__labelFunction);
}
function get labelFunction() {
return(getLabelFunction());
}
function set labelFunction(f) {
__dropdown.labelFunction = (__labelFunction = f);
text_mc.setText(selectedLabel);
//return(labelFunction);
}
function setSelectedItem(v) {
super.setSelectedItem(v);
__dropdown.selectedItem = v;
text_mc.setText(selectedLabel);
}
function setSelectedIndex(v) {
super.setSelectedIndex(v);
__dropdown.selectedIndex = v;
if (v != undefined) {
text_mc.setText(selectedLabel);
}
dispatchValueChangedEvent(getValue());
}
function setRowCount(count) {
if (isNaN(count)) {
return(undefined);
}
__rowCount = count;
__dropdown.setRowCount(count);
}
function get rowCount() {
return(Math.max(1, Math.min(length, __rowCount)));
}
function set rowCount(v) {
setRowCount(v);
//return(rowCount);
}
function setDropdownWidth(w) {
__dropdownWidth = w;
__dropdown.setSize(w, __dropdown.height);
}
function get dropdownWidth() {
return(__dropdownWidth);
}
function set dropdownWidth(v) {
setDropdownWidth(v);
//return(dropdownWidth);
}
function get dropdown() {
return(getDropdown());
}
function setDataProvider(dp) {
super.setDataProvider(dp);
__dropdown.setDataProvider(dp);
if (!_editable) {
selectedIndex = 0;
}
}
function open() {
displayDropdown(true);
}
function close() {
displayDropdown(false);
}
function get selectedLabel() {
var _local2 = selectedItem;
if (_local2 == undefined) {
return("");
}
if (labelFunction != undefined) {
return(labelFunction(_local2));
}
if (typeof(_local2) != "object") {
return(_local2);
}
if (_local2[labelField] != undefined) {
return(_local2[labelField]);
}
if (_local2.label != undefined) {
return(_local2.label);
}
var _local3 = " ";
for (var _local4 in _local2) {
if (_local4 != "__ID__") {
_local3 = (_local2[_local4] + ", ") + _local3;
}
}
_local3 = _local3.substring(0, _local3.length - 3);
return(_local3);
}
function hasDropdown() {
return((__dropdown != undefined) && (__dropdown.valueOf() != undefined));
}
function tweenEndShow(value) {
_y = value;
isPressed = true;
owner.dispatchEvent({type:"open", target:owner});
}
function tweenEndHide(value) {
_y = value;
__set__visible(false);
owner.dispatchEvent({type:"close", target:owner});
}
function displayDropdown(show) {
if (show == _showingDropdown) {
return(undefined);
}
var _local3 = new Object();
_local3.x = 0;
_local3.y = height;
localToGlobal(_local3);
if (show) {
__selectedIndexOnDropdown = selectedIndex;
__initialSelectedIndexOnDropdown = selectedIndex;
getDropdown();
var _local2 = __dropdown;
_local2.isPressed = true;
_local2.rowCount = rowCount;
_local2.visible = show;
_local2._parent.globalToLocal(_local3);
_local2.onTweenEnd = tweenEndShow;
var _local5;
var _local8;
if ((_local3.y + _local2.height) > Stage.height) {
_local5 = _local3.y - __get__height();
_local8 = _local5 - _local2.height;
mask._y = -_local2.height;
} else {
_local5 = _local3.y - _local2.height;
_local8 = _local3.y;
mask._y = border_mc.height;
}
var _local6 = _local2.selectedIndex;
if (_local6 == undefined) {
_local6 = 0;
}
var _local4 = _local2.vPosition;
_local4 = _local6 - 1;
_local4 = Math.min(Math.max(_local4, 0), _local2.length - _local2.rowCount);
_local2.vPosition = _local4;
_local2.move(_local3.x, _local5);
_local2.tween = new mx.effects.Tween(__dropdown, _local5, _local8, getStyle("openDuration"));
} else {
__dropdown._parent.globalToLocal(_local3);
delete __dropdown.dragScrolling;
__dropdown.onTweenEnd = tweenEndHide;
__dropdown.tween = new mx.effects.Tween(__dropdown, __dropdown._y, _local3.y - __dropdown.height, getStyle("openDuration"));
if (__initialSelectedIndexOnDropdown != selectedIndex) {
dispatchChangeEvent(undefined, __initialSelectedIndexOnDropdown, selectedIndex);
}
}
var _local9 = getStyle("openEasing");
if (_local9 != undefined) {
__dropdown.tween.easingEquation = _local9;
}
_showingDropdown = show;
}
function onDownArrow() {
_parent.displayDropdown(!_parent._showingDropdown);
}
function keyDown(e) {
if (e.ctrlKey && (e.code == 40)) {
displayDropdown(true);
} else if (e.ctrlKey && (e.code == 38)) {
displayDropdown(false);
dispatchChangeEvent(undefined, __selectedIndexOnDropdown, selectedIndex);
} else if (e.code == 27) {
displayDropdown(false);
} else if (e.code == 13) {
if (_showingDropdown) {
selectedIndex = __dropdown.selectedIndex;
displayDropdown(false);
}
} else if (((((!_editable) || (e.code == 38)) || (e.code == 40)) || (e.code == 33)) || (e.code == 34)) {
selectedIndex = 0 + selectedIndex;
bInKeyDown = true;
var _local3 = dropdown;
_local3.keyDown(e);
bInKeyDown = false;
selectedIndex = __dropdown.selectedIndex;
}
}
function invalidateStyle(styleProp) {
__dropdown.invalidateStyle(styleProp);
super.invalidateStyle(styleProp);
}
function changeTextStyleInChildren(styleProp) {
if (dropdown.stylecache != undefined) {
delete dropdown.stylecache[styleProp];
delete dropdown.stylecache.tf;
}
__dropdown.changeTextStyleInChildren(styleProp);
super.changeTextStyleInChildren(styleProp);
}
function changeColorStyleInChildren(sheetName, styleProp, newValue) {
if (dropdown.stylecache != undefined) {
delete dropdown.stylecache[styleProp];
delete dropdown.stylecache.tf;
}
__dropdown.changeColorStyleInChildren(sheetName, styleProp, newValue);
super.changeColorStyleInChildren(sheetName, styleProp, newValue);
}
function notifyStyleChangeInChildren(sheetName, styleProp, newValue) {
if (dropdown.stylecache != undefined) {
delete dropdown.stylecache[styleProp];
delete dropdown.stylecache.tf;
}
__dropdown.notifyStyleChangeInChildren(sheetName, styleProp, newValue);
super.notifyStyleChangeInChildren(sheetName, styleProp, newValue);
}
function onUnload() {
__dropdown.removeMovieClip();
}
function _resizeHandler() {
var _local2 = owner;
_local2.mask._width = width;
_local2.mask._height = height;
}
function _changeHandler(obj) {
var _local2 = owner;
var _local3 = _local2.selectedIndex;
obj.target = _local2;
if (this == owner.text_mc) {
_local2.selectedIndex = undefined;
_local2.dispatchChangeEvent(obj, -1, -2);
} else {
_local2.selectedIndex = selectedIndex;
if (!_local2._showingDropdown) {
_local2.dispatchChangeEvent(obj, _local3, _local2.selectedIndex);
} else if (!_local2.bInKeyDown) {
_local2.displayDropdown(false);
}
}
}
function _scrollHandler(obj) {
var _local2 = owner;
obj.target = _local2;
_local2.dispatchEvent(obj);
}
function _itemRollOverHandler(obj) {
var _local2 = owner;
obj.target = _local2;
_local2.dispatchEvent(obj);
}
function _itemRollOutHandler(obj) {
var _local2 = owner;
obj.target = _local2;
_local2.dispatchEvent(obj);
}
function modelChanged(eventObj) {
super.modelChanged(eventObj);
if (0 == __dataProvider.length) {
text_mc.setText("");
delete selected;
} else if ((__dataProvider.length == ((eventObj.lastItem - eventObj.firstItem) + 1)) && (eventObj.eventName == "addItems")) {
selectedIndex = 0;
}
}
function dispatchChangeEvent(obj, prevValue, newValue) {
var _local2;
if (prevValue != newValue) {
if ((obj != undefined) && (obj.type == "change")) {
_local2 = obj;
} else {
_local2 = {type:"change"};
}
dispatchEvent(_local2);
}
}
static var symbolName = "ComboBox";
static var symbolOwner = mx.controls.ComboBox;
static var version = "2.0.2.126";
var clipParameters = {labels:1, data:1, editable:1, rowCount:1, dropdownWidth:1};
static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.controls.ComboBox.prototype.clipParameters, mx.controls.ComboBase.prototype.clipParameters);
var className = "ComboBox";
var _showingDropdown = false;
var __rowCount = 5;
var dropdownBorderStyle = undefined;
var initializing = true;
var __labelField = "label";
var bInKeyDown = false;
}
Symbol 162 MovieClip [__Packages.mx.skins.SkinElement] Frame 0
class mx.skins.SkinElement extends MovieClip
{
var _visible, _x, _y, _width, _height;
function SkinElement () {
super();
}
static function registerElement(name, className) {
Object.registerClass(name, ((className == undefined) ? (mx.skins.SkinElement) : (className)));
_global.skinRegistry[name] = true;
}
function __set__visible(visible) {
_visible = visible;
}
function move(x, y) {
_x = x;
_y = y;
}
function setSize(w, h) {
_width = w;
_height = h;
}
}
Symbol 163 MovieClip [__Packages.mx.styles.CSSTextStyles] Frame 0
class mx.styles.CSSTextStyles
{
function CSSTextStyles () {
}
static function addTextStyles(o, bColor) {
o.addProperty("textAlign", function () {
return(this._tf.align);
}, function (x) {
if (this._tf == undefined) {
this._tf = new TextFormat();
}
this._tf.align = x;
});
o.addProperty("fontWeight", function () {
return(((this._tf.bold != undefined) ? ((this._tf.bold ? "bold" : "none")) : undefined));
}, function (x) {
if (this._tf == undefined) {
this._tf = new TextFormat();
}
this._tf.bold = x == "bold";
});
if (bColor) {
o.addProperty("color", function () {
return(this._tf.color);
}, function (x) {
if (this._tf == undefined) {
this._tf = new TextFormat();
}
this._tf.color = x;
});
}
o.addProperty("fontFamily", function () {
return(this._tf.font);
}, function (x) {
if (this._tf == undefined) {
this._tf = new TextFormat();
}
this._tf.font = x;
});
o.addProperty("textIndent", function () {
return(this._tf.indent);
}, function (x) {
if (this._tf == undefined) {
this._tf = new TextFormat();
}
this._tf.indent = x;
});
o.addProperty("fontStyle", function () {
return(((this._tf.italic != undefined) ? ((this._tf.italic ? "italic" : "none")) : undefined));
}, function (x) {
if (this._tf == undefined) {
this._tf = new TextFormat();
}
this._tf.italic = x == "italic";
});
o.addProperty("marginLeft", function () {
return(this._tf.leftMargin);
}, function (x) {
if (this._tf == undefined) {
this._tf = new TextFormat();
}
this._tf.leftMargin = x;
});
o.addProperty("marginRight", function () {
return(this._tf.rightMargin);
}, function (x) {
if (this._tf == undefined) {
this._tf = new TextFormat();
}
this._tf.rightMargin = x;
});
o.addProperty("fontSize", function () {
return(this._tf.size);
}, function (x) {
if (this._tf == undefined) {
this._tf = new TextFormat();
}
this._tf.size = x;
});
o.addProperty("textDecoration", function () {
return(((this._tf.underline != undefined) ? ((this._tf.underline ? "underline" : "none")) : undefined));
}, function (x) {
if (this._tf == undefined) {
this._tf = new TextFormat();
}
this._tf.underline = x == "underline";
});
o.addProperty("embedFonts", function () {
return(this._tf.embedFonts);
}, function (x) {
if (this._tf == undefined) {
this._tf = new TextFormat();
}
this._tf.embedFonts = x;
});
}
}
Symbol 164 MovieClip [__Packages.mx.styles.StyleManager] Frame 0
class mx.styles.StyleManager
{
function StyleManager () {
}
static function registerInheritingStyle(styleName) {
inheritingStyles[styleName] = true;
}
static function isInheritingStyle(styleName) {
return(inheritingStyles[styleName] == true);
}
static function registerColorStyle(styleName) {
colorStyles[styleName] = true;
}
static function isColorStyle(styleName) {
return(colorStyles[styleName] == true);
}
static function registerColorName(colorName, colorValue) {
colorNames[colorName] = colorValue;
}
static function isColorName(colorName) {
return(colorNames[colorName] != undefined);
}
static function getColorName(colorName) {
return(colorNames[colorName]);
}
static var inheritingStyles = {color:true, direction:true, fontFamily:true, fontSize:true, fontStyle:true, fontWeight:true, textAlign:true, textIndent:true};
static var colorStyles = {barColor:true, trackColor:true, borderColor:true, buttonColor:true, color:true, dateHeaderColor:true, dateRollOverColor:true, disabledColor:true, fillColor:true, highlightColor:true, scrollTrackColor:true, selectedDateColor:true, shadowColor:true, strokeColor:true, symbolBackgroundColor:true, symbolBackgroundDisabledColor:true, symbolBackgroundPressedColor:true, symbolColor:true, symbolDisabledColor:true, themeColor:true, todayIndicatorColor:true, shadowCapColor:true, borderCapColor:true, focusColor:true};
static var colorNames = {black:0, white:16777215, red:16711680, green:65280, blue:255, magenta:16711935, yellow:16776960, cyan:65535, haloGreen:8453965, haloBlue:2881013, haloOrange:16761344};
static var TextFormatStyleProps = {font:true, size:true, color:true, leftMargin:false, rightMargin:false, italic:true, bold:true, align:true, indent:true, underline:false, embedFonts:false};
static var TextStyleMap = {textAlign:true, fontWeight:true, color:true, fontFamily:true, textIndent:true, fontStyle:true, lineHeight:true, marginLeft:true, marginRight:true, fontSize:true, textDecoration:true, embedFonts:true};
}
Symbol 165 MovieClip [__Packages.mx.styles.CSSStyleDeclaration] Frame 0
class mx.styles.CSSStyleDeclaration
{
var _tf;
function CSSStyleDeclaration () {
}
function __getTextFormat(tf, bAll) {
var _local5 = false;
if (_tf != undefined) {
var _local2;
for (_local2 in mx.styles.StyleManager.TextFormatStyleProps) {
if (bAll || (mx.styles.StyleManager.TextFormatStyleProps[_local2])) {
if (tf[_local2] == undefined) {
var _local3 = _tf[_local2];
if (_local3 != undefined) {
tf[_local2] = _local3;
} else {
_local5 = true;
}
}
}
}
} else {
_local5 = true;
}
return(_local5);
}
function getStyle(styleProp) {
var _local2 = this[styleProp];
var _local3 = mx.styles.StyleManager.getColorName(_local2);
return(((_local3 == undefined) ? (_local2) : (_local3)));
}
static function classConstruct() {
mx.styles.CSSTextStyles.addTextStyles(mx.styles.CSSStyleDeclaration.prototype, true);
return(true);
}
static var classConstructed = classConstruct();
static var CSSTextStylesDependency = mx.styles.CSSTextStyles;
}
Symbol 166 MovieClip [__Packages.mx.skins.Border] Frame 0
class mx.skins.Border extends mx.core.UIObject
{
function Border () {
super();
}
function init(Void) {
super.init();
}
static var symbolName = "Border";
static var symbolOwner = mx.skins.Border;
var className = "Border";
var tagBorder = 0;
var idNames = new Array("border_mc");
}
Symbol 167 MovieClip [__Packages.mx.skins.RectBorder] Frame 0
class mx.skins.RectBorder extends mx.skins.Border
{
var __width, __height, offset, __borderMetrics;
function RectBorder () {
super();
}
function get width() {
return(__width);
}
function get height() {
return(__height);
}
function init(Void) {
super.init();
}
function draw(Void) {
size();
}
function getBorderMetrics(Void) {
var _local2 = offset;
if (__borderMetrics == undefined) {
__borderMetrics = {left:_local2, top:_local2, right:_local2, bottom:_local2};
} else {
__borderMetrics.left = _local2;
__borderMetrics.top = _local2;
__borderMetrics.right = _local2;
__borderMetrics.bottom = _local2;
}
return(__borderMetrics);
}
function get borderMetrics() {
return(getBorderMetrics());
}
function drawBorder(Void) {
}
function size(Void) {
drawBorder();
}
function setColor(Void) {
drawBorder();
}
static var symbolName = "RectBorder";
static var symbolOwner = mx.skins.RectBorder;
static var version = "2.0.2.126";
var className = "RectBorder";
var borderStyleName = "borderStyle";
var borderColorName = "borderColor";
var shadowColorName = "shadowColor";
var highlightColorName = "highlightColor";
var buttonColorName = "buttonColor";
var backgroundColorName = "backgroundColor";
}
Symbol 168 MovieClip [__Packages.mx.controls.TextInput] Frame 0
class mx.controls.TextInput extends mx.core.UIComponent
{
var owner, enterListener, label, tabChildren, tabEnabled, focusTextField, _color, _parent, border_mc, createClassObject, dispatchValueChangedEvent, __get__width, __get__height, tfx, tfy, tfw, tfh, getStyle, bind, updateModel, _getTextFormat, enabled;
function TextInput () {
super();
}
function addEventListener(event, handler) {
if (event == "enter") {
addEnterEvents();
}
super.addEventListener(event, handler);
}
function enterOnKeyDown() {
if (Key.getAscii() == 13) {
owner.dispatchEvent({type:"enter"});
}
}
function addEnterEvents() {
if (enterListener == undefined) {
enterListener = new Object();
enterListener.owner = this;
enterListener.onKeyDown = enterOnKeyDown;
}
}
function init(Void) {
super.init();
label.styleName = this;
tabChildren = true;
tabEnabled = false;
focusTextField = label;
_color = mx.core.UIObject.textColorList;
label.onSetFocus = function () {
this._parent.onSetFocus();
};
label.onKillFocus = function (n) {
this._parent.onKillFocus(n);
};
label.drawFocus = function (b) {
this._parent.drawFocus(b);
};
label.onChanged = onLabelChanged;
}
function setFocus() {
Selection.setFocus(label);
}
function onLabelChanged(Void) {
_parent.dispatchEvent({type:"change"});
_parent.dispatchValueChangedEvent(text);
}
function createChildren(Void) {
super.createChildren();
if (border_mc == undefined) {
createClassObject(_global.styles.rectBorderClass, "border_mc", 0, {styleName:this});
}
border_mc.swapDepths(label);
label.autoSize = "none";
}
function get html() {
return(getHtml());
}
function set html(value) {
setHtml(value);
//return(html);
}
function getHtml() {
return(label.html);
}
function setHtml(value) {
if (value != label.html) {
label.html = value;
}
}
function get text() {
return(getText());
}
function set text(t) {
setText(t);
//return(text);
}
function getText() {
if (initializing) {
return(initText);
}
if (label.html == true) {
return(label.htmlText);
}
return(label.text);
}
function setText(t) {
if (initializing) {
initText = t;
} else {
var _local2 = label;
if (_local2.html == true) {
_local2.htmlText = t;
} else {
_local2.text = t;
}
}
dispatchValueChangedEvent(t);
}
function size(Void) {
border_mc.setSize(__get__width(), __get__height());
var _local2 = border_mc.__get__borderMetrics();
var _local6 = _local2.left + _local2.right;
var _local3 = _local2.top + _local2.bottom;
var _local5 = _local2.left;
var _local4 = _local2.top;
tfx = _local5;
tfy = _local4;
tfw = __get__width() - _local6;
tfh = __get__height() - _local3;
label.move(tfx, tfy);
label.setSize(tfw, tfh + 1);
}
function setEnabled(enable) {
label.type = (((__editable == true) || (enable == false)) ? "input" : "dynamic");
label.selectable = enable;
var _local2 = getStyle((enable ? "color" : "disabledColor"));
if (_local2 == undefined) {
_local2 = (enable ? 0 : 8947848);
}
setColor(_local2);
}
function setColor(col) {
label.textColor = col;
}
function onKillFocus(newFocus) {
if (enterListener != undefined) {
Key.removeListener(enterListener);
}
if (bind != undefined) {
updateModel(text);
}
super.onKillFocus(newFocus);
}
function onSetFocus(oldFocus) {
var f = Selection.getFocus();
var o = eval (f);
if (o != label) {
Selection.setFocus(label);
return(undefined);
}
if (enterListener != undefined) {
Key.addListener(enterListener);
}
super.onSetFocus(oldFocus);
}
function draw(Void) {
var _local2 = label;
var _local4 = getText();
if (initializing) {
initializing = false;
delete initText;
}
var _local3 = _getTextFormat();
_local2.embedFonts = _local3.embedFonts == true;
if (_local3 != undefined) {
_local2.setTextFormat(_local3);
_local2.setNewTextFormat(_local3);
}
_local2.multiline = false;
_local2.wordWrap = false;
if (_local2.html == true) {
_local2.setTextFormat(_local3);
_local2.htmlText = _local4;
} else {
_local2.text = _local4;
}
_local2.type = (((__editable == true) || (enabled == false)) ? "input" : "dynamic");
size();
}
function setEditable(s) {
__editable = s;
label.type = (s ? "input" : "dynamic");
}
function get maxChars() {
return(label.maxChars);
}
function set maxChars(w) {
label.maxChars = w;
//return(maxChars);
}
function get length() {
return(label.length);
}
function get restrict() {
return(label.restrict);
}
function set restrict(w) {
label.restrict = ((w == "") ? null : (w));
//return(restrict);
}
function get hPosition() {
return(label.hscroll);
}
function set hPosition(w) {
label.hscroll = w;
//return(hPosition);
}
function get maxHPosition() {
return(label.maxhscroll);
}
function get editable() {
return(__editable);
}
function set editable(w) {
setEditable(w);
//return(editable);
}
function get password() {
return(label.password);
}
function set password(w) {
label.password = w;
//return(password);
}
function get tabIndex() {
return(label.tabIndex);
}
function set tabIndex(w) {
label.tabIndex = w;
//return(tabIndex);
}
function set _accProps(val) {
label._accProps = val;
//return(_accProps);
}
function get _accProps() {
return(label._accProps);
}
static var symbolName = "TextInput";
static var symbolOwner = mx.controls.TextInput;
static var version = "2.0.2.126";
var className = "TextInput";
var initializing = true;
var clipParameters = {text:1, editable:1, password:1, maxChars:1, restrict:1};
static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.controls.TextInput.prototype.clipParameters, mx.core.UIComponent.prototype.clipParameters);
var _maxWidth = mx.core.UIComponent.kStretch;
var __editable = true;
var initText = "";
}
Symbol 169 MovieClip [__Packages.mx.controls.SimpleButton] Frame 0
class mx.controls.SimpleButton extends mx.core.UIComponent
{
static var emphasizedStyleDeclaration;
var preset, boundingBox_mc, useHandCursor, skinName, linkLength, iconName, destroyObject, __width, _width, __height, _height, __emphaticStyleName, styleName, enabled, invalidate, pressFocus, dispatchEvent, autoRepeat, interval, getStyle, releaseFocus, createLabel, invalidateStyle;
function SimpleButton () {
super();
}
function init(Void) {
super.init();
if (preset == undefined) {
boundingBox_mc._visible = false;
boundingBox_mc._width = (boundingBox_mc._height = 0);
}
useHandCursor = false;
}
function createChildren(Void) {
if (preset != undefined) {
var _local2 = this[idNames[preset]];
this[refNames[preset]] = _local2;
skinName = _local2;
if (falseOverSkin.length == 0) {
rolloverSkin = fus;
}
if (falseOverIcon.length == 0) {
rolloverIcon = fui;
}
initializing = false;
} else if (__state == true) {
setStateVar(true);
} else {
if (falseOverSkin.length == 0) {
rolloverSkin = fus;
}
if (falseOverIcon.length == 0) {
rolloverIcon = fui;
}
}
}
function setIcon(tag, linkageName) {
return(setSkin(tag + 8, linkageName));
}
function changeIcon(tag, linkageName) {
linkLength = linkageName.length;
var _local2 = stateNames[tag] + "Icon";
this[_local2] = linkageName;
this[idNames[tag + 8]] = _local2;
setStateVar(getState());
}
function changeSkin(tag, linkageName) {
var _local2 = stateNames[tag] + "Skin";
this[_local2] = linkageName;
this[idNames[tag]] = _local2;
setStateVar(getState());
}
function viewIcon(varName) {
var _local4 = varName + "Icon";
var _local3 = this[_local4];
if (typeof(_local3) == "string") {
var _local5 = _local3;
if (__emphasized) {
if (this[_local3 + "Emphasized"].length > 0) {
_local3 = _local3 + "Emphasized";
}
}
if (this[_local3].length == 0) {
return(undefined);
}
_local3 = setIcon(tagMap[_local5], this[_local3]);
if ((_local3 == undefined) && (_global.isLivePreview)) {
_local3 = setIcon(0, "ButtonIcon");
}
this[_local4] = _local3;
}
iconName._visible = false;
iconName = _local3;
iconName._visible = true;
}
function removeIcons() {
var _local3 = 0;
while (_local3 < 2) {
var _local2 = 8;
while (_local2 < 16) {
destroyObject(idNames[_local2]);
this[stateNames[_local2 - 8] + "Icon"] = "";
_local2++;
}
_local3++;
}
refresh();
}
function setSkin(tag, linkageName, initobj) {
var _local3 = super.setSkin(tag, linkageName, ((initobj != undefined) ? (initobj) : ({styleName:this})));
calcSize(tag, _local3);
return(_local3);
}
function calcSize(Void) {
__width = _width;
__height = _height;
}
function viewSkin(varName, initObj) {
var _local3 = varName + "Skin";
var _local2 = this[_local3];
if (typeof(_local2) == "string") {
var _local4 = _local2;
if (__emphasized) {
if (this[_local2 + "Emphasized"].length > 0) {
_local2 = _local2 + "Emphasized";
}
}
if (this[_local2].length == 0) {
return(undefined);
}
_local2 = setSkin(tagMap[_local4], this[_local2], ((initObj != undefined) ? (initObj) : ({styleName:this})));
this[_local3] = _local2;
}
skinName._visible = false;
skinName = _local2;
skinName._visible = true;
}
function showEmphasized(e) {
if (e && (!__emphatic)) {
if (emphasizedStyleDeclaration != undefined) {
__emphaticStyleName = styleName;
styleName = emphasizedStyleDeclaration;
}
__emphatic = true;
} else {
if (__emphatic) {
styleName = __emphaticStyleName;
}
__emphatic = false;
}
}
function refresh(Void) {
var _local2 = getState();
if (enabled == false) {
viewIcon("disabled");
viewSkin("disabled");
} else {
viewSkin(phase);
viewIcon(phase);
}
setView(phase == "down");
iconName.enabled = enabled;
}
function setView(offset) {
if (iconName == undefined) {
return(undefined);
}
var _local2 = (offset ? (btnOffset) : 0);
iconName._x = ((__width - iconName._width) / 2) + _local2;
iconName._y = ((__height - iconName._height) / 2) + _local2;
}
function setStateVar(state) {
if (state) {
if (trueOverSkin.length == 0) {
rolloverSkin = tus;
} else {
rolloverSkin = trs;
}
if (trueOverIcon.length == 0) {
rolloverIcon = tui;
} else {
rolloverIcon = tri;
}
upSkin = tus;
downSkin = tds;
disabledSkin = dts;
upIcon = tui;
downIcon = tdi;
disabledIcon = dti;
} else {
if (falseOverSkin.length == 0) {
rolloverSkin = fus;
} else {
rolloverSkin = frs;
}
if (falseOverIcon.length == 0) {
rolloverIcon = fui;
} else {
rolloverIcon = fri;
}
upSkin = fus;
downSkin = fds;
disabledSkin = dfs;
upIcon = fui;
downIcon = fdi;
disabledIcon = dfi;
}
__state = state;
}
function setState(state) {
if (state != __state) {
setStateVar(state);
invalidate();
}
}
function size(Void) {
refresh();
}
function draw(Void) {
if (initializing) {
initializing = false;
skinName.visible = true;
iconName.visible = true;
}
size();
}
function getState(Void) {
return(__state);
}
function setToggle(val) {
__toggle = val;
if (__toggle == false) {
setState(false);
}
}
function getToggle(Void) {
return(__toggle);
}
function set toggle(val) {
setToggle(val);
//return(toggle);
}
function get toggle() {
return(getToggle());
}
function set value(val) {
setSelected(val);
//return(value);
}
function get value() {
return(getSelected());
}
function set selected(val) {
setSelected(val);
//return(selected);
}
function get selected() {
return(getSelected());
}
function setSelected(val) {
if (__toggle) {
setState(val);
} else {
setState((initializing ? (val) : (__state)));
}
}
function getSelected() {
return(__state);
}
function setEnabled(val) {
if (enabled != val) {
super.setEnabled(val);
invalidate();
}
}
function onPress(Void) {
pressFocus();
phase = "down";
refresh();
dispatchEvent({type:"buttonDown"});
if (autoRepeat) {
interval = setInterval(this, "onPressDelay", getStyle("repeatDelay"));
}
}
function onPressDelay(Void) {
dispatchEvent({type:"buttonDown"});
if (autoRepeat) {
clearInterval(interval);
interval = setInterval(this, "onPressRepeat", getStyle("repeatInterval"));
}
}
function onPressRepeat(Void) {
dispatchEvent({type:"buttonDown"});
updateAfterEvent();
}
function onRelease(Void) {
releaseFocus();
phase = "rollover";
if (interval != undefined) {
clearInterval(interval);
delete interval;
}
if (getToggle()) {
setState(!getState());
} else {
refresh();
}
dispatchEvent({type:"click"});
}
function onDragOut(Void) {
phase = "up";
refresh();
dispatchEvent({type:"buttonDragOut"});
}
function onDragOver(Void) {
if (phase != "up") {
onPress();
return(undefined);
}
phase = "down";
refresh();
}
function onReleaseOutside(Void) {
releaseFocus();
phase = "up";
if (interval != undefined) {
clearInterval(interval);
delete interval;
}
}
function onRollOver(Void) {
phase = "rollover";
refresh();
}
function onRollOut(Void) {
phase = "up";
refresh();
}
function getLabel(Void) {
return(fui.text);
}
function setLabel(val) {
if (typeof(fui) == "string") {
createLabel("fui", 8, val);
fui.styleName = this;
} else {
fui.text = val;
}
var _local4 = fui._getTextFormat();
var _local2 = _local4.getTextExtent2(val);
fui._width = _local2.width + 5;
fui._height = _local2.height + 5;
iconName = fui;
setView(__state);
}
function get emphasized() {
return(__emphasized);
}
function set emphasized(val) {
__emphasized = val;
var _local2 = 0;
while (_local2 < 8) {
this[idNames[_local2]] = stateNames[_local2] + "Skin";
if (typeof(this[idNames[_local2 + 8]]) == "movieclip") {
this[idNames[_local2 + 8]] = stateNames[_local2] + "Icon";
}
_local2++;
}
showEmphasized(__emphasized);
setStateVar(__state);
invalidateStyle();
//return(emphasized);
}
function keyDown(e) {
if (e.code == 32) {
onPress();
}
}
function keyUp(e) {
if (e.code == 32) {
onRelease();
}
}
function onKillFocus(newFocus) {
super.onKillFocus();
if (phase != "up") {
phase = "up";
refresh();
}
}
static var symbolName = "SimpleButton";
static var symbolOwner = mx.controls.SimpleButton;
static var version = "2.0.2.126";
var className = "SimpleButton";
var style3dInset = 4;
var btnOffset = 1;
var __toggle = false;
var __state = false;
var __emphasized = false;
var __emphatic = false;
static var falseUp = 0;
static var falseDown = 1;
static var falseOver = 2;
static var falseDisabled = 3;
static var trueUp = 4;
static var trueDown = 5;
static var trueOver = 6;
static var trueDisabled = 7;
var falseUpSkin = "SimpleButtonUp";
var falseDownSkin = "SimpleButtonIn";
var falseOverSkin = "";
var falseDisabledSkin = "SimpleButtonUp";
var trueUpSkin = "SimpleButtonIn";
var trueDownSkin = "";
var trueOverSkin = "";
var trueDisabledSkin = "SimpleButtonIn";
var falseUpIcon = "";
var falseDownIcon = "";
var falseOverIcon = "";
var falseDisabledIcon = "";
var trueUpIcon = "";
var trueDownIcon = "";
var trueOverIcon = "";
var trueDisabledIcon = "";
var phase = "up";
var fui = "falseUpIcon";
var fus = "falseUpSkin";
var fdi = "falseDownIcon";
var fds = "falseDownSkin";
var frs = "falseOverSkin";
var fri = "falseOverIcon";
var dfi = "falseDisabledIcon";
var dfs = "falseDisabledSkin";
var tui = "trueUpIcon";
var tus = "trueUpSkin";
var tdi = "trueDownIcon";
var tds = "trueDownSkin";
var trs = "trueOverSkin";
var tri = "trueOverIcon";
var dts = "trueDisabledSkin";
var dti = "trueDisabledIcon";
var rolloverSkin = mx.controls.SimpleButton.prototype.frs;
var rolloverIcon = mx.controls.SimpleButton.prototype.fri;
var upSkin = mx.controls.SimpleButton.prototype.fus;
var downSkin = mx.controls.SimpleButton.prototype.fds;
var disabledSkin = mx.controls.SimpleButton.prototype.dfs;
var upIcon = mx.controls.SimpleButton.prototype.fui;
var downIcon = mx.controls.SimpleButton.prototype.fdi;
var disabledIcon = mx.controls.SimpleButton.prototype.dfi;
var initializing = true;
var idNames = ["fus", "fds", "frs", "dfs", "tus", "tds", "trs", "dts", "fui", "fdi", "fri", "dfi", "tui", "tdi", "tri", "dti"];
var stateNames = ["falseUp", "falseDown", "falseOver", "falseDisabled", "trueUp", "trueDown", "trueOver", "trueDisabled"];
var refNames = ["upSkin", "downSkin", "rolloverSkin", "disabledSkin"];
var tagMap = {falseUpSkin:0, falseDownSkin:1, falseOverSkin:2, falseDisabledSkin:3, trueUpSkin:4, trueDownSkin:5, trueOverSkin:6, trueDisabledSkin:7, falseUpIcon:0, falseDownIcon:1, falseOverIcon:2, falseDisabledIcon:3, trueUpIcon:4, trueDownIcon:5, trueOverIcon:6, trueDisabledIcon:7};
}
Symbol 170 MovieClip [__Packages.mx.managers.DepthManager] Frame 0
class mx.managers.DepthManager
{
var _childCounter, createClassObject, createObject, _parent, swapDepths, _topmost, getDepth;
function DepthManager () {
MovieClip.prototype.createClassChildAtDepth = createClassChildAtDepth;
MovieClip.prototype.createChildAtDepth = createChildAtDepth;
MovieClip.prototype.setDepthTo = setDepthTo;
MovieClip.prototype.setDepthAbove = setDepthAbove;
MovieClip.prototype.setDepthBelow = setDepthBelow;
MovieClip.prototype.findNextAvailableDepth = findNextAvailableDepth;
MovieClip.prototype.shuffleDepths = shuffleDepths;
MovieClip.prototype.getDepthByFlag = getDepthByFlag;
MovieClip.prototype.buildDepthTable = buildDepthTable;
_global.ASSetPropFlags(MovieClip.prototype, "createClassChildAtDepth", 1);
_global.ASSetPropFlags(MovieClip.prototype, "createChildAtDepth", 1);
_global.ASSetPropFlags(MovieClip.prototype, "setDepthTo", 1);
_global.ASSetPropFlags(MovieClip.prototype, "setDepthAbove", 1);
_global.ASSetPropFlags(MovieClip.prototype, "setDepthBelow", 1);
_global.ASSetPropFlags(MovieClip.prototype, "findNextAvailableDepth", 1);
_global.ASSetPropFlags(MovieClip.prototype, "shuffleDepths", 1);
_global.ASSetPropFlags(MovieClip.prototype, "getDepthByFlag", 1);
_global.ASSetPropFlags(MovieClip.prototype, "buildDepthTable", 1);
}
static function sortFunction(a, b) {
if (a.getDepth() > b.getDepth()) {
return(1);
}
return(-1);
}
static function test(depth) {
if (depth == reservedDepth) {
return(false);
}
return(true);
}
static function createClassObjectAtDepth(className, depthSpace, initObj) {
var _local1;
switch (depthSpace) {
case kCursor :
_local1 = holder.createClassChildAtDepth(className, kTopmost, initObj);
break;
case kTooltip :
_local1 = holder.createClassChildAtDepth(className, kTop, initObj);
break;
}
return(_local1);
}
static function createObjectAtDepth(linkageName, depthSpace, initObj) {
var _local1;
switch (depthSpace) {
case kCursor :
_local1 = holder.createChildAtDepth(linkageName, kTopmost, initObj);
break;
case kTooltip :
_local1 = holder.createChildAtDepth(linkageName, kTop, initObj);
break;
}
return(_local1);
}
function createClassChildAtDepth(className, depthFlag, initObj) {
if (_childCounter == undefined) {
_childCounter = 0;
}
var _local3 = buildDepthTable();
var _local2 = getDepthByFlag(depthFlag, _local3);
var _local6 = "down";
if (depthFlag == kBottom) {
_local6 = "up";
}
var _local5;
if (_local3[_local2] != undefined) {
_local5 = _local2;
_local2 = findNextAvailableDepth(_local2, _local3, _local6);
}
var _local4 = createClassObject(className, "depthChild" + (_childCounter++), _local2, initObj);
if (_local5 != undefined) {
_local3[_local2] = _local4;
shuffleDepths(_local4, _local5, _local3, _local6);
}
if (depthFlag == kTopmost) {
_local4._topmost = true;
}
return(_local4);
}
function createChildAtDepth(linkageName, depthFlag, initObj) {
if (_childCounter == undefined) {
_childCounter = 0;
}
var _local3 = buildDepthTable();
var _local2 = getDepthByFlag(depthFlag, _local3);
var _local6 = "down";
if (depthFlag == kBottom) {
_local6 = "up";
}
var _local5;
if (_local3[_local2] != undefined) {
_local5 = _local2;
_local2 = findNextAvailableDepth(_local2, _local3, _local6);
}
var _local4 = createObject(linkageName, "depthChild" + (_childCounter++), _local2, initObj);
if (_local5 != undefined) {
_local3[_local2] = _local4;
shuffleDepths(_local4, _local5, _local3, _local6);
}
if (depthFlag == kTopmost) {
_local4._topmost = true;
}
return(_local4);
}
function setDepthTo(depthFlag) {
var _local2 = _parent.buildDepthTable();
var _local3 = _parent.getDepthByFlag(depthFlag, _local2);
if (_local2[_local3] != undefined) {
shuffleDepths(this, _local3, _local2, undefined);
} else {
swapDepths(_local3);
}
if (depthFlag == kTopmost) {
_topmost = true;
} else {
delete _topmost;
}
}
function setDepthAbove(targetInstance) {
if (targetInstance._parent != _parent) {
return(undefined);
}
var _local2 = targetInstance.getDepth() + 1;
var _local3 = _parent.buildDepthTable();
if ((_local3[_local2] != undefined) && (getDepth() < _local2)) {
_local2 = _local2 - 1;
}
if (_local2 > highestDepth) {
_local2 = highestDepth;
}
if (_local2 == highestDepth) {
_parent.shuffleDepths(this, _local2, _local3, "down");
} else if (_local3[_local2] != undefined) {
_parent.shuffleDepths(this, _local2, _local3, undefined);
} else {
swapDepths(_local2);
}
}
function setDepthBelow(targetInstance) {
if (targetInstance._parent != _parent) {
return(undefined);
}
var _local6 = targetInstance.getDepth() - 1;
var _local3 = _parent.buildDepthTable();
if ((_local3[_local6] != undefined) && (getDepth() > _local6)) {
_local6 = _local6 + 1;
}
var _local4 = lowestDepth + numberOfAuthortimeLayers;
var _local5;
for (_local5 in _local3) {
var _local2 = _local3[_local5];
if (_local2._parent != undefined) {
_local4 = Math.min(_local4, _local2.getDepth());
}
}
if (_local6 < _local4) {
_local6 = _local4;
}
if (_local6 == _local4) {
_parent.shuffleDepths(this, _local6, _local3, "up");
} else if (_local3[_local6] != undefined) {
_parent.shuffleDepths(this, _local6, _local3, undefined);
} else {
swapDepths(_local6);
}
}
function findNextAvailableDepth(targetDepth, depthTable, direction) {
var _local5 = lowestDepth + numberOfAuthortimeLayers;
if (targetDepth < _local5) {
targetDepth = _local5;
}
if (depthTable[targetDepth] == undefined) {
return(targetDepth);
}
var _local2 = targetDepth;
var _local1 = targetDepth;
if (direction == "down") {
while (depthTable[_local1] != undefined) {
_local1--;
}
return(_local1);
}
while (depthTable[_local2] != undefined) {
_local2++;
}
return(_local2);
}
function shuffleDepths(subject, targetDepth, depthTable, direction) {
var _local9 = lowestDepth + numberOfAuthortimeLayers;
var _local8 = _local9;
var _local5;
for (_local5 in depthTable) {
var _local7 = depthTable[_local5];
if (_local7._parent != undefined) {
_local9 = Math.min(_local9, _local7.getDepth());
}
}
if (direction == undefined) {
if (subject.getDepth() > targetDepth) {
direction = "up";
} else {
direction = "down";
}
}
var _local1 = new Array();
for (_local5 in depthTable) {
var _local7 = depthTable[_local5];
if (_local7._parent != undefined) {
_local1.push(_local7);
}
}
_local1.sort(sortFunction);
if (direction == "up") {
var _local3;
var _local11;
do {
if (_local1.length <= 0) {
break;
}
_local3 = _local1.pop();
} while (_local3 != subject);
do {
if (_local1.length <= 0) {
break;
}
_local11 = subject.getDepth();
_local3 = _local1.pop();
var _local4 = _local3.getDepth();
if (_local11 > (_local4 + 1)) {
if (_local4 >= 0) {
subject.swapDepths(_local4 + 1);
} else if ((_local11 > _local8) && (_local4 < _local8)) {
subject.swapDepths(_local8);
}
}
subject.swapDepths(_local3);
} while (_local4 != targetDepth);
} else if (direction == "down") {
var _local3;
do {
if (_local1.length <= 0) {
break;
}
_local3 = _local1.shift();
} while (_local3 != subject);
do {
if (_local1.length <= 0) {
break;
}
var _local11 = _local3.getDepth();
_local3 = _local1.shift();
var _local4 = _local3.getDepth();
if ((_local11 < (_local4 - 1)) && (_local4 > 0)) {
subject.swapDepths(_local4 - 1);
}
subject.swapDepths(_local3);
} while (_local4 != targetDepth);
}
}
function getDepthByFlag(depthFlag, depthTable) {
var _local2 = 0;
if ((depthFlag == kTop) || (depthFlag == kNotopmost)) {
var _local5 = 0;
var _local7 = false;
var _local8;
for (_local8 in depthTable) {
var _local9 = depthTable[_local8];
var _local3 = typeof(_local9);
if ((_local3 == "movieclip") || ((_local3 == "object") && (_local9.__getTextFormat != undefined))) {
if (_local9.getDepth() <= highestDepth) {
if (!_local9._topmost) {
_local2 = Math.max(_local2, _local9.getDepth());
} else if (!_local7) {
_local5 = _local9.getDepth();
_local7 = true;
} else {
_local5 = Math.min(_local5, _local9.getDepth());
}
}
}
}
_local2 = _local2 + 20;
if (_local7) {
if (_local2 >= _local5) {
_local2 = _local5 - 1;
}
}
} else if (depthFlag == kBottom) {
for (var _local8 in depthTable) {
var _local9 = depthTable[_local8];
var _local3 = typeof(_local9);
if ((_local3 == "movieclip") || ((_local3 == "object") && (_local9.__getTextFormat != undefined))) {
if (_local9.getDepth() <= highestDepth) {
_local2 = Math.min(_local2, _local9.getDepth());
}
}
}
_local2 = _local2 - 20;
} else if (depthFlag == kTopmost) {
for (var _local8 in depthTable) {
var _local9 = depthTable[_local8];
var _local3 = typeof(_local9);
if ((_local3 == "movieclip") || ((_local3 == "object") && (_local9.__getTextFormat != undefined))) {
if (_local9.getDepth() <= highestDepth) {
_local2 = Math.max(_local2, _local9.getDepth());
}
}
}
_local2 = _local2 + 100;
}
if (_local2 >= highestDepth) {
_local2 = highestDepth;
}
var _local6 = lowestDepth + numberOfAuthortimeLayers;
for (var _local9 in depthTable) {
var _local4 = depthTable[_local9];
if (_local4._parent != undefined) {
_local6 = Math.min(_local6, _local4.getDepth());
}
}
if (_local2 <= _local6) {
_local2 = _local6;
}
return(_local2);
}
function buildDepthTable(Void) {
var _local5 = new Array();
var _local4;
for (_local4 in this) {
var _local2 = this[_local4];
var _local3 = typeof(_local2);
if ((_local3 == "movieclip") || ((_local3 == "object") && (_local2.__getTextFormat != undefined))) {
if (_local2._parent == this) {
_local5[_local2.getDepth()] = _local2;
}
}
}
return(_local5);
}
static var reservedDepth = 1048575;
static var highestDepth = 1048574;
static var lowestDepth = -16383;
static var numberOfAuthortimeLayers = 383;
static var kCursor = 101;
static var kTooltip = 102;
static var kTop = 201;
static var kBottom = 202;
static var kTopmost = 203;
static var kNotopmost = 204;
static var holder = _root.createEmptyMovieClip("reserved", reservedDepth);
static var __depthManager = new mx.managers.DepthManager();
}
Symbol 171 MovieClip [__Packages.mx.events.EventDispatcher] Frame 0
class mx.events.EventDispatcher
{
function EventDispatcher () {
}
static function _removeEventListener(queue, event, handler) {
if (queue != undefined) {
var _local4 = queue.length;
var _local1;
_local1 = 0;
while (_local1 < _local4) {
var _local2 = queue[_local1];
if (_local2 == handler) {
queue.splice(_local1, 1);
return(undefined);
}
_local1++;
}
}
}
static function initialize(object) {
if (_fEventDispatcher == undefined) {
_fEventDispatcher = new mx.events.EventDispatcher();
}
object.addEventListener = _fEventDispatcher.addEventListener;
object.removeEventListener = _fEventDispatcher.removeEventListener;
object.dispatchEvent = _fEventDispatcher.dispatchEvent;
object.dispatchQueue = _fEventDispatcher.dispatchQueue;
}
function dispatchQueue(queueObj, eventObj) {
var _local7 = "__q_" + eventObj.type;
var _local4 = queueObj[_local7];
if (_local4 != undefined) {
var _local5;
for (_local5 in _local4) {
var _local1 = _local4[_local5];
var _local3 = typeof(_local1);
if ((_local3 == "object") || (_local3 == "movieclip")) {
if (_local1.handleEvent != undefined) {
_local1.handleEvent(eventObj);
}
if (_local1[eventObj.type] != undefined) {
if (exceptions[eventObj.type] == undefined) {
_local1[eventObj.type](eventObj);
}
}
} else {
_local1.apply(queueObj, [eventObj]);
}
}
}
}
function dispatchEvent(eventObj) {
if (eventObj.target == undefined) {
eventObj.target = this;
}
this[eventObj.type + "Handler"](eventObj);
dispatchQueue(this, eventObj);
}
function addEventListener(event, handler) {
var _local3 = "__q_" + event;
if (this[_local3] == undefined) {
this[_local3] = new Array();
}
_global.ASSetPropFlags(this, _local3, 1);
_removeEventListener(this[_local3], event, handler);
this[_local3].push(handler);
}
function removeEventListener(event, handler) {
var _local2 = "__q_" + event;
_removeEventListener(this[_local2], event, handler);
}
static var _fEventDispatcher = undefined;
static var exceptions = {move:1, draw:1, load:1};
}
Symbol 172 MovieClip [__Packages.mx.managers.SystemManager] Frame 0
class mx.managers.SystemManager
{
static var _xAddEventListener, addEventListener, __addEventListener, _xRemoveEventListener, removeEventListener, __removeEventListener, form, __screen, dispatchEvent;
function SystemManager () {
}
static function init(Void) {
if (_initialized == false) {
_initialized = true;
mx.events.EventDispatcher.initialize(mx.managers.SystemManager);
Mouse.addListener(mx.managers.SystemManager);
Stage.addListener(mx.managers.SystemManager);
_xAddEventListener = addEventListener;
addEventListener = __addEventListener;
_xRemoveEventListener = removeEventListener;
removeEventListener = __removeEventListener;
}
}
static function addFocusManager(f) {
form = f;
f.focusManager.activate();
}
static function removeFocusManager(f) {
}
static function onMouseDown(Void) {
var _local1 = form;
_local1.focusManager._onMouseDown();
}
static function onResize(Void) {
var _local7 = Stage.width;
var _local6 = Stage.height;
var _local9 = _global.origWidth;
var _local8 = _global.origHeight;
var _local3 = Stage.align;
var _local5 = (_local9 - _local7) / 2;
var _local4 = (_local8 - _local6) / 2;
if (_local3 == "T") {
_local4 = 0;
} else if (_local3 == "B") {
_local4 = _local8 - _local6;
} else if (_local3 == "L") {
_local5 = 0;
} else if (_local3 == "R") {
_local5 = _local9 - _local7;
} else if (_local3 == "LT") {
_local4 = 0;
_local5 = 0;
} else if (_local3 == "TR") {
_local4 = 0;
_local5 = _local9 - _local7;
} else if (_local3 == "LB") {
_local4 = _local8 - _local6;
_local5 = 0;
} else if (_local3 == "RB") {
_local4 = _local8 - _local6;
_local5 = _local9 - _local7;
}
if (__screen == undefined) {
__screen = new Object();
}
__screen.x = _local5;
__screen.y = _local4;
__screen.width = _local7;
__screen.height = _local6;
_root.focusManager.relocate();
dispatchEvent({type:"resize"});
}
static function get screen() {
init();
if (__screen == undefined) {
onResize();
}
return(__screen);
}
static var _initialized = false;
static var idleFrames = 0;
static var isMouseDown = false;
static var forms = new Array();
}
Symbol 173 MovieClip [__Packages.mx.managers.PopUpManager] Frame 0
class mx.managers.PopUpManager
{
var popUp, setSize, move, modalWindow, _parent, _name, _visible, owner;
function PopUpManager () {
}
static function createModalWindow(parent, o, broadcastOutsideEvents) {
var _local2 = parent.createChildAtDepth("Modal", mx.managers.DepthManager.kTopmost);
_local2.setDepthBelow(o);
o.modalID = _local2._name;
_local2._alpha = _global.style.modalTransparency;
_local2.tabEnabled = false;
if (broadcastOutsideEvents) {
_local2.onPress = mixins.onPress;
} else {
_local2.onPress = mixins.nullFunction;
}
_local2.onRelease = mixins.nullFunction;
_local2.resize = mixins.resize;
mx.managers.SystemManager.init();
mx.managers.SystemManager.addEventListener("resize", _local2);
_local2.resize();
_local2.useHandCursor = false;
_local2.popUp = o;
o.modalWindow = _local2;
o.deletePopUp = mixins.deletePopUp;
o.setVisible = mixins.setVisible;
o.getVisible = mixins.getVisible;
o.addProperty("visible", o.getVisible, o.setVisible);
}
static function createPopUp(parent, className, modal, initobj, broadcastOutsideEvents) {
if (mixins == undefined) {
mixins = new mx.managers.PopUpManager();
}
if (broadcastOutsideEvents == undefined) {
broadcastOutsideEvents = false;
}
var _local5 = parent._root;
if (_local5 == undefined) {
_local5 = _root;
}
while (parent != _local5) {
parent = parent._parent;
}
initobj.popUp = true;
var _local4 = parent.createClassChildAtDepth(className, ((broadcastOutsideEvents || (modal)) ? (mx.managers.DepthManager.kTopmost) : (mx.managers.DepthManager.kTop)), initobj);
var _local2 = _root;
var _local6 = _local2.focusManager != undefined;
while (_local2._parent != undefined) {
_local2 = _local2._parent._root;
if (_local2.focusManager != undefined) {
_local6 = true;
break;
}
}
if (_local6) {
_local4.createObject("FocusManager", "focusManager", -1);
if (_local4._visible == false) {
mx.managers.SystemManager.deactivate(_local4);
}
}
if (modal) {
createModalWindow(parent, _local4, broadcastOutsideEvents);
} else {
if (broadcastOutsideEvents) {
_local4.mouseListener = new Object();
_local4.mouseListener.owner = _local4;
_local4.mouseListener.onMouseDown = mixins.onMouseDown;
Mouse.addListener(_local4.mouseListener);
}
_local4.deletePopUp = mixins.deletePopUp;
}
return(_local4);
}
function onPress(Void) {
var _local3 = popUp._root;
if (_local3 == undefined) {
_local3 = _root;
}
if (popUp.hitTest(_local3._xmouse, _local3._ymouse, false)) {
return(undefined);
}
popUp.dispatchEvent({type:"mouseDownOutside"});
}
function nullFunction(Void) {
}
function resize(Void) {
var _local2 = mx.managers.SystemManager.__get__screen();
setSize(_local2.width, _local2.height);
move(_local2.x, _local2.y);
}
function deletePopUp(Void) {
if (modalWindow != undefined) {
_parent.destroyObject(modalWindow._name);
}
_parent.destroyObject(_name);
}
function setVisible(v, noEvent) {
super.setVisible(v, noEvent);
modalWindow._visible = v;
}
function getVisible(Void) {
return(_visible);
}
function onMouseDown(Void) {
var _local3 = owner._root;
if (_local3 == undefined) {
_local3 = _root;
}
var _local4 = new Object();
_local4.x = _local3._xmouse;
_local4.y = _local3._ymouse;
_local3.localToGlobal(_local4);
if (owner.hitTest(_local4.x, _local4.y, false)) {
} else {
owner.mouseDownOutsideHandler(owner);
}
}
static var version = "2.0.2.126";
static var mixins = undefined;
}
Symbol 174 MovieClip [__Packages.mx.core.View] Frame 0
class mx.core.View extends mx.core.UIComponent
{
var tabChildren, tabEnabled, boundingBox_mc, border_mc, __get__width, __get__height, __tabIndex, depth, createObject, createClassObject, loadExternal, destroyObject, createClassChildAtDepth, doLater;
function View () {
super();
}
function init() {
super.init();
tabChildren = true;
tabEnabled = false;
boundingBox_mc._visible = false;
boundingBox_mc._width = (boundingBox_mc._height = 0);
}
function size() {
border_mc.move(0, 0);
border_mc.setSize(__get__width(), __get__height());
doLayout();
}
function draw() {
size();
}
function get numChildren() {
var _local3 = childNameBase;
var _local2 = 0;
while (true) {
if (this[_local3 + _local2] == undefined) {
return(_local2);
}
_local2++;
}
}
function get tabIndex() {
return((tabEnabled ? (__tabIndex) : undefined));
}
function addLayoutObject(object) {
}
function createChild(className, instanceName, initProps) {
if (depth == undefined) {
depth = 1;
}
var _local2;
if (typeof(className) == "string") {
_local2 = createObject(className, instanceName, depth++, initProps);
} else {
_local2 = createClassObject(className, instanceName, depth++, initProps);
}
if (_local2 == undefined) {
_local2 = loadExternal(className, _loadExternalClass, instanceName, depth++, initProps);
} else {
this[childNameBase + numChildren] = _local2;
_local2._complete = true;
childLoaded(_local2);
}
addLayoutObject(_local2);
return(_local2);
}
function getChildAt(childIndex) {
return(this[childNameBase + childIndex]);
}
function destroyChildAt(childIndex) {
if (!((childIndex >= 0) && (childIndex < numChildren))) {
return(undefined);
}
var _local4 = childNameBase + childIndex;
var _local6 = numChildren;
var _local3;
for (_local3 in this) {
if (_local3 == _local4) {
_local4 = "";
destroyObject(_local3);
break;
}
}
var _local2 = Number(childIndex);
while (_local2 < (_local6 - 1)) {
this[childNameBase + _local2] = this[childNameBase + (_local2 + 1)];
_local2++;
}
delete this[childNameBase + (_local6 - 1)];
depth--;
}
function initLayout() {
if (!hasBeenLayedOut) {
doLayout();
}
}
function doLayout() {
hasBeenLayedOut = true;
}
function createChildren() {
if (border_mc == undefined) {
border_mc = createClassChildAtDepth(_global.styles.rectBorderClass, mx.managers.DepthManager.kBottom, {styleName:this});
}
doLater(this, "initLayout");
}
function convertToUIObject(obj) {
}
function childLoaded(obj) {
convertToUIObject(obj);
}
static function extension() {
mx.core.ExternalContent.enableExternalContent();
}
static var symbolName = "View";
static var symbolOwner = mx.core.View;
static var version = "2.0.2.126";
var className = "View";
static var childNameBase = "_child";
var hasBeenLayedOut = false;
var _loadExternalClass = "UIComponent";
}
Symbol 175 MovieClip [__Packages.mx.events.UIEventDispatcher] Frame 0
class mx.events.UIEventDispatcher extends mx.events.EventDispatcher
{
var dispatchQueue, owner, __sentLoadEvent, __origAddEventListener;
function UIEventDispatcher () {
super();
}
static function addKeyEvents(obj) {
if (obj.keyHandler == undefined) {
var _local1 = (obj.keyHandler = new Object());
_local1.owner = obj;
_local1.onKeyDown = _fEventDispatcher.onKeyDown;
_local1.onKeyUp = _fEventDispatcher.onKeyUp;
}
Key.addListener(obj.keyHandler);
}
static function removeKeyEvents(obj) {
Key.removeListener(obj.keyHandler);
}
static function addLoadEvents(obj) {
if (obj.onLoad == undefined) {
obj.onLoad = _fEventDispatcher.onLoad;
obj.onUnload = _fEventDispatcher.onUnload;
if (obj.getBytesTotal() == obj.getBytesLoaded()) {
obj.doLater(obj, "onLoad");
}
}
}
static function removeLoadEvents(obj) {
delete obj.onLoad;
delete obj.onUnload;
}
static function initialize(obj) {
if (_fEventDispatcher == undefined) {
_fEventDispatcher = new mx.events.UIEventDispatcher();
}
obj.addEventListener = _fEventDispatcher.__addEventListener;
obj.__origAddEventListener = _fEventDispatcher.addEventListener;
obj.removeEventListener = _fEventDispatcher.removeEventListener;
obj.dispatchEvent = _fEventDispatcher.dispatchEvent;
obj.dispatchQueue = _fEventDispatcher.dispatchQueue;
}
function dispatchEvent(eventObj) {
if (eventObj.target == undefined) {
eventObj.target = this;
}
this[eventObj.type + "Handler"](eventObj);
dispatchQueue(mx.events.EventDispatcher, eventObj);
dispatchQueue(this, eventObj);
}
function onKeyDown(Void) {
owner.dispatchEvent({type:"keyDown", code:Key.getCode(), ascii:Key.getAscii(), shiftKey:Key.isDown(16), ctrlKey:Key.isDown(17)});
}
function onKeyUp(Void) {
owner.dispatchEvent({type:"keyUp", code:Key.getCode(), ascii:Key.getAscii(), shiftKey:Key.isDown(16), ctrlKey:Key.isDown(17)});
}
function onLoad(Void) {
if (__sentLoadEvent != true) {
dispatchEvent({type:"load"});
}
__sentLoadEvent = true;
}
function onUnload(Void) {
dispatchEvent({type:"unload"});
}
function __addEventListener(event, handler) {
__origAddEventListener(event, handler);
var _local3 = lowLevelEvents;
for (var _local5 in _local3) {
if (mx.events.UIEventDispatcher[_local5][event] != undefined) {
var _local2 = _local3[_local5][0];
mx.events.UIEventDispatcher[_local2](this);
}
}
}
function removeEventListener(event, handler) {
var _local6 = "__q_" + event;
mx.events.EventDispatcher._removeEventListener(this[_local6], event, handler);
if (this[_local6].length == 0) {
var _local2 = lowLevelEvents;
for (var _local5 in _local2) {
if (mx.events.UIEventDispatcher[_local5][event] != undefined) {
var _local3 = _local2[_local5][1];
mx.events.UIEventDispatcher[_local2[_local5][1]](this);
}
}
}
}
static var keyEvents = {keyDown:1, keyUp:1};
static var loadEvents = {load:1, unload:1};
static var lowLevelEvents = {keyEvents:["addKeyEvents", "removeKeyEvents"], loadEvents:["addLoadEvents", "removeLoadEvents"]};
static var _fEventDispatcher = undefined;
}
Symbol 176 MovieClip [__Packages.mx.core.ExternalContent] Frame 0
class mx.core.ExternalContent
{
var createObject, numChildren, prepList, doLater, loadList, dispatchEvent, loadedList, childLoaded;
function ExternalContent () {
}
function loadExternal(url, placeholderClassName, instanceName, depth, initProps) {
var _local2;
_local2 = createObject(placeholderClassName, instanceName, depth, initProps);
this[mx.core.View.childNameBase + numChildren] = _local2;
if (prepList == undefined) {
prepList = new Object();
}
prepList[instanceName] = {obj:_local2, url:url, complete:false, initProps:initProps};
prepareToLoadMovie(_local2);
return(_local2);
}
function prepareToLoadMovie(obj) {
obj.unloadMovie();
doLater(this, "waitForUnload");
}
function waitForUnload() {
var _local3;
for (_local3 in prepList) {
var _local2 = prepList[_local3];
if (_local2.obj.getBytesTotal() == 0) {
if (loadList == undefined) {
loadList = new Object();
}
loadList[_local3] = _local2;
_local2.obj.loadMovie(_local2.url);
delete prepList[_local3];
doLater(this, "checkLoadProgress");
} else {
doLater(this, "waitForUnload");
}
}
}
function checkLoadProgress() {
var _local8 = false;
var _local3;
for (_local3 in loadList) {
var _local2 = loadList[_local3];
_local2.loaded = _local2.obj.getBytesLoaded();
_local2.total = _local2.obj.getBytesTotal();
if (_local2.total > 0) {
_local2.obj._visible = false;
dispatchEvent({type:"progress", target:_local2.obj, current:_local2.loaded, total:_local2.total});
if (_local2.loaded == _local2.total) {
if (loadedList == undefined) {
loadedList = new Object();
}
loadedList[_local3] = _local2;
delete loadList[_local3];
doLater(this, "contentLoaded");
}
} else if (_local2.total == -1) {
if (_local2.failedOnce != undefined) {
_local2.failedOnce++;
if (_local2.failedOnce > 3) {
dispatchEvent({type:"complete", target:_local2.obj, current:_local2.loaded, total:_local2.total});
delete loadList[_local3];
}
} else {
_local2.failedOnce = 0;
}
}
_local8 = true;
}
if (_local8) {
doLater(this, "checkLoadProgress");
}
}
function contentLoaded() {
var _local4;
for (_local4 in loadedList) {
var _local2 = loadedList[_local4];
_local2.obj._visible = true;
_local2.obj._complete = true;
var _local3;
for (_local3 in _local2.initProps) {
_local2.obj[_local3] = _local2.initProps[_local3];
}
childLoaded(_local2.obj);
dispatchEvent({type:"complete", target:_local2.obj, current:_local2.loaded, total:_local2.total});
delete loadedList[_local4];
}
}
function convertToUIObject(obj) {
if (obj.setSize == undefined) {
var _local2 = mx.core.UIObject.prototype;
obj.addProperty("width", _local2.__get__width, null);
obj.addProperty("height", _local2.__get__height, null);
obj.addProperty("left", _local2.__get__left, null);
obj.addProperty("x", _local2.__get__x, null);
obj.addProperty("top", _local2.__get__top, null);
obj.addProperty("y", _local2.__get__y, null);
obj.addProperty("right", _local2.__get__right, null);
obj.addProperty("bottom", _local2.__get__bottom, null);
obj.addProperty("visible", _local2.__get__visible, _local2.__set__visible);
obj.move = mx.core.UIObject.prototype.move;
obj.setSize = mx.core.UIObject.prototype.setSize;
obj.size = mx.core.UIObject.prototype.size;
mx.events.UIEventDispatcher.initialize(obj);
}
}
static function enableExternalContent() {
}
static function classConstruct() {
var _local1 = mx.core.View.prototype;
var _local2 = mx.core.ExternalContent.prototype;
_local1.loadExternal = _local2.loadExternal;
_local1.prepareToLoadMovie = _local2.prepareToLoadMovie;
_local1.waitForUnload = _local2.waitForUnload;
_local1.checkLoadProgress = _local2.checkLoadProgress;
_local1.contentLoaded = _local2.contentLoaded;
_local1.convertToUIObject = _local2.convertToUIObject;
return(true);
}
static var classConstructed = classConstruct();
static var ViewDependency = mx.core.View;
}
Symbol 177 MovieClip [__Packages.mx.skins.CustomBorder] Frame 0
class mx.skins.CustomBorder extends mx.skins.Border
{
var __width, __height, l_mc, setSkin, minHeight, minWidth, m_mc, r_mc;
function CustomBorder () {
super();
}
function get width() {
return(__width);
}
function get height() {
return(__height);
}
function init(Void) {
super.init();
}
function createChildren(Void) {
}
function draw(Void) {
if (l_mc == undefined) {
var _local2 = setSkin(tagL, leftSkin);
if (horizontal) {
minHeight = l_mc._height;
minWidth = l_mc._width;
} else {
minHeight = l_mc._height;
minWidth = l_mc._width;
}
}
if (m_mc == undefined) {
setSkin(tagM, middleSkin);
if (horizontal) {
minHeight = m_mc._height;
minWidth = minWidth + m_mc._width;
} else {
minHeight = minHeight + m_mc._height;
minWidth = m_mc._width;
}
}
if (r_mc == undefined) {
setSkin(tagR, rightSkin);
if (horizontal) {
minHeight = r_mc._height;
minWidth = minWidth + r_mc._width;
} else {
minHeight = minHeight + r_mc._height;
minWidth = r_mc._width;
}
}
size();
}
function size(Void) {
l_mc.move(0, 0);
if (horizontal) {
r_mc.move(width - r_mc.width, 0);
m_mc.move(l_mc.width, 0);
m_mc.setSize(r_mc.x - m_mc.x, m_mc.height);
} else {
r_mc.move(0, height - r_mc.height, 0);
m_mc.move(0, l_mc.height);
m_mc.setSize(m_mc.width, r_mc.y - m_mc.y);
}
}
static var symbolName = "CustomBorder";
static var symbolOwner = mx.skins.CustomBorder;
static var version = "2.0.2.126";
var className = "CustomBorder";
static var tagL = 0;
static var tagM = 1;
static var tagR = 2;
var idNames = new Array("l_mc", "m_mc", "r_mc");
var leftSkin = "F3PieceLeft";
var middleSkin = "F3PieceMiddle";
var rightSkin = "F3PieceRight";
var horizontal = true;
}
Symbol 178 MovieClip [__Packages.mx.controls.scrollClasses.ScrollThumb] Frame 0
class mx.controls.scrollClasses.ScrollThumb extends mx.skins.CustomBorder
{
var useHandCursor, ymin, ymax, datamin, datamax, scrollMove, lastY, _ymouse, _y, _parent, onMouseMove, grip_mc, setSkin, gripSkin, __get__width, __get__height;
function ScrollThumb () {
super();
}
function createChildren(Void) {
super.createChildren();
useHandCursor = false;
}
function setRange(_ymin, _ymax, _datamin, _datamax) {
ymin = _ymin;
ymax = _ymax;
datamin = _datamin;
datamax = _datamax;
}
function dragThumb(Void) {
scrollMove = _ymouse - lastY;
scrollMove = scrollMove + _y;
if (scrollMove < ymin) {
scrollMove = ymin;
} else if (scrollMove > ymax) {
scrollMove = ymax;
}
_parent.isScrolling = true;
_y = scrollMove;
var _local2 = Math.round(((datamax - datamin) * (_y - ymin)) / (ymax - ymin)) + datamin;
_parent.scrollPosition = _local2;
_parent.dispatchScrollEvent("ThumbTrack");
updateAfterEvent();
}
function stopDragThumb(Void) {
_parent.isScrolling = false;
_parent.dispatchScrollEvent("ThumbPosition");
_parent.dispatchScrollChangedEvent();
delete onMouseMove;
}
function onPress(Void) {
_parent.pressFocus();
lastY = _ymouse;
onMouseMove = dragThumb;
super.onPress();
}
function onRelease(Void) {
_parent.releaseFocus();
stopDragThumb();
super.onRelease();
}
function onReleaseOutside(Void) {
_parent.releaseFocus();
stopDragThumb();
super.onReleaseOutside();
}
function draw() {
super.draw();
if (grip_mc == undefined) {
setSkin(3, gripSkin);
}
}
function size() {
super.size();
grip_mc.move((__get__width() - grip_mc.width) / 2, (__get__height() - grip_mc.height) / 2);
}
static var symbolOwner = mx.skins.CustomBorder.symbolOwner;
var className = "ScrollThumb";
var btnOffset = 0;
var horizontal = false;
var idNames = new Array("l_mc", "m_mc", "r_mc", "grip_mc");
}
Symbol 179 MovieClip [__Packages.mx.controls.scrollClasses.ScrollBar] Frame 0
class mx.controls.scrollClasses.ScrollBar extends mx.core.UIComponent
{
var isScrolling, scrollTrack_mc, scrollThumb_mc, __height, tabEnabled, focusEnabled, boundingBox_mc, setSkin, upArrow_mc, _minHeight, _minWidth, downArrow_mc, createObject, createClassObject, enabled, _height, dispatchEvent, minMode, maxMode, plusMode, minusMode, _parent, getStyle, scrolling, _ymouse;
function ScrollBar () {
super();
}
function get scrollPosition() {
return(_scrollPosition);
}
function set scrollPosition(pos) {
_scrollPosition = pos;
if (isScrolling != true) {
pos = Math.min(pos, maxPos);
pos = Math.max(pos, minPos);
var _local3 = (((pos - minPos) * (scrollTrack_mc.height - scrollThumb_mc._height)) / (maxPos - minPos)) + scrollTrack_mc.top;
scrollThumb_mc.move(0, _local3);
}
//return(scrollPosition);
}
function get pageScrollSize() {
return(largeScroll);
}
function set pageScrollSize(lScroll) {
largeScroll = lScroll;
//return(pageScrollSize);
}
function set lineScrollSize(sScroll) {
smallScroll = sScroll;
//return(lineScrollSize);
}
function get lineScrollSize() {
return(smallScroll);
}
function get virtualHeight() {
return(__height);
}
function init(Void) {
super.init();
_scrollPosition = 0;
tabEnabled = false;
focusEnabled = false;
boundingBox_mc._visible = false;
boundingBox_mc._width = (boundingBox_mc._height = 0);
}
function createChildren(Void) {
if (scrollTrack_mc == undefined) {
setSkin(skinIDTrack, scrollTrackName);
}
scrollTrack_mc.visible = false;
var _local3 = new Object();
_local3.enabled = false;
_local3.preset = mx.controls.SimpleButton.falseDisabled;
_local3.initProperties = 0;
_local3.autoRepeat = true;
_local3.tabEnabled = false;
var _local2;
if (upArrow_mc == undefined) {
_local2 = createButton(upArrowName, "upArrow_mc", skinIDUpArrow, _local3);
}
_local2.buttonDownHandler = onUpArrow;
_local2.clickHandler = onScrollChanged;
_minHeight = _local2.height;
_minWidth = _local2.width;
if (downArrow_mc == undefined) {
_local2 = createButton(downArrowName, "downArrow_mc", skinIDDownArrow, _local3);
}
_local2.buttonDownHandler = onDownArrow;
_local2.clickHandler = onScrollChanged;
_minHeight = _minHeight + _local2.height;
}
function createButton(linkageName, id, skinID, o) {
if (skinID == skinIDUpArrow) {
o.falseUpSkin = upArrowUpName;
o.falseDownSkin = upArrowDownName;
o.falseOverSkin = upArrowOverName;
} else {
o.falseUpSkin = downArrowUpName;
o.falseDownSkin = downArrowDownName;
o.falseOverSkin = downArrowOverName;
}
var _local3 = createObject(linkageName, id, skinID, o);
this[id].visible = false;
this[id].useHandCursor = false;
return(_local3);
}
function createThumb(Void) {
var _local2 = new Object();
_local2.validateNow = true;
_local2.tabEnabled = false;
_local2.leftSkin = thumbTopName;
_local2.middleSkin = thumbMiddleName;
_local2.rightSkin = thumbBottomName;
_local2.gripSkin = thumbGripName;
createClassObject(mx.controls.scrollClasses.ScrollThumb, "scrollThumb_mc", skinIDThumb, _local2);
}
function setScrollProperties(pSize, mnPos, mxPos, ls) {
var _local4;
var _local2 = scrollTrack_mc;
pageSize = pSize;
largeScroll = (((ls != undefined) && (ls > 0)) ? (ls) : (pSize));
minPos = Math.max(mnPos, 0);
maxPos = Math.max(mxPos, 0);
_scrollPosition = Math.max(minPos, _scrollPosition);
_scrollPosition = Math.min(maxPos, _scrollPosition);
if (((maxPos - minPos) > 0) && (enabled)) {
var _local5 = _scrollPosition;
if (!initializing) {
upArrow_mc.enabled = true;
downArrow_mc.enabled = true;
}
_local2.onPress = (_local2.onDragOver = startTrackScroller);
_local2.onRelease = releaseScrolling;
_local2.onDragOut = (_local2.stopScrolling = stopScrolling);
_local2.onReleaseOutside = releaseScrolling;
_local2.useHandCursor = false;
if (scrollThumb_mc == undefined) {
createThumb();
}
var _local3 = scrollThumb_mc;
if (scrollTrackOverName.length > 0) {
_local2.onRollOver = trackOver;
_local2.onRollOut = trackOut;
}
_local4 = (pageSize / ((maxPos - minPos) + pageSize)) * _local2.height;
if (_local4 < _local3.minHeight) {
if (_local2.height < _local3.minHeight) {
_local3.__set__visible(false);
} else {
_local4 = _local3.minHeight;
_local3.__set__visible(true);
_local3.setSize(_minWidth, _local3.minHeight + 0);
}
} else {
_local3.__set__visible(true);
_local3.setSize(_minWidth, _local4);
}
_local3.setRange(upArrow_mc.__get__height() + 0, (virtualHeight - downArrow_mc.__get__height()) - _local3.__get__height(), minPos, maxPos);
_local5 = Math.min(_local5, maxPos);
scrollPosition = (Math.max(_local5, minPos));
} else {
scrollThumb_mc.__set__visible(false);
if (!initializing) {
upArrow_mc.enabled = false;
downArrow_mc.enabled = false;
}
delete _local2.onPress;
delete _local2.onDragOver;
delete _local2.onRelease;
delete _local2.onDragOut;
delete _local2.onRollOver;
delete _local2.onRollOut;
delete _local2.onReleaseOutside;
}
if (initializing) {
scrollThumb_mc.__set__visible(false);
}
}
function setEnabled(enabledFlag) {
super.setEnabled(enabledFlag);
setScrollProperties(pageSize, minPos, maxPos, largeScroll);
}
function draw(Void) {
if (initializing) {
initializing = false;
scrollTrack_mc.visible = true;
upArrow_mc.__set__visible(true);
downArrow_mc.__set__visible(true);
}
size();
}
function size(Void) {
if (_height == 1) {
return(undefined);
}
if (upArrow_mc == undefined) {
return(undefined);
}
var _local3 = upArrow_mc.__get__height();
var _local2 = downArrow_mc.__get__height();
upArrow_mc.move(0, 0);
var _local4 = scrollTrack_mc;
_local4._y = _local3;
_local4._height = (virtualHeight - _local3) - _local2;
downArrow_mc.move(0, virtualHeight - _local2);
setScrollProperties(pageSize, minPos, maxPos, largeScroll);
}
function dispatchScrollEvent(detail) {
dispatchEvent({type:"scroll", detail:detail});
}
function isScrollBarKey(k) {
if (k == 36) {
if (scrollPosition != 0) {
scrollPosition = (0);
dispatchScrollEvent(minMode);
}
return(true);
}
if (k == 35) {
if (scrollPosition < maxPos) {
scrollPosition = (maxPos);
dispatchScrollEvent(maxMode);
}
return(true);
}
return(false);
}
function scrollIt(inc, mode) {
var _local3 = smallScroll;
if (inc != "Line") {
_local3 = ((largeScroll == 0) ? (pageSize) : (largeScroll));
}
var _local2 = _scrollPosition + (mode * _local3);
if (_local2 > maxPos) {
_local2 = maxPos;
} else if (_local2 < minPos) {
_local2 = minPos;
}
if (scrollPosition != _local2) {
scrollPosition = (_local2);
var _local4 = ((mode < 0) ? (minusMode) : (plusMode));
dispatchScrollEvent(inc + _local4);
}
}
function startTrackScroller(Void) {
_parent.pressFocus();
if (_parent.scrollTrackDownName.length > 0) {
if (_parent.scrollTrackDown_mc == undefined) {
_parent.setSkin(skinIDTrackDown, scrollTrackDownName);
} else {
_parent.scrollTrackDown_mc.visible = true;
}
}
_parent.trackScroller();
_parent.scrolling = setInterval(_parent, "scrollInterval", getStyle("repeatDelay"), "Page", -1);
}
function scrollInterval(inc, mode) {
clearInterval(scrolling);
if (inc == "Page") {
trackScroller();
} else {
scrollIt(inc, mode);
}
scrolling = setInterval(this, "scrollInterval", getStyle("repeatInterval"), inc, mode);
}
function trackScroller(Void) {
if ((scrollThumb_mc._y + scrollThumb_mc.__get__height()) < _ymouse) {
scrollIt("Page", 1);
} else if (scrollThumb_mc._y > _ymouse) {
scrollIt("Page", -1);
}
}
function dispatchScrollChangedEvent(Void) {
dispatchEvent({type:"scrollChanged"});
}
function stopScrolling(Void) {
clearInterval(_parent.scrolling);
_parent.scrollTrackDown_mc.visible = false;
}
function releaseScrolling(Void) {
_parent.releaseFocus();
stopScrolling();
_parent.dispatchScrollChangedEvent();
}
function trackOver(Void) {
if (_parent.scrollTrackOverName.length > 0) {
if (_parent.scrollTrackOver_mc == undefined) {
_parent.setSkin(skinIDTrackOver, scrollTrackOverName);
} else {
_parent.scrollTrackOver_mc.visible = true;
}
}
}
function trackOut(Void) {
_parent.scrollTrackOver_mc.visible = false;
}
function onUpArrow(Void) {
_parent.scrollIt("Line", -1);
}
function onDownArrow(Void) {
_parent.scrollIt("Line", 1);
}
function onScrollChanged(Void) {
_parent.dispatchScrollChangedEvent();
}
static var symbolOwner = mx.core.UIComponent;
var className = "ScrollBar";
var minPos = 0;
var maxPos = 0;
var pageSize = 0;
var largeScroll = 0;
var smallScroll = 1;
var _scrollPosition = 0;
var scrollTrackName = "ScrollTrack";
var scrollTrackOverName = "";
var scrollTrackDownName = "";
var upArrowName = "BtnUpArrow";
var upArrowUpName = "ScrollUpArrowUp";
var upArrowOverName = "ScrollUpArrowOver";
var upArrowDownName = "ScrollUpArrowDown";
var downArrowName = "BtnDownArrow";
var downArrowUpName = "ScrollDownArrowUp";
var downArrowOverName = "ScrollDownArrowOver";
var downArrowDownName = "ScrollDownArrowDown";
var thumbTopName = "ScrollThumbTopUp";
var thumbMiddleName = "ScrollThumbMiddleUp";
var thumbBottomName = "ScrollThumbBottomUp";
var thumbGripName = "ScrollThumbGripUp";
static var skinIDTrack = 0;
static var skinIDTrackOver = 1;
static var skinIDTrackDown = 2;
static var skinIDUpArrow = 3;
static var skinIDDownArrow = 4;
static var skinIDThumb = 5;
var idNames = new Array("scrollTrack_mc", "scrollTrackOver_mc", "scrollTrackDown_mc", "upArrow_mc", "downArrow_mc");
var clipParameters = {minPos:1, maxPos:1, pageSize:1, scrollPosition:1, lineScrollSize:1, pageScrollSize:1, visible:1, enabled:1};
static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.controls.scrollClasses.ScrollBar.prototype.clipParameters, mx.core.UIComponent.prototype.clipParameters);
var initializing = true;
}
Symbol 180 MovieClip [__Packages.mx.core.ScrollView] Frame 0
class mx.core.ScrollView extends mx.core.View
{
var __width, hScroller, vScroller, __maxHPosition, propsInited, scrollAreaChanged, specialHScrollCase, createObject, viewableColumns, __height, oldRndUp, viewableRows, __viewMetrics, owner, enabled, border_mc, __get__width, __get__height, invLayout, mask_mc, _parent, dispatchEvent;
function ScrollView () {
super();
}
function getHScrollPolicy(Void) {
return(__hScrollPolicy);
}
function setHScrollPolicy(policy) {
__hScrollPolicy = policy.toLowerCase();
if (__width == undefined) {
return(undefined);
}
setScrollProperties(numberOfCols, columnWidth, rowC, rowH, heightPadding, widthPadding);
}
function get hScrollPolicy() {
return(getHScrollPolicy());
}
function set hScrollPolicy(policy) {
setHScrollPolicy(policy);
//return(hScrollPolicy);
}
function getVScrollPolicy(Void) {
return(__vScrollPolicy);
}
function setVScrollPolicy(policy) {
__vScrollPolicy = policy.toLowerCase();
if (__width == undefined) {
return(undefined);
}
setScrollProperties(numberOfCols, columnWidth, rowC, rowH, heightPadding, widthPadding);
}
function get vScrollPolicy() {
return(getVScrollPolicy());
}
function set vScrollPolicy(policy) {
setVScrollPolicy(policy);
//return(vScrollPolicy);
}
function get hPosition() {
return(getHPosition());
}
function set hPosition(pos) {
setHPosition(pos);
//return(hPosition);
}
function getHPosition(Void) {
return(__hPosition);
}
function setHPosition(pos) {
hScroller.__set__scrollPosition(pos);
__hPosition = pos;
}
function get vPosition() {
return(getVPosition());
}
function set vPosition(pos) {
setVPosition(pos);
//return(vPosition);
}
function getVPosition(Void) {
return(__vPosition);
}
function setVPosition(pos) {
vScroller.__set__scrollPosition(pos);
__vPosition = pos;
}
function get maxVPosition() {
var _local2 = vScroller.maxPos;
return(((_local2 == undefined) ? 0 : (_local2)));
}
function get maxHPosition() {
return(getMaxHPosition());
}
function set maxHPosition(pos) {
setMaxHPosition(pos);
//return(maxHPosition);
}
function getMaxHPosition(Void) {
if (__maxHPosition != undefined) {
return(__maxHPosition);
}
var _local2 = hScroller.maxPos;
return(((_local2 == undefined) ? 0 : (_local2)));
}
function setMaxHPosition(pos) {
__maxHPosition = pos;
}
function setScrollProperties(colCount, colWidth, rwCount, rwHeight, hPadding, wPadding) {
var _local3 = getViewMetrics();
if (hPadding == undefined) {
hPadding = 0;
}
if (wPadding == undefined) {
wPadding = 0;
}
propsInited = true;
delete scrollAreaChanged;
heightPadding = hPadding;
widthPadding = wPadding;
if (colWidth == 0) {
colWidth = 1;
}
if (rwHeight == 0) {
rwHeight = 1;
}
var _local5 = Math.ceil((((__width - _local3.left) - _local3.right) - widthPadding) / colWidth);
if ((__hScrollPolicy == "on") || ((_local5 < colCount) && (__hScrollPolicy == "auto"))) {
if ((hScroller == undefined) || (specialHScrollCase)) {
delete specialHScrollCase;
hScroller = createObject("HScrollBar", "hSB", 1001);
hScroller.__set__lineScrollSize(20);
hScroller.scrollHandler = scrollProxy;
hScroller.__set__scrollPosition(__hPosition);
scrollAreaChanged = true;
}
if ((((numberOfCols != colCount) || (columnWidth != colWidth)) || (viewableColumns != _local5)) || (scrollAreaChanged)) {
hScroller.setScrollProperties(_local5, 0, colCount - _local5);
viewableColumns = _local5;
numberOfCols = colCount;
columnWidth = colWidth;
}
} else if (((__hScrollPolicy == "auto") || (__hScrollPolicy == "off")) && (hScroller != undefined)) {
hScroller.removeMovieClip();
delete hScroller;
scrollAreaChanged = true;
}
if (heightPadding == undefined) {
heightPadding = 0;
}
var _local4 = Math.ceil((((__height - _local3.top) - _local3.bottom) - heightPadding) / rwHeight);
var _local8 = (((__height - _local3.top) - _local3.bottom) % rwHeight) != 0;
if ((__vScrollPolicy == "on") || ((_local4 < (rwCount + _local8)) && (__vScrollPolicy == "auto"))) {
if (vScroller == undefined) {
vScroller = createObject("VScrollBar", "vSB", 1002);
vScroller.scrollHandler = scrollProxy;
vScroller.__set__scrollPosition(__vPosition);
scrollAreaChanged = true;
rowH = 0;
}
if ((((rowC != rwCount) || (rowH != rwHeight)) || ((viewableRows + _local8) != (_local4 + oldRndUp))) || (scrollAreaChanged)) {
vScroller.setScrollProperties(_local4, 0, (rwCount - _local4) + _local8);
viewableRows = _local4;
rowC = rwCount;
rowH = rwHeight;
oldRndUp = _local8;
}
} else if (((__vScrollPolicy == "auto") || (__vScrollPolicy == "off")) && (vScroller != undefined)) {
vScroller.removeMovieClip();
delete vScroller;
scrollAreaChanged = true;
}
numberOfCols = colCount;
columnWidth = colWidth;
if (scrollAreaChanged) {
doLayout();
var _local2 = __viewMetrics;
var _local12 = ((owner != undefined) ? (owner) : this);
_local12.layoutContent(_local2.left, _local2.top, ((columnWidth * numberOfCols) - _local2.left) - _local2.right, rowC * rowH, (__width - _local2.left) - _local2.right, (__height - _local2.top) - _local2.bottom);
}
if (!enabled) {
setEnabled(false);
}
}
function getViewMetrics(Void) {
var _local2 = __viewMetrics;
var _local3 = border_mc.__get__borderMetrics();
_local2.left = _local3.left;
_local2.right = _local3.right;
if (vScroller != undefined) {
_local2.right = _local2.right + vScroller.minWidth;
}
_local2.top = _local3.top;
if ((hScroller == undefined) && ((__hScrollPolicy == "on") || (__hScrollPolicy == true))) {
hScroller = createObject("FHScrollBar", "hSB", 1001);
specialHScrollCase = true;
}
_local2.bottom = _local3.bottom;
if (hScroller != undefined) {
_local2.bottom = _local2.bottom + hScroller.minHeight;
}
return(_local2);
}
function doLayout(Void) {
var _local10 = __get__width();
var _local8 = __get__height();
delete invLayout;
var _local3 = (__viewMetrics = getViewMetrics());
var _local2 = _local3.left;
var _local9 = _local3.right;
var _local5 = _local3.top;
var _local11 = _local3.bottom;
var _local7 = hScroller;
var _local6 = vScroller;
_local7.setSize((_local10 - _local2) - _local9, _local7.minHeight + 0);
_local7.move(_local2, _local8 - _local11);
_local6.setSize(_local6.minWidth + 0, (_local8 - _local5) - _local11);
_local6.move(_local10 - _local9, _local5);
var _local4 = mask_mc;
_local4._width = (_local10 - _local2) - _local9;
_local4._height = (_local8 - _local5) - _local11;
_local4._x = _local2;
_local4._y = _local5;
}
function createChild(id, name, props) {
var _local2 = super.createChild(id, name, props);
return(_local2);
}
function init(Void) {
super.init();
__viewMetrics = new Object();
if (_global.__SVMouseWheelManager == undefined) {
var _local4 = (_global.__SVMouseWheelManager = new Object());
_local4.onMouseWheel = __onMouseWheel;
Mouse.addListener(_local4);
}
}
function __onMouseWheel(delta, scrollTarget) {
var _local4 = scrollTarget;
var _local1;
while (_local4 != undefined) {
if (_local4 instanceof mx.core.ScrollView) {
_local1 = _local4;
}
_local4 = _local4._parent;
}
if (_local1 != undefined) {
_local4 = ((delta <= 0) ? 1 : -1);
var _local2 = _local1.vScroller.lineScrollSize;
if (_local2 == undefined) {
_local2 = 0;
}
_local2 = Math.max(Math.abs(delta), _local2);
var _local3 = _local1.vPosition + (_local2 * _local4);
_local1.vPosition = Math.max(0, Math.min(_local3, _local1.maxVPosition));
_local1.dispatchEvent({type:"scroll", direction:"vertical", position:_local1.vPosition});
}
}
function createChildren(Void) {
super.createChildren();
if (mask_mc == undefined) {
mask_mc = createObject("BoundingBox", "mask_mc", MASK_DEPTH);
}
mask_mc._visible = false;
}
function invalidate(Void) {
super.invalidate();
}
function draw(Void) {
size();
}
function size(Void) {
super.size();
}
function scrollProxy(docObj) {
_parent.onScroll(docObj);
}
function onScroll(docObj) {
var _local3 = docObj.target;
var _local2 = _local3.scrollPosition;
if (_local3 == vScroller) {
var _local4 = "vertical";
var _local5 = "__vPosition";
} else {
var _local4 = "horizontal";
var _local5 = "__hPosition";
}
this[_local5] = _local2;
dispatchEvent({type:"scroll", direction:_local4, position:_local2});
}
function setEnabled(v) {
vScroller.enabled = (hScroller.enabled = v);
}
function childLoaded(obj) {
super.childLoaded(obj);
obj.setMask(mask_mc);
}
static var symbolName = "ScrollView";
static var symbolOwner = mx.core.ScrollView;
static var version = "2.0.2.126";
var className = "ScrollView";
var __vScrollPolicy = "auto";
var __hScrollPolicy = "off";
var __vPosition = 0;
var __hPosition = 0;
var numberOfCols = 0;
var rowC = 0;
var columnWidth = 1;
var rowH = 0;
var heightPadding = 0;
var widthPadding = 0;
var MASK_DEPTH = 10000;
}
Symbol 181 MovieClip [__Packages.mx.controls.listclasses.DataProvider] Frame 0
class mx.controls.listclasses.DataProvider extends Object
{
var length, splice, dispatchEvent, sortOn, reverse, sort;
function DataProvider (obj) {
super();
}
static function Initialize(obj) {
var _local4 = mixinProps;
var _local6 = _local4.length;
obj = obj.prototype;
var _local3 = 0;
while (_local3 < _local6) {
obj[_local4[_local3]] = mixins[_local4[_local3]];
_global.ASSetPropFlags(obj, _local4[_local3], 1);
_local3++;
}
mx.events.EventDispatcher.initialize(obj);
_global.ASSetPropFlags(obj, "addEventListener", 1);
_global.ASSetPropFlags(obj, "removeEventListener", 1);
_global.ASSetPropFlags(obj, "dispatchEvent", 1);
_global.ASSetPropFlags(obj, "dispatchQueue", 1);
Object.prototype.LargestID = 0;
Object.prototype.getID = function () {
if (this.__ID__ == undefined) {
this.__ID__ = Object.prototype.LargestID++;
_global.ASSetPropFlags(this, "__ID__", 1);
}
return(this.__ID__);
};
_global.ASSetPropFlags(Object.prototype, "LargestID", 1);
_global.ASSetPropFlags(Object.prototype, "getID", 1);
return(true);
}
function addItemAt(index, value) {
if (index < length) {
splice(index, 0, value);
} else if (index > length) {
trace("Cannot add an item past the end of the DataProvider");
return(undefined);
}
this[index] = value;
updateViews("addItems", index, index);
}
function addItem(value) {
addItemAt(length, value);
}
function addItemsAt(index, newItems) {
index = Math.min(length, index);
newItems.unshift(index, 0);
splice.apply(this, newItems);
newItems.splice(0, 2);
updateViews("addItems", index, (index + newItems.length) - 1);
}
function removeItemsAt(index, len) {
var _local3 = new Array();
var _local2 = 0;
while (_local2 < len) {
_local3.push(getItemID(index + _local2));
_local2++;
}
var _local6 = splice(index, len);
dispatchEvent({type:"modelChanged", eventName:"removeItems", firstItem:index, lastItem:(index + len) - 1, removedItems:_local6, removedIDs:_local3});
}
function removeItemAt(index) {
var _local2 = this[index];
removeItemsAt(index, 1);
return(_local2);
}
function removeAll(Void) {
splice(0);
updateViews("removeItems", 0, length - 1);
}
function replaceItemAt(index, itemObj) {
if ((index < 0) || (index >= length)) {
return(undefined);
}
var _local3 = getItemID(index);
this[index] = itemObj;
this[index].__ID__ = _local3;
updateViews("updateItems", index, index);
}
function getItemAt(index) {
return(this[index]);
}
function getItemID(index) {
var _local2 = this[index];
if ((typeof(_local2) != "object") && (_local2 != undefined)) {
return(index);
}
return(_local2.getID());
}
function sortItemsBy(fieldName, order) {
if (typeof(order) == "string") {
sortOn(fieldName);
if (order.toUpperCase() == "DESC") {
reverse();
}
} else {
sortOn(fieldName, order);
}
updateViews("sort");
}
function sortItems(compareFunc, optionFlags) {
sort(compareFunc, optionFlags);
updateViews("sort");
}
function editField(index, fieldName, newData) {
this[index][fieldName] = newData;
dispatchEvent({type:"modelChanged", eventName:"updateField", firstItem:index, lastItem:index, fieldName:fieldName});
}
function getEditingData(index, fieldName) {
return(this[index][fieldName]);
}
function updateViews(event, first, last) {
dispatchEvent({type:"modelChanged", eventName:event, firstItem:first, lastItem:last});
}
static var mixinProps = ["addView", "addItem", "addItemAt", "removeAll", "removeItemAt", "replaceItemAt", "getItemAt", "getItemID", "sortItemsBy", "sortItems", "updateViews", "addItemsAt", "removeItemsAt", "getEditingData", "editField"];
static var evtDipatcher = mx.events.EventDispatcher;
static var mixins = new mx.controls.listclasses.DataProvider();
}
Symbol 182 MovieClip [__Packages.mx.controls.listclasses.ScrollSelectList] Frame 0
class mx.controls.listclasses.ScrollSelectList extends mx.core.ScrollView
{
var invLayoutContent, rows, topRowZ, listContent, __dataProvider, __vPosition, tW, layoutX, layoutY, tH, invRowHeight, invalidate, __height, invUpdateControl, __cellRenderer, __labelFunction, __iconField, __iconFunction, getLength, baseRowZ, lastPosition, propertyTable, isSelected, wasKeySelected, changeFlag, clearSelected, selectItem, lastSelected, dispatchEvent, dragScrolling, _ymouse, scrollInterval, isPressed, onMouseUp, getSelectedIndex, enabled, tabEnabled, tabChildren, createEmptyMovieClip, border_mc;
function ScrollSelectList () {
super();
}
function layoutContent(x, y, w, h) {
delete invLayoutContent;
var _local4 = Math.ceil(h / __rowHeight);
roundUp = (h % __rowHeight) != 0;
var _local12 = _local4 - __rowCount;
if (_local12 < 0) {
var _local3 = _local4;
while (_local3 < __rowCount) {
rows[_local3].removeMovieClip();
delete rows[_local3];
_local3++;
}
topRowZ = topRowZ + _local12;
} else if (_local12 > 0) {
if (rows == undefined) {
rows = new Array();
}
var _local3 = __rowCount;
while (_local3 < _local4) {
var _local2 = (rows[_local3] = listContent.createObject(__rowRenderer, "listRow" + (topRowZ++), topRowZ, {owner:this, styleName:this, rowIndex:_local3}));
_local2._x = x;
_local2._y = Math.round((_local3 * __rowHeight) + y);
_local2.setSize(w, __rowHeight);
_local2.drawRow(__dataProvider.getItemAt(__vPosition + _local3), getStateAt(__vPosition + _local3));
_local2.lastY = _local2._y;
_local3++;
}
}
if (w != tW) {
var _local11 = ((_local12 > 0) ? (__rowCount) : (_local4));
var _local3 = 0;
while (_local3 < _local11) {
rows[_local3].setSize(w, __rowHeight);
_local3++;
}
}
if ((layoutX != x) || (layoutY != y)) {
var _local3 = 0;
while (_local3 < _local4) {
rows[_local3]._x = x;
rows[_local3]._y = Math.round((_local3 * __rowHeight) + y);
_local3++;
}
}
__rowCount = _local4;
layoutX = x;
layoutY = y;
tW = w;
tH = h;
}
function getRowHeight(Void) {
return(__rowHeight);
}
function setRowHeight(v) {
__rowHeight = v;
invRowHeight = true;
invalidate();
}
function get rowHeight() {
return(getRowHeight());
}
function set rowHeight(w) {
setRowHeight(w);
//return(rowHeight);
}
function setRowCount(v) {
__rowCount = v;
}
function getRowCount(Void) {
var _local2 = ((__rowCount == 0) ? (Math.ceil(__height / __rowHeight)) : (__rowCount));
return(_local2);
}
function get rowCount() {
return(getRowCount());
}
function set rowCount(w) {
setRowCount(w);
//return(rowCount);
}
function setEnabled(v) {
super.setEnabled(v);
invUpdateControl = true;
invalidate();
}
function setCellRenderer(cR) {
__cellRenderer = cR;
var _local2 = 0;
while (_local2 < rows.length) {
rows[_local2].setCellRenderer(true);
_local2++;
}
invUpdateControl = true;
invalidate();
}
function set cellRenderer(cR) {
setCellRenderer(cR);
//return(cellRenderer);
}
function get cellRenderer() {
return(__cellRenderer);
}
function set labelField(field) {
setLabelField(field);
//return(labelField);
}
function setLabelField(field) {
__labelField = field;
invUpdateControl = true;
invalidate();
}
function get labelField() {
return(__labelField);
}
function set labelFunction(func) {
setLabelFunction(func);
//return(labelFunction);
}
function setLabelFunction(func) {
__labelFunction = func;
invUpdateControl = true;
invalidate();
}
function get labelFunction() {
return(__labelFunction);
}
function set iconField(field) {
setIconField(field);
//return(iconField);
}
function setIconField(field) {
__iconField = field;
invUpdateControl = true;
invalidate();
}
function get iconField() {
return(__iconField);
}
function set iconFunction(func) {
setIconFunction(func);
//return(iconFunction);
}
function setIconFunction(func) {
__iconFunction = func;
invUpdateControl = true;
invalidate();
}
function get iconFunction() {
return(__iconFunction);
}
function setVPosition(pos) {
if (pos < 0) {
return(undefined);
}
if ((pos > 0) && (pos > ((getLength() - __rowCount) + roundUp))) {
return(undefined);
}
var _local8 = pos - __vPosition;
if (_local8 == 0) {
return(undefined);
}
__vPosition = pos;
var _local10 = _local8 > 0;
_local8 = Math.abs(_local8);
if (_local8 >= __rowCount) {
updateControl();
} else {
var _local4 = new Array();
var _local9 = __rowCount - _local8;
var _local12 = _local8 * __rowHeight;
var _local11 = _local9 * __rowHeight;
var _local6 = (_local10 ? 1 : -1);
var _local3 = 0;
while (_local3 < __rowCount) {
if (((_local3 < _local8) && (_local10)) || ((_local3 >= _local9) && (!_local10))) {
rows[_local3]._y = rows[_local3]._y + Math.round(_local6 * _local11);
var _local5 = _local3 + (_local6 * _local9);
var _local7 = __vPosition + _local5;
_local4[_local5] = rows[_local3];
_local4[_local5].rowIndex = _local5;
_local4[_local5].drawRow(__dataProvider.getItemAt(_local7), getStateAt(_local7), false);
} else {
rows[_local3]._y = rows[_local3]._y - Math.round(_local6 * _local12);
var _local5 = _local3 - (_local6 * _local8);
_local4[_local5] = rows[_local3];
_local4[_local5].rowIndex = _local5;
}
_local3++;
}
rows = _local4;
_local3 = 0;
while (_local3 < __rowCount) {
rows[_local3].swapDepths(baseRowZ + _local3);
_local3++;
}
}
lastPosition = pos;
super.setVPosition(pos);
}
function setPropertiesAt(index, obj) {
var _local2 = __dataProvider.getItemID(index);
if (_local2 == undefined) {
return(undefined);
}
if (propertyTable == undefined) {
propertyTable = new Object();
}
propertyTable[_local2] = obj;
rows[index - __vPosition].drawRow(__dataProvider.getItemAt(index), getStateAt(index));
}
function getPropertiesAt(index) {
var _local2 = __dataProvider.getItemID(index);
if (_local2 == undefined) {
return(undefined);
}
return(propertyTable[_local2]);
}
function getPropertiesOf(obj) {
var _local2 = obj.getID();
if (_local2 == undefined) {
return(undefined);
}
return(propertyTable[_local2]);
}
function getStyle(styleProp) {
var _local2 = super.getStyle(styleProp);
var _local3 = mx.styles.StyleManager.colorNames[_local2];
if (_local3 != undefined) {
_local2 = _local3;
}
return(_local2);
}
function updateControl(Void) {
var _local2 = 0;
while (_local2 < __rowCount) {
rows[_local2].drawRow(__dataProvider.getItemAt(_local2 + __vPosition), getStateAt(_local2 + __vPosition));
_local2++;
}
delete invUpdateControl;
}
function getStateAt(index) {
return((isSelected(index) ? "selected" : "normal"));
}
function selectRow(rowIndex, transition, allowChangeEvent) {
if (!selectable) {
return(undefined);
}
var _local3 = __vPosition + rowIndex;
var _local8 = __dataProvider.getItemAt(_local3);
var _local5 = rows[rowIndex];
if (_local8 == undefined) {
return(undefined);
}
if (transition == undefined) {
transition = true;
}
if (allowChangeEvent == undefined) {
allowChangeEvent = wasKeySelected;
}
changeFlag = true;
if (((!multipleSelection) && (!Key.isDown(17))) || ((!Key.isDown(16)) && (!Key.isDown(17)))) {
clearSelected(transition);
selectItem(_local3, true);
lastSelected = _local3;
_local5.drawRow(_local5.item, getStateAt(_local3), transition);
} else if (Key.isDown(16) && (multipleSelection)) {
if (lastSelected == undefined) {
lastSelected = _local3;
}
var _local4 = ((lastSelected < _local3) ? 1 : -1);
clearSelected(false);
var _local2 = lastSelected;
while (_local2 != _local3) {
selectItem(_local2, true);
if ((_local2 >= __vPosition) && (_local2 < (__vPosition + __rowCount))) {
rows[_local2 - __vPosition].drawRow(rows[_local2 - __vPosition].item, "selected", false);
}
_local2 = _local2 + _local4;
}
selectItem(_local3, true);
_local5.drawRow(_local5.item, "selected", transition);
} else if (Key.isDown(17)) {
var _local7 = isSelected(_local3);
if ((!multipleSelection) || (wasKeySelected)) {
clearSelected(transition);
}
if (!((!multipleSelection) && (_local7))) {
selectItem(_local3, !_local7);
var _local9 = ((!_local7) ? "selected" : "normal");
_local5.drawRow(_local5.item, _local9, transition);
}
lastSelected = _local3;
}
if (allowChangeEvent) {
dispatchEvent({type:"change"});
}
delete wasKeySelected;
}
function dragScroll(Void) {
clearInterval(dragScrolling);
if (_ymouse < 0) {
setVPosition(__vPosition - 1);
selectRow(0, false);
var _local2 = Math.min((-_ymouse) - 30, 0);
scrollInterval = (((0.593 * _local2) * _local2) + 1) + minScrollInterval;
dragScrolling = setInterval(this, "dragScroll", scrollInterval);
dispatchEvent({type:"scroll", direction:"vertical", position:__vPosition});
} else if (_ymouse > __height) {
var _local3 = __vPosition;
setVPosition(__vPosition + 1);
if (_local3 != __vPosition) {
selectRow((__rowCount - 1) - roundUp, false);
}
var _local2 = Math.min((_ymouse - __height) - 30, 0);
scrollInterval = (((0.593 * _local2) * _local2) + 1) + minScrollInterval;
dragScrolling = setInterval(this, "dragScroll", scrollInterval);
dispatchEvent({type:"scroll", direction:"vertical", position:__vPosition});
} else {
dragScrolling = setInterval(this, "dragScroll", 15);
}
updateAfterEvent();
}
function __onMouseUp(Void) {
clearInterval(dragScrolling);
delete dragScrolling;
delete dragScrolling;
delete isPressed;
delete onMouseUp;
if (!selectable) {
return(undefined);
}
if (changeFlag) {
dispatchEvent({type:"change"});
}
delete changeFlag;
}
function moveSelBy(incr) {
if (!selectable) {
setVPosition(__vPosition + incr);
return(undefined);
}
var _local3 = getSelectedIndex();
if (_local3 == undefined) {
_local3 = -1;
}
var _local2 = _local3 + incr;
_local2 = Math.max(0, _local2);
_local2 = Math.min(getLength() - 1, _local2);
if (_local2 == _local3) {
return(undefined);
}
if ((_local3 < __vPosition) || (_local3 >= (__vPosition + __rowCount))) {
setVPosition(_local3);
}
if ((_local2 >= ((__vPosition + __rowCount) - roundUp)) || (_local2 < __vPosition)) {
setVPosition(__vPosition + incr);
}
wasKeySelected = true;
selectRow(_local2 - __vPosition, false);
}
function keyDown(e) {
if (selectable) {
if (findInputText()) {
return(undefined);
}
}
if (e.code == 40) {
moveSelBy(1);
} else if (e.code == 38) {
moveSelBy(-1);
} else if (e.code == 34) {
if (selectable) {
var _local3 = getSelectedIndex();
if (_local3 == undefined) {
_local3 = 0;
}
setVPosition(_local3);
}
moveSelBy((__rowCount - 1) - roundUp);
} else if (e.code == 33) {
if (selectable) {
var _local3 = getSelectedIndex();
if (_local3 == undefined) {
_local3 = 0;
}
setVPosition(_local3);
}
moveSelBy((1 - __rowCount) + roundUp);
} else if (e.code == 36) {
moveSelBy(-__dataProvider.length);
} else if (e.code == 35) {
moveSelBy(__dataProvider.length);
}
}
function findInputText(Void) {
var _local2 = Key.getAscii();
if ((_local2 >= 33) && (_local2 <= 126)) {
findString(String.fromCharCode(_local2));
return(true);
}
}
function findString(str) {
if (__dataProvider.length == 0) {
return(undefined);
}
var _local4 = getSelectedIndex();
if (_local4 == undefined) {
_local4 = 0;
}
var _local6 = 0;
var _local3 = _local4 + 1;
while (_local3 != _local4) {
var _local2 = __dataProvider.getItemAt(_local3);
if (_local2 instanceof XMLNode) {
_local2 = _local2.attributes[__labelField];
} else if (typeof(_local2) != "string") {
_local2 = String(_local2[__labelField]);
}
_local2 = _local2.substring(0, str.length);
if ((str == _local2) || (str.toUpperCase() == _local2.toUpperCase())) {
_local6 = _local3 - _local4;
break;
}
if (_local3 >= (getLength() - 1)) {
_local3 = -1;
}
_local3++;
}
if (_local6 != 0) {
moveSelBy(_local6);
}
}
function onRowPress(rowIndex) {
if (!enabled) {
return(undefined);
}
isPressed = true;
dragScrolling = setInterval(this, "dragScroll", 15);
onMouseUp = __onMouseUp;
if (!selectable) {
return(undefined);
}
selectRow(rowIndex);
}
function onRowRelease(rowIndex) {
}
function onRowRollOver(rowIndex) {
if (!enabled) {
return(undefined);
}
var _local2 = rows[rowIndex].item;
if (getStyle("useRollOver") && (_local2 != undefined)) {
rows[rowIndex].drawRow(_local2, "highlighted", false);
}
dispatchEvent({type:"itemRollOver", index:rowIndex + __vPosition});
}
function onRowRollOut(rowIndex) {
if (!enabled) {
return(undefined);
}
if (getStyle("useRollOver")) {
rows[rowIndex].drawRow(rows[rowIndex].item, getStateAt(rowIndex + __vPosition), false);
}
dispatchEvent({type:"itemRollOut", index:rowIndex + __vPosition});
}
function onRowDragOver(rowIndex) {
if (((!enabled) || (isPressed != true)) || (!selectable)) {
return(undefined);
}
if (dropEnabled) {
} else if (dragScrolling) {
selectRow(rowIndex, false);
} else {
onMouseUp = __onMouseUp;
onRowPress(rowIndex);
}
}
function onRowDragOut(rowIndex) {
if (!enabled) {
return(undefined);
}
if (dragEnabled) {
} else {
onRowRollOut(rowIndex);
}
}
function init(Void) {
super.init();
tabEnabled = true;
tabChildren = false;
if (__dataProvider == undefined) {
__dataProvider = new Array();
__dataProvider.addEventListener("modelChanged", this);
}
baseRowZ = (topRowZ = 10);
}
function createChildren(Void) {
super.createChildren();
listContent = createEmptyMovieClip("content_mc", CONTENTDEPTH);
invLayoutContent = true;
invalidate();
}
function draw(Void) {
if (invRowHeight) {
delete invRowHeight;
__rowCount = 0;
listContent.removeMovieClip();
listContent = createEmptyMovieClip("content_mc", CONTENTDEPTH);
}
if (invUpdateControl) {
updateControl();
}
border_mc.draw();
}
function invalidateStyle(propName) {
if (isRowStyle[propName]) {
invUpdateControl = true;
invalidate();
} else {
var _local3 = 0;
while (_local3 < __rowCount) {
rows[_local3].invalidateStyle(propName);
_local3++;
}
}
super.invalidateStyle(propName);
}
static var mixIt1 = mx.controls.listclasses.DataSelector.Initialize(mx.controls.listclasses.ScrollSelectList);
static var mixIt2 = mx.controls.listclasses.DataProvider.Initialize(Array);
var CONTENTDEPTH = 100;
var __hPosition = 0;
var __rowRenderer = "SelectableRow";
var __rowHeight = 22;
var __rowCount = 0;
var __labelField = "label";
var minScrollInterval = 30;
var dropEnabled = false;
var dragEnabled = false;
var className = "ScrollSelectList";
var isRowStyle = {styleName:true, backgroundColor:true, selectionColor:true, rollOverColor:true, selectionDisabledColor:true, backgroundDisabledColor:true, textColor:true, textSelectedColor:true, textRollOverColor:true, textDisabledColor:true, alternatingRowColors:true, defaultIcon:true};
var roundUp = 0;
var selectable = true;
var multipleSelection = false;
}
Symbol 183 MovieClip [__Packages.mx.controls.List] Frame 0
class mx.controls.List extends mx.controls.listclasses.ScrollSelectList
{
var border_mc, __labels, setDataProvider, roundUp, __get__rowCount, __dataProvider, __maxHPosition, invScrollProps, invalidate, __vPosition, getViewMetrics, setSize, __width, __rowHeight, totalWidth, totalHeight, displayWidth, __hScrollPolicy, vScroller, __hPosition, listContent, data, mask_mc, __height, __rowCount, invRowHeight, invLayoutContent, setScrollProperties, oldVWidth;
function List () {
super();
}
function setEnabled(v) {
super.setEnabled(v);
border_mc.backgroundColorName = (v ? "backgroundColor" : "backgroundDisabledColor");
border_mc.invalidate();
}
function get labels() {
return(__labels);
}
function set labels(lbls) {
__labels = lbls;
setDataProvider(lbls);
//return(labels);
}
function setVPosition(pos) {
pos = Math.min((__dataProvider.length - __get__rowCount()) + roundUp, pos);
pos = Math.max(0, pos);
super.setVPosition(pos);
}
function setHPosition(pos) {
pos = Math.max(Math.min(__maxHPosition, pos), 0);
super.setHPosition(pos);
hScroll(pos);
}
function setMaxHPosition(pos) {
__maxHPosition = pos;
invScrollProps = true;
invalidate();
}
function setHScrollPolicy(policy) {
if ((policy.toLowerCase() == "auto") && (!autoHScrollAble)) {
return(undefined);
}
super.setHScrollPolicy(policy);
if (policy == "off") {
setHPosition(0);
setVPosition(Math.min((__dataProvider.length - __get__rowCount()) + roundUp, __vPosition));
}
}
function setRowCount(rC) {
if (isNaN(rC)) {
return(undefined);
}
var _local2 = getViewMetrics();
setSize(__width, ((__rowHeight * rC) + _local2.top) + _local2.bottom);
}
function layoutContent(x, y, tW, tH, dW, dH) {
totalWidth = tW;
totalHeight = tH;
displayWidth = dW;
var _local4 = (((__hScrollPolicy == "on") || (__hScrollPolicy == "auto")) ? (Math.max(tW, dW)) : (dW));
super.layoutContent(x, y, _local4, dH);
}
function modelChanged(eventObj) {
super.modelChanged(eventObj);
var _local3 = eventObj.eventName;
if ((((_local3 == "addItems") || (_local3 == "removeItems")) || (_local3 == "updateAll")) || (_local3 == "filterModel")) {
invScrollProps = true;
invalidate("invScrollProps");
}
}
function onScroll(eventObj) {
var _local3 = eventObj.target;
if (_local3 == vScroller) {
setVPosition(_local3.scrollPosition);
} else {
hScroll(_local3.scrollPosition);
}
super.onScroll(eventObj);
}
function hScroll(pos) {
__hPosition = pos;
listContent._x = -pos;
}
function init(Void) {
super.init();
if (labels.length > 0) {
var _local6 = new Array();
var _local3 = 0;
while (_local3 < labels.length) {
_local6.addItem({label:labels[_local3], data:data[_local3]});
_local3++;
}
setDataProvider(_local6);
}
__maxHPosition = 0;
}
function createChildren(Void) {
super.createChildren();
listContent.setMask(mask_mc);
border_mc.move(0, 0);
border_mc.setSize(__width, __height);
}
function getRowCount(Void) {
var _local2 = getViewMetrics();
return(((__rowCount == 0) ? (Math.ceil(((__height - _local2.top) - _local2.bottom) / __rowHeight)) : (__rowCount)));
}
function size(Void) {
super.size();
configureScrolling();
var _local3 = getViewMetrics();
layoutContent(_local3.left, _local3.top, __width + __maxHPosition, totalHeight, (__width - _local3.left) - _local3.right, (__height - _local3.top) - _local3.bottom);
}
function draw(Void) {
if (invRowHeight) {
invScrollProps = true;
super.draw();
listContent.setMask(mask_mc);
invLayoutContent = true;
}
if (invScrollProps) {
configureScrolling();
delete invScrollProps;
}
if (invLayoutContent) {
var _local3 = getViewMetrics();
layoutContent(_local3.left, _local3.top, __width + __maxHPosition, totalHeight, (__width - _local3.left) - _local3.right, (__height - _local3.top) - _local3.bottom);
}
super.draw();
}
function configureScrolling(Void) {
var _local2 = __dataProvider.length;
if (__vPosition > Math.max(0, (_local2 - getRowCount()) + roundUp)) {
setVPosition(Math.max(0, Math.min((_local2 - getRowCount()) + roundUp, __vPosition)));
}
var _local3 = getViewMetrics();
var _local4 = ((__hScrollPolicy != "off") ? (((__maxHPosition + __width) - _local3.left) - _local3.right) : ((__width - _local3.left) - _local3.right));
if (_local2 == undefined) {
_local2 = 0;
}
setScrollProperties(_local4, 1, _local2, __rowHeight);
if (oldVWidth != _local4) {
invLayoutContent = true;
}
oldVWidth = _local4;
}
static var symbolOwner = mx.controls.List;
static var symbolName = "List";
var className = "List";
static var version = "2.0.2.126";
var clipParameters = {rowHeight:1, enabled:1, visible:1, labels:1};
var scrollDepth = 1;
var __vScrollPolicy = "on";
var autoHScrollAble = false;
}
Symbol 184 MovieClip [__Packages.mx.effects.Tween] Frame 0
class mx.effects.Tween extends Object
{
static var IntervalToken;
var arrayMode, listener, initVal, endVal, startTime, updateFunc, endFunc, ID;
function Tween (listenerObj, init, end, dur) {
super();
if (listenerObj == undefined) {
return;
}
if (typeof(init) != "number") {
arrayMode = true;
}
listener = listenerObj;
initVal = init;
endVal = end;
if (dur != undefined) {
duration = dur;
}
startTime = getTimer();
if (duration == 0) {
endTween();
} else {
AddTween(this);
}
}
static function AddTween(tween) {
tween.ID = ActiveTweens.length;
ActiveTweens.push(tween);
if (IntervalToken == undefined) {
Dispatcher.DispatchTweens = DispatchTweens;
IntervalToken = setInterval(Dispatcher, "DispatchTweens", Interval);
}
}
static function RemoveTweenAt(index) {
var _local2 = ActiveTweens;
if (((index >= _local2.length) || (index < 0)) || (index == undefined)) {
return(undefined);
}
_local2.splice(index, 1);
var _local4 = _local2.length;
var _local1 = index;
while (_local1 < _local4) {
_local2[_local1].ID--;
_local1++;
}
if (_local4 == 0) {
clearInterval(IntervalToken);
delete IntervalToken;
}
}
static function DispatchTweens(Void) {
var _local2 = ActiveTweens;
var _local3 = _local2.length;
var _local1 = 0;
while (_local1 < _local3) {
_local2[_local1].doInterval();
_local1++;
}
updateAfterEvent();
}
function doInterval() {
var _local2 = getTimer() - startTime;
var _local3 = getCurVal(_local2);
if (_local2 >= duration) {
endTween();
} else if (updateFunc != undefined) {
listener[updateFunc](_local3);
} else {
listener.onTweenUpdate(_local3);
}
}
function getCurVal(curTime) {
if (arrayMode) {
var _local3 = new Array();
var _local2 = 0;
while (_local2 < initVal.length) {
_local3[_local2] = easingEquation(curTime, initVal[_local2], endVal[_local2] - initVal[_local2], duration);
_local2++;
}
return(_local3);
}
return(easingEquation(curTime, initVal, endVal - initVal, duration));
}
function endTween() {
if (endFunc != undefined) {
listener[endFunc](endVal);
} else {
listener.onTweenEnd(endVal);
}
RemoveTweenAt(ID);
}
function setTweenHandlers(update, end) {
updateFunc = update;
endFunc = end;
}
function easingEquation(t, b, c, d) {
return(((c / 2) * (Math.sin(Math.PI * ((t / d) - 0.5)) + 1)) + b);
}
static var ActiveTweens = new Array();
static var Interval = 10;
static var Dispatcher = new Object();
var duration = 3000;
}
Symbol 185 MovieClip [__Packages.mx.skins.ColoredSkinElement] Frame 0
class mx.skins.ColoredSkinElement
{
var getStyle, _color, onEnterFrame;
function ColoredSkinElement () {
}
function setColor(c) {
if (c != undefined) {
var _local2 = new Color(this);
_local2.setRGB(c);
}
}
function draw(Void) {
setColor(getStyle(_color));
onEnterFrame = undefined;
}
function invalidateStyle(Void) {
onEnterFrame = draw;
}
static function setColorStyle(p, colorStyle) {
if (p._color == undefined) {
p._color = colorStyle;
}
p.setColor = mixins.setColor;
p.invalidateStyle = mixins.invalidateStyle;
p.draw = mixins.draw;
p.setColor(p.getStyle(colorStyle));
}
static var mixins = new mx.skins.ColoredSkinElement();
}
Symbol 186 MovieClip [__Packages.mx.core.ext.UIObjectExtensions] Frame 0
class mx.core.ext.UIObjectExtensions
{
function UIObjectExtensions () {
}
static function addGeometry(tf, ui) {
tf.addProperty("width", ui.__get__width, null);
tf.addProperty("height", ui.__get__height, null);
tf.addProperty("left", ui.__get__left, null);
tf.addProperty("x", ui.__get__x, null);
tf.addProperty("top", ui.__get__top, null);
tf.addProperty("y", ui.__get__y, null);
tf.addProperty("right", ui.__get__right, null);
tf.addProperty("bottom", ui.__get__bottom, null);
tf.addProperty("visible", ui.__get__visible, ui.__set__visible);
}
static function Extensions() {
if (bExtended == true) {
return(true);
}
bExtended = true;
var _local6 = mx.core.UIObject.prototype;
var _local9 = mx.skins.SkinElement.prototype;
addGeometry(_local9, _local6);
mx.events.UIEventDispatcher.initialize(_local6);
var _local13 = mx.skins.ColoredSkinElement;
mx.styles.CSSTextStyles.addTextStyles(_local6);
var _local5 = MovieClip.prototype;
_local5.getTopLevel = _local6.getTopLevel;
_local5.createLabel = _local6.createLabel;
_local5.createObject = _local6.createObject;
_local5.createClassObject = _local6.createClassObject;
_local5.createEmptyObject = _local6.createEmptyObject;
_local5.destroyObject = _local6.destroyObject;
_global.ASSetPropFlags(_local5, "getTopLevel", 1);
_global.ASSetPropFlags(_local5, "createLabel", 1);
_global.ASSetPropFlags(_local5, "createObject", 1);
_global.ASSetPropFlags(_local5, "createClassObject", 1);
_global.ASSetPropFlags(_local5, "createEmptyObject", 1);
_global.ASSetPropFlags(_local5, "destroyObject", 1);
_local5.__getTextFormat = _local6.__getTextFormat;
_local5._getTextFormat = _local6._getTextFormat;
_local5.getStyleName = _local6.getStyleName;
_local5.getStyle = _local6.getStyle;
_global.ASSetPropFlags(_local5, "__getTextFormat", 1);
_global.ASSetPropFlags(_local5, "_getTextFormat", 1);
_global.ASSetPropFlags(_local5, "getStyleName", 1);
_global.ASSetPropFlags(_local5, "getStyle", 1);
var _local7 = TextField.prototype;
addGeometry(_local7, _local6);
_local7.addProperty("enabled", function () {
return(this.__enabled);
}, function (x) {
this.__enabled = x;
this.invalidateStyle();
});
_local7.move = _local9.move;
_local7.setSize = _local9.setSize;
_local7.invalidateStyle = function () {
this.invalidateFlag = true;
};
_local7.draw = function () {
if (this.invalidateFlag) {
this.invalidateFlag = false;
var _local2 = this._getTextFormat();
this.setTextFormat(_local2);
this.setNewTextFormat(_local2);
this.embedFonts = _local2.embedFonts == true;
if (this.__text != undefined) {
if (this.text == "") {
this.text = this.__text;
}
delete this.__text;
}
this._visible = true;
}
};
_local7.setColor = function (color) {
this.textColor = color;
};
_local7.getStyle = _local5.getStyle;
_local7.__getTextFormat = _local6.__getTextFormat;
_local7.setValue = function (v) {
this.text = v;
};
_local7.getValue = function () {
return(this.text);
};
_local7.addProperty("value", function () {
return(this.getValue());
}, function (v) {
this.setValue(v);
});
_local7._getTextFormat = function () {
var _local2 = this.stylecache.tf;
if (_local2 != undefined) {
return(_local2);
}
_local2 = new TextFormat();
this.__getTextFormat(_local2);
this.stylecache.tf = _local2;
if (this.__enabled == false) {
if (this.enabledColor == undefined) {
var _local4 = this.getTextFormat();
this.enabledColor = _local4.color;
}
var _local3 = this.getStyle("disabledColor");
_local2.color = _local3;
} else if (this.enabledColor != undefined) {
if (_local2.color == undefined) {
_local2.color = this.enabledColor;
}
}
return(_local2);
};
_local7.getPreferredWidth = function () {
this.draw();
return(this.textWidth + 4);
};
_local7.getPreferredHeight = function () {
this.draw();
return(this.textHeight + 4);
};
TextFormat.prototype.getTextExtent2 = function (s) {
var _local3 = _root._getTextExtent;
if (_local3 == undefined) {
_root.createTextField("_getTextExtent", -2, 0, 0, 1000, 100);
_local3 = _root._getTextExtent;
_local3._visible = false;
}
_root._getTextExtent.text = s;
var _local4 = this.align;
this.align = "left";
_root._getTextExtent.setTextFormat(this);
this.align = _local4;
return({width:_local3.textWidth, height:_local3.textHeight});
};
if (_global.style == undefined) {
_global.style = new mx.styles.CSSStyleDeclaration();
_global.cascadingStyles = true;
_global.styles = new Object();
_global.skinRegistry = new Object();
if (_global._origWidth == undefined) {
_global.origWidth = Stage.width;
_global.origHeight = Stage.height;
}
}
var _local4 = _root;
while (_local4._parent != undefined) {
_local4 = _local4._parent;
}
_local4.addProperty("width", function () {
return(Stage.width);
}, null);
_local4.addProperty("height", function () {
return(Stage.height);
}, null);
_global.ASSetPropFlags(_local4, "width", 1);
_global.ASSetPropFlags(_local4, "height", 1);
return(true);
}
static var bExtended = false;
static var UIObjectExtended = Extensions();
static var UIObjectDependency = mx.core.UIObject;
static var SkinElementDependency = mx.skins.SkinElement;
static var CSSTextStylesDependency = mx.styles.CSSTextStyles;
static var UIEventDispatcherDependency = mx.events.UIEventDispatcher;
}
Symbol 187 MovieClip [__Packages.mx.skins.halo.Defaults] Frame 0
class mx.skins.halo.Defaults
{
var beginGradientFill, beginFill, moveTo, lineTo, curveTo, endFill;
function Defaults () {
}
static function setThemeDefaults() {
var _local2 = _global.style;
_local2.themeColor = 8453965 /* 0x80FF4D */;
_local2.disabledColor = 8684164 /* 0x848284 */;
_local2.modalTransparency = 0;
_local2.filled = true;
_local2.stroked = true;
_local2.strokeWidth = 1;
_local2.strokeColor = 0;
_local2.fillColor = 16777215 /* 0xFFFFFF */;
_local2.repeatInterval = 35;
_local2.repeatDelay = 500;
_local2.fontFamily = "_sans";
_local2.fontSize = 12;
_local2.selectionColor = 13500353 /* 0xCDFFC1 */;
_local2.rollOverColor = 14942166 /* 0xE3FFD6 */;
_local2.useRollOver = true;
_local2.backgroundDisabledColor = 14540253 /* 0xDDDDDD */;
_local2.selectionDisabledColor = 14540253 /* 0xDDDDDD */;
_local2.selectionDuration = 200;
_local2.openDuration = 250;
_local2.borderStyle = "inset";
_local2.color = 734012 /* 0x0B333C */;
_local2.textSelectedColor = 24371;
_local2.textRollOverColor = 2831164 /* 0x2B333C */;
_local2.textDisabledColor = 16777215 /* 0xFFFFFF */;
_local2.vGridLines = true;
_local2.hGridLines = false;
_local2.vGridLineColor = 6710886 /* 0x666666 */;
_local2.hGridLineColor = 6710886 /* 0x666666 */;
_local2.headerColor = 15395562 /* 0xEAEAEA */;
_local2.indentation = 17;
_local2.folderOpenIcon = "TreeFolderOpen";
_local2.folderClosedIcon = "TreeFolderClosed";
_local2.defaultLeafIcon = "TreeNodeIcon";
_local2.disclosureOpenIcon = "TreeDisclosureOpen";
_local2.disclosureClosedIcon = "TreeDisclosureClosed";
_local2.popupDuration = 150;
_local2.todayColor = 6710886 /* 0x666666 */;
_local2 = (_global.styles.ScrollSelectList = new mx.styles.CSSStyleDeclaration());
_local2.backgroundColor = 16777215 /* 0xFFFFFF */;
_local2.borderColor = 13290186 /* 0xCACACA */;
_local2.borderStyle = "inset";
_local2 = (_global.styles.ComboBox = new mx.styles.CSSStyleDeclaration());
_local2.borderStyle = "inset";
_local2 = (_global.styles.NumericStepper = new mx.styles.CSSStyleDeclaration());
_local2.textAlign = "center";
_local2 = (_global.styles.RectBorder = new mx.styles.CSSStyleDeclaration());
_local2.borderColor = 14015965 /* 0xD5DDDD */;
_local2.buttonColor = 7305079 /* 0x6F7777 */;
_local2.shadowColor = 15658734 /* 0xEEEEEE */;
_local2.highlightColor = 12897484 /* 0xC4CCCC */;
_local2.shadowCapColor = 14015965 /* 0xD5DDDD */;
_local2.borderCapColor = 9542041 /* 0x919999 */;
var _local4 = new Object();
_local4.borderColor = 16711680 /* 0xFF0000 */;
_local4.buttonColor = 16711680 /* 0xFF0000 */;
_local4.shadowColor = 16711680 /* 0xFF0000 */;
_local4.highlightColor = 16711680 /* 0xFF0000 */;
_local4.shadowCapColor = 16711680 /* 0xFF0000 */;
_local4.borderCapColor = 16711680 /* 0xFF0000 */;
mx.core.UIComponent.prototype.origBorderStyles = _local4;
var _local3;
_local3 = (_global.styles.TextInput = new mx.styles.CSSStyleDeclaration());
_local3.backgroundColor = 16777215 /* 0xFFFFFF */;
_local3.borderStyle = "inset";
_global.styles.TextArea = _global.styles.TextInput;
_local3 = (_global.styles.Window = new mx.styles.CSSStyleDeclaration());
_local3.borderStyle = "default";
_local3 = (_global.styles.windowStyles = new mx.styles.CSSStyleDeclaration());
_local3.fontWeight = "bold";
_local3 = (_global.styles.dataGridStyles = new mx.styles.CSSStyleDeclaration());
_local3.fontWeight = "bold";
_local3 = (_global.styles.Alert = new mx.styles.CSSStyleDeclaration());
_local3.borderStyle = "alert";
_local3 = (_global.styles.ScrollView = new mx.styles.CSSStyleDeclaration());
_local3.borderStyle = "inset";
_local3 = (_global.styles.View = new mx.styles.CSSStyleDeclaration());
_local3.borderStyle = "none";
_local3 = (_global.styles.ProgressBar = new mx.styles.CSSStyleDeclaration());
_local3.color = 11187123 /* 0xAAB3B3 */;
_local3.fontWeight = "bold";
_local3 = (_global.styles.AccordionHeader = new mx.styles.CSSStyleDeclaration());
_local3.fontWeight = "bold";
_local3.fontSize = "11";
_local3 = (_global.styles.Accordion = new mx.styles.CSSStyleDeclaration());
_local3.borderStyle = "solid";
_local3.backgroundColor = 16777215 /* 0xFFFFFF */;
_local3.borderColor = 9081738 /* 0x8A938A */;
_local3.headerHeight = 22;
_local3.marginLeft = (_local3.marginRight = (_local3.marginTop = (_local3.marginBottom = -1)));
_local3.verticalGap = -1;
_local3 = (_global.styles.DateChooser = new mx.styles.CSSStyleDeclaration());
_local3.borderColor = 9542041 /* 0x919999 */;
_local3.headerColor = 16777215 /* 0xFFFFFF */;
_local3 = (_global.styles.CalendarLayout = new mx.styles.CSSStyleDeclaration());
_local3.fontSize = 10;
_local3.textAlign = "right";
_local3.color = 2831164 /* 0x2B333C */;
_local3 = (_global.styles.WeekDayStyle = new mx.styles.CSSStyleDeclaration());
_local3.fontWeight = "bold";
_local3.fontSize = 11;
_local3.textAlign = "center";
_local3.color = 2831164 /* 0x2B333C */;
_local3 = (_global.styles.TodayStyle = new mx.styles.CSSStyleDeclaration());
_local3.color = 16777215 /* 0xFFFFFF */;
_local3 = (_global.styles.HeaderDateText = new mx.styles.CSSStyleDeclaration());
_local3.fontSize = 12;
_local3.fontWeight = "bold";
_local3.textAlign = "center";
}
function drawRoundRect(x, y, w, h, r, c, alpha, rot, gradient, ratios) {
if (typeof(r) == "object") {
var _local18 = r.br;
var _local16 = r.bl;
var _local15 = r.tl;
var _local10 = r.tr;
} else {
var _local10 = r;
var _local15 = _local10;
var _local16 = _local15;
var _local18 = _local16;
}
if (typeof(c) == "object") {
if (typeof(alpha) != "object") {
var _local9 = [alpha, alpha];
} else {
var _local9 = alpha;
}
if (ratios == undefined) {
ratios = [0, 255];
}
var _local14 = h * 0.7;
if (typeof(rot) != "object") {
var _local11 = {matrixType:"box", x:-_local14, y:_local14, w:w * 2, h:h * 4, r:rot * 0.0174532925199433 /* Math.PI/180 */};
} else {
var _local11 = rot;
}
if (gradient == "radial") {
beginGradientFill("radial", c, _local9, ratios, _local11);
} else {
beginGradientFill("linear", c, _local9, ratios, _local11);
}
} else if (c != undefined) {
beginFill(c, alpha);
}
r = _local18;
var _local13 = r - (r * 0.707106781186547);
var _local12 = r - (r * 0.414213562373095);
moveTo(x + w, (y + h) - r);
lineTo(x + w, (y + h) - r);
curveTo(x + w, (y + h) - _local12, (x + w) - _local13, (y + h) - _local13);
curveTo((x + w) - _local12, y + h, (x + w) - r, y + h);
r = _local16;
_local13 = r - (r * 0.707106781186547);
_local12 = r - (r * 0.414213562373095);
lineTo(x + r, y + h);
curveTo(x + _local12, y + h, x + _local13, (y + h) - _local13);
curveTo(x, (y + h) - _local12, x, (y + h) - r);
r = _local15;
_local13 = r - (r * 0.707106781186547);
_local12 = r - (r * 0.414213562373095);
lineTo(x, y + r);
curveTo(x, y + _local12, x + _local13, y + _local13);
curveTo(x + _local12, y, x + r, y);
r = _local10;
_local13 = r - (r * 0.707106781186547);
_local12 = r - (r * 0.414213562373095);
lineTo((x + w) - r, y);
curveTo((x + w) - _local12, y, (x + w) - _local13, y + _local13);
curveTo(x + w, y + _local12, x + w, y + r);
lineTo(x + w, (y + h) - r);
if (c != undefined) {
endFill();
}
}
static function classConstruct() {
mx.core.ext.UIObjectExtensions.Extensions();
setThemeDefaults();
mx.core.UIObject.prototype.drawRoundRect = mx.skins.halo.Defaults.prototype.drawRoundRect;
return(true);
}
static var classConstructed = classConstruct();
static var CSSStyleDeclarationDependency = mx.styles.CSSStyleDeclaration;
static var UIObjectExtensionsDependency = mx.core.ext.UIObjectExtensions;
static var UIObjectDependency = mx.core.UIObject;
}
Symbol 188 MovieClip [__Packages.mx.managers.FocusManager] Frame 0
class mx.managers.FocusManager extends mx.core.UIComponent
{
var __defaultPushButton, defPushButton, form, move, tabEnabled, _width, _height, _x, _y, _alpha, _parent, tabCapture, watch, lastMouse, _visible, lastFocus, doLater, lastSelFocus, cancelAllDoLaters, _searchKey, _lastTarget, _firstNode, _nextIsNext, _nextNode, _lastx, _prevNode, _needPrev, _foundList, _prevObj, _nextObj, _firstObj, _lastObj, _lastNode, lastTabFocus, findFocusFromObject;
function FocusManager () {
super();
}
function get defaultPushButton() {
return(__defaultPushButton);
}
function set defaultPushButton(x) {
if (x != __defaultPushButton) {
__defaultPushButton.__set__emphasized(false);
__defaultPushButton = x;
defPushButton = x;
x.__set__emphasized(true);
}
//return(defaultPushButton);
}
function getMaxTabIndex(o) {
var _local3 = 0;
var _local6;
for (_local6 in o) {
var _local2 = o[_local6];
if (_local2._parent == o) {
if (_local2.tabIndex != undefined) {
if (_local2.tabIndex > _local3) {
_local3 = _local2.tabIndex;
}
}
if (_local2.tabChildren == true) {
var _local4 = getMaxTabIndex(_local2);
if (_local4 > _local3) {
_local3 = _local4;
}
}
}
}
return(_local3);
}
function getNextTabIndex(Void) {
return(getMaxTabIndex(form) + 1);
}
function get nextTabIndex() {
return(getNextTabIndex());
}
function relocate(Void) {
var _local2 = mx.managers.SystemManager.__get__screen();
move(_local2.x - 1, _local2.y - 1);
}
function init(Void) {
super.init();
tabEnabled = false;
_width = (_height = 1);
_x = (_y = -1);
_alpha = 0;
_parent.focusManager = this;
_parent.tabChildren = true;
_parent.tabEnabled = false;
form = _parent;
_parent.addEventListener("hide", this);
_parent.addEventListener("reveal", this);
mx.managers.SystemManager.init();
mx.managers.SystemManager.addFocusManager(form);
tabCapture.tabIndex = 0;
watch("enabled", enabledChanged);
Selection.addListener(this);
lastMouse = new Object();
_global.ASSetPropFlags(_parent, "focusManager", 1);
_global.ASSetPropFlags(_parent, "tabChildren", 1);
_global.ASSetPropFlags(_parent, "tabEnabled", 1);
}
function enabledChanged(id, oldValue, newValue) {
_visible = newValue;
return(newValue);
}
function activate(Void) {
Key.addListener(this);
activated = (_visible = true);
if (lastFocus != undefined) {
bNeedFocus = true;
if (!mx.managers.SystemManager.isMouseDown) {
doLater(this, "restoreFocus");
}
}
}
function deactivate(Void) {
Key.removeListener(this);
activated = (_visible = false);
var _local2 = getSelectionFocus();
var _local3 = getActualFocus(_local2);
if (isOurFocus(_local3)) {
lastSelFocus = _local2;
lastFocus = _local3;
}
cancelAllDoLaters();
}
function isOurFocus(o) {
if (o.focusManager == this) {
return(true);
}
while (o != undefined) {
if (o.focusManager != undefined) {
return(false);
}
if (o._parent == _parent) {
return(true);
}
o = o._parent;
}
return(false);
}
function onSetFocus(o, n) {
if (n == null) {
if (activated) {
bNeedFocus = true;
}
} else {
var _local2 = getFocus();
if (isOurFocus(_local2)) {
bNeedFocus = false;
lastFocus = _local2;
lastSelFocus = n;
}
}
}
function restoreFocus(Void) {
var _local2 = lastSelFocus.hscroll;
if (_local2 != undefined) {
var _local5 = lastSelFocus.scroll;
var _local4 = lastSelFocus.background;
}
lastFocus.setFocus();
var _local3 = Selection;
Selection.setSelection(_local3.lastBeginIndex, _local3.lastEndIndex);
if (_local2 != undefined) {
lastSelFocus.scroll = _local5;
lastSelFocus.hscroll = _local2;
lastSelFocus.background = _local4;
}
}
function onUnload(Void) {
mx.managers.SystemManager.removeFocusManager(form);
}
function setFocus(o) {
if (o == null) {
Selection.setFocus(null);
} else if (o.setFocus == undefined) {
Selection.setFocus(o);
} else {
o.setFocus();
}
}
function getActualFocus(o) {
var _local1 = o._parent;
while (_local1 != undefined) {
if (_local1.focusTextField != undefined) {
while (_local1.focusTextField != undefined) {
o = _local1;
_local1 = _local1._parent;
if (_local1 == undefined) {
return(undefined);
}
if (_local1.focusTextField == undefined) {
return(o);
}
}
}
if (_local1.tabEnabled != true) {
return(o);
}
o = _local1;
_local1 = o._parent;
}
return(undefined);
}
function getSelectionFocus() {
var m = Selection.getFocus();
var o = eval (m);
return(o);
}
function getFocus(Void) {
var _local2 = getSelectionFocus();
return(getActualFocus(_local2));
}
function walkTree(p, index, groupName, dir, lookup, firstChild) {
var _local5 = true;
var _local11;
for (_local11 in p) {
var _local2 = p[_local11];
if ((((_local2._parent == p) && (_local2.enabled != false)) && (_local2._visible != false)) && ((_local2.tabEnabled == true) || ((_local2.tabEnabled != false) && ((((((((_local2.onPress != undefined) || (_local2.onRelease != undefined)) || (_local2.onReleaseOutside != undefined)) || (_local2.onDragOut != undefined)) || (_local2.onDragOver != undefined)) || (_local2.onRollOver != undefined)) || (_local2.onRollOut != undefined)) || (_local2 instanceof TextField))))) {
if (_local2._searchKey == _searchKey) {
continue;
}
_local2._searchKey = _searchKey;
if (_local2 != _lastTarget) {
if (((_local2.groupName != undefined) || (groupName != undefined)) && (_local2.groupName == groupName)) {
continue;
}
if ((_local2 instanceof TextField) && (_local2.selectable == false)) {
continue;
}
if (_local5 || (((_local2.groupName != undefined) && (_local2.groupName == _firstNode.groupName)) && (_local2.selected == true))) {
if (firstChild) {
_firstNode = _local2;
firstChild = false;
}
}
if (_nextIsNext == true) {
if ((((_local2.groupName != undefined) && (_local2.groupName == _nextNode.groupName)) && (_local2.selected == true)) || ((_nextNode == undefined) && ((_local2.groupName == undefined) || ((_local2.groupName != undefined) && (_local2.groupName != groupName))))) {
_nextNode = _local2;
}
}
if ((_local2.groupName == undefined) || (groupName != _local2.groupName)) {
if (((_lastx.groupName != undefined) && (_local2.groupName == _lastx.groupName)) && (_lastx.selected == true)) {
} else {
_lastx = _local2;
}
}
} else {
_prevNode = _lastx;
_needPrev = false;
_nextIsNext = true;
}
if (_local2.tabIndex != undefined) {
if (_local2.tabIndex == index) {
if (_foundList[_local2._name] == undefined) {
if (_needPrev) {
_prevObj = _local2;
_needPrev = false;
}
_nextObj = _local2;
}
}
if (dir && (_local2.tabIndex > index)) {
if (((_nextObj == undefined) || ((_nextObj.tabIndex > _local2.tabIndex) && (((_local2.groupName == undefined) || (_nextObj.groupName == undefined)) || (_local2.groupName != _nextObj.groupName)))) || ((((_nextObj.groupName != undefined) && (_nextObj.groupName == _local2.groupName)) && (_nextObj.selected != true)) && ((_local2.selected == true) || (_nextObj.tabIndex > _local2.tabIndex)))) {
_nextObj = _local2;
}
} else if ((!dir) && (_local2.tabIndex < index)) {
if (((_prevObj == undefined) || ((_prevObj.tabIndex < _local2.tabIndex) && (((_local2.groupName == undefined) || (_prevObj.groupName == undefined)) || (_local2.groupName != _prevObj.groupName)))) || ((((_prevObj.groupName != undefined) && (_prevObj.groupName == _local2.groupName)) && (_prevObj.selected != true)) && ((_local2.selected == true) || (_prevObj.tabIndex < _local2.tabIndex)))) {
_prevObj = _local2;
}
}
if (((_firstObj == undefined) || ((_local2.tabIndex < _firstObj.tabIndex) && (((_local2.groupName == undefined) || (_firstObj.groupName == undefined)) || (_local2.groupName != _firstObj.groupName)))) || ((((_firstObj.groupName != undefined) && (_firstObj.groupName == _local2.groupName)) && (_firstObj.selected != true)) && ((_local2.selected == true) || (_local2.tabIndex < _firstObj.tabIndex)))) {
_firstObj = _local2;
}
if (((_lastObj == undefined) || ((_local2.tabIndex > _lastObj.tabIndex) && (((_local2.groupName == undefined) || (_lastObj.groupName == undefined)) || (_local2.groupName != _lastObj.groupName)))) || ((((_lastObj.groupName != undefined) && (_lastObj.groupName == _local2.groupName)) && (_lastObj.selected != true)) && ((_local2.selected == true) || (_local2.tabIndex > _lastObj.tabIndex)))) {
_lastObj = _local2;
}
}
if (_local2.tabChildren) {
getTabCandidateFromChildren(_local2, index, groupName, dir, _local5 && (firstChild));
}
_local5 = false;
} else if (((_local2._parent == p) && (_local2.tabChildren == true)) && (_local2._visible != false)) {
if (_local2 == _lastTarget) {
if (_local2._searchKey == _searchKey) {
continue;
}
_local2._searchKey = _searchKey;
if (_prevNode == undefined) {
var _local3 = _lastx;
var _local7 = false;
while (_local3 != undefined) {
if (_local3 == _local2) {
_local7 = true;
break;
}
_local3 = _local3._parent;
}
if (_local7 == false) {
_prevNode = _lastx;
}
}
_needPrev = false;
if (_nextNode == undefined) {
_nextIsNext = true;
}
} else if (!((_local2.focusManager != undefined) && (_local2.focusManager._parent == _local2))) {
if (_local2._searchKey == _searchKey) {
continue;
}
_local2._searchKey = _searchKey;
getTabCandidateFromChildren(_local2, index, groupName, dir, _local5 && (firstChild));
}
_local5 = false;
}
}
_lastNode = _lastx;
if (lookup) {
if (p._parent != undefined) {
if (p != _parent) {
if ((_prevNode == undefined) && (dir)) {
_needPrev = true;
} else if ((_nextNode == undefined) && (!dir)) {
_nextIsNext = false;
}
_lastTarget = _lastTarget._parent;
getTabCandidate(p._parent, index, groupName, dir, true);
}
}
}
}
function getTabCandidate(o, index, groupName, dir, firstChild) {
var _local2;
var _local3 = true;
if (o == _parent) {
_local2 = o;
_local3 = false;
} else {
_local2 = o._parent;
if (_local2 == undefined) {
_local2 = o;
_local3 = false;
}
}
walkTree(_local2, index, groupName, dir, _local3, firstChild);
}
function getTabCandidateFromChildren(o, index, groupName, dir, firstChild) {
walkTree(o, index, groupName, dir, false, firstChild);
}
function getFocusManagerFromObject(o) {
while (o != undefined) {
if (o.focusManager != undefined) {
return(o.focusManager);
}
o = o._parent;
}
return(undefined);
}
function tabHandler(Void) {
bDrawFocus = true;
var _local5 = getSelectionFocus();
var _local4 = getActualFocus(_local5);
if (_local4 != _local5) {
_local5 = _local4;
}
if (getFocusManagerFromObject(_local5) != this) {
_local5 == undefined;
}
if (_local5 == undefined) {
_local5 = form;
} else if (_local5.tabIndex != undefined) {
if ((_foundList != undefined) || (_foundList.tabIndex != _local5.tabIndex)) {
_foundList = new Object();
_foundList.tabIndex = _local5.tabIndex;
}
_foundList[_local5._name] = _local5;
}
var _local3 = Key.isDown(16) != true;
_searchKey = getTimer();
_needPrev = true;
_nextIsNext = false;
_lastx = undefined;
_firstNode = undefined;
_lastNode = undefined;
_nextNode = undefined;
_prevNode = undefined;
_firstObj = undefined;
_lastObj = undefined;
_nextObj = undefined;
_prevObj = undefined;
_lastTarget = _local5;
var _local6 = _local5;
getTabCandidate(_local6, ((_local5.tabIndex == undefined) ? 0 : (_local5.tabIndex)), _local5.groupName, _local3, true);
var _local2;
if (_local3) {
if (_nextObj != undefined) {
_local2 = _nextObj;
} else {
_local2 = _firstObj;
}
} else if (_prevObj != undefined) {
_local2 = _prevObj;
} else {
_local2 = _lastObj;
}
if (_local2.tabIndex != _local5.tabIndex) {
_foundList = new Object();
_foundList.tabIndex = _local2.tabIndex;
_foundList[_local2._name] = _local2;
} else {
if (_foundList == undefined) {
_foundList = new Object();
_foundList.tabIndex = _local2.tabIndex;
}
_foundList[_local2._name] = _local2;
}
if (_local2 == undefined) {
if (_local3 == false) {
if (_nextNode != undefined) {
_local2 = _nextNode;
} else {
_local2 = _firstNode;
}
} else if ((_prevNode == undefined) || (_local5 == form)) {
_local2 = _lastNode;
} else {
_local2 = _prevNode;
}
}
if (_local2 == undefined) {
return(undefined);
}
lastTabFocus = _local2;
setFocus(_local2);
if (_local2.emphasized != undefined) {
if (defPushButton != undefined) {
_local5 = defPushButton;
defPushButton = _local2;
_local5.emphasized = false;
_local2.emphasized = true;
}
} else if ((defPushButton != undefined) && (defPushButton != __defaultPushButton)) {
_local5 = defPushButton;
defPushButton = __defaultPushButton;
_local5.emphasized = false;
__defaultPushButton.__set__emphasized(true);
}
}
function onKeyDown(Void) {
mx.managers.SystemManager.idleFrames = 0;
if (defaultPushButtonEnabled) {
if (Key.getCode() == 13) {
if (defaultPushButton != undefined) {
doLater(this, "sendDefaultPushButtonEvent");
}
}
}
}
function sendDefaultPushButtonEvent(Void) {
defPushButton.dispatchEvent({type:"click"});
}
function getMousedComponentFromChildren(x, y, o) {
for (var _local7 in o) {
var _local2 = o[_local7];
if (((_local2._visible && (_local2.enabled)) && (_local2._parent == o)) && (_local2._searchKey != _searchKey)) {
_local2._searchKey = _searchKey;
if (_local2.hitTest(x, y, true)) {
if ((_local2.onPress != undefined) || (_local2.onRelease != undefined)) {
return(_local2);
}
var _local3 = getMousedComponentFromChildren(x, y, _local2);
if (_local3 != undefined) {
return(_local3);
}
return(_local2);
}
}
}
return(undefined);
}
function mouseActivate(Void) {
if (!bNeedFocus) {
return(undefined);
}
_searchKey = getTimer();
var _local2 = getMousedComponentFromChildren(lastMouse.x, lastMouse.y, form);
if (_local2 instanceof mx.core.UIComponent) {
return(undefined);
}
_local2 = findFocusFromObject(_local2);
if (_local2 == lastFocus) {
return(undefined);
}
if (_local2 == undefined) {
doLater(this, "restoreFocus");
return(undefined);
}
var _local3 = _local2.hscroll;
if (_local3 != undefined) {
var _local6 = _local2.scroll;
var _local5 = _local2.background;
}
setFocus(_local2);
var _local4 = Selection;
Selection.setSelection(_local4.lastBeginIndex, _local4.lastEndIndex);
if (_local3 != undefined) {
_local2.scroll = _local6;
_local2.hscroll = _local3;
_local2.background = _local5;
}
}
function _onMouseDown(Void) {
bDrawFocus = false;
if (lastFocus != undefined) {
lastFocus.drawFocus(false);
}
mx.managers.SystemManager.idleFrames = 0;
var _local3 = Selection;
_local3.lastBeginIndex = Selection.getBeginIndex();
_local3.lastEndIndex = Selection.getEndIndex();
lastMouse.x = _root._xmouse;
lastMouse.y = _root._ymouse;
_root.localToGlobal(lastMouse);
}
function onMouseUp(Void) {
if (_visible) {
doLater(this, "mouseActivate");
}
}
function handleEvent(e) {
if (e.type == "reveal") {
mx.managers.SystemManager.activate(form);
} else {
mx.managers.SystemManager.deactivate(form);
}
}
static function enableFocusManagement() {
if (!initialized) {
initialized = true;
Object.registerClass("FocusManager", mx.managers.FocusManager);
if (_root.focusManager == undefined) {
_root.createClassObject(mx.managers.FocusManager, "focusManager", mx.managers.DepthManager.highestDepth--);
}
}
}
static var symbolName = "FocusManager";
static var symbolOwner = mx.managers.FocusManager;
static var version = "2.0.2.126";
var className = "FocusManager";
var bNeedFocus = false;
var bDrawFocus = false;
var defaultPushButtonEnabled = true;
var activated = true;
static var initialized = false;
static var UIObjectExtensionsDependency = mx.core.ext.UIObjectExtensions;
}
Symbol 189 MovieClip [__Packages.mx.skins.halo.FocusRect] Frame 0
class mx.skins.halo.FocusRect extends mx.skins.SkinElement
{
var boundingBox_mc, _xscale, _yscale, clear, beginFill, drawRoundRect, endFill, _visible;
function FocusRect () {
super();
boundingBox_mc._visible = false;
boundingBox_mc._width = (boundingBox_mc._height = 0);
}
function draw(o) {
o.adjustFocusRect();
}
function setSize(w, h, r, a, rectCol) {
_xscale = (_yscale = 100);
clear();
if (typeof(r) == "object") {
r.br = ((r.br > 2) ? (r.br - 2) : 0);
r.bl = ((r.bl > 2) ? (r.bl - 2) : 0);
r.tr = ((r.tr > 2) ? (r.tr - 2) : 0);
r.tl = ((r.tl > 2) ? (r.tl - 2) : 0);
beginFill(rectCol, a * 0.3);
drawRoundRect(0, 0, w, h, r);
drawRoundRect(2, 2, w - 4, h - 4, r);
endFill();
r.br = ((r.br > 1) ? (r.br + 1) : 0);
r.bl = ((r.bl > 1) ? (r.bl + 1) : 0);
r.tr = ((r.tr > 1) ? (r.tr + 1) : 0);
r.tl = ((r.tl > 1) ? (r.tl + 1) : 0);
beginFill(rectCol, a * 0.3);
drawRoundRect(1, 1, w - 2, h - 2, r);
r.br = ((r.br > 1) ? (r.br - 1) : 0);
r.bl = ((r.bl > 1) ? (r.bl - 1) : 0);
r.tr = ((r.tr > 1) ? (r.tr - 1) : 0);
r.tl = ((r.tl > 1) ? (r.tl - 1) : 0);
drawRoundRect(2, 2, w - 4, h - 4, r);
endFill();
} else {
var _local5;
if (r != 0) {
_local5 = r - 2;
} else {
_local5 = 0;
}
beginFill(rectCol, a * 0.3);
drawRoundRect(0, 0, w, h, r);
drawRoundRect(2, 2, w - 4, h - 4, _local5);
endFill();
beginFill(rectCol, a * 0.3);
if (r != 0) {
_local5 = r - 2;
r = r - 1;
} else {
_local5 = 0;
r = 0;
}
drawRoundRect(1, 1, w - 2, h - 2, r);
drawRoundRect(2, 2, w - 4, h - 4, _local5);
endFill();
}
}
function handleEvent(e) {
if (e.type == "unload") {
_visible = true;
} else if (e.type == "resize") {
e.target.adjustFocusRect();
} else if (e.type == "move") {
e.target.adjustFocusRect();
}
}
static function classConstruct() {
mx.core.UIComponent.prototype.drawFocus = function (focused) {
var _local2 = this._parent.focus_mc;
if (!focused) {
_local2._visible = false;
this.removeEventListener("unload", _local2);
this.removeEventListener("move", _local2);
this.removeEventListener("resize", _local2);
} else {
if (_local2 == undefined) {
_local2 = this._parent.createChildAtDepth("FocusRect", mx.managers.DepthManager.kTop);
_local2.tabEnabled = false;
this._parent.focus_mc = _local2;
} else {
_local2._visible = true;
}
_local2.draw(this);
if (_local2.getDepth() < this.getDepth()) {
_local2.setDepthAbove(this);
}
this.addEventListener("unload", _local2);
this.addEventListener("move", _local2);
this.addEventListener("resize", _local2);
}
};
mx.core.UIComponent.prototype.adjustFocusRect = function () {
var _local2 = this.getStyle("themeColor");
if (_local2 == undefined) {
_local2 = 8453965 /* 0x80FF4D */;
}
var _local3 = this._parent.focus_mc;
_local3.setSize(this.width + 4, this.height + 4, 0, 100, _local2);
_local3.move(this.x - 2, this.y - 2);
};
TextField.prototype.drawFocus = mx.core.UIComponent.prototype.drawFocus;
TextField.prototype.adjustFocusRect = mx.core.UIComponent.prototype.adjustFocusRect;
mx.skins.halo.FocusRect.prototype.drawRoundRect = mx.skins.halo.Defaults.prototype.drawRoundRect;
return(true);
}
static var classConstructed = classConstruct();
static var DefaultsDependency = mx.skins.halo.Defaults;
static var UIComponentDependency = mx.core.UIComponent;
}
Symbol 190 MovieClip [__Packages.mx.managers.OverlappedWindows] Frame 0
class mx.managers.OverlappedWindows
{
function OverlappedWindows () {
}
static function checkIdle(Void) {
if (mx.managers.SystemManager.idleFrames > 10) {
mx.managers.SystemManager.dispatchEvent({type:"idle"});
} else {
mx.managers.SystemManager.idleFrames++;
}
}
static function __addEventListener(e, o, l) {
if (e == "idle") {
if (mx.managers.SystemManager.interval == undefined) {
mx.managers.SystemManager.interval = setInterval(mx.managers.SystemManager.checkIdle, 100);
}
}
mx.managers.SystemManager._xAddEventListener(e, o, l);
}
static function __removeEventListener(e, o, l) {
if (e == "idle") {
if (mx.managers.SystemManager._xRemoveEventListener(e, o, l) == 0) {
clearInterval(mx.managers.SystemManager.interval);
}
} else {
mx.managers.SystemManager._xRemoveEventListener(e, o, l);
}
}
static function onMouseDown(Void) {
mx.managers.SystemManager.idleFrames = 0;
mx.managers.SystemManager.isMouseDown = true;
var _local5 = _root;
var _local3;
var _local8 = _root._xmouse;
var _local7 = _root._ymouse;
if (mx.managers.SystemManager.form.modalWindow == undefined) {
if (mx.managers.SystemManager.forms.length > 1) {
var _local6 = mx.managers.SystemManager.forms.length;
var _local4;
_local4 = 0;
while (_local4 < _local6) {
var _local2 = mx.managers.SystemManager.forms[_local4];
if (_local2._visible) {
if (_local2.hitTest(_local8, _local7)) {
if (_local3 == undefined) {
_local3 = _local2.getDepth();
_local5 = _local2;
} else if (_local3 < _local2.getDepth()) {
_local3 = _local2.getDepth();
_local5 = _local2;
}
}
}
_local4++;
}
if (_local5 != mx.managers.SystemManager.form) {
mx.managers.SystemManager.activate(_local5);
}
}
}
var _local9 = mx.managers.SystemManager.form;
_local9.focusManager._onMouseDown();
}
static function onMouseMove(Void) {
mx.managers.SystemManager.idleFrames = 0;
}
static function onMouseUp(Void) {
mx.managers.SystemManager.isMouseDown = false;
mx.managers.SystemManager.idleFrames = 0;
}
static function activate(f) {
if (mx.managers.SystemManager.form != undefined) {
if ((mx.managers.SystemManager.form != f) && (mx.managers.SystemManager.forms.length > 1)) {
var _local1 = mx.managers.SystemManager.form;
_local1.focusManager.deactivate();
}
}
mx.managers.SystemManager.form = f;
f.focusManager.activate();
}
static function deactivate(f) {
if (mx.managers.SystemManager.form != undefined) {
if ((mx.managers.SystemManager.form == f) && (mx.managers.SystemManager.forms.length > 1)) {
var _local5 = mx.managers.SystemManager.form;
_local5.focusManager.deactivate();
var _local3 = mx.managers.SystemManager.forms.length;
var _local1;
var _local2;
_local1 = 0;
while (_local1 < _local3) {
if (mx.managers.SystemManager.forms[_local1] == f) {
_local1 = _local1 + 1;
while (_local1 < _local3) {
if (mx.managers.SystemManager.forms[_local1]._visible == true) {
_local2 = mx.managers.SystemManager.forms[_local1];
}
_local1++;
}
mx.managers.SystemManager.form = _local2;
break;
}
if (mx.managers.SystemManager.forms[_local1]._visible == true) {
_local2 = mx.managers.SystemManager.forms[_local1];
}
_local1++;
}
_local5 = mx.managers.SystemManager.form;
_local5.focusManager.activate();
}
}
}
static function addFocusManager(f) {
mx.managers.SystemManager.forms.push(f);
mx.managers.SystemManager.activate(f);
}
static function removeFocusManager(f) {
var _local3 = mx.managers.SystemManager.forms.length;
var _local1;
_local1 = 0;
while (_local1 < _local3) {
if (mx.managers.SystemManager.forms[_local1] == f) {
if (mx.managers.SystemManager.form == f) {
mx.managers.SystemManager.deactivate(f);
}
mx.managers.SystemManager.forms.splice(_local1, 1);
return(undefined);
}
_local1++;
}
}
static function enableOverlappedWindows() {
if (!initialized) {
initialized = true;
mx.managers.SystemManager.checkIdle = checkIdle;
mx.managers.SystemManager.__addEventListener = __addEventListener;
mx.managers.SystemManager.__removeEventListener = __removeEventListener;
mx.managers.SystemManager.onMouseDown = onMouseDown;
mx.managers.SystemManager.onMouseMove = onMouseMove;
mx.managers.SystemManager.onMouseUp = onMouseUp;
mx.managers.SystemManager.activate = activate;
mx.managers.SystemManager.deactivate = deactivate;
mx.managers.SystemManager.addFocusManager = addFocusManager;
mx.managers.SystemManager.removeFocusManager = removeFocusManager;
}
}
static var initialized = false;
static var SystemManagerDependency = mx.managers.SystemManager;
}
Symbol 191 MovieClip [__Packages.mx.styles.CSSSetStyle] Frame 0
class mx.styles.CSSSetStyle
{
var styleName, stylecache, _color, setColor, invalidateStyle;
function CSSSetStyle () {
}
function _setStyle(styleProp, newValue) {
this[styleProp] = newValue;
if (mx.styles.StyleManager.TextStyleMap[styleProp] != undefined) {
if (styleProp == "color") {
if (isNaN(newValue)) {
newValue = mx.styles.StyleManager.getColorName(newValue);
this[styleProp] = newValue;
if (newValue == undefined) {
return(undefined);
}
}
}
_level0.changeTextStyleInChildren(styleProp);
return(undefined);
}
if (mx.styles.StyleManager.isColorStyle(styleProp)) {
if (isNaN(newValue)) {
newValue = mx.styles.StyleManager.getColorName(newValue);
this[styleProp] = newValue;
if (newValue == undefined) {
return(undefined);
}
}
if (styleProp == "themeColor") {
var _local7 = mx.styles.StyleManager.colorNames.haloBlue;
var _local6 = mx.styles.StyleManager.colorNames.haloGreen;
var _local8 = mx.styles.StyleManager.colorNames.haloOrange;
var _local4 = {};
_local4[_local7] = 12188666 /* 0xB9FBFA */;
_local4[_local6] = 13500353 /* 0xCDFFC1 */;
_local4[_local8] = 16766319 /* 0xFFD56F */;
var _local5 = {};
_local5[_local7] = 13958653 /* 0xD4FDFD */;
_local5[_local6] = 14942166 /* 0xE3FFD6 */;
_local5[_local8] = 16772787 /* 0xFFEEB3 */;
var _local9 = _local4[newValue];
var _local10 = _local5[newValue];
if (_local9 == undefined) {
_local9 = newValue;
}
if (_local10 == undefined) {
_local10 = newValue;
}
setStyle("selectionColor", _local9);
setStyle("rollOverColor", _local10);
}
_level0.changeColorStyleInChildren(styleName, styleProp, newValue);
} else {
if ((styleProp == "backgroundColor") && (isNaN(newValue))) {
newValue = mx.styles.StyleManager.getColorName(newValue);
this[styleProp] = newValue;
if (newValue == undefined) {
return(undefined);
}
}
_level0.notifyStyleChangeInChildren(styleName, styleProp, newValue);
}
}
function changeTextStyleInChildren(styleProp) {
var _local4 = getTimer();
var _local5;
for (_local5 in this) {
var _local2 = this[_local5];
if (_local2._parent == this) {
if (_local2.searchKey != _local4) {
if (_local2.stylecache != undefined) {
delete _local2.stylecache.tf;
delete _local2.stylecache[styleProp];
}
_local2.invalidateStyle(styleProp);
_local2.changeTextStyleInChildren(styleProp);
_local2.searchKey = _local4;
}
}
}
}
function changeColorStyleInChildren(sheetName, colorStyle, newValue) {
var _local6 = getTimer();
var _local7;
for (_local7 in this) {
var _local2 = this[_local7];
if (_local2._parent == this) {
if (_local2.searchKey != _local6) {
if (((_local2.getStyleName() == sheetName) || (sheetName == undefined)) || (sheetName == "_global")) {
if (_local2.stylecache != undefined) {
delete _local2.stylecache[colorStyle];
}
if (typeof(_local2._color) == "string") {
if (_local2._color == colorStyle) {
var _local4 = _local2.getStyle(colorStyle);
if (colorStyle == "color") {
if (stylecache.tf.color != undefined) {
stylecache.tf.color = _local4;
}
}
_local2.setColor(_local4);
}
} else if (_local2._color[colorStyle] != undefined) {
if (typeof(_local2) != "movieclip") {
_local2._parent.invalidateStyle();
} else {
_local2.invalidateStyle(colorStyle);
}
}
}
_local2.changeColorStyleInChildren(sheetName, colorStyle, newValue);
_local2.searchKey = _local6;
}
}
}
}
function notifyStyleChangeInChildren(sheetName, styleProp, newValue) {
var _local5 = getTimer();
var _local6;
for (_local6 in this) {
var _local2 = this[_local6];
if (_local2._parent == this) {
if (_local2.searchKey != _local5) {
if (((_local2.styleName == sheetName) || ((_local2.styleName != undefined) && (typeof(_local2.styleName) == "movieclip"))) || (sheetName == undefined)) {
if (_local2.stylecache != undefined) {
delete _local2.stylecache[styleProp];
delete _local2.stylecache.tf;
}
delete _local2.enabledColor;
_local2.invalidateStyle(styleProp);
}
_local2.notifyStyleChangeInChildren(sheetName, styleProp, newValue);
_local2.searchKey = _local5;
}
}
}
}
function setStyle(styleProp, newValue) {
if (stylecache != undefined) {
delete stylecache[styleProp];
delete stylecache.tf;
}
this[styleProp] = newValue;
if (mx.styles.StyleManager.isColorStyle(styleProp)) {
if (isNaN(newValue)) {
newValue = mx.styles.StyleManager.getColorName(newValue);
this[styleProp] = newValue;
if (newValue == undefined) {
return(undefined);
}
}
if (styleProp == "themeColor") {
var _local10 = mx.styles.StyleManager.colorNames.haloBlue;
var _local9 = mx.styles.StyleManager.colorNames.haloGreen;
var _local11 = mx.styles.StyleManager.colorNames.haloOrange;
var _local6 = {};
_local6[_local10] = 12188666 /* 0xB9FBFA */;
_local6[_local9] = 13500353 /* 0xCDFFC1 */;
_local6[_local11] = 16766319 /* 0xFFD56F */;
var _local7 = {};
_local7[_local10] = 13958653 /* 0xD4FDFD */;
_local7[_local9] = 14942166 /* 0xE3FFD6 */;
_local7[_local11] = 16772787 /* 0xFFEEB3 */;
var _local12 = _local6[newValue];
var _local13 = _local7[newValue];
if (_local12 == undefined) {
_local12 = newValue;
}
if (_local13 == undefined) {
_local13 = newValue;
}
setStyle("selectionColor", _local12);
setStyle("rollOverColor", _local13);
}
if (typeof(_color) == "string") {
if (_color == styleProp) {
if (styleProp == "color") {
if (stylecache.tf.color != undefined) {
stylecache.tf.color = newValue;
}
}
setColor(newValue);
}
} else if (_color[styleProp] != undefined) {
invalidateStyle(styleProp);
}
changeColorStyleInChildren(undefined, styleProp, newValue);
} else {
if ((styleProp == "backgroundColor") && (isNaN(newValue))) {
newValue = mx.styles.StyleManager.getColorName(newValue);
this[styleProp] = newValue;
if (newValue == undefined) {
return(undefined);
}
}
invalidateStyle(styleProp);
}
if (mx.styles.StyleManager.isInheritingStyle(styleProp) || (styleProp == "styleName")) {
var _local8;
var _local5 = newValue;
if (styleProp == "styleName") {
_local8 = ((typeof(newValue) == "string") ? (_global.styles[newValue]) : (_local5));
_local5 = _local8.themeColor;
if (_local5 != undefined) {
_local8.rollOverColor = (_local8.selectionColor = _local5);
}
}
notifyStyleChangeInChildren(undefined, styleProp, newValue);
}
}
static function enableRunTimeCSS() {
}
static function classConstruct() {
var _local2 = MovieClip.prototype;
var _local3 = mx.styles.CSSSetStyle.prototype;
mx.styles.CSSStyleDeclaration.prototype.setStyle = _local3._setStyle;
_local2.changeTextStyleInChildren = _local3.changeTextStyleInChildren;
_local2.changeColorStyleInChildren = _local3.changeColorStyleInChildren;
_local2.notifyStyleChangeInChildren = _local3.notifyStyleChangeInChildren;
_local2.setStyle = _local3.setStyle;
_global.ASSetPropFlags(_local2, "changeTextStyleInChildren", 1);
_global.ASSetPropFlags(_local2, "changeColorStyleInChildren", 1);
_global.ASSetPropFlags(_local2, "notifyStyleChangeInChildren", 1);
_global.ASSetPropFlags(_local2, "setStyle", 1);
var _local4 = TextField.prototype;
_local4.setStyle = _local2.setStyle;
_local4.changeTextStyleInChildren = _local3.changeTextStyleInChildren;
return(true);
}
static var classConstructed = classConstruct();
static var CSSStyleDeclarationDependency = mx.styles.CSSStyleDeclaration;
}
Symbol 192 MovieClip [__Packages.mx.core.ext.UIComponentExtensions] Frame 0
class mx.core.ext.UIComponentExtensions
{
function UIComponentExtensions () {
}
static function Extensions() {
if (bExtended == true) {
return(true);
}
bExtended = true;
TextField.prototype.setFocus = function () {
Selection.setFocus(this);
};
TextField.prototype.onSetFocus = function (oldFocus) {
if (this.tabEnabled != false) {
if (this.getFocusManager().bDrawFocus) {
this.drawFocus(true);
}
}
};
TextField.prototype.onKillFocus = function (oldFocus) {
if (this.tabEnabled != false) {
this.drawFocus(false);
}
};
TextField.prototype.drawFocus = mx.core.UIComponent.prototype.drawFocus;
TextField.prototype.getFocusManager = mx.core.UIComponent.prototype.getFocusManager;
mx.managers.OverlappedWindows.enableOverlappedWindows();
mx.styles.CSSSetStyle.enableRunTimeCSS();
mx.managers.FocusManager.enableFocusManagement();
}
static var bExtended = false;
static var UIComponentExtended = Extensions();
static var UIComponentDependency = mx.core.UIComponent;
static var FocusManagerDependency = mx.managers.FocusManager;
static var OverlappedWindowsDependency = mx.managers.OverlappedWindows;
}
Symbol 193 MovieClip [__Packages.mx.skins.halo.RectBorder] Frame 0
class mx.skins.halo.RectBorder extends mx.skins.RectBorder
{
var offset, getStyle, borderStyleName, __borderMetrics, className, borderColorName, backgroundColorName, shadowColorName, highlightColorName, buttonColorName, __get__width, __get__height, clear, _color, drawRoundRect, beginFill, drawRect, endFill;
function RectBorder () {
super();
}
function init(Void) {
borderWidths.default = 3;
super.init();
}
function getBorderMetrics(Void) {
if (offset == undefined) {
var _local3 = getStyle(borderStyleName);
offset = borderWidths[_local3];
}
if ((getStyle(borderStyleName) == "default") || (getStyle(borderStyleName) == "alert")) {
__borderMetrics = {left:3, top:1, right:3, bottom:3};
return(__borderMetrics);
}
return(super.getBorderMetrics());
}
function drawBorder(Void) {
var _local6 = _global.styles[className];
if (_local6 == undefined) {
_local6 = _global.styles.RectBorder;
}
var _local5 = getStyle(borderStyleName);
var _local7 = getStyle(borderColorName);
if (_local7 == undefined) {
_local7 = _local6[borderColorName];
}
var _local8 = getStyle(backgroundColorName);
if (_local8 == undefined) {
_local8 = _local6[backgroundColorName];
}
var _local16 = getStyle("backgroundImage");
if (_local5 != "none") {
var _local14 = getStyle(shadowColorName);
if (_local14 == undefined) {
_local14 = _local6[shadowColorName];
}
var _local13 = getStyle(highlightColorName);
if (_local13 == undefined) {
_local13 = _local6[highlightColorName];
}
var _local12 = getStyle(buttonColorName);
if (_local12 == undefined) {
_local12 = _local6[buttonColorName];
}
var _local11 = getStyle(borderCapColorName);
if (_local11 == undefined) {
_local11 = _local6[borderCapColorName];
}
var _local10 = getStyle(shadowCapColorName);
if (_local10 == undefined) {
_local10 = _local6[shadowCapColorName];
}
}
offset = borderWidths[_local5];
var _local9 = offset;
var _local3 = __get__width();
var _local4 = __get__height();
clear();
_color = undefined;
if (_local5 == "none") {
} else if (_local5 == "inset") {
_color = colorList;
draw3dBorder(_local11, _local12, _local7, _local13, _local14, _local10);
} else if (_local5 == "outset") {
_color = colorList;
draw3dBorder(_local11, _local7, _local12, _local14, _local13, _local10);
} else if (_local5 == "alert") {
var _local15 = getStyle("themeColor");
drawRoundRect(0, 5, _local3, _local4 - 5, 5, 6184542, 10);
drawRoundRect(1, 4, _local3 - 2, _local4 - 5, 4, [6184542, 6184542], 10, 0, "radial");
drawRoundRect(2, 0, _local3 - 4, _local4 - 2, 3, [0, 14342874], 100, 0, "radial");
drawRoundRect(2, 0, _local3 - 4, _local4 - 2, 3, _local15, 50);
drawRoundRect(3, 1, _local3 - 6, _local4 - 4, 2, 16777215, 100);
} else if (_local5 == "default") {
drawRoundRect(0, 5, _local3, _local4 - 5, {tl:5, tr:5, br:0, bl:0}, 6184542, 10);
drawRoundRect(1, 4, _local3 - 2, _local4 - 5, {tl:4, tr:4, br:0, bl:0}, [6184542, 6184542], 10, 0, "radial");
drawRoundRect(2, 0, _local3 - 4, _local4 - 2, {tl:3, tr:3, br:0, bl:0}, [12897484, 11844796], 100, 0, "radial");
drawRoundRect(3, 1, _local3 - 6, _local4 - 4, {tl:2, tr:2, br:0, bl:0}, 16777215, 100);
} else if (_local5 == "dropDown") {
drawRoundRect(0, 0, _local3 + 1, _local4, {tl:4, tr:0, br:0, bl:4}, [13290186, 7895160], 100, -10, "linear");
drawRoundRect(1, 1, _local3 - 1, _local4 - 2, {tl:3, tr:0, br:0, bl:3}, 16777215, 100);
} else if (_local5 == "menuBorder") {
var _local15 = getStyle("themeColor");
drawRoundRect(4, 4, _local3 - 2, _local4 - 3, 0, [6184542, 6184542], 10, 0, "radial");
drawRoundRect(4, 4, _local3 - 1, _local4 - 2, 0, 6184542, 10);
drawRoundRect(0, 0, _local3 + 1, _local4, 0, [0, 14342874], 100, 250, "linear");
drawRoundRect(0, 0, _local3 + 1, _local4, 0, _local15, 50);
drawRoundRect(2, 2, _local3 - 3, _local4 - 4, 0, 16777215, 100);
} else if (_local5 == "comboNonEdit") {
} else {
beginFill(_local7);
drawRect(0, 0, _local3, _local4);
drawRect(1, 1, _local3 - 1, _local4 - 1);
endFill();
_color = borderColorName;
}
if (_local8 != undefined) {
beginFill(_local8);
drawRect(_local9, _local9, __get__width() - _local9, __get__height() - _local9);
endFill();
}
}
function draw3dBorder(c1, c2, c3, c4, c5, c6) {
var _local3 = __get__width();
var _local2 = __get__height();
beginFill(c1);
drawRect(0, 0, _local3, _local2);
drawRect(1, 0, _local3 - 1, _local2);
endFill();
beginFill(c2);
drawRect(1, 0, _local3 - 1, 1);
endFill();
beginFill(c3);
drawRect(1, _local2 - 1, _local3 - 1, _local2);
endFill();
beginFill(c4);
drawRect(1, 1, _local3 - 1, 2);
endFill();
beginFill(c5);
drawRect(1, _local2 - 2, _local3 - 1, _local2 - 1);
endFill();
beginFill(c6);
drawRect(1, 2, _local3 - 1, _local2 - 2);
drawRect(2, 2, _local3 - 2, _local2 - 2);
endFill();
}
static function classConstruct() {
mx.core.ext.UIObjectExtensions.Extensions();
_global.styles.rectBorderClass = mx.skins.halo.RectBorder;
_global.skinRegistry.RectBorder = true;
return(true);
}
static var symbolName = "RectBorder";
static var symbolOwner = mx.skins.halo.RectBorder;
static var version = "2.0.2.126";
var borderCapColorName = "borderCapColor";
var shadowCapColorName = "shadowCapColor";
var colorList = {highlightColor:0, borderColor:0, buttonColor:0, shadowColor:0, borderCapColor:0, shadowCapColor:0};
var borderWidths = {none:0, solid:1, inset:2, outset:2, alert:3, dropDown:2, menuBorder:2, comboNonEdit:2};
static var classConstructed = classConstruct();
static var UIObjectExtensionsDependency = mx.core.ext.UIObjectExtensions;
}
Symbol 194 MovieClip [__Packages.mx.controls.listclasses.SelectableRow] Frame 0
class mx.controls.listclasses.SelectableRow extends mx.core.UIComponent
{
var __height, cell, owner, rowIndex, icon_mc, createObject, __width, backGround, highlight, highlightColor, createLabel, createClassObject, listOwner, tabEnabled, item, createEmptyMovieClip, drawRect, isChangedToSelected, bGTween, grandOwner;
function SelectableRow () {
super();
}
function setValue(itmObj, state) {
var _local7 = __height;
var _local2 = cell;
var _local5 = owner;
var _local8 = itemToString(itmObj);
if (_local2.getValue() != _local8) {
_local2.setValue(_local8, itmObj, state);
}
var _local4 = _local5.getPropertiesAt(rowIndex + _local5.__vPosition).icon;
if (_local4 == undefined) {
_local4 = _local5.__iconFunction(itmObj);
if (_local4 == undefined) {
_local4 = itmObj[_local5.__iconField];
if (_local4 == undefined) {
_local4 = _local5.getStyle("defaultIcon");
}
}
}
var _local3 = icon_mc;
if ((_local4 != undefined) && (itmObj != undefined)) {
_local3 = createObject(_local4, "icon_mc", 20);
_local3._x = 2;
_local3._y = (_local7 - _local3._height) / 2;
_local2._x = 4 + _local3._width;
} else {
_local3.removeMovieClip();
_local2._x = 2;
}
var _local9 = ((_local3 == undefined) ? 0 : (_local3._width));
_local2.setSize(__width - _local9, Math.min(_local7, _local2.getPreferredHeight()));
_local2._y = (_local7 - _local2._height) / 2;
}
function size(Void) {
var _local3 = backGround;
var _local2 = cell;
var _local4 = __height;
var _local5 = __width;
var _local6 = ((icon_mc == undefined) ? 0 : (icon_mc._width));
_local2.setSize(_local5 - _local6, Math.min(_local4, _local2.getPreferredHeight()));
_local2._y = (_local4 - _local2._height) / 2;
icon_mc._y = (_local4 - icon_mc._height) / 2;
_local3._x = 0;
_local3._width = _local5;
_local3._height = _local4;
drawRowFill(_local3, normalColor);
drawRowFill(highlight, highlightColor);
}
function setCellRenderer(forceSizing) {
var _local3 = owner.__cellRenderer;
var _local4;
if (cell != undefined) {
_local4 = cell._x;
cell.removeMovieClip();
cell.removeTextField();
}
var _local2;
if (_local3 == undefined) {
_local2 = (cell = createLabel("cll", 0, {styleName:this}));
_local2.styleName = owner;
_local2.selectable = false;
_local2.tabEnabled = false;
_local2.background = false;
_local2.border = false;
} else if (typeof(_local3) == "string") {
_local2 = (cell = createObject(_local3, "cll", 0, {styleName:this}));
} else {
_local2 = (cell = createClassObject(_local3, "cll", 0, {styleName:this}));
}
_local2.owner = this;
_local2.listOwner = owner;
_local2.getCellIndex = getCellIndex;
_local2.getDataLabel = getDataLabel;
if (_local4 != undefined) {
_local2._x = _local4;
}
if (forceSizing) {
size();
}
}
function getCellIndex(Void) {
return({columnIndex:0, itemIndex:owner.rowIndex + listOwner.__vPosition});
}
function getDataLabel() {
return(listOwner.labelField);
}
function init(Void) {
super.init();
tabEnabled = false;
}
function createChildren(Void) {
setCellRenderer(false);
setupBG();
setState(state, false);
}
function drawRow(itmObj, state, transition) {
item = itmObj;
setState(state, transition);
setValue(itmObj, state, transition);
}
function itemToString(itmObj) {
if (itmObj == undefined) {
return(" ");
}
var _local2 = owner.__labelFunction(itmObj);
if (_local2 == undefined) {
_local2 = ((itmObj instanceof XMLNode) ? (itmObj.attributes[owner.__labelField]) : (itmObj[owner.__labelField]));
if (_local2 == undefined) {
_local2 = " ";
if (typeof(itmObj) == "object") {
for (var _local4 in itmObj) {
if (_local4 != "__ID__") {
_local2 = (itmObj[_local4] + ", ") + _local2;
}
}
_local2 = _local2.substring(0, _local2.length - 2);
} else {
_local2 = itmObj;
}
}
}
return(_local2);
}
function setupBG(Void) {
var _local2 = (backGround = createEmptyMovieClip("bG_mc", LOWEST_DEPTH));
drawRowFill(_local2, normalColor);
highlight = createEmptyMovieClip("tran_mc", LOWEST_DEPTH + 10);
_local2.owner = this;
_local2.grandOwner = owner;
_local2.onPress = bGOnPress;
_local2.onRelease = bGOnRelease;
_local2.onRollOver = bGOnRollOver;
_local2.onRollOut = bGOnRollOut;
_local2.onDragOver = bGOnDragOver;
_local2.onDragOut = bGOnDragOut;
_local2.useHandCursor = false;
_local2.trackAsMenu = true;
_local2.drawRect = drawRect;
highlight.drawRect = drawRect;
}
function drawRowFill(mc, newClr) {
mc.clear();
mc.beginFill(newClr);
mc.drawRect(1, 0, __width, __height);
mc.endFill();
mc._width = __width;
mc._height = __height;
}
function setState(newState, transition) {
var _local2 = highlight;
var _local8 = backGround;
var _local4 = __height;
var _local3 = owner;
if (!_local3.enabled) {
if ((newState == "selected") || (state == "selected")) {
highlightColor = _local3.getStyle("selectionDisabledColor");
drawRowFill(_local2, highlightColor);
_local2._visible = true;
_local2._y = 0;
_local2._height = _local4;
} else {
_local2._visible = false;
normalColor = _local3.getStyle("backgroundDisabledColor");
drawRowFill(_local8, normalColor);
}
cell.__enabled = false;
cell.setColor(_local3.getStyle("disabledColor"));
} else {
cell.__enabled = true;
if (transition && ((newState == state) || ((newState == "highlighted") && (state == "selected")))) {
isChangedToSelected = true;
return(undefined);
}
var _local6 = _local3.getStyle("selectionDuration");
var _local7 = 0;
if (isChangedToSelected && (newState == "selected")) {
transition = false;
}
var _local10 = transition && (_local6 != 0);
if (newState == "normal") {
_local7 = _local3.getStyle("color");
normalColor = getNormalColor();
drawRowFill(_local8, normalColor);
if (_local10) {
_local6 = _local6 / 2;
_local2._height = _local4;
_local2._width = __width;
_local2._y = 0;
bGTween = new mx.effects.Tween(this, _local4 + 2, _local4 * 0.2, _local6, 5);
} else {
_local2._visible = false;
}
delete isChangedToSelected;
} else {
highlightColor = _local3.getStyle(((newState == "highlighted") ? "rollOverColor" : "selectionColor"));
drawRowFill(_local2, highlightColor);
_local2._visible = true;
_local7 = _local3.getStyle(((newState == "highlighted") ? "textRollOverColor" : "textSelectedColor"));
if (_local10) {
_local2._height = _local4 * 0.5;
_local2._y = (_local4 - _local2._height) / 2;
bGTween = new mx.effects.Tween(this, _local2._height, _local4 + 2, _local6, 5);
var _local9 = _local3.getStyle("selectionEasing");
if (_local9 != undefined) {
bGTween.easingEquation = _local9;
}
} else {
_local2._y = 0;
_local2._height = _local4;
}
}
cell.setColor(_local7);
}
state = newState;
}
function onTweenUpdate(val) {
highlight._height = val;
highlight._y = (__height - val) / 2;
}
function onTweenEnd(val) {
onTweenUpdate(val);
highlight._visible = state != "normal";
}
function getNormalColor(Void) {
var _local3;
var _local2 = owner;
if (!owner.enabled) {
_local3 = _local2.getStyle("backgroundDisabledColor");
} else {
var _local5 = rowIndex + _local2.__vPosition;
if (rowIndex == undefined) {
_local3 = _local2.getPropertiesOf(item).backgroundColor;
} else {
_local3 = _local2.getPropertiesAt(_local5).backgroundColor;
}
if (_local3 == undefined) {
var _local4 = _local2.getStyle("alternatingRowColors");
if (_local4 == undefined) {
_local3 = _local2.getStyle("backgroundColor");
} else {
_local3 = _local4[_local5 % _local4.length];
}
}
}
return(_local3);
}
function invalidateStyle(propName) {
cell.invalidateStyle(propName);
super.invalidateStyle(propName);
}
function bGOnPress(Void) {
grandOwner.pressFocus();
grandOwner.onRowPress(owner.rowIndex);
}
function bGOnRelease(Void) {
grandOwner.releaseFocus();
grandOwner.onRowRelease(owner.rowIndex);
}
function bGOnRollOver(Void) {
grandOwner.onRowRollOver(owner.rowIndex);
}
function bGOnRollOut(Void) {
grandOwner.onRowRollOut(owner.rowIndex);
}
function bGOnDragOver(Void) {
grandOwner.onRowDragOver(owner.rowIndex);
}
function bGOnDragOut(Void) {
grandOwner.onRowDragOut(owner.rowIndex);
}
static var LOWEST_DEPTH = -16384;
var state = "normal";
var disabledColor = 15263976;
var normalColor = 16777215;
}
Symbol 195 MovieClip [__Packages.mx.controls.HScrollBar] Frame 0
class mx.controls.HScrollBar extends mx.controls.scrollClasses.ScrollBar
{
var _minHeight, _minWidth, _xscale, _rotation, __width, scrollIt;
function HScrollBar () {
super();
}
function getMinWidth(Void) {
return(_minHeight);
}
function getMinHeight(Void) {
return(_minWidth);
}
function init(Void) {
super.init();
_xscale = -100;
_rotation = -90;
}
function get virtualHeight() {
return(__width);
}
function isScrollBarKey(k) {
if (k == 37) {
scrollIt("Line", -1);
return(true);
}
if (k == 39) {
scrollIt("Line", 1);
return(true);
}
return(super.isScrollBarKey(k));
}
static var symbolName = "HScrollBar";
static var symbolOwner = mx.core.UIComponent;
static var version = "2.0.2.126";
var className = "HScrollBar";
var minusMode = "Left";
var plusMode = "Right";
var minMode = "AtLeft";
var maxMode = "AtRight";
}
Symbol 196 MovieClip [__Packages.mx.controls.Button] Frame 0
class mx.controls.Button extends mx.controls.SimpleButton
{
var initializing, labelPath, initIcon, getState, enabled, phase, idNames, __width, __height, setState, invalidate, iconName, refresh, createLabel, _iconLinkageName, removeIcons, hitArea_mc, createEmptyObject;
function Button () {
super();
}
function init(Void) {
super.init();
}
function draw() {
if (initializing) {
labelPath.visible = true;
}
super.draw();
if (initIcon != undefined) {
_setIcon(initIcon);
}
delete initIcon;
}
function onRelease(Void) {
super.onRelease();
}
function createChildren(Void) {
super.createChildren();
}
function setSkin(tag, linkageName, initobj) {
return(super.setSkin(tag, linkageName, initobj));
}
function viewSkin(varName) {
var _local3 = (getState() ? "true" : "false");
_local3 = _local3 + (enabled ? (phase) : "disabled");
super.viewSkin(varName, {styleName:this, borderStyle:_local3});
}
function invalidateStyle(c) {
labelPath.invalidateStyle(c);
super.invalidateStyle(c);
}
function setColor(c) {
var _local2 = 0;
while (_local2 < 8) {
this[idNames[_local2]].redraw(true);
_local2++;
}
}
function setEnabled(enable) {
labelPath.enabled = enable;
super.setEnabled(enable);
}
function calcSize(tag, ref) {
if ((__width == undefined) || (__height == undefined)) {
return(undefined);
}
if (tag < 7) {
ref.setSize(__width, __height, true);
}
}
function size(Void) {
setState(getState());
setHitArea(__width, __height);
var _local3 = 0;
while (_local3 < 8) {
var _local4 = idNames[_local3];
if (typeof(this[_local4]) == "movieclip") {
this[_local4].setSize(__width, __height, true);
}
_local3++;
}
super.size();
}
function set labelPlacement(val) {
__labelPlacement = val;
invalidate();
//return(labelPlacement);
}
function get labelPlacement() {
return(__labelPlacement);
}
function getLabelPlacement(Void) {
return(__labelPlacement);
}
function setLabelPlacement(val) {
__labelPlacement = val;
invalidate();
}
function getBtnOffset(Void) {
if (getState()) {
var _local2 = btnOffset;
} else if (phase == "down") {
var _local2 = btnOffset;
} else {
var _local2 = 0;
}
return(_local2);
}
function setView(offset) {
var _local16 = (offset ? (btnOffset) : 0);
var _local12 = getLabelPlacement();
var _local7 = 0;
var _local6 = 0;
var _local9 = 0;
var _local8 = 0;
var _local5 = 0;
var _local4 = 0;
var _local3 = labelPath;
var _local2 = iconName;
var _local15 = _local3.textWidth;
var _local14 = _local3.textHeight;
var _local10 = (__width - borderW) - borderW;
var _local11 = (__height - borderW) - borderW;
if (_local2 != undefined) {
_local7 = _local2._width;
_local6 = _local2._height;
}
if ((_local12 == "left") || (_local12 == "right")) {
if (_local3 != undefined) {
_local9 = Math.min(_local10 - _local7, _local15 + 5);
_local3._width = _local9;
_local8 = Math.min(_local11, _local14 + 5);
_local3._height = _local8;
}
if (_local12 == "right") {
_local5 = _local7;
if (centerContent) {
_local5 = _local5 + (((_local10 - _local9) - _local7) / 2);
}
_local2._x = _local5 - _local7;
} else {
_local5 = (_local10 - _local9) - _local7;
if (centerContent) {
_local5 = _local5 / 2;
}
_local2._x = _local5 + _local9;
}
_local4 = 0;
_local2._y = _local4;
if (centerContent) {
_local2._y = (_local11 - _local6) / 2;
_local4 = (_local11 - _local8) / 2;
}
if (!centerContent) {
_local2._y = _local2._y + Math.max(0, (_local8 - _local6) / 2);
}
} else {
if (_local3 != undefined) {
_local9 = Math.min(_local10, _local15 + 5);
_local3._width = _local9;
_local8 = Math.min(_local11 - _local6, _local14 + 5);
_local3._height = _local8;
}
_local5 = (_local10 - _local9) / 2;
_local2._x = (_local10 - _local7) / 2;
if (_local12 == "top") {
_local4 = (_local11 - _local8) - _local6;
if (centerContent) {
_local4 = _local4 / 2;
}
_local2._y = _local4 + _local8;
} else {
_local4 = _local6;
if (centerContent) {
_local4 = _local4 + (((_local11 - _local8) - _local6) / 2);
}
_local2._y = _local4 - _local6;
}
}
var _local13 = borderW + _local16;
_local3._x = _local5 + _local13;
_local3._y = _local4 + _local13;
_local2._x = _local2._x + _local13;
_local2._y = _local2._y + _local13;
}
function set label(lbl) {
setLabel(lbl);
//return(label);
}
function setLabel(label) {
if (label == "") {
labelPath.removeTextField();
refresh();
return(undefined);
}
if (labelPath == undefined) {
var _local2 = createLabel("labelPath", 200, label);
_local2._width = _local2.textWidth + 5;
_local2._height = _local2.textHeight + 5;
if (initializing) {
_local2.visible = false;
}
} else {
delete labelPath.__text;
labelPath.text = label;
refresh();
}
}
function getLabel(Void) {
return(((labelPath.__text != undefined) ? (labelPath.__text) : (labelPath.text)));
}
function get label() {
return(getLabel());
}
function _getIcon(Void) {
return(_iconLinkageName);
}
function get icon() {
if (initializing) {
return(initIcon);
}
return(_iconLinkageName);
}
function _setIcon(linkage) {
if (initializing) {
if (linkage == "") {
return(undefined);
}
initIcon = linkage;
} else {
if (linkage == "") {
removeIcons();
return(undefined);
}
super.changeIcon(0, linkage);
super.changeIcon(1, linkage);
super.changeIcon(3, linkage);
super.changeIcon(4, linkage);
super.changeIcon(5, linkage);
_iconLinkageName = linkage;
refresh();
}
}
function set icon(linkage) {
_setIcon(linkage);
//return(icon);
}
function setHitArea(w, h) {
if (hitArea_mc == undefined) {
createEmptyObject("hitArea_mc", 100);
}
var _local2 = hitArea_mc;
_local2.clear();
_local2.beginFill(16711680);
_local2.drawRect(0, 0, w, h);
_local2.endFill();
_local2.setVisible(false);
}
static var symbolName = "Button";
static var symbolOwner = mx.controls.Button;
var className = "Button";
static var version = "2.0.2.126";
var btnOffset = 0;
var _color = "buttonColor";
var __label = "default value";
var __labelPlacement = "right";
var falseUpSkin = "ButtonSkin";
var falseDownSkin = "ButtonSkin";
var falseOverSkin = "ButtonSkin";
var falseDisabledSkin = "ButtonSkin";
var trueUpSkin = "ButtonSkin";
var trueDownSkin = "ButtonSkin";
var trueOverSkin = "ButtonSkin";
var trueDisabledSkin = "ButtonSkin";
var falseUpIcon = "";
var falseDownIcon = "";
var falseOverIcon = "";
var falseDisabledIcon = "";
var trueUpIcon = "";
var trueDownIcon = "";
var trueOverIcon = "";
var trueDisabledIcon = "";
var clipParameters = {labelPlacement:1, icon:1, toggle:1, selected:1, label:1};
static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.controls.Button.prototype.clipParameters, mx.controls.SimpleButton.prototype.clipParameters);
var centerContent = true;
var borderW = 1;
}
Symbol 197 MovieClip [__Packages.mx.skins.halo.ButtonSkin] Frame 0
class mx.skins.halo.ButtonSkin extends mx.skins.RectBorder
{
var __get__width, __get__height, getStyle, _parent, clear, drawRoundRect, __get__x, __get__y;
function ButtonSkin () {
super();
}
function init() {
super.init();
}
function size() {
drawHaloRect(__get__width(), __get__height());
}
function drawHaloRect(w, h) {
var _local6 = getStyle("borderStyle");
var _local4 = getStyle("themeColor");
var _local5 = _parent.emphasized;
clear();
switch (_local6) {
case "falseup" :
if (_local5) {
drawRoundRect(__get__x(), __get__y(), w, h, 5, 9542041, 100);
drawRoundRect(__get__x(), __get__y(), w, h, 5, _local4, 75);
drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, [3355443, 16777215], 85, 0, "radial");
drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, [0, 14342874], 100, 0, "radial");
drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, _local4, 75);
drawRoundRect(__get__x() + 3, __get__y() + 3, w - 6, h - 6, 2, 16777215, 100);
drawRoundRect(__get__x() + 3, __get__y() + 4, w - 6, h - 7, 2, 16316664, 100);
} else {
drawRoundRect(0, 0, w, h, 5, 9542041, 100);
drawRoundRect(1, 1, w - 2, h - 2, 4, [13291985, 16250871], 100, 0, "radial");
drawRoundRect(2, 2, w - 4, h - 4, 3, [9542041, 13818586], 100, 0, "radial");
drawRoundRect(3, 3, w - 6, h - 6, 2, 16777215, 100);
drawRoundRect(3, 4, w - 6, h - 7, 2, 16316664, 100);
}
break;
case "falsedown" :
drawRoundRect(__get__x(), __get__y(), w, h, 5, 9542041, 100);
drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, [3355443, 16579836], 100, 0, "radial");
drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, _local4, 50);
drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, [0, 14342874], 100, 0, "radial");
drawRoundRect(__get__x(), __get__y(), w, h, 5, _local4, 40);
drawRoundRect(__get__x() + 3, __get__y() + 3, w - 6, h - 6, 2, 16777215, 100);
drawRoundRect(__get__x() + 3, __get__y() + 4, w - 6, h - 7, 2, _local4, 20);
break;
case "falserollover" :
drawRoundRect(__get__x(), __get__y(), w, h, 5, 9542041, 100);
drawRoundRect(__get__x(), __get__y(), w, h, 5, _local4, 50);
drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, [3355443, 16777215], 100, 0, "radial");
drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, [0, 14342874], 100, 0, "radial");
drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, _local4, 50);
drawRoundRect(__get__x() + 3, __get__y() + 3, w - 6, h - 6, 2, 16777215, 100);
drawRoundRect(__get__x() + 3, __get__y() + 4, w - 6, h - 7, 2, 16316664, 100);
break;
case "falsedisabled" :
drawRoundRect(0, 0, w, h, 5, 13159628, 100);
drawRoundRect(1, 1, w - 2, h - 2, 4, 15921906, 100);
drawRoundRect(2, 2, w - 4, h - 4, 3, 13949401, 100);
drawRoundRect(3, 3, w - 6, h - 6, 2, 15921906, 100);
break;
case "trueup" :
drawRoundRect(__get__x(), __get__y(), w, h, 5, 10066329, 100);
drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, [3355443, 16579836], 100, 0, "radial");
drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, _local4, 50);
drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, [0, 14342874], 100, 0, "radial");
drawRoundRect(__get__x(), __get__y(), w, h, 5, _local4, 40);
drawRoundRect(__get__x() + 3, __get__y() + 3, w - 6, h - 6, 2, 16777215, 100);
drawRoundRect(__get__x() + 3, __get__y() + 4, w - 6, h - 7, 2, 16250871, 100);
break;
case "truedown" :
drawRoundRect(__get__x(), __get__y(), w, h, 5, 10066329, 100);
drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, [3355443, 16579836], 100, 0, "radial");
drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, _local4, 50);
drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, [0, 14342874], 100, 0, "radial");
drawRoundRect(__get__x(), __get__y(), w, h, 5, _local4, 40);
drawRoundRect(__get__x() + 3, __get__y() + 3, w - 6, h - 6, 2, 16777215, 100);
drawRoundRect(__get__x() + 3, __get__y() + 4, w - 6, h - 7, 2, _local4, 20);
break;
case "truerollover" :
drawRoundRect(__get__x(), __get__y(), w, h, 5, 9542041, 100);
drawRoundRect(__get__x(), __get__y(), w, h, 5, _local4, 50);
drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, [3355443, 16777215], 100, 0, "radial");
drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, _local4, 40);
drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, [0, 14342874], 100, 0, "radial");
drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, _local4, 40);
drawRoundRect(__get__x() + 3, __get__y() + 3, w - 6, h - 6, 2, 16777215, 100);
drawRoundRect(__get__x() + 3, __get__y() + 4, w - 6, h - 7, 2, 16316664, 100);
break;
case "truedisabled" :
drawRoundRect(0, 0, w, h, 5, 13159628, 100);
drawRoundRect(1, 1, w - 2, h - 2, 4, 15921906, 100);
drawRoundRect(2, 2, w - 4, h - 4, 3, 13949401, 100);
drawRoundRect(3, 3, w - 6, h - 6, 2, 15921906, 100);
}
}
static function classConstruct() {
mx.core.ext.UIObjectExtensions.Extensions();
_global.skinRegistry.ButtonSkin = true;
return(true);
}
static var symbolName = "ButtonSkin";
static var symbolOwner = mx.skins.halo.ButtonSkin;
var className = "ButtonSkin";
var backgroundColorName = "buttonColor";
static var classConstructed = classConstruct();
static var UIObjectExtensionsDependency = mx.core.ext.UIObjectExtensions;
}
Symbol 198 MovieClip [__Packages.mx.controls.VScrollBar] Frame 0
class mx.controls.VScrollBar extends mx.controls.scrollClasses.ScrollBar
{
var scrollIt;
function VScrollBar () {
super();
}
function init(Void) {
super.init();
}
function isScrollBarKey(k) {
if (k == 38) {
scrollIt("Line", -1);
return(true);
}
if (k == 40) {
scrollIt("Line", 1);
return(true);
}
if (k == 33) {
scrollIt("Page", -1);
return(true);
}
if (k == 34) {
scrollIt("Page", 1);
return(true);
}
return(super.isScrollBarKey(k));
}
static var symbolName = "VScrollBar";
static var symbolOwner = mx.core.UIComponent;
static var version = "2.0.2.126";
var className = "VScrollBar";
var minusMode = "Up";
var plusMode = "Down";
var minMode = "AtTop";
var maxMode = "AtBottom";
}
Symbol 17 MovieClip [tracker_component] Frame 1
#initclip 58
Object.registerClass("tracker_component", com.rubberductions.Tracker);
#endinitclip
Symbol 30 MovieClip [bonusClip_mc] Frame 1
stop();
Symbol 30 MovieClip [bonusClip_mc] Frame 10
stop();
Symbol 30 MovieClip [bonusClip_mc] Frame 20
stop();
Symbol 35 MovieClip [ring_mc] Frame 1
stop();
Symbol 35 MovieClip [ring_mc] Frame 11
stop();
Symbol 35 MovieClip [ring_mc] Frame 18
gotoAndStop ("home");
Symbol 44 MovieClip [timer_mc] Frame 1
stop();
Symbol 44 MovieClip [timer_mc] Frame 7
stop();
Symbol 44 MovieClip [timer_mc] Frame 13
stop();
Symbol 52 MovieClip [Defaults] Frame 1
#initclip 59
Object.registerClass("Defaults", mx.skins.halo.Defaults);
#endinitclip
Symbol 53 MovieClip [UIObjectExtensions] Frame 1
#initclip 60
Object.registerClass("UIObjectExtensions", mx.core.ext.UIObjectExtensions);
#endinitclip
Symbol 54 MovieClip [UIObject] Frame 1
#initclip 61
Object.registerClass("UIObject", mx.core.UIObject);
#endinitclip
stop();
Symbol 57 Button
on (keyPress "<Tab>") {
this.tabHandler();
}
Symbol 58 MovieClip Frame 1
#initclip 62
Object.registerClass("FocusManager", mx.managers.FocusManager);
if (_root.focusManager == undefined) {
_root.createClassObject(mx.managers.FocusManager, "focusManager", mx.managers.DepthManager.highestDepth--);
}
#endinitclip
Symbol 59 MovieClip [FocusRect] Frame 1
#initclip 63
Object.registerClass("FocusRect", mx.skins.halo.FocusRect);
#endinitclip
Symbol 60 MovieClip [FocusManager] Frame 1
#initclip 64
Object.registerClass("FocusManager", mx.managers.FocusManager);
#endinitclip
stop();
Symbol 61 MovieClip [UIComponentExtensions] Frame 1
#initclip 65
Object.registerClass("UIComponentExtensions", mx.core.ext.UIComponentExtensions);
#endinitclip
Symbol 62 MovieClip [UIComponent] Frame 1
#initclip 66
Object.registerClass("UIComponent", mx.core.UIComponent);
#endinitclip
stop();
Symbol 64 MovieClip [BrdrShdw] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "shadowColor");
Symbol 66 MovieClip [BrdrFace] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "buttonColor");
Symbol 69 MovieClip [BrdrBlk] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "borderColor");
Symbol 71 MovieClip [BrdrHilght] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "highlightColor");
Symbol 74 MovieClip [SimpleButton] Frame 1
#initclip 67
Object.registerClass("SimpleButton", mx.controls.SimpleButton);
#endinitclip
stop();
Symbol 77 MovieClip [Border] Frame 1
#initclip 68
Object.registerClass("Border", mx.skins.Border);
#endinitclip
stop();
Symbol 78 MovieClip [RectBorder] Frame 1
#initclip 69
mx.skins.SkinElement.registerElement(mx.skins.RectBorder.symbolName, Object(mx.skins.RectBorder));
Object.registerClass("RectBorder", mx.skins.halo.RectBorder);
#endinitclip
stop();
Symbol 79 MovieClip [TextInput] Frame 1
#initclip 70
Object.registerClass("TextInput", mx.controls.TextInput);
#endinitclip
stop();
Symbol 80 MovieClip [ComboBase] Frame 1
#initclip 71
mx.controls.listclasses.DataSelector.Initialize(Object(mx.controls.ComboBase).prototype);
Object.registerClass("ComboBase", mx.controls.ComboBase);
#endinitclip
stop();
Instance of Symbol 74 MovieClip [SimpleButton] in Symbol 80 MovieClip [ComboBase] Frame 2
//component parameters
onClipEvent (initialize) {
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 79 MovieClip [TextInput] in Symbol 80 MovieClip [ComboBase] Frame 2
//component parameters
onClipEvent (initialize) {
editable = true;
password = false;
text = "";
maxChars = null;
restrict = "null";
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Symbol 81 MovieClip [DataProvider] Frame 1
#initclip 72
Object.registerClass("DataProvider", mx.controls.listclasses.DataProvider);
#endinitclip
stop();
Symbol 82 MovieClip [DataSelector] Frame 1
#initclip 73
Object.registerClass("DataSelector", mx.controls.listclasses.DataSelector);
#endinitclip
stop();
Symbol 83 MovieClip [SelectableRow] Frame 1
#initclip 74
Object.registerClass("SelectableRow", mx.controls.listclasses.SelectableRow);
#endinitclip
stop();
Symbol 84 MovieClip [ButtonSkin] Frame 1
#initclip 75
Object.registerClass("ButtonSkin", mx.skins.halo.ButtonSkin);
#endinitclip
Symbol 85 MovieClip [Button] Frame 1
#initclip 76
Object.registerClass("Button", mx.controls.Button);
#endinitclip
stop();
Instance of Symbol 74 MovieClip [SimpleButton] in Symbol 85 MovieClip [Button] Frame 2
//component parameters
onClipEvent (initialize) {
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Symbol 86 MovieClip [CustomBorder] Frame 1
#initclip 77
Object.registerClass("CustomBorder", mx.skins.CustomBorder);
mx.skins.SkinElement.registerElement("CustomBorder", mx.skins.CustomBorder);
#endinitclip
Symbol 98 MovieClip [ScrollThemeColor1] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 100 MovieClip [ScrollThemeColor2] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 111 MovieClip [ThumbThemeColor1] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 113 MovieClip [ThumbThemeColor3] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 120 MovieClip [ThumbThemeColor2] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 141 MovieClip [BtnDownArrow] Frame 1
#initclip 78
Object.registerClass("BtnDownArrow", mx.controls.SimpleButton);
#endinitclip
Symbol 142 MovieClip [BtnUpArrow] Frame 1
#initclip 79
Object.registerClass("BtnUpArrow", mx.controls.SimpleButton);
#endinitclip
Symbol 144 MovieClip [HScrollBar] Frame 1
#initclip 80
Object.registerClass("HScrollBar", mx.controls.HScrollBar);
#endinitclip
stop();
Instance of Symbol 85 MovieClip [Button] in Symbol 144 MovieClip [HScrollBar] Frame 2
//component parameters
onClipEvent (initialize) {
icon = "";
label = "Button";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 74 MovieClip [SimpleButton] in Symbol 144 MovieClip [HScrollBar] Frame 2
//component parameters
onClipEvent (initialize) {
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Symbol 145 MovieClip [VScrollBar] Frame 1
#initclip 81
Object.registerClass("VScrollBar", mx.controls.VScrollBar);
#endinitclip
stop();
Instance of Symbol 85 MovieClip [Button] in Symbol 145 MovieClip [VScrollBar] Frame 2
//component parameters
onClipEvent (initialize) {
icon = "";
label = "Button";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 74 MovieClip [SimpleButton] in Symbol 145 MovieClip [VScrollBar] Frame 2
//component parameters
onClipEvent (initialize) {
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Symbol 146 MovieClip [View] Frame 1
#initclip 82
Object.registerClass("View", mx.core.View);
#endinitclip
stop();
Symbol 147 MovieClip [ScrollView] Frame 1
#initclip 83
Object.registerClass("ScrollView", mx.core.ScrollView);
#endinitclip
stop();
Instance of Symbol 144 MovieClip [HScrollBar] in Symbol 147 MovieClip [ScrollView] Frame 2
//component parameters
onClipEvent (initialize) {
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 145 MovieClip [VScrollBar] in Symbol 147 MovieClip [ScrollView] Frame 2
//component parameters
onClipEvent (initialize) {
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Symbol 148 MovieClip [ScrollSelectList] Frame 1
#initclip 84
Object.registerClass("ScrollSelectList", mx.controls.listclasses.ScrollSelectList);
#endinitclip
stop();
Symbol 149 MovieClip [List] Frame 1
#initclip 85
Object.registerClass("List", mx.controls.List);
#endinitclip
stop();
Symbol 155 MovieClip [ComboDownArrowDisabled] Frame 1
#initclip 86
Object.registerClass("ComboDownArrowDisabled", mx.controls.SimpleButton);
#endinitclip
Symbol 157 MovieClip [ComboThemeColor1] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 160 MovieClip [ComboAssets] Frame 1
#initclip 87
mx.controls.ComboBox.prototype.downArrowUpName = "ComboDownArrowUp";
mx.controls.ComboBox.prototype.downArrowDownName = "ComboDownArrowDown";
mx.controls.ComboBox.prototype.downArrowOverName = "ComboDownArrowOver";
mx.controls.ComboBox.prototype.downArrowDisabledName = "ComboDownArrowDisabled";
mx.controls.ComboBox.prototype.wrapDownArrowButton = false;
mx.controls.ComboBox.prototype.dropDownBorderStyle = "solid";
mx.controls.ComboBox.prototype.adjustFocusRect = function () {
var _local2 = this.getStyle("themeColor");
if (_local2 == undefined) {
_local2 = 8453965 /* 0x80FF4D */;
}
var _local3 = this._parent.focus_mc;
_local3.setSize(this.width + 4, this.height + 4, {bl:0, tl:0, tr:5, br:5}, 100, _local2);
_local3.move(this.x - 2, this.y - 2);
};
#endinitclip
Symbol 161 MovieClip [ComboBox] Frame 1
#initclip 88
Object.registerClass("ComboBox", mx.controls.ComboBox);
#endinitclip
stop();
Instance of Symbol 149 MovieClip [List] in Symbol 161 MovieClip [ComboBox] Frame 2
//component parameters
onClipEvent (initialize) {
multipleSelection = false;
rowHeight = 20;
}
Symbol 202 MovieClip [endRing_mc] Frame 1
stop();
Symbol 202 MovieClip [endRing_mc] Frame 11
stop();
Symbol 202 MovieClip [endRing_mc] Frame 18
gotoAndStop ("home");
Symbol 221 MovieClip Frame 1
stop();
Symbol 261 MovieClip Frame 1
stop();
Symbol 261 MovieClip Frame 10
stop();
Symbol 279 MovieClip Frame 1
stop();
back_btn._visible = false;
normal_btn._visible = true;
inverse_btn._visible = true;
Symbol 279 MovieClip Frame 5
back_btn._visible = true;
normal_btn._visible = false;
inverse_btn._visible = false;
Symbol 279 MovieClip Frame 13
stop();
back_btn._visible = true;
normal_btn._visible = false;
inverse_btn._visible = false;
Symbol 279 MovieClip Frame 14
back_btn._visible = true;
normal_btn._visible = false;
inverse_btn._visible = false;
Symbol 279 MovieClip Frame 22
stop();
back_btn._visible = true;
normal_btn._visible = false;
inverse_btn._visible = false;
Symbol 291 MovieClip Frame 1
stop();
back_btn._visible = false;
dog2_btn._visible = true;
dog1_btn._visible = true;
Symbol 291 MovieClip Frame 5
dog2_btn._visible = false;
dog1_btn._visible = false;
back_btn._visible = true;
Symbol 291 MovieClip Frame 14
stop();
dog2_btn._visible = false;
dog1_btn._visible = false;
back_btn._visible = true;
Symbol 291 MovieClip Frame 15
dog2_btn._visible = false;
dog1_btn._visible = false;
back_btn._visible = true;
Symbol 291 MovieClip Frame 25
stop();
dog2_btn._visible = false;
dog1_btn._visible = false;
back_btn._visible = true;
Instance of Symbol 161 MovieClip [ComboBox] "track_cb" in Symbol 308 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
editable = false;
rowCount = 15;
restrict = "";
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Symbol 328 MovieClip Frame 1
stop();
Symbol 328 MovieClip Frame 9
stop();
Symbol 328 MovieClip Frame 14
stop();
Symbol 340 MovieClip Frame 1
stop();
Symbol 340 MovieClip Frame 9
stop();
Symbol 340 MovieClip Frame 14
stop();
Symbol 341 MovieClip Frame 1
stop();
Symbol 352 MovieClip Frame 1
stop();
Symbol 352 MovieClip Frame 15
stop();
Symbol 352 MovieClip Frame 30
stop();
Symbol 352 MovieClip Frame 43
stop();
Symbol 352 MovieClip Frame 57
stop();
Symbol 352 MovieClip Frame 71
stop();
Symbol 352 MovieClip Frame 89
stop();
Symbol 352 MovieClip Frame 108
stop();
Symbol 353 MovieClip Frame 1
stop();
this._visible = false;
Symbol 353 MovieClip Frame 2
this._visible = true;
Symbol 353 MovieClip Frame 45
gotoAndStop ("home");
this._visible = false;
Symbol 369 MovieClip Frame 1
stop();
Symbol 372 MovieClip Frame 1
stop();
Symbol 375 MovieClip Frame 1
track1_txt.multiline = true;
track1_txt.autoSize = true;
track1_txt.wordWrap = true;
track2_txt.multiline = true;
track2_txt.autoSize = true;
track2_txt.wordWrap = true;
Symbol 386 MovieClip Frame 1
stop();
Symbol 386 MovieClip Frame 5
gotoAndStop ("home");
Symbol 386 MovieClip Frame 9
gotoAndStop ("home");
Symbol 386 MovieClip Frame 13
gotoAndStop ("home");
Symbol 415 MovieClip Frame 1
stop();
Symbol 415 MovieClip Frame 12
stop();
Symbol 415 MovieClip Frame 23
stop();
Symbol 415 MovieClip Frame 34
stop();
Symbol 475 MovieClip Frame 1
stop();
title_txt.autoSize = true;
Symbol 475 MovieClip Frame 5
stop();
Symbol 475 MovieClip Frame 10
mailSent_mc._visible = true;
Symbol 475 MovieClip Frame 14
gotoAndStop ("home");
Symbol 478 MovieClip Frame 1
stop();
Symbol 478 MovieClip Frame 6
butt_btn.useHandCursor = false;
Symbol 478 MovieClip Frame 16
stop();
Symbol 478 MovieClip Frame 24
gotoAndStop ("home");
Symbol 485 MovieClip Frame 1
stop();
ranking_txt.autoSize = true;
Symbol 485 MovieClip Frame 2
stop();