Frame 1
fscommand ("trapallkeys", true);
fscommand ("showmenu", "false");
fscommand ("allowscale", "true");
_focusrect = false;
System.useCodepage = true;
XML.prototype.ignoreWhite = true;
_global.gameName = "Heli";
_global.openSite = function () {
getURL ("http://www.gametop.com/stats/desertfire.html", "_blank");
};
_root.loaderAnimDelta = 5;
_root.loaderAnimPause = 2500;
_root.parsingAnimDelta = 10;
Instance of Symbol 10 MovieClip in Frame 2
onClipEvent (load) {
_alpha = 0;
}
onClipEvent (enterFrame) {
t = _root.getBytesTotal();
l = _root.getBytesLoaded();
bar._xscale = (100 * l) / t;
p = Math.round((1000 * l) / t) / 10;
if (p == Math.floor(p)) {
p = p + ".0";
}
p = p + "%";
tf.text = p;
if (t > 0) {
if ((l < t) && (_alpha < 100)) {
_alpha = (_alpha + 5);
}
if ((l == t) && (_alpha > 0)) {
_alpha = (_alpha - 5);
}
}
}
Frame 3
stop();
Instance of Symbol 13 MovieClip in Frame 3
onClipEvent (load) {
_alpha = 0;
state = 0;
_root.stop();
}
onClipEvent (enterFrame) {
l = _root.getBytesLoaded();
t = _root.getBytesTotal();
if (state == 0) {
_alpha = (_alpha + _root.loaderAnimDelta);
if (_alpha >= 100) {
_alpha = 100;
state = 1;
startPause = getTimer();
}
} else if ((((state == 1) && (t == l)) && (l > 10)) && ((getTimer() - startPause) > _root.loaderAnimPause)) {
this._alpha = this._alpha - _root.loaderAnimDelta;
if (_alpha < 0) {
_root.gotoAndPlay("init");
}
}
}
Frame 5
function globalStart() {
debug("Try to start game");
if (_global.settingsLoaded === true) {
debug("STARTING GAME");
_root.processBar._visible = false;
_global.currLevel = _global.levelsSet["level_" + levelNum];
_global.gameOver = false;
_global.gameInProcess = false;
_global.gameInWin = false;
_global.userControlled = true;
_global.fires = new Array();
_global.splashedObject = new Array();
_root.attachMovie("queue", "queue", _root.getNextHighestDepth());
_root.oEF = mainOEF;
_root.oEFB = mainOEFBefore;
_root.rootEFid = _global.queue.addFunc(_root.oEF, _root, 90);
_root.rootEFBid = _global.queue.addFunc(_root.oEFB, _root, 5);
_root.wndComplete._visible = false;
_root.wndPause._visible = false;
_global.sound.width = _global.envS.windowX;
_global.queue.addFunc(sound.oEF, sound, 95);
if (_global.envS.debug != 1) {
_root.tfTimer._visible = (_root.tfTimerF._visible = (_root.error._visible = false));
}
_global.gameTimeStart = getTimer();
_global.keyGetter = new Object();
keyGetter.onKeyDown = makePause;
Key.addListener(_global.keyGetter);
_root.gui._visible = true;
_global.levelTime = 0;
_global.levelTimeF = 0;
_global.levelTimeS = getTimer();
if (noSet(_global.gameScore) || (_global.levelNum == 1)) {
_global.gameScore = 0;
}
_global.levelScore = 0;
changeScore(0);
_root.createEmptyMovieClip("shadow", _root.getNextHighestDepth());
_root.createEmptyMovieClip("circles", _root.getNextHighestDepth());
_root.createEmptyMovieClip("shower", _root.getNextHighestDepth());
_root.createEmptyMovieClip("shower2", _root.getNextHighestDepth());
_root.createEmptyMovieClip("bulletsBB", _root.getNextHighestDepth());
_root.createEmptyMovieClip("fullBorder", _root.getNextHighestDepth());
if (_global.envS.debug == 1) {
_root.fullBorder.lineStyle(0, 8912896);
_root.fullBorder.drawRect(_global.envS.playerFrameOffset.left, _global.envS.playerFrameOffset.top, _global.envS.windowX - _global.envS.playerFrameOffset.right, _global.envS.windowY - _global.envS.playerFrameOffset.bottom);
}
delete _global.mt;
delete _global.mto;
_global.mt = new Object();
_global.mto = new Object();
if (_global.envS.rotationDebug == 1) {
_global.storedRotation = (_global.storedRotation2 = 1);
}
_root.gui.ammo2.text = "";
if (levelNum == 1) {
_global.rings_all = 0;
_global.ringsTaken_all = 0;
_global.kills_all = 0;
}
_global.collisionPause = 0;
_root.debugFrame._x = (_root.debugFrame._y = 0);
preparePlanes();
prepareMissionTargetsBox();
if (noSet(currLevel.preparedLevel)) {
_root.processBar._visible = true;
_root.processBar.bar._xscale = 0;
_root.processBar.startPoint = 0;
_root.processBar.onEnterFrame = prepareLevelBySteps;
} else {
globalStart2();
}
} else {
debug("XML data not loaded yet");
}
}
function globalStart2() {
if (_global.settingsLoaded === true) {
debug("STARTING GAME2");
delete _global.missionTargets;
makeLevel(currLevel);
_global.permanents = new Array();
if (noSet(mt[envS.playerName])) {
var _local4 = 0;
while (_local4 < currLevel.preparedLevel.length) {
var _local3 = currLevel.preparedLevel[_local4];
if (!_local3.inGame) {
} else if (((_local3.type == "playerMC") || (_local3.type == "pathMovingTileMC")) || (_local3.permanent == 1)) {
createTile(currLevel.preparedLevel[_local4]);
if (_local3.permanent == 1) {
permanents.push(_local3);
}
}
_local4++;
}
}
var _local5 = mt[envS.playerName].x;
var _local6 = mt[envS.playerName].y;
_global.frameX = (envS.windowX / 2) - _local5;
_global.frameY = (envS.windowY / 2) - _local6;
_global.gameInProcess = true;
setFrames();
updateLevel();
_root.oEF();
} else {
debug("XML data not loaded yet");
}
}
_global.PI2 = 57.2957795130823;
_global.PI3 = 1 / PI2;
_global.changeDebugText = function () {
debug();
};
_global.debug = function (str, important) {
important = Boolean(important);
if (str == undefined) {
str = "";
}
clearInterval(_root.debugInt);
_root.tf_debug.text = str;
if (str != "") {
if ((_global.envS.debug == 1) || (important)) {
trace(str);
}
_root.debugInt = setInterval(changeDebugText, 5000);
_global.debugLog = _global.debugLog + (str + newline);
}
};
_global.debugLog = "";
debug();
_global.prepareText = function (inText) {
var _local4 = "";
var _local1 = 0;
while (_local1 < inText.length) {
var _local2 = inText.charAt(_local1);
if (_local2 != "\r") {
_local4 = _local4 + _local2;
}
_local1++;
}
return(_local4);
};
_global.trim = function (str) {
str = String(str);
var _local2 = -1;
do {
_local2++;
var a = str.charAt(_local2);
} while ((((a == " ") || (a == newline)) || (a == "\r")) || (a == "\t"));
var _local3 = str.length;
do {
_local3--;
var a = str.charAt(_local3);
} while ((((a == " ") || (a == newline)) || (a == "\r")) || (a == "\t"));
str = str.substring(_local2, _local3 + 1);
if (String(parseFloat(str)) == str) {
str = parseFloat(str);
}
return(str);
};
_global.alphaIn = function () {
this._alpha = this._alpha + 5;
if (this._alpha > 100) {
this._alpha = 100;
delete this.onEnterFrame;
}
};
_global.alphaOut = function () {
if (_global.noSet(this.step)) {
this.step = 0;
}
if (_global.noSet(this.maxStep)) {
this.maxStep = _global.envS.alphaOutDelay;
}
if (_global.noSet(this.alphaStep)) {
this.alphaStep = _global.envS.alphaOutStep;
}
this.step++;
if (this.step > this.maxStep) {
this._alpha = this._alpha - this.alphaStep;
if (this._alpha < 0) {
this._alpha = 0;
delete this.onEnterFrame;
removeMovieClip(this);
}
}
};
_global.splashOff = function (obj) {
obj.step = 0;
obj.maxStep = 60;
obj.alphaStep = 5;
obj.onEnterFrame = alphaOut;
};
_global.getOff = function () {
this._yscale = this._yscale + ((-2 - this._yscale) / 3);
this._xscale = this._yscale;
if (this._yscale <= 0) {
delete this.onEnterFrame;
this.removeMovieClip();
}
};
_global.getOn = function () {
this._yscale = this._yscale + ((100 - this._yscale) / 6);
this._alpha = (this._xscale = this._yscale);
if (this._yscale >= 98) {
this._alpha = (this._xscale = (this._yscale = 100));
delete this.onEnterFrame;
}
};
_global.parsingOn = function () {
this._alpha = this._alpha + _root.parsingAnimDelta;
if (this._alpha > (100 + _root.parsingAnimDelta)) {
_root.gotoAndStop("parse");
delete this.onEnterFrame;
}
};
_global.parsingOff = function () {
this._alpha = this._alpha - _root.parsingAnimDelta;
if (this._alpha <= 0) {
delete this.onEnterFrame;
_root.gotoAndStop("menu");
}
};
_global.disappear = function () {
if (this.step == undefined) {
this.step = 0;
}
if ((++this.step) > 2000000) {
this._alpha = this._alpha - 50;
if (this._alpha < 0) {
delete this.onEnterFrame;
this.removeMovieClip();
}
}
};
_global.roundNums = function (a, b) {
if (_global.noSet(b)) {
b = 1000;
} else {
b = Math.pow(10, b);
}
if (typeof(a) != "number") {
return(a);
}
return(Math.round(a * b) / b);
};
_global.noSet = function (a) {
if (a == undefined) {
return(true);
}
if (a == null) {
return(true);
}
if (String(a) == "") {
return(true);
}
if (a == "undefined") {
return(true);
}
if ((typeof(a) == "number") && (isNaN(a))) {
return(true);
}
return(false);
};
_global.prepareArrayString = function (inv, delimit) {
if (_global.noSet(inv)) {
return(new Array());
}
if (_global.noSet(delimit)) {
delimit = ",";
}
var _local3 = inv.split(delimit);
if (_global.noSet(_local3)) {
_local3 = new Array();
_local3.push(inv);
}
var _local2 = 0;
while (_local2 < _local3.length) {
_local3[_local2] = _global.trim(_local3[_local2]);
_local2++;
}
return(_local3);
};
_global.prepareArrayNum = (_global.prepareArrayNumber = function (inv, delimit) {
if (_global.noSet(inv)) {
return(new Array());
}
if (_global.noSet(delimit)) {
delimit = ",";
}
var _local3 = inv.split(delimit);
if (_global.noSet(_local3)) {
_local3 = new Array();
_local3.push(inv);
}
var _local2 = 0;
while (_local2 < _local3.length) {
_local3[_local2] = parseFloat(_local3[_local2]);
_local2++;
}
return(_local3);
});
_global.prepareArrayBool = function (inv, delimit) {
if (_global.noSet(inv)) {
return(new Array());
}
if (_global.noSet(delimit)) {
delimit = ",";
}
var _local3 = inv.split(delimit);
if (_global.noSet(_local3)) {
_local3 = new Array();
_local3.push(inv);
}
var _local2 = 0;
while (_local2 < _local3.length) {
_local3[_local2] = ((parseFloat(_local3[_local2]) == 1) ? true : false);
_local2++;
}
return(_local3);
};
_global.isChild = function (arr, item) {
var _local2 = false;
for (var _local3 in arr) {
if (arr[_local3] == item) {
_local2 = _local3;
break;
}
}
return(_local2);
};
_global.isArrChild = function (arr, name, item) {
var _local3 = false;
var _local1 = 0;
while (_local1 < arr.length) {
if (arr[_local1][name] == item) {
_local3 = arr[_local1];
break;
}
_local1++;
}
return(_local3);
};
_global.getAngleDelta = function (a, b, c) {
a = angleToInterval(a);
b = angleToInterval(b);
var _local8 = b - 360;
var _local7 = b;
var _local6 = b + 360;
var _local12 = _local8 - a;
var _local11 = _local7 - a;
var _local10 = _local6 - a;
var _local5 = Math.abs(_local12);
var _local4 = Math.abs(_local11);
var _local9 = Math.abs(_local10);
var _local3 = Math.min(_local5, _local4);
_local3 = Math.min(_local3, _local9);
if (_local3 == _local5) {
var _local13 = _local8;
}
if (_local3 == _local4) {
var _local13 = _local7;
}
if (_local3 == _local9) {
var _local13 = _local6;
}
return((_local13 - a) / c);
};
MovieClip.prototype.drawRect = function (x1, y1, x2, y2) {
this.moveTo(x1, y1);
this.lineTo(x2, y1);
this.lineTo(x2, y2);
this.lineTo(x1, y2);
this.lineTo(x1, y1);
};
MovieClip.prototype.drawRectAbout = function (x1, y1, len) {
this.drawRect(x1 - len, y1 - len, x1 + len, y1 + len);
};
MovieClip.prototype.drawCross = function (x1, y1, len) {
this.moveTo(x1 - len, y1);
this.lineTo(x1 + len, y1);
this.moveTo(x1, y1 - len);
this.lineTo(x1, y1 + len);
};
MovieClip.prototype.drawLine = function (x1, y1, x2, y2) {
this.moveTo(x1, y1);
this.lineTo(x2, y2);
};
MovieClip.prototype.drawSegment = function (rx, ry, x, y, sgm, s1, s2) {
if (((!s1) and (!s2)) or (s1 == s2)) {
var _local17 = 360;
var _local5 = _local17 / sgm;
var _local12 = rx + x;
var _local11 = y;
this.moveTo(_local12, _local11);
} else {
((s1 > s2) ? (s1 = s1 - 360) : "");
var _local12 = (rx * Math.cos(s1 * PI3)) + x;
var _local11 = (ry * Math.sin(s1 * PI3)) + y;
var _local17 = s2 - s1;
var _local5 = _local17 / sgm;
this.moveTo(x, y);
this.lineTo(_local12, _local11);
this.moveTo(_local12, _local11);
}
var _local2 = _local5 + s1;
while (_local2 < ((_local17 + 0.1) + s1)) {
var _local8 = (rx * Math.cos((_local2 - (_local5 / 2)) * PI3)) + x;
var _local7 = (ry * Math.sin((_local2 - (_local5 / 2)) * PI3)) + y;
var _local3 = (rx * Math.cos(_local2 * PI3)) + x;
var _local4 = (ry * Math.sin(_local2 * PI3)) + y;
var _local10 = (2 * _local8) - (0.5 * (_local12 + _local3));
var _local9 = (2 * _local7) - (0.5 * (_local11 + _local4));
this.curveTo(_local10, _local9, _local3, _local4);
var _local12 = _local3;
var _local11 = _local4;
_local2 = _local2 + _local5;
}
if (_local17 != 360) {
this.lineTo(x, y);
}
};
MovieClip.prototype.cMC = function (a, b, c) {
var _local3 = this.createEmptyMovieClip(a, b);
for (var _local4 in c) {
_local3[_local4] = c[_local4];
}
return(_local3);
};
_global.crossLines = function (line1, line2) {
_global.countCrossesC++;
var _local2 = new Object();
_local2.crossed = false;
_local2.actualCrossed = false;
if (line1.a == line2.a) {
return(_local2);
}
if ((!isFinite(line1.a)) || (!isFinite(line2.a))) {
if ((!isFinite(line1.a)) && (!isFinite(line2.a))) {
return(_local2);
}
if (!isFinite(line1.a)) {
var _local5 = line1.x1;
var _local6 = (line2.a * _local5) + line2.k;
} else if (!isFinite(line2.a)) {
var _local5 = line2.x1;
var _local6 = (line1.a * _local5) + line1.k;
}
} else {
var _local5 = (line2.k - line1.k) / (line1.a - line2.a);
var _local6 = (line1.a * _local5) + line1.k;
}
var _local5 = roundNums(_local5);
var _local6 = roundNums(_local6);
var _local11 = Math.min(line1.x1, line1.x2);
var _local9 = Math.max(line1.x1, line1.x2);
var _local7 = Math.min(line2.x1, line2.x2);
var _local13 = Math.max(line2.x1, line2.x2);
var _local10 = Math.min(line1.y1, line1.y2);
var _local8 = Math.max(line1.y1, line1.y2);
var _local14 = Math.min(line2.y1, line2.y2);
var _local12 = Math.max(line2.y1, line2.y2);
_local2.crossed = true;
_local2.x = _local5;
_local2.y = _local6;
if ((((_local5 >= _local11) && (_local5 <= _local9)) && (_local5 >= _local7)) && (_local5 <= _local13)) {
if ((((_local6 >= _local10) && (_local6 <= _local8)) && (_local6 >= _local14)) && (_local6 <= _local12)) {
_local2.actualCrossed = true;
_local2.dxFull = line1.dx;
_local2.dyFull = line1.dy;
_local2.dx1 = roundNums(_local5 - line1.x1);
_local2.dy1 = roundNums(_local6 - line1.y1);
_local2.d1 = roundNums(Math.sqrt((_local2.dx1 * _local2.dx1) + (_local2.dy1 * _local2.dy1)));
_local2.dx2 = roundNums(line1.x2 - _local5);
_local2.dy2 = roundNums(line1.y2 - _local6);
_local2.d2 = roundNums(Math.sqrt((_local2.dx2 * _local2.dx2) + (_local2.dy2 * _local2.dy2)));
_local2.dox1 = roundNums(_local5 - line2.x1);
_local2.doy1 = roundNums(_local6 - line2.y1);
_local2.do1 = roundNums(Math.sqrt((_local2.dox1 * _local2.dox1) + (_local2.doy1 * _local2.doy1)));
_local2.dox2 = roundNums(line2.x2 - _local5);
_local2.doy2 = roundNums(line2.y2 - _local6);
_local2.do2 = roundNums(Math.sqrt((_local2.dox2 * _local2.dox2) + (_local2.doy2 * _local2.doy2)));
_local2.al = roundNums(Math.atan2(line1.dy, line1.dx));
_local2.dal = roundNums(Math.atan2(line2.ny, line2.nx) - _local2.al);
_local2.new_al = roundNums((_local2.al + (2 * _local2.dal)) + Math.PI);
_local2.new_dx2 = roundNums(Math.cos(_local2.new_al) * _local2.d2);
_local2.new_dy2 = roundNums(Math.sin(_local2.new_al) * _local2.d2);
return(_local2);
}
return(_local2);
}
return(_local2);
};
_global.countLine = function (line) {
_global.countLinesC++;
line.x1 = roundNums(line.x1);
line.y1 = roundNums(line.y1);
line.x2 = roundNums(line.x2);
line.y2 = roundNums(line.y2);
line.a = (line.y2 - line.y1) / (line.x2 - line.x1);
line.k = line.y1 - (line.a * line.x1);
line.dx = line.x2 - line.x1;
line.dy = line.y2 - line.y1;
var _local4 = -line.dx;
var _local3 = line.dy;
line.d = (line.length = Math.sqrt((_local4 * _local4) + (_local3 * _local3)));
line.nx = _local3 / line.d;
line.ny = _local4 / line.d;
line.nndx = line.dx / line.d;
line.nndy = line.dy / line.d;
line.al = Math.atan2(line.dy, line.dx);
line.al_gr = line.al * _global.PI2;
line.nal = Math.atan2(line.ny, line.nx);
line.nal_gr = line.nal * _global.PI2;
};
_global.getSign = function (a, flag) {
if (flag == undefined) {
flag = false;
}
if (a > 0) {
return(1);
}
if (a < 0) {
return(-1);
}
if (flag) {
return(0);
}
return(0);
};
_global.angleToInterval = function (al) {
while (al > 180) {
al = al - 360;
}
while (al < -180) {
al = al + 360;
}
return(al);
};
_global.traceall = function (a) {
for (var _local2 in a) {
trace((_local2 + " = ") + a[_local2]);
}
};
Array.prototype.add = function (a, canBeTwice) {
canBeTwice = Boolean(canBeTwice);
if (canBeTwice) {
this.push(a);
} else {
var _local2 = 0;
while (_local2 < this.length) {
if (this[_local2] == a) {
return(undefined);
}
_local2++;
}
this.push(a);
}
};
Array.prototype.remove = function (a, remAll) {
remAll = Boolean(remAll);
var _local2 = 0;
while (_local2 < this.length) {
if (this[_local2] == a) {
this.splice(_local2, 1);
if (!remAll) {
break;
}
_local2--;
}
_local2++;
}
};
Array.prototype.removeFromObj = function (str, a, remAll) {
remAll = Boolean(remAll);
var _local2 = 0;
while (_local2 < this.length) {
if (this[_local2][str] == a) {
this.splice(_local2, 1);
if (!remAll) {
break;
}
_local2--;
}
_local2++;
}
};
Array.prototype.inArray = function (a, str) {
if (_global.noSet(str)) {
var _local3 = 0;
while (_local3 < this.length) {
if (this[_local3] == a) {
return(true);
}
_local3++;
}
} else {
var _local3 = 0;
while (_local3 < this.length) {
if (this[_local3][str] == a) {
return(true);
}
_local3++;
}
}
return(false);
};
Array.prototype.arrangeLength = function (len) {
if (this.length < len) {
var _local2 = 0;
while (_local2 < len) {
if (this[_local2] == undefined) {
this[_local2] = this[this.length - 1];
}
_local2++;
}
}
};
stop();
_root.parsingDataMC._alpha = 0;
_root.parsingDataMC.onEnterFrame = parsingOn;
_global.allowToStart = false;
mainOEFBefore = function () {
if (_global.gameInProcess) {
if (envS.bulletPointsDebug) {
_root.debugFrame.clear();
}
}
};
mainOEF = function () {
if (_global.gameInProcess) {
var dt = Math.round((getTimer() - gameTimeStart) / 1000);
var st = (dt % 60);
if (st < 10) {
st = "0" + st;
}
var tt = Math.floor(dt / 60);
_root.tfTimer.text = (tt + ":") + st;
var deltaTime = (getTimer() - _global.levelTimeS);
_global.levelTime = _global.levelTime + deltaTime;
_global.levelTimeF++;
_root.tfTimerF.text = levelTimeF;
var dt = Math.round(_global.levelTime / 1000);
var st = (dt % 60);
if (st < 10) {
st = "0" + st;
}
var tt = Math.floor(dt / 60);
if (tt < 10) {
tt = "0" + tt;
}
_root.gui.time.text = (tt + ":") + st;
_root.oneFrameTF.text = deltaTime;
var nfx = _root.frame._x;
var nfy = _root.frame._y;
var rPlayerX = (_root.frame._x + mt[envS.playerName].x);
var rPlayerY = (_root.frame._y + mt[envS.playerName].y);
if (rPlayerX < _global.envS.playerFrameOffset.left) {
nfx = Math.round(_global.envS.playerFrameOffset.left - mt[envS.playerName].x);
}
if (rPlayerX > (_global.envS.windowX - _global.envS.playerFrameOffset.right)) {
nfx = Math.round((_global.envS.windowX - _global.envS.playerFrameOffset.right) - mt[envS.playerName].x);
}
if (rPlayerY < _global.envS.playerFrameOffset.top) {
nfy = Math.round(_global.envS.playerFrameOffset.top - mt[envS.playerName].y);
}
if (rPlayerY > (_global.envS.windowY - _global.envS.playerFrameOffset.bottom)) {
nfy = Math.round((_global.envS.windowY - _global.envS.playerFrameOffset.bottom) - mt[envS.playerName].y);
}
if ((Math.abs(frameX - nfx) > 1) || (Math.abs(frameY - nfy) > 1)) {
_global.frameX = _global.frameX + ((nfx - _global.frameX) / _global.envS.frameXScrollFactor);
_global.frameY = _global.frameY + ((nfy - _global.frameY) / _global.envS.frameYScrollFactor);
if (Math.abs(frameX - nfx) < 0.5) {
_global.frameX = nfx;
}
if (Math.abs(frameY - nfy) < 0.5) {
_global.frameY = nfy;
}
setFrames();
updateLevel();
}
stepMissions();
checkMissions(false, true);
_global.countLinesC = 0;
_global.countCrossesC = 0;
var i = 0;
while (i < splashedObject.length) {
var tt = splashedObject[i];
tt.delay--;
if (tt.delay == 0) {
tt.tile.getDamage(tt.enemy, tt.damage);
splashedObject.splice(i, 1);
i--;
}
i++;
}
if (gameOver || (gameInWin)) {
stopAllEngines();
checkMissions(true);
with (_root.wndComplete) {
_visible = true;
var ttz = _global.envS.textZ;
if (_global.gameOver && (!gameInWin)) {
title_mc.title.text = ttz.playerDiedTitle;
_global.sound.play("playerDead", undefined, true);
_global.levelNum--;
} else {
_global.rings_all = _global.rings_all + ringsAtAll;
_global.ringsTaken_all = _global.ringsTaken_all + mt[envS.playerName].rings;
_global.kills_all = _global.kills_all + mt[envS.playerName].kills;
title_mc.title.text = ttz.levelCompleteTitle;
_global.gameScore = _global.gameScore + _global.levelScore;
_global.sound.play("levelComplete", undefined, true);
var saved = SharedObject.getLocal(gameName, "/");
if ((saved.data.levelDone < levelNum) || (noSet(saved.data.levelDone))) {
if (!noSet(levelsSet["level_" + (levelNum + 1)])) {
saved.data.levelDone = levelNum;
saved.flush();
trace("SAVED DATA");
}
}
}
tf1_.htmlText = ("<p align=\"right\">" + ttz.completeString1) + "</p>";
tf1.text = _global.levelScore;
}
}
}
_global.levelTimeS = getTimer();
};
endGameOutput = function () {
_root.wndComplete.flag = true;
with (_root.wndComplete) {
_visible = true;
var ttz = _global.envS.textZ;
title_mc.title.text = ttz.gameCompleteTitle;
tf1_.htmlText = ("<p align=\"right\">" + ttz.final_completeString1) + "</p>";
tf1.text = _global.gameScore;
}
};
_global.setProgressBar = function (now, all) {
if (!usingBar) {
return(undefined);
}
now = now - 1;
all = all - 1;
var _local2 = (100 * now) / all;
if (_local2 > 100) {
_local2 = 100;
}
if (_local2 < 1) {
_local2 = 1;
}
_root.gui.progress.bar.gotoAndStop(Math.round(_local2));
};
_global.makePause = function (flag) {
if (_global.gameOver) {
return(undefined);
}
if ((Key.isDown(27) || (Key.isDown(80))) || (flag)) {
if (_global.gameInProcess) {
_global.gameInProcess = false;
_root.wndPause._visible = true;
} else {
_global.gameInProcess = true;
_root.wndPause._visible = false;
_global.levelTimeS = getTimer();
}
}
};
_global.stopAllEngines = function () {
Key.removeListener(_global.keyGetter);
delete _global.keyGetter;
_global.gameInProcess = false;
_global.queue.clear();
_global.queue.removeMovieClip();
delete _global.queue;
};
_global.makeBreef = function (done) {
if (done == true) {
if (this.mode == 1) {
while (this.currText < 3) {
if (this.currText == 1) {
var _local4 = this.breefText1;
var _local5 = _root.wnd.intro1;
}
if (this.currText == 2) {
var _local4 = this.breefText2;
var _local5 = _root.wnd.intro2;
}
while (this.step < _local4.length) {
_local5.text = _local5.text + _local4.charAt(++this.step);
}
this.currText++;
this.step = -1;
this.step2 = 0;
}
this.mode = 2;
}
} else if (this.mode == 1) {
if (this.currText == 1) {
var _local4 = this.breefText1;
var _local5 = _root.wnd.intro1;
}
if (this.currText == 2) {
var _local4 = this.breefText2;
var _local5 = _root.wnd.intro2;
}
if (_global.noSet(this.step)) {
this.step = -1;
}
if (_global.noSet(this.step2)) {
this.step2 = 0;
}
this.step2++;
if (this.step2 >= this.delay) {
this.step2 = 0;
_local5.text = _local5.text + _local4.charAt(++this.step);
_local5.text = _local5.text + _local4.charAt(++this.step);
if (Math.random() < 0.5) {
_global.sound.play("type");
}
}
if (this.step >= _local4.length) {
if (this.currText == 1) {
this.currText = 2;
this.step = -1;
this.step2 = 0;
} else {
this.mode = 2;
}
}
}
};
_root.prebreefFunc = function () {
stop();
_root.gui.health.bar._xscale = 100;
_root.gui.progress.bar.gotoAndStop(1);
_root.gui.progress.bar._visible = false;
_root.gui.adder.gotoAndStop(1);
_root.gui.fireRate.gotoAndStop(1);
_root.gui.double.gotoAndStop(1);
_root.gui.speed.gotoAndStop(1);
_global.levelNum++;
if (!_global.noSet(_global.levelsSet["level_" + levelNum])) {
wnd.levelNum.text = _global.levelNum;
wnd.breefText1 = prepareText(_global.levelsSet["level_" + levelNum].comment1);
wnd.breefText2 = prepareText(_global.levelsSet["level_" + levelNum].comment2);
if (_global.noSet(wnd.breefText1) || (wnd.breefText1 == "")) {
wnd.breefText1 = _global.levelsSet["level_" + levelNum].comment;
}
if (_global.noSet(wnd.breefText1)) {
wnd.breefText1 = "";
}
if (_global.noSet(wnd.breefText2)) {
wnd.breefText2 = "";
}
wnd.currText = 1;
var _local3 = _global.levelsSet["level_" + levelNum].typerDelay;
if (_global.noSet(_local3)) {
_local3 = 0;
}
_root.wnd.delay = _local3;
_root.wnd.intro1.text = "";
_root.wnd.intro2.text = "";
_root.wnd.mode = 1;
_root.wnd.onEnterFrame = makeBreef;
}
if (!_global.noSet(_global.levelsSet["level_" + levelNum].story)) {
_root.wnd.attachMovie(_global.levelsSet["level_" + levelNum].story, "story", _root.wnd.getNextHighestDepth());
}
};
_global.calcZones = function (tile) {
tile.zones = new Array();
tile.zonesTypes = new Array();
tile.zonesTiles = new Array();
bb = tile.bb_arr;
var _local2 = 0;
while (_local2 < aTiles.length) {
var _local1 = aTiles[_local2].mc;
if (_local1 == tile) {
} else if (_local1.fullTransparent) {
} else if (!_local1.zoned) {
} else if ((bb.min.x < _local1.zone_arr.max.x) && (bb.max.x > _local1.zone_arr.min.x)) {
if ((bb.min.y < _local1.zone_arr.max.y) && (bb.max.y > _local1.zone_arr.min.y)) {
tile.zonesTiles.push(_local1);
tile.zones.add(_local1);
tile.zonesTypes.add(_local1.zoneType);
}
}
_local2++;
}
};
_global.testCollisions = function (tile, speed, angle) {
var _local19 = new Object();
_local19.dx = speed.x;
_local19.dy = speed.y;
_local19.dr = angle;
var _local13 = new Object();
_local13.min = new Object();
_local13.max = new Object();
var _local24 = tile.getBB(tile._x, tile._y, tile._rotation);
var _local23 = tile.getBB(tile._x + speed.x, tile._y + speed.y, tile._rotation + angle);
_local13.min.x = Math.min(_local24.min.x, _local23.min.x);
_local13.min.y = Math.min(_local24.min.y, _local23.min.y);
_local13.max.x = Math.max(_local24.max.x, _local23.max.x);
_local13.max.y = Math.max(_local24.max.y, _local23.max.y);
if ((Math.abs(_local13.min.x - _local13.max.x) > 1) || (Math.abs(_local13.min.y - _local13.max.y) > 1)) {
_root.shower.clear();
_root.shower2.clear();
}
if (_global.envS.debugWires == 1) {
_root.shower.lineStyle(1, 10027008);
_root.shower.drawRect(_local13.min.x, _local13.min.y, _local13.max.x, _local13.max.y);
}
var _local6 = new Array();
var _local9 = 0;
while (_local9 < aTiles.length) {
var _local4 = aTiles[_local9].mc;
if (_local4 == tile) {
} else if (_local4.fullTransparent) {
} else if ((_local13.min.x < _local4.bb_arr.max.x) && (_local13.max.x > _local4.bb_arr.min.x)) {
if ((_local13.min.y < _local4.bb_arr.max.y) && (_local13.max.y > _local4.bb_arr.min.y)) {
_local6.push(_local4);
}
}
_local9++;
}
if (_local6.length == 0) {
return(_local19);
}
var _local14 = 0;
var _local11 = 1;
var _local16 = 1;
var _local15 = 0;
var _local20 = Math.sqrt((speed.x * speed.x) + (speed.y * speed.y));
startXYR = new Object();
startXYR.x = tile.x;
startXYR.y = tile.y;
startXYR.r = tile._rotation;
k_real = 0;
var _local12 = new Array();
_local9 = 0;
while (_local9 < _local6.length) {
_local12.push(new Array());
var _local10 = _local6[_local9].hitPoints;
var _local5 = 0;
while (_local5 < _local10.length) {
var _local7 = new Object();
_local7.x = _local10[_local5]._x;
_local7.y = _local10[_local5]._y;
_local10[_local5]._parent.localToGlobal(_local7);
_local12[_local9].push(_local7);
_local5++;
}
_local9++;
}
do {
tile._x = startXYR.x + (speed.x * _local11);
tile._y = startXYR.y + (speed.y * _local11);
tile._rotation = startXYR.r + (angle * _local11);
var hit = false;
var _local8 = new Array();
var _local10 = tile.hitPoints;
_local9 = 0;
while (_local9 < _local10.length) {
var _local7 = new Object();
_local7.x = _local10[_local9]._x;
_local7.y = _local10[_local9]._y;
_local10[_local9]._parent.localToGlobal(_local7);
var _local5 = 0;
while (_local5 < _local6.length) {
if (_local6[_local5].hitMyBody(_local7.x, _local7.y)) {
hit = true;
_local8.add(_local6[_local5]);
}
_local5++;
}
_local9++;
}
_local9 = 0;
while (_local9 < _local12.length) {
_local10 = _local12[_local9];
var _local5 = 0;
while (_local5 < _local10.length) {
if (tile.hitMyBody(_local10[_local5].x, _local10[_local5].y)) {
hit = true;
_local8.add(_local6[_local9]);
}
_local5++;
}
_local9++;
}
if (hit) {
_local9 = 0;
while (_local9 < _local8.length) {
var _local4 = _local8[_local9];
if (tile.isPlayer && (_local4.bonus)) {
tile.getBonus(_local4);
}
if (_local4.isPlayer && (tile.bonus)) {
_local4.getBonus(tile);
}
if (tile.isPlayer && (_local4.evil)) {
tile.getDamage(_local4, _local4.hitDamage);
}
if (_local4.isPlayer && (tile.evil)) {
_local4.getDamage(tile, tile.hitDamage);
}
if (_local4.transparent) {
_local8.splice(_local9, 1);
_local9--;
_local6.remove(_local4, true);
}
_local9++;
}
}
if (_local8.length == 0) {
hit = false;
}
_local15++;
if (hit) {
k_real = _local14;
} else {
k_real = _local11;
}
if (hit) {
var _local18 = _local11;
_local11 = (_local14 + _local11) / 2;
_local16 = _local18;
} else if (_local15 > 1) {
var _local18 = _local11;
_local11 = (_local16 + _local11) / 2;
_local14 = _local18;
}
} while (((_local20 * (_local16 - _local14)) > envS.precisionOffset) && (!((_local15 == 1) && (!hit))));
_local19.dx = _local19.dx * k_real;
_local19.dy = _local19.dy * k_real;
_local19.dr = _local19.dr * k_real;
if (k_real != 1) {
if (envS.reaction != 0) {
var _local22 = envS.reactionFactor;
if (noSet(_local22)) {
_local22 = 1;
}
tile.speed.define((-_local22) * tile.speed.x, (-_local22) * tile.speed.y);
tile.subRotate = (-_local22) * tile.subRotate;
} else {
tile.speed.define(0, 0);
tile.subRotate = 0;
}
}
tile._x = startXYR.x;
tile._y = startXYR.y;
tile._rotation = startXYR.r;
return(_local19);
};
_global.testSimpleCollisions = function (tile, speed, angle, tilesForTest) {
if (noSet(tilesForTest)) {
return(false);
}
if (tilesForTest.length == 0) {
return(false);
}
var _local10 = new Object();
_local10.min = new Object();
_local10.max = new Object();
var _local12 = tile.getBB(tile._x, tile._y, tile._rotation);
var _local11 = tile.getBB(tile._x + speed.x, tile._y + speed.y, tile._rotation + angle);
_local10.min.x = Math.min(_local12.min.x, _local11.min.x);
_local10.min.y = Math.min(_local12.min.y, _local11.min.y);
_local10.max.x = Math.max(_local12.max.x, _local11.max.x);
_local10.max.y = Math.max(_local12.max.y, _local11.max.y);
startXYR = new Object();
startXYR.x = tile.x;
startXYR.y = tile.y;
startXYR.r = tile._rotation;
var _local7 = new Array();
var _local5 = 0;
while (_local5 < tilesForTest.length) {
_local7.push(new Array());
var _local4 = tilesForTest[_local5].hitPoints;
var _local1 = 0;
while (_local1 < _local4.length) {
var _local3 = new Object();
_local3.x = _local4[_local1]._x;
_local3.y = _local4[_local1]._y;
_local4[_local1]._parent.localToGlobal(_local3);
_local7[_local5].push(_local3);
_local1++;
}
_local5++;
}
tile._x = startXYR.x + speed.x;
tile._y = startXYR.y + speed.y;
tile._rotation = startXYR.r + angle;
var _local8 = false;
var _local9 = new Array();
var _local4 = tile.hitPoints;
_local5 = 0;
while (_local5 < _local4.length) {
var _local3 = new Object();
_local3.x = _local4[_local5]._x;
_local3.y = _local4[_local5]._y;
_local4[_local5]._parent.localToGlobal(_local3);
var _local1 = 0;
while (_local1 < tilesForTest.length) {
if (tilesForTest[_local1].hitMyBody(_local3.x, _local3.y)) {
_local8 = true;
_local9.add(tilesForTest[_local1]);
}
_local1++;
}
_local5++;
}
if (_local8) {
tile._x = startXYR.x;
tile._y = startXYR.y;
tile._rotation = startXYR.r;
return(true);
}
_local5 = 0;
while (_local5 < _local7.length) {
_local4 = _local7[_local5];
var _local1 = 0;
while (_local1 < _local4.length) {
if (tile.hitMyBody(_local4[_local1].x, _local4[_local1].y)) {
_local8 = true;
_local9.add(tilesForTest[_local5]);
}
_local1++;
}
_local5++;
}
if (_local8) {
tile._x = startXYR.x;
tile._y = startXYR.y;
tile._rotation = startXYR.r;
return(true);
}
return(false);
};
_global.checkBullet = function (ff) {
var _local12 = ff.bb_arr;
var _local10 = ff.line;
var _local8 = new Array();
var _local6 = 0;
while (_local6 < aTiles.length) {
var _local4 = aTiles[_local6].mc;
if (_local4.weaponTransparent) {
} else if (_local4 == ff.father) {
} else if (isChild(ff.victims, _local4)) {
} else if (_local4.isPlayer && (ff.fromPlayer)) {
} else if ((!_local4.isPlayer) && (!ff.fromPlayer)) {
} else if ((_local12.min.x < _local4.bb_arr.max.x) && (_local12.max.x > _local4.bb_arr.min.x)) {
if ((_local12.min.y < _local4.bb_arr.max.y) && (_local12.max.y > _local4.bb_arr.min.y)) {
_local8.push(_local4);
}
}
_local6++;
}
if (envS.bulletPointsDebug) {
_root.debugFrame.lineStyle(0, 16711935);
}
_root.debugFrame.drawLine(_local10.x1 + frameX, _local10.y1 + frameY, _local10.x2 + frameX, _local10.y2 + frameY);
var _local3 = new Array();
var _local13 = Math.ceil(_local10.length / envS.bulletStep);
_local6 = 0;
while (_local6 <= _local13) {
var _local7 = new Object();
_local7.x = (_local10.x1 + frameX) + ((_local6 * _local10.dx) / _local13);
_local7.y = (_local10.y1 + frameY) + ((_local6 * _local10.dy) / _local13);
if (envS.bulletPointsDebug) {
_root.debugFrame.drawRectAbout(_local7.x, _local7.y, 3);
}
_local3.push(_local7);
_local6++;
}
_local6 = 0;
while (_local6 < _local8.length) {
var _local11 = false;
var _local2 = 0;
while (_local2 < _local3.length) {
if (_local8[_local6].hitMyBody(_local3[_local2].x, _local3[_local2].y)) {
if (envS.bulletPointsDebug) {
_root.debugFrame.beginFill(16711680);
_root.debugFrame.drawRectAbout(_local3[_local2].x, _local3[_local2].y, 3);
_root.debugFrame.endFill();
}
var _local9 = ff.sendDamage(_local8[_local6], _local3[_local2].x, _local3[_local2].y);
if (!_local9) {
ff.destroy();
_local11 = true;
break;
}
break;
}
_local2++;
}
if (_local11) {
break;
}
_local6++;
}
};
_global.getVector = function (tile, lx, ly, edge) {
var _local2 = new Object();
_local2.x1 = lx;
_local2.y1 = ly;
_local2.x2 = tile.x;
_local2.y2 = tile.y;
_global.countLine(_local2);
return(new Vector(_local2.dx, _local2.dy));
};
_global.prepareLevel = function (cl, startStep) {
if (startStep == 0) {
cl.preparedLevel = new Array();
cl.areas = new Array();
}
if (startStep == undefined) {
startStep = 0;
}
var _local21 = envS.levelProcessingCount;
if (noSet(_local21)) {
_local21 = 50;
}
var _local20 = startStep + _local21;
if (_local20 > cl.level.length) {
_local20 = cl.level.length;
}
var _local11 = startStep;
while (_local11 < _local20) {
var _local7 = cl.level[_local11];
var _local2 = new Object();
if (!noSet(tilesSet[_local7.tile])) {
for (var _local18 in tilesSet[_local7.tile]) {
_local2[_local18] = tilesSet[_local7.tile][_local18];
}
}
var _local9 = _local7.plane;
if (noSet(_local9)) {
_local9 = _local2.plane;
}
if (noSet(_local9)) {
_local9 = envS.defaultPlane;
}
if (_local2.type == "playerMC") {
_local9 = envS.playerPlane;
}
for (var _local18 in _global.planeObjs[_local9].params) {
_local2[_local18] = _global.planeObjs[_local9].params[_local18];
}
var _local16 = _local7.proto;
if (noSet(_local16)) {
_local16 = _local2.proto;
}
if (!noSet(_local16)) {
var _local10 = prepareArrayString(_local16);
var _local3 = 0;
while (_local3 < _local10.length) {
var _local8 = protosSet[_local10[_local3]];
if (noSet(_local8)) {
debug((((("Cannot find proto " + _local10[_local3]) + " for object ") + _local11) + " in level ") + levelNum);
} else {
for (var _local18 in _local8) {
_local2[_local18] = _local8[_local18];
}
}
_local3++;
}
}
for (var _local18 in _local7) {
_local2[_local18] = _local7[_local18];
}
if (noSet(_local2.bb)) {
trace(("Tile " + _local2.type) + " have no bounding box!");
} else if (noSet(_local2.x) || (noSet(_local2.y))) {
trace(("Tile " + _local2.type) + " have no X or Y coordinate!");
} else {
var _local17 = new Array();
if (((_local2.type != "playerMC") && (_local2.type != "pathMovingTileMC")) && (_local2.permanent != 1)) {
var _local5 = _local2.bb.split(",");
_local5[0] = parseInt(_local5[0]);
_local5[1] = parseInt(_local5[1]);
_local5[2] = parseInt(_local5[2]);
_local5[3] = parseInt(_local5[3]);
var _local15 = Math.min(_local5[0], _local5[2]);
var _local14 = Math.max(_local5[0], _local5[2]);
var _local13 = Math.min(_local5[1], _local5[3]);
var _local12 = Math.max(_local5[1], _local5[3]);
_local15 = Math.floor((_local15 + _local2.x) / envS.areaX);
_local14 = Math.floor((_local14 + _local2.x) / envS.areaX);
_local13 = Math.floor((_local13 + _local2.y) / envS.areaY);
_local12 = Math.floor((_local12 + _local2.y) / envS.areaY);
var _local3 = _local15;
while (_local3 <= _local14) {
var _local4 = _local13;
while (_local4 <= _local12) {
if (noSet(cl.areas[_local3])) {
cl.areas[_local3] = new Array();
}
if (noSet(cl.areas[_local3][_local4])) {
cl.areas[_local3][_local4] = new Array();
}
cl.areas[_local3][_local4].push(_local2);
_local4++;
}
_local3++;
}
}
}
cl.preparedLevel.push(_local2);
_local11++;
}
};
_global.prepareMissions = function (cl) {
cl.preparedGroups = new Object();
var _local6 = 0;
while (_local6 < cl.missions.length) {
var _local3 = cl.missions[_local6];
if (noSet(_local3.group)) {
} else if (!noSet(cl.preparedGroups[_local3.group])) {
debug((("\u041F\u043E\u0432\u0442\u043E\u0440\u043D\u043E\u0435 \u043E\u043F\u0440\u0435\u0434\u0435\u043B\u0435\u043D\u0438\u0435 \u0433\u0440\u0443\u043F\u043F\u044B " + _local3.group) + " \u0432 \u0443\u0440\u043E\u0432\u043D\u0435 ") + levelNum, true);
} else {
klop = new Object();
for (var _local7 in _local3) {
klop[_local7] = _local3[_local7];
}
klop.amount = 0;
klop.survived = 0;
klop.killed = 0;
klop.taken = 0;
klop.captured = 0;
klop.success = false;
if (noSet(klop.dontCount)) {
klop.dontCount = false;
} else {
klop.dontCount = Boolean(klop.dontCount);
}
if (klop.active != 0) {
klop.active = 1;
}
if (noSet(klop.missionType)) {
klop.missionType = "kill";
}
cl.preparedGroups[_local3.group] = klop;
}
_local6++;
}
_local6 = 0;
while (_local6 < cl.preparedLevel.length) {
var _local5 = cl.preparedLevel[_local6];
if (!noSet(_local5.group)) {
var _local4 = prepareArrayString(_local5.group);
var _local1 = 0;
while (_local1 < _local4.length) {
cl.preparedGroups[_local4[_local1]].amount++;
if (cl.preparedGroups[_local4[_local1]].active == 0) {
_local5.inGame = false;
}
_local1++;
}
}
_local6++;
}
updateMissionsProgress();
};
_global.makeLevel = function (cl) {
debug("MAKING LEVEL " + levelNum);
_global.aTiles = new Array();
_global.ringsAtAll = 0;
var _local2 = 0;
while (_local2 < cl.preparedLevel.length) {
cl.preparedLevel[_local2].inGame = true;
cl.preparedLevel[_local2].gameState = 0;
if ((cl.preparedLevel[_local2].bonus == 1) && (cl.preparedLevel[_local2].tile == "bonus_ring")) {
_global.ringsAtAll++;
}
if (!noSet(cl.preparedLevel[_local2].mcname)) {
_global.mto[cl.preparedLevel[_local2].mcname] = cl.preparedLevel[_local2];
}
_local2++;
}
prepareMissions(cl);
};
_global.updateLevel = function () {
minx = Math.floor(((-frameX) - envS.areaOffsetX) / envS.areaX);
maxx = Math.floor((((-frameX) + envS.windowX) + envS.areaOffsetX) / envS.areaX);
miny = Math.floor(((-frameY) - envS.areaOffsetY) / envS.areaY);
maxy = Math.floor((((-frameY) + envS.windowY) + envS.areaOffsetY) / envS.areaY);
var _local2 = new Array();
var _local3 = minx;
while (_local3 <= maxx) {
var _local1 = miny;
while (_local1 <= maxy) {
if (!noSet(currLevel.areas[_local3][_local1])) {
g = 0;
while (g < currLevel.areas[_local3][_local1].length) {
if (currLevel.areas[_local3][_local1][g].inGame) {
_local2.add(currLevel.areas[_local3][_local1][g]);
}
g++;
}
}
_local1++;
}
_local3++;
}
_local3 = 0;
while (_local3 < aTiles.length) {
if (((aTiles[_local3].def.type == "playerMC") || (aTiles[_local3].def.type == "pathMovingTileMC")) || (aTiles[_local3].def.permanent == 1)) {
} else if (!_local2.inArray(aTiles[_local3].def)) {
aTiles[_local3].mc.flyOut(true);
}
_local3++;
}
_local3 = 0;
while (_local3 < _local2.length) {
if (!aTiles.inArray(_local2[_local3], "def")) {
createTile(_local2[_local3]);
}
_local3++;
}
};
_global.createTile = function (obj) {
if (noSet(obj.type)) {
debug((("Cannot find type of object " + i) + " in level ") + levelNum);
}
if (noSet(obj.tile)) {
debug((("Cannot find tile linkege for object " + i) + " in level ") + levelNum);
}
var _local5 = obj.plane;
if (noSet(_local5)) {
_local5 = envS.defaultPlane;
}
_local5 = _root.frame[_local5];
if (obj.type == "playerMC") {
_local5 = _root.frame[envS.playerPlane];
}
var _local6 = obj.depth;
if (noSet(_local6)) {
_local6 = _local5.getNextHighestDepth();
} else if (!noSet(_local5.getInstanceAtDepth(_local6))) {
_local6 = _local5.getNextHighestDepth();
}
var _local7 = obj.mcname;
if (noSet(_local7)) {
_local7 = "tile_" + _local6;
}
var _local4 = _local5.attachMovie(obj.type, _local7, _local6);
if (!noSet(obj.mcname)) {
_global.mt[_local7] = _local4;
}
_local4.makeTile(obj.tile, obj);
var _local10 = 0;
if (!noSet(obj.x)) {
_local10 = obj.x;
}
var _local9 = 0;
if (!noSet(obj.y)) {
_local9 = obj.y;
}
var _local8 = 0;
if (!noSet(obj.r)) {
_local8 = obj.r;
}
_local4._x = _local10;
_local4._y = _local9;
_local4._rotation = _local8;
_local4.setParams(obj.xFr, obj.yFr, obj.rFr, obj.aFr);
_local4.setMobility(obj.deltaR, obj.maxR, obj.deltaS);
_local4.setMovingByPath(obj.moving);
_local4.initObj();
aTiles.push({def:obj, mc:_local4});
};
_global.preparePlanes = function () {
debug("preparing planes");
delete _global.planeObjs;
_global.planeObjs = new Object();
_root.frame.createEmptyMovieClip("debugFrame", planesSet.length + 10);
var _local3 = 0;
while (_local3 < planesSet.length) {
var _local4 = _root.frame.createEmptyMovieClip(planesSet[_local3].planeName, planesSet.length - _local3);
_global.planeObjs[planesSet[_local3].planeName] = planesSet[_local3];
_local3++;
}
};
_global.setFrames = function () {
_root.frame._x = Math.round(frameX);
_root.frame._y = Math.round(frameY);
_root.shower._x = _root.frame._x;
_root.shower._y = _root.frame._y;
_root.shower2._x = _root.frame._x;
_root.shower2._y = _root.frame._y;
_root.bulletsBB._x = _root.frame._x;
_root.bulletsBB._y = _root.frame._y;
_root.sandBG._x = (_root.frame._x % 550) + ((_root.frame._x > 0) ? -550 : 0);
_root.sandBG._y = (_root.frame._y % 400) + ((_root.frame._y > 0) ? -400 : 0);
_global.FrameBB = new Object();
FrameBB.max = new Object();
FrameBB.min = new Object();
FrameBB.min.x = (-frameX) - envS.areaOffsetX;
FrameBB.max.x = ((-frameX) + envS.windowX) + envS.areaOffsetX;
FrameBB.min.y = (-frameY) - envS.areaOffsetY;
FrameBB.max.y = ((-frameY) + envS.windowY) + envS.areaOffsetY;
_global.fireFrameBB = new Object();
fireFrameBB.max = new Object();
fireFrameBB.min = new Object();
fireFrameBB.min.x = (-frameX) + envS.shootingOffset.left;
fireFrameBB.max.x = ((-frameX) + envS.windowX) - envS.shootingOffset.right;
fireFrameBB.min.y = (-frameY) + envS.shootingOffset.top;
fireFrameBB.max.y = ((-frameY) + envS.windowY) - envS.shootingOffset.bottom;
};
_global.checkSplashAll = function (blt, x, y) {
if (blt.splashDamage == 0) {
return(undefined);
}
if (envS.splashDebug == 1) {
var _local15 = _root.frame.debugFrame.getNextHighestDepth();
var _local14 = _root.frame.debugFrame.attachMovie("splashRadius", "spl" + _local15, _local15);
_local14._xscale = (_local14._yscale = blt.splashRadius * 2);
splashOff(_local14);
_local14._x = x - frameX;
_local14._y = y - frameY;
}
var _local4 = new Object();
_local4.min = new Object();
_local4.max = new Object();
_local4.min.x = (x - blt.splashRadius) - frameX;
_local4.max.x = (x + blt.splashRadius) - frameX;
_local4.min.y = (y - blt.splashRadius) - frameY;
_local4.max.y = (y + blt.splashRadius) - frameY;
if (envS.splashDebug == 1) {
var _local16 = _root.frame.debugFrame.getNextHighestDepth();
var _local14 = _root.frame.debugFrame.createEmptyMovieClip("spl_box" + _local16, _local16);
_local14.lineStyle(0, 16711935);
_local14.drawRect(_local4.min.x, _local4.min.y, _local4.max.x, _local4.max.y);
splashOff(_local14);
}
var _local6 = new Array();
var _local5 = 0;
while (_local5 < aTiles.length) {
var _local2 = aTiles[_local5].mc;
if (_local2 == blt) {
} else if (!_local2.isHitable) {
} else if (_local2.splashTransparent) {
} else if (blt.isBullet && (blt.father == _local2)) {
} else if ((_local4.min.x < _local2.bb_arr.max.x) && (_local4.max.x > _local2.bb_arr.min.x)) {
if ((_local4.min.y < _local2.bb_arr.max.y) && (_local4.max.y > _local2.bb_arr.min.y)) {
_local6.push(_local2);
}
}
_local5++;
}
_local5 = 0;
while (_local5 < _local6.length) {
var _local7 = checkSplashOne(blt, x, y, _local6[_local5]);
if (_local7) {
splashedObject.push({tile:_local6[_local5], enemy:blt, delay:blt.splashDelay, damage:blt.splashDamage});
}
_local5++;
}
};
_global.checkSplashOne = function (splObj, x, y, tile) {
var _local13 = _global.envS.splashTests;
var _local14 = {x:tile.body._x, y:tile.body._y};
tile.body._parent.localToGlobal(_local14);
var _local16 = _local14.x - x;
var _local15 = _local14.y - y;
var _local17 = Math.sqrt((_local16 * _local16) + (_local15 * _local15));
var _local7 = Math.atan2(_local15, _local16);
if (_local17 < splObj.splashRadius) {
if (envS.splashDebug == 1) {
var _local6 = _root.frame.debugFrame.getNextHighestDepth();
var _local3 = _root.frame.debugFrame.createEmptyMovieClip("spl_line" + _local6, _local6);
_local3.lineStyle(0, 16711935);
_local3.drawLine(_local14.x - frameX, _local14.y - frameY, x - frameX, y - frameY);
splashOff(_local3);
}
return(true);
}
if (envS.splashDebug == 1) {
var _local6 = _root.frame.debugFrame.getNextHighestDepth();
var _local3 = _root.frame.debugFrame.createEmptyMovieClip("spl_line" + _local6, _local6);
var _local5 = x + (Math.cos(_local7) * splObj.splashRadius);
var _local4 = y + (Math.sin(_local7) * splObj.splashRadius);
_local3.lineStyle(0, 65280);
_local3.drawLine(x - frameX, y - frameY, _local5 - frameX, _local4 - frameY);
splashOff(_local3);
}
_local7 = _local7 - (((5 / PI2) * (_local13 - 1)) / 2);
var _local12 = false;
i = 0;
while (i < _local13) {
var _local5 = x + (Math.cos(_local7) * splObj.splashRadius);
var _local4 = y + (Math.sin(_local7) * splObj.splashRadius);
if (envS.splashDebug == 1) {
var _local6 = _root.frame.debugFrame.getNextHighestDepth();
var _local3 = _root.frame.debugFrame.createEmptyMovieClip("spl_point" + _local6, _local6);
_local3._x = _local5 - frameX;
_local3._y = _local4 - frameY;
_local3.lineStyle(0, 65280);
_local3.drawRectAbout(0, 0, 2);
splashOff(_local3);
}
_local7 = _local7 + (5 / PI2);
if (tile.hitMyBody(_local5, _local4)) {
_local12 = true;
if (envS.splashDebug != 1) {
return(true);
}
}
i++;
}
return(_local12);
};
_global.stepMissions = function () {
var _local9 = mt[envS.playerName];
var _local8 = new Array();
var _local7 = 0;
while (_local7 < _local9.zonesTiles.length) {
var _local6 = _local9.zonesTiles[_local7].groups;
var _local4 = 0;
while (_local4 < _local6.length) {
if (currLevel.preparedGroups[_local6[_local4]].missionType == "capture") {
_local8.add(_local6[_local4]);
}
_local4++;
}
_local7++;
}
for (var _local10 in currLevel.preparedGroups) {
var _local2 = currLevel.preparedGroups[_local10];
if (!_local2.active) {
continue;
}
if (typeof(_local2.timer) == "number") {
if (_local2.timer > 0) {
_local2.timer--;
}
if (!_local2.dontCount) {
_root.gui.mission1.text = Math.round(_local2.timer / 10);
}
}
if (_local2.missionType == "capture") {
if (_local8.inArray(_local10)) {
_local2.captured = _local2.captured + _local2.progressRatio;
} else {
_local2.captured = _local2.captured - _local2.regressRatio;
}
if (_local2.captured < 0) {
_local2.captured = 0;
}
if (_local2.captured > 100) {
_local2.captured = 100;
}
var _local5 = 0;
while (_local5 < aTiles.length) {
var _local3 = aTiles[_local5].mc;
if (_local3.groups.length > 0) {
if (_local3.groups.inArray(_local10)) {
if (!_local3.image.captureBar._visible) {
_local3.image.captureBar._visible = true;
}
_local3.image.captureBar.bar._xscale = _local2.captured;
}
}
_local5++;
}
}
}
};
_global.checkMissions = function (last, notStrong) {
if (noSet(last)) {
last = false;
}
if (noSet(notStrong)) {
notStrong = false;
}
if (noSet(_global.missionTargets)) {
createMissionTargets();
}
for (var _local18 in currLevel.preparedGroups) {
var _local3 = currLevel.preparedGroups[_local18];
if (!_local3.active) {
continue;
}
if (((_local3.timer == 0) || (last)) || (notStrong)) {
var _local9 = _local3.winAmount;
var _local16 = _local3.looseAmount;
var _local12 = _local3.killed;
var _local13 = _local3.survived;
var _local14 = _local3.taken;
var _local15 = _local3.captured;
var _local4 = false;
var _local10 = false;
if (_local3.missionType == "kill") {
if (_local12 >= _local9) {
_local4 = true;
}
if (_local13 >= _local16) {
_local10 = true;
}
if (!_local3.dontCount) {
_root.gui.mission2.text = (_local12 + " / ") + _local9;
}
}
if (_local3.missionType == "survive") {
if (_local13 >= _local9) {
_local4 = true;
}
if (_local12 >= _local16) {
_local10 = true;
}
if (!_local3.dontCount) {
_root.gui.mission2.text = (_local13 + " / ") + _local9;
}
}
if (_local3.missionType == "collect") {
if (_local14 >= _local9) {
_local4 = true;
}
if (!_local3.dontCount) {
_root.gui.mission2.text = (_local14 + " / ") + _local9;
}
}
if (_local3.missionType == "capture") {
if (_local15 >= 100) {
_local4 = true;
}
if (!_local3.dontCount) {
_root.gui.mission2.text = (_local15 + " / ") + 100;
}
}
var _local8 = false;
var _local11 = false;
if (((_local3.timer == 0) || (last)) || (!notStrong)) {
if (_local10 || (!_local4)) {
execGroupAction(_local3.actionFalse, last);
_local8 = true;
}
if ((!_local10) && (_local4)) {
execGroupAction(_local3.actionTrue, last);
_local8 = true;
_local11 = true;
}
}
if (((!last) && (notStrong)) && (!_local8)) {
if (_local3.missionType == "survive") {
if (_local10) {
execGroupAction(_local3.actionFalse, last);
_local8 = true;
}
if (_local4 && (!_local10)) {
execGroupAction(_local3.actionTrue, last);
_local11 = true;
_local8 = true;
}
} else if (_local4) {
execGroupAction(_local3.actionTrue, last);
_local11 = true;
_local8 = true;
}
}
if (((_local3.timer == 0) || (last)) || (_local8)) {
_local3.active = false;
_local3.success = _local11;
if (_local3.missionType == "capture") {
var _local6 = 0;
while (_local6 < aTiles.length) {
var _local5 = aTiles[_local6].mc;
if (_local5.groups.length > 0) {
if (_local5.groups.inArray(_local18)) {
_local5.image.captureBar._visible = false;
}
}
_local6++;
}
}
updateMissionsProgress();
trace(("\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 " + _local18) + " \u0432\u044B\u0431\u044B\u0432\u0430\u0435\u0442");
}
}
}
updateMissionTargets();
};
_global.execGroupAction = function (action, last) {
trace("\u0412\u042B\u041F\u041E\u041B\u041D\u042F\u0415\u041C \u0414\u0415\u0419\u0421\u0422\u0412\u0418\u0415 \u0413\u0420\u0423\u041F\u041F " + action);
action = prepareArrayString(action);
var _local9 = 0;
while (_local9 < action.length) {
var _local8 = action[_local9];
var _local11 = prepareArrayString(_local8, " ");
var _local7 = trim(_local11[0]);
var _local4 = trim(_local11[1]);
if (_local8 == "win") {
if (last) {
} else {
_global.endInt = setInterval(_global.gameEnderWin, 3000);
}
}
if (_local8 == "loose") {
if (last) {
_global.gameOver = true;
_global.gameInWin = false;
} else {
_global.endInt = setInterval(_global.gameEnderLose, 3000);
}
}
if (_local7 == "startClip") {
if (!last) {
_root.Dialogz[_local4]._visible = true;
_root.Dialogz[_local4].gotoAndPlay(2);
}
}
if (_local7 == "score") {
changeScore(parseInt(_local4));
}
if (_local7 == "activate") {
var _local10 = currLevel.preparedGroups[_local4];
if (_local10.active == 0) {
_local10.active = 1;
var _local5 = 0;
while (_local5 < currLevel.preparedLevel.length) {
var _local3 = currLevel.preparedLevel[_local5];
if (!noSet(_local3.group)) {
var _local6 = prepareArrayString(_local3.group);
if (_local6.inArray(_local4)) {
_local3.inGame = true;
if (_local3.permanent == 1) {
createTile(_local3);
permanents.push(_local3);
}
}
}
_local5++;
}
updateLevel();
if (_local10.dontCount != 1) {
createMissionTargets(_local4);
}
}
}
if (_local7 == "kill") {
var _local10 = currLevel.preparedGroups[_local4];
if (_local10.active == 1) {
_local10.active = 0;
}
var _local5 = 0;
while (_local5 < currLevel.preparedLevel.length) {
var _local3 = currLevel.preparedLevel[_local5];
if (!noSet(_local3.group)) {
var _local6 = prepareArrayString(_local3.group);
if (_local6.inArray(_local4)) {
_local3.mcReference.changeHealth(-_local3.mcReference.health);
_local3.inGame = false;
}
}
_local5++;
}
updateLevel();
}
_local9++;
}
};
_global.gameEnderLose = function () {
_global.gameOver = true;
clearInterval(_global.endInt);
};
_global.gameEnderWin = function () {
_global.gameInWin = true;
clearInterval(_global.endInt);
};
_global.changeScore = function (a) {
_global.levelScore = _global.levelScore + a;
_root.gui.score.text = levelScore;
};
_global.updateMissionsProgress = function () {
var _local2 = 0;
var _local3 = 0;
for (foo in currLevel.preparedGroups) {
if (!currLevel.preparedGroups[foo].dontCount) {
if (currLevel.preparedGroups[foo].success) {
_local2++;
}
_local3++;
}
}
_root.gui.mission3.text = (_local2 + " / ") + _local3;
};
_global.autostop = 1;
_global.prepareLevelBySteps = function () {
prepareLevel(currLevel, this.startPoint);
var _local2 = envS.levelProcessingCount;
if (noSet(_local2)) {
_local2 = 20;
}
this.startPoint = this.startPoint + _local2;
this.bar._xscale = (100 * this.startPoint) / currLevel.level.length;
if (this.startPoint > currLevel.level.length) {
trace("end process");
globalStart2();
delete this.onEnterFrame;
this._visible = false;
}
};
_global.prepareMissionTargetsBox = function () {
_global.missionTargetsBox = new Array();
var _local4 = new Object();
_local4.x1 = envS.markersOffset.left;
_local4.y1 = (_local4.y2 = envS.markersOffset.top);
_local4.x2 = envS.windowX - envS.markersOffset.right;
countLine(_local4);
missionTargetsBox.push(_local4);
_local4 = new Object();
_local4.x1 = envS.markersOffset.left;
_local4.y1 = (_local4.y2 = envS.windowY - envS.markersOffset.bottom);
_local4.x2 = envS.windowX - envS.markersOffset.right;
countLine(_local4);
missionTargetsBox.push(_local4);
_local4 = new Object();
_local4.x1 = (_local4.x2 = envS.markersOffset.left);
_local4.y1 = envS.markersOffset.top;
_local4.y2 = envS.windowY - envS.markersOffset.bottom;
countLine(_local4);
missionTargetsBox.push(_local4);
_local4 = new Object();
_local4.x1 = (_local4.x2 = envS.windowX - envS.markersOffset.right);
_local4.y1 = envS.markersOffset.top;
_local4.y2 = envS.windowY - envS.markersOffset.bottom;
countLine(_local4);
missionTargetsBox.push(_local4);
if (envS.targetsDebug) {
_root.mTargetsMC.createEmptyMovieClip("box", 1);
_root.mTargetsMC.createEmptyMovieClip("lines", 2);
var _local3 = 0;
while (_local3 < missionTargetsBox.length) {
_root.mTargetsMC.box.lineStyle(2, 10027008, 50);
_root.mTargetsMC.box.moveTo(missionTargetsBox[_local3].x1, missionTargetsBox[_local3].y1);
_root.mTargetsMC.box.lineTo(missionTargetsBox[_local3].x2, missionTargetsBox[_local3].y2);
_local3++;
}
}
};
_global.createMissionTargets = function (grName) {
_root.mTargetsMC.points.removeMovieClip();
_root.mTargetsMC.createEmptyMovieClip("points", 0);
_global.missionTargets = new Array();
if (grName == undefined) {
for (var _local8 in currLevel.preparedGroups) {
if (currLevel.preparedGroups[_local8].active && (currLevel.preparedGroups[_local8].dontCount != 1)) {
grName = _local8;
break;
}
}
}
if (grName == undefined) {
return(undefined);
}
trace("Creating mission objectz list for " + grName);
var _local3 = 0;
while (_local3 < aTiles.length) {
var _local5 = aTiles[_local3].mc;
if (_local5.groups.length > 0) {
if (_local5.groups.inArray(grName)) {
missionTargets.push(_local5);
}
}
_local3++;
}
_local3 = 0;
while (_local3 < missionTargets.length) {
var _local7 = _root.mTargetsMC.points.getNextHighestDepth();
var _local4 = _root.mTargetsMC.points.attachMovie("mTargets", "tar" + _local7, _local7);
_local4.gotoAndStop(currLevel.preparedGroups[grName].arrow);
missionTargets[_local3].groupTarget = _local4;
_local4.target = missionTargets[_local3];
_local3++;
}
trace(("Added " + missionTargets.length) + " pointers");
};
_global.updateMissionTargets = function () {
var _local8 = mt[envS.playerName];
if (envS.targetsDebug) {
_root.mTargetsMC.lines.clear();
}
var _local7 = 0;
while (_local7 < missionTargets.length) {
var _local3 = missionTargets[_local7];
var _local2 = new Object();
_local2.x1 = _local8.x + frameX;
_local2.y1 = _local8.y + frameY;
_local2.x2 = _local3.x + frameX;
_local2.y2 = _local3.y + frameY;
if ((((_local2.x2 > 0) && (_local2.x2 < envS.windowX)) && (_local2.y2 > 0)) && (_local2.y2 < envS.windowY)) {
_local3.groupTarget._visible = false;
} else {
_local3.groupTarget._visible = true;
countLine(_local2);
if (envS.targetsDebug) {
_root.mTargetsMC.lines.lineStyle(2, 153, 50);
_root.mTargetsMC.lines.moveTo(_local2.x1, _local2.y1);
_root.mTargetsMC.lines.lineTo(_local2.x2, _local2.y2);
}
var _local5 = 0;
while (_local5 < missionTargetsBox.length) {
var _local6 = missionTargetsBox[_local5];
var _local4 = crossLines(_local2, _local6);
if (_local4.actualCrossed) {
_local3.groupTarget._x = _local4.x;
_local3.groupTarget._y = _local4.y;
_local3.groupTarget._rotation = _local4.al * PI2;
break;
}
_local5++;
}
}
_local7++;
}
};
Frame 6
stop();
_global.settingsLoaded = false;
createXML = function () {
var _local4 = new XML(str);
if (_local4.status == 0) {
_global.settingsLoaded = true;
debug("Settings loaded; parsing...");
var _local3 = 0;
while (_local3 < _local4.firstChild.childNodes.length) {
foo = _local4.firstChild.childNodes[_local3];
parseXMLtoVars(foo, _global);
_local3++;
}
_root.parsingDataMC.onEnterFrame = parsingOff;
} else {
var _local5 = (("XML parsing error (\u2116" + _local4.status) + "). ") + xmlErrors[(-_local4.status) - 2];
_root.error.text = _local5;
debug(_local5);
}
};
_global.xmlErrors = new Array("A CDATA section was not properly terminated.", "The XML declaration was not properly terminated.", "The DOCTYPE declaration was not properly terminated.", "A comment was not properly terminated.", "An XML element was malformed.", "Out of memory.", "An attribute value was not properly terminated.", "A start-tag was not matched with an end-tag.", "An end-tag was encountered without a matching start-tag.");
parseXMLtoVars = function (xml, target) {
if (xml.nodeName == "var") {
var _local5 = xml.attributes.value;
if (_global.noSet(_local5) && (xml.nodeValue == null)) {
_local5 = xml.childNodes.join("");
}
if (String(parseFloat(_local5)) == _local5) {
_local5 = parseFloat(_local5);
}
if (xml.attributes.name != null) {
target[xml.attributes.name] = _local5;
// unexpected jump
}
return(_local5);
}
if (xml.nodeName == "array") {
target[xml.attributes.name] = new Array();
var _local4 = target[xml.attributes.name];
var _local3 = 0;
while (_local3 < xml.childNodes.length) {
_local4.push(parseXMLtoVars(xml.childNodes[_local3]));
_local3++;
}
} else if (xml.nodeName == "object") {
var _local4 = new Object();
for (var _local3 in xml.attributes) {
if (_local3 != "name") {
parseXMLtoVars(new XML(((("<var name=\"" + _local3) + "\"\tvalue=\"") + xml.attributes[_local3]) + "\" />").firstChild, _local4);
}
}
var _local3 = 0;
while (_local3 < xml.childNodes.length) {
parseXMLtoVars(xml.childNodes[_local3], _local4);
_local3++;
}
if (xml.attributes.name != null) {
target[xml.attributes.name] = _local4;
} else {
return(_local4);
}
}
};
str = "";
str = str + "<?xml version=\"1.0\" encoding=\"windows-1251\"?>";
str = str + "<settings>";
str = str + "<object name=\"envS\">";
str = str + "<object name=\"playerFrameOffset\">";
str = str + "<var name=\"top\" value=\"180\" />";
str = str + "<var name=\"bottom\" value=\"180\" />";
str = str + "<var name=\"left\" value=\"230\" />";
str = str + "<var name=\"right\" value=\"230\" />";
str = str + "</object>";
str = str + "<var name=\"frameXScrollFactor\" value=\"2\" />";
str = str + "<var name=\"frameYScrollFactor\" value=\"2\" />";
str = str + "<object name=\"bulletOffset\">";
str = str + "<var name=\"top\" value=\"50\" />";
str = str + "<var name=\"bottom\" value=\"50\" />";
str = str + "<var name=\"left\" value=\"50\" />";
str = str + "<var name=\"right\" value=\"50\" />";
str = str + "</object>";
str = str + "<object name=\"shootingOffset\">";
str = str + "<var name=\"top\" value=\"50\" />";
str = str + "<var name=\"bottom\" value=\"50\" />";
str = str + "<var name=\"left\" value=\"50\" />";
str = str + "<var name=\"right\" value=\"50\" />";
str = str + "</object>";
str = str + "<object name=\"markersOffset\">";
str = str + "<var name=\"top\" value=\"35\" />";
str = str + "<var name=\"bottom\" value=\"35\" />";
str = str + "<var name=\"left\" value=\"35\" />";
str = str + "<var name=\"right\" value=\"35\" />";
str = str + "</object>";
str = str + "<object name=\"blinks\">";
str = str + "<object name=\"hit\" color=\"#990000\" amount=\"60\" times=\"5\" step=\"2\" />";
str = str + "<object name=\"shield\" color=\"#0066cc\" amount=\"40\" times=\"3\" step=\"2\" />";
str = str + "<object name=\"takebonus\" color=\"#FFFFFF\" amount=\"40\" times=\"5\" step=\"3\" />";
str = str + "</object> ";
str = str + "<var name=\"debug\" value=\"0\" />";
str = str + "<var name=\"soundDebug\" value=\"0\" />";
str = str + "<var name=\"debugWires\" value=\"0\" />";
str = str + "<var name=\"normalsDebug\" value=\"0\" />";
str = str + "<var name=\"debugBody\" value=\"0\" />";
str = str + "<var name=\"debugHits\" value=\"0\" />";
str = str + "<var name=\"rotationDebug\" value=\"0\" />";
str = str + "<var name=\"dropAllFriction\" value=\"0\" />";
str = str + "<var name=\"standOnDebug\" value=\"0\" />";
str = str + "<var name=\"boxDebug\" value=\"0\" />";
str = str + "<var name=\"bulletBoxDebug\" value=\"0\" />";
str = str + "<var name=\"bulletPointsDebug\" value=\"0\" />";
str = str + "<var name=\"splashDebug\" value=\"0\" />";
str = str + "<var name=\"targetsDebug\" value=\"0\" />";
str = str + "<var name=\"collisionMaxPause\" value=\"0\" />";
str = str + "<var name=\"rotatePlayerBody\" value=\"1\" />";
str = str + "<var name=\"rotateTilesBody\" value=\"1\" />";
str = str + "<var name=\"controlType\" value=\"heli\" />";
str = str + "<var name=\"baseRotateFactor\" value=\"5\" />";
str = str + "<var name=\"reaction\" value=\"1\" />";
str = str + "<var name=\"reactionFactor\" value=\"0.4\" />";
str = str + "<var name=\"allShootByMouse\" value=\"0\" />";
str = str + "<var name=\"windowX\" value=\"550\" />";
str = str + "<var name=\"windowY\" value=\"400\" />";
str = str + "<var name=\"areaX\" value=\"110\" />";
str = str + "<var name=\"areaY\" value=\"100\" />";
str = str + "<var name=\"areaOffsetX\" value=\"10\" />";
str = str + "<var name=\"areaOffsetY\" value=\"10\" />";
str = str + "<var name=\"rotationMult\" value=\"30\" />";
str = str + "<var name=\"precisionFactor\" value=\"1\" />";
str = str + "<var name=\"precisionOffset\" value=\"1\" />";
str = str + "<var name=\"splashTests\" value=\"5\" />";
str = str + "<var name=\"healthDebug\" value=\"0\" />";
str = str + "<var name=\"healthBarWidth\" value=\"30\" />";
str = str + "<var name=\"sendMoveToAbove\" value=\"1\" />";
str = str + "<var name=\"gravity\" value=\"1\" />";
str = str + "<var name=\"defaultPlane\" value=\"pl3\" />";
str = str + "<var name=\"playerName\" value=\"vasya\" />";
str = str + "<var name=\"alphaOutStep\" value=\"10\" />";
str = str + "<var name=\"alphaOutDelay\" value=\"0\" />";
str = str + "<var name=\"bulletStep\" value=\"10\" />";
str = str + "<var name=\"defaultHitDamage\" value=\"10\" />";
str = str + "<var name=\"defaultImmortalHit\" value=\"0\" />";
str = str + "<var name=\"defaultDieSound\" value=\"eexplode\" />";
str = str + "<var name=\"defaultDieMovie\" value=\"explode0\" />";
str = str + "<var name=\"defaultScore\" value=\"10\" />";
str = str + "<var name=\"levelProcessingCount\" value=\"20\" />";
str = str + "<var name=\"playerPlane\" value=\"plG\" ></var>";
str = str + "<var name=\"weaponPlane\" value=\"plWeapon\" ></var>";
str = str + "<var name=\"fxPlane\" value=\"plFX\" ></var>";
str = str + "<object name=\"textZ\">";
str = str + "<var name=\"intro\" ><br /><br /><u>How to Play:</u><br /> - You are at the controls of a combat helicopter. <br /> - Complete the mission to finish the level. <br /><br /><br /><u>Controls:</u><br /> - Use either the cursor pad or the WASD keys to move around. <br /> - Use the mouse to turn the craft and aim your weapons. <br /> - Use the left mouse button to fire your primary weapons. <br /> - Use the space bar to fire your secondary weapons. <br /><br /></var>";
str = str + "<var name=\"completeString1\" >LEVEL SCORE:</var>";
str = str + "<var name=\"completeString2\" >Enemies defeated:</var>";
str = str + "<var name=\"final_completeString1\" >GAME SCORE:</var>";
str = str + "<var name=\"final_completeString2\" >Enemies defeated total:</var>";
str = str + "<var name=\"playerDiedTitle\" >Mission failed</var>";
str = str + "<var name=\"levelCompleteTitle\" >Mission completed!</var>";
str = str + "<var name=\"gameCompleteTitle\" >Congratulations! You won!!!</var>";
str = str + "<var name=\"gamePausedTitle\" >Pause</var>";
str = str + "<var name=\"gamePausedString\" ><b>Return to the game?</b></var>";
str = str + "</object>";
str = str + "</object>";
str = str + "<array name=\"planesSet\">";
str = str + "<object>";
str = str + "<var name=\"planeName\" value=\"plFX\"/>";
str = str + "<var name=\"ratio\" value=\"1\"/>";
str = str + "<object name=\"params\">";
str = str + "<var name=\"fullTrans\" value=\"0\"/>";
str = str + "<var name=\"tint\" value=\"0, 0, 0, 0\"/>";
str = str + "</object>";
str = str + "</object>";
str = str + "<object>";
str = str + "<var name=\"planeName\" value=\"plWeapon\"/>";
str = str + "<var name=\"ratio\" value=\"1\"/>";
str = str + "<object name=\"params\">";
str = str + "<var name=\"fullTrans\" value=\"0\"/>";
str = str + "<var name=\"tint\" value=\"0, 0, 0, 0\"/>";
str = str + "</object>";
str = str + "</object>";
str = str + "<object>";
str = str + "<var name=\"planeName\" value=\"plG\"/>";
str = str + "<var name=\"ratio\" value=\"1\"/>";
str = str + "<object name=\"params\">";
str = str + "<var name=\"fullTrans\" value=\"0\"/>";
str = str + "<var name=\"tint\" value=\"0, 0, 0, 0\"/>";
str = str + "</object>";
str = str + "</object>";
str = str + "<object>";
str = str + "<var name=\"planeName\" value=\"nearest1\"/>";
str = str + "<var name=\"ratio\" value=\"1\"/>";
str = str + "<object name=\"params\">";
str = str + "<var name=\"fullTrans\" value=\"0\"/>";
str = str + "<var name=\"tint\" value=\"0, 0, 0, 0\"/>";
str = str + "</object>";
str = str + "</object>";
str = str + "<object>";
str = str + "<var name=\"planeName\" value=\"nearest\"/>";
str = str + "<var name=\"ratio\" value=\"1\"/>";
str = str + "<object name=\"params\">";
str = str + "<var name=\"fullTrans\" value=\"1\"/>";
str = str + "<var name=\"weaponTrans\" value=\"1\"/>";
str = str + "<var name=\"splashTrans\" value=\"1\"/>";
str = str + "<var name=\"tint\" value=\"0, 0, 0, 0\"/>";
str = str + "</object>";
str = str + "</object>";
str = str + "<object>";
str = str + "<var name=\"planeName\" value=\"main\"/>";
str = str + "<var name=\"ratio\" value=\"1\"/>";
str = str + "<object name=\"params\">";
str = str + "<var name=\"fullTrans\" value=\"1\"/>";
str = str + "<var name=\"weaponTrans\" value=\"0\"/>";
str = str + "<var name=\"splashTrans\" value=\"0\"/>";
str = str + "<var name=\"tint\" value=\"0, 0, 0, 0\"/>";
str = str + "</object>";
str = str + "</object>";
str = str + "<object>";
str = str + "<var name=\"planeName\" value=\"far\"/>";
str = str + "<var name=\"ratio\" value=\"1\"/>";
str = str + "<object name=\"params\">";
str = str + "<var name=\"fullTrans\" value=\"1\"/>";
str = str + "<var name=\"weaponTrans\" value=\"1\"/>";
str = str + "<var name=\"splashTrans\" value=\"1\"/>";
str = str + "<var name=\"tint\" value=\"0, 0, 0, 0\"/>";
str = str + "</object>";
str = str + "</object>";
str = str + "<object>";
str = str + "<var name=\"planeName\" value=\"downFX\"/>";
str = str + "<var name=\"ratio\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object>";
str = str + "<var name=\"planeName\" value=\"far2\"/>";
str = str + "<var name=\"ratio\" value=\"1\"/>";
str = str + "<object name=\"params\">";
str = str + "<var name=\"fullTrans\" value=\"1\"/>";
str = str + "<var name=\"weaponTrans\" value=\"1\"/>";
str = str + "<var name=\"splashTrans\" value=\"1\"/> ";
str = str + "<var name=\"tint\" value=\"0, 0, 0, 0\"/>";
str = str + "</object>";
str = str + "</object>";
str = str + "<object>";
str = str + "<var name=\"planeName\" value=\"far3\"/>";
str = str + "<var name=\"ratio\" value=\"1\"/>";
str = str + "<object name=\"params\">";
str = str + "<var name=\"fullTrans\" value=\"1\"/>";
str = str + "<var name=\"weaponTrans\" value=\"1\"/>";
str = str + "<var name=\"splashTrans\" value=\"1\"/> ";
str = str + "<var name=\"tint\" value=\"0, 0, 0, 0\"/>";
str = str + "</object>";
str = str + "</object>";
str = str + "</array>";
str = str + "<object name=\"protosSet\">";
str = str + "<object name=\"simple_player\">";
str = str + "<var name=\"xFr\" value=\"0.2\" />";
str = str + "<var name=\"yFr\" value=\"0.2\" />";
str = str + "<var name=\"rFr\" value=\"1\" />";
str = str + "<var name=\"aFr\" value=\"1\" />";
str = str + "<var name=\"mass\" value=\"4\" />";
str = str + "</object>";
str = str + "<object name=\"box\">";
str = str + "<var name=\"xFr\" value=\"0.3\" />";
str = str + "<var name=\"yFr\" value=\"0.3\" />";
str = str + "<var name=\"rFr\" value=\"0.2\" />";
str = str + "<var name=\"aFr\" value=\"0\" />";
str = str + "<var name=\"mass\" value=\"2\" />";
str = str + "</object>";
str = str + "<object name=\"moving_platform_1\">";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"144\" mtype=\"lin\" steps=\"40\"/>";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"40\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-144\" mtype=\"lin\" steps=\"40\"/>";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"40\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object name=\"moving_platform_2\">";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" steps=\"40\" deltax=\"100\" deltay=\"0\" mtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" steps=\"40\" deltar=\"90\" rtype=\"sin\" />";
str = str + "<object repeat=\"2\" action=\"move\" startByHit=\"0\" steps=\"40\" deltax=\"0\" deltay=\"50\" mtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" steps=\"40\" deltar=\"90\" rtype=\"sin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" steps=\"40\" deltax=\"-100\" deltay=\"0\" mtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" steps=\"40\" deltar=\"90\" rtype=\"sin\" />";
str = str + "<object repeat=\"2\" action=\"move\" startByHit=\"0\" steps=\"40\" deltax=\"0\" deltay=\"-50\" mtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" steps=\"40\" deltar=\"90\" rtype=\"sin\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object name=\"moving_platform_3\">";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" steps=\"40\" movetox=\"1184\" deltay=\"50\" mtype=\"lin\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"40\" />";
str = str + "<object action=\"move\" startByHit=\"0\" steps=\"40\" movetox=\"1084\" deltay=\"-50\" mtype=\"lin\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"40\" />";
str = str + "<object action=\"survive\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object name=\"armed\">";
str = str + "<array name=\"weapon\">";
str = str + "<object>";
str = str + "<var name=\"image\" value=\"player_gun\" />";
str = str + "<var name=\"attachPoint\" value=\"p1\" />";
str = str + "<var name=\"cannonAngle\" value=\"t0\" />";
str = str + "<var name=\"rotationSpeed\" value=\"100\" />";
str = str + "<var name=\"points\" value=\"f1-f2\" />";
str = str + "<var name=\"anims\" value=\"img1-img2\" />";
str = str + "<var name=\"bulletType\" value=\"weapon_1\" />";
str = str + "<var name=\"bulletSpeed\" value=\"30\" />";
str = str + "<var name=\"bulletGravity\" value=\"0\" />";
str = str + "<var name=\"bulletDamage\" value=\"5\" />";
str = str + "<var name=\"bulletLength\" value=\"0\" />";
str = str + "<var name=\"splashDamage\" value=\"0\" />";
str = str + "<var name=\"splashRadius\" value=\"100\" />";
str = str + "<var name=\"splashDelay\" value=\"5\" />";
str = str + "<var name=\"passageAbility\" value=\"1\" />";
str = str + "<var name=\"bulletExplode\" value=\"explode1\" />";
str = str + "<var name=\"bulletSound\" value=\"eexplode\" />";
str = str + "<var name=\"reloadingTime\" value=\"3\" />";
str = str + "<var name=\"shotsTime\" value=\"3\" />";
str = str + "<var name=\"clip\" value=\"400\" />";
str = str + "<var name=\"amount\" value=\"-100\" />";
str = str + "<var name=\"bulletAngle\" value=\"0, 0\" />";
str = str + "</object>";
str = str + "<object>";
str = str + "<var name=\"image\" value=\"player_gun\" />";
str = str + "<var name=\"attachPoint\" value=\"p1\" />";
str = str + "<var name=\"cannonAngle\" value=\"w0\" />";
str = str + "<var name=\"rotationSpeed\" value=\"100\" />";
str = str + "<var name=\"points\" value=\"f1-f2\" />";
str = str + "<var name=\"anims\" value=\"img1-img2\" />";
str = str + "<var name=\"bulletType\" value=\"weapon_2\" />";
str = str + "<var name=\"bulletSpeed\" value=\"15\" />";
str = str + "<var name=\"bulletGravity\" value=\"0\" />";
str = str + "<var name=\"bulletDamage\" value=\"5\" />";
str = str + "<var name=\"bulletLength\" value=\"0\" />";
str = str + "<var name=\"splashDamage\" value=\"0\" />";
str = str + "<var name=\"splashRadius\" value=\"100\" />";
str = str + "<var name=\"splashDelay\" value=\"5\" />";
str = str + "<var name=\"passageAbility\" value=\"1\" />";
str = str + "<var name=\"bulletExplode\" value=\"explode1\" />";
str = str + "<var name=\"bulletSound\" value=\"eexplode\" />";
str = str + "<var name=\"reloadingTime\" value=\"3\" />";
str = str + "<var name=\"shotsTime\" value=\"18\" />";
str = str + "<var name=\"clip\" value=\"2\" />";
str = str + "<var name=\"amount\" value=\"20\" />";
str = str + "<var name=\"bulletAngle\" value=\"0, 0\" />";
str = str + "</object>";
str = str + "</array>";
str = str + "</object>";
str = str + "<object name=\"armed_heli\">";
str = str + "<array name=\"weapon\">";
str = str + "<object>";
str = str + "<var name=\"image\" value=\"heli_gun_1\" />";
str = str + "<var name=\"attachPoint\" value=\"p1\" />";
str = str + "<var name=\"cannonAngle\" value=\"t0\" />";
str = str + "<var name=\"rotationSpeed\" value=\"100\" />";
str = str + "<var name=\"points\" value=\"f1\" />";
str = str + "<var name=\"anims\" value=\"img1\" />";
str = str + "<var name=\"bulletType\" value=\"weapon_1\" />";
str = str + "<var name=\"bulletSpeed\" value=\"30\" />";
str = str + "<var name=\"bulletGravity\" value=\"0\" />";
str = str + "<var name=\"bulletDamage\" value=\"10\" />";
str = str + "<var name=\"bulletLength\" value=\"1\" />";
str = str + "<var name=\"splashDamage\" value=\"0\" />";
str = str + "<var name=\"splashRadius\" value=\"100\" />";
str = str + "<var name=\"splashDelay\" value=\"5\" />";
str = str + "<var name=\"passageAbility\" value=\"1\" />";
str = str + "<var name=\"bulletExplode\" value=\"explode1\" />";
str = str + "<var name=\"bulletSound\" value=\"eexplode\" />";
str = str + "<var name=\"shootSound\" value=\"s_bulletShoot\" />";
str = str + "<var name=\"reloadingTime\" value=\"3\" />";
str = str + "<var name=\"shotsTime\" value=\"4\" />";
str = str + "<var name=\"clip\" value=\"400\" />";
str = str + "<var name=\"amount\" value=\"-100\" />";
str = str + "<var name=\"bulletAngle\" value=\"0, 0\" />";
str = str + "</object>";
str = str + "<object>";
str = str + "<var name=\"image\" value=\"heli_gun\" />";
str = str + "<var name=\"attachPoint\" value=\"p1\" />";
str = str + "<var name=\"cannonAngle\" value=\"w0\" />";
str = str + "<var name=\"rotationSpeed\" value=\"100\" />";
str = str + "<var name=\"points\" value=\"f1-f2\" />";
str = str + "<var name=\"anims\" value=\"img1-img2\" />";
str = str + "<var name=\"bulletType\" value=\"weapon_3\" />";
str = str + "<var name=\"bulletSpeed\" value=\"20\" />";
str = str + "<var name=\"bulletGravity\" value=\"0\" />";
str = str + "<var name=\"bulletDamage\" value=\"30\" />";
str = str + "<var name=\"bulletLength\" value=\"1\" />";
str = str + "<var name=\"splashDamage\" value=\"20\" />";
str = str + "<var name=\"splashRadius\" value=\"100\" />";
str = str + "<var name=\"splashDelay\" value=\"5\" />";
str = str + "<var name=\"passageAbility\" value=\"1\" />";
str = str + "<var name=\"bulletExplode\" value=\"explode1\" />";
str = str + "<var name=\"bulletSound\" value=\"eexplode\" />";
str = str + "<var name=\"shootSound\" value=\"s_rocket\" />";
str = str + "<var name=\"reloadingTime\" value=\"3\" />";
str = str + "<var name=\"shotsTime\" value=\"18\" />";
str = str + "<var name=\"clip\" value=\"2\" />";
str = str + "<var name=\"amount\" value=\"20\" />";
str = str + "<var name=\"bulletAngle\" value=\"0, 0\" />";
str = str + "</object>";
str = str + "</array>";
str = str + "</object>";
str = str + "<object name=\"gunner\">";
str = str + "<array name=\"weapon\">";
str = str + "<object>";
str = str + "<var name=\"image\" value=\"soldier\" />";
str = str + "<var name=\"attachPoint\" value=\"p1\" />";
str = str + "<var name=\"cannonAngle\" value=\"t0\" />";
str = str + "<var name=\"rotationSpeed\" value=\"10\" />";
str = str + "<var name=\"points\" value=\"f1\" />";
str = str + "<var name=\"anims\" value=\"img\" />";
str = str + "<var name=\"bulletType\" value=\"weapon_1\" />";
str = str + "<var name=\"bulletSpeed\" value=\"15\" />";
str = str + "<var name=\"bulletGravity\" value=\"0\" />";
str = str + "<var name=\"bulletDamage\" value=\"5\" />";
str = str + "<var name=\"bulletLength\" value=\"0\" />";
str = str + "<var name=\"passageAbility\" value=\"1\" />";
str = str + "<var name=\"bulletExplode\" value=\"explode2\" />";
str = str + "<var name=\"bulletSound\" value=\"eexplode\" />";
str = str + "<var name=\"reloadingTime\" value=\"20\" />";
str = str + "<var name=\"shotsTime\" value=\"0\" />";
str = str + "<var name=\"clip\" value=\"1\" />";
str = str + "<var name=\"amount\" value=\"-100\" />";
str = str + "<var name=\"bulletAngle\" value=\"0\" />";
str = str + "</object>";
str = str + "</array>";
str = str + "</object>";
str = str + "<object name=\"hummer\">";
str = str + "<array name=\"weapon\">";
str = str + "<object>";
str = str + "<var name=\"image\" value=\"gun_1\" />";
str = str + "<var name=\"attachPoint\" value=\"p1\" />";
str = str + "<var name=\"cannonAngle\" value=\"t0\" />";
str = str + "<var name=\"rotationSpeed\" value=\"10\" />";
str = str + "<var name=\"points\" value=\"f1\" />";
str = str + "<var name=\"anims\" value=\"img\" />";
str = str + "<var name=\"bulletType\" value=\"weapon_1\" />";
str = str + "<var name=\"bulletSpeed\" value=\"15\" />";
str = str + "<var name=\"bulletGravity\" value=\"0\" />";
str = str + "<var name=\"bulletDamage\" value=\"5\" />";
str = str + "<var name=\"bulletLength\" value=\"0\" />";
str = str + "<var name=\"passageAbility\" value=\"1\" />";
str = str + "<var name=\"bulletExplode\" value=\"explode2\" />";
str = str + "<var name=\"bulletSound\" value=\"eexplode\" />";
str = str + "<var name=\"reloadingTime\" value=\"20\" />";
str = str + "<var name=\"shotsTime\" value=\"2\" />";
str = str + "<var name=\"clip\" value=\"2\" />";
str = str + "<var name=\"amount\" value=\"-100\" />";
str = str + "<var name=\"bulletAngle\" value=\"0\" />";
str = str + "</object>";
str = str + "</array>";
str = str + "</object>";
str = str + "<object name=\"rocketer\">";
str = str + "<array name=\"weapon\">";
str = str + "<object>";
str = str + "<var name=\"image\" value=\"soldier_PZRK\" />";
str = str + "<var name=\"attachPoint\" value=\"p1\" />";
str = str + "<var name=\"cannonAngle\" value=\"t0\" />";
str = str + "<var name=\"rotationSpeed\" value=\"10\" />";
str = str + "<var name=\"points\" value=\"f1\" />";
str = str + "<var name=\"anims\" value=\"img\" />";
str = str + "<var name=\"bulletType\" value=\"weapon_3\" />";
str = str + "<var name=\"bulletSpeed\" value=\"15\" />";
str = str + "<var name=\"bulletGravity\" value=\"0\" />";
str = str + "<var name=\"bulletDamage\" value=\"20\" />";
str = str + "<var name=\"bulletLength\" value=\"0\" />";
str = str + "<var name=\"passageAbility\" value=\"1\" />";
str = str + "<var name=\"bulletExplode\" value=\"explode2\" />";
str = str + "<var name=\"bulletSound\" value=\"eexplode\" />";
str = str + "<var name=\"reloadingTime\" value=\"200\" />";
str = str + "<var name=\"shotsTime\" value=\"0\" />";
str = str + "<var name=\"clip\" value=\"1\" />";
str = str + "<var name=\"amount\" value=\"-100\" />";
str = str + "<var name=\"bulletAngle\" value=\"0\" />";
str = str + "</object>";
str = str + "</array>";
str = str + "</object>";
str = str + "<object name=\"btr\">";
str = str + "<array name=\"weapon\">";
str = str + "<object>";
str = str + "<var name=\"image\" value=\"btr_gun\" />";
str = str + "<var name=\"attachPoint\" value=\"p1\" />";
str = str + "<var name=\"cannonAngle\" value=\"t0\" />";
str = str + "<var name=\"rotationSpeed\" value=\"10\" />";
str = str + "<var name=\"points\" value=\"f1\" />";
str = str + "<var name=\"anims\" value=\"img\" />";
str = str + "<var name=\"bulletType\" value=\"weapon_1\" />";
str = str + "<var name=\"bulletSpeed\" value=\"15\" />";
str = str + "<var name=\"bulletGravity\" value=\"0\" />";
str = str + "<var name=\"bulletDamage\" value=\"5\" />";
str = str + "<var name=\"bulletLength\" value=\"0\" />";
str = str + "<var name=\"passageAbility\" value=\"1\" />";
str = str + "<var name=\"bulletExplode\" value=\"explode2\" />";
str = str + "<var name=\"bulletSound\" value=\"eexplode\" />";
str = str + "<var name=\"reloadingTime\" value=\"200\" />";
str = str + "<var name=\"shotsTime\" value=\"1\" />";
str = str + "<var name=\"clip\" value=\"3\" />";
str = str + "<var name=\"amount\" value=\"-100\" />";
str = str + "<var name=\"bulletAngle\" value=\"0\" />";
str = str + "</object>";
str = str + "</array>";
str = str + "</object>";
str = str + "<object name=\"pvo1\">";
str = str + "<array name=\"weapon\">";
str = str + "<object>";
str = str + "<var name=\"image\" value=\"tank_pvo1_gun\" />";
str = str + "<var name=\"attachPoint\" value=\"p1\" />";
str = str + "<var name=\"cannonAngle\" value=\"t0\" />";
str = str + "<var name=\"rotationSpeed\" value=\"4\" />";
str = str + "<var name=\"points\" value=\"f1-f2\" />";
str = str + "<var name=\"anims\" value=\"img1-img2\" />";
str = str + "<var name=\"bulletType\" value=\"weapon_3\" />";
str = str + "<var name=\"bulletSpeed\" value=\"15\" />";
str = str + "<var name=\"bulletGravity\" value=\"0\" />";
str = str + "<var name=\"bulletDamage\" value=\"20\" />";
str = str + "<var name=\"bulletLength\" value=\"0\" />";
str = str + "<var name=\"passageAbility\" value=\"1\" />";
str = str + "<var name=\"bulletExplode\" value=\"explode2\" />";
str = str + "<var name=\"bulletSound\" value=\"eexplode\" />";
str = str + "<var name=\"reloadingTime\" value=\"100\" />";
str = str + "<var name=\"shotsTime\" value=\"1\" />";
str = str + "<var name=\"clip\" value=\"4\" />";
str = str + "<var name=\"amount\" value=\"-100\" />";
str = str + "<var name=\"bulletAngle\" value=\"0\" />";
str = str + "</object>";
str = str + "</array>";
str = str + "</object>";
str = str + "<object name=\"pvo2\">";
str = str + "<array name=\"weapon\">";
str = str + "<object>";
str = str + "<var name=\"image\" value=\"tank_pvo2_gun\" />";
str = str + "<var name=\"attachPoint\" value=\"p1\" />";
str = str + "<var name=\"cannonAngle\" value=\"t0\" />";
str = str + "<var name=\"rotationSpeed\" value=\"6\" />";
str = str + "<var name=\"points\" value=\"f1-f2\" />";
str = str + "<var name=\"anims\" value=\"img1-img2\" />";
str = str + "<var name=\"bulletType\" value=\"weapon_1\" />";
str = str + "<var name=\"bulletSpeed\" value=\"18\" />";
str = str + "<var name=\"bulletGravity\" value=\"0\" />";
str = str + "<var name=\"bulletDamage\" value=\"5\" />";
str = str + "<var name=\"bulletLength\" value=\"0\" />";
str = str + "<var name=\"passageAbility\" value=\"1\" />";
str = str + "<var name=\"bulletExplode\" value=\"explode2\" />";
str = str + "<var name=\"bulletSound\" value=\"eexplode\" />";
str = str + "<var name=\"reloadingTime\" value=\"100\" />";
str = str + "<var name=\"shotsTime\" value=\"1\" />";
str = str + "<var name=\"clip\" value=\"6\" />";
str = str + "<var name=\"amount\" value=\"-100\" />";
str = str + "<var name=\"bulletAngle\" value=\"0\" />";
str = str + "</object>";
str = str + "</array>";
str = str + "</object>";
str = str + "<object name=\"panzer\">";
str = str + "<array name=\"weapon\">";
str = str + "<object>";
str = str + "<var name=\"image\" value=\"tank_panzer3_gun\" />";
str = str + "<var name=\"attachPoint\" value=\"p1\" />";
str = str + "<var name=\"cannonAngle\" value=\"w-90\" />";
str = str + "<var name=\"rotationSpeed\" value=\"66\" />";
str = str + "<var name=\"points\" value=\"f1\" />";
str = str + "<var name=\"anims\" value=\"img1\" />";
str = str + "<var name=\"bulletType\" value=\"weapon_1\" />";
str = str + "<var name=\"bulletSpeed\" value=\"18\" />";
str = str + "<var name=\"bulletGravity\" value=\"0\" />";
str = str + "<var name=\"bulletDamage\" value=\"0\" />";
str = str + "<var name=\"bulletLength\" value=\"0\" />";
str = str + "<var name=\"passageAbility\" value=\"1\" />";
str = str + "<var name=\"bulletExplode\" value=\"explode2\" />";
str = str + "<var name=\"bulletSound\" value=\"eexplode\" />";
str = str + "<var name=\"reloadingTime\" value=\"10000\" />";
str = str + "<var name=\"shotsTime\" value=\"1\" />";
str = str + "<var name=\"clip\" value=\"1\" />";
str = str + "<var name=\"amount\" value=\"0\" />";
str = str + "<var name=\"bulletAngle\" value=\"0\" />";
str = str + "</object>";
str = str + "</array>";
str = str + "</object>";
str = str + "<object name=\"t80\">";
str = str + "<array name=\"weapon\">";
str = str + "<object>";
str = str + "<var name=\"image\" value=\"tank_t80_gun\" />";
str = str + "<var name=\"attachPoint\" value=\"p1\" />";
str = str + "<var name=\"cannonAngle\" value=\"w-90\" />";
str = str + "<var name=\"rotationSpeed\" value=\"6\" />";
str = str + "<var name=\"points\" value=\"f1\" />";
str = str + "<var name=\"anims\" value=\"img1\" />";
str = str + "<var name=\"bulletType\" value=\"weapon_1\" />";
str = str + "<var name=\"bulletSpeed\" value=\"18\" />";
str = str + "<var name=\"bulletGravity\" value=\"0\" />";
str = str + "<var name=\"bulletDamage\" value=\"0\" />";
str = str + "<var name=\"bulletLength\" value=\"0\" />";
str = str + "<var name=\"passageAbility\" value=\"1\" />";
str = str + "<var name=\"bulletExplode\" value=\"explode2\" />";
str = str + "<var name=\"bulletSound\" value=\"eexplode\" />";
str = str + "<var name=\"reloadingTime\" value=\"10000\" />";
str = str + "<var name=\"shotsTime\" value=\"1\" />";
str = str + "<var name=\"clip\" value=\"1\" />";
str = str + "<var name=\"amount\" value=\"0\" />";
str = str + "<var name=\"bulletAngle\" value=\"0\" />";
str = str + "</object>";
str = str + "</array>";
str = str + "</object>";
str = str + "</object>";
str = str + "<object name=\"tilesSet\">";
str = str + "<object name=\"house_big1\">";
str = str + "<var name=\"linkage\" value=\"house_big1\"/>";
str = str + "<var name=\"editor_name\" value=\"house_big1\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 170, 175\"/>";
str = str + "</object>";
str = str + "<object name=\"house_big2\">";
str = str + "<var name=\"linkage\" value=\"house_big2\"/>";
str = str + "<var name=\"editor_name\" value=\"house_big2\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 244, 157\"/>";
str = str + "</object>";
str = str + "<object name=\"house_med1\">";
str = str + "<var name=\"linkage\" value=\"house_med1\"/>";
str = str + "<var name=\"editor_name\" value=\"house_med1\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 115, 113\"/>";
str = str + "</object>";
str = str + "<object name=\"house_med2\">";
str = str + "<var name=\"linkage\" value=\"house_med2\"/>";
str = str + "<var name=\"editor_name\" value=\"house_med2\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 127, 144\"/>";
str = str + "</object>";
str = str + "<object name=\"house_med3\">";
str = str + "<var name=\"linkage\" value=\"house_med3\"/>";
str = str + "<var name=\"editor_name\" value=\"house_med3\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 113, 126\"/>";
str = str + "</object>";
str = str + "<object name=\"house_med4\">";
str = str + "<var name=\"linkage\" value=\"house_med4\"/>";
str = str + "<var name=\"editor_name\" value=\"house_med4\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 156, 125\"/>";
str = str + "</object>";
str = str + "<object name=\"house_med5\">";
str = str + "<var name=\"linkage\" value=\"house_med5\"/>";
str = str + "<var name=\"editor_name\" value=\"house_med5\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 128, 145\"/>";
str = str + "</object>";
str = str + "<object name=\"house_sm1\">";
str = str + "<var name=\"linkage\" value=\"house_sm1\"/>";
str = str + "<var name=\"editor_name\" value=\"house_sm1\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 63, 81\"/>";
str = str + "</object>";
str = str + "<object name=\"house_sm2\">";
str = str + "<var name=\"linkage\" value=\"house_sm2\"/>";
str = str + "<var name=\"editor_name\" value=\"house_sm2\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 70, 69\"/>";
str = str + "</object>";
str = str + "<object name=\"bmp1\">";
str = str + "<var name=\"linkage\" value=\"bmp1\"/>";
str = str + "<var name=\"editor_name\" value=\"bmp1\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-13, -23, 13, 23\"/>";
str = str + "<var name=\"health\" value=\"100\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"bmp2\">";
str = str + "<var name=\"linkage\" value=\"bmp2\"/>";
str = str + "<var name=\"editor_name\" value=\"bmp2\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-12, -24, 12, 24\"/>";
str = str + "<var name=\"health\" value=\"100\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"bmp3\">";
str = str + "<var name=\"linkage\" value=\"bmp3\"/>";
str = str + "<var name=\"editor_name\" value=\"bmp3\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-13, -22, 13, 22\"/>";
str = str + "<var name=\"health\" value=\"100\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"btr\">";
str = str + "<var name=\"linkage\" value=\"btr\"/>";
str = str + "<var name=\"editor_name\" value=\"btr\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-14, -33, 14, 33\"/>";
str = str + "<var name=\"proto\" value=\"btr\"/>";
str = str + "<var name=\"health\" value=\"100\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"btr_1\">";
str = str + "<var name=\"linkage\" value=\"btr_1\"/>";
str = str + "<var name=\"editor_name\" value=\"btr_1\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-14, -33, 14, 33\"/>";
str = str + "<var name=\"proto\" value=\"btr\"/>";
str = str + "<var name=\"health\" value=\"100\"/>";
str = str + "<var name=\"group\" value=\"miss_3\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"btr_2\">";
str = str + "<var name=\"linkage\" value=\"btr_2\"/>";
str = str + "<var name=\"editor_name\" value=\"btr_2\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-14, -33, 14, 33\"/>";
str = str + "<var name=\"proto\" value=\"btr\"/>";
str = str + "<var name=\"health\" value=\"100\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"btr_3\">";
str = str + "<var name=\"linkage\" value=\"btr_3\"/>";
str = str + "<var name=\"editor_name\" value=\"btr_3\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-14, -33, 14, 33\"/>";
str = str + "<var name=\"proto\" value=\"btr\"/>";
str = str + "<var name=\"health\" value=\"100\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"hummer\">";
str = str + "<var name=\"linkage\" value=\"hummer\"/>";
str = str + "<var name=\"editor_name\" value=\"hummer\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-11, -20, 11, 20\"/>";
str = str + "<var name=\"health\" value=\"60\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"hummer_1\">";
str = str + "<var name=\"linkage\" value=\"hummer_1\"/>";
str = str + "<var name=\"editor_name\" value=\"hummer_1\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-11, -20, 11, 20\"/>";
str = str + "<var name=\"proto\" value=\"hummer\"/>";
str = str + "<var name=\"health\" value=\"60\"/>";
str = str + "<var name=\"group\" value=\"miss_1\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"hummer_2\">";
str = str + "<var name=\"linkage\" value=\"hummer_2\"/>";
str = str + "<var name=\"editor_name\" value=\"hummer_2\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-11, -20, 11, 20\"/>";
str = str + "<var name=\"health\" value=\"60\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"hummer_3\">";
str = str + "<var name=\"linkage\" value=\"hummer_3\"/>";
str = str + "<var name=\"editor_name\" value=\"hummer_3\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-11, -20, 11, 20\"/>";
str = str + "<var name=\"health\" value=\"60\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"tank_abrams\">";
str = str + "<var name=\"linkage\" value=\"tank_abrams\"/>";
str = str + "<var name=\"editor_name\" value=\"tank_abrams\"/>";
str = str + "<var name=\"type\" value=\"pathMavingTileC\"/>";
str = str + "<var name=\"bb\" value=\"-18, -35, 18, 35\"/>";
str = str + "<var name=\"health\" value=\"100\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"tank_lite1\">";
str = str + "<var name=\"linkage\" value=\"tank_lite1\"/>";
str = str + "<var name=\"editor_name\" value=\"tank_lite1\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-16, -28, 16, 28\"/>";
str = str + "<var name=\"health\" value=\"100\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"tank_panzer3\">";
str = str + "<var name=\"linkage\" value=\"tank_panzer3\"/>";
str = str + "<var name=\"editor_name\" value=\"tank_panzer3\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-19, -38, 19, 38\"/>";
str = str + "<var name=\"proto\" value=\"panzer\"/>";
str = str + "<var name=\"health\" value=\"150\"/>";
str = str + "<var name=\"group\" value=\"miss_7\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"tank_pvo1\">";
str = str + "<var name=\"linkage\" value=\"tank_pvo1\"/>";
str = str + "<var name=\"editor_name\" value=\"tank_pvo1\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-18, -30, 18, 30\"/>";
str = str + "<var name=\"proto\" value=\"pvo1\"/>";
str = str + "<var name=\"health\" value=\"100\"/>";
str = str + "<var name=\"group\" value=\"miss_4_2\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"tank_pvo1_1\">";
str = str + "<var name=\"linkage\" value=\"tank_pvo1_1\"/>";
str = str + "<var name=\"editor_name\" value=\"tank_pvo1_1\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-18, -30, 18, 30\"/>";
str = str + "<var name=\"proto\" value=\"pvo1\"/>";
str = str + "<var name=\"health\" value=\"100\"/>";
str = str + "<var name=\"group\" value=\"miss_7_1\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"tank_pvo1_2\">";
str = str + "<var name=\"linkage\" value=\"tank_pvo1_2\"/>";
str = str + "<var name=\"editor_name\" value=\"tank_pvo1_2\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-18, -30, 18, 30\"/>";
str = str + "<var name=\"proto\" value=\"pvo1\"/>";
str = str + "<var name=\"health\" value=\"100\"/>";
str = str + "</object>";
str = str + "<object name=\"tank_pvo2\">";
str = str + "<var name=\"linkage\" value=\"tank_pvo2\"/>";
str = str + "<var name=\"editor_name\" value=\"tank_pvo2\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-17, -31, 17, 31\"/>";
str = str + "<var name=\"proto\" value=\"pvo2\"/>";
str = str + "<var name=\"health\" value=\"100\"/>";
str = str + "<var name=\"group\" value=\"miss_7_1\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"tank_t80\">";
str = str + "<var name=\"linkage\" value=\"tank_t80\"/>";
str = str + "<var name=\"editor_name\" value=\"tank_t80\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-19, -35, 19, 35\"/>";
str = str + "<var name=\"proto\" value=\"t80\"/>";
str = str + "<var name=\"health\" value=\"100\"/>";
str = str + "<var name=\"group\" value=\"miss_7\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"truck_oil\">";
str = str + "<var name=\"linkage\" value=\"truck_oil\"/>";
str = str + "<var name=\"editor_name\" value=\"truck_oil\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-14, -36, 14, 36\"/>";
str = str + "<var name=\"health\" value=\"50\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"truck_oil_1\">";
str = str + "<var name=\"linkage\" value=\"truck_oil_1\"/>";
str = str + "<var name=\"editor_name\" value=\"truck_oil_1\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-36, -14, 36, 14\"/>";
str = str + "<var name=\"health\" value=\"50\"/>";
str = str + "<var name=\"splashDamage\" value=\"100\"/>";
str = str + "<var name=\"splashRadius\" value=\"100\"/>";
str = str + "<var name=\"splashDelay\" value=\"6\"/>";
str = str + "<var name=\"autoDestroy\" value=\"530\"/>";
str = str + "<var name=\"group\" value=\"miss_2_1\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"truck_oil_2\">";
str = str + "<var name=\"linkage\" value=\"truck_oil_2\"/>";
str = str + "<var name=\"editor_name\" value=\"truck_oil_2\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-14, -36, 14, 36\"/>";
str = str + "<var name=\"health\" value=\"50\"/>";
str = str + "<var name=\"splashDamage\" value=\"100\"/>";
str = str + "<var name=\"splashRadius\" value=\"100\"/>";
str = str + "<var name=\"splashDelay\" value=\"4\"/>";
str = str + "<var name=\"autoDestroy\" value=\"800\"/>";
str = str + "<var name=\"group\" value=\"miss_2_1\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"truck_oil_3\">";
str = str + "<var name=\"linkage\" value=\"truck_oil_3\"/>";
str = str + "<var name=\"editor_name\" value=\"truck_oil_3\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-14, -36, 14, 36\"/>";
str = str + "<var name=\"health\" value=\"50\"/>";
str = str + "<var name=\"splashDamage\" value=\"100\"/>";
str = str + "<var name=\"splashRadius\" value=\"100\"/>";
str = str + "<var name=\"splashDelay\" value=\"6\"/>";
str = str + "<var name=\"autoDestroy\" value=\"600\"/>";
str = str + "<var name=\"group\" value=\"miss_2_1\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"truck_tent\">";
str = str + "<var name=\"linkage\" value=\"truck_tent\"/>";
str = str + "<var name=\"editor_name\" value=\"truck_tent\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-14, -52, 14, 20\"/>";
str = str + "<var name=\"health\" value=\"50\"/>";
str = str + "<var name=\"moveByView\" value=\"0\"/>";
str = str + "<var name=\"group\" value=\"miss_2\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "<var name=\"dieMovie\" value=\"bla\"/>";
str = str + "</object>";
str = str + "<object name=\"truck_tent_1\">";
str = str + "<var name=\"linkage\" value=\"truck_tent_1\"/>";
str = str + "<var name=\"editor_name\" value=\"truck_tent_1\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-14, -52, 14, 20\"/>";
str = str + "<var name=\"health\" value=\"50\"/>";
str = str + "<var name=\"splashDamage\" value=\"200\"/>";
str = str + "<var name=\"splashRadius\" value=\"100\"/>";
str = str + "<var name=\"splashDelay\" value=\"2\"/>";
str = str + "<var name=\"moveByView\" value=\"0\"/>";
str = str + "<var name=\"group\" value=\"miss_5\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"truck_tent_2\">";
str = str + "<var name=\"linkage\" value=\"truck_tent_2\"/>";
str = str + "<var name=\"editor_name\" value=\"truck_tent_2\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-14, -52, 14, 20\"/>";
str = str + "<var name=\"health\" value=\"50\"/>";
str = str + "<var name=\"moveByView\" value=\"0\"/>";
str = str + "<var name=\"group\" value=\"miss_5_1\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"truck_tent_3\">";
str = str + "<var name=\"linkage\" value=\"truck_tent_3\"/>";
str = str + "<var name=\"editor_name\" value=\"truck_tent_3\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-14, -52, 14, 20\"/>";
str = str + "<var name=\"health\" value=\"50\"/>";
str = str + "<var name=\"moveByView\" value=\"0\"/>";
str = str + "<var name=\"group\" value=\"miss_7\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"un_car1\">";
str = str + "<var name=\"linkage\" value=\"un_car1\"/>";
str = str + "<var name=\"editor_name\" value=\"un_car1\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-21, -10, 21, 10\"/>";
str = str + "<var name=\"health\" value=\"100\"/>";
str = str + "<var name=\"group\" value=\"miss_6\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"un_car2\">";
str = str + "<var name=\"linkage\" value=\"un_car2\"/>";
str = str + "<var name=\"editor_name\" value=\"un_car2\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-26, -13, 26, 13\"/>";
str = str + "<var name=\"health\" value=\"100\"/>";
str = str + "<var name=\"group\" value=\"miss_6\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"wirefence2\">";
str = str + "<var name=\"linkage\" value=\"wirefence2\"/>";
str = str + "<var name=\"editor_name\" value=\"wirefence2\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 44, 13\"/>";
str = str + "</object>";
str = str + "<object name=\"wall_beton1\">";
str = str + "<var name=\"linkage\" value=\"wall_beton1\"/>";
str = str + "<var name=\"editor_name\" value=\"wall_beton1\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 30, 68\"/>";
str = str + "</object>";
str = str + "<object name=\"wall_beton2\">";
str = str + "<var name=\"linkage\" value=\"wall_beton2\"/>";
str = str + "<var name=\"editor_name\" value=\"wall_beton2\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 64, 31\"/>";
str = str + "</object>";
str = str + "<object name=\"wall_big1\">";
str = str + "<var name=\"linkage\" value=\"wall_big1\"/>";
str = str + "<var name=\"editor_name\" value=\"wall_big1\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 53, 94\"/>";
str = str + "</object>";
str = str + "<object name=\"wall_big2\">";
str = str + "<var name=\"linkage\" value=\"wall_big2\"/>";
str = str + "<var name=\"editor_name\" value=\"wall_big2\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 87, 55\"/>";
str = str + "</object>";
str = str + "<object name=\"wall_sm1\">";
str = str + "<var name=\"linkage\" value=\"wall_sm1\"/>";
str = str + "<var name=\"editor_name\" value=\"wall_sm1\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 31, 49\"/>";
str = str + "</object>";
str = str + "<object name=\"wall_sm2\">";
str = str + "<var name=\"linkage\" value=\"wall_sm2\"/>";
str = str + "<var name=\"editor_name\" value=\"wall_sm2\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 45, 27\"/>";
str = str + "</object>";
str = str + "<object name=\"wirefence1\">";
str = str + "<var name=\"linkage\" value=\"wirefence1\"/>";
str = str + "<var name=\"editor_name\" value=\"wirefence1\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 9, 48\"/>";
str = str + "</object>";
str = str + "<object name=\"tent1\">";
str = str + "<var name=\"linkage\" value=\"tent1\"/>";
str = str + "<var name=\"editor_name\" value=\"tent1\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 37, 45\"/>";
str = str + "</object>";
str = str + "<object name=\"hangar1\">";
str = str + "<var name=\"linkage\" value=\"hangar1\"/>";
str = str + "<var name=\"editor_name\" value=\"hangar1\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 130, 169\"/>";
str = str + "</object>";
str = str + "<object name=\"hangar2\">";
str = str + "<var name=\"linkage\" value=\"hangar2\"/>";
str = str + "<var name=\"editor_name\" value=\"hangar2\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 175, 115\"/>";
str = str + "</object>";
str = str + "<object name=\"oil_barrel1\">";
str = str + "<var name=\"linkage\" value=\"oil_barrel1\"/>";
str = str + "<var name=\"editor_name\" value=\"oil_barrel1\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 83, 92\"/>";
str = str + "</object>";
str = str + "<object name=\"oil_barrel2\">";
str = str + "<var name=\"linkage\" value=\"oil_barrel2\"/>";
str = str + "<var name=\"editor_name\" value=\"oil_barrel2\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 84, 74\"/>";
str = str + "</object>";
str = str + "<object name=\"oil_pump1\">";
str = str + "<var name=\"linkage\" value=\"oil_pump1\"/>";
str = str + "<var name=\"editor_name\" value=\"oil_pump1\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 212, 83\"/>";
str = str + "</object>";
str = str + "<object name=\"oil_punp2\">";
str = str + "<var name=\"linkage\" value=\"oil_punp2\"/>";
str = str + "<var name=\"editor_name\" value=\"oil_punp2\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 220, 87\"/>";
str = str + "</object>";
str = str + "<object name=\"post1\">";
str = str + "<var name=\"linkage\" value=\"post1\"/>";
str = str + "<var name=\"editor_name\" value=\"post1\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 34, 31\"/>";
str = str + "</object>";
str = str + "<object name=\"tower_guard\">";
str = str + "<var name=\"linkage\" value=\"tower_guard\"/>";
str = str + "<var name=\"editor_name\" value=\"tower_guard\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 71, 72\"/>";
str = str + "</object>";
str = str + "<object name=\"radar_base1\">";
str = str + "<var name=\"linkage\" value=\"radar_base1\"/>";
str = str + "<var name=\"editor_name\" value=\"radar_base1\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 83, 63\"/>";
str = str + "</object>";
str = str + "<object name=\"radar_base2\">";
str = str + "<var name=\"linkage\" value=\"radar_base2\"/>";
str = str + "<var name=\"editor_name\" value=\"radar_base2\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 78, 61\"/>";
str = str + "</object>";
str = str + "<object name=\"tent2\">";
str = str + "<var name=\"linkage\" value=\"tent2\"/>";
str = str + "<var name=\"editor_name\" value=\"tent2\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 41, 35\"/>";
str = str + "</object>";
str = str + "<object name=\"tower_water\">";
str = str + "<var name=\"linkage\" value=\"tower_water\"/>";
str = str + "<var name=\"editor_name\" value=\"tower_water\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 87, 96\"/>";
str = str + "</object>";
str = str + "<object name=\"mi28\">";
str = str + "<var name=\"linkage\" value=\"mi28\"/>";
str = str + "<var name=\"editor_name\" value=\"mi28\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-11, -50, 11, 50\"/>";
str = str + "<var name=\"health\" value=\"100\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"ka50\">";
str = str + "<var name=\"linkage\" value=\"ka50\"/>";
str = str + "<var name=\"editor_name\" value=\"ka50\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-13, -54, 13, 54\"/>";
str = str + "<var name=\"health\" value=\"100\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"mi23\">";
str = str + "<var name=\"linkage\" value=\"mi23\"/>";
str = str + "<var name=\"editor_name\" value=\"mi23\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-16, -60, 16, 60\"/>";
str = str + "<var name=\"health\" value=\"100\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"cargo_heli\">";
str = str + "<var name=\"linkage\" value=\"cargo_heli\"/>";
str = str + "<var name=\"editor_name\" value=\"cargo_heli\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-10,-38,10,78\"/>";
str = str + "<var name=\"health\" value=\"100\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"hero1\">";
str = str + "<var name=\"linkage\" value=\"hero1\"/>";
str = str + "<var name=\"editor_name\" value=\"hero1\"/>";
str = str + "<var name=\"type\" value=\"playerMC\"/>";
str = str + "<var name=\"bb\" value=\"-36, -15, 36, 15\"/>";
str = str + "<var name=\"proto\" value=\"armed_heli, simple_player\"/>";
str = str + "<var name=\"mcname\" value=\"vasya\"/>";
str = str + "<var name=\"health\" value=\"150\"/>";
str = str + "<var name=\"deltaS\" value=\"5\"/>";
str = str + "<var name=\"xFr\" value=\"0.4\"/>";
str = str + "<var name=\"yFr\" value=\"0.4\"/>";
str = str + "<var name=\"rFr\" value=\"0.9\"/>";
str = str + "<var name=\"aFr\" value=\"0\"/>";
str = str + "<var name=\"deltaRSpeed\" value=\"2\"/>";
str = str + "<var name=\"maxRSpeed\" value=\"15\"/>";
str = str + "<var name=\"factorRSpeed\" value=\"0.8\"/>";
str = str + "<var name=\"splashTrans\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"hero2\">";
str = str + "<var name=\"linkage\" value=\"hero2\"/>";
str = str + "<var name=\"editor_name\" value=\"hero2\"/>";
str = str + "<var name=\"type\" value=\"playerMC\"/>";
str = str + "<var name=\"bb\" value=\"-41, -16, 41, 16\"/>";
str = str + "<var name=\"health\" value=\"100\"/>";
str = str + "</object>";
str = str + "<object name=\"hero3\">";
str = str + "<var name=\"linkage\" value=\"hero3\"/>";
str = str + "<var name=\"editor_name\" value=\"hero3\"/>";
str = str + "<var name=\"type\" value=\"playerMC\"/>";
str = str + "<var name=\"bb\" value=\"-47, -20, 47, 20\"/>";
str = str + "<var name=\"health\" value=\"120\"/>";
str = str + "</object>";
str = str + "<object name=\"sand\">";
str = str + "<var name=\"linkage\" value=\"sand\"/>";
str = str + "<var name=\"editor_name\" value=\"sand\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 550, 400\"/>";
str = str + "</object>";
str = str + "<object name=\"grass1\">";
str = str + "<var name=\"linkage\" value=\"grass1\"/>";
str = str + "<var name=\"editor_name\" value=\"grass1\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 297, 277\"/>";
str = str + "</object>";
str = str + "<object name=\"grass2\">";
str = str + "<var name=\"linkage\" value=\"grass2\"/>";
str = str + "<var name=\"editor_name\" value=\"grass2\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 230, 227\"/>";
str = str + "</object>";
str = str + "<object name=\"grass3\">";
str = str + "<var name=\"linkage\" value=\"grass3\"/>";
str = str + "<var name=\"editor_name\" value=\"grass3\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 114, 106\"/>";
str = str + "</object>";
str = str + "<object name=\"palms1\">";
str = str + "<var name=\"linkage\" value=\"palms1\"/>";
str = str + "<var name=\"editor_name\" value=\"palms1\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 86, 85\"/>";
str = str + "</object>";
str = str + "<object name=\"palms3\">";
str = str + "<var name=\"linkage\" value=\"palms3\"/>";
str = str + "<var name=\"editor_name\" value=\"palms3\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 135, 151\"/>";
str = str + "</object>";
str = str + "<object name=\"palms4\">";
str = str + "<var name=\"linkage\" value=\"palms4\"/>";
str = str + "<var name=\"editor_name\" value=\"palms4\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 155, 175\"/>";
str = str + "</object>";
str = str + "<object name=\"palms5\">";
str = str + "<var name=\"linkage\" value=\"palms5\"/>";
str = str + "<var name=\"editor_name\" value=\"palms5\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 190, 188\"/>";
str = str + "</object>";
str = str + "<object name=\"road_c\">";
str = str + "<var name=\"linkage\" value=\"road_c\"/>";
str = str + "<var name=\"editor_name\" value=\"road_c\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 100, 100\"/>";
str = str + "</object>";
str = str + "<object name=\"road_d1\">";
str = str + "<var name=\"linkage\" value=\"road_d1\"/>";
str = str + "<var name=\"editor_name\" value=\"road_d1\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 100, 60\"/>";
str = str + "</object>";
str = str + "<object name=\"road_d_l\">";
str = str + "<var name=\"linkage\" value=\"road_d_l\"/>";
str = str + "<var name=\"editor_name\" value=\"road_d_l\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 100, 100\"/>";
str = str + "</object>";
str = str + "<object name=\"road_d_r\">";
str = str + "<var name=\"linkage\" value=\"road_d_r\"/>";
str = str + "<var name=\"editor_name\" value=\"road_d_r\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 100, 100\"/>";
str = str + "</object>";
str = str + "<object name=\"road_l3\">";
str = str + "<var name=\"linkage\" value=\"road_l3\"/>";
str = str + "<var name=\"editor_name\" value=\"road_l3\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 100, 100\"/>";
str = str + "</object>";
str = str + "<object name=\"road_ld\">";
str = str + "<var name=\"linkage\" value=\"road_ld\"/>";
str = str + "<var name=\"editor_name\" value=\"road_ld\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 100, 60\"/>";
str = str + "</object>";
str = str + "<object name=\"road_lu\">";
str = str + "<var name=\"linkage\" value=\"road_lu\"/>";
str = str + "<var name=\"editor_name\" value=\"road_lu\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 100, 100\"/>";
str = str + "</object>";
str = str + "<object name=\"road_r1\">";
str = str + "<var name=\"linkage\" value=\"road_r1\"/>";
str = str + "<var name=\"editor_name\" value=\"road_r1\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 60, 100\"/>";
str = str + "</object>";
str = str + "<object name=\"road_rd\">";
str = str + "<var name=\"linkage\" value=\"road_rd\"/>";
str = str + "<var name=\"editor_name\" value=\"road_rd\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 61, 60\"/>";
str = str + "</object>";
str = str + "<object name=\"road_ru\">";
str = str + "<var name=\"linkage\" value=\"road_ru\"/>";
str = str + "<var name=\"editor_name\" value=\"road_ru\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 61, 100\"/>";
str = str + "</object>";
str = str + "<object name=\"road_u2\">";
str = str + "<var name=\"linkage\" value=\"road_u2\"/>";
str = str + "<var name=\"editor_name\" value=\"road_u2\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 100, 100\"/>";
str = str + "</object>";
str = str + "<object name=\"road_u_l\">";
str = str + "<var name=\"linkage\" value=\"road_u_l\"/>";
str = str + "<var name=\"editor_name\" value=\"road_u_l\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 100, 100\"/>";
str = str + "</object>";
str = str + "<object name=\"road_u_r\">";
str = str + "<var name=\"linkage\" value=\"road_u_r\"/>";
str = str + "<var name=\"editor_name\" value=\"road_u_r\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 100, 100\"/>";
str = str + "</object>";
str = str + "<object name=\"heliPad\">";
str = str + "<var name=\"linkage\" value=\"heliPad\"/>";
str = str + "<var name=\"editor_name\" value=\"heliPad\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 123, 111\"/>";
str = str + "</object>";
str = str + "<object name=\"host\">";
str = str + "<var name=\"linkage\" value=\"host\"/>";
str = str + "<var name=\"editor_name\" value=\"host\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-13, -9,13,9\"/>";
str = str + "<var name=\"trans\" value=\"1\"/>";
str = str + "<var name=\"bonus\" value=\"1\"/>";
str = str + "<var name=\"group\" value=\"host\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"weaponTrans\" value=\"1\"/>";
str = str + "<var name=\"dieMovie\" value=\"bla\"/>";
str = str + "</object>";
str = str + "<object name=\"null_tile\">";
str = str + "<var name=\"linkage\" value=\"null_tile\"/>";
str = str + "<var name=\"editor_name\" value=\"null_tile\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 550, 400\"/>";
str = str + "<var name=\"weaponTrans\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"empty_base\">";
str = str + "<var name=\"linkage\" value=\"empty_base\"/>";
str = str + "<var name=\"editor_name\" value=\"empty_base\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-15,-15,15,15\"/>";
str = str + "<var name=\"health\" value=\"10\"/>";
str = str + "</object>";
str = str + "<object name=\"gunner\">";
str = str + "<var name=\"linkage\" value=\"gunner\"/>";
str = str + "<var name=\"editor_name\" value=\"gunner\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-15,-15,15,15\"/>";
str = str + "<var name=\"proto\" value=\"gunner\"/>";
str = str + "<var name=\"health\" value=\"10\"/>";
str = str + "<var name=\"dieSound\" value=\"die1,die2,die3\"/>";
str = str + "</object>";
str = str + "<object name=\"gunner_1\">";
str = str + "<var name=\"linkage\" value=\"gunner_1\"/>";
str = str + "<var name=\"editor_name\" value=\"gunner_1\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-15,-15,15,15\"/>";
str = str + "<var name=\"proto\" value=\"gunner\"/>";
str = str + "<var name=\"health\" value=\"10\"/>";
str = str + "<var name=\"group\" value=\"miss_1\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "<var name=\"dieMovie\" value=\"explode4\"/>";
str = str + "<var name=\"dieMoviePlane\" value=\"downFX\"/>";
str = str + "<var name=\"dieSound\" value=\"die1,die2,die3\"/>";
str = str + "</object>";
str = str + "<object name=\"gunner_2\">";
str = str + "<var name=\"linkage\" value=\"gunner_2\"/>";
str = str + "<var name=\"editor_name\" value=\"gunner_2\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-15,-15,15,15\"/>";
str = str + "<var name=\"proto\" value=\"gunner\"/>";
str = str + "<var name=\"health\" value=\"10\"/>";
str = str + "<var name=\"group\" value=\"miss_3\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "<var name=\"dieMovie\" value=\"explode4\"/>";
str = str + "<var name=\"dieMoviePlane\" value=\"downFX\"/>";
str = str + "<var name=\"dieSound\" value=\"die1,die2,die3\"/>";
str = str + "</object>";
str = str + "<object name=\"gunner_3\">";
str = str + "<var name=\"linkage\" value=\"gunner_3\"/>";
str = str + "<var name=\"editor_name\" value=\"gunner_3\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-15,-15,15,15\"/>";
str = str + "<var name=\"proto\" value=\"gunner\"/>";
str = str + "<var name=\"health\" value=\"10\"/>";
str = str + "<var name=\"group\" value=\"miss_4_1\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "<var name=\"dieMovie\" value=\"explode4\"/>";
str = str + "<var name=\"dieMoviePlane\" value=\"downFX\"/>";
str = str + "<var name=\"dieSound\" value=\"die1,die2,die3\"/>";
str = str + "</object>";
str = str + "<object name=\"gunner_4\">";
str = str + "<var name=\"linkage\" value=\"gunner_4\"/>";
str = str + "<var name=\"editor_name\" value=\"gunner_4\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-15,-15,15,15\"/>";
str = str + "<var name=\"proto\" value=\"gunner\"/>";
str = str + "<var name=\"health\" value=\"10\"/>";
str = str + "<var name=\"dieMovie\" value=\"explode4\"/>";
str = str + "<var name=\"dieMoviePlane\" value=\"downFX\"/>";
str = str + "<var name=\"dieSound\" value=\"die1,die2,die3\"/>";
str = str + "</object>";
str = str + "<object name=\"gunner_5\">";
str = str + "<var name=\"linkage\" value=\"gunner_5\"/>";
str = str + "<var name=\"editor_name\" value=\"gunner_5\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-15,-15,15,15\"/>";
str = str + "<var name=\"proto\" value=\"gunner\"/>";
str = str + "<var name=\"health\" value=\"10\"/>";
str = str + "<var name=\"dieMovie\" value=\"explode4\"/>";
str = str + "<var name=\"dieMoviePlane\" value=\"downFX\"/>";
str = str + "<var name=\"dieSound\" value=\"die1,die2,die3\"/>";
str = str + "</object>";
str = str + "<object name=\"PZRK\">";
str = str + "<var name=\"linkage\" value=\"PZRK\"/>";
str = str + "<var name=\"editor_name\" value=\"PZRK\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-15,-15,15,15\"/>";
str = str + "<var name=\"proto\" value=\"rocketer\"/>";
str = str + "<var name=\"health\" value=\"10\"/>";
str = str + "<var name=\"dieMovie\" value=\"explode4\"/>";
str = str + "<var name=\"dieMoviePlane\" value=\"downFX\"/>";
str = str + "<var name=\"dieSound\" value=\"die1,die2,die3\"/>";
str = str + "</object>";
str = str + "<object name=\"PZRK_1\">";
str = str + "<var name=\"linkage\" value=\"PZRK_1\"/>";
str = str + "<var name=\"editor_name\" value=\"PZRK_1\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-15,-15,15,15\"/>";
str = str + "<var name=\"proto\" value=\"rocketer\"/>";
str = str + "<var name=\"health\" value=\"10\"/>";
str = str + "<var name=\"group\" value=\"miss_1\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "<var name=\"dieMovie\" value=\"explode4\"/>";
str = str + "<var name=\"dieMoviePlane\" value=\"downFX\"/>";
str = str + "<var name=\"dieSound\" value=\"die1,die2,die3\"/>";
str = str + "</object>";
str = str + "<object name=\"PZRK_2\">";
str = str + "<var name=\"linkage\" value=\"PZRK_2\"/>";
str = str + "<var name=\"editor_name\" value=\"PZRK_2\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-15,-15,15,15\"/>";
str = str + "<var name=\"proto\" value=\"rocketer\"/>";
str = str + "<var name=\"health\" value=\"10\"/>";
str = str + "<var name=\"group\" value=\"miss_3\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "<var name=\"dieMovie\" value=\"explode4\"/>";
str = str + "<var name=\"dieMoviePlane\" value=\"downFX\"/>";
str = str + "<var name=\"dieSound\" value=\"die1,die2,die3\"/>";
str = str + "</object>";
str = str + "<object name=\"PZRK_3\">";
str = str + "<var name=\"linkage\" value=\"PZRK_3\"/>";
str = str + "<var name=\"editor_name\" value=\"PZRK_3\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-15,-15,15,15\"/>";
str = str + "<var name=\"proto\" value=\"rocketer\"/>";
str = str + "<var name=\"health\" value=\"10\"/>";
str = str + "<var name=\"group\" value=\"miss_4_1\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "<var name=\"dieMovie\" value=\"explode4\"/>";
str = str + "<var name=\"dieMoviePlane\" value=\"downFX\"/>";
str = str + "<var name=\"dieSound\" value=\"die1,die2,die3\"/>";
str = str + "</object>";
str = str + "<object name=\"PZRK_4\">";
str = str + "<var name=\"linkage\" value=\"PZRK_4\"/>";
str = str + "<var name=\"editor_name\" value=\"PZRK_4\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-15,-15,15,15\"/>";
str = str + "<var name=\"proto\" value=\"rocketer\"/>";
str = str + "<var name=\"health\" value=\"10\"/>";
str = str + "<var name=\"dieMovie\" value=\"explode4\"/>";
str = str + "<var name=\"dieMoviePlane\" value=\"downFX\"/>";
str = str + "<var name=\"dieSound\" value=\"die1,die2,die3\"/>";
str = str + "</object>";
str = str + "<object name=\"PZRK_5\">";
str = str + "<var name=\"linkage\" value=\"PZRK_5\"/>";
str = str + "<var name=\"editor_name\" value=\"PZRK_5\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-15,-15,15,15\"/>";
str = str + "<var name=\"proto\" value=\"rocketer\"/>";
str = str + "<var name=\"health\" value=\"10\"/>";
str = str + "<var name=\"dieMovie\" value=\"explode4\"/>";
str = str + "<var name=\"dieMoviePlane\" value=\"downFX\"/>";
str = str + "<var name=\"dieSound\" value=\"die1,die2,die3\"/>";
str = str + "</object>";
str = str + "<object name=\"artelery_unit\">";
str = str + "<var name=\"linkage\" value=\"artelery_unit\"/>";
str = str + "<var name=\"editor_name\" value=\"artelery_unit\"/>";
str = str + "<var name=\"type\" value=\"pathMovingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 45, 143\"/>";
str = str + "<var name=\"health\" value=\"100\"/>";
str = str + "<var name=\"group\" value=\"miss_4\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"dontCollideWhileMoving\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"endoflevel\">";
str = str + "<var name=\"linkage\" value=\"endoflevel\"/>";
str = str + "<var name=\"editor_name\" value=\"endoflevel\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"0, 0, 123, 111\"/>";
str = str + "<var name=\"zone\" value=\"0,0,128,128\"/>";
str = str + "<var name=\"zoneType\" value=\"end\"/>";
str = str + "<var name=\"trans\" value=\"1\"/>";
str = str + "<var name=\"weaponTrans\" value=\"1\"/>";
str = str + "</object>";
str = str + "<object name=\"host_1\">";
str = str + "<var name=\"linkage\" value=\"host_1\"/>";
str = str + "<var name=\"editor_name\" value=\"host_1\"/>";
str = str + "<var name=\"type\" value=\"standingTileMC\"/>";
str = str + "<var name=\"bb\" value=\"-15, -15, 15, 15\"/>";
str = str + "<var name=\"health\" value=\"10\"/>";
str = str + "<var name=\"permanent\" value=\"1\"/>";
str = str + "<var name=\"sirviveIn\" value=\"700\"/>";
str = str + "<var name=\"group\" value=\"miss_3_1\"/>";
str = str + "</object>";
str = str + "</object>";
str = str + "<object name=\"levelsSet\">";
str = str + "<object name=\"level_1\">";
str = str + "<var name=\"comment\" >You have been hired by a humanitarian mission to protect the delegation from terrorists and fanatical sectarians. The delegation\u2019s office is located in the southwest and may be reached in one of two ways \u2013 the direct route (due southwest) or the relatively safer one (first heading west and then south). The choice is up to you.</var>";
str = str + "<array name=\"missions\">";
str = str + "<object group=\"host\" arrow=\"arr_3\" missionType=\"collect\" active=\"1\" timer=\"9000\" winAmount=\"1\" looseAmount=\"0\" actionTrue=\"startClip completedMission,score 100\" actionFalse=\"startClip failedMission\"/>";
str = str + "</array>";
str = str + "<array name=\"level\">";
str = str + "<object tile=\"host\" x=\"1400\" y=\"3300\" plane=\"far\" depth=\"1521\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1480\" plane=\"far2\" depth=\"1\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1480\" plane=\"far2\" depth=\"2\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1380\" plane=\"far2\" depth=\"3\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1380\" plane=\"far2\" depth=\"4\"/>";
str = str + "<object tile=\"road_u2\" x=\"1880\" y=\"780\" plane=\"far2\" depth=\"5\"/>";
str = str + "<object tile=\"road_u_l\" x=\"2280\" y=\"1580\" plane=\"far2\" depth=\"6\"/>";
str = str + "<object tile=\"road_u2\" x=\"1780\" y=\"780\" plane=\"far2\" depth=\"7\"/>";
str = str + "<object tile=\"road_d1\" x=\"2080\" y=\"880\" plane=\"far2\" depth=\"8\"/>";
str = str + "<object tile=\"road_u2\" x=\"2080\" y=\"780\" plane=\"far2\" depth=\"9\"/>";
str = str + "<object tile=\"road_u2\" x=\"2180\" y=\"780\" plane=\"far2\" depth=\"10\"/>";
str = str + "<object tile=\"road_d1\" x=\"2580\" y=\"1680\" plane=\"far2\" depth=\"11\"/>";
str = str + "<object tile=\"road_u2\" x=\"2580\" y=\"1580\" plane=\"far2\" depth=\"12\"/>";
str = str + "<object tile=\"road_d_r\" x=\"2380\" y=\"1680\" plane=\"far2\" depth=\"13\"/>";
str = str + "<object tile=\"road_u_r\" x=\"2380\" y=\"1580\" plane=\"far2\" depth=\"14\"/>";
str = str + "<object tile=\"road_d1\" x=\"2480\" y=\"1680\" plane=\"far2\" depth=\"15\"/>";
str = str + "<object tile=\"road_u2\" x=\"2480\" y=\"1580\" plane=\"far2\" depth=\"16\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1780\" plane=\"far2\" depth=\"17\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1780\" plane=\"far2\" depth=\"18\"/>";
str = str + "<object tile=\"road_d1\" x=\"1980\" y=\"880\" plane=\"far2\" depth=\"19\"/>";
str = str + "<object tile=\"road_u2\" x=\"1980\" y=\"780\" plane=\"far2\" depth=\"20\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1280\" plane=\"far2\" depth=\"21\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1280\" plane=\"far2\" depth=\"22\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1180\" plane=\"far2\" depth=\"23\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1180\" plane=\"far2\" depth=\"24\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1080\" plane=\"far2\" depth=\"25\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1080\" plane=\"far2\" depth=\"26\"/>";
str = str + "<object tile=\"road_d_l\" x=\"2280\" y=\"880\" plane=\"far2\" depth=\"27\"/>";
str = str + "<object tile=\"road_u2\" x=\"2280\" y=\"780\" plane=\"far2\" depth=\"28\"/>";
str = str + "<object tile=\"road_d1\" x=\"2180\" y=\"880\" plane=\"far2\" depth=\"29\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"980\" plane=\"far2\" depth=\"30\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"980\" plane=\"far2\" depth=\"31\"/>";
str = str + "<object tile=\"road_d_l\" x=\"2280\" y=\"1680\" plane=\"far2\" depth=\"32\"/>";
str = str + "<object tile=\"road_d1\" x=\"1880\" y=\"1680\" plane=\"far2\" depth=\"33\"/>";
str = str + "<object tile=\"road_d1\" x=\"1780\" y=\"1680\" plane=\"far2\" depth=\"34\"/>";
str = str + "<object tile=\"road_u2\" x=\"2180\" y=\"1580\" plane=\"far2\" depth=\"35\"/>";
str = str + "<object tile=\"road_d1\" x=\"2180\" y=\"1680\" plane=\"far2\" depth=\"36\"/>";
str = str + "<object tile=\"road_d1\" x=\"2080\" y=\"1680\" plane=\"far2\" depth=\"37\"/>";
str = str + "<object tile=\"road_u2\" x=\"2080\" y=\"1580\" plane=\"far2\" depth=\"38\"/>";
str = str + "<object tile=\"road_u2\" x=\"1980\" y=\"1580\" plane=\"far2\" depth=\"39\"/>";
str = str + "<object tile=\"road_d1\" x=\"1980\" y=\"1680\" plane=\"far2\" depth=\"40\"/>";
str = str + "<object tile=\"road_d1\" x=\"1880\" y=\"880\" plane=\"far2\" depth=\"41\"/>";
str = str + "<object tile=\"road_d1\" x=\"1780\" y=\"880\" plane=\"far2\" depth=\"42\"/>";
str = str + "<object tile=\"road_u2\" x=\"1880\" y=\"1580\" plane=\"far2\" depth=\"43\"/>";
str = str + "<object tile=\"road_u2\" x=\"1780\" y=\"1580\" plane=\"far2\" depth=\"44\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"880\" plane=\"far2\" depth=\"45\"/>";
str = str + "<object tile=\"road_ru\" x=\"2380\" y=\"780\" plane=\"far2\" depth=\"46\"/>";
str = str + "<object tile=\"road_ld\" x=\"1680\" y=\"880\" plane=\"far2\" depth=\"47\"/>";
str = str + "<object tile=\"road_lu\" x=\"1680\" y=\"780\" plane=\"far2\" depth=\"48\"/>";
str = str + "<object tile=\"road_d1\" x=\"1680\" y=\"1680\" plane=\"far2\" depth=\"49\"/>";
str = str + "<object tile=\"road_u2\" x=\"1680\" y=\"1580\" plane=\"far2\" depth=\"50\"/>";
str = str + "<object tile=\"road_u2\" x=\"1580\" y=\"1580\" plane=\"far2\" depth=\"51\"/>";
str = str + "<object tile=\"road_d1\" x=\"1580\" y=\"1680\" plane=\"far2\" depth=\"52\"/>";
str = str + "<object tile=\"road_d1\" x=\"1480\" y=\"1680\" plane=\"far2\" depth=\"53\"/>";
str = str + "<object tile=\"road_u2\" x=\"1480\" y=\"1580\" plane=\"far2\" depth=\"54\"/>";
str = str + "<object tile=\"road_u2\" x=\"1380\" y=\"1580\" plane=\"far2\" depth=\"55\"/>";
str = str + "<object tile=\"road_d1\" x=\"1380\" y=\"1680\" plane=\"far2\" depth=\"56\"/>";
str = str + "<object tile=\"road_d1\" x=\"1280\" y=\"1680\" plane=\"far2\" depth=\"57\"/>";
str = str + "<object tile=\"road_u2\" x=\"1280\" y=\"1580\" plane=\"far2\" depth=\"58\"/>";
str = str + "<object tile=\"road_u2\" x=\"1180\" y=\"1580\" plane=\"far2\" depth=\"59\"/>";
str = str + "<object tile=\"road_d_r\" x=\"1180\" y=\"1680\" plane=\"far2\" depth=\"60\"/>";
str = str + "<object tile=\"road_lu\" x=\"1080\" y=\"1580\" plane=\"far2\" depth=\"61\"/>";
str = str + "<object tile=\"road_l3\" x=\"1080\" y=\"1680\" plane=\"far2\" depth=\"62\"/>";
str = str + "<object tile=\"road_ld\" x=\"1080\" y=\"1780\" plane=\"far2\" depth=\"63\"/>";
str = str + "<object tile=\"road_rd\" x=\"1180\" y=\"1780\" plane=\"far2\" depth=\"64\"/>";
str = str + "<object tile=\"road_d1\" x=\"2680\" y=\"1680\" plane=\"far2\" depth=\"65\"/>";
str = str + "<object tile=\"road_u2\" x=\"2680\" y=\"1580\" plane=\"far2\" depth=\"66\"/>";
str = str + "<object tile=\"road_d1\" x=\"2780\" y=\"1680\" plane=\"far2\" depth=\"67\"/>";
str = str + "<object tile=\"road_u2\" x=\"2780\" y=\"1580\" plane=\"far2\" depth=\"68\"/>";
str = str + "<object tile=\"road_d1\" x=\"2880\" y=\"1680\" plane=\"far2\" depth=\"69\"/>";
str = str + "<object tile=\"road_u2\" x=\"2880\" y=\"1580\" plane=\"far2\" depth=\"70\"/>";
str = str + "<object tile=\"road_d1\" x=\"2980\" y=\"1680\" plane=\"far2\" depth=\"71\"/>";
str = str + "<object tile=\"road_u2\" x=\"2980\" y=\"1580\" plane=\"far2\" depth=\"72\"/>";
str = str + "<object tile=\"road_d1\" x=\"3080\" y=\"1680\" plane=\"far2\" depth=\"73\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3080\" y=\"1580\" plane=\"far2\" depth=\"74\"/>";
str = str + "<object tile=\"road_rd\" x=\"3180\" y=\"1680\" plane=\"far2\" depth=\"75\"/>";
str = str + "<object tile=\"road_r1\" x=\"3180\" y=\"1580\" plane=\"far2\" depth=\"76\"/>";
str = str + "<object tile=\"road_l3\" x=\"3080\" y=\"1480\" plane=\"far2\" depth=\"77\"/>";
str = str + "<object tile=\"road_r1\" x=\"3180\" y=\"1480\" plane=\"far2\" depth=\"78\"/>";
str = str + "<object tile=\"road_ru\" x=\"3180\" y=\"1380\" plane=\"far2\" depth=\"79\"/>";
str = str + "<object tile=\"road_lu\" x=\"3080\" y=\"1380\" plane=\"far2\" depth=\"80\"/>";
str = str + "<object tile=\"road_rd\" x=\"3460\" y=\"970\" plane=\"far2\" depth=\"81\"/>";
str = str + "<object tile=\"road_ld\" x=\"3360\" y=\"970\" plane=\"far2\" depth=\"82\"/>";
str = str + "<object tile=\"road_l3\" x=\"3360\" y=\"870\" plane=\"far2\" depth=\"83\"/>";
str = str + "<object tile=\"road_d_r\" x=\"3460\" y=\"870\" plane=\"far2\" depth=\"84\"/>";
str = str + "<object tile=\"road_lu\" x=\"3360\" y=\"770\" plane=\"far2\" depth=\"85\"/>";
str = str + "<object tile=\"road_u2\" x=\"3460\" y=\"770\" plane=\"far2\" depth=\"86\"/>";
str = str + "<object tile=\"road_d1\" x=\"3560\" y=\"870\" plane=\"far2\" depth=\"87\"/>";
str = str + "<object tile=\"road_u2\" x=\"3560\" y=\"770\" plane=\"far2\" depth=\"88\"/>";
str = str + "<object tile=\"road_d1\" x=\"3660\" y=\"870\" plane=\"far2\" depth=\"89\"/>";
str = str + "<object tile=\"road_rd\" x=\"3760\" y=\"870\" plane=\"far2\" depth=\"90\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3660\" y=\"770\" plane=\"far2\" depth=\"91\"/>";
str = str + "<object tile=\"road_r1\" x=\"3760\" y=\"770\" plane=\"far2\" depth=\"92\"/>";
str = str + "<object tile=\"road_r1\" x=\"3760\" y=\"670\" plane=\"far2\" depth=\"93\"/>";
str = str + "<object tile=\"road_l3\" x=\"3660\" y=\"670\" plane=\"far2\" depth=\"94\"/>";
str = str + "<object tile=\"road_l3\" x=\"3660\" y=\"570\" plane=\"far2\" depth=\"95\"/>";
str = str + "<object tile=\"road_r1\" x=\"3760\" y=\"570\" plane=\"far2\" depth=\"96\"/>";
str = str + "<object tile=\"road_l3\" x=\"3660\" y=\"470\" plane=\"far2\" depth=\"97\"/>";
str = str + "<object tile=\"road_r1\" x=\"3760\" y=\"470\" plane=\"far2\" depth=\"98\"/>";
str = str + "<object tile=\"road_r1\" x=\"3760\" y=\"370\" plane=\"far2\" depth=\"99\"/>";
str = str + "<object tile=\"road_l3\" x=\"3660\" y=\"370\" plane=\"far2\" depth=\"100\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1880\" plane=\"far2\" depth=\"101\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1880\" plane=\"far2\" depth=\"102\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1980\" plane=\"far2\" depth=\"103\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1980\" plane=\"far2\" depth=\"104\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2080\" plane=\"far2\" depth=\"105\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2080\" plane=\"far2\" depth=\"106\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2180\" plane=\"far2\" depth=\"107\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2180\" plane=\"far2\" depth=\"108\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2280\" plane=\"far2\" depth=\"109\"/>";
str = str + "<object tile=\"road_u_r\" x=\"2380\" y=\"2280\" plane=\"far2\" depth=\"110\"/>";
str = str + "<object tile=\"road_d_r\" x=\"2380\" y=\"2380\" plane=\"far2\" depth=\"111\"/>";
str = str + "<object tile=\"road_u2\" x=\"2480\" y=\"2280\" plane=\"far2\" depth=\"112\"/>";
str = str + "<object tile=\"road_d1\" x=\"2480\" y=\"2380\" plane=\"far2\" depth=\"113\"/>";
str = str + "<object tile=\"road_d1\" x=\"2580\" y=\"2380\" plane=\"far2\" depth=\"114\"/>";
str = str + "<object tile=\"road_u2\" x=\"2580\" y=\"2280\" plane=\"far2\" depth=\"115\"/>";
str = str + "<object tile=\"road_u2\" x=\"2680\" y=\"2280\" plane=\"far2\" depth=\"116\"/>";
str = str + "<object tile=\"road_d1\" x=\"2680\" y=\"2380\" plane=\"far2\" depth=\"117\"/>";
str = str + "<object tile=\"road_d1\" x=\"2780\" y=\"2380\" plane=\"far2\" depth=\"118\"/>";
str = str + "<object tile=\"road_u2\" x=\"2780\" y=\"2280\" plane=\"far2\" depth=\"119\"/>";
str = str + "<object tile=\"road_d1\" x=\"2880\" y=\"2380\" plane=\"far2\" depth=\"120\"/>";
str = str + "<object tile=\"road_u2\" x=\"2880\" y=\"2280\" plane=\"far2\" depth=\"121\"/>";
str = str + "<object tile=\"road_d1\" x=\"2980\" y=\"2380\" plane=\"far2\" depth=\"122\"/>";
str = str + "<object tile=\"road_u2\" x=\"2980\" y=\"2280\" plane=\"far2\" depth=\"123\"/>";
str = str + "<object tile=\"road_d1\" x=\"3080\" y=\"2380\" plane=\"far2\" depth=\"124\"/>";
str = str + "<object tile=\"road_u2\" x=\"3080\" y=\"2280\" plane=\"far2\" depth=\"125\"/>";
str = str + "<object tile=\"road_d1\" x=\"3180\" y=\"2380\" plane=\"far2\" depth=\"126\"/>";
str = str + "<object tile=\"road_u2\" x=\"3180\" y=\"2280\" plane=\"far2\" depth=\"127\"/>";
str = str + "<object tile=\"road_d1\" x=\"3280\" y=\"2380\" plane=\"far2\" depth=\"128\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3280\" y=\"2280\" plane=\"far2\" depth=\"129\"/>";
str = str + "<object tile=\"road_rd\" x=\"3380\" y=\"2380\" plane=\"far2\" depth=\"130\"/>";
str = str + "<object tile=\"road_r1\" x=\"3380\" y=\"2280\" plane=\"far2\" depth=\"131\"/>";
str = str + "<object tile=\"road_ru\" x=\"3380\" y=\"2180\" plane=\"far2\" depth=\"132\"/>";
str = str + "<object tile=\"road_lu\" x=\"3280\" y=\"2180\" plane=\"far2\" depth=\"133\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2380\" plane=\"far2\" depth=\"134\"/>";
str = str + "<object tile=\"road_u_l\" x=\"2280\" y=\"2480\" plane=\"far2\" depth=\"135\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2480\" plane=\"far2\" depth=\"136\"/>";
str = str + "<object tile=\"road_d_l\" x=\"2280\" y=\"2580\" plane=\"far2\" depth=\"137\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2580\" plane=\"far2\" depth=\"138\"/>";
str = str + "<object tile=\"road_d1\" x=\"2180\" y=\"2580\" plane=\"far2\" depth=\"139\"/>";
str = str + "<object tile=\"road_u2\" x=\"2180\" y=\"2480\" plane=\"far2\" depth=\"140\"/>";
str = str + "<object tile=\"road_u2\" x=\"2080\" y=\"2480\" plane=\"far2\" depth=\"141\"/>";
str = str + "<object tile=\"road_u2\" x=\"1980\" y=\"2480\" plane=\"far2\" depth=\"142\"/>";
str = str + "<object tile=\"road_u2\" x=\"1880\" y=\"2480\" plane=\"far2\" depth=\"143\"/>";
str = str + "<object tile=\"road_u2\" x=\"1780\" y=\"2480\" plane=\"far2\" depth=\"144\"/>";
str = str + "<object tile=\"road_u2\" x=\"1680\" y=\"2480\" plane=\"far2\" depth=\"145\"/>";
str = str + "<object tile=\"road_u2\" x=\"1580\" y=\"2480\" plane=\"far2\" depth=\"146\"/>";
str = str + "<object tile=\"road_u2\" x=\"1480\" y=\"2480\" plane=\"far2\" depth=\"147\"/>";
str = str + "<object tile=\"road_l3\" x=\"1380\" y=\"2580\" plane=\"far2\" depth=\"148\"/>";
str = str + "<object tile=\"road_l3\" x=\"1380\" y=\"2680\" plane=\"far2\" depth=\"149\"/>";
str = str + "<object tile=\"road_l3\" x=\"1380\" y=\"2780\" plane=\"far2\" depth=\"150\"/>";
str = str + "<object tile=\"road_ld\" x=\"1380\" y=\"2880\" plane=\"far2\" depth=\"151\"/>";
str = str + "<object tile=\"road_rd\" x=\"1480\" y=\"2880\" plane=\"far2\" depth=\"152\"/>";
str = str + "<object tile=\"road_r1\" x=\"1480\" y=\"2780\" plane=\"far2\" depth=\"153\"/>";
str = str + "<object tile=\"road_r1\" x=\"1480\" y=\"2680\" plane=\"far2\" depth=\"154\"/>";
str = str + "<object tile=\"road_d_r\" x=\"1480\" y=\"2580\" plane=\"far2\" depth=\"155\"/>";
str = str + "<object tile=\"road_lu\" x=\"1380\" y=\"2480\" plane=\"far2\" depth=\"156\"/>";
str = str + "<object tile=\"road_d1\" x=\"1580\" y=\"2580\" plane=\"far2\" depth=\"157\"/>";
str = str + "<object tile=\"road_d1\" x=\"1680\" y=\"2580\" plane=\"far2\" depth=\"158\"/>";
str = str + "<object tile=\"road_d1\" x=\"1780\" y=\"2580\" plane=\"far2\" depth=\"159\"/>";
str = str + "<object tile=\"road_d1\" x=\"1880\" y=\"2580\" plane=\"far2\" depth=\"160\"/>";
str = str + "<object tile=\"road_d1\" x=\"1980\" y=\"2580\" plane=\"far2\" depth=\"161\"/>";
str = str + "<object tile=\"road_d1\" x=\"2080\" y=\"2580\" plane=\"far2\" depth=\"162\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2680\" plane=\"far2\" depth=\"163\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2680\" plane=\"far2\" depth=\"164\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2780\" plane=\"far2\" depth=\"165\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2880\" plane=\"far2\" depth=\"166\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2980\" plane=\"far2\" depth=\"167\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"3080\" plane=\"far2\" depth=\"168\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"3180\" plane=\"far2\" depth=\"169\"/>";
str = str + "<object tile=\"road_u_r\" x=\"2380\" y=\"3280\" plane=\"far2\" depth=\"170\"/>";
str = str + "<object tile=\"road_u2\" x=\"2480\" y=\"3280\" plane=\"far2\" depth=\"171\"/>";
str = str + "<object tile=\"road_u2\" x=\"2580\" y=\"3280\" plane=\"far2\" depth=\"172\"/>";
str = str + "<object tile=\"road_u2\" x=\"2680\" y=\"3280\" plane=\"far2\" depth=\"173\"/>";
str = str + "<object tile=\"road_ru\" x=\"2780\" y=\"3280\" plane=\"far2\" depth=\"174\"/>";
str = str + "<object tile=\"road_rd\" x=\"2780\" y=\"3380\" plane=\"far2\" depth=\"175\"/>";
str = str + "<object tile=\"road_d1\" x=\"2680\" y=\"3380\" plane=\"far2\" depth=\"176\"/>";
str = str + "<object tile=\"road_d1\" x=\"2580\" y=\"3380\" plane=\"far2\" depth=\"177\"/>";
str = str + "<object tile=\"road_d1\" x=\"2480\" y=\"3380\" plane=\"far2\" depth=\"178\"/>";
str = str + "<object tile=\"road_d1\" x=\"2380\" y=\"3380\" plane=\"far2\" depth=\"179\"/>";
str = str + "<object tile=\"road_ld\" x=\"2280\" y=\"3380\" plane=\"far2\" depth=\"180\"/>";
str = str + "<object tile=\"road_d_l\" x=\"2280\" y=\"3280\" plane=\"far2\" depth=\"181\"/>";
str = str + "<object tile=\"road_u_l\" x=\"2280\" y=\"3180\" plane=\"far2\" depth=\"182\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"3080\" plane=\"far2\" depth=\"183\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2980\" plane=\"far2\" depth=\"184\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2880\" plane=\"far2\" depth=\"185\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2780\" plane=\"far2\" depth=\"186\"/>";
str = str + "<object tile=\"road_d1\" x=\"2180\" y=\"3280\" plane=\"far2\" depth=\"187\"/>";
str = str + "<object tile=\"road_u2\" x=\"2180\" y=\"3180\" plane=\"far2\" depth=\"188\"/>";
str = str + "<object tile=\"road_d1\" x=\"2080\" y=\"3280\" plane=\"far2\" depth=\"189\"/>";
str = str + "<object tile=\"road_u2\" x=\"2080\" y=\"3180\" plane=\"far2\" depth=\"190\"/>";
str = str + "<object tile=\"road_d1\" x=\"1980\" y=\"3280\" plane=\"far2\" depth=\"191\"/>";
str = str + "<object tile=\"road_u2\" x=\"1980\" y=\"3180\" plane=\"far2\" depth=\"192\"/>";
str = str + "<object tile=\"road_u2\" x=\"1880\" y=\"3180\" plane=\"far2\" depth=\"193\"/>";
str = str + "<object tile=\"road_d1\" x=\"1880\" y=\"3280\" plane=\"far2\" depth=\"194\"/>";
str = str + "<object tile=\"road_ld\" x=\"1780\" y=\"3280\" plane=\"far2\" depth=\"195\"/>";
str = str + "<object tile=\"road_lu\" x=\"1780\" y=\"3180\" plane=\"far2\" depth=\"196\"/>";
str = str + "<object tile=\"house_med1\" x=\"1710\" y=\"3080\" plane=\"far\" depth=\"197\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1340\" y=\"3470\" plane=\"far\" depth=\"198\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1410\" y=\"3470\" plane=\"far\" depth=\"199\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1480\" y=\"3470\" plane=\"far\" depth=\"200\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1270\" y=\"2910\" plane=\"far\" depth=\"201\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1340\" y=\"2910\" plane=\"far\" depth=\"202\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1530\" y=\"2910\" plane=\"far\" depth=\"203\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1600\" y=\"2910\" plane=\"far\" depth=\"204\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1670\" y=\"2910\" plane=\"far\" depth=\"205\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1740\" y=\"2910\" plane=\"far\" depth=\"206\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1810\" y=\"2910\" plane=\"far\" depth=\"207\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1850\" y=\"2930\" plane=\"far\" depth=\"208\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1850\" y=\"3000\" plane=\"far\" depth=\"209\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1850\" y=\"3070\" plane=\"far\" depth=\"210\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1740\" y=\"3260\" plane=\"far\" depth=\"211\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1740\" y=\"3330\" plane=\"far\" depth=\"212\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1740\" y=\"3400\" plane=\"far\" depth=\"213\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1550\" y=\"3470\" plane=\"far\" depth=\"214\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1620\" y=\"3470\" plane=\"far\" depth=\"215\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1690\" y=\"3470\" plane=\"far\" depth=\"216\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1520\" y=\"2930\" plane=\"far\" depth=\"217\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1520\" y=\"3000\" plane=\"far\" depth=\"218\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1810\" y=\"3130\" plane=\"far\" depth=\"219\"/>";
str = str + "<object tile=\"oil_barrel1\" x=\"1580\" y=\"2970\" plane=\"far\" depth=\"220\"/>";
str = str + "<object tile=\"oil_barrel1\" x=\"1690\" y=\"2970\" plane=\"far\" depth=\"221\"/>";
str = str + "<object tile=\"tower_guard\" x=\"1790\" y=\"2950\" plane=\"far\" depth=\"222\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"2920\" plane=\"far\" depth=\"223\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"2990\" plane=\"far\" depth=\"224\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"3060\" plane=\"far\" depth=\"225\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"3130\" plane=\"far\" depth=\"226\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"3200\" plane=\"far\" depth=\"227\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"3270\" plane=\"far\" depth=\"228\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"3340\" plane=\"far\" depth=\"229\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"3410\" plane=\"far\" depth=\"230\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1270\" y=\"3470\" plane=\"far\" depth=\"231\"/>";
str = str + "<object tile=\"tower_water\" x=\"1620\" y=\"3290\" plane=\"far\" depth=\"232\"/>";
str = str + "<object tile=\"house_med3\" x=\"1310\" y=\"2950\" plane=\"far\" depth=\"233\"/>";
str = str + "<object tile=\"house_med4\" x=\"1310\" y=\"3050\" plane=\"far\" depth=\"234\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1310\" y=\"3150\" plane=\"far\" depth=\"235\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3420\" plane=\"far\" depth=\"236\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3460\" plane=\"far\" depth=\"237\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3500\" plane=\"far\" depth=\"238\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3100\" plane=\"far\" depth=\"239\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3140\" plane=\"far\" depth=\"240\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3180\" plane=\"far\" depth=\"241\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3220\" plane=\"far\" depth=\"242\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3260\" plane=\"far\" depth=\"243\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2870\" y=\"3530\" plane=\"far\" depth=\"244\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2910\" y=\"3530\" plane=\"far\" depth=\"245\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2950\" y=\"3530\" plane=\"far\" depth=\"246\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2990\" y=\"3530\" plane=\"far\" depth=\"247\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3030\" y=\"3530\" plane=\"far\" depth=\"248\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3070\" y=\"3530\" plane=\"far\" depth=\"249\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3110\" y=\"3530\" plane=\"far\" depth=\"250\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3150\" y=\"3530\" plane=\"far\" depth=\"251\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3190\" y=\"3530\" plane=\"far\" depth=\"252\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3230\" y=\"3530\" plane=\"far\" depth=\"253\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3270\" y=\"3530\" plane=\"far\" depth=\"254\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2870\" y=\"3100\" plane=\"far\" depth=\"255\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2910\" y=\"3100\" plane=\"far\" depth=\"256\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2950\" y=\"3100\" plane=\"far\" depth=\"257\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2990\" y=\"3100\" plane=\"far\" depth=\"258\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3030\" y=\"3100\" plane=\"far\" depth=\"259\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3070\" y=\"3100\" plane=\"far\" depth=\"260\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3110\" y=\"3100\" plane=\"far\" depth=\"261\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3150\" y=\"3100\" plane=\"far\" depth=\"262\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3190\" y=\"3100\" plane=\"far\" depth=\"263\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3230\" y=\"3100\" plane=\"far\" depth=\"264\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3270\" y=\"3100\" plane=\"far\" depth=\"265\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3100\" plane=\"far\" depth=\"266\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3140\" plane=\"far\" depth=\"267\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3180\" plane=\"far\" depth=\"268\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3220\" plane=\"far\" depth=\"269\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3260\" plane=\"far\" depth=\"270\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3300\" plane=\"far\" depth=\"271\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3340\" plane=\"far\" depth=\"272\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3380\" plane=\"far\" depth=\"273\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3420\" plane=\"far\" depth=\"274\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3460\" plane=\"far\" depth=\"275\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3500\" plane=\"far\" depth=\"276\"/>";
str = str + "<object tile=\"tent2\" x=\"3250\" y=\"3490\" plane=\"far\" depth=\"277\"/>";
str = str + "<object tile=\"tent2\" x=\"3250\" y=\"3440\" plane=\"far\" depth=\"278\"/>";
str = str + "<object tile=\"tent2\" x=\"3250\" y=\"3390\" plane=\"far\" depth=\"279\"/>";
str = str + "<object tile=\"tent2\" x=\"3250\" y=\"3340\" plane=\"far\" depth=\"280\"/>";
str = str + "<object tile=\"tent2\" x=\"3160\" y=\"3490\" plane=\"far\" depth=\"281\"/>";
str = str + "<object tile=\"tent2\" x=\"3160\" y=\"3440\" plane=\"far\" depth=\"282\"/>";
str = str + "<object tile=\"tent2\" x=\"3160\" y=\"3390\" plane=\"far\" depth=\"283\"/>";
str = str + "<object tile=\"tent2\" x=\"3160\" y=\"3340\" plane=\"far\" depth=\"284\"/>";
str = str + "<object tile=\"tent1\" x=\"2900\" y=\"3220\" plane=\"far\" depth=\"285\"/>";
str = str + "<object tile=\"tent1\" x=\"2940\" y=\"3220\" plane=\"far\" depth=\"286\"/>";
str = str + "<object tile=\"tent1\" x=\"2980\" y=\"3220\" plane=\"far\" depth=\"287\"/>";
str = str + "<object tile=\"tent1\" x=\"3020\" y=\"3220\" plane=\"far\" depth=\"288\"/>";
str = str + "<object tile=\"tent1\" x=\"2900\" y=\"3130\" plane=\"far\" depth=\"289\"/>";
str = str + "<object tile=\"tent1\" x=\"2940\" y=\"3130\" plane=\"far\" depth=\"290\"/>";
str = str + "<object tile=\"tent1\" x=\"2980\" y=\"3130\" plane=\"far\" depth=\"291\"/>";
str = str + "<object tile=\"tent1\" x=\"3020\" y=\"3130\" plane=\"far\" depth=\"292\"/>";
str = str + "<object tile=\"tent1\" x=\"3250\" y=\"3220\" plane=\"far\" depth=\"293\"/>";
str = str + "<object tile=\"tent1\" x=\"3210\" y=\"3220\" plane=\"far\" depth=\"294\"/>";
str = str + "<object tile=\"tent1\" x=\"3170\" y=\"3220\" plane=\"far\" depth=\"295\"/>";
str = str + "<object tile=\"tent1\" x=\"3130\" y=\"3220\" plane=\"far\" depth=\"296\"/>";
str = str + "<object tile=\"tent1\" x=\"3130\" y=\"3130\" plane=\"far\" depth=\"297\"/>";
str = str + "<object tile=\"tent1\" x=\"3170\" y=\"3130\" plane=\"far\" depth=\"298\"/>";
str = str + "<object tile=\"tent1\" x=\"3210\" y=\"3130\" plane=\"far\" depth=\"299\"/>";
str = str + "<object tile=\"tent1\" x=\"3250\" y=\"3130\" plane=\"far\" depth=\"300\"/>";
str = str + "<object tile=\"tower_water\" x=\"2890\" y=\"3420\" plane=\"far\" depth=\"301\"/>";
str = str + "<object tile=\"house_sm2\" x=\"2960\" y=\"3450\" plane=\"far\" depth=\"302\"/>";
str = str + "<object tile=\"house_big2\" x=\"3250\" y=\"1810\" plane=\"far\" depth=\"303\"/>";
str = str + "<object tile=\"tower_water\" x=\"3230\" y=\"2180\" plane=\"far\" depth=\"304\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3160\" y=\"2270\" plane=\"far\" depth=\"305\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3370\" y=\"1770\" plane=\"far\" depth=\"306\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3300\" y=\"1770\" plane=\"far\" depth=\"307\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3230\" y=\"1770\" plane=\"far\" depth=\"308\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3160\" y=\"1770\" plane=\"far\" depth=\"309\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3090\" y=\"1770\" plane=\"far\" depth=\"310\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"1790\" plane=\"far\" depth=\"311\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"1860\" plane=\"far\" depth=\"312\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"1930\" plane=\"far\" depth=\"313\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"2000\" plane=\"far\" depth=\"314\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"2070\" plane=\"far\" depth=\"315\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"2140\" plane=\"far\" depth=\"316\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"2210\" plane=\"far\" depth=\"317\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3090\" y=\"2270\" plane=\"far\" depth=\"318\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3440\" y=\"1770\" plane=\"far\" depth=\"319\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3480\" y=\"1790\" plane=\"far\" depth=\"320\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3480\" y=\"1860\" plane=\"far\" depth=\"321\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3420\" y=\"2290\" plane=\"far\" depth=\"322\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3420\" y=\"2360\" plane=\"far\" depth=\"323\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3420\" y=\"2430\" plane=\"far\" depth=\"324\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3230\" y=\"2270\" plane=\"far\" depth=\"325\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3630\" y=\"2060\" plane=\"far\" depth=\"326\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3560\" y=\"2060\" plane=\"far\" depth=\"327\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3770\" y=\"2060\" plane=\"far\" depth=\"328\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3700\" y=\"2060\" plane=\"far\" depth=\"329\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3570\" y=\"2570\" plane=\"far\" depth=\"330\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3500\" y=\"2570\" plane=\"far\" depth=\"331\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3420\" y=\"2500\" plane=\"far\" depth=\"332\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3430\" y=\"2570\" plane=\"far\" depth=\"333\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2080\" plane=\"far\" depth=\"334\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2150\" plane=\"far\" depth=\"335\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2220\" plane=\"far\" depth=\"336\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2290\" plane=\"far\" depth=\"337\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2360\" plane=\"far\" depth=\"338\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2430\" plane=\"far\" depth=\"339\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2500\" plane=\"far\" depth=\"340\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3780\" y=\"2570\" plane=\"far\" depth=\"341\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3710\" y=\"2570\" plane=\"far\" depth=\"342\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3640\" y=\"2570\" plane=\"far\" depth=\"343\"/>";
str = str + "<object tile=\"house_med3\" x=\"3120\" y=\"1960\" plane=\"far\" depth=\"344\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3180\" y=\"2070\" plane=\"far\" depth=\"345\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3180\" y=\"2100\" plane=\"far\" depth=\"346\"/>";
str = str + "<object tile=\"house_sm1\" x=\"3160\" y=\"2130\" plane=\"far\" depth=\"347\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3460\" y=\"2290\" plane=\"far\" depth=\"348\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3500\" y=\"2290\" plane=\"far\" depth=\"349\"/>";
str = str + "<object tile=\"house_big1\" x=\"3520\" y=\"2260\" plane=\"far\" depth=\"350\"/>";
str = str + "<object tile=\"house_med2\" x=\"3710\" y=\"2050\" plane=\"far\" depth=\"351\"/>";
str = str + "<object tile=\"house_sm1\" x=\"3780\" y=\"2160\" plane=\"far\" depth=\"352\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3670\" y=\"2290\" plane=\"far\" depth=\"353\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3700\" y=\"2290\" plane=\"far\" depth=\"354\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3730\" y=\"2290\" plane=\"far\" depth=\"355\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3760\" y=\"2290\" plane=\"far\" depth=\"356\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3790\" y=\"2290\" plane=\"far\" depth=\"357\"/>";
str = str + "<object tile=\"house_med5\" x=\"3450\" y=\"2440\" plane=\"far\" depth=\"358\"/>";
str = str + "<object tile=\"house_sm1\" x=\"3570\" y=\"2490\" plane=\"far\" depth=\"359\"/>";
str = str + "<object tile=\"house_med1\" x=\"3610\" y=\"2470\" plane=\"far\" depth=\"360\"/>";
str = str + "<object tile=\"house_sm2\" x=\"3700\" y=\"2480\" plane=\"far\" depth=\"361\"/>";
str = str + "<object tile=\"house_sm1\" x=\"3780\" y=\"2300\" plane=\"far\" depth=\"362\"/>";
str = str + "<object tile=\"house_sm2\" x=\"3730\" y=\"2300\" plane=\"far\" depth=\"363\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1240\" y=\"1780\" plane=\"far\" depth=\"364\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1310\" y=\"1780\" plane=\"far\" depth=\"365\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1030\" y=\"1780\" plane=\"far\" depth=\"366\"/>";
str = str + "<object tile=\"wall_big2\" x=\"960\" y=\"1780\" plane=\"far\" depth=\"367\"/>";
str = str + "<object tile=\"wall_big2\" x=\"890\" y=\"1780\" plane=\"far\" depth=\"368\"/>";
str = str + "<object tile=\"wall_big2\" x=\"820\" y=\"1780\" plane=\"far\" depth=\"369\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1380\" y=\"1780\" plane=\"far\" depth=\"370\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1450\" y=\"1780\" plane=\"far\" depth=\"371\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"1800\" plane=\"far\" depth=\"372\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"1870\" plane=\"far\" depth=\"373\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"1800\" plane=\"far\" depth=\"374\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"1870\" plane=\"far\" depth=\"375\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"1940\" plane=\"far\" depth=\"376\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"2010\" plane=\"far\" depth=\"377\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"2080\" plane=\"far\" depth=\"378\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"1940\" plane=\"far\" depth=\"379\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"2010\" plane=\"far\" depth=\"380\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"2080\" plane=\"far\" depth=\"381\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"2150\" plane=\"far\" depth=\"382\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"2150\" plane=\"far\" depth=\"383\"/>";
str = str + "<object tile=\"wall_big2\" x=\"890\" y=\"2290\" plane=\"far\" depth=\"384\"/>";
str = str + "<object tile=\"wall_big2\" x=\"960\" y=\"2290\" plane=\"far\" depth=\"385\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1030\" y=\"2290\" plane=\"far\" depth=\"386\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1100\" y=\"2290\" plane=\"far\" depth=\"387\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1170\" y=\"2290\" plane=\"far\" depth=\"388\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1240\" y=\"2290\" plane=\"far\" depth=\"389\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1310\" y=\"2290\" plane=\"far\" depth=\"390\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1380\" y=\"2290\" plane=\"far\" depth=\"391\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"2220\" plane=\"far\" depth=\"392\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"2220\" plane=\"far\" depth=\"393\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1450\" y=\"2290\" plane=\"far\" depth=\"394\"/>";
str = str + "<object tile=\"wall_big2\" x=\"820\" y=\"2290\" plane=\"far\" depth=\"395\"/>";
str = str + "<object tile=\"house_big1\" x=\"850\" y=\"1800\" plane=\"far\" depth=\"396\"/>";
str = str + "<object tile=\"house_med3\" x=\"860\" y=\"1930\" plane=\"far\" depth=\"397\"/>";
str = str + "<object tile=\"house_med4\" x=\"990\" y=\"2050\" plane=\"far\" depth=\"398\"/>";
str = str + "<object tile=\"house_big1\" x=\"840\" y=\"2010\" plane=\"far\" depth=\"399\"/>";
str = str + "<object tile=\"house_med3\" x=\"860\" y=\"2140\" plane=\"far\" depth=\"400\"/>";
str = str + "<object tile=\"house_med4\" x=\"1240\" y=\"1810\" plane=\"far\" depth=\"401\"/>";
str = str + "<object tile=\"house_big1\" x=\"1340\" y=\"1800\" plane=\"far\" depth=\"402\"/>";
str = str + "<object tile=\"house_med5\" x=\"1380\" y=\"1920\" plane=\"far\" depth=\"403\"/>";
str = str + "<object tile=\"house_big1\" x=\"1350\" y=\"2010\" plane=\"far\" depth=\"404\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1200\" y=\"2210\" plane=\"far\" depth=\"405\"/>";
str = str + "<object tile=\"house_med2\" x=\"1250\" y=\"2160\" plane=\"far\" depth=\"406\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1660\" y=\"570\" plane=\"far\" depth=\"407\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1590\" y=\"570\" plane=\"far\" depth=\"408\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1520\" y=\"570\" plane=\"far\" depth=\"409\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1450\" y=\"570\" plane=\"far\" depth=\"410\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1380\" y=\"570\" plane=\"far\" depth=\"411\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1310\" y=\"570\" plane=\"far\" depth=\"412\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1240\" y=\"570\" plane=\"far\" depth=\"413\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1170\" y=\"570\" plane=\"far\" depth=\"414\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1100\" y=\"570\" plane=\"far\" depth=\"415\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1030\" y=\"570\" plane=\"far\" depth=\"416\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1700\" y=\"590\" plane=\"far\" depth=\"417\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1700\" y=\"660\" plane=\"far\" depth=\"418\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1700\" y=\"730\" plane=\"far\" depth=\"419\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"590\" plane=\"far\" depth=\"420\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"660\" plane=\"far\" depth=\"421\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"730\" plane=\"far\" depth=\"422\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"800\" plane=\"far\" depth=\"423\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"870\" plane=\"far\" depth=\"424\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"940\" plane=\"far\" depth=\"425\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"1010\" plane=\"far\" depth=\"426\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"1080\" plane=\"far\" depth=\"427\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1700\" y=\"940\" plane=\"far\" depth=\"428\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1700\" y=\"1010\" plane=\"far\" depth=\"429\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1700\" y=\"1080\" plane=\"far\" depth=\"430\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1030\" y=\"1150\" plane=\"far\" depth=\"431\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1100\" y=\"1150\" plane=\"far\" depth=\"432\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1170\" y=\"1150\" plane=\"far\" depth=\"433\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1240\" y=\"1150\" plane=\"far\" depth=\"434\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1310\" y=\"1150\" plane=\"far\" depth=\"435\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1380\" y=\"1150\" plane=\"far\" depth=\"436\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1450\" y=\"1150\" plane=\"far\" depth=\"437\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1520\" y=\"1150\" plane=\"far\" depth=\"438\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1590\" y=\"1150\" plane=\"far\" depth=\"439\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1660\" y=\"1150\" plane=\"far\" depth=\"440\"/>";
str = str + "<object tile=\"house_med4\" x=\"1440\" y=\"620\" plane=\"far\" depth=\"441\"/>";
str = str + "<object tile=\"house_med4\" x=\"1190\" y=\"620\" plane=\"far\" depth=\"442\"/>";
str = str + "<object tile=\"house_med2\" x=\"1530\" y=\"1020\" plane=\"far\" depth=\"443\"/>";
str = str + "<object tile=\"house_med1\" x=\"1310\" y=\"1050\" plane=\"far\" depth=\"444\"/>";
str = str + "<object tile=\"house_big1\" x=\"1560\" y=\"580\" plane=\"far\" depth=\"445\"/>";
str = str + "<object tile=\"house_big1\" x=\"1290\" y=\"580\" plane=\"far\" depth=\"446\"/>";
str = str + "<object tile=\"house_big1\" x=\"1050\" y=\"580\" plane=\"far\" depth=\"447\"/>";
str = str + "<object tile=\"house_big1\" x=\"1390\" y=\"990\" plane=\"far\" depth=\"448\"/>";
str = str + "<object tile=\"house_med3\" x=\"1060\" y=\"700\" plane=\"far\" depth=\"449\"/>";
str = str + "<object tile=\"house_big1\" x=\"1050\" y=\"800\" plane=\"far\" depth=\"450\"/>";
str = str + "<object tile=\"house_med3\" x=\"1060\" y=\"930\" plane=\"far\" depth=\"451\"/>";
str = str + "<object tile=\"house_med4\" x=\"1060\" y=\"1030\" plane=\"far\" depth=\"452\"/>";
str = str + "<object tile=\"house_big1\" x=\"1160\" y=\"990\" plane=\"far\" depth=\"453\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3520\" y=\"1010\" plane=\"far\" depth=\"454\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3290\" y=\"1010\" plane=\"far\" depth=\"455\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3220\" y=\"1010\" plane=\"far\" depth=\"456\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3150\" y=\"1010\" plane=\"far\" depth=\"457\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3080\" y=\"1010\" plane=\"far\" depth=\"458\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3010\" y=\"1010\" plane=\"far\" depth=\"459\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2940\" y=\"1010\" plane=\"far\" depth=\"460\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2870\" y=\"1010\" plane=\"far\" depth=\"461\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2800\" y=\"1010\" plane=\"far\" depth=\"462\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3600\" y=\"1010\" plane=\"far\" depth=\"463\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3670\" y=\"1010\" plane=\"far\" depth=\"464\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3710\" y=\"1030\" plane=\"far\" depth=\"465\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3710\" y=\"1100\" plane=\"far\" depth=\"466\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3710\" y=\"1170\" plane=\"far\" depth=\"467\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3710\" y=\"1240\" plane=\"far\" depth=\"468\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3710\" y=\"1310\" plane=\"far\" depth=\"469\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3050\" y=\"1440\" plane=\"far\" depth=\"470\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3710\" y=\"1380\" plane=\"far\" depth=\"471\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2730\" y=\"1010\" plane=\"far\" depth=\"472\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1030\" plane=\"far\" depth=\"473\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1100\" plane=\"far\" depth=\"474\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1170\" plane=\"far\" depth=\"475\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1240\" plane=\"far\" depth=\"476\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1310\" plane=\"far\" depth=\"477\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1380\" plane=\"far\" depth=\"478\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1450\" plane=\"far\" depth=\"479\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2730\" y=\"1510\" plane=\"far\" depth=\"480\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2800\" y=\"1510\" plane=\"far\" depth=\"481\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2870\" y=\"1510\" plane=\"far\" depth=\"482\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2940\" y=\"1510\" plane=\"far\" depth=\"483\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3010\" y=\"1510\" plane=\"far\" depth=\"484\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3670\" y=\"1440\" plane=\"far\" depth=\"485\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3600\" y=\"1440\" plane=\"far\" depth=\"486\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3530\" y=\"1440\" plane=\"far\" depth=\"487\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3460\" y=\"1440\" plane=\"far\" depth=\"488\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3390\" y=\"1440\" plane=\"far\" depth=\"489\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3320\" y=\"1440\" plane=\"far\" depth=\"490\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3250\" y=\"1440\" plane=\"far\" depth=\"491\"/>";
str = str + "<object tile=\"house_big1\" x=\"3560\" y=\"1030\" plane=\"far\" depth=\"492\"/>";
str = str + "<object tile=\"house_med5\" x=\"3600\" y=\"1160\" plane=\"far\" depth=\"493\"/>";
str = str + "<object tile=\"house_sm2\" x=\"3340\" y=\"1350\" plane=\"far\" depth=\"494\"/>";
str = str + "<object tile=\"house_med4\" x=\"3390\" y=\"1300\" plane=\"far\" depth=\"495\"/>";
str = str + "<object tile=\"house_med1\" x=\"3250\" y=\"1330\" plane=\"far\" depth=\"496\"/>";
str = str + "<object tile=\"house_big1\" x=\"3500\" y=\"1260\" plane=\"far\" depth=\"497\"/>";
str = str + "<object tile=\"house_med4\" x=\"3070\" y=\"1050\" plane=\"far\" depth=\"498\"/>";
str = str + "<object tile=\"house_big1\" x=\"3170\" y=\"1010\" plane=\"far\" depth=\"499\"/>";
str = str + "<object tile=\"house_big2\" x=\"2850\" y=\"1030\" plane=\"far\" depth=\"500\"/>";
str = str + "<object tile=\"house_med3\" x=\"2760\" y=\"1060\" plane=\"far\" depth=\"501\"/>";
str = str + "<object tile=\"house_big1\" x=\"2750\" y=\"1150\" plane=\"far\" depth=\"502\"/>";
str = str + "<object tile=\"house_big1\" x=\"2900\" y=\"1360\" plane=\"far\" depth=\"503\"/>";
str = str + "<object tile=\"house_sm2\" x=\"2850\" y=\"1440\" plane=\"far\" depth=\"504\"/>";
str = str + "<object tile=\"house_med2\" x=\"2750\" y=\"1250\" plane=\"far\" depth=\"505\"/>";
str = str + "<object tile=\"house_med3\" x=\"2750\" y=\"1350\" plane=\"far\" depth=\"506\"/>";
str = str + "<object tile=\"hangar2\" x=\"2420\" y=\"1970\" plane=\"far\" depth=\"507\"/>";
str = str + "<object tile=\"hangar2\" x=\"2420\" y=\"1830\" plane=\"far\" depth=\"508\"/>";
str = str + "<object tile=\"oil_punp2\" x=\"2100\" y=\"2100\" plane=\"far\" depth=\"509\"/>";
str = str + "<object tile=\"oil_punp2\" x=\"2100\" y=\"1980\" plane=\"far\" depth=\"510\"/>";
str = str + "<object tile=\"oil_barrel2\" x=\"2220\" y=\"2050\" plane=\"far\" depth=\"511\"/>";
str = str + "<object tile=\"oil_barrel2\" x=\"2220\" y=\"1920\" plane=\"far\" depth=\"512\"/>";
str = str + "<object tile=\"oil_pump1\" x=\"2440\" y=\"2140\" plane=\"far\" depth=\"513\"/>";
str = str + "<object tile=\"oil_barrel2\" x=\"2450\" y=\"2080\" plane=\"far\" depth=\"514\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3480\" y=\"1930\" plane=\"far\" depth=\"515\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3480\" y=\"2000\" plane=\"far\" depth=\"516\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3490\" y=\"2060\" plane=\"far\" depth=\"517\"/>";
str = str + "<object tile=\"house_med4\" x=\"3520\" y=\"2070\" plane=\"far\" depth=\"518\"/>";
str = str + "<object tile=\"PZRK\" x=\"2780\" y=\"1710\" plane=\"main\" depth=\"519\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"21\" deltay=\"-102\" mtype=\"lin\" steps=\"52\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-21\" deltay=\"102\" mtype=\"lin\" steps=\"52\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2960\" y=\"1810\" plane=\"main\" depth=\"520\"/>";
str = str + "<object tile=\"PZRK\" x=\"3060\" y=\"1590\" plane=\"main\" depth=\"521\"/>";
str = str + "<object tile=\"PZRK\" x=\"2650\" y=\"1940\" plane=\"main\" depth=\"522\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-22\" deltay=\"-54\" mtype=\"lin\" steps=\"29\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"73\" deltay=\"92\" mtype=\"lin\" steps=\"58\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-51\" deltay=\"-38\" mtype=\"lin\" steps=\"31\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"2860\" y=\"1930\" plane=\"main\" depth=\"523\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"100\" deltay=\"0\" mtype=\"lin\" steps=\"50\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-100\" deltay=\"0\" mtype=\"lin\" steps=\"50\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"3000\" y=\"1280\" plane=\"main\" depth=\"524\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"113\" deltay=\"-33\" mtype=\"lin\" steps=\"58\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"112\" deltay=\"5\" mtype=\"lin\" steps=\"56\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-21\" deltay=\"71\" mtype=\"lin\" steps=\"37\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-204\" deltay=\"-43\" mtype=\"lin\" steps=\"104\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2800\" y=\"2160\" plane=\"main\" depth=\"525\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"83\" deltay=\"-16\" mtype=\"lin\" steps=\"42\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-63\" deltay=\"-57\" mtype=\"lin\" steps=\"42\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-20\" deltay=\"73\" mtype=\"lin\" steps=\"37\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2290\" y=\"2410\" plane=\"main\" depth=\"526\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1\" deltay=\"80\" mtype=\"lin\" steps=\"40\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"1\" deltay=\"-80\" mtype=\"lin\" steps=\"40\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"3260\" y=\"1270\" plane=\"main\" depth=\"527\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"100\" deltay=\"-67\" mtype=\"lin\" steps=\"60\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-11\" deltay=\"90\" mtype=\"lin\" steps=\"45\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-89\" deltay=\"-23\" mtype=\"lin\" steps=\"45\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2600\" y=\"2300\" plane=\"main\" depth=\"528\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"48\" deltay=\"-53\" mtype=\"lin\" steps=\"35\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"28\" deltay=\"58\" mtype=\"lin\" steps=\"32\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-76\" deltay=\"-5\" mtype=\"lin\" steps=\"38\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"3120\" y=\"2100\" plane=\"main\" depth=\"529\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"21\" deltay=\"136\" mtype=\"lin\" steps=\"68\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"66\" deltay=\"-17\" mtype=\"lin\" steps=\"34\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-84\" deltay=\"-20\" mtype=\"lin\" steps=\"43\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-3\" deltay=\"-99\" mtype=\"lin\" steps=\"49\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"3140\" y=\"1850\" plane=\"main\" depth=\"530\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"7\" deltay=\"71\" mtype=\"lin\" steps=\"35\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-7\" deltay=\"-71\" mtype=\"lin\" steps=\"35\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"3450\" y=\"1090\" plane=\"main\" depth=\"531\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"3\" deltay=\"72\" mtype=\"lin\" steps=\"36\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-3\" deltay=\"-72\" mtype=\"lin\" steps=\"36\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"hero1\" x=\"3560\" y=\"610\" plane=\"main\" depth=\"532\"/>";
str = str + "<object tile=\"PZRK\" x=\"990\" y=\"2240\" plane=\"main\" depth=\"533\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"114\" deltay=\"6\" mtype=\"lin\" steps=\"57\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"33\" deltay=\"-179\" mtype=\"lin\" steps=\"91\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"19\" deltay=\"122\" mtype=\"lin\" steps=\"61\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-166\" deltay=\"51\" mtype=\"lin\" steps=\"86\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"900\" y=\"1650\" plane=\"main\" depth=\"534\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"20\" deltay=\"68\" mtype=\"lin\" steps=\"35\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"39\" deltay=\"-50\" mtype=\"lin\" steps=\"31\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-59\" deltay=\"-18\" mtype=\"lin\" steps=\"30\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1680\" y=\"1030\" plane=\"main\" depth=\"535\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-127\" deltay=\"-26\" mtype=\"lin\" steps=\"64\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"65\" deltay=\"-61\" mtype=\"lin\" steps=\"44\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"62\" deltay=\"87\" mtype=\"lin\" steps=\"53\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"930\" y=\"1370\" plane=\"main\" depth=\"536\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"85\" deltay=\"-40\" mtype=\"lin\" steps=\"46\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"60\" deltay=\"96\" mtype=\"lin\" steps=\"56\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"77\" deltay=\"-55\" mtype=\"lin\" steps=\"47\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-222\" deltay=\"-1\" mtype=\"lin\" steps=\"111\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"1410\" y=\"780\" plane=\"main\" depth=\"537\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-212\" deltay=\"-14\" mtype=\"lin\" steps=\"106\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"125\" deltay=\"177\" mtype=\"lin\" steps=\"108\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"87\" deltay=\"-163\" mtype=\"lin\" steps=\"92\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2540\" y=\"2530\" plane=\"main\" depth=\"538\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1\" deltay=\"80\" mtype=\"lin\" steps=\"40\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"1\" deltay=\"-80\" mtype=\"lin\" steps=\"40\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"2150\" y=\"2950\" plane=\"main\" depth=\"539\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-22\" deltay=\"-54\" mtype=\"lin\" steps=\"29\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"73\" deltay=\"92\" mtype=\"lin\" steps=\"58\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-51\" deltay=\"-38\" mtype=\"lin\" steps=\"31\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"2290\" y=\"2540\" plane=\"main\" depth=\"540\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"100\" deltay=\"0\" mtype=\"lin\" steps=\"50\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-100\" deltay=\"0\" mtype=\"lin\" steps=\"50\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2140\" y=\"2770\" plane=\"main\" depth=\"541\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"83\" deltay=\"-16\" mtype=\"lin\" steps=\"42\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-63\" deltay=\"-57\" mtype=\"lin\" steps=\"42\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-20\" deltay=\"73\" mtype=\"lin\" steps=\"37\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"palms3\" x=\"2590\" y=\"2060\" plane=\"nearest\" depth=\"542\"/>";
str = str + "<object tile=\"palms4\" x=\"2580\" y=\"1910\" plane=\"nearest\" depth=\"543\"/>";
str = str + "<object tile=\"palms4\" x=\"2400\" y=\"2180\" plane=\"nearest\" depth=\"544\"/>";
str = str + "<object tile=\"palms5\" x=\"2620\" y=\"2180\" plane=\"nearest\" depth=\"545\"/>";
str = str + "<object tile=\"palms1\" x=\"2640\" y=\"1900\" plane=\"nearest\" depth=\"546\"/>";
str = str + "<object tile=\"palms1\" x=\"2640\" y=\"2270\" plane=\"nearest\" depth=\"547\"/>";
str = str + "<object tile=\"palms4\" x=\"2000\" y=\"2130\" plane=\"nearest\" depth=\"548\"/>";
str = str + "<object tile=\"palms5\" x=\"2110\" y=\"2160\" plane=\"nearest\" depth=\"549\"/>";
str = str + "<object tile=\"palms1\" x=\"2150\" y=\"2380\" plane=\"nearest\" depth=\"550\"/>";
str = str + "<object tile=\"palms1\" x=\"2060\" y=\"2300\" plane=\"nearest\" depth=\"551\"/>";
str = str + "<object tile=\"palms1\" x=\"2060\" y=\"1880\" plane=\"nearest\" depth=\"552\"/>";
str = str + "<object tile=\"palms1\" x=\"2100\" y=\"1870\" plane=\"nearest\" depth=\"553\"/>";
str = str + "<object tile=\"palms1\" x=\"2080\" y=\"1910\" plane=\"nearest\" depth=\"554\"/>";
str = str + "<object tile=\"palms1\" x=\"2140\" y=\"2330\" plane=\"nearest\" depth=\"555\"/>";
str = str + "<object tile=\"palms3\" x=\"2000\" y=\"2010\" plane=\"nearest\" depth=\"556\"/>";
str = str + "<object tile=\"palms5\" x=\"2170\" y=\"1830\" plane=\"nearest\" depth=\"557\"/>";
str = str + "<object tile=\"palms1\" x=\"2170\" y=\"1920\" plane=\"nearest\" depth=\"558\"/>";
str = str + "<object tile=\"palms1\" x=\"3440\" y=\"2360\" plane=\"nearest\" depth=\"559\"/>";
str = str + "<object tile=\"palms1\" x=\"3450\" y=\"2330\" plane=\"nearest\" depth=\"560\"/>";
str = str + "<object tile=\"palms1\" x=\"3450\" y=\"2280\" plane=\"nearest\" depth=\"561\"/>";
str = str + "<object tile=\"palms1\" x=\"3740\" y=\"2330\" plane=\"nearest\" depth=\"562\"/>";
str = str + "<object tile=\"palms3\" x=\"3710\" y=\"2430\" plane=\"nearest\" depth=\"563\"/>";
str = str + "<object tile=\"palms1\" x=\"3550\" y=\"2500\" plane=\"nearest\" depth=\"564\"/>";
str = str + "<object tile=\"palms1\" x=\"3100\" y=\"1880\" plane=\"nearest\" depth=\"565\"/>";
str = str + "<object tile=\"palms5\" x=\"3100\" y=\"1790\" plane=\"nearest\" depth=\"566\"/>";
str = str + "<object tile=\"palms1\" x=\"2730\" y=\"1440\" plane=\"nearest\" depth=\"567\"/>";
str = str + "<object tile=\"palms1\" x=\"2780\" y=\"1450\" plane=\"nearest\" depth=\"568\"/>";
str = str + "<object tile=\"palms4\" x=\"980\" y=\"1800\" plane=\"nearest\" depth=\"569\"/>";
str = str + "<object tile=\"palms5\" x=\"1330\" y=\"2120\" plane=\"nearest\" depth=\"570\"/>";
str = str + "<object tile=\"palms1\" x=\"1390\" y=\"2220\" plane=\"nearest\" depth=\"571\"/>";
str = str + "<object tile=\"palms1\" x=\"1330\" y=\"2220\" plane=\"nearest\" depth=\"572\"/>";
str = str + "<object tile=\"palms1\" x=\"970\" y=\"1930\" plane=\"nearest\" depth=\"573\"/>";
str = str + "<object tile=\"palms3\" x=\"1050\" y=\"2150\" plane=\"nearest\" depth=\"574\"/>";
str = str + "<object tile=\"palms1\" x=\"1020\" y=\"2190\" plane=\"nearest\" depth=\"575\"/>";
str = str + "<object tile=\"palms1\" x=\"970\" y=\"2200\" plane=\"nearest\" depth=\"576\"/>";
str = str + "<object tile=\"palms1\" x=\"1300\" y=\"1900\" plane=\"nearest\" depth=\"577\"/>";
str = str + "<object tile=\"palms5\" x=\"1570\" y=\"3220\" plane=\"nearest\" depth=\"578\"/>";
str = str + "<object tile=\"palms1\" x=\"1640\" y=\"3370\" plane=\"nearest\" depth=\"579\"/>";
str = str + "<object tile=\"palms3\" x=\"1510\" y=\"3290\" plane=\"nearest\" depth=\"580\"/>";
str = str + "<object tile=\"palms3\" x=\"1570\" y=\"960\" plane=\"nearest\" depth=\"581\"/>";
str = str + "<object tile=\"palms1\" x=\"1630\" y=\"1080\" plane=\"nearest\" depth=\"582\"/>";
str = str + "<object tile=\"palms1\" x=\"1660\" y=\"1040\" plane=\"nearest\" depth=\"583\"/>";
str = str + "<object tile=\"palms1\" x=\"1650\" y=\"940\" plane=\"nearest\" depth=\"584\"/>";
str = str + "<object tile=\"palms1\" x=\"1170\" y=\"740\" plane=\"nearest\" depth=\"585\"/>";
str = str + "<object tile=\"palms1\" x=\"2980\" y=\"2410\" plane=\"nearest\" depth=\"586\"/>";
str = str + "<object tile=\"palms3\" x=\"2220\" y=\"2910\" plane=\"nearest\" depth=\"587\"/>";
str = str + "<object tile=\"palms3\" x=\"2390\" y=\"2560\" plane=\"nearest\" depth=\"588\"/>";
str = str + "<object tile=\"palms4\" x=\"2400\" y=\"2780\" plane=\"nearest\" depth=\"589\"/>";
str = str + "<object tile=\"palms5\" x=\"2170\" y=\"2610\" plane=\"nearest\" depth=\"590\"/>";
str = str + "<object tile=\"palms5\" x=\"2410\" y=\"2990\" plane=\"nearest\" depth=\"591\"/>";
str = str + "<object tile=\"palms5\" x=\"2150\" y=\"2770\" plane=\"nearest\" depth=\"592\"/>";
str = str + "<object tile=\"palms4\" x=\"2430\" y=\"2690\" plane=\"nearest\" depth=\"593\"/>";
str = str + "<object tile=\"palms1\" x=\"2270\" y=\"2600\" plane=\"nearest\" depth=\"594\"/>";
str = str + "<object tile=\"palms1\" x=\"2170\" y=\"2700\" plane=\"nearest\" depth=\"595\"/>";
str = str + "<object tile=\"palms1\" x=\"2250\" y=\"3040\" plane=\"nearest\" depth=\"596\"/>";
str = str + "<object tile=\"palms1\" x=\"2420\" y=\"2950\" plane=\"nearest\" depth=\"597\"/>";
str = str + "<object tile=\"null_tile\" x=\"4030\" y=\"820\" plane=\"nearest1\" depth=\"598\"/>";
str = str + "<object tile=\"null_tile\" x=\"4030\" y=\"420\" plane=\"nearest1\" depth=\"599\"/>";
str = str + "<object tile=\"null_tile\" x=\"3690\" y=\"20\" plane=\"nearest1\" depth=\"600\"/>";
str = str + "<object tile=\"null_tile\" x=\"940\" y=\"20\" plane=\"nearest1\" depth=\"601\"/>";
str = str + "<object tile=\"null_tile\" x=\"390\" y=\"20\" plane=\"nearest1\" depth=\"602\"/>";
str = str + "<object tile=\"null_tile\" x=\"180\" y=\"420\" plane=\"nearest1\" depth=\"603\"/>";
str = str + "<object tile=\"null_tile\" x=\"180\" y=\"1620\" plane=\"nearest1\" depth=\"604\"/>";
str = str + "<object tile=\"null_tile\" x=\"180\" y=\"2020\" plane=\"nearest1\" depth=\"605\"/>";
str = str + "<object tile=\"null_tile\" x=\"180\" y=\"2420\" plane=\"nearest1\" depth=\"606\"/>";
str = str + "<object tile=\"null_tile\" x=\"180\" y=\"2820\" plane=\"nearest1\" depth=\"607\"/>";
str = str + "<object tile=\"null_tile\" x=\"180\" y=\"3220\" plane=\"nearest1\" depth=\"608\"/>";
str = str + "<object tile=\"null_tile\" x=\"180\" y=\"3620\" plane=\"nearest1\" depth=\"609\"/>";
str = str + "<object tile=\"null_tile\" x=\"730\" y=\"3620\" plane=\"nearest1\" depth=\"610\"/>";
str = str + "<object tile=\"null_tile\" x=\"180\" y=\"820\" plane=\"nearest1\" depth=\"611\"/>";
str = str + "<object tile=\"null_tile\" x=\"180\" y=\"1220\" plane=\"nearest1\" depth=\"612\"/>";
str = str + "<object tile=\"null_tile\" x=\"2040\" y=\"20\" plane=\"nearest1\" depth=\"613\"/>";
str = str + "<object tile=\"null_tile\" x=\"1490\" y=\"20\" plane=\"nearest1\" depth=\"614\"/>";
str = str + "<object tile=\"null_tile\" x=\"3140\" y=\"20\" plane=\"nearest1\" depth=\"615\"/>";
str = str + "<object tile=\"null_tile\" x=\"2590\" y=\"20\" plane=\"nearest1\" depth=\"616\"/>";
str = str + "<object tile=\"endoflevel\" x=\"1360\" y=\"3280\" plane=\"nearest1\" depth=\"617\"/>";
str = str + "<object tile=\"null_tile\" x=\"4030\" y=\"2820\" plane=\"nearest1\" depth=\"618\"/>";
str = str + "<object tile=\"null_tile\" x=\"4030\" y=\"2420\" plane=\"nearest1\" depth=\"619\"/>";
str = str + "<object tile=\"null_tile\" x=\"4030\" y=\"2020\" plane=\"nearest1\" depth=\"620\"/>";
str = str + "<object tile=\"null_tile\" x=\"4030\" y=\"1220\" plane=\"nearest1\" depth=\"621\"/>";
str = str + "<object tile=\"null_tile\" x=\"4030\" y=\"1620\" plane=\"nearest1\" depth=\"622\"/>";
str = str + "<object tile=\"null_tile\" x=\"4030\" y=\"3220\" plane=\"nearest1\" depth=\"623\"/>";
str = str + "<object tile=\"null_tile\" x=\"4030\" y=\"3620\" plane=\"nearest1\" depth=\"624\"/>";
str = str + "<object tile=\"null_tile\" x=\"2930\" y=\"3620\" plane=\"nearest1\" depth=\"625\"/>";
str = str + "<object tile=\"null_tile\" x=\"1280\" y=\"3620\" plane=\"nearest1\" depth=\"626\"/>";
str = str + "<object tile=\"null_tile\" x=\"1830\" y=\"3620\" plane=\"nearest1\" depth=\"627\"/>";
str = str + "<object tile=\"null_tile\" x=\"2380\" y=\"3620\" plane=\"nearest1\" depth=\"628\"/>";
str = str + "<object tile=\"null_tile\" x=\"3480\" y=\"3620\" plane=\"nearest1\" depth=\"629\"/>";
str = str + "</array>";
str = str + "</object>";
str = str + "<object name=\"level_2\">";
str = str + "<var name=\"comment\" >The residents who have been stranded in the fighting have decided to evacuate to a refugee camp stationed near your humanitarian mission office. But they are also afraid of coming under terrorist attack from the sectarians. ";
str = str + "- top-priority assignment: you must ensure the security of six trucks loaded with refugees.";
str = str + "- secondary assignment: destroy the gas tank trucks you encounter along the route taken by the refugees.";
str = str + "Oh, damn it! The sectarians are attacking our camp.";
str = str + "- secondary assignment: repel the attack on the humanitarian mission office.</var>";
str = str + "<array name=\"missions\">";
str = str + "<object group=\"miss_1\" arrow=\"arr_1\" missionType=\"kill\" active=\"1\" timer=\"1500\" winAmount=\"12\" looseAmount=\"1\" actionTrue=\"score 1000,startClip ScompletedMission, activate miss_2, activate miss_2_1\" actionFalse=\"score 0,startClip SfailedMission, loose\"/>";
str = str + "<object group=\"miss_2\" arrow=\"arr_2\" missionType=\"survive\" active=\"0\" timer=\"2000\" winAmount=\"6\" looseAmount=\"1\" actionTrue=\"score 1000,startClip completedMission, win\" actionFalse=\"score 0,startClip failedMission, loose\"/>";
str = str + "<object group=\"miss_2_1\" missionType=\"kill\" dontCount=\"1\" active=\"0\" timer=\"2000\" winAmount=\"12\" looseAmount=\"2\" actionTrue=\"score 1000,startClip ScompletedMission\" actionFalse=\"score 0,startClip SfailedMission\"/>";
str = str + "</array>";
str = str + "<array name=\"level\">";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1480\" plane=\"far2\" depth=\"1\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1480\" plane=\"far2\" depth=\"2\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1380\" plane=\"far2\" depth=\"3\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1380\" plane=\"far2\" depth=\"4\"/>";
str = str + "<object tile=\"road_u2\" x=\"1880\" y=\"780\" plane=\"far2\" depth=\"5\"/>";
str = str + "<object tile=\"road_u_l\" x=\"2280\" y=\"1580\" plane=\"far2\" depth=\"6\"/>";
str = str + "<object tile=\"road_u2\" x=\"1780\" y=\"780\" plane=\"far2\" depth=\"7\"/>";
str = str + "<object tile=\"road_d1\" x=\"2080\" y=\"880\" plane=\"far2\" depth=\"8\"/>";
str = str + "<object tile=\"road_u2\" x=\"2080\" y=\"780\" plane=\"far2\" depth=\"9\"/>";
str = str + "<object tile=\"road_u2\" x=\"2180\" y=\"780\" plane=\"far2\" depth=\"10\"/>";
str = str + "<object tile=\"road_d1\" x=\"2580\" y=\"1680\" plane=\"far2\" depth=\"11\"/>";
str = str + "<object tile=\"road_u2\" x=\"2580\" y=\"1580\" plane=\"far2\" depth=\"12\"/>";
str = str + "<object tile=\"road_d_r\" x=\"2380\" y=\"1680\" plane=\"far2\" depth=\"13\"/>";
str = str + "<object tile=\"road_u_r\" x=\"2380\" y=\"1580\" plane=\"far2\" depth=\"14\"/>";
str = str + "<object tile=\"road_d1\" x=\"2480\" y=\"1680\" plane=\"far2\" depth=\"15\"/>";
str = str + "<object tile=\"road_u2\" x=\"2480\" y=\"1580\" plane=\"far2\" depth=\"16\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1780\" plane=\"far2\" depth=\"17\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1780\" plane=\"far2\" depth=\"18\"/>";
str = str + "<object tile=\"road_d1\" x=\"1980\" y=\"880\" plane=\"far2\" depth=\"19\"/>";
str = str + "<object tile=\"road_u2\" x=\"1980\" y=\"780\" plane=\"far2\" depth=\"20\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1280\" plane=\"far2\" depth=\"21\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1280\" plane=\"far2\" depth=\"22\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1180\" plane=\"far2\" depth=\"23\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1180\" plane=\"far2\" depth=\"24\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1080\" plane=\"far2\" depth=\"25\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1080\" plane=\"far2\" depth=\"26\"/>";
str = str + "<object tile=\"road_d_l\" x=\"2280\" y=\"880\" plane=\"far2\" depth=\"27\"/>";
str = str + "<object tile=\"road_u2\" x=\"2280\" y=\"780\" plane=\"far2\" depth=\"28\"/>";
str = str + "<object tile=\"road_d1\" x=\"2180\" y=\"880\" plane=\"far2\" depth=\"29\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"980\" plane=\"far2\" depth=\"30\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"980\" plane=\"far2\" depth=\"31\"/>";
str = str + "<object tile=\"road_d_l\" x=\"2280\" y=\"1680\" plane=\"far2\" depth=\"32\"/>";
str = str + "<object tile=\"road_d1\" x=\"1880\" y=\"1680\" plane=\"far2\" depth=\"33\"/>";
str = str + "<object tile=\"road_d1\" x=\"1780\" y=\"1680\" plane=\"far2\" depth=\"34\"/>";
str = str + "<object tile=\"road_u2\" x=\"2180\" y=\"1580\" plane=\"far2\" depth=\"35\"/>";
str = str + "<object tile=\"road_d1\" x=\"2180\" y=\"1680\" plane=\"far2\" depth=\"36\"/>";
str = str + "<object tile=\"road_d1\" x=\"2080\" y=\"1680\" plane=\"far2\" depth=\"37\"/>";
str = str + "<object tile=\"road_u2\" x=\"2080\" y=\"1580\" plane=\"far2\" depth=\"38\"/>";
str = str + "<object tile=\"road_u2\" x=\"1980\" y=\"1580\" plane=\"far2\" depth=\"39\"/>";
str = str + "<object tile=\"road_d1\" x=\"1980\" y=\"1680\" plane=\"far2\" depth=\"40\"/>";
str = str + "<object tile=\"road_d1\" x=\"1880\" y=\"880\" plane=\"far2\" depth=\"41\"/>";
str = str + "<object tile=\"road_d1\" x=\"1780\" y=\"880\" plane=\"far2\" depth=\"42\"/>";
str = str + "<object tile=\"road_u2\" x=\"1880\" y=\"1580\" plane=\"far2\" depth=\"43\"/>";
str = str + "<object tile=\"road_u2\" x=\"1780\" y=\"1580\" plane=\"far2\" depth=\"44\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"880\" plane=\"far2\" depth=\"45\"/>";
str = str + "<object tile=\"road_ru\" x=\"2380\" y=\"780\" plane=\"far2\" depth=\"46\"/>";
str = str + "<object tile=\"road_ld\" x=\"1680\" y=\"880\" plane=\"far2\" depth=\"47\"/>";
str = str + "<object tile=\"road_lu\" x=\"1680\" y=\"780\" plane=\"far2\" depth=\"48\"/>";
str = str + "<object tile=\"road_d1\" x=\"1680\" y=\"1680\" plane=\"far2\" depth=\"49\"/>";
str = str + "<object tile=\"road_u2\" x=\"1680\" y=\"1580\" plane=\"far2\" depth=\"50\"/>";
str = str + "<object tile=\"road_u2\" x=\"1580\" y=\"1580\" plane=\"far2\" depth=\"51\"/>";
str = str + "<object tile=\"road_d1\" x=\"1580\" y=\"1680\" plane=\"far2\" depth=\"52\"/>";
str = str + "<object tile=\"road_d1\" x=\"1480\" y=\"1680\" plane=\"far2\" depth=\"53\"/>";
str = str + "<object tile=\"road_u2\" x=\"1480\" y=\"1580\" plane=\"far2\" depth=\"54\"/>";
str = str + "<object tile=\"road_u2\" x=\"1380\" y=\"1580\" plane=\"far2\" depth=\"55\"/>";
str = str + "<object tile=\"road_d1\" x=\"1380\" y=\"1680\" plane=\"far2\" depth=\"56\"/>";
str = str + "<object tile=\"road_d1\" x=\"1280\" y=\"1680\" plane=\"far2\" depth=\"57\"/>";
str = str + "<object tile=\"road_u2\" x=\"1280\" y=\"1580\" plane=\"far2\" depth=\"58\"/>";
str = str + "<object tile=\"road_u2\" x=\"1180\" y=\"1580\" plane=\"far2\" depth=\"59\"/>";
str = str + "<object tile=\"road_d_r\" x=\"1180\" y=\"1680\" plane=\"far2\" depth=\"60\"/>";
str = str + "<object tile=\"road_lu\" x=\"1080\" y=\"1580\" plane=\"far2\" depth=\"61\"/>";
str = str + "<object tile=\"road_l3\" x=\"1080\" y=\"1680\" plane=\"far2\" depth=\"62\"/>";
str = str + "<object tile=\"road_ld\" x=\"1080\" y=\"1780\" plane=\"far2\" depth=\"63\"/>";
str = str + "<object tile=\"road_rd\" x=\"1180\" y=\"1780\" plane=\"far2\" depth=\"64\"/>";
str = str + "<object tile=\"road_d1\" x=\"2680\" y=\"1680\" plane=\"far2\" depth=\"65\"/>";
str = str + "<object tile=\"road_u2\" x=\"2680\" y=\"1580\" plane=\"far2\" depth=\"66\"/>";
str = str + "<object tile=\"road_d1\" x=\"2780\" y=\"1680\" plane=\"far2\" depth=\"67\"/>";
str = str + "<object tile=\"road_u2\" x=\"2780\" y=\"1580\" plane=\"far2\" depth=\"68\"/>";
str = str + "<object tile=\"road_d1\" x=\"2880\" y=\"1680\" plane=\"far2\" depth=\"69\"/>";
str = str + "<object tile=\"road_u2\" x=\"2880\" y=\"1580\" plane=\"far2\" depth=\"70\"/>";
str = str + "<object tile=\"road_d1\" x=\"2980\" y=\"1680\" plane=\"far2\" depth=\"71\"/>";
str = str + "<object tile=\"road_u2\" x=\"2980\" y=\"1580\" plane=\"far2\" depth=\"72\"/>";
str = str + "<object tile=\"road_d1\" x=\"3080\" y=\"1680\" plane=\"far2\" depth=\"73\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3080\" y=\"1580\" plane=\"far2\" depth=\"74\"/>";
str = str + "<object tile=\"road_rd\" x=\"3180\" y=\"1680\" plane=\"far2\" depth=\"75\"/>";
str = str + "<object tile=\"road_r1\" x=\"3180\" y=\"1580\" plane=\"far2\" depth=\"76\"/>";
str = str + "<object tile=\"road_l3\" x=\"3080\" y=\"1480\" plane=\"far2\" depth=\"77\"/>";
str = str + "<object tile=\"road_r1\" x=\"3180\" y=\"1480\" plane=\"far2\" depth=\"78\"/>";
str = str + "<object tile=\"road_ru\" x=\"3180\" y=\"1380\" plane=\"far2\" depth=\"79\"/>";
str = str + "<object tile=\"road_lu\" x=\"3080\" y=\"1380\" plane=\"far2\" depth=\"80\"/>";
str = str + "<object tile=\"road_rd\" x=\"3460\" y=\"970\" plane=\"far2\" depth=\"81\"/>";
str = str + "<object tile=\"road_ld\" x=\"3360\" y=\"970\" plane=\"far2\" depth=\"82\"/>";
str = str + "<object tile=\"road_l3\" x=\"3360\" y=\"870\" plane=\"far2\" depth=\"83\"/>";
str = str + "<object tile=\"road_d_r\" x=\"3460\" y=\"870\" plane=\"far2\" depth=\"84\"/>";
str = str + "<object tile=\"road_lu\" x=\"3360\" y=\"770\" plane=\"far2\" depth=\"85\"/>";
str = str + "<object tile=\"road_u2\" x=\"3460\" y=\"770\" plane=\"far2\" depth=\"86\"/>";
str = str + "<object tile=\"road_d1\" x=\"3560\" y=\"870\" plane=\"far2\" depth=\"87\"/>";
str = str + "<object tile=\"road_u2\" x=\"3560\" y=\"770\" plane=\"far2\" depth=\"88\"/>";
str = str + "<object tile=\"road_d1\" x=\"3660\" y=\"870\" plane=\"far2\" depth=\"89\"/>";
str = str + "<object tile=\"road_rd\" x=\"3760\" y=\"860\" plane=\"far2\" depth=\"90\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3660\" y=\"770\" plane=\"far2\" depth=\"91\"/>";
str = str + "<object tile=\"road_r1\" x=\"3760\" y=\"770\" plane=\"far2\" depth=\"92\"/>";
str = str + "<object tile=\"road_r1\" x=\"3760\" y=\"670\" plane=\"far2\" depth=\"93\"/>";
str = str + "<object tile=\"road_l3\" x=\"3660\" y=\"670\" plane=\"far2\" depth=\"94\"/>";
str = str + "<object tile=\"road_l3\" x=\"3660\" y=\"570\" plane=\"far2\" depth=\"95\"/>";
str = str + "<object tile=\"road_r1\" x=\"3760\" y=\"570\" plane=\"far2\" depth=\"96\"/>";
str = str + "<object tile=\"road_l3\" x=\"3660\" y=\"470\" plane=\"far2\" depth=\"97\"/>";
str = str + "<object tile=\"road_r1\" x=\"3760\" y=\"470\" plane=\"far2\" depth=\"98\"/>";
str = str + "<object tile=\"road_r1\" x=\"3760\" y=\"370\" plane=\"far2\" depth=\"99\"/>";
str = str + "<object tile=\"road_l3\" x=\"3660\" y=\"370\" plane=\"far2\" depth=\"100\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1880\" plane=\"far2\" depth=\"101\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1880\" plane=\"far2\" depth=\"102\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1980\" plane=\"far2\" depth=\"103\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1980\" plane=\"far2\" depth=\"104\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2080\" plane=\"far2\" depth=\"105\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2080\" plane=\"far2\" depth=\"106\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2180\" plane=\"far2\" depth=\"107\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2180\" plane=\"far2\" depth=\"108\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2280\" plane=\"far2\" depth=\"109\"/>";
str = str + "<object tile=\"road_u_r\" x=\"2380\" y=\"2280\" plane=\"far2\" depth=\"110\"/>";
str = str + "<object tile=\"road_d_r\" x=\"2380\" y=\"2380\" plane=\"far2\" depth=\"111\"/>";
str = str + "<object tile=\"road_u2\" x=\"2480\" y=\"2280\" plane=\"far2\" depth=\"112\"/>";
str = str + "<object tile=\"road_d1\" x=\"2480\" y=\"2380\" plane=\"far2\" depth=\"113\"/>";
str = str + "<object tile=\"road_d1\" x=\"2580\" y=\"2380\" plane=\"far2\" depth=\"114\"/>";
str = str + "<object tile=\"road_u2\" x=\"2580\" y=\"2280\" plane=\"far2\" depth=\"115\"/>";
str = str + "<object tile=\"road_u2\" x=\"2680\" y=\"2280\" plane=\"far2\" depth=\"116\"/>";
str = str + "<object tile=\"road_d1\" x=\"2680\" y=\"2380\" plane=\"far2\" depth=\"117\"/>";
str = str + "<object tile=\"road_d1\" x=\"2780\" y=\"2380\" plane=\"far2\" depth=\"118\"/>";
str = str + "<object tile=\"road_u2\" x=\"2780\" y=\"2280\" plane=\"far2\" depth=\"119\"/>";
str = str + "<object tile=\"road_d1\" x=\"2880\" y=\"2380\" plane=\"far2\" depth=\"120\"/>";
str = str + "<object tile=\"road_u2\" x=\"2880\" y=\"2280\" plane=\"far2\" depth=\"121\"/>";
str = str + "<object tile=\"road_d1\" x=\"2980\" y=\"2380\" plane=\"far2\" depth=\"122\"/>";
str = str + "<object tile=\"road_u2\" x=\"2980\" y=\"2280\" plane=\"far2\" depth=\"123\"/>";
str = str + "<object tile=\"road_d1\" x=\"3080\" y=\"2380\" plane=\"far2\" depth=\"124\"/>";
str = str + "<object tile=\"road_u2\" x=\"3080\" y=\"2280\" plane=\"far2\" depth=\"125\"/>";
str = str + "<object tile=\"road_d1\" x=\"3180\" y=\"2380\" plane=\"far2\" depth=\"126\"/>";
str = str + "<object tile=\"road_u2\" x=\"3180\" y=\"2280\" plane=\"far2\" depth=\"127\"/>";
str = str + "<object tile=\"road_d1\" x=\"3280\" y=\"2380\" plane=\"far2\" depth=\"128\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3280\" y=\"2280\" plane=\"far2\" depth=\"129\"/>";
str = str + "<object tile=\"road_rd\" x=\"3380\" y=\"2380\" plane=\"far2\" depth=\"130\"/>";
str = str + "<object tile=\"road_r1\" x=\"3380\" y=\"2280\" plane=\"far2\" depth=\"131\"/>";
str = str + "<object tile=\"road_ru\" x=\"3380\" y=\"2180\" plane=\"far2\" depth=\"132\"/>";
str = str + "<object tile=\"road_lu\" x=\"3280\" y=\"2180\" plane=\"far2\" depth=\"133\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2380\" plane=\"far2\" depth=\"134\"/>";
str = str + "<object tile=\"road_u_l\" x=\"2280\" y=\"2480\" plane=\"far2\" depth=\"135\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2480\" plane=\"far2\" depth=\"136\"/>";
str = str + "<object tile=\"road_d_l\" x=\"2280\" y=\"2580\" plane=\"far2\" depth=\"137\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2580\" plane=\"far2\" depth=\"138\"/>";
str = str + "<object tile=\"road_d1\" x=\"2180\" y=\"2580\" plane=\"far2\" depth=\"139\"/>";
str = str + "<object tile=\"road_u2\" x=\"2180\" y=\"2480\" plane=\"far2\" depth=\"140\"/>";
str = str + "<object tile=\"road_u2\" x=\"2080\" y=\"2480\" plane=\"far2\" depth=\"141\"/>";
str = str + "<object tile=\"road_u2\" x=\"1980\" y=\"2480\" plane=\"far2\" depth=\"142\"/>";
str = str + "<object tile=\"road_u2\" x=\"1880\" y=\"2480\" plane=\"far2\" depth=\"143\"/>";
str = str + "<object tile=\"road_u2\" x=\"1780\" y=\"2480\" plane=\"far2\" depth=\"144\"/>";
str = str + "<object tile=\"road_u2\" x=\"1680\" y=\"2480\" plane=\"far2\" depth=\"145\"/>";
str = str + "<object tile=\"road_u2\" x=\"1580\" y=\"2480\" plane=\"far2\" depth=\"146\"/>";
str = str + "<object tile=\"road_u2\" x=\"1480\" y=\"2480\" plane=\"far2\" depth=\"147\"/>";
str = str + "<object tile=\"road_l3\" x=\"1380\" y=\"2580\" plane=\"far2\" depth=\"148\"/>";
str = str + "<object tile=\"road_l3\" x=\"1380\" y=\"2680\" plane=\"far2\" depth=\"149\"/>";
str = str + "<object tile=\"road_l3\" x=\"1380\" y=\"2780\" plane=\"far2\" depth=\"150\"/>";
str = str + "<object tile=\"road_ld\" x=\"1380\" y=\"2880\" plane=\"far2\" depth=\"151\"/>";
str = str + "<object tile=\"road_rd\" x=\"1480\" y=\"2880\" plane=\"far2\" depth=\"152\"/>";
str = str + "<object tile=\"road_r1\" x=\"1480\" y=\"2780\" plane=\"far2\" depth=\"153\"/>";
str = str + "<object tile=\"road_r1\" x=\"1480\" y=\"2680\" plane=\"far2\" depth=\"154\"/>";
str = str + "<object tile=\"road_d_r\" x=\"1480\" y=\"2580\" plane=\"far2\" depth=\"155\"/>";
str = str + "<object tile=\"road_lu\" x=\"1380\" y=\"2480\" plane=\"far2\" depth=\"156\"/>";
str = str + "<object tile=\"road_d1\" x=\"1580\" y=\"2580\" plane=\"far2\" depth=\"157\"/>";
str = str + "<object tile=\"road_d1\" x=\"1680\" y=\"2580\" plane=\"far2\" depth=\"158\"/>";
str = str + "<object tile=\"road_d1\" x=\"1780\" y=\"2580\" plane=\"far2\" depth=\"159\"/>";
str = str + "<object tile=\"road_d1\" x=\"1880\" y=\"2580\" plane=\"far2\" depth=\"160\"/>";
str = str + "<object tile=\"road_d1\" x=\"1980\" y=\"2580\" plane=\"far2\" depth=\"161\"/>";
str = str + "<object tile=\"road_d1\" x=\"2080\" y=\"2580\" plane=\"far2\" depth=\"162\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2680\" plane=\"far2\" depth=\"163\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2680\" plane=\"far2\" depth=\"164\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2780\" plane=\"far2\" depth=\"165\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2880\" plane=\"far2\" depth=\"166\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2980\" plane=\"far2\" depth=\"167\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"3080\" plane=\"far2\" depth=\"168\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"3180\" plane=\"far2\" depth=\"169\"/>";
str = str + "<object tile=\"road_u_r\" x=\"2380\" y=\"3280\" plane=\"far2\" depth=\"170\"/>";
str = str + "<object tile=\"road_u2\" x=\"2480\" y=\"3280\" plane=\"far2\" depth=\"171\"/>";
str = str + "<object tile=\"road_u2\" x=\"2580\" y=\"3280\" plane=\"far2\" depth=\"172\"/>";
str = str + "<object tile=\"road_u2\" x=\"2680\" y=\"3280\" plane=\"far2\" depth=\"173\"/>";
str = str + "<object tile=\"road_ru\" x=\"2780\" y=\"3280\" plane=\"far2\" depth=\"174\"/>";
str = str + "<object tile=\"road_rd\" x=\"2780\" y=\"3380\" plane=\"far2\" depth=\"175\"/>";
str = str + "<object tile=\"road_d1\" x=\"2680\" y=\"3380\" plane=\"far2\" depth=\"176\"/>";
str = str + "<object tile=\"road_d1\" x=\"2580\" y=\"3380\" plane=\"far2\" depth=\"177\"/>";
str = str + "<object tile=\"road_d1\" x=\"2480\" y=\"3380\" plane=\"far2\" depth=\"178\"/>";
str = str + "<object tile=\"road_d1\" x=\"2380\" y=\"3380\" plane=\"far2\" depth=\"179\"/>";
str = str + "<object tile=\"road_ld\" x=\"2280\" y=\"3380\" plane=\"far2\" depth=\"180\"/>";
str = str + "<object tile=\"road_d_l\" x=\"2280\" y=\"3280\" plane=\"far2\" depth=\"181\"/>";
str = str + "<object tile=\"road_u_l\" x=\"2280\" y=\"3180\" plane=\"far2\" depth=\"182\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"3080\" plane=\"far2\" depth=\"183\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2980\" plane=\"far2\" depth=\"184\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2880\" plane=\"far2\" depth=\"185\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2780\" plane=\"far2\" depth=\"186\"/>";
str = str + "<object tile=\"road_d1\" x=\"2180\" y=\"3280\" plane=\"far2\" depth=\"187\"/>";
str = str + "<object tile=\"road_u2\" x=\"2180\" y=\"3180\" plane=\"far2\" depth=\"188\"/>";
str = str + "<object tile=\"road_d1\" x=\"2080\" y=\"3280\" plane=\"far2\" depth=\"189\"/>";
str = str + "<object tile=\"road_u2\" x=\"2080\" y=\"3180\" plane=\"far2\" depth=\"190\"/>";
str = str + "<object tile=\"road_d1\" x=\"1980\" y=\"3280\" plane=\"far2\" depth=\"191\"/>";
str = str + "<object tile=\"road_u2\" x=\"1980\" y=\"3180\" plane=\"far2\" depth=\"192\"/>";
str = str + "<object tile=\"road_u2\" x=\"1880\" y=\"3180\" plane=\"far2\" depth=\"193\"/>";
str = str + "<object tile=\"road_d1\" x=\"1880\" y=\"3280\" plane=\"far2\" depth=\"194\"/>";
str = str + "<object tile=\"road_ld\" x=\"1780\" y=\"3280\" plane=\"far2\" depth=\"195\"/>";
str = str + "<object tile=\"road_lu\" x=\"1780\" y=\"3180\" plane=\"far2\" depth=\"196\"/>";
str = str + "<object tile=\"house_med1\" x=\"1710\" y=\"3080\" plane=\"far\" depth=\"197\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1340\" y=\"3470\" plane=\"far\" depth=\"198\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1410\" y=\"3470\" plane=\"far\" depth=\"199\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1480\" y=\"3470\" plane=\"far\" depth=\"200\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1270\" y=\"2910\" plane=\"far\" depth=\"201\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1340\" y=\"2910\" plane=\"far\" depth=\"202\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1530\" y=\"2910\" plane=\"far\" depth=\"203\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1600\" y=\"2910\" plane=\"far\" depth=\"204\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1670\" y=\"2910\" plane=\"far\" depth=\"205\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1740\" y=\"2910\" plane=\"far\" depth=\"206\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1810\" y=\"2910\" plane=\"far\" depth=\"207\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1850\" y=\"2930\" plane=\"far\" depth=\"208\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1850\" y=\"3000\" plane=\"far\" depth=\"209\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1850\" y=\"3070\" plane=\"far\" depth=\"210\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1740\" y=\"3260\" plane=\"far\" depth=\"211\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1740\" y=\"3330\" plane=\"far\" depth=\"212\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1740\" y=\"3400\" plane=\"far\" depth=\"213\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1550\" y=\"3470\" plane=\"far\" depth=\"214\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1620\" y=\"3470\" plane=\"far\" depth=\"215\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1690\" y=\"3470\" plane=\"far\" depth=\"216\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1520\" y=\"2930\" plane=\"far\" depth=\"217\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1520\" y=\"3000\" plane=\"far\" depth=\"218\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1810\" y=\"3130\" plane=\"far\" depth=\"219\"/>";
str = str + "<object tile=\"oil_barrel1\" x=\"1580\" y=\"2970\" plane=\"far\" depth=\"220\"/>";
str = str + "<object tile=\"oil_barrel1\" x=\"1690\" y=\"2970\" plane=\"far\" depth=\"221\"/>";
str = str + "<object tile=\"tower_guard\" x=\"1790\" y=\"2950\" plane=\"far\" depth=\"222\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"2920\" plane=\"far\" depth=\"223\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"2990\" plane=\"far\" depth=\"224\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"3060\" plane=\"far\" depth=\"225\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"3130\" plane=\"far\" depth=\"226\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"3200\" plane=\"far\" depth=\"227\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"3270\" plane=\"far\" depth=\"228\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"3340\" plane=\"far\" depth=\"229\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"3410\" plane=\"far\" depth=\"230\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1270\" y=\"3470\" plane=\"far\" depth=\"231\"/>";
str = str + "<object tile=\"tower_water\" x=\"1620\" y=\"3290\" plane=\"far\" depth=\"232\"/>";
str = str + "<object tile=\"heliPad\" x=\"1370\" y=\"3270\" plane=\"far\" depth=\"233\"/>";
str = str + "<object tile=\"house_med3\" x=\"1310\" y=\"2950\" plane=\"far\" depth=\"234\"/>";
str = str + "<object tile=\"house_med4\" x=\"1310\" y=\"3050\" plane=\"far\" depth=\"235\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1310\" y=\"3150\" plane=\"far\" depth=\"236\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3420\" plane=\"far\" depth=\"237\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3460\" plane=\"far\" depth=\"238\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3500\" plane=\"far\" depth=\"239\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3100\" plane=\"far\" depth=\"240\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3140\" plane=\"far\" depth=\"241\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3180\" plane=\"far\" depth=\"242\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3220\" plane=\"far\" depth=\"243\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3260\" plane=\"far\" depth=\"244\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2870\" y=\"3530\" plane=\"far\" depth=\"245\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2910\" y=\"3530\" plane=\"far\" depth=\"246\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2950\" y=\"3530\" plane=\"far\" depth=\"247\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2990\" y=\"3530\" plane=\"far\" depth=\"248\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3030\" y=\"3530\" plane=\"far\" depth=\"249\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3070\" y=\"3530\" plane=\"far\" depth=\"250\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3110\" y=\"3530\" plane=\"far\" depth=\"251\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3150\" y=\"3530\" plane=\"far\" depth=\"252\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3190\" y=\"3530\" plane=\"far\" depth=\"253\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3230\" y=\"3530\" plane=\"far\" depth=\"254\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3270\" y=\"3530\" plane=\"far\" depth=\"255\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2870\" y=\"3100\" plane=\"far\" depth=\"256\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2910\" y=\"3100\" plane=\"far\" depth=\"257\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2950\" y=\"3100\" plane=\"far\" depth=\"258\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2990\" y=\"3100\" plane=\"far\" depth=\"259\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3030\" y=\"3100\" plane=\"far\" depth=\"260\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3070\" y=\"3100\" plane=\"far\" depth=\"261\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3110\" y=\"3100\" plane=\"far\" depth=\"262\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3150\" y=\"3100\" plane=\"far\" depth=\"263\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3190\" y=\"3100\" plane=\"far\" depth=\"264\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3230\" y=\"3100\" plane=\"far\" depth=\"265\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3270\" y=\"3100\" plane=\"far\" depth=\"266\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3100\" plane=\"far\" depth=\"267\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3140\" plane=\"far\" depth=\"268\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3180\" plane=\"far\" depth=\"269\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3220\" plane=\"far\" depth=\"270\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3260\" plane=\"far\" depth=\"271\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3300\" plane=\"far\" depth=\"272\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3340\" plane=\"far\" depth=\"273\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3380\" plane=\"far\" depth=\"274\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3420\" plane=\"far\" depth=\"275\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3460\" plane=\"far\" depth=\"276\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3500\" plane=\"far\" depth=\"277\"/>";
str = str + "<object tile=\"tent2\" x=\"3250\" y=\"3490\" plane=\"far\" depth=\"278\"/>";
str = str + "<object tile=\"tent2\" x=\"3250\" y=\"3440\" plane=\"far\" depth=\"279\"/>";
str = str + "<object tile=\"tent2\" x=\"3250\" y=\"3390\" plane=\"far\" depth=\"280\"/>";
str = str + "<object tile=\"tent2\" x=\"3250\" y=\"3340\" plane=\"far\" depth=\"281\"/>";
str = str + "<object tile=\"tent2\" x=\"3160\" y=\"3490\" plane=\"far\" depth=\"282\"/>";
str = str + "<object tile=\"tent2\" x=\"3160\" y=\"3440\" plane=\"far\" depth=\"283\"/>";
str = str + "<object tile=\"tent2\" x=\"3160\" y=\"3390\" plane=\"far\" depth=\"284\"/>";
str = str + "<object tile=\"tent2\" x=\"3160\" y=\"3340\" plane=\"far\" depth=\"285\"/>";
str = str + "<object tile=\"tent1\" x=\"2900\" y=\"3220\" plane=\"far\" depth=\"286\"/>";
str = str + "<object tile=\"tent1\" x=\"2940\" y=\"3220\" plane=\"far\" depth=\"287\"/>";
str = str + "<object tile=\"tent1\" x=\"2980\" y=\"3220\" plane=\"far\" depth=\"288\"/>";
str = str + "<object tile=\"tent1\" x=\"3020\" y=\"3220\" plane=\"far\" depth=\"289\"/>";
str = str + "<object tile=\"tent1\" x=\"2900\" y=\"3130\" plane=\"far\" depth=\"290\"/>";
str = str + "<object tile=\"tent1\" x=\"2940\" y=\"3130\" plane=\"far\" depth=\"291\"/>";
str = str + "<object tile=\"tent1\" x=\"2980\" y=\"3130\" plane=\"far\" depth=\"292\"/>";
str = str + "<object tile=\"tent1\" x=\"3020\" y=\"3130\" plane=\"far\" depth=\"293\"/>";
str = str + "<object tile=\"tent1\" x=\"3250\" y=\"3220\" plane=\"far\" depth=\"294\"/>";
str = str + "<object tile=\"tent1\" x=\"3210\" y=\"3220\" plane=\"far\" depth=\"295\"/>";
str = str + "<object tile=\"tent1\" x=\"3170\" y=\"3220\" plane=\"far\" depth=\"296\"/>";
str = str + "<object tile=\"tent1\" x=\"3130\" y=\"3220\" plane=\"far\" depth=\"297\"/>";
str = str + "<object tile=\"tent1\" x=\"3130\" y=\"3130\" plane=\"far\" depth=\"298\"/>";
str = str + "<object tile=\"tent1\" x=\"3170\" y=\"3130\" plane=\"far\" depth=\"299\"/>";
str = str + "<object tile=\"tent1\" x=\"3210\" y=\"3130\" plane=\"far\" depth=\"300\"/>";
str = str + "<object tile=\"tent1\" x=\"3250\" y=\"3130\" plane=\"far\" depth=\"301\"/>";
str = str + "<object tile=\"tower_water\" x=\"2890\" y=\"3420\" plane=\"far\" depth=\"302\"/>";
str = str + "<object tile=\"house_sm2\" x=\"2960\" y=\"3450\" plane=\"far\" depth=\"303\"/>";
str = str + "<object tile=\"house_big2\" x=\"3250\" y=\"1810\" plane=\"far\" depth=\"304\"/>";
str = str + "<object tile=\"tower_water\" x=\"3230\" y=\"2180\" plane=\"far\" depth=\"305\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3160\" y=\"2270\" plane=\"far\" depth=\"306\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3370\" y=\"1770\" plane=\"far\" depth=\"307\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3300\" y=\"1770\" plane=\"far\" depth=\"308\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3230\" y=\"1770\" plane=\"far\" depth=\"309\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3160\" y=\"1770\" plane=\"far\" depth=\"310\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3090\" y=\"1770\" plane=\"far\" depth=\"311\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"1790\" plane=\"far\" depth=\"312\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"1860\" plane=\"far\" depth=\"313\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"1930\" plane=\"far\" depth=\"314\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"2000\" plane=\"far\" depth=\"315\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"2070\" plane=\"far\" depth=\"316\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"2140\" plane=\"far\" depth=\"317\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"2210\" plane=\"far\" depth=\"318\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3090\" y=\"2270\" plane=\"far\" depth=\"319\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3440\" y=\"1770\" plane=\"far\" depth=\"320\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3480\" y=\"1790\" plane=\"far\" depth=\"321\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3480\" y=\"1860\" plane=\"far\" depth=\"322\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3420\" y=\"2290\" plane=\"far\" depth=\"323\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3420\" y=\"2360\" plane=\"far\" depth=\"324\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3420\" y=\"2430\" plane=\"far\" depth=\"325\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3230\" y=\"2270\" plane=\"far\" depth=\"326\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3630\" y=\"2060\" plane=\"far\" depth=\"327\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3560\" y=\"2060\" plane=\"far\" depth=\"328\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3770\" y=\"2060\" plane=\"far\" depth=\"329\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3700\" y=\"2060\" plane=\"far\" depth=\"330\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3570\" y=\"2570\" plane=\"far\" depth=\"331\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3500\" y=\"2570\" plane=\"far\" depth=\"332\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3420\" y=\"2500\" plane=\"far\" depth=\"333\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3430\" y=\"2570\" plane=\"far\" depth=\"334\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2080\" plane=\"far\" depth=\"335\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2150\" plane=\"far\" depth=\"336\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2220\" plane=\"far\" depth=\"337\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2290\" plane=\"far\" depth=\"338\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2360\" plane=\"far\" depth=\"339\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2430\" plane=\"far\" depth=\"340\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2500\" plane=\"far\" depth=\"341\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3780\" y=\"2570\" plane=\"far\" depth=\"342\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3710\" y=\"2570\" plane=\"far\" depth=\"343\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3640\" y=\"2570\" plane=\"far\" depth=\"344\"/>";
str = str + "<object tile=\"house_med3\" x=\"3120\" y=\"1960\" plane=\"far\" depth=\"345\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3180\" y=\"2070\" plane=\"far\" depth=\"346\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3180\" y=\"2100\" plane=\"far\" depth=\"347\"/>";
str = str + "<object tile=\"house_sm1\" x=\"3160\" y=\"2130\" plane=\"far\" depth=\"348\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3460\" y=\"2290\" plane=\"far\" depth=\"349\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3500\" y=\"2290\" plane=\"far\" depth=\"350\"/>";
str = str + "<object tile=\"house_big1\" x=\"3520\" y=\"2260\" plane=\"far\" depth=\"351\"/>";
str = str + "<object tile=\"house_med2\" x=\"3710\" y=\"2050\" plane=\"far\" depth=\"352\"/>";
str = str + "<object tile=\"house_sm1\" x=\"3780\" y=\"2160\" plane=\"far\" depth=\"353\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3670\" y=\"2290\" plane=\"far\" depth=\"354\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3700\" y=\"2290\" plane=\"far\" depth=\"355\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3730\" y=\"2290\" plane=\"far\" depth=\"356\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3760\" y=\"2290\" plane=\"far\" depth=\"357\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3790\" y=\"2290\" plane=\"far\" depth=\"358\"/>";
str = str + "<object tile=\"house_med5\" x=\"3450\" y=\"2440\" plane=\"far\" depth=\"359\"/>";
str = str + "<object tile=\"house_sm1\" x=\"3570\" y=\"2490\" plane=\"far\" depth=\"360\"/>";
str = str + "<object tile=\"house_med1\" x=\"3610\" y=\"2470\" plane=\"far\" depth=\"361\"/>";
str = str + "<object tile=\"house_sm2\" x=\"3700\" y=\"2480\" plane=\"far\" depth=\"362\"/>";
str = str + "<object tile=\"house_sm1\" x=\"3780\" y=\"2300\" plane=\"far\" depth=\"363\"/>";
str = str + "<object tile=\"house_sm2\" x=\"3730\" y=\"2300\" plane=\"far\" depth=\"364\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1240\" y=\"1780\" plane=\"far\" depth=\"365\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1310\" y=\"1780\" plane=\"far\" depth=\"366\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1030\" y=\"1780\" plane=\"far\" depth=\"367\"/>";
str = str + "<object tile=\"wall_big2\" x=\"960\" y=\"1780\" plane=\"far\" depth=\"368\"/>";
str = str + "<object tile=\"wall_big2\" x=\"890\" y=\"1780\" plane=\"far\" depth=\"369\"/>";
str = str + "<object tile=\"wall_big2\" x=\"820\" y=\"1780\" plane=\"far\" depth=\"370\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1380\" y=\"1780\" plane=\"far\" depth=\"371\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1450\" y=\"1780\" plane=\"far\" depth=\"372\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"1800\" plane=\"far\" depth=\"373\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"1870\" plane=\"far\" depth=\"374\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"1800\" plane=\"far\" depth=\"375\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"1870\" plane=\"far\" depth=\"376\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"1940\" plane=\"far\" depth=\"377\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"2010\" plane=\"far\" depth=\"378\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"2080\" plane=\"far\" depth=\"379\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"1940\" plane=\"far\" depth=\"380\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"2010\" plane=\"far\" depth=\"381\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"2080\" plane=\"far\" depth=\"382\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"2150\" plane=\"far\" depth=\"383\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"2150\" plane=\"far\" depth=\"384\"/>";
str = str + "<object tile=\"wall_big2\" x=\"890\" y=\"2290\" plane=\"far\" depth=\"385\"/>";
str = str + "<object tile=\"wall_big2\" x=\"960\" y=\"2290\" plane=\"far\" depth=\"386\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1030\" y=\"2290\" plane=\"far\" depth=\"387\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1100\" y=\"2290\" plane=\"far\" depth=\"388\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1170\" y=\"2290\" plane=\"far\" depth=\"389\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1240\" y=\"2290\" plane=\"far\" depth=\"390\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1310\" y=\"2290\" plane=\"far\" depth=\"391\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1380\" y=\"2290\" plane=\"far\" depth=\"392\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"2220\" plane=\"far\" depth=\"393\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"2220\" plane=\"far\" depth=\"394\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1450\" y=\"2290\" plane=\"far\" depth=\"395\"/>";
str = str + "<object tile=\"wall_big2\" x=\"820\" y=\"2290\" plane=\"far\" depth=\"396\"/>";
str = str + "<object tile=\"house_big1\" x=\"850\" y=\"1800\" plane=\"far\" depth=\"397\"/>";
str = str + "<object tile=\"house_med3\" x=\"860\" y=\"1930\" plane=\"far\" depth=\"398\"/>";
str = str + "<object tile=\"house_med4\" x=\"990\" y=\"2050\" plane=\"far\" depth=\"399\"/>";
str = str + "<object tile=\"house_big1\" x=\"840\" y=\"2010\" plane=\"far\" depth=\"400\"/>";
str = str + "<object tile=\"house_med3\" x=\"860\" y=\"2140\" plane=\"far\" depth=\"401\"/>";
str = str + "<object tile=\"house_med4\" x=\"1240\" y=\"1810\" plane=\"far\" depth=\"402\"/>";
str = str + "<object tile=\"house_big1\" x=\"1340\" y=\"1800\" plane=\"far\" depth=\"403\"/>";
str = str + "<object tile=\"house_med5\" x=\"1380\" y=\"1920\" plane=\"far\" depth=\"404\"/>";
str = str + "<object tile=\"house_big1\" x=\"1350\" y=\"2010\" plane=\"far\" depth=\"405\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1200\" y=\"2210\" plane=\"far\" depth=\"406\"/>";
str = str + "<object tile=\"house_med2\" x=\"1250\" y=\"2160\" plane=\"far\" depth=\"407\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1660\" y=\"570\" plane=\"far\" depth=\"408\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1590\" y=\"570\" plane=\"far\" depth=\"409\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1520\" y=\"570\" plane=\"far\" depth=\"410\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1450\" y=\"570\" plane=\"far\" depth=\"411\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1380\" y=\"570\" plane=\"far\" depth=\"412\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1310\" y=\"570\" plane=\"far\" depth=\"413\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1240\" y=\"570\" plane=\"far\" depth=\"414\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1170\" y=\"570\" plane=\"far\" depth=\"415\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1100\" y=\"570\" plane=\"far\" depth=\"416\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1030\" y=\"570\" plane=\"far\" depth=\"417\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1700\" y=\"590\" plane=\"far\" depth=\"418\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1700\" y=\"660\" plane=\"far\" depth=\"419\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1700\" y=\"730\" plane=\"far\" depth=\"420\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"590\" plane=\"far\" depth=\"421\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"660\" plane=\"far\" depth=\"422\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"730\" plane=\"far\" depth=\"423\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"800\" plane=\"far\" depth=\"424\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"870\" plane=\"far\" depth=\"425\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"940\" plane=\"far\" depth=\"426\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"1010\" plane=\"far\" depth=\"427\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"1080\" plane=\"far\" depth=\"428\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1700\" y=\"940\" plane=\"far\" depth=\"429\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1700\" y=\"1010\" plane=\"far\" depth=\"430\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1700\" y=\"1080\" plane=\"far\" depth=\"431\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1030\" y=\"1150\" plane=\"far\" depth=\"432\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1100\" y=\"1150\" plane=\"far\" depth=\"433\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1170\" y=\"1150\" plane=\"far\" depth=\"434\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1240\" y=\"1150\" plane=\"far\" depth=\"435\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1310\" y=\"1150\" plane=\"far\" depth=\"436\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1380\" y=\"1150\" plane=\"far\" depth=\"437\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1450\" y=\"1150\" plane=\"far\" depth=\"438\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1520\" y=\"1150\" plane=\"far\" depth=\"439\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1590\" y=\"1150\" plane=\"far\" depth=\"440\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1660\" y=\"1150\" plane=\"far\" depth=\"441\"/>";
str = str + "<object tile=\"house_med4\" x=\"1440\" y=\"620\" plane=\"far\" depth=\"442\"/>";
str = str + "<object tile=\"house_med4\" x=\"1190\" y=\"620\" plane=\"far\" depth=\"443\"/>";
str = str + "<object tile=\"house_med2\" x=\"1530\" y=\"1020\" plane=\"far\" depth=\"444\"/>";
str = str + "<object tile=\"house_med1\" x=\"1310\" y=\"1050\" plane=\"far\" depth=\"445\"/>";
str = str + "<object tile=\"house_big1\" x=\"1560\" y=\"580\" plane=\"far\" depth=\"446\"/>";
str = str + "<object tile=\"house_big1\" x=\"1290\" y=\"580\" plane=\"far\" depth=\"447\"/>";
str = str + "<object tile=\"house_big1\" x=\"1050\" y=\"580\" plane=\"far\" depth=\"448\"/>";
str = str + "<object tile=\"house_big1\" x=\"1390\" y=\"990\" plane=\"far\" depth=\"449\"/>";
str = str + "<object tile=\"house_med3\" x=\"1060\" y=\"700\" plane=\"far\" depth=\"450\"/>";
str = str + "<object tile=\"house_big1\" x=\"1050\" y=\"800\" plane=\"far\" depth=\"451\"/>";
str = str + "<object tile=\"house_med3\" x=\"1060\" y=\"930\" plane=\"far\" depth=\"452\"/>";
str = str + "<object tile=\"house_med4\" x=\"1060\" y=\"1030\" plane=\"far\" depth=\"453\"/>";
str = str + "<object tile=\"house_big1\" x=\"1160\" y=\"990\" plane=\"far\" depth=\"454\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3520\" y=\"1010\" plane=\"far\" depth=\"455\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3290\" y=\"1010\" plane=\"far\" depth=\"456\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3220\" y=\"1010\" plane=\"far\" depth=\"457\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3150\" y=\"1010\" plane=\"far\" depth=\"458\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3080\" y=\"1010\" plane=\"far\" depth=\"459\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3010\" y=\"1010\" plane=\"far\" depth=\"460\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2940\" y=\"1010\" plane=\"far\" depth=\"461\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2870\" y=\"1010\" plane=\"far\" depth=\"462\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2800\" y=\"1010\" plane=\"far\" depth=\"463\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3600\" y=\"1010\" plane=\"far\" depth=\"464\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3670\" y=\"1010\" plane=\"far\" depth=\"465\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3710\" y=\"1030\" plane=\"far\" depth=\"466\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3710\" y=\"1100\" plane=\"far\" depth=\"467\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3710\" y=\"1170\" plane=\"far\" depth=\"468\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3710\" y=\"1240\" plane=\"far\" depth=\"469\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3710\" y=\"1310\" plane=\"far\" depth=\"470\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3050\" y=\"1440\" plane=\"far\" depth=\"471\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3710\" y=\"1380\" plane=\"far\" depth=\"472\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2730\" y=\"1010\" plane=\"far\" depth=\"473\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1030\" plane=\"far\" depth=\"474\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1100\" plane=\"far\" depth=\"475\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1170\" plane=\"far\" depth=\"476\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1240\" plane=\"far\" depth=\"477\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1310\" plane=\"far\" depth=\"478\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1380\" plane=\"far\" depth=\"479\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1450\" plane=\"far\" depth=\"480\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2730\" y=\"1510\" plane=\"far\" depth=\"481\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2800\" y=\"1510\" plane=\"far\" depth=\"482\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2870\" y=\"1510\" plane=\"far\" depth=\"483\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2940\" y=\"1510\" plane=\"far\" depth=\"484\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3010\" y=\"1510\" plane=\"far\" depth=\"485\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3670\" y=\"1440\" plane=\"far\" depth=\"486\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3600\" y=\"1440\" plane=\"far\" depth=\"487\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3530\" y=\"1440\" plane=\"far\" depth=\"488\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3460\" y=\"1440\" plane=\"far\" depth=\"489\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3390\" y=\"1440\" plane=\"far\" depth=\"490\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3320\" y=\"1440\" plane=\"far\" depth=\"491\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3250\" y=\"1440\" plane=\"far\" depth=\"492\"/>";
str = str + "<object tile=\"house_big1\" x=\"3560\" y=\"1030\" plane=\"far\" depth=\"493\"/>";
str = str + "<object tile=\"house_med5\" x=\"3600\" y=\"1160\" plane=\"far\" depth=\"494\"/>";
str = str + "<object tile=\"house_sm2\" x=\"3340\" y=\"1350\" plane=\"far\" depth=\"495\"/>";
str = str + "<object tile=\"house_med4\" x=\"3390\" y=\"1300\" plane=\"far\" depth=\"496\"/>";
str = str + "<object tile=\"house_med1\" x=\"3250\" y=\"1330\" plane=\"far\" depth=\"497\"/>";
str = str + "<object tile=\"house_big1\" x=\"3500\" y=\"1260\" plane=\"far\" depth=\"498\"/>";
str = str + "<object tile=\"house_med4\" x=\"3070\" y=\"1050\" plane=\"far\" depth=\"499\"/>";
str = str + "<object tile=\"house_big1\" x=\"3170\" y=\"1010\" plane=\"far\" depth=\"500\"/>";
str = str + "<object tile=\"house_big2\" x=\"2850\" y=\"1030\" plane=\"far\" depth=\"501\"/>";
str = str + "<object tile=\"house_med3\" x=\"2760\" y=\"1060\" plane=\"far\" depth=\"502\"/>";
str = str + "<object tile=\"house_big1\" x=\"2750\" y=\"1150\" plane=\"far\" depth=\"503\"/>";
str = str + "<object tile=\"house_big1\" x=\"2900\" y=\"1360\" plane=\"far\" depth=\"504\"/>";
str = str + "<object tile=\"house_sm2\" x=\"2850\" y=\"1440\" plane=\"far\" depth=\"505\"/>";
str = str + "<object tile=\"house_med2\" x=\"2750\" y=\"1250\" plane=\"far\" depth=\"506\"/>";
str = str + "<object tile=\"house_med3\" x=\"2750\" y=\"1350\" plane=\"far\" depth=\"507\"/>";
str = str + "<object tile=\"hangar2\" x=\"2420\" y=\"1970\" plane=\"far\" depth=\"508\"/>";
str = str + "<object tile=\"hangar2\" x=\"2420\" y=\"1830\" plane=\"far\" depth=\"509\"/>";
str = str + "<object tile=\"oil_punp2\" x=\"2100\" y=\"2100\" plane=\"far\" depth=\"510\"/>";
str = str + "<object tile=\"oil_punp2\" x=\"2100\" y=\"1980\" plane=\"far\" depth=\"511\"/>";
str = str + "<object tile=\"oil_barrel2\" x=\"2220\" y=\"2050\" plane=\"far\" depth=\"512\"/>";
str = str + "<object tile=\"oil_barrel2\" x=\"2220\" y=\"1920\" plane=\"far\" depth=\"513\"/>";
str = str + "<object tile=\"oil_pump1\" x=\"2440\" y=\"2140\" plane=\"far\" depth=\"514\"/>";
str = str + "<object tile=\"oil_barrel2\" x=\"2450\" y=\"2080\" plane=\"far\" depth=\"515\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3480\" y=\"1930\" plane=\"far\" depth=\"516\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3480\" y=\"2000\" plane=\"far\" depth=\"517\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3490\" y=\"2060\" plane=\"far\" depth=\"518\"/>";
str = str + "<object tile=\"house_med4\" x=\"3520\" y=\"2070\" plane=\"far\" depth=\"519\"/>";
str = str + "<object tile=\"gunner_1\" x=\"1860\" y=\"3210\" plane=\"main\" depth=\"520\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"110\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-192\" deltay=\"-5\" mtype=\"lin\" steps=\"96\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-6\" deltay=\"-107\" mtype=\"lin\" steps=\"53\" repeat=\"-100\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"1000\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-85\" deltay=\"-6\" mtype=\"lin\" steps=\"42\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"283\" deltay=\"118\" mtype=\"lin\" steps=\"153\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_1\" x=\"1850\" y=\"3270\" plane=\"main\" depth=\"521\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"10\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-109\" deltay=\"-30\" mtype=\"lin\" steps=\"28\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-152\" deltay=\"60\" mtype=\"lin\" steps=\"81\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-105\" deltay=\"-137\" mtype=\"lin\" steps=\"86\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"366\" deltay=\"107\" mtype=\"lin\" steps=\"190\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_1\" x=\"1920\" y=\"3300\" plane=\"main\" depth=\"522\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"120\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-167\" deltay=\"-76\" mtype=\"lin\" steps=\"91\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-203\" deltay=\"-8\" mtype=\"lin\" steps=\"101\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"58\" deltay=\"-51\" mtype=\"lin\" steps=\"38\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"312\" deltay=\"135\" mtype=\"lin\" steps=\"169\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK_1\" x=\"1790\" y=\"3230\" plane=\"main\" depth=\"523\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"50\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-224\" deltay=\"1\" mtype=\"lin\" steps=\"112\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-32\" deltay=\"165\" mtype=\"lin\" steps=\"84\" repeat=\"-100\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"1000\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-152\" deltay=\"13\" mtype=\"lin\" steps=\"76\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"408\" deltay=\"-179\" mtype=\"lin\" steps=\"222\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_1\" x=\"1950\" y=\"3180\" plane=\"main\" depth=\"524\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"130\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-186\" deltay=\"55\" mtype=\"lin\" steps=\"96\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-153\" deltay=\"-2\" mtype=\"lin\" steps=\"76\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-69\" deltay=\"77\" mtype=\"lin\" steps=\"51\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"408\" deltay=\"-130\" mtype=\"lin\" steps=\"214\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"hummer_1\" x=\"2160\" y=\"3230\" plane=\"main\" depth=\"525\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-18\" deltay=\"0\" mtype=\"lin\" steps=\"3\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-90\" rtype=\"lin\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"150\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-598\" deltay=\"-1\" mtype=\"lin\" steps=\"119\" repeat=\"-100\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"10000\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"616\" deltay=\"1\" mtype=\"lin\" steps=\"123\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_1\" x=\"1490\" y=\"2900\" plane=\"main\" depth=\"526\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"10\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-2\" deltay=\"215\" mtype=\"lin\" steps=\"71\" repeat=\"-100\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"30\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"2\" deltay=\"-215\" mtype=\"lin\" steps=\"107\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_1\" x=\"1440\" y=\"2890\" plane=\"main\" depth=\"527\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"20\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"5\" deltay=\"193\" mtype=\"lin\" steps=\"48\" repeat=\"-100\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"40\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-5\" deltay=\"-193\" mtype=\"lin\" steps=\"96\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_1\" x=\"1370\" y=\"2790\" plane=\"main\" depth=\"528\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"60\" deltay=\"56\" mtype=\"lin\" steps=\"41\" repeat=\"-100\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"20\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"9\" deltay=\"169\" mtype=\"lin\" steps=\"84\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1\" deltay=\"-133\" mtype=\"lin\" steps=\"66\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-68\" deltay=\"-92\" mtype=\"lin\" steps=\"57\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK_1\" x=\"1440\" y=\"2770\" plane=\"main\" depth=\"529\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"10\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"22\" deltay=\"372\" mtype=\"lin\" steps=\"186\" repeat=\"-100\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"10\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-22\" deltay=\"-372\" mtype=\"lin\" steps=\"186\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_1\" x=\"1510\" y=\"2770\" plane=\"main\" depth=\"530\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"20\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-19\" deltay=\"215\" mtype=\"lin\" steps=\"107\" repeat=\"-100\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"30\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"19\" deltay=\"-215\" mtype=\"lin\" steps=\"107\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"hummer_1\" x=\"1460\" y=\"2600\" plane=\"main\" depth=\"531\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1\" deltay=\"20\" mtype=\"lin\" steps=\"5\" repeat=\"-100\" rotateTile=\"1\" deltar=\"180\" rtype=\"lin\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"1\" deltay=\"448\" mtype=\"lin\" steps=\"112\" repeat=\"-100\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"1000\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-468\" mtype=\"lin\" steps=\"117\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"truck_tent\" x=\"1320\" y=\"860\" plane=\"main\" depth=\"532\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"20\" deltay=\"0\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"90\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"926\" deltay=\"0\" mtype=\"lin\" steps=\"308\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"29\" deltay=\"5\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"23\" deltay=\"8\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"21\" deltay=\"19\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"12\" deltay=\"24\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"6\" deltay=\"42\" mtype=\"lin\" steps=\"14\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"9\" deltay=\"2316\" mtype=\"lin\" steps=\"772\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"6\" deltay=\"29\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"13\" deltay=\"25\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"22\" deltay=\"18\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"21\" deltay=\"14\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"23\" deltay=\"5\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"634\" deltay=\"-2\" mtype=\"lin\" steps=\"211\" repeat=\"-100\" />";
str = str + "<object action=\"survive\" stay=\"50\" setTrans=\"0\" stopMove=\"1\" stopShoot=\"0\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1765\" deltay=\"-2503\" mtype=\"lin\" steps=\"1020\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"truck_tent\" x=\"1470\" y=\"860\" plane=\"main\" depth=\"533\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"20\" deltay=\"0\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"90\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"769\" deltay=\"0\" mtype=\"lin\" steps=\"256\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"29\" deltay=\"5\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"24\" deltay=\"8\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"21\" deltay=\"19\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"12\" deltay=\"24\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"6\" deltay=\"42\" mtype=\"lin\" steps=\"14\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1\" deltay=\"2301\" mtype=\"lin\" steps=\"767\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"6\" deltay=\"29\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"13\" deltay=\"25\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"22\" deltay=\"18\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"21\" deltay=\"14\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"24\" deltay=\"6\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"619\" deltay=\"0\" mtype=\"lin\" steps=\"206\" repeat=\"-100\" />";
str = str + "<object action=\"survive\" stay=\"50\" setTrans=\"0\" stopMove=\"1\" stopShoot=\"0\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1585\" deltay=\"-2491\" mtype=\"lin\" steps=\"984\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"truck_tent\" x=\"1150\" y=\"1900\" plane=\"main\" depth=\"534\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"20\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-135\" mtype=\"lin\" steps=\"45\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"6\" deltay=\"-20\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"12\" deltay=\"-25\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"22\" deltay=\"-21\" mtype=\"lin\" steps=\"10\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"25\" deltay=\"-15\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"30\" deltay=\"-7\" mtype=\"lin\" steps=\"10\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"1010\" deltay=\"2\" mtype=\"lin\" steps=\"336\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"33\" deltay=\"7\" mtype=\"lin\" steps=\"11\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"21\" deltay=\"12\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"21\" deltay=\"19\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"13\" deltay=\"27\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"5\" deltay=\"28\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"1\" deltay=\"1514\" mtype=\"lin\" steps=\"504\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"6\" deltay=\"29\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"14\" deltay=\"26\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"22\" deltay=\"16\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"25\" deltay=\"13\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"24\" deltay=\"6\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"579\" deltay=\"1\" mtype=\"lin\" steps=\"193\" repeat=\"-100\" />";
str = str + "<object action=\"survive\" stay=\"50\" setTrans=\"0\" stopMove=\"1\" stopShoot=\"0\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1869\" deltay=\"-1477\" mtype=\"lin\" steps=\"794\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"truck_tent\" x=\"1150\" y=\"2020\" plane=\"main\" depth=\"535\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"10\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"1\" deltay=\"-259\" mtype=\"lin\" steps=\"86\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"6\" deltay=\"-20\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"12\" deltay=\"-25\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"22\" deltay=\"-21\" mtype=\"lin\" steps=\"10\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"25\" deltay=\"-15\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"29\" deltay=\"-7\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"1007\" deltay=\"-3\" mtype=\"lin\" steps=\"335\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"33\" deltay=\"7\" mtype=\"lin\" steps=\"11\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"21\" deltay=\"12\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"21\" deltay=\"19\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"13\" deltay=\"27\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"5\" deltay=\"27\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"2\" deltay=\"1534\" mtype=\"lin\" steps=\"511\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"6\" deltay=\"29\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"14\" deltay=\"26\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"22\" deltay=\"17\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"23\" deltay=\"13\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"24\" deltay=\"11\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"580\" deltay=\"-18\" mtype=\"lin\" steps=\"193\" repeat=\"-100\" />";
str = str + "<object action=\"survive\" stay=\"50\" setTrans=\"0\" stopMove=\"1\" stopShoot=\"0\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1866\" deltay=\"-1354\" mtype=\"lin\" steps=\"768\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"truck_oil_2\" x=\"2320\" y=\"3040\" plane=\"main\" depth=\"536\"/>";
str = str + "<object tile=\"truck_oil_2\" x=\"2430\" y=\"2960\" plane=\"main\" depth=\"537\"/>";
str = str + "<object tile=\"truck_oil_2\" x=\"2320\" y=\"2900\" plane=\"main\" depth=\"538\"/>";
str = str + "<object tile=\"truck_oil_2\" x=\"2320\" y=\"2810\" plane=\"main\" depth=\"539\"/>";
str = str + "<object tile=\"truck_oil_2\" x=\"2430\" y=\"2730\" plane=\"main\" depth=\"540\"/>";
str = str + "<object tile=\"truck_oil_2\" x=\"2430\" y=\"2640\" plane=\"main\" depth=\"541\"/>";
str = str + "<object tile=\"PZRK\" x=\"2150\" y=\"1960\" plane=\"main\" depth=\"542\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"21\" deltay=\"-102\" mtype=\"lin\" steps=\"52\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-21\" deltay=\"102\" mtype=\"lin\" steps=\"52\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2150\" y=\"2070\" plane=\"main\" depth=\"543\"/>";
str = str + "<object tile=\"PZRK\" x=\"2190\" y=\"2080\" plane=\"main\" depth=\"544\"/>";
str = str + "<object tile=\"PZRK\" x=\"2010\" y=\"2110\" plane=\"main\" depth=\"545\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-22\" deltay=\"-54\" mtype=\"lin\" steps=\"29\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"73\" deltay=\"92\" mtype=\"lin\" steps=\"58\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-51\" deltay=\"-38\" mtype=\"lin\" steps=\"31\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"2130\" y=\"2180\" plane=\"main\" depth=\"546\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"100\" deltay=\"0\" mtype=\"lin\" steps=\"50\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-100\" deltay=\"0\" mtype=\"lin\" steps=\"50\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2050\" y=\"2290\" plane=\"main\" depth=\"547\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"113\" deltay=\"-33\" mtype=\"lin\" steps=\"58\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"112\" deltay=\"5\" mtype=\"lin\" steps=\"56\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-21\" deltay=\"71\" mtype=\"lin\" steps=\"37\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-204\" deltay=\"-43\" mtype=\"lin\" steps=\"104\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2130\" y=\"2400\" plane=\"main\" depth=\"548\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"83\" deltay=\"-16\" mtype=\"lin\" steps=\"42\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-63\" deltay=\"-57\" mtype=\"lin\" steps=\"42\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-20\" deltay=\"73\" mtype=\"lin\" steps=\"37\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2410\" y=\"2460\" plane=\"main\" depth=\"549\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1\" deltay=\"80\" mtype=\"lin\" steps=\"40\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"1\" deltay=\"-80\" mtype=\"lin\" steps=\"40\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"2540\" y=\"2110\" plane=\"main\" depth=\"550\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"100\" deltay=\"-67\" mtype=\"lin\" steps=\"60\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-11\" deltay=\"90\" mtype=\"lin\" steps=\"45\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-89\" deltay=\"-23\" mtype=\"lin\" steps=\"45\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2550\" y=\"2300\" plane=\"main\" depth=\"551\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"48\" deltay=\"-53\" mtype=\"lin\" steps=\"35\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"28\" deltay=\"58\" mtype=\"lin\" steps=\"32\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-76\" deltay=\"-5\" mtype=\"lin\" steps=\"38\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"truck_oil_1\" x=\"2550\" y=\"2330\" plane=\"main\" depth=\"552\"/>";
str = str + "<object tile=\"truck_oil_1\" x=\"2700\" y=\"2330\" plane=\"main\" depth=\"553\"/>";
str = str + "<object tile=\"truck_oil_3\" x=\"2320\" y=\"2160\" plane=\"main\" depth=\"554\"/>";
str = str + "<object tile=\"truck_oil_3\" x=\"2320\" y=\"1990\" plane=\"main\" depth=\"555\"/>";
str = str + "<object tile=\"truck_oil_3\" x=\"2320\" y=\"1890\" plane=\"main\" depth=\"556\"/>";
str = str + "<object tile=\"gunner\" x=\"3780\" y=\"2410\" plane=\"main\" depth=\"557\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-92\" deltay=\"-72\" mtype=\"lin\" steps=\"58\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-4\" deltay=\"101\" mtype=\"lin\" steps=\"50\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"96\" deltay=\"-29\" mtype=\"lin\" steps=\"50\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"3620\" y=\"2430\" plane=\"main\" depth=\"558\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-93\" deltay=\"-13\" mtype=\"lin\" steps=\"46\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"93\" deltay=\"13\" mtype=\"lin\" steps=\"46\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"3120\" y=\"2100\" plane=\"main\" depth=\"559\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"21\" deltay=\"136\" mtype=\"lin\" steps=\"68\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"66\" deltay=\"-17\" mtype=\"lin\" steps=\"34\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-84\" deltay=\"-20\" mtype=\"lin\" steps=\"43\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-3\" deltay=\"-99\" mtype=\"lin\" steps=\"49\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"3140\" y=\"1850\" plane=\"main\" depth=\"560\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"7\" deltay=\"71\" mtype=\"lin\" steps=\"35\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-7\" deltay=\"-71\" mtype=\"lin\" steps=\"35\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"3200\" y=\"1850\" plane=\"main\" depth=\"561\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"3\" deltay=\"72\" mtype=\"lin\" steps=\"36\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-3\" deltay=\"-72\" mtype=\"lin\" steps=\"36\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"truck_tent\" x=\"3300\" y=\"2050\" plane=\"main\" depth=\"562\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"60\" deltay=\"-1\" mtype=\"lin\" steps=\"20\" repeat=\"-100\" rotateTile=\"1\" deltar=\"180\" rtype=\"lin\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"225\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1\" deltay=\"245\" mtype=\"lin\" steps=\"81\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-7\" deltay=\"25\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-17\" deltay=\"25\" mtype=\"lin\" steps=\"10\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-24\" deltay=\"13\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-27\" deltay=\"5\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-42\" deltay=\"5\" mtype=\"lin\" steps=\"14\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-795\" deltay=\"8\" mtype=\"lin\" steps=\"265\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-29\" deltay=\"6\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-24\" deltay=\"12\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-25\" deltay=\"24\" mtype=\"lin\" steps=\"11\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-9\" deltay=\"23\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-3\" deltay=\"26\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"3\" deltay=\"795\" mtype=\"lin\" steps=\"265\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"12\" deltay=\"35\" mtype=\"lin\" steps=\"12\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"13\" deltay=\"32\" mtype=\"lin\" steps=\"11\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"26\" deltay=\"27\" mtype=\"lin\" steps=\"12\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"29\" deltay=\"12\" mtype=\"lin\" steps=\"10\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"35\" deltay=\"6\" mtype=\"lin\" steps=\"11\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"402\" deltay=\"0\" mtype=\"lin\" steps=\"134\" repeat=\"-100\" rotateTile=\"1\" deltar=\"0\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"37\" deltay=\"-1\" mtype=\"lin\" steps=\"12\" repeat=\"-100\" />";
str = str + "<object action=\"survive\" stay=\"50\" setTrans=\"0\" stopMove=\"1\" stopShoot=\"0\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"truck_tent\" x=\"3700\" y=\"2210\" plane=\"main\" depth=\"563\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-17\" deltay=\"-1\" mtype=\"lin\" steps=\"5\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-90\" rtype=\"lin\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"150\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-233\" deltay=\"0\" mtype=\"lin\" steps=\"77\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-40\" deltay=\"5\" mtype=\"lin\" steps=\"13\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-28\" deltay=\"7\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-20\" deltay=\"15\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-13\" deltay=\"23\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-7\" deltay=\"32\" mtype=\"lin\" steps=\"10\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-8\" deltay=\"17\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-13\" deltay=\"24\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-26\" deltay=\"23\" mtype=\"lin\" steps=\"11\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-30\" deltay=\"6\" mtype=\"lin\" steps=\"10\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-42\" deltay=\"5\" mtype=\"lin\" steps=\"14\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-767\" deltay=\"-3\" mtype=\"lin\" steps=\"255\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-29\" deltay=\"6\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-24\" deltay=\"12\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-27\" deltay=\"25\" mtype=\"lin\" steps=\"12\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-9\" deltay=\"23\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-3\" deltay=\"26\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-2\" deltay=\"804\" mtype=\"lin\" steps=\"268\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"12\" deltay=\"35\" mtype=\"lin\" steps=\"12\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"13\" deltay=\"32\" mtype=\"lin\" steps=\"11\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"26\" deltay=\"27\" mtype=\"lin\" steps=\"12\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"32\" deltay=\"12\" mtype=\"lin\" steps=\"11\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"35\" deltay=\"6\" mtype=\"lin\" steps=\"11\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"508\" deltay=\"-1\" mtype=\"lin\" steps=\"169\" repeat=\"-100\" rotateTile=\"1\" deltar=\"0\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"37\" deltay=\"-1\" mtype=\"lin\" steps=\"12\" repeat=\"-100\" />";
str = str + "<object action=\"survive\" stay=\"50\" setTrans=\"0\" stopMove=\"1\" stopShoot=\"0\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"hero1\" x=\"1420\" y=\"3290\" plane=\"main\" depth=\"564\"/>";
str = str + "<object tile=\"truck_oil_3\" x=\"2420\" y=\"2070\" plane=\"main\" depth=\"565\"/>";
str = str + "<object tile=\"PZRK\" x=\"1370\" y=\"2180\" plane=\"main\" depth=\"566\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"83\" deltay=\"75\" mtype=\"lin\" steps=\"55\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-83\" deltay=\"-75\" mtype=\"lin\" steps=\"55\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1320\" y=\"2060\" plane=\"main\" depth=\"567\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-114\" deltay=\"20\" mtype=\"lin\" steps=\"57\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"89\" deltay=\"31\" mtype=\"lin\" steps=\"47\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"25\" deltay=\"-51\" mtype=\"lin\" steps=\"28\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1550\" y=\"2080\" plane=\"main\" depth=\"568\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"259\" deltay=\"-8\" mtype=\"lin\" steps=\"129\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-259\" deltay=\"8\" mtype=\"lin\" steps=\"129\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"1140\" y=\"2210\" plane=\"main\" depth=\"569\"/>";
str = str + "<object tile=\"gunner\" x=\"1210\" y=\"1960\" plane=\"main\" depth=\"570\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"20\" deltay=\"68\" mtype=\"lin\" steps=\"35\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"39\" deltay=\"-50\" mtype=\"lin\" steps=\"31\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-59\" deltay=\"-18\" mtype=\"lin\" steps=\"30\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1680\" y=\"1030\" plane=\"main\" depth=\"571\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-127\" deltay=\"-26\" mtype=\"lin\" steps=\"64\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"65\" deltay=\"-61\" mtype=\"lin\" steps=\"44\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"62\" deltay=\"87\" mtype=\"lin\" steps=\"53\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1190\" y=\"960\" plane=\"main\" depth=\"572\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"85\" deltay=\"-40\" mtype=\"lin\" steps=\"46\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"60\" deltay=\"96\" mtype=\"lin\" steps=\"56\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"77\" deltay=\"-55\" mtype=\"lin\" steps=\"47\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-222\" deltay=\"-1\" mtype=\"lin\" steps=\"111\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"1410\" y=\"780\" plane=\"main\" depth=\"573\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-212\" deltay=\"-14\" mtype=\"lin\" steps=\"106\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"125\" deltay=\"177\" mtype=\"lin\" steps=\"108\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"87\" deltay=\"-163\" mtype=\"lin\" steps=\"92\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"palms3\" x=\"2590\" y=\"2060\" plane=\"nearest\" depth=\"574\"/>";
str = str + "<object tile=\"palms4\" x=\"2580\" y=\"1910\" plane=\"nearest\" depth=\"575\"/>";
str = str + "<object tile=\"palms4\" x=\"2400\" y=\"2180\" plane=\"nearest\" depth=\"576\"/>";
str = str + "<object tile=\"palms5\" x=\"2620\" y=\"2180\" plane=\"nearest\" depth=\"577\"/>";
str = str + "<object tile=\"palms1\" x=\"2640\" y=\"1900\" plane=\"nearest\" depth=\"578\"/>";
str = str + "<object tile=\"palms1\" x=\"2640\" y=\"2270\" plane=\"nearest\" depth=\"579\"/>";
str = str + "<object tile=\"palms4\" x=\"2000\" y=\"2130\" plane=\"nearest\" depth=\"580\"/>";
str = str + "<object tile=\"palms5\" x=\"2110\" y=\"2160\" plane=\"nearest\" depth=\"581\"/>";
str = str + "<object tile=\"palms1\" x=\"2150\" y=\"2380\" plane=\"nearest\" depth=\"582\"/>";
str = str + "<object tile=\"palms1\" x=\"2060\" y=\"2300\" plane=\"nearest\" depth=\"583\"/>";
str = str + "<object tile=\"palms1\" x=\"2060\" y=\"1880\" plane=\"nearest\" depth=\"584\"/>";
str = str + "<object tile=\"palms1\" x=\"2100\" y=\"1870\" plane=\"nearest\" depth=\"585\"/>";
str = str + "<object tile=\"palms1\" x=\"2080\" y=\"1910\" plane=\"nearest\" depth=\"586\"/>";
str = str + "<object tile=\"palms1\" x=\"2140\" y=\"2330\" plane=\"nearest\" depth=\"587\"/>";
str = str + "<object tile=\"palms3\" x=\"2000\" y=\"2010\" plane=\"nearest\" depth=\"588\"/>";
str = str + "<object tile=\"palms5\" x=\"2170\" y=\"1830\" plane=\"nearest\" depth=\"589\"/>";
str = str + "<object tile=\"palms1\" x=\"2170\" y=\"1920\" plane=\"nearest\" depth=\"590\"/>";
str = str + "<object tile=\"palms1\" x=\"3440\" y=\"2360\" plane=\"nearest\" depth=\"591\"/>";
str = str + "<object tile=\"palms1\" x=\"3450\" y=\"2330\" plane=\"nearest\" depth=\"592\"/>";
str = str + "<object tile=\"palms1\" x=\"3450\" y=\"2280\" plane=\"nearest\" depth=\"593\"/>";
str = str + "<object tile=\"palms1\" x=\"3740\" y=\"2330\" plane=\"nearest\" depth=\"594\"/>";
str = str + "<object tile=\"palms3\" x=\"3710\" y=\"2430\" plane=\"nearest\" depth=\"595\"/>";
str = str + "<object tile=\"palms1\" x=\"3550\" y=\"2500\" plane=\"nearest\" depth=\"596\"/>";
str = str + "<object tile=\"palms1\" x=\"3100\" y=\"1880\" plane=\"nearest\" depth=\"597\"/>";
str = str + "<object tile=\"palms5\" x=\"3100\" y=\"1790\" plane=\"nearest\" depth=\"598\"/>";
str = str + "<object tile=\"palms1\" x=\"2730\" y=\"1440\" plane=\"nearest\" depth=\"599\"/>";
str = str + "<object tile=\"palms1\" x=\"2780\" y=\"1450\" plane=\"nearest\" depth=\"600\"/>";
str = str + "<object tile=\"palms4\" x=\"980\" y=\"1800\" plane=\"nearest\" depth=\"601\"/>";
str = str + "<object tile=\"palms5\" x=\"1330\" y=\"2120\" plane=\"nearest\" depth=\"602\"/>";
str = str + "<object tile=\"palms1\" x=\"1390\" y=\"2220\" plane=\"nearest\" depth=\"603\"/>";
str = str + "<object tile=\"palms1\" x=\"1330\" y=\"2220\" plane=\"nearest\" depth=\"604\"/>";
str = str + "<object tile=\"palms1\" x=\"970\" y=\"1930\" plane=\"nearest\" depth=\"605\"/>";
str = str + "<object tile=\"palms3\" x=\"1050\" y=\"2150\" plane=\"nearest\" depth=\"606\"/>";
str = str + "<object tile=\"palms1\" x=\"1020\" y=\"2190\" plane=\"nearest\" depth=\"607\"/>";
str = str + "<object tile=\"palms1\" x=\"970\" y=\"2200\" plane=\"nearest\" depth=\"608\"/>";
str = str + "<object tile=\"palms1\" x=\"1300\" y=\"1900\" plane=\"nearest\" depth=\"609\"/>";
str = str + "<object tile=\"palms5\" x=\"1570\" y=\"3220\" plane=\"nearest\" depth=\"610\"/>";
str = str + "<object tile=\"palms1\" x=\"1640\" y=\"3370\" plane=\"nearest\" depth=\"611\"/>";
str = str + "<object tile=\"palms3\" x=\"1510\" y=\"3290\" plane=\"nearest\" depth=\"612\"/>";
str = str + "<object tile=\"palms3\" x=\"1570\" y=\"960\" plane=\"nearest\" depth=\"613\"/>";
str = str + "<object tile=\"palms1\" x=\"1630\" y=\"1080\" plane=\"nearest\" depth=\"614\"/>";
str = str + "<object tile=\"palms1\" x=\"1660\" y=\"1040\" plane=\"nearest\" depth=\"615\"/>";
str = str + "<object tile=\"palms1\" x=\"1650\" y=\"940\" plane=\"nearest\" depth=\"616\"/>";
str = str + "<object tile=\"palms1\" x=\"1170\" y=\"740\" plane=\"nearest\" depth=\"617\"/>";
str = str + "<object tile=\"palms1\" x=\"2980\" y=\"2410\" plane=\"nearest\" depth=\"618\"/>";
str = str + "<object tile=\"palms3\" x=\"2220\" y=\"2910\" plane=\"nearest\" depth=\"619\"/>";
str = str + "<object tile=\"palms3\" x=\"2390\" y=\"2560\" plane=\"nearest\" depth=\"620\"/>";
str = str + "<object tile=\"palms4\" x=\"2400\" y=\"2780\" plane=\"nearest\" depth=\"621\"/>";
str = str + "<object tile=\"palms5\" x=\"2170\" y=\"2610\" plane=\"nearest\" depth=\"622\"/>";
str = str + "<object tile=\"palms5\" x=\"2410\" y=\"2990\" plane=\"nearest\" depth=\"623\"/>";
str = str + "<object tile=\"palms5\" x=\"2150\" y=\"2770\" plane=\"nearest\" depth=\"624\"/>";
str = str + "<object tile=\"palms4\" x=\"2430\" y=\"2690\" plane=\"nearest\" depth=\"625\"/>";
str = str + "<object tile=\"palms1\" x=\"2270\" y=\"2600\" plane=\"nearest\" depth=\"626\"/>";
str = str + "<object tile=\"palms1\" x=\"2170\" y=\"2700\" plane=\"nearest\" depth=\"627\"/>";
str = str + "<object tile=\"palms1\" x=\"2250\" y=\"3040\" plane=\"nearest\" depth=\"628\"/>";
str = str + "<object tile=\"palms1\" x=\"2420\" y=\"2950\" plane=\"nearest\" depth=\"629\"/>";
str = str + "<object tile=\"null_tile\" x=\"4040\" y=\"800\" plane=\"nearest1\" depth=\"630\"/>";
str = str + "<object tile=\"null_tile\" x=\"4040\" y=\"400\" plane=\"nearest1\" depth=\"631\"/>";
str = str + "<object tile=\"null_tile\" x=\"3700\" y=\"0\" plane=\"nearest1\" depth=\"632\"/>";
str = str + "<object tile=\"null_tile\" x=\"950\" y=\"0\" plane=\"nearest1\" depth=\"633\"/>";
str = str + "<object tile=\"null_tile\" x=\"400\" y=\"0\" plane=\"nearest1\" depth=\"634\"/>";
str = str + "<object tile=\"null_tile\" x=\"190\" y=\"400\" plane=\"nearest1\" depth=\"635\"/>";
str = str + "<object tile=\"null_tile\" x=\"190\" y=\"1600\" plane=\"nearest1\" depth=\"636\"/>";
str = str + "<object tile=\"null_tile\" x=\"190\" y=\"2000\" plane=\"nearest1\" depth=\"637\"/>";
str = str + "<object tile=\"null_tile\" x=\"190\" y=\"2400\" plane=\"nearest1\" depth=\"638\"/>";
str = str + "<object tile=\"null_tile\" x=\"190\" y=\"2800\" plane=\"nearest1\" depth=\"639\"/>";
str = str + "<object tile=\"null_tile\" x=\"190\" y=\"3200\" plane=\"nearest1\" depth=\"640\"/>";
str = str + "<object tile=\"null_tile\" x=\"190\" y=\"3600\" plane=\"nearest1\" depth=\"641\"/>";
str = str + "<object tile=\"null_tile\" x=\"740\" y=\"3600\" plane=\"nearest1\" depth=\"642\"/>";
str = str + "<object tile=\"null_tile\" x=\"190\" y=\"800\" plane=\"nearest1\" depth=\"643\"/>";
str = str + "<object tile=\"null_tile\" x=\"190\" y=\"1200\" plane=\"nearest1\" depth=\"644\"/>";
str = str + "<object tile=\"null_tile\" x=\"2050\" y=\"0\" plane=\"nearest1\" depth=\"645\"/>";
str = str + "<object tile=\"null_tile\" x=\"1500\" y=\"0\" plane=\"nearest1\" depth=\"646\"/>";
str = str + "<object tile=\"null_tile\" x=\"3150\" y=\"0\" plane=\"nearest1\" depth=\"647\"/>";
str = str + "<object tile=\"null_tile\" x=\"2600\" y=\"0\" plane=\"nearest1\" depth=\"648\"/>";
str = str + "<object tile=\"null_tile\" x=\"4040\" y=\"2800\" plane=\"nearest1\" depth=\"649\"/>";
str = str + "<object tile=\"null_tile\" x=\"4040\" y=\"2400\" plane=\"nearest1\" depth=\"650\"/>";
str = str + "<object tile=\"null_tile\" x=\"4040\" y=\"2000\" plane=\"nearest1\" depth=\"651\"/>";
str = str + "<object tile=\"null_tile\" x=\"4040\" y=\"1200\" plane=\"nearest1\" depth=\"652\"/>";
str = str + "<object tile=\"null_tile\" x=\"4040\" y=\"1600\" plane=\"nearest1\" depth=\"653\"/>";
str = str + "<object tile=\"null_tile\" x=\"4040\" y=\"3200\" plane=\"nearest1\" depth=\"654\"/>";
str = str + "<object tile=\"null_tile\" x=\"4040\" y=\"3600\" plane=\"nearest1\" depth=\"655\"/>";
str = str + "<object tile=\"null_tile\" x=\"2940\" y=\"3600\" plane=\"nearest1\" depth=\"656\"/>";
str = str + "<object tile=\"null_tile\" x=\"1290\" y=\"3600\" plane=\"nearest1\" depth=\"657\"/>";
str = str + "<object tile=\"null_tile\" x=\"1840\" y=\"3600\" plane=\"nearest1\" depth=\"658\"/>";
str = str + "<object tile=\"null_tile\" x=\"2390\" y=\"3600\" plane=\"nearest1\" depth=\"659\"/>";
str = str + "<object tile=\"null_tile\" x=\"3490\" y=\"3600\" plane=\"nearest1\" depth=\"660\"/>";
str = str + "</array>";
str = str + "</object>";
str = str + "<object name=\"level_3\">";
str = str + "<var name=\"comment\" >Your pursuers have discovered the refugee camp and are pulling major forces into the area, including heavy armor. You must repel their attack! At least half of the refugees must survive!";
str = str + "- top-priority assignment: destroy the attacking forces.";
str = str + "</var>";
str = str + "<array name=\"missions\">";
str = str + "<object group=\"miss_3\" arrow=\"arr_1\" missionType=\"kill\" active=\"1\" timer=\"700\" winAmount=\"20\" looseAmount=\"1\" actionTrue=\"score 1000,startClip completedMission, win\" actionFalse=\"score 0,startClip failedMission, loose\"/>";
str = str + "</array>";
str = str + "<array name=\"level\">";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1480\" plane=\"far2\" depth=\"1\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1480\" plane=\"far2\" depth=\"2\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1380\" plane=\"far2\" depth=\"3\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1380\" plane=\"far2\" depth=\"4\"/>";
str = str + "<object tile=\"road_u2\" x=\"1880\" y=\"780\" plane=\"far2\" depth=\"5\"/>";
str = str + "<object tile=\"road_u_l\" x=\"2280\" y=\"1580\" plane=\"far2\" depth=\"6\"/>";
str = str + "<object tile=\"road_u2\" x=\"1780\" y=\"780\" plane=\"far2\" depth=\"7\"/>";
str = str + "<object tile=\"road_d1\" x=\"2080\" y=\"880\" plane=\"far2\" depth=\"8\"/>";
str = str + "<object tile=\"road_u2\" x=\"2080\" y=\"780\" plane=\"far2\" depth=\"9\"/>";
str = str + "<object tile=\"road_u2\" x=\"2180\" y=\"780\" plane=\"far2\" depth=\"10\"/>";
str = str + "<object tile=\"road_d1\" x=\"2580\" y=\"1680\" plane=\"far2\" depth=\"11\"/>";
str = str + "<object tile=\"road_u2\" x=\"2580\" y=\"1580\" plane=\"far2\" depth=\"12\"/>";
str = str + "<object tile=\"road_d_r\" x=\"2380\" y=\"1680\" plane=\"far2\" depth=\"13\"/>";
str = str + "<object tile=\"road_u_r\" x=\"2380\" y=\"1580\" plane=\"far2\" depth=\"14\"/>";
str = str + "<object tile=\"road_d1\" x=\"2480\" y=\"1680\" plane=\"far2\" depth=\"15\"/>";
str = str + "<object tile=\"road_u2\" x=\"2480\" y=\"1580\" plane=\"far2\" depth=\"16\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1780\" plane=\"far2\" depth=\"17\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1780\" plane=\"far2\" depth=\"18\"/>";
str = str + "<object tile=\"road_d1\" x=\"1980\" y=\"880\" plane=\"far2\" depth=\"19\"/>";
str = str + "<object tile=\"road_u2\" x=\"1980\" y=\"780\" plane=\"far2\" depth=\"20\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1280\" plane=\"far2\" depth=\"21\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1280\" plane=\"far2\" depth=\"22\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1180\" plane=\"far2\" depth=\"23\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1180\" plane=\"far2\" depth=\"24\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1080\" plane=\"far2\" depth=\"25\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1080\" plane=\"far2\" depth=\"26\"/>";
str = str + "<object tile=\"road_d_l\" x=\"2280\" y=\"880\" plane=\"far2\" depth=\"27\"/>";
str = str + "<object tile=\"road_u2\" x=\"2280\" y=\"780\" plane=\"far2\" depth=\"28\"/>";
str = str + "<object tile=\"road_d1\" x=\"2180\" y=\"880\" plane=\"far2\" depth=\"29\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"980\" plane=\"far2\" depth=\"30\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"980\" plane=\"far2\" depth=\"31\"/>";
str = str + "<object tile=\"road_d_l\" x=\"2280\" y=\"1680\" plane=\"far2\" depth=\"32\"/>";
str = str + "<object tile=\"road_d1\" x=\"1880\" y=\"1680\" plane=\"far2\" depth=\"33\"/>";
str = str + "<object tile=\"road_d1\" x=\"1780\" y=\"1680\" plane=\"far2\" depth=\"34\"/>";
str = str + "<object tile=\"road_u2\" x=\"2180\" y=\"1580\" plane=\"far2\" depth=\"35\"/>";
str = str + "<object tile=\"road_d1\" x=\"2180\" y=\"1680\" plane=\"far2\" depth=\"36\"/>";
str = str + "<object tile=\"road_d1\" x=\"2080\" y=\"1680\" plane=\"far2\" depth=\"37\"/>";
str = str + "<object tile=\"road_u2\" x=\"2080\" y=\"1580\" plane=\"far2\" depth=\"38\"/>";
str = str + "<object tile=\"road_u2\" x=\"1980\" y=\"1580\" plane=\"far2\" depth=\"39\"/>";
str = str + "<object tile=\"road_d1\" x=\"1980\" y=\"1680\" plane=\"far2\" depth=\"40\"/>";
str = str + "<object tile=\"road_d1\" x=\"1880\" y=\"880\" plane=\"far2\" depth=\"41\"/>";
str = str + "<object tile=\"road_d1\" x=\"1780\" y=\"880\" plane=\"far2\" depth=\"42\"/>";
str = str + "<object tile=\"road_u2\" x=\"1880\" y=\"1580\" plane=\"far2\" depth=\"43\"/>";
str = str + "<object tile=\"road_u2\" x=\"1780\" y=\"1580\" plane=\"far2\" depth=\"44\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"880\" plane=\"far2\" depth=\"45\"/>";
str = str + "<object tile=\"road_ru\" x=\"2380\" y=\"780\" plane=\"far2\" depth=\"46\"/>";
str = str + "<object tile=\"road_ld\" x=\"1680\" y=\"880\" plane=\"far2\" depth=\"47\"/>";
str = str + "<object tile=\"road_lu\" x=\"1680\" y=\"780\" plane=\"far2\" depth=\"48\"/>";
str = str + "<object tile=\"road_d1\" x=\"1680\" y=\"1680\" plane=\"far2\" depth=\"49\"/>";
str = str + "<object tile=\"road_u2\" x=\"1680\" y=\"1580\" plane=\"far2\" depth=\"50\"/>";
str = str + "<object tile=\"road_u2\" x=\"1580\" y=\"1580\" plane=\"far2\" depth=\"51\"/>";
str = str + "<object tile=\"road_d1\" x=\"1580\" y=\"1680\" plane=\"far2\" depth=\"52\"/>";
str = str + "<object tile=\"road_d1\" x=\"1480\" y=\"1680\" plane=\"far2\" depth=\"53\"/>";
str = str + "<object tile=\"road_u2\" x=\"1480\" y=\"1580\" plane=\"far2\" depth=\"54\"/>";
str = str + "<object tile=\"road_u2\" x=\"1380\" y=\"1580\" plane=\"far2\" depth=\"55\"/>";
str = str + "<object tile=\"road_d1\" x=\"1380\" y=\"1680\" plane=\"far2\" depth=\"56\"/>";
str = str + "<object tile=\"road_d1\" x=\"1280\" y=\"1680\" plane=\"far2\" depth=\"57\"/>";
str = str + "<object tile=\"road_u2\" x=\"1280\" y=\"1580\" plane=\"far2\" depth=\"58\"/>";
str = str + "<object tile=\"road_u2\" x=\"1180\" y=\"1580\" plane=\"far2\" depth=\"59\"/>";
str = str + "<object tile=\"road_d_r\" x=\"1180\" y=\"1680\" plane=\"far2\" depth=\"60\"/>";
str = str + "<object tile=\"road_lu\" x=\"1080\" y=\"1580\" plane=\"far2\" depth=\"61\"/>";
str = str + "<object tile=\"road_l3\" x=\"1080\" y=\"1680\" plane=\"far2\" depth=\"62\"/>";
str = str + "<object tile=\"road_ld\" x=\"1080\" y=\"1780\" plane=\"far2\" depth=\"63\"/>";
str = str + "<object tile=\"road_rd\" x=\"1180\" y=\"1780\" plane=\"far2\" depth=\"64\"/>";
str = str + "<object tile=\"road_d1\" x=\"2680\" y=\"1680\" plane=\"far2\" depth=\"65\"/>";
str = str + "<object tile=\"road_u2\" x=\"2680\" y=\"1580\" plane=\"far2\" depth=\"66\"/>";
str = str + "<object tile=\"road_d1\" x=\"2780\" y=\"1680\" plane=\"far2\" depth=\"67\"/>";
str = str + "<object tile=\"road_u2\" x=\"2780\" y=\"1580\" plane=\"far2\" depth=\"68\"/>";
str = str + "<object tile=\"road_d1\" x=\"2880\" y=\"1680\" plane=\"far2\" depth=\"69\"/>";
str = str + "<object tile=\"road_u2\" x=\"2880\" y=\"1580\" plane=\"far2\" depth=\"70\"/>";
str = str + "<object tile=\"road_d1\" x=\"2980\" y=\"1680\" plane=\"far2\" depth=\"71\"/>";
str = str + "<object tile=\"road_u2\" x=\"2980\" y=\"1580\" plane=\"far2\" depth=\"72\"/>";
str = str + "<object tile=\"road_d1\" x=\"3080\" y=\"1680\" plane=\"far2\" depth=\"73\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3080\" y=\"1580\" plane=\"far2\" depth=\"74\"/>";
str = str + "<object tile=\"road_rd\" x=\"3180\" y=\"1680\" plane=\"far2\" depth=\"75\"/>";
str = str + "<object tile=\"road_r1\" x=\"3180\" y=\"1580\" plane=\"far2\" depth=\"76\"/>";
str = str + "<object tile=\"road_l3\" x=\"3080\" y=\"1480\" plane=\"far2\" depth=\"77\"/>";
str = str + "<object tile=\"road_r1\" x=\"3180\" y=\"1480\" plane=\"far2\" depth=\"78\"/>";
str = str + "<object tile=\"road_ru\" x=\"3180\" y=\"1380\" plane=\"far2\" depth=\"79\"/>";
str = str + "<object tile=\"road_lu\" x=\"3080\" y=\"1380\" plane=\"far2\" depth=\"80\"/>";
str = str + "<object tile=\"road_rd\" x=\"3460\" y=\"970\" plane=\"far2\" depth=\"81\"/>";
str = str + "<object tile=\"road_ld\" x=\"3360\" y=\"970\" plane=\"far2\" depth=\"82\"/>";
str = str + "<object tile=\"road_l3\" x=\"3360\" y=\"870\" plane=\"far2\" depth=\"83\"/>";
str = str + "<object tile=\"road_d_r\" x=\"3460\" y=\"870\" plane=\"far2\" depth=\"84\"/>";
str = str + "<object tile=\"road_lu\" x=\"3360\" y=\"770\" plane=\"far2\" depth=\"85\"/>";
str = str + "<object tile=\"road_u2\" x=\"3460\" y=\"770\" plane=\"far2\" depth=\"86\"/>";
str = str + "<object tile=\"road_d1\" x=\"3560\" y=\"870\" plane=\"far2\" depth=\"87\"/>";
str = str + "<object tile=\"road_u2\" x=\"3560\" y=\"770\" plane=\"far2\" depth=\"88\"/>";
str = str + "<object tile=\"road_d1\" x=\"3660\" y=\"870\" plane=\"far2\" depth=\"89\"/>";
str = str + "<object tile=\"road_rd\" x=\"3760\" y=\"860\" plane=\"far2\" depth=\"90\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3660\" y=\"770\" plane=\"far2\" depth=\"91\"/>";
str = str + "<object tile=\"road_r1\" x=\"3760\" y=\"770\" plane=\"far2\" depth=\"92\"/>";
str = str + "<object tile=\"road_r1\" x=\"3760\" y=\"670\" plane=\"far2\" depth=\"93\"/>";
str = str + "<object tile=\"road_l3\" x=\"3660\" y=\"670\" plane=\"far2\" depth=\"94\"/>";
str = str + "<object tile=\"road_l3\" x=\"3660\" y=\"570\" plane=\"far2\" depth=\"95\"/>";
str = str + "<object tile=\"road_r1\" x=\"3760\" y=\"570\" plane=\"far2\" depth=\"96\"/>";
str = str + "<object tile=\"road_l3\" x=\"3660\" y=\"470\" plane=\"far2\" depth=\"97\"/>";
str = str + "<object tile=\"road_r1\" x=\"3760\" y=\"470\" plane=\"far2\" depth=\"98\"/>";
str = str + "<object tile=\"road_r1\" x=\"3760\" y=\"370\" plane=\"far2\" depth=\"99\"/>";
str = str + "<object tile=\"road_l3\" x=\"3660\" y=\"370\" plane=\"far2\" depth=\"100\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1880\" plane=\"far2\" depth=\"101\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1880\" plane=\"far2\" depth=\"102\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1980\" plane=\"far2\" depth=\"103\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1980\" plane=\"far2\" depth=\"104\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2080\" plane=\"far2\" depth=\"105\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2080\" plane=\"far2\" depth=\"106\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2180\" plane=\"far2\" depth=\"107\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2180\" plane=\"far2\" depth=\"108\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2280\" plane=\"far2\" depth=\"109\"/>";
str = str + "<object tile=\"road_u_r\" x=\"2380\" y=\"2280\" plane=\"far2\" depth=\"110\"/>";
str = str + "<object tile=\"road_d_r\" x=\"2380\" y=\"2380\" plane=\"far2\" depth=\"111\"/>";
str = str + "<object tile=\"road_u2\" x=\"2480\" y=\"2280\" plane=\"far2\" depth=\"112\"/>";
str = str + "<object tile=\"road_d1\" x=\"2480\" y=\"2380\" plane=\"far2\" depth=\"113\"/>";
str = str + "<object tile=\"road_d1\" x=\"2580\" y=\"2380\" plane=\"far2\" depth=\"114\"/>";
str = str + "<object tile=\"road_u2\" x=\"2580\" y=\"2280\" plane=\"far2\" depth=\"115\"/>";
str = str + "<object tile=\"road_u2\" x=\"2680\" y=\"2280\" plane=\"far2\" depth=\"116\"/>";
str = str + "<object tile=\"road_d1\" x=\"2680\" y=\"2380\" plane=\"far2\" depth=\"117\"/>";
str = str + "<object tile=\"road_d1\" x=\"2780\" y=\"2380\" plane=\"far2\" depth=\"118\"/>";
str = str + "<object tile=\"road_u2\" x=\"2780\" y=\"2280\" plane=\"far2\" depth=\"119\"/>";
str = str + "<object tile=\"road_d1\" x=\"2880\" y=\"2380\" plane=\"far2\" depth=\"120\"/>";
str = str + "<object tile=\"road_u2\" x=\"2880\" y=\"2280\" plane=\"far2\" depth=\"121\"/>";
str = str + "<object tile=\"road_d1\" x=\"2980\" y=\"2380\" plane=\"far2\" depth=\"122\"/>";
str = str + "<object tile=\"road_u2\" x=\"2980\" y=\"2280\" plane=\"far2\" depth=\"123\"/>";
str = str + "<object tile=\"road_d1\" x=\"3080\" y=\"2380\" plane=\"far2\" depth=\"124\"/>";
str = str + "<object tile=\"road_u2\" x=\"3080\" y=\"2280\" plane=\"far2\" depth=\"125\"/>";
str = str + "<object tile=\"road_d1\" x=\"3180\" y=\"2380\" plane=\"far2\" depth=\"126\"/>";
str = str + "<object tile=\"road_u2\" x=\"3180\" y=\"2280\" plane=\"far2\" depth=\"127\"/>";
str = str + "<object tile=\"road_d1\" x=\"3280\" y=\"2380\" plane=\"far2\" depth=\"128\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3280\" y=\"2280\" plane=\"far2\" depth=\"129\"/>";
str = str + "<object tile=\"road_rd\" x=\"3380\" y=\"2380\" plane=\"far2\" depth=\"130\"/>";
str = str + "<object tile=\"road_r1\" x=\"3380\" y=\"2280\" plane=\"far2\" depth=\"131\"/>";
str = str + "<object tile=\"road_ru\" x=\"3380\" y=\"2180\" plane=\"far2\" depth=\"132\"/>";
str = str + "<object tile=\"road_lu\" x=\"3280\" y=\"2180\" plane=\"far2\" depth=\"133\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2380\" plane=\"far2\" depth=\"134\"/>";
str = str + "<object tile=\"road_u_l\" x=\"2280\" y=\"2480\" plane=\"far2\" depth=\"135\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2480\" plane=\"far2\" depth=\"136\"/>";
str = str + "<object tile=\"road_d_l\" x=\"2280\" y=\"2580\" plane=\"far2\" depth=\"137\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2580\" plane=\"far2\" depth=\"138\"/>";
str = str + "<object tile=\"road_d1\" x=\"2180\" y=\"2580\" plane=\"far2\" depth=\"139\"/>";
str = str + "<object tile=\"road_u2\" x=\"2180\" y=\"2480\" plane=\"far2\" depth=\"140\"/>";
str = str + "<object tile=\"road_u2\" x=\"2080\" y=\"2480\" plane=\"far2\" depth=\"141\"/>";
str = str + "<object tile=\"road_u2\" x=\"1980\" y=\"2480\" plane=\"far2\" depth=\"142\"/>";
str = str + "<object tile=\"road_u2\" x=\"1880\" y=\"2480\" plane=\"far2\" depth=\"143\"/>";
str = str + "<object tile=\"road_u2\" x=\"1780\" y=\"2480\" plane=\"far2\" depth=\"144\"/>";
str = str + "<object tile=\"road_u2\" x=\"1680\" y=\"2480\" plane=\"far2\" depth=\"145\"/>";
str = str + "<object tile=\"road_u2\" x=\"1580\" y=\"2480\" plane=\"far2\" depth=\"146\"/>";
str = str + "<object tile=\"road_u2\" x=\"1480\" y=\"2480\" plane=\"far2\" depth=\"147\"/>";
str = str + "<object tile=\"road_l3\" x=\"1380\" y=\"2580\" plane=\"far2\" depth=\"148\"/>";
str = str + "<object tile=\"road_l3\" x=\"1380\" y=\"2680\" plane=\"far2\" depth=\"149\"/>";
str = str + "<object tile=\"road_l3\" x=\"1380\" y=\"2780\" plane=\"far2\" depth=\"150\"/>";
str = str + "<object tile=\"road_ld\" x=\"1380\" y=\"2880\" plane=\"far2\" depth=\"151\"/>";
str = str + "<object tile=\"road_rd\" x=\"1480\" y=\"2880\" plane=\"far2\" depth=\"152\"/>";
str = str + "<object tile=\"road_r1\" x=\"1480\" y=\"2780\" plane=\"far2\" depth=\"153\"/>";
str = str + "<object tile=\"road_r1\" x=\"1480\" y=\"2680\" plane=\"far2\" depth=\"154\"/>";
str = str + "<object tile=\"road_d_r\" x=\"1480\" y=\"2580\" plane=\"far2\" depth=\"155\"/>";
str = str + "<object tile=\"road_lu\" x=\"1380\" y=\"2480\" plane=\"far2\" depth=\"156\"/>";
str = str + "<object tile=\"road_d1\" x=\"1580\" y=\"2580\" plane=\"far2\" depth=\"157\"/>";
str = str + "<object tile=\"road_d1\" x=\"1680\" y=\"2580\" plane=\"far2\" depth=\"158\"/>";
str = str + "<object tile=\"road_d1\" x=\"1780\" y=\"2580\" plane=\"far2\" depth=\"159\"/>";
str = str + "<object tile=\"road_d1\" x=\"1880\" y=\"2580\" plane=\"far2\" depth=\"160\"/>";
str = str + "<object tile=\"road_d1\" x=\"1980\" y=\"2580\" plane=\"far2\" depth=\"161\"/>";
str = str + "<object tile=\"road_d1\" x=\"2080\" y=\"2580\" plane=\"far2\" depth=\"162\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2680\" plane=\"far2\" depth=\"163\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2680\" plane=\"far2\" depth=\"164\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2780\" plane=\"far2\" depth=\"165\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2880\" plane=\"far2\" depth=\"166\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2980\" plane=\"far2\" depth=\"167\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"3080\" plane=\"far2\" depth=\"168\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"3180\" plane=\"far2\" depth=\"169\"/>";
str = str + "<object tile=\"road_u_r\" x=\"2380\" y=\"3280\" plane=\"far2\" depth=\"170\"/>";
str = str + "<object tile=\"road_u2\" x=\"2480\" y=\"3280\" plane=\"far2\" depth=\"171\"/>";
str = str + "<object tile=\"road_u2\" x=\"2580\" y=\"3280\" plane=\"far2\" depth=\"172\"/>";
str = str + "<object tile=\"road_u2\" x=\"2680\" y=\"3280\" plane=\"far2\" depth=\"173\"/>";
str = str + "<object tile=\"road_ru\" x=\"2780\" y=\"3280\" plane=\"far2\" depth=\"174\"/>";
str = str + "<object tile=\"road_rd\" x=\"2780\" y=\"3380\" plane=\"far2\" depth=\"175\"/>";
str = str + "<object tile=\"road_d1\" x=\"2680\" y=\"3380\" plane=\"far2\" depth=\"176\"/>";
str = str + "<object tile=\"road_d1\" x=\"2580\" y=\"3380\" plane=\"far2\" depth=\"177\"/>";
str = str + "<object tile=\"road_d1\" x=\"2480\" y=\"3380\" plane=\"far2\" depth=\"178\"/>";
str = str + "<object tile=\"road_d1\" x=\"2380\" y=\"3380\" plane=\"far2\" depth=\"179\"/>";
str = str + "<object tile=\"road_ld\" x=\"2280\" y=\"3380\" plane=\"far2\" depth=\"180\"/>";
str = str + "<object tile=\"road_d_l\" x=\"2280\" y=\"3280\" plane=\"far2\" depth=\"181\"/>";
str = str + "<object tile=\"road_u_l\" x=\"2280\" y=\"3180\" plane=\"far2\" depth=\"182\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"3080\" plane=\"far2\" depth=\"183\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2980\" plane=\"far2\" depth=\"184\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2880\" plane=\"far2\" depth=\"185\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2780\" plane=\"far2\" depth=\"186\"/>";
str = str + "<object tile=\"road_d1\" x=\"2180\" y=\"3280\" plane=\"far2\" depth=\"187\"/>";
str = str + "<object tile=\"road_u2\" x=\"2180\" y=\"3180\" plane=\"far2\" depth=\"188\"/>";
str = str + "<object tile=\"road_d1\" x=\"2080\" y=\"3280\" plane=\"far2\" depth=\"189\"/>";
str = str + "<object tile=\"road_u2\" x=\"2080\" y=\"3180\" plane=\"far2\" depth=\"190\"/>";
str = str + "<object tile=\"road_d1\" x=\"1980\" y=\"3280\" plane=\"far2\" depth=\"191\"/>";
str = str + "<object tile=\"road_u2\" x=\"1980\" y=\"3180\" plane=\"far2\" depth=\"192\"/>";
str = str + "<object tile=\"road_u2\" x=\"1880\" y=\"3180\" plane=\"far2\" depth=\"193\"/>";
str = str + "<object tile=\"road_d1\" x=\"1880\" y=\"3280\" plane=\"far2\" depth=\"194\"/>";
str = str + "<object tile=\"road_ld\" x=\"1780\" y=\"3280\" plane=\"far2\" depth=\"195\"/>";
str = str + "<object tile=\"road_lu\" x=\"1780\" y=\"3180\" plane=\"far2\" depth=\"196\"/>";
str = str + "<object tile=\"house_med1\" x=\"1710\" y=\"3080\" plane=\"far\" depth=\"197\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1340\" y=\"3470\" plane=\"far\" depth=\"198\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1410\" y=\"3470\" plane=\"far\" depth=\"199\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1480\" y=\"3470\" plane=\"far\" depth=\"200\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1270\" y=\"2910\" plane=\"far\" depth=\"201\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1340\" y=\"2910\" plane=\"far\" depth=\"202\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1530\" y=\"2910\" plane=\"far\" depth=\"203\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1600\" y=\"2910\" plane=\"far\" depth=\"204\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1670\" y=\"2910\" plane=\"far\" depth=\"205\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1740\" y=\"2910\" plane=\"far\" depth=\"206\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1810\" y=\"2910\" plane=\"far\" depth=\"207\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1850\" y=\"2930\" plane=\"far\" depth=\"208\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1850\" y=\"3000\" plane=\"far\" depth=\"209\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1850\" y=\"3070\" plane=\"far\" depth=\"210\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1740\" y=\"3260\" plane=\"far\" depth=\"211\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1740\" y=\"3330\" plane=\"far\" depth=\"212\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1740\" y=\"3400\" plane=\"far\" depth=\"213\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1550\" y=\"3470\" plane=\"far\" depth=\"214\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1620\" y=\"3470\" plane=\"far\" depth=\"215\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1690\" y=\"3470\" plane=\"far\" depth=\"216\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1520\" y=\"2930\" plane=\"far\" depth=\"217\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1520\" y=\"3000\" plane=\"far\" depth=\"218\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1810\" y=\"3130\" plane=\"far\" depth=\"219\"/>";
str = str + "<object tile=\"oil_barrel1\" x=\"1580\" y=\"2970\" plane=\"far\" depth=\"220\"/>";
str = str + "<object tile=\"oil_barrel1\" x=\"1690\" y=\"2970\" plane=\"far\" depth=\"221\"/>";
str = str + "<object tile=\"tower_guard\" x=\"1790\" y=\"2950\" plane=\"far\" depth=\"222\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"2920\" plane=\"far\" depth=\"223\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"2990\" plane=\"far\" depth=\"224\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"3060\" plane=\"far\" depth=\"225\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"3130\" plane=\"far\" depth=\"226\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"3200\" plane=\"far\" depth=\"227\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"3270\" plane=\"far\" depth=\"228\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"3340\" plane=\"far\" depth=\"229\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"3410\" plane=\"far\" depth=\"230\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1270\" y=\"3470\" plane=\"far\" depth=\"231\"/>";
str = str + "<object tile=\"tower_water\" x=\"1620\" y=\"3290\" plane=\"far\" depth=\"232\"/>";
str = str + "<object tile=\"heliPad\" x=\"1370\" y=\"3270\" plane=\"far\" depth=\"233\"/>";
str = str + "<object tile=\"house_med3\" x=\"1310\" y=\"2950\" plane=\"far\" depth=\"234\"/>";
str = str + "<object tile=\"house_med4\" x=\"1310\" y=\"3050\" plane=\"far\" depth=\"235\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1310\" y=\"3150\" plane=\"far\" depth=\"236\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3420\" plane=\"far\" depth=\"237\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3460\" plane=\"far\" depth=\"238\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3500\" plane=\"far\" depth=\"239\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3100\" plane=\"far\" depth=\"240\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3140\" plane=\"far\" depth=\"241\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3180\" plane=\"far\" depth=\"242\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3220\" plane=\"far\" depth=\"243\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3260\" plane=\"far\" depth=\"244\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2870\" y=\"3530\" plane=\"far\" depth=\"245\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2910\" y=\"3530\" plane=\"far\" depth=\"246\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2950\" y=\"3530\" plane=\"far\" depth=\"247\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2990\" y=\"3530\" plane=\"far\" depth=\"248\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3030\" y=\"3530\" plane=\"far\" depth=\"249\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3070\" y=\"3530\" plane=\"far\" depth=\"250\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3110\" y=\"3530\" plane=\"far\" depth=\"251\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3150\" y=\"3530\" plane=\"far\" depth=\"252\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3190\" y=\"3530\" plane=\"far\" depth=\"253\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3230\" y=\"3530\" plane=\"far\" depth=\"254\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3270\" y=\"3530\" plane=\"far\" depth=\"255\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2870\" y=\"3100\" plane=\"far\" depth=\"256\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2910\" y=\"3100\" plane=\"far\" depth=\"257\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2950\" y=\"3100\" plane=\"far\" depth=\"258\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2990\" y=\"3100\" plane=\"far\" depth=\"259\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3030\" y=\"3100\" plane=\"far\" depth=\"260\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3070\" y=\"3100\" plane=\"far\" depth=\"261\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3110\" y=\"3100\" plane=\"far\" depth=\"262\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3150\" y=\"3100\" plane=\"far\" depth=\"263\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3190\" y=\"3100\" plane=\"far\" depth=\"264\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3230\" y=\"3100\" plane=\"far\" depth=\"265\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3270\" y=\"3100\" plane=\"far\" depth=\"266\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3100\" plane=\"far\" depth=\"267\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3140\" plane=\"far\" depth=\"268\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3180\" plane=\"far\" depth=\"269\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3220\" plane=\"far\" depth=\"270\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3260\" plane=\"far\" depth=\"271\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3300\" plane=\"far\" depth=\"272\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3340\" plane=\"far\" depth=\"273\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3380\" plane=\"far\" depth=\"274\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3420\" plane=\"far\" depth=\"275\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3460\" plane=\"far\" depth=\"276\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3500\" plane=\"far\" depth=\"277\"/>";
str = str + "<object tile=\"tent2\" x=\"3250\" y=\"3490\" plane=\"far\" depth=\"278\"/>";
str = str + "<object tile=\"tent2\" x=\"3250\" y=\"3440\" plane=\"far\" depth=\"279\"/>";
str = str + "<object tile=\"tent2\" x=\"3250\" y=\"3390\" plane=\"far\" depth=\"280\"/>";
str = str + "<object tile=\"tent2\" x=\"3250\" y=\"3340\" plane=\"far\" depth=\"281\"/>";
str = str + "<object tile=\"tent2\" x=\"3160\" y=\"3490\" plane=\"far\" depth=\"282\"/>";
str = str + "<object tile=\"tent2\" x=\"3160\" y=\"3440\" plane=\"far\" depth=\"283\"/>";
str = str + "<object tile=\"tent2\" x=\"3160\" y=\"3390\" plane=\"far\" depth=\"284\"/>";
str = str + "<object tile=\"tent2\" x=\"3160\" y=\"3340\" plane=\"far\" depth=\"285\"/>";
str = str + "<object tile=\"tent1\" x=\"2900\" y=\"3220\" plane=\"far\" depth=\"286\"/>";
str = str + "<object tile=\"tent1\" x=\"2940\" y=\"3220\" plane=\"far\" depth=\"287\"/>";
str = str + "<object tile=\"tent1\" x=\"2980\" y=\"3220\" plane=\"far\" depth=\"288\"/>";
str = str + "<object tile=\"tent1\" x=\"3020\" y=\"3220\" plane=\"far\" depth=\"289\"/>";
str = str + "<object tile=\"tent1\" x=\"2900\" y=\"3130\" plane=\"far\" depth=\"290\"/>";
str = str + "<object tile=\"tent1\" x=\"2940\" y=\"3130\" plane=\"far\" depth=\"291\"/>";
str = str + "<object tile=\"tent1\" x=\"2980\" y=\"3130\" plane=\"far\" depth=\"292\"/>";
str = str + "<object tile=\"tent1\" x=\"3020\" y=\"3130\" plane=\"far\" depth=\"293\"/>";
str = str + "<object tile=\"tent1\" x=\"3250\" y=\"3220\" plane=\"far\" depth=\"294\"/>";
str = str + "<object tile=\"tent1\" x=\"3210\" y=\"3220\" plane=\"far\" depth=\"295\"/>";
str = str + "<object tile=\"tent1\" x=\"3170\" y=\"3220\" plane=\"far\" depth=\"296\"/>";
str = str + "<object tile=\"tent1\" x=\"3130\" y=\"3220\" plane=\"far\" depth=\"297\"/>";
str = str + "<object tile=\"tent1\" x=\"3130\" y=\"3130\" plane=\"far\" depth=\"298\"/>";
str = str + "<object tile=\"tent1\" x=\"3170\" y=\"3130\" plane=\"far\" depth=\"299\"/>";
str = str + "<object tile=\"tent1\" x=\"3210\" y=\"3130\" plane=\"far\" depth=\"300\"/>";
str = str + "<object tile=\"tent1\" x=\"3250\" y=\"3130\" plane=\"far\" depth=\"301\"/>";
str = str + "<object tile=\"tower_water\" x=\"2890\" y=\"3420\" plane=\"far\" depth=\"302\"/>";
str = str + "<object tile=\"house_sm2\" x=\"2960\" y=\"3450\" plane=\"far\" depth=\"303\"/>";
str = str + "<object tile=\"house_big2\" x=\"3250\" y=\"1810\" plane=\"far\" depth=\"304\"/>";
str = str + "<object tile=\"tower_water\" x=\"3230\" y=\"2180\" plane=\"far\" depth=\"305\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3160\" y=\"2270\" plane=\"far\" depth=\"306\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3370\" y=\"1770\" plane=\"far\" depth=\"307\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3300\" y=\"1770\" plane=\"far\" depth=\"308\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3230\" y=\"1770\" plane=\"far\" depth=\"309\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3160\" y=\"1770\" plane=\"far\" depth=\"310\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3090\" y=\"1770\" plane=\"far\" depth=\"311\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"1790\" plane=\"far\" depth=\"312\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"1860\" plane=\"far\" depth=\"313\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"1930\" plane=\"far\" depth=\"314\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"2000\" plane=\"far\" depth=\"315\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"2070\" plane=\"far\" depth=\"316\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"2140\" plane=\"far\" depth=\"317\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"2210\" plane=\"far\" depth=\"318\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3090\" y=\"2270\" plane=\"far\" depth=\"319\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3440\" y=\"1770\" plane=\"far\" depth=\"320\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3480\" y=\"1790\" plane=\"far\" depth=\"321\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3480\" y=\"1860\" plane=\"far\" depth=\"322\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3420\" y=\"2290\" plane=\"far\" depth=\"323\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3420\" y=\"2360\" plane=\"far\" depth=\"324\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3420\" y=\"2430\" plane=\"far\" depth=\"325\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3230\" y=\"2270\" plane=\"far\" depth=\"326\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3630\" y=\"2060\" plane=\"far\" depth=\"327\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3560\" y=\"2060\" plane=\"far\" depth=\"328\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3770\" y=\"2060\" plane=\"far\" depth=\"329\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3700\" y=\"2060\" plane=\"far\" depth=\"330\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3570\" y=\"2570\" plane=\"far\" depth=\"331\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3500\" y=\"2570\" plane=\"far\" depth=\"332\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3420\" y=\"2500\" plane=\"far\" depth=\"333\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3430\" y=\"2570\" plane=\"far\" depth=\"334\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2080\" plane=\"far\" depth=\"335\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2150\" plane=\"far\" depth=\"336\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2220\" plane=\"far\" depth=\"337\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2290\" plane=\"far\" depth=\"338\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2360\" plane=\"far\" depth=\"339\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2430\" plane=\"far\" depth=\"340\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2500\" plane=\"far\" depth=\"341\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3780\" y=\"2570\" plane=\"far\" depth=\"342\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3710\" y=\"2570\" plane=\"far\" depth=\"343\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3640\" y=\"2570\" plane=\"far\" depth=\"344\"/>";
str = str + "<object tile=\"house_med3\" x=\"3120\" y=\"1960\" plane=\"far\" depth=\"345\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3180\" y=\"2070\" plane=\"far\" depth=\"346\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3180\" y=\"2100\" plane=\"far\" depth=\"347\"/>";
str = str + "<object tile=\"house_sm1\" x=\"3160\" y=\"2130\" plane=\"far\" depth=\"348\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3460\" y=\"2290\" plane=\"far\" depth=\"349\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3500\" y=\"2290\" plane=\"far\" depth=\"350\"/>";
str = str + "<object tile=\"house_big1\" x=\"3520\" y=\"2260\" plane=\"far\" depth=\"351\"/>";
str = str + "<object tile=\"house_med2\" x=\"3710\" y=\"2050\" plane=\"far\" depth=\"352\"/>";
str = str + "<object tile=\"house_sm1\" x=\"3780\" y=\"2160\" plane=\"far\" depth=\"353\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3670\" y=\"2290\" plane=\"far\" depth=\"354\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3700\" y=\"2290\" plane=\"far\" depth=\"355\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3730\" y=\"2290\" plane=\"far\" depth=\"356\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3760\" y=\"2290\" plane=\"far\" depth=\"357\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3790\" y=\"2290\" plane=\"far\" depth=\"358\"/>";
str = str + "<object tile=\"house_med5\" x=\"3450\" y=\"2440\" plane=\"far\" depth=\"359\"/>";
str = str + "<object tile=\"house_sm1\" x=\"3570\" y=\"2490\" plane=\"far\" depth=\"360\"/>";
str = str + "<object tile=\"house_med1\" x=\"3610\" y=\"2470\" plane=\"far\" depth=\"361\"/>";
str = str + "<object tile=\"house_sm2\" x=\"3700\" y=\"2480\" plane=\"far\" depth=\"362\"/>";
str = str + "<object tile=\"house_sm1\" x=\"3780\" y=\"2300\" plane=\"far\" depth=\"363\"/>";
str = str + "<object tile=\"house_sm2\" x=\"3730\" y=\"2300\" plane=\"far\" depth=\"364\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1240\" y=\"1780\" plane=\"far\" depth=\"365\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1310\" y=\"1780\" plane=\"far\" depth=\"366\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1030\" y=\"1780\" plane=\"far\" depth=\"367\"/>";
str = str + "<object tile=\"wall_big2\" x=\"960\" y=\"1780\" plane=\"far\" depth=\"368\"/>";
str = str + "<object tile=\"wall_big2\" x=\"890\" y=\"1780\" plane=\"far\" depth=\"369\"/>";
str = str + "<object tile=\"wall_big2\" x=\"820\" y=\"1780\" plane=\"far\" depth=\"370\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1380\" y=\"1780\" plane=\"far\" depth=\"371\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1450\" y=\"1780\" plane=\"far\" depth=\"372\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"1800\" plane=\"far\" depth=\"373\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"1870\" plane=\"far\" depth=\"374\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"1800\" plane=\"far\" depth=\"375\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"1870\" plane=\"far\" depth=\"376\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"1940\" plane=\"far\" depth=\"377\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"2010\" plane=\"far\" depth=\"378\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"2080\" plane=\"far\" depth=\"379\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"1940\" plane=\"far\" depth=\"380\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"2010\" plane=\"far\" depth=\"381\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"2080\" plane=\"far\" depth=\"382\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"2150\" plane=\"far\" depth=\"383\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"2150\" plane=\"far\" depth=\"384\"/>";
str = str + "<object tile=\"wall_big2\" x=\"890\" y=\"2290\" plane=\"far\" depth=\"385\"/>";
str = str + "<object tile=\"wall_big2\" x=\"960\" y=\"2290\" plane=\"far\" depth=\"386\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1030\" y=\"2290\" plane=\"far\" depth=\"387\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1100\" y=\"2290\" plane=\"far\" depth=\"388\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1170\" y=\"2290\" plane=\"far\" depth=\"389\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1240\" y=\"2290\" plane=\"far\" depth=\"390\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1310\" y=\"2290\" plane=\"far\" depth=\"391\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1380\" y=\"2290\" plane=\"far\" depth=\"392\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"2220\" plane=\"far\" depth=\"393\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"2220\" plane=\"far\" depth=\"394\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1450\" y=\"2290\" plane=\"far\" depth=\"395\"/>";
str = str + "<object tile=\"wall_big2\" x=\"820\" y=\"2290\" plane=\"far\" depth=\"396\"/>";
str = str + "<object tile=\"house_big1\" x=\"850\" y=\"1800\" plane=\"far\" depth=\"397\"/>";
str = str + "<object tile=\"house_med3\" x=\"860\" y=\"1930\" plane=\"far\" depth=\"398\"/>";
str = str + "<object tile=\"house_med4\" x=\"990\" y=\"2050\" plane=\"far\" depth=\"399\"/>";
str = str + "<object tile=\"house_big1\" x=\"840\" y=\"2010\" plane=\"far\" depth=\"400\"/>";
str = str + "<object tile=\"house_med3\" x=\"860\" y=\"2140\" plane=\"far\" depth=\"401\"/>";
str = str + "<object tile=\"house_med4\" x=\"1240\" y=\"1810\" plane=\"far\" depth=\"402\"/>";
str = str + "<object tile=\"house_big1\" x=\"1340\" y=\"1800\" plane=\"far\" depth=\"403\"/>";
str = str + "<object tile=\"house_med5\" x=\"1380\" y=\"1920\" plane=\"far\" depth=\"404\"/>";
str = str + "<object tile=\"house_big1\" x=\"1350\" y=\"2010\" plane=\"far\" depth=\"405\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1200\" y=\"2210\" plane=\"far\" depth=\"406\"/>";
str = str + "<object tile=\"house_med2\" x=\"1250\" y=\"2160\" plane=\"far\" depth=\"407\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1660\" y=\"570\" plane=\"far\" depth=\"408\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1590\" y=\"570\" plane=\"far\" depth=\"409\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1520\" y=\"570\" plane=\"far\" depth=\"410\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1450\" y=\"570\" plane=\"far\" depth=\"411\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1380\" y=\"570\" plane=\"far\" depth=\"412\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1310\" y=\"570\" plane=\"far\" depth=\"413\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1240\" y=\"570\" plane=\"far\" depth=\"414\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1170\" y=\"570\" plane=\"far\" depth=\"415\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1100\" y=\"570\" plane=\"far\" depth=\"416\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1030\" y=\"570\" plane=\"far\" depth=\"417\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1700\" y=\"590\" plane=\"far\" depth=\"418\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1700\" y=\"660\" plane=\"far\" depth=\"419\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1700\" y=\"730\" plane=\"far\" depth=\"420\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"590\" plane=\"far\" depth=\"421\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"660\" plane=\"far\" depth=\"422\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"730\" plane=\"far\" depth=\"423\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"800\" plane=\"far\" depth=\"424\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"870\" plane=\"far\" depth=\"425\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"940\" plane=\"far\" depth=\"426\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"1010\" plane=\"far\" depth=\"427\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"1080\" plane=\"far\" depth=\"428\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1700\" y=\"940\" plane=\"far\" depth=\"429\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1700\" y=\"1010\" plane=\"far\" depth=\"430\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1700\" y=\"1080\" plane=\"far\" depth=\"431\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1030\" y=\"1150\" plane=\"far\" depth=\"432\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1100\" y=\"1150\" plane=\"far\" depth=\"433\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1170\" y=\"1150\" plane=\"far\" depth=\"434\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1240\" y=\"1150\" plane=\"far\" depth=\"435\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1310\" y=\"1150\" plane=\"far\" depth=\"436\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1380\" y=\"1150\" plane=\"far\" depth=\"437\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1450\" y=\"1150\" plane=\"far\" depth=\"438\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1520\" y=\"1150\" plane=\"far\" depth=\"439\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1590\" y=\"1150\" plane=\"far\" depth=\"440\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1660\" y=\"1150\" plane=\"far\" depth=\"441\"/>";
str = str + "<object tile=\"house_med4\" x=\"1440\" y=\"620\" plane=\"far\" depth=\"442\"/>";
str = str + "<object tile=\"house_med4\" x=\"1190\" y=\"620\" plane=\"far\" depth=\"443\"/>";
str = str + "<object tile=\"house_med2\" x=\"1530\" y=\"1020\" plane=\"far\" depth=\"444\"/>";
str = str + "<object tile=\"house_med1\" x=\"1310\" y=\"1050\" plane=\"far\" depth=\"445\"/>";
str = str + "<object tile=\"house_big1\" x=\"1560\" y=\"580\" plane=\"far\" depth=\"446\"/>";
str = str + "<object tile=\"house_big1\" x=\"1290\" y=\"580\" plane=\"far\" depth=\"447\"/>";
str = str + "<object tile=\"house_big1\" x=\"1050\" y=\"580\" plane=\"far\" depth=\"448\"/>";
str = str + "<object tile=\"house_big1\" x=\"1390\" y=\"990\" plane=\"far\" depth=\"449\"/>";
str = str + "<object tile=\"house_med3\" x=\"1060\" y=\"700\" plane=\"far\" depth=\"450\"/>";
str = str + "<object tile=\"house_big1\" x=\"1050\" y=\"800\" plane=\"far\" depth=\"451\"/>";
str = str + "<object tile=\"house_med3\" x=\"1060\" y=\"930\" plane=\"far\" depth=\"452\"/>";
str = str + "<object tile=\"house_med4\" x=\"1060\" y=\"1030\" plane=\"far\" depth=\"453\"/>";
str = str + "<object tile=\"house_big1\" x=\"1160\" y=\"990\" plane=\"far\" depth=\"454\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3520\" y=\"1010\" plane=\"far\" depth=\"455\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3290\" y=\"1010\" plane=\"far\" depth=\"456\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3220\" y=\"1010\" plane=\"far\" depth=\"457\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3150\" y=\"1010\" plane=\"far\" depth=\"458\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3080\" y=\"1010\" plane=\"far\" depth=\"459\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3010\" y=\"1010\" plane=\"far\" depth=\"460\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2940\" y=\"1010\" plane=\"far\" depth=\"461\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2870\" y=\"1010\" plane=\"far\" depth=\"462\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2800\" y=\"1010\" plane=\"far\" depth=\"463\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3600\" y=\"1010\" plane=\"far\" depth=\"464\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3670\" y=\"1010\" plane=\"far\" depth=\"465\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3710\" y=\"1030\" plane=\"far\" depth=\"466\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3710\" y=\"1100\" plane=\"far\" depth=\"467\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3710\" y=\"1170\" plane=\"far\" depth=\"468\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3710\" y=\"1240\" plane=\"far\" depth=\"469\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3710\" y=\"1310\" plane=\"far\" depth=\"470\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3050\" y=\"1440\" plane=\"far\" depth=\"471\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3710\" y=\"1380\" plane=\"far\" depth=\"472\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2730\" y=\"1010\" plane=\"far\" depth=\"473\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1030\" plane=\"far\" depth=\"474\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1100\" plane=\"far\" depth=\"475\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1170\" plane=\"far\" depth=\"476\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1240\" plane=\"far\" depth=\"477\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1310\" plane=\"far\" depth=\"478\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1380\" plane=\"far\" depth=\"479\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1450\" plane=\"far\" depth=\"480\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2730\" y=\"1510\" plane=\"far\" depth=\"481\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2800\" y=\"1510\" plane=\"far\" depth=\"482\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2870\" y=\"1510\" plane=\"far\" depth=\"483\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2940\" y=\"1510\" plane=\"far\" depth=\"484\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3010\" y=\"1510\" plane=\"far\" depth=\"485\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3670\" y=\"1440\" plane=\"far\" depth=\"486\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3600\" y=\"1440\" plane=\"far\" depth=\"487\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3530\" y=\"1440\" plane=\"far\" depth=\"488\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3460\" y=\"1440\" plane=\"far\" depth=\"489\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3390\" y=\"1440\" plane=\"far\" depth=\"490\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3320\" y=\"1440\" plane=\"far\" depth=\"491\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3250\" y=\"1440\" plane=\"far\" depth=\"492\"/>";
str = str + "<object tile=\"house_big1\" x=\"3560\" y=\"1030\" plane=\"far\" depth=\"493\"/>";
str = str + "<object tile=\"house_med5\" x=\"3600\" y=\"1160\" plane=\"far\" depth=\"494\"/>";
str = str + "<object tile=\"house_sm2\" x=\"3340\" y=\"1350\" plane=\"far\" depth=\"495\"/>";
str = str + "<object tile=\"house_med4\" x=\"3390\" y=\"1300\" plane=\"far\" depth=\"496\"/>";
str = str + "<object tile=\"house_med1\" x=\"3250\" y=\"1330\" plane=\"far\" depth=\"497\"/>";
str = str + "<object tile=\"house_big1\" x=\"3500\" y=\"1260\" plane=\"far\" depth=\"498\"/>";
str = str + "<object tile=\"house_med4\" x=\"3070\" y=\"1050\" plane=\"far\" depth=\"499\"/>";
str = str + "<object tile=\"house_big1\" x=\"3170\" y=\"1010\" plane=\"far\" depth=\"500\"/>";
str = str + "<object tile=\"house_big2\" x=\"2850\" y=\"1030\" plane=\"far\" depth=\"501\"/>";
str = str + "<object tile=\"house_med3\" x=\"2760\" y=\"1060\" plane=\"far\" depth=\"502\"/>";
str = str + "<object tile=\"house_big1\" x=\"2750\" y=\"1150\" plane=\"far\" depth=\"503\"/>";
str = str + "<object tile=\"house_big1\" x=\"2900\" y=\"1360\" plane=\"far\" depth=\"504\"/>";
str = str + "<object tile=\"house_sm2\" x=\"2850\" y=\"1440\" plane=\"far\" depth=\"505\"/>";
str = str + "<object tile=\"house_med2\" x=\"2750\" y=\"1250\" plane=\"far\" depth=\"506\"/>";
str = str + "<object tile=\"house_med3\" x=\"2750\" y=\"1350\" plane=\"far\" depth=\"507\"/>";
str = str + "<object tile=\"hangar2\" x=\"2420\" y=\"1970\" plane=\"far\" depth=\"508\"/>";
str = str + "<object tile=\"hangar2\" x=\"2420\" y=\"1830\" plane=\"far\" depth=\"509\"/>";
str = str + "<object tile=\"oil_punp2\" x=\"2100\" y=\"2100\" plane=\"far\" depth=\"510\"/>";
str = str + "<object tile=\"oil_punp2\" x=\"2100\" y=\"1980\" plane=\"far\" depth=\"511\"/>";
str = str + "<object tile=\"oil_barrel2\" x=\"2220\" y=\"2050\" plane=\"far\" depth=\"512\"/>";
str = str + "<object tile=\"oil_barrel2\" x=\"2220\" y=\"1920\" plane=\"far\" depth=\"513\"/>";
str = str + "<object tile=\"oil_pump1\" x=\"2440\" y=\"2140\" plane=\"far\" depth=\"514\"/>";
str = str + "<object tile=\"oil_barrel2\" x=\"2450\" y=\"2080\" plane=\"far\" depth=\"515\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3480\" y=\"1930\" plane=\"far\" depth=\"516\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3480\" y=\"2000\" plane=\"far\" depth=\"517\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3490\" y=\"2060\" plane=\"far\" depth=\"518\"/>";
str = str + "<object tile=\"house_med4\" x=\"3520\" y=\"2070\" plane=\"far\" depth=\"519\"/>";
str = str + "<object tile=\"hero1\" x=\"1410\" y=\"3290\" plane=\"far\" depth=\"520\"/>";
str = str + "<object tile=\"host_1\" x=\"2910\" y=\"3270\" plane=\"far\" depth=\"521\"/>";
str = str + "<object tile=\"host_1\" x=\"2950\" y=\"3180\" plane=\"far\" depth=\"522\"/>";
str = str + "<object tile=\"host_1\" x=\"2990\" y=\"3270\" plane=\"far\" depth=\"523\"/>";
str = str + "<object tile=\"host_1\" x=\"3140\" y=\"3350\" plane=\"far\" depth=\"524\"/>";
str = str + "<object tile=\"host_1\" x=\"2990\" y=\"3460\" plane=\"far\" depth=\"525\"/>";
str = str + "<object tile=\"host_1\" x=\"3230\" y=\"3490\" plane=\"far\" depth=\"526\"/>";
str = str + "<object tile=\"host_1\" x=\"3140\" y=\"3450\" plane=\"far\" depth=\"527\"/>";
str = str + "<object tile=\"host_1\" x=\"3140\" y=\"3490\" plane=\"far\" depth=\"528\"/>";
str = str + "<object tile=\"host_1\" x=\"3030\" y=\"3270\" plane=\"far\" depth=\"529\"/>";
str = str + "<object tile=\"host_1\" x=\"3140\" y=\"3190\" plane=\"far\" depth=\"530\"/>";
str = str + "<object tile=\"host_1\" x=\"3180\" y=\"3190\" plane=\"far\" depth=\"531\"/>";
str = str + "<object tile=\"btr_1\" x=\"3530\" y=\"2990\" plane=\"main\" depth=\"532\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-17\" deltay=\"0\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-90\" rtype=\"lin\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"50\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-326\" deltay=\"-1\" mtype=\"lin\" steps=\"163\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-34\" deltay=\"6\" mtype=\"lin\" steps=\"17\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-21\" deltay=\"7\" mtype=\"lin\" steps=\"11\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-16\" deltay=\"15\" mtype=\"lin\" steps=\"10\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-13\" deltay=\"23\" mtype=\"lin\" steps=\"13\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-6\" deltay=\"40\" mtype=\"lin\" steps=\"20\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"lin\" steps=\"62\" repeat=\"-100\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100000\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"433\" deltay=\"-214\" mtype=\"lin\" steps=\"241\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"btr_1\" x=\"3710\" y=\"3290\" plane=\"main\" depth=\"533\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-31\" deltay=\"0\" mtype=\"lin\" steps=\"15\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-90\" rtype=\"lin\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"60\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-482\" deltay=\"-1\" mtype=\"lin\" steps=\"241\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-35\" deltay=\"7\" mtype=\"lin\" steps=\"17\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-24\" deltay=\"12\" mtype=\"lin\" steps=\"13\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-19\" deltay=\"19\" mtype=\"lin\" steps=\"13\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-12\" deltay=\"31\" mtype=\"lin\" steps=\"16\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-5\" deltay=\"26\" mtype=\"lin\" steps=\"13\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-6\" deltay=\"69\" mtype=\"lin\" steps=\"34\" repeat=\"-100\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100000\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"614\" deltay=\"-163\" mtype=\"lin\" steps=\"317\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_2\" x=\"3430\" y=\"3140\" plane=\"main\" depth=\"534\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-127\" deltay=\"2\" mtype=\"lin\" steps=\"63\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-16\" deltay=\"56\" mtype=\"lin\" steps=\"29\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-75\" deltay=\"18\" mtype=\"lin\" steps=\"38\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"1\" deltay=\"59\" mtype=\"lin\" steps=\"29\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-68\" deltay=\"14\" mtype=\"lin\" steps=\"34\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"152\" deltay=\"-10\" mtype=\"lin\" steps=\"76\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"133\" deltay=\"-139\" mtype=\"lin\" steps=\"96\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_2\" x=\"3350\" y=\"3070\" plane=\"main\" depth=\"535\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-68\" deltay=\"24\" mtype=\"lin\" steps=\"36\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-101\" deltay=\"2\" mtype=\"lin\" steps=\"50\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-9\" deltay=\"126\" mtype=\"lin\" steps=\"63\" repeat=\"-100\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"1000\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"178\" deltay=\"-152\" mtype=\"lin\" steps=\"117\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_2\" x=\"3460\" y=\"3210\" plane=\"main\" depth=\"536\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-115\" deltay=\"137\" mtype=\"lin\" steps=\"89\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-52\" deltay=\"37\" mtype=\"lin\" steps=\"31\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-72\" deltay=\"4\" mtype=\"lin\" steps=\"36\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-69\" deltay=\"1\" mtype=\"lin\" steps=\"34\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"11\" deltay=\"-59\" mtype=\"lin\" steps=\"30\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"297\" deltay=\"-120\" mtype=\"lin\" steps=\"160\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_2\" x=\"3460\" y=\"3300\" plane=\"main\" depth=\"537\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-418\" deltay=\"0\" mtype=\"lin\" steps=\"209\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"418\" deltay=\"0\" mtype=\"lin\" steps=\"209\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_2\" x=\"3450\" y=\"3390\" plane=\"main\" depth=\"538\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-106\" deltay=\"61\" mtype=\"lin\" steps=\"61\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-59\" deltay=\"33\" mtype=\"lin\" steps=\"33\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-161\" deltay=\"1\" mtype=\"lin\" steps=\"80\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-76\" deltay=\"-49\" mtype=\"lin\" steps=\"45\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"22\" deltay=\"-137\" mtype=\"lin\" steps=\"69\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"270\" deltay=\"-20\" mtype=\"lin\" steps=\"135\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"110\" deltay=\"111\" mtype=\"lin\" steps=\"78\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK_2\" x=\"3520\" y=\"3260\" plane=\"main\" depth=\"539\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"10\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-230\" deltay=\"4\" mtype=\"lin\" steps=\"76\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"2\" deltay=\"73\" mtype=\"lin\" steps=\"36\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-59\" deltay=\"5\" mtype=\"lin\" steps=\"29\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-23\" deltay=\"41\" mtype=\"lin\" steps=\"23\" repeat=\"-100\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"10000\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"310\" deltay=\"-123\" mtype=\"lin\" steps=\"166\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK_2\" x=\"3420\" y=\"3090\" plane=\"main\" depth=\"540\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"20\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-121\" deltay=\"46\" mtype=\"lin\" steps=\"43\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"60\" mtype=\"lin\" steps=\"20\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-96\" deltay=\"3\" mtype=\"lin\" steps=\"32\" repeat=\"-100\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"10000\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"217\" deltay=\"-109\" mtype=\"lin\" steps=\"80\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_2\" x=\"3260\" y=\"3030\" plane=\"main\" depth=\"541\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-41\" deltay=\"60\" mtype=\"lin\" steps=\"36\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-6\" deltay=\"95\" mtype=\"lin\" steps=\"47\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-84\" deltay=\"1\" mtype=\"lin\" steps=\"42\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-2\" deltay=\"-45\" mtype=\"lin\" steps=\"22\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-109\" deltay=\"53\" mtype=\"lin\" steps=\"60\" repeat=\"-100\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"10000\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"242\" deltay=\"-164\" mtype=\"lin\" steps=\"146\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_2\" x=\"3090\" y=\"3030\" plane=\"main\" depth=\"542\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-16\" deltay=\"108\" mtype=\"lin\" steps=\"54\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-3\" deltay=\"173\" mtype=\"lin\" steps=\"86\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-84\" deltay=\"12\" mtype=\"lin\" steps=\"42\" repeat=\"-100\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"200\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-93\" deltay=\"-45\" mtype=\"lin\" steps=\"51\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"2\" deltay=\"-161\" mtype=\"lin\" steps=\"80\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"194\" deltay=\"-87\" mtype=\"lin\" steps=\"106\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_2\" x=\"3010\" y=\"3020\" plane=\"main\" depth=\"543\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-119\" deltay=\"98\" mtype=\"lin\" steps=\"77\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-2\" deltay=\"158\" mtype=\"lin\" steps=\"79\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"170\" deltay=\"-2\" mtype=\"lin\" steps=\"85\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-154\" mtype=\"lin\" steps=\"77\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-49\" deltay=\"-100\" mtype=\"lin\" steps=\"55\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK_2\" x=\"3080\" y=\"2980\" plane=\"main\" depth=\"544\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"10\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-97\" deltay=\"113\" mtype=\"lin\" steps=\"49\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-7\" deltay=\"113\" mtype=\"lin\" steps=\"37\" repeat=\"-100\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"10000\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"104\" deltay=\"-226\" mtype=\"lin\" steps=\"82\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2410\" y=\"2460\" plane=\"main\" depth=\"545\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1\" deltay=\"80\" mtype=\"lin\" steps=\"40\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"1\" deltay=\"-80\" mtype=\"lin\" steps=\"40\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2550\" y=\"2300\" plane=\"main\" depth=\"546\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"48\" deltay=\"-53\" mtype=\"lin\" steps=\"35\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"28\" deltay=\"58\" mtype=\"lin\" steps=\"32\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-76\" deltay=\"-5\" mtype=\"lin\" steps=\"38\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"2540\" y=\"2110\" plane=\"main\" depth=\"547\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"100\" deltay=\"-67\" mtype=\"lin\" steps=\"60\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-11\" deltay=\"90\" mtype=\"lin\" steps=\"45\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-89\" deltay=\"-23\" mtype=\"lin\" steps=\"45\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2130\" y=\"2400\" plane=\"main\" depth=\"548\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"83\" deltay=\"-16\" mtype=\"lin\" steps=\"42\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-63\" deltay=\"-57\" mtype=\"lin\" steps=\"42\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-20\" deltay=\"73\" mtype=\"lin\" steps=\"37\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2050\" y=\"2290\" plane=\"main\" depth=\"549\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"113\" deltay=\"-33\" mtype=\"lin\" steps=\"58\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"112\" deltay=\"5\" mtype=\"lin\" steps=\"56\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-21\" deltay=\"71\" mtype=\"lin\" steps=\"37\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-204\" deltay=\"-43\" mtype=\"lin\" steps=\"104\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"2130\" y=\"2180\" plane=\"main\" depth=\"550\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"100\" deltay=\"0\" mtype=\"lin\" steps=\"50\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-100\" deltay=\"0\" mtype=\"lin\" steps=\"50\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"2010\" y=\"2110\" plane=\"main\" depth=\"551\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-22\" deltay=\"-54\" mtype=\"lin\" steps=\"29\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"73\" deltay=\"92\" mtype=\"lin\" steps=\"58\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-51\" deltay=\"-38\" mtype=\"lin\" steps=\"31\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2150\" y=\"2070\" plane=\"main\" depth=\"552\"/>";
str = str + "<object tile=\"PZRK\" x=\"2190\" y=\"2080\" plane=\"main\" depth=\"553\"/>";
str = str + "<object tile=\"PZRK\" x=\"2150\" y=\"1960\" plane=\"main\" depth=\"554\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"21\" deltay=\"-102\" mtype=\"lin\" steps=\"52\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-21\" deltay=\"102\" mtype=\"lin\" steps=\"52\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"3610\" y=\"2430\" plane=\"main\" depth=\"555\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-93\" deltay=\"-13\" mtype=\"lin\" steps=\"46\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"93\" deltay=\"13\" mtype=\"lin\" steps=\"46\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"3780\" y=\"2410\" plane=\"main\" depth=\"556\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-92\" deltay=\"-72\" mtype=\"lin\" steps=\"58\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-4\" deltay=\"101\" mtype=\"lin\" steps=\"50\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"96\" deltay=\"-29\" mtype=\"lin\" steps=\"50\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"3120\" y=\"2100\" plane=\"main\" depth=\"557\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"21\" deltay=\"136\" mtype=\"lin\" steps=\"68\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"66\" deltay=\"-17\" mtype=\"lin\" steps=\"34\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-84\" deltay=\"-20\" mtype=\"lin\" steps=\"43\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-3\" deltay=\"-99\" mtype=\"lin\" steps=\"49\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"3140\" y=\"1850\" plane=\"main\" depth=\"558\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"7\" deltay=\"71\" mtype=\"lin\" steps=\"35\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-7\" deltay=\"-71\" mtype=\"lin\" steps=\"35\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"3200\" y=\"1850\" plane=\"main\" depth=\"559\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"3\" deltay=\"72\" mtype=\"lin\" steps=\"36\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-3\" deltay=\"-72\" mtype=\"lin\" steps=\"36\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1190\" y=\"960\" plane=\"main\" depth=\"560\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"85\" deltay=\"-40\" mtype=\"lin\" steps=\"46\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"60\" deltay=\"96\" mtype=\"lin\" steps=\"56\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"77\" deltay=\"-55\" mtype=\"lin\" steps=\"47\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-222\" deltay=\"-1\" mtype=\"lin\" steps=\"111\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"1410\" y=\"780\" plane=\"main\" depth=\"561\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-212\" deltay=\"-14\" mtype=\"lin\" steps=\"106\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"125\" deltay=\"177\" mtype=\"lin\" steps=\"108\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"87\" deltay=\"-163\" mtype=\"lin\" steps=\"92\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1680\" y=\"1030\" plane=\"main\" depth=\"562\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-127\" deltay=\"-26\" mtype=\"lin\" steps=\"64\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"65\" deltay=\"-61\" mtype=\"lin\" steps=\"44\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"62\" deltay=\"87\" mtype=\"lin\" steps=\"53\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1370\" y=\"2200\" plane=\"main\" depth=\"563\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"87\" deltay=\"29\" mtype=\"lin\" steps=\"45\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-87\" deltay=\"-29\" mtype=\"lin\" steps=\"45\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"1320\" y=\"1930\" plane=\"main\" depth=\"564\"/>";
str = str + "<object tile=\"gunner\" x=\"1010\" y=\"1870\" plane=\"main\" depth=\"565\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"20\" deltay=\"68\" mtype=\"lin\" steps=\"35\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"39\" deltay=\"-50\" mtype=\"lin\" steps=\"31\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-59\" deltay=\"-18\" mtype=\"lin\" steps=\"30\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1120\" y=\"2160\" plane=\"main\" depth=\"566\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-114\" deltay=\"20\" mtype=\"lin\" steps=\"57\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"89\" deltay=\"31\" mtype=\"lin\" steps=\"47\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"25\" deltay=\"-51\" mtype=\"lin\" steps=\"28\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"1070\" y=\"2260\" plane=\"main\" depth=\"567\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"104\" deltay=\"-1\" mtype=\"lin\" steps=\"52\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-104\" deltay=\"1\" mtype=\"lin\" steps=\"52\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_2\" x=\"3744\" y=\"3131\" plane=\"main\" depth=\"568\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"300\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-52\" deltay=\"28\" mtype=\"lin\" steps=\"14\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-412\" deltay=\"146\" mtype=\"lin\" steps=\"109\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-183\" deltay=\"7\" mtype=\"lin\" steps=\"45\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-5\" deltay=\"216\" mtype=\"lin\" steps=\"54\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"108\" deltay=\"11\" mtype=\"lin\" steps=\"27\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"9\" deltay=\"-220\" mtype=\"lin\" steps=\"55\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"535\" deltay=\"-188\" mtype=\"lin\" steps=\"141\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_2\" x=\"3664\" y=\"3061\" plane=\"main\" depth=\"569\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"300\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-49\" deltay=\"15\" mtype=\"lin\" steps=\"12\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-353\" deltay=\"105\" mtype=\"lin\" steps=\"92\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-159\" deltay=\"10\" mtype=\"lin\" steps=\"39\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"5\" deltay=\"101\" mtype=\"lin\" steps=\"25\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"226\" deltay=\"-8\" mtype=\"lin\" steps=\"56\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"330\" deltay=\"-223\" mtype=\"lin\" steps=\"99\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_2\" x=\"3774\" y=\"3201\" plane=\"main\" depth=\"570\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"300\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-88\" deltay=\"41\" mtype=\"lin\" steps=\"24\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-434\" deltay=\"62\" mtype=\"lin\" steps=\"109\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-256\" deltay=\"7\" mtype=\"lin\" steps=\"64\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-161\" deltay=\"86\" mtype=\"lin\" steps=\"45\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"5\" deltay=\"177\" mtype=\"lin\" steps=\"44\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"467\" deltay=\"-9\" mtype=\"lin\" steps=\"116\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"467\" deltay=\"-364\" mtype=\"lin\" steps=\"148\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_2\" x=\"3774\" y=\"3291\" plane=\"main\" depth=\"571\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"300\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-38\" deltay=\"5\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-409\" deltay=\"162\" mtype=\"lin\" steps=\"109\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-226\" deltay=\"4\" mtype=\"lin\" steps=\"56\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"17\" deltay=\"-148\" mtype=\"lin\" steps=\"37\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"656\" deltay=\"-23\" mtype=\"lin\" steps=\"164\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_2\" x=\"3764\" y=\"3381\" plane=\"main\" depth=\"572\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"300\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-42\" deltay=\"47\" mtype=\"lin\" steps=\"15\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-426\" deltay=\"129\" mtype=\"lin\" steps=\"111\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-247\" deltay=\"2\" mtype=\"lin\" steps=\"61\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1\" deltay=\"-267\" mtype=\"lin\" steps=\"66\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"611\" deltay=\"2\" mtype=\"lin\" steps=\"152\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"105\" deltay=\"87\" mtype=\"lin\" steps=\"34\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK_2\" x=\"3834\" y=\"3251\" plane=\"main\" depth=\"573\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"300\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-80\" deltay=\"4\" mtype=\"lin\" steps=\"20\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-416\" deltay=\"61\" mtype=\"lin\" steps=\"105\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-219\" deltay=\"1\" mtype=\"lin\" steps=\"54\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-124\" deltay=\"95\" mtype=\"lin\" steps=\"39\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"238\" deltay=\"185\" mtype=\"lin\" steps=\"75\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"601\" deltay=\"-346\" mtype=\"lin\" steps=\"173\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK_2\" x=\"3734\" y=\"3081\" plane=\"main\" depth=\"574\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"300\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-60\" deltay=\"33\" mtype=\"lin\" steps=\"17\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-386\" deltay=\"144\" mtype=\"lin\" steps=\"102\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-195\" deltay=\"14\" mtype=\"lin\" steps=\"48\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"5\" deltay=\"-204\" mtype=\"lin\" steps=\"51\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"636\" deltay=\"13\" mtype=\"lin\" steps=\"159\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"palms3\" x=\"2590\" y=\"2060\" plane=\"nearest\" depth=\"575\"/>";
str = str + "<object tile=\"palms4\" x=\"2580\" y=\"1910\" plane=\"nearest\" depth=\"576\"/>";
str = str + "<object tile=\"palms4\" x=\"2400\" y=\"2180\" plane=\"nearest\" depth=\"577\"/>";
str = str + "<object tile=\"palms5\" x=\"2620\" y=\"2180\" plane=\"nearest\" depth=\"578\"/>";
str = str + "<object tile=\"palms1\" x=\"2640\" y=\"1900\" plane=\"nearest\" depth=\"579\"/>";
str = str + "<object tile=\"palms1\" x=\"2640\" y=\"2270\" plane=\"nearest\" depth=\"580\"/>";
str = str + "<object tile=\"palms4\" x=\"2000\" y=\"2130\" plane=\"nearest\" depth=\"581\"/>";
str = str + "<object tile=\"palms5\" x=\"2110\" y=\"2160\" plane=\"nearest\" depth=\"582\"/>";
str = str + "<object tile=\"palms1\" x=\"2150\" y=\"2380\" plane=\"nearest\" depth=\"583\"/>";
str = str + "<object tile=\"palms1\" x=\"2060\" y=\"2300\" plane=\"nearest\" depth=\"584\"/>";
str = str + "<object tile=\"palms1\" x=\"2060\" y=\"1880\" plane=\"nearest\" depth=\"585\"/>";
str = str + "<object tile=\"palms1\" x=\"2100\" y=\"1870\" plane=\"nearest\" depth=\"586\"/>";
str = str + "<object tile=\"palms1\" x=\"2080\" y=\"1910\" plane=\"nearest\" depth=\"587\"/>";
str = str + "<object tile=\"palms1\" x=\"2140\" y=\"2330\" plane=\"nearest\" depth=\"588\"/>";
str = str + "<object tile=\"palms3\" x=\"2000\" y=\"2010\" plane=\"nearest\" depth=\"589\"/>";
str = str + "<object tile=\"palms5\" x=\"2170\" y=\"1830\" plane=\"nearest\" depth=\"590\"/>";
str = str + "<object tile=\"palms1\" x=\"2170\" y=\"1920\" plane=\"nearest\" depth=\"591\"/>";
str = str + "<object tile=\"palms1\" x=\"3440\" y=\"2360\" plane=\"nearest\" depth=\"592\"/>";
str = str + "<object tile=\"palms1\" x=\"3450\" y=\"2330\" plane=\"nearest\" depth=\"593\"/>";
str = str + "<object tile=\"palms1\" x=\"3450\" y=\"2280\" plane=\"nearest\" depth=\"594\"/>";
str = str + "<object tile=\"palms1\" x=\"3740\" y=\"2330\" plane=\"nearest\" depth=\"595\"/>";
str = str + "<object tile=\"palms3\" x=\"3710\" y=\"2430\" plane=\"nearest\" depth=\"596\"/>";
str = str + "<object tile=\"palms1\" x=\"3550\" y=\"2500\" plane=\"nearest\" depth=\"597\"/>";
str = str + "<object tile=\"palms1\" x=\"3100\" y=\"1880\" plane=\"nearest\" depth=\"598\"/>";
str = str + "<object tile=\"palms5\" x=\"3100\" y=\"1790\" plane=\"nearest\" depth=\"599\"/>";
str = str + "<object tile=\"palms1\" x=\"2730\" y=\"1440\" plane=\"nearest\" depth=\"600\"/>";
str = str + "<object tile=\"palms1\" x=\"2780\" y=\"1450\" plane=\"nearest\" depth=\"601\"/>";
str = str + "<object tile=\"palms4\" x=\"980\" y=\"1800\" plane=\"nearest\" depth=\"602\"/>";
str = str + "<object tile=\"palms5\" x=\"1330\" y=\"2120\" plane=\"nearest\" depth=\"603\"/>";
str = str + "<object tile=\"palms1\" x=\"1390\" y=\"2220\" plane=\"nearest\" depth=\"604\"/>";
str = str + "<object tile=\"palms1\" x=\"1330\" y=\"2220\" plane=\"nearest\" depth=\"605\"/>";
str = str + "<object tile=\"palms1\" x=\"970\" y=\"1930\" plane=\"nearest\" depth=\"606\"/>";
str = str + "<object tile=\"palms3\" x=\"1050\" y=\"2150\" plane=\"nearest\" depth=\"607\"/>";
str = str + "<object tile=\"palms1\" x=\"1020\" y=\"2190\" plane=\"nearest\" depth=\"608\"/>";
str = str + "<object tile=\"palms1\" x=\"970\" y=\"2200\" plane=\"nearest\" depth=\"609\"/>";
str = str + "<object tile=\"palms1\" x=\"1300\" y=\"1900\" plane=\"nearest\" depth=\"610\"/>";
str = str + "<object tile=\"palms5\" x=\"1570\" y=\"3220\" plane=\"nearest\" depth=\"611\"/>";
str = str + "<object tile=\"palms1\" x=\"1640\" y=\"3370\" plane=\"nearest\" depth=\"612\"/>";
str = str + "<object tile=\"palms3\" x=\"1510\" y=\"3290\" plane=\"nearest\" depth=\"613\"/>";
str = str + "<object tile=\"palms3\" x=\"1570\" y=\"960\" plane=\"nearest\" depth=\"614\"/>";
str = str + "<object tile=\"palms1\" x=\"1630\" y=\"1080\" plane=\"nearest\" depth=\"615\"/>";
str = str + "<object tile=\"palms1\" x=\"1660\" y=\"1040\" plane=\"nearest\" depth=\"616\"/>";
str = str + "<object tile=\"palms1\" x=\"1650\" y=\"940\" plane=\"nearest\" depth=\"617\"/>";
str = str + "<object tile=\"palms1\" x=\"1170\" y=\"740\" plane=\"nearest\" depth=\"618\"/>";
str = str + "<object tile=\"palms1\" x=\"2980\" y=\"2410\" plane=\"nearest\" depth=\"619\"/>";
str = str + "<object tile=\"palms3\" x=\"2220\" y=\"2910\" plane=\"nearest\" depth=\"620\"/>";
str = str + "<object tile=\"palms3\" x=\"2390\" y=\"2560\" plane=\"nearest\" depth=\"621\"/>";
str = str + "<object tile=\"palms4\" x=\"2400\" y=\"2780\" plane=\"nearest\" depth=\"622\"/>";
str = str + "<object tile=\"palms5\" x=\"2170\" y=\"2610\" plane=\"nearest\" depth=\"623\"/>";
str = str + "<object tile=\"palms5\" x=\"2410\" y=\"2990\" plane=\"nearest\" depth=\"624\"/>";
str = str + "<object tile=\"palms5\" x=\"2150\" y=\"2770\" plane=\"nearest\" depth=\"625\"/>";
str = str + "<object tile=\"palms4\" x=\"2430\" y=\"2690\" plane=\"nearest\" depth=\"626\"/>";
str = str + "<object tile=\"palms1\" x=\"2270\" y=\"2600\" plane=\"nearest\" depth=\"627\"/>";
str = str + "<object tile=\"palms1\" x=\"2170\" y=\"2700\" plane=\"nearest\" depth=\"628\"/>";
str = str + "<object tile=\"palms1\" x=\"2250\" y=\"3040\" plane=\"nearest\" depth=\"629\"/>";
str = str + "<object tile=\"palms1\" x=\"2420\" y=\"2950\" plane=\"nearest\" depth=\"630\"/>";
str = str + "<object tile=\"null_tile\" x=\"3900\" y=\"2970\" plane=\"nearest1\" depth=\"631\"/>";
str = str + "<object tile=\"null_tile\" x=\"3900\" y=\"2570\" plane=\"nearest1\" depth=\"632\"/>";
str = str + "<object tile=\"null_tile\" x=\"3350\" y=\"2350\" plane=\"nearest1\" depth=\"633\"/>";
str = str + "<object tile=\"null_tile\" x=\"2800\" y=\"2350\" plane=\"nearest1\" depth=\"634\"/>";
str = str + "<object tile=\"null_tile\" x=\"2250\" y=\"2350\" plane=\"nearest1\" depth=\"635\"/>";
str = str + "<object tile=\"null_tile\" x=\"1700\" y=\"2350\" plane=\"nearest1\" depth=\"636\"/>";
str = str + "<object tile=\"null_tile\" x=\"1160\" y=\"2350\" plane=\"nearest1\" depth=\"637\"/>";
str = str + "<object tile=\"null_tile\" x=\"720\" y=\"2750\" plane=\"nearest1\" depth=\"638\"/>";
str = str + "<object tile=\"null_tile\" x=\"720\" y=\"3150\" plane=\"nearest1\" depth=\"639\"/>";
str = str + "<object tile=\"null_tile\" x=\"1270\" y=\"3770\" plane=\"nearest1\" depth=\"640\"/>";
str = str + "<object tile=\"null_tile\" x=\"1820\" y=\"3770\" plane=\"nearest1\" depth=\"641\"/>";
str = str + "<object tile=\"null_tile\" x=\"2370\" y=\"3770\" plane=\"nearest1\" depth=\"642\"/>";
str = str + "<object tile=\"null_tile\" x=\"2920\" y=\"3770\" plane=\"nearest1\" depth=\"643\"/>";
str = str + "<object tile=\"null_tile\" x=\"3470\" y=\"3770\" plane=\"nearest1\" depth=\"644\"/>";
str = str + "<object tile=\"null_tile\" x=\"720\" y=\"3550\" plane=\"nearest1\" depth=\"645\"/>";
str = str + "<object tile=\"null_tile\" x=\"3900\" y=\"3370\" plane=\"nearest1\" depth=\"646\"/>";
str = str + "</array>";
str = str + "</object>";
str = str + "<object name=\"level_4\">";
str = str + "<var name=\"comment\" >It was just discovered that a group of schoolchildren has been left stranded in one of the villages \u2013 but no one knows which one. The villages are coming under artillery fire. Eliminate the danger facing these children\u2019s lives.";
str = str + "- top-priority assignment: destroy the artillery weapons.";
str = str + "- secondary assignment: destroy the self-propelled antiaircraft guns.";
str = str + "- secondary assignment: destroy the perimeter defenses.";
str = str + "</var>";
str = str + "<array name=\"missions\">";
str = str + "<object group=\"miss_4\" arrow=\"arr_1\" missionType=\"kill\" active=\"1\" timer=\"1500\" winAmount=\"3\" looseAmount=\"1\" actionTrue=\"score 1000,startClip completedMission, win\" actionFalse=\"score 0,startClip failedMission, loose\"/>";
str = str + "<object group=\"miss_4_1\" missionType=\"kill\" active=\"1\" dontCount=\"1\" timer=\"1500\" winAmount=\"12\" looseAmount=\"1\" actionTrue=\"score 1000,startClip ScompletedMission\" actionFalse=\"score 0,startClip SfailedMission\"/>";
str = str + "<object group=\"miss_4_2\" missionType=\"kill\" active=\"1\" dontCount=\"1\" timer=\"1500\" winAmount=\"1\" looseAmount=\"1\" actionTrue=\"score 1000,startClip ScompletedMission\" actionFalse=\"score 0,startClip SfailedMission\"/>";
str = str + "</array>";
str = str + "<array name=\"level\">";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1480\" plane=\"far2\" depth=\"1\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1480\" plane=\"far2\" depth=\"2\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1380\" plane=\"far2\" depth=\"3\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1380\" plane=\"far2\" depth=\"4\"/>";
str = str + "<object tile=\"road_u2\" x=\"1880\" y=\"780\" plane=\"far2\" depth=\"5\"/>";
str = str + "<object tile=\"road_u_l\" x=\"2280\" y=\"1580\" plane=\"far2\" depth=\"6\"/>";
str = str + "<object tile=\"road_u2\" x=\"1780\" y=\"780\" plane=\"far2\" depth=\"7\"/>";
str = str + "<object tile=\"road_d1\" x=\"2080\" y=\"880\" plane=\"far2\" depth=\"8\"/>";
str = str + "<object tile=\"road_u2\" x=\"2080\" y=\"780\" plane=\"far2\" depth=\"9\"/>";
str = str + "<object tile=\"road_u2\" x=\"2180\" y=\"780\" plane=\"far2\" depth=\"10\"/>";
str = str + "<object tile=\"road_d1\" x=\"2580\" y=\"1680\" plane=\"far2\" depth=\"11\"/>";
str = str + "<object tile=\"road_u2\" x=\"2580\" y=\"1580\" plane=\"far2\" depth=\"12\"/>";
str = str + "<object tile=\"road_d_r\" x=\"2380\" y=\"1680\" plane=\"far2\" depth=\"13\"/>";
str = str + "<object tile=\"road_u_r\" x=\"2380\" y=\"1580\" plane=\"far2\" depth=\"14\"/>";
str = str + "<object tile=\"road_d1\" x=\"2480\" y=\"1680\" plane=\"far2\" depth=\"15\"/>";
str = str + "<object tile=\"road_u2\" x=\"2480\" y=\"1580\" plane=\"far2\" depth=\"16\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1780\" plane=\"far2\" depth=\"17\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1780\" plane=\"far2\" depth=\"18\"/>";
str = str + "<object tile=\"road_d1\" x=\"1980\" y=\"880\" plane=\"far2\" depth=\"19\"/>";
str = str + "<object tile=\"road_u2\" x=\"1980\" y=\"780\" plane=\"far2\" depth=\"20\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1280\" plane=\"far2\" depth=\"21\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1280\" plane=\"far2\" depth=\"22\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1180\" plane=\"far2\" depth=\"23\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1180\" plane=\"far2\" depth=\"24\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1080\" plane=\"far2\" depth=\"25\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1080\" plane=\"far2\" depth=\"26\"/>";
str = str + "<object tile=\"road_d_l\" x=\"2280\" y=\"880\" plane=\"far2\" depth=\"27\"/>";
str = str + "<object tile=\"road_u2\" x=\"2280\" y=\"780\" plane=\"far2\" depth=\"28\"/>";
str = str + "<object tile=\"road_d1\" x=\"2180\" y=\"880\" plane=\"far2\" depth=\"29\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"980\" plane=\"far2\" depth=\"30\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"980\" plane=\"far2\" depth=\"31\"/>";
str = str + "<object tile=\"road_d_l\" x=\"2280\" y=\"1680\" plane=\"far2\" depth=\"32\"/>";
str = str + "<object tile=\"road_d1\" x=\"1880\" y=\"1680\" plane=\"far2\" depth=\"33\"/>";
str = str + "<object tile=\"road_d1\" x=\"1780\" y=\"1680\" plane=\"far2\" depth=\"34\"/>";
str = str + "<object tile=\"road_u2\" x=\"2180\" y=\"1580\" plane=\"far2\" depth=\"35\"/>";
str = str + "<object tile=\"road_d1\" x=\"2180\" y=\"1680\" plane=\"far2\" depth=\"36\"/>";
str = str + "<object tile=\"road_d1\" x=\"2080\" y=\"1680\" plane=\"far2\" depth=\"37\"/>";
str = str + "<object tile=\"road_u2\" x=\"2080\" y=\"1580\" plane=\"far2\" depth=\"38\"/>";
str = str + "<object tile=\"road_u2\" x=\"1980\" y=\"1580\" plane=\"far2\" depth=\"39\"/>";
str = str + "<object tile=\"road_d1\" x=\"1980\" y=\"1680\" plane=\"far2\" depth=\"40\"/>";
str = str + "<object tile=\"road_d1\" x=\"1880\" y=\"880\" plane=\"far2\" depth=\"41\"/>";
str = str + "<object tile=\"road_d1\" x=\"1780\" y=\"880\" plane=\"far2\" depth=\"42\"/>";
str = str + "<object tile=\"road_u2\" x=\"1880\" y=\"1580\" plane=\"far2\" depth=\"43\"/>";
str = str + "<object tile=\"road_u2\" x=\"1780\" y=\"1580\" plane=\"far2\" depth=\"44\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"880\" plane=\"far2\" depth=\"45\"/>";
str = str + "<object tile=\"road_ru\" x=\"2380\" y=\"780\" plane=\"far2\" depth=\"46\"/>";
str = str + "<object tile=\"road_ld\" x=\"1680\" y=\"880\" plane=\"far2\" depth=\"47\"/>";
str = str + "<object tile=\"road_lu\" x=\"1680\" y=\"780\" plane=\"far2\" depth=\"48\"/>";
str = str + "<object tile=\"road_d1\" x=\"1680\" y=\"1680\" plane=\"far2\" depth=\"49\"/>";
str = str + "<object tile=\"road_u2\" x=\"1680\" y=\"1580\" plane=\"far2\" depth=\"50\"/>";
str = str + "<object tile=\"road_u2\" x=\"1580\" y=\"1580\" plane=\"far2\" depth=\"51\"/>";
str = str + "<object tile=\"road_d1\" x=\"1580\" y=\"1680\" plane=\"far2\" depth=\"52\"/>";
str = str + "<object tile=\"road_d1\" x=\"1480\" y=\"1680\" plane=\"far2\" depth=\"53\"/>";
str = str + "<object tile=\"road_u2\" x=\"1480\" y=\"1580\" plane=\"far2\" depth=\"54\"/>";
str = str + "<object tile=\"road_u2\" x=\"1380\" y=\"1580\" plane=\"far2\" depth=\"55\"/>";
str = str + "<object tile=\"road_d1\" x=\"1380\" y=\"1680\" plane=\"far2\" depth=\"56\"/>";
str = str + "<object tile=\"road_d1\" x=\"1280\" y=\"1680\" plane=\"far2\" depth=\"57\"/>";
str = str + "<object tile=\"road_u2\" x=\"1280\" y=\"1580\" plane=\"far2\" depth=\"58\"/>";
str = str + "<object tile=\"road_u2\" x=\"1180\" y=\"1580\" plane=\"far2\" depth=\"59\"/>";
str = str + "<object tile=\"road_d_r\" x=\"1180\" y=\"1680\" plane=\"far2\" depth=\"60\"/>";
str = str + "<object tile=\"road_lu\" x=\"1080\" y=\"1580\" plane=\"far2\" depth=\"61\"/>";
str = str + "<object tile=\"road_l3\" x=\"1080\" y=\"1680\" plane=\"far2\" depth=\"62\"/>";
str = str + "<object tile=\"road_ld\" x=\"1080\" y=\"1780\" plane=\"far2\" depth=\"63\"/>";
str = str + "<object tile=\"road_rd\" x=\"1180\" y=\"1780\" plane=\"far2\" depth=\"64\"/>";
str = str + "<object tile=\"road_d1\" x=\"2680\" y=\"1680\" plane=\"far2\" depth=\"65\"/>";
str = str + "<object tile=\"road_u2\" x=\"2680\" y=\"1580\" plane=\"far2\" depth=\"66\"/>";
str = str + "<object tile=\"road_d1\" x=\"2780\" y=\"1680\" plane=\"far2\" depth=\"67\"/>";
str = str + "<object tile=\"road_u2\" x=\"2780\" y=\"1580\" plane=\"far2\" depth=\"68\"/>";
str = str + "<object tile=\"road_d1\" x=\"2880\" y=\"1680\" plane=\"far2\" depth=\"69\"/>";
str = str + "<object tile=\"road_u2\" x=\"2880\" y=\"1580\" plane=\"far2\" depth=\"70\"/>";
str = str + "<object tile=\"road_d1\" x=\"2980\" y=\"1680\" plane=\"far2\" depth=\"71\"/>";
str = str + "<object tile=\"road_u2\" x=\"2980\" y=\"1580\" plane=\"far2\" depth=\"72\"/>";
str = str + "<object tile=\"road_d1\" x=\"3080\" y=\"1680\" plane=\"far2\" depth=\"73\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3080\" y=\"1580\" plane=\"far2\" depth=\"74\"/>";
str = str + "<object tile=\"road_rd\" x=\"3180\" y=\"1680\" plane=\"far2\" depth=\"75\"/>";
str = str + "<object tile=\"road_r1\" x=\"3180\" y=\"1580\" plane=\"far2\" depth=\"76\"/>";
str = str + "<object tile=\"road_l3\" x=\"3080\" y=\"1480\" plane=\"far2\" depth=\"77\"/>";
str = str + "<object tile=\"road_r1\" x=\"3180\" y=\"1480\" plane=\"far2\" depth=\"78\"/>";
str = str + "<object tile=\"road_ru\" x=\"3180\" y=\"1380\" plane=\"far2\" depth=\"79\"/>";
str = str + "<object tile=\"road_lu\" x=\"3080\" y=\"1380\" plane=\"far2\" depth=\"80\"/>";
str = str + "<object tile=\"road_rd\" x=\"3460\" y=\"970\" plane=\"far2\" depth=\"81\"/>";
str = str + "<object tile=\"road_ld\" x=\"3360\" y=\"970\" plane=\"far2\" depth=\"82\"/>";
str = str + "<object tile=\"road_l3\" x=\"3360\" y=\"870\" plane=\"far2\" depth=\"83\"/>";
str = str + "<object tile=\"road_d_r\" x=\"3460\" y=\"870\" plane=\"far2\" depth=\"84\"/>";
str = str + "<object tile=\"road_lu\" x=\"3360\" y=\"770\" plane=\"far2\" depth=\"85\"/>";
str = str + "<object tile=\"road_u2\" x=\"3460\" y=\"770\" plane=\"far2\" depth=\"86\"/>";
str = str + "<object tile=\"road_d1\" x=\"3560\" y=\"870\" plane=\"far2\" depth=\"87\"/>";
str = str + "<object tile=\"road_u2\" x=\"3560\" y=\"770\" plane=\"far2\" depth=\"88\"/>";
str = str + "<object tile=\"road_d1\" x=\"3660\" y=\"870\" plane=\"far2\" depth=\"89\"/>";
str = str + "<object tile=\"road_rd\" x=\"3760\" y=\"870\" plane=\"far2\" depth=\"90\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3660\" y=\"770\" plane=\"far2\" depth=\"91\"/>";
str = str + "<object tile=\"road_r1\" x=\"3760\" y=\"770\" plane=\"far2\" depth=\"92\"/>";
str = str + "<object tile=\"road_r1\" x=\"3760\" y=\"670\" plane=\"far2\" depth=\"93\"/>";
str = str + "<object tile=\"road_l3\" x=\"3660\" y=\"670\" plane=\"far2\" depth=\"94\"/>";
str = str + "<object tile=\"road_l3\" x=\"3660\" y=\"570\" plane=\"far2\" depth=\"95\"/>";
str = str + "<object tile=\"road_r1\" x=\"3760\" y=\"570\" plane=\"far2\" depth=\"96\"/>";
str = str + "<object tile=\"road_l3\" x=\"3660\" y=\"470\" plane=\"far2\" depth=\"97\"/>";
str = str + "<object tile=\"road_r1\" x=\"3760\" y=\"470\" plane=\"far2\" depth=\"98\"/>";
str = str + "<object tile=\"road_r1\" x=\"3760\" y=\"370\" plane=\"far2\" depth=\"99\"/>";
str = str + "<object tile=\"road_l3\" x=\"3660\" y=\"370\" plane=\"far2\" depth=\"100\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1880\" plane=\"far2\" depth=\"101\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1880\" plane=\"far2\" depth=\"102\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1980\" plane=\"far2\" depth=\"103\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1980\" plane=\"far2\" depth=\"104\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2080\" plane=\"far2\" depth=\"105\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2080\" plane=\"far2\" depth=\"106\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2180\" plane=\"far2\" depth=\"107\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2180\" plane=\"far2\" depth=\"108\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2280\" plane=\"far2\" depth=\"109\"/>";
str = str + "<object tile=\"road_u_r\" x=\"2380\" y=\"2280\" plane=\"far2\" depth=\"110\"/>";
str = str + "<object tile=\"road_d_r\" x=\"2380\" y=\"2380\" plane=\"far2\" depth=\"111\"/>";
str = str + "<object tile=\"road_u2\" x=\"2480\" y=\"2280\" plane=\"far2\" depth=\"112\"/>";
str = str + "<object tile=\"road_d1\" x=\"2480\" y=\"2380\" plane=\"far2\" depth=\"113\"/>";
str = str + "<object tile=\"road_d1\" x=\"2580\" y=\"2380\" plane=\"far2\" depth=\"114\"/>";
str = str + "<object tile=\"road_u2\" x=\"2580\" y=\"2280\" plane=\"far2\" depth=\"115\"/>";
str = str + "<object tile=\"road_u2\" x=\"2680\" y=\"2280\" plane=\"far2\" depth=\"116\"/>";
str = str + "<object tile=\"road_d1\" x=\"2680\" y=\"2380\" plane=\"far2\" depth=\"117\"/>";
str = str + "<object tile=\"road_d1\" x=\"2780\" y=\"2380\" plane=\"far2\" depth=\"118\"/>";
str = str + "<object tile=\"road_u2\" x=\"2780\" y=\"2280\" plane=\"far2\" depth=\"119\"/>";
str = str + "<object tile=\"road_d1\" x=\"2880\" y=\"2380\" plane=\"far2\" depth=\"120\"/>";
str = str + "<object tile=\"road_u2\" x=\"2880\" y=\"2280\" plane=\"far2\" depth=\"121\"/>";
str = str + "<object tile=\"road_d1\" x=\"2980\" y=\"2380\" plane=\"far2\" depth=\"122\"/>";
str = str + "<object tile=\"road_u2\" x=\"2980\" y=\"2280\" plane=\"far2\" depth=\"123\"/>";
str = str + "<object tile=\"road_d1\" x=\"3080\" y=\"2380\" plane=\"far2\" depth=\"124\"/>";
str = str + "<object tile=\"road_u2\" x=\"3080\" y=\"2280\" plane=\"far2\" depth=\"125\"/>";
str = str + "<object tile=\"road_d1\" x=\"3180\" y=\"2380\" plane=\"far2\" depth=\"126\"/>";
str = str + "<object tile=\"road_u2\" x=\"3180\" y=\"2280\" plane=\"far2\" depth=\"127\"/>";
str = str + "<object tile=\"road_d1\" x=\"3280\" y=\"2380\" plane=\"far2\" depth=\"128\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3280\" y=\"2280\" plane=\"far2\" depth=\"129\"/>";
str = str + "<object tile=\"road_rd\" x=\"3380\" y=\"2380\" plane=\"far2\" depth=\"130\"/>";
str = str + "<object tile=\"road_r1\" x=\"3380\" y=\"2280\" plane=\"far2\" depth=\"131\"/>";
str = str + "<object tile=\"road_ru\" x=\"3380\" y=\"2180\" plane=\"far2\" depth=\"132\"/>";
str = str + "<object tile=\"road_lu\" x=\"3280\" y=\"2180\" plane=\"far2\" depth=\"133\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2380\" plane=\"far2\" depth=\"134\"/>";
str = str + "<object tile=\"road_u_l\" x=\"2280\" y=\"2480\" plane=\"far2\" depth=\"135\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2480\" plane=\"far2\" depth=\"136\"/>";
str = str + "<object tile=\"road_d_l\" x=\"2280\" y=\"2580\" plane=\"far2\" depth=\"137\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2580\" plane=\"far2\" depth=\"138\"/>";
str = str + "<object tile=\"road_d1\" x=\"2180\" y=\"2580\" plane=\"far2\" depth=\"139\"/>";
str = str + "<object tile=\"road_u2\" x=\"2180\" y=\"2480\" plane=\"far2\" depth=\"140\"/>";
str = str + "<object tile=\"road_u2\" x=\"2080\" y=\"2480\" plane=\"far2\" depth=\"141\"/>";
str = str + "<object tile=\"road_u2\" x=\"1980\" y=\"2480\" plane=\"far2\" depth=\"142\"/>";
str = str + "<object tile=\"road_u2\" x=\"1880\" y=\"2480\" plane=\"far2\" depth=\"143\"/>";
str = str + "<object tile=\"road_u2\" x=\"1780\" y=\"2480\" plane=\"far2\" depth=\"144\"/>";
str = str + "<object tile=\"road_u2\" x=\"1680\" y=\"2480\" plane=\"far2\" depth=\"145\"/>";
str = str + "<object tile=\"road_u2\" x=\"1580\" y=\"2480\" plane=\"far2\" depth=\"146\"/>";
str = str + "<object tile=\"road_u2\" x=\"1480\" y=\"2480\" plane=\"far2\" depth=\"147\"/>";
str = str + "<object tile=\"road_l3\" x=\"1380\" y=\"2580\" plane=\"far2\" depth=\"148\"/>";
str = str + "<object tile=\"road_l3\" x=\"1380\" y=\"2680\" plane=\"far2\" depth=\"149\"/>";
str = str + "<object tile=\"road_l3\" x=\"1380\" y=\"2780\" plane=\"far2\" depth=\"150\"/>";
str = str + "<object tile=\"road_ld\" x=\"1380\" y=\"2880\" plane=\"far2\" depth=\"151\"/>";
str = str + "<object tile=\"road_rd\" x=\"1480\" y=\"2880\" plane=\"far2\" depth=\"152\"/>";
str = str + "<object tile=\"road_r1\" x=\"1480\" y=\"2780\" plane=\"far2\" depth=\"153\"/>";
str = str + "<object tile=\"road_r1\" x=\"1480\" y=\"2680\" plane=\"far2\" depth=\"154\"/>";
str = str + "<object tile=\"road_d_r\" x=\"1480\" y=\"2580\" plane=\"far2\" depth=\"155\"/>";
str = str + "<object tile=\"road_lu\" x=\"1380\" y=\"2480\" plane=\"far2\" depth=\"156\"/>";
str = str + "<object tile=\"road_d1\" x=\"1580\" y=\"2580\" plane=\"far2\" depth=\"157\"/>";
str = str + "<object tile=\"road_d1\" x=\"1680\" y=\"2580\" plane=\"far2\" depth=\"158\"/>";
str = str + "<object tile=\"road_d1\" x=\"1780\" y=\"2580\" plane=\"far2\" depth=\"159\"/>";
str = str + "<object tile=\"road_d1\" x=\"1880\" y=\"2580\" plane=\"far2\" depth=\"160\"/>";
str = str + "<object tile=\"road_d1\" x=\"1980\" y=\"2580\" plane=\"far2\" depth=\"161\"/>";
str = str + "<object tile=\"road_d1\" x=\"2080\" y=\"2580\" plane=\"far2\" depth=\"162\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2680\" plane=\"far2\" depth=\"163\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2680\" plane=\"far2\" depth=\"164\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2780\" plane=\"far2\" depth=\"165\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2880\" plane=\"far2\" depth=\"166\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2980\" plane=\"far2\" depth=\"167\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"3080\" plane=\"far2\" depth=\"168\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"3180\" plane=\"far2\" depth=\"169\"/>";
str = str + "<object tile=\"road_u_r\" x=\"2380\" y=\"3280\" plane=\"far2\" depth=\"170\"/>";
str = str + "<object tile=\"road_u2\" x=\"2480\" y=\"3280\" plane=\"far2\" depth=\"171\"/>";
str = str + "<object tile=\"road_u2\" x=\"2580\" y=\"3280\" plane=\"far2\" depth=\"172\"/>";
str = str + "<object tile=\"road_u2\" x=\"2680\" y=\"3280\" plane=\"far2\" depth=\"173\"/>";
str = str + "<object tile=\"road_ru\" x=\"2780\" y=\"3280\" plane=\"far2\" depth=\"174\"/>";
str = str + "<object tile=\"road_rd\" x=\"2780\" y=\"3380\" plane=\"far2\" depth=\"175\"/>";
str = str + "<object tile=\"road_d1\" x=\"2680\" y=\"3380\" plane=\"far2\" depth=\"176\"/>";
str = str + "<object tile=\"road_d1\" x=\"2580\" y=\"3380\" plane=\"far2\" depth=\"177\"/>";
str = str + "<object tile=\"road_d1\" x=\"2480\" y=\"3380\" plane=\"far2\" depth=\"178\"/>";
str = str + "<object tile=\"road_d1\" x=\"2380\" y=\"3380\" plane=\"far2\" depth=\"179\"/>";
str = str + "<object tile=\"road_ld\" x=\"2280\" y=\"3380\" plane=\"far2\" depth=\"180\"/>";
str = str + "<object tile=\"road_d_l\" x=\"2280\" y=\"3280\" plane=\"far2\" depth=\"181\"/>";
str = str + "<object tile=\"road_u_l\" x=\"2280\" y=\"3180\" plane=\"far2\" depth=\"182\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"3080\" plane=\"far2\" depth=\"183\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2980\" plane=\"far2\" depth=\"184\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2880\" plane=\"far2\" depth=\"185\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2780\" plane=\"far2\" depth=\"186\"/>";
str = str + "<object tile=\"road_d1\" x=\"2180\" y=\"3280\" plane=\"far2\" depth=\"187\"/>";
str = str + "<object tile=\"road_u2\" x=\"2180\" y=\"3180\" plane=\"far2\" depth=\"188\"/>";
str = str + "<object tile=\"road_d1\" x=\"2080\" y=\"3280\" plane=\"far2\" depth=\"189\"/>";
str = str + "<object tile=\"road_u2\" x=\"2080\" y=\"3180\" plane=\"far2\" depth=\"190\"/>";
str = str + "<object tile=\"road_d1\" x=\"1980\" y=\"3280\" plane=\"far2\" depth=\"191\"/>";
str = str + "<object tile=\"road_u2\" x=\"1980\" y=\"3180\" plane=\"far2\" depth=\"192\"/>";
str = str + "<object tile=\"road_u2\" x=\"1880\" y=\"3180\" plane=\"far2\" depth=\"193\"/>";
str = str + "<object tile=\"road_d1\" x=\"1880\" y=\"3280\" plane=\"far2\" depth=\"194\"/>";
str = str + "<object tile=\"road_ld\" x=\"1780\" y=\"3280\" plane=\"far2\" depth=\"195\"/>";
str = str + "<object tile=\"road_lu\" x=\"1780\" y=\"3180\" plane=\"far2\" depth=\"196\"/>";
str = str + "<object tile=\"house_med1\" x=\"1710\" y=\"3080\" plane=\"far\" depth=\"197\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1340\" y=\"3470\" plane=\"far\" depth=\"198\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1410\" y=\"3470\" plane=\"far\" depth=\"199\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1480\" y=\"3470\" plane=\"far\" depth=\"200\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1270\" y=\"2910\" plane=\"far\" depth=\"201\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1340\" y=\"2910\" plane=\"far\" depth=\"202\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1530\" y=\"2910\" plane=\"far\" depth=\"203\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1600\" y=\"2910\" plane=\"far\" depth=\"204\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1670\" y=\"2910\" plane=\"far\" depth=\"205\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1740\" y=\"2910\" plane=\"far\" depth=\"206\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1810\" y=\"2910\" plane=\"far\" depth=\"207\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1850\" y=\"2930\" plane=\"far\" depth=\"208\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1850\" y=\"3000\" plane=\"far\" depth=\"209\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1850\" y=\"3070\" plane=\"far\" depth=\"210\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1740\" y=\"3260\" plane=\"far\" depth=\"211\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1740\" y=\"3330\" plane=\"far\" depth=\"212\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1740\" y=\"3400\" plane=\"far\" depth=\"213\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1550\" y=\"3470\" plane=\"far\" depth=\"214\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1620\" y=\"3470\" plane=\"far\" depth=\"215\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1690\" y=\"3470\" plane=\"far\" depth=\"216\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1520\" y=\"2930\" plane=\"far\" depth=\"217\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1520\" y=\"3000\" plane=\"far\" depth=\"218\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1810\" y=\"3130\" plane=\"far\" depth=\"219\"/>";
str = str + "<object tile=\"oil_barrel1\" x=\"1580\" y=\"2970\" plane=\"far\" depth=\"220\"/>";
str = str + "<object tile=\"oil_barrel1\" x=\"1690\" y=\"2970\" plane=\"far\" depth=\"221\"/>";
str = str + "<object tile=\"tower_guard\" x=\"1790\" y=\"2950\" plane=\"far\" depth=\"222\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"2920\" plane=\"far\" depth=\"223\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"2990\" plane=\"far\" depth=\"224\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"3060\" plane=\"far\" depth=\"225\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"3130\" plane=\"far\" depth=\"226\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"3200\" plane=\"far\" depth=\"227\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"3270\" plane=\"far\" depth=\"228\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"3340\" plane=\"far\" depth=\"229\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"3410\" plane=\"far\" depth=\"230\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1270\" y=\"3470\" plane=\"far\" depth=\"231\"/>";
str = str + "<object tile=\"tower_water\" x=\"1620\" y=\"3290\" plane=\"far\" depth=\"232\"/>";
str = str + "<object tile=\"heliPad\" x=\"1370\" y=\"3270\" plane=\"far\" depth=\"233\"/>";
str = str + "<object tile=\"house_med3\" x=\"1310\" y=\"2950\" plane=\"far\" depth=\"234\"/>";
str = str + "<object tile=\"house_med4\" x=\"1310\" y=\"3050\" plane=\"far\" depth=\"235\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1310\" y=\"3150\" plane=\"far\" depth=\"236\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3420\" plane=\"far\" depth=\"237\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3460\" plane=\"far\" depth=\"238\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3500\" plane=\"far\" depth=\"239\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3100\" plane=\"far\" depth=\"240\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3140\" plane=\"far\" depth=\"241\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3180\" plane=\"far\" depth=\"242\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3220\" plane=\"far\" depth=\"243\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3260\" plane=\"far\" depth=\"244\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2870\" y=\"3530\" plane=\"far\" depth=\"245\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2910\" y=\"3530\" plane=\"far\" depth=\"246\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2950\" y=\"3530\" plane=\"far\" depth=\"247\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2990\" y=\"3530\" plane=\"far\" depth=\"248\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3030\" y=\"3530\" plane=\"far\" depth=\"249\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3070\" y=\"3530\" plane=\"far\" depth=\"250\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3110\" y=\"3530\" plane=\"far\" depth=\"251\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3150\" y=\"3530\" plane=\"far\" depth=\"252\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3190\" y=\"3530\" plane=\"far\" depth=\"253\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3230\" y=\"3530\" plane=\"far\" depth=\"254\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3270\" y=\"3530\" plane=\"far\" depth=\"255\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2870\" y=\"3100\" plane=\"far\" depth=\"256\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2910\" y=\"3100\" plane=\"far\" depth=\"257\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2950\" y=\"3100\" plane=\"far\" depth=\"258\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2990\" y=\"3100\" plane=\"far\" depth=\"259\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3030\" y=\"3100\" plane=\"far\" depth=\"260\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3070\" y=\"3100\" plane=\"far\" depth=\"261\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3110\" y=\"3100\" plane=\"far\" depth=\"262\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3150\" y=\"3100\" plane=\"far\" depth=\"263\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3190\" y=\"3100\" plane=\"far\" depth=\"264\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3230\" y=\"3100\" plane=\"far\" depth=\"265\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3270\" y=\"3100\" plane=\"far\" depth=\"266\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3100\" plane=\"far\" depth=\"267\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3140\" plane=\"far\" depth=\"268\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3180\" plane=\"far\" depth=\"269\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3220\" plane=\"far\" depth=\"270\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3260\" plane=\"far\" depth=\"271\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3300\" plane=\"far\" depth=\"272\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3340\" plane=\"far\" depth=\"273\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3380\" plane=\"far\" depth=\"274\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3420\" plane=\"far\" depth=\"275\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3460\" plane=\"far\" depth=\"276\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3500\" plane=\"far\" depth=\"277\"/>";
str = str + "<object tile=\"tent2\" x=\"3250\" y=\"3490\" plane=\"far\" depth=\"278\"/>";
str = str + "<object tile=\"tent2\" x=\"3250\" y=\"3440\" plane=\"far\" depth=\"279\"/>";
str = str + "<object tile=\"tent2\" x=\"3250\" y=\"3390\" plane=\"far\" depth=\"280\"/>";
str = str + "<object tile=\"tent2\" x=\"3250\" y=\"3340\" plane=\"far\" depth=\"281\"/>";
str = str + "<object tile=\"tent2\" x=\"3160\" y=\"3490\" plane=\"far\" depth=\"282\"/>";
str = str + "<object tile=\"tent2\" x=\"3160\" y=\"3440\" plane=\"far\" depth=\"283\"/>";
str = str + "<object tile=\"tent2\" x=\"3160\" y=\"3390\" plane=\"far\" depth=\"284\"/>";
str = str + "<object tile=\"tent2\" x=\"3160\" y=\"3340\" plane=\"far\" depth=\"285\"/>";
str = str + "<object tile=\"tent1\" x=\"2900\" y=\"3220\" plane=\"far\" depth=\"286\"/>";
str = str + "<object tile=\"tent1\" x=\"2940\" y=\"3220\" plane=\"far\" depth=\"287\"/>";
str = str + "<object tile=\"tent1\" x=\"2980\" y=\"3220\" plane=\"far\" depth=\"288\"/>";
str = str + "<object tile=\"tent1\" x=\"3020\" y=\"3220\" plane=\"far\" depth=\"289\"/>";
str = str + "<object tile=\"tent1\" x=\"2900\" y=\"3130\" plane=\"far\" depth=\"290\"/>";
str = str + "<object tile=\"tent1\" x=\"2940\" y=\"3130\" plane=\"far\" depth=\"291\"/>";
str = str + "<object tile=\"tent1\" x=\"2980\" y=\"3130\" plane=\"far\" depth=\"292\"/>";
str = str + "<object tile=\"tent1\" x=\"3020\" y=\"3130\" plane=\"far\" depth=\"293\"/>";
str = str + "<object tile=\"tent1\" x=\"3250\" y=\"3220\" plane=\"far\" depth=\"294\"/>";
str = str + "<object tile=\"tent1\" x=\"3210\" y=\"3220\" plane=\"far\" depth=\"295\"/>";
str = str + "<object tile=\"tent1\" x=\"3170\" y=\"3220\" plane=\"far\" depth=\"296\"/>";
str = str + "<object tile=\"tent1\" x=\"3130\" y=\"3220\" plane=\"far\" depth=\"297\"/>";
str = str + "<object tile=\"tent1\" x=\"3130\" y=\"3130\" plane=\"far\" depth=\"298\"/>";
str = str + "<object tile=\"tent1\" x=\"3170\" y=\"3130\" plane=\"far\" depth=\"299\"/>";
str = str + "<object tile=\"tent1\" x=\"3210\" y=\"3130\" plane=\"far\" depth=\"300\"/>";
str = str + "<object tile=\"tent1\" x=\"3250\" y=\"3130\" plane=\"far\" depth=\"301\"/>";
str = str + "<object tile=\"tower_water\" x=\"2890\" y=\"3420\" plane=\"far\" depth=\"302\"/>";
str = str + "<object tile=\"house_sm2\" x=\"2960\" y=\"3450\" plane=\"far\" depth=\"303\"/>";
str = str + "<object tile=\"house_big2\" x=\"3250\" y=\"1810\" plane=\"far\" depth=\"304\"/>";
str = str + "<object tile=\"tower_water\" x=\"3230\" y=\"2180\" plane=\"far\" depth=\"305\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3160\" y=\"2270\" plane=\"far\" depth=\"306\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3370\" y=\"1770\" plane=\"far\" depth=\"307\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3300\" y=\"1770\" plane=\"far\" depth=\"308\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3230\" y=\"1770\" plane=\"far\" depth=\"309\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3160\" y=\"1770\" plane=\"far\" depth=\"310\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3090\" y=\"1770\" plane=\"far\" depth=\"311\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"1790\" plane=\"far\" depth=\"312\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"1860\" plane=\"far\" depth=\"313\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"1930\" plane=\"far\" depth=\"314\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"2000\" plane=\"far\" depth=\"315\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"2070\" plane=\"far\" depth=\"316\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"2140\" plane=\"far\" depth=\"317\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"2210\" plane=\"far\" depth=\"318\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3090\" y=\"2270\" plane=\"far\" depth=\"319\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3440\" y=\"1770\" plane=\"far\" depth=\"320\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3480\" y=\"1790\" plane=\"far\" depth=\"321\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3480\" y=\"1860\" plane=\"far\" depth=\"322\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3420\" y=\"2290\" plane=\"far\" depth=\"323\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3420\" y=\"2360\" plane=\"far\" depth=\"324\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3420\" y=\"2430\" plane=\"far\" depth=\"325\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3230\" y=\"2270\" plane=\"far\" depth=\"326\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3630\" y=\"2060\" plane=\"far\" depth=\"327\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3560\" y=\"2060\" plane=\"far\" depth=\"328\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3770\" y=\"2060\" plane=\"far\" depth=\"329\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3700\" y=\"2060\" plane=\"far\" depth=\"330\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3570\" y=\"2570\" plane=\"far\" depth=\"331\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3500\" y=\"2570\" plane=\"far\" depth=\"332\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3420\" y=\"2500\" plane=\"far\" depth=\"333\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3430\" y=\"2570\" plane=\"far\" depth=\"334\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2080\" plane=\"far\" depth=\"335\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2150\" plane=\"far\" depth=\"336\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2220\" plane=\"far\" depth=\"337\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2290\" plane=\"far\" depth=\"338\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2360\" plane=\"far\" depth=\"339\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2430\" plane=\"far\" depth=\"340\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2500\" plane=\"far\" depth=\"341\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3780\" y=\"2570\" plane=\"far\" depth=\"342\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3710\" y=\"2570\" plane=\"far\" depth=\"343\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3640\" y=\"2570\" plane=\"far\" depth=\"344\"/>";
str = str + "<object tile=\"house_med3\" x=\"3120\" y=\"1960\" plane=\"far\" depth=\"345\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3180\" y=\"2070\" plane=\"far\" depth=\"346\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3180\" y=\"2100\" plane=\"far\" depth=\"347\"/>";
str = str + "<object tile=\"house_sm1\" x=\"3160\" y=\"2130\" plane=\"far\" depth=\"348\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3460\" y=\"2290\" plane=\"far\" depth=\"349\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3500\" y=\"2290\" plane=\"far\" depth=\"350\"/>";
str = str + "<object tile=\"house_big1\" x=\"3520\" y=\"2260\" plane=\"far\" depth=\"351\"/>";
str = str + "<object tile=\"house_med2\" x=\"3710\" y=\"2050\" plane=\"far\" depth=\"352\"/>";
str = str + "<object tile=\"house_sm1\" x=\"3780\" y=\"2160\" plane=\"far\" depth=\"353\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3670\" y=\"2290\" plane=\"far\" depth=\"354\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3700\" y=\"2290\" plane=\"far\" depth=\"355\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3730\" y=\"2290\" plane=\"far\" depth=\"356\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3760\" y=\"2290\" plane=\"far\" depth=\"357\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3790\" y=\"2290\" plane=\"far\" depth=\"358\"/>";
str = str + "<object tile=\"house_med5\" x=\"3450\" y=\"2440\" plane=\"far\" depth=\"359\"/>";
str = str + "<object tile=\"house_sm1\" x=\"3570\" y=\"2490\" plane=\"far\" depth=\"360\"/>";
str = str + "<object tile=\"house_med1\" x=\"3610\" y=\"2470\" plane=\"far\" depth=\"361\"/>";
str = str + "<object tile=\"house_sm2\" x=\"3700\" y=\"2480\" plane=\"far\" depth=\"362\"/>";
str = str + "<object tile=\"house_sm1\" x=\"3780\" y=\"2300\" plane=\"far\" depth=\"363\"/>";
str = str + "<object tile=\"house_sm2\" x=\"3730\" y=\"2300\" plane=\"far\" depth=\"364\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1240\" y=\"1780\" plane=\"far\" depth=\"365\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1310\" y=\"1780\" plane=\"far\" depth=\"366\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1030\" y=\"1780\" plane=\"far\" depth=\"367\"/>";
str = str + "<object tile=\"wall_big2\" x=\"960\" y=\"1780\" plane=\"far\" depth=\"368\"/>";
str = str + "<object tile=\"wall_big2\" x=\"890\" y=\"1780\" plane=\"far\" depth=\"369\"/>";
str = str + "<object tile=\"wall_big2\" x=\"820\" y=\"1780\" plane=\"far\" depth=\"370\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1380\" y=\"1780\" plane=\"far\" depth=\"371\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1450\" y=\"1780\" plane=\"far\" depth=\"372\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"1800\" plane=\"far\" depth=\"373\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"1870\" plane=\"far\" depth=\"374\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"1800\" plane=\"far\" depth=\"375\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"1870\" plane=\"far\" depth=\"376\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"1940\" plane=\"far\" depth=\"377\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"2010\" plane=\"far\" depth=\"378\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"2080\" plane=\"far\" depth=\"379\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"1940\" plane=\"far\" depth=\"380\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"2010\" plane=\"far\" depth=\"381\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"2080\" plane=\"far\" depth=\"382\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"2150\" plane=\"far\" depth=\"383\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"2150\" plane=\"far\" depth=\"384\"/>";
str = str + "<object tile=\"wall_big2\" x=\"890\" y=\"2290\" plane=\"far\" depth=\"385\"/>";
str = str + "<object tile=\"wall_big2\" x=\"960\" y=\"2290\" plane=\"far\" depth=\"386\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1030\" y=\"2290\" plane=\"far\" depth=\"387\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1100\" y=\"2290\" plane=\"far\" depth=\"388\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1170\" y=\"2290\" plane=\"far\" depth=\"389\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1240\" y=\"2290\" plane=\"far\" depth=\"390\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1310\" y=\"2290\" plane=\"far\" depth=\"391\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1380\" y=\"2290\" plane=\"far\" depth=\"392\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"2220\" plane=\"far\" depth=\"393\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"2220\" plane=\"far\" depth=\"394\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1450\" y=\"2290\" plane=\"far\" depth=\"395\"/>";
str = str + "<object tile=\"wall_big2\" x=\"820\" y=\"2290\" plane=\"far\" depth=\"396\"/>";
str = str + "<object tile=\"house_big1\" x=\"850\" y=\"1800\" plane=\"far\" depth=\"397\"/>";
str = str + "<object tile=\"house_med3\" x=\"860\" y=\"1930\" plane=\"far\" depth=\"398\"/>";
str = str + "<object tile=\"house_med4\" x=\"990\" y=\"2050\" plane=\"far\" depth=\"399\"/>";
str = str + "<object tile=\"house_big1\" x=\"840\" y=\"2010\" plane=\"far\" depth=\"400\"/>";
str = str + "<object tile=\"house_med3\" x=\"860\" y=\"2140\" plane=\"far\" depth=\"401\"/>";
str = str + "<object tile=\"house_med4\" x=\"1240\" y=\"1810\" plane=\"far\" depth=\"402\"/>";
str = str + "<object tile=\"house_big1\" x=\"1340\" y=\"1800\" plane=\"far\" depth=\"403\"/>";
str = str + "<object tile=\"house_med5\" x=\"1380\" y=\"1920\" plane=\"far\" depth=\"404\"/>";
str = str + "<object tile=\"house_big1\" x=\"1350\" y=\"2010\" plane=\"far\" depth=\"405\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1200\" y=\"2210\" plane=\"far\" depth=\"406\"/>";
str = str + "<object tile=\"house_med2\" x=\"1250\" y=\"2160\" plane=\"far\" depth=\"407\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1660\" y=\"570\" plane=\"far\" depth=\"408\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1590\" y=\"570\" plane=\"far\" depth=\"409\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1520\" y=\"570\" plane=\"far\" depth=\"410\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1450\" y=\"570\" plane=\"far\" depth=\"411\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1380\" y=\"570\" plane=\"far\" depth=\"412\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1310\" y=\"570\" plane=\"far\" depth=\"413\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1240\" y=\"570\" plane=\"far\" depth=\"414\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1170\" y=\"570\" plane=\"far\" depth=\"415\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1100\" y=\"570\" plane=\"far\" depth=\"416\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1030\" y=\"570\" plane=\"far\" depth=\"417\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1700\" y=\"590\" plane=\"far\" depth=\"418\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1700\" y=\"660\" plane=\"far\" depth=\"419\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1700\" y=\"730\" plane=\"far\" depth=\"420\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"590\" plane=\"far\" depth=\"421\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"660\" plane=\"far\" depth=\"422\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"730\" plane=\"far\" depth=\"423\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"800\" plane=\"far\" depth=\"424\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"870\" plane=\"far\" depth=\"425\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"940\" plane=\"far\" depth=\"426\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"1010\" plane=\"far\" depth=\"427\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"1080\" plane=\"far\" depth=\"428\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1700\" y=\"940\" plane=\"far\" depth=\"429\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1700\" y=\"1010\" plane=\"far\" depth=\"430\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1700\" y=\"1080\" plane=\"far\" depth=\"431\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1030\" y=\"1150\" plane=\"far\" depth=\"432\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1100\" y=\"1150\" plane=\"far\" depth=\"433\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1170\" y=\"1150\" plane=\"far\" depth=\"434\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1240\" y=\"1150\" plane=\"far\" depth=\"435\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1310\" y=\"1150\" plane=\"far\" depth=\"436\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1380\" y=\"1150\" plane=\"far\" depth=\"437\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1450\" y=\"1150\" plane=\"far\" depth=\"438\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1520\" y=\"1150\" plane=\"far\" depth=\"439\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1590\" y=\"1150\" plane=\"far\" depth=\"440\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1660\" y=\"1150\" plane=\"far\" depth=\"441\"/>";
str = str + "<object tile=\"house_med4\" x=\"1440\" y=\"620\" plane=\"far\" depth=\"442\"/>";
str = str + "<object tile=\"house_med4\" x=\"1190\" y=\"620\" plane=\"far\" depth=\"443\"/>";
str = str + "<object tile=\"house_med2\" x=\"1530\" y=\"1020\" plane=\"far\" depth=\"444\"/>";
str = str + "<object tile=\"house_med1\" x=\"1310\" y=\"1050\" plane=\"far\" depth=\"445\"/>";
str = str + "<object tile=\"house_big1\" x=\"1560\" y=\"580\" plane=\"far\" depth=\"446\"/>";
str = str + "<object tile=\"house_big1\" x=\"1290\" y=\"580\" plane=\"far\" depth=\"447\"/>";
str = str + "<object tile=\"house_big1\" x=\"1050\" y=\"580\" plane=\"far\" depth=\"448\"/>";
str = str + "<object tile=\"house_big1\" x=\"1390\" y=\"990\" plane=\"far\" depth=\"449\"/>";
str = str + "<object tile=\"house_med3\" x=\"1060\" y=\"700\" plane=\"far\" depth=\"450\"/>";
str = str + "<object tile=\"house_big1\" x=\"1050\" y=\"800\" plane=\"far\" depth=\"451\"/>";
str = str + "<object tile=\"house_med3\" x=\"1060\" y=\"930\" plane=\"far\" depth=\"452\"/>";
str = str + "<object tile=\"house_med4\" x=\"1060\" y=\"1030\" plane=\"far\" depth=\"453\"/>";
str = str + "<object tile=\"house_big1\" x=\"1160\" y=\"990\" plane=\"far\" depth=\"454\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3520\" y=\"1010\" plane=\"far\" depth=\"455\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3290\" y=\"1010\" plane=\"far\" depth=\"456\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3220\" y=\"1010\" plane=\"far\" depth=\"457\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3150\" y=\"1010\" plane=\"far\" depth=\"458\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3080\" y=\"1010\" plane=\"far\" depth=\"459\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3010\" y=\"1010\" plane=\"far\" depth=\"460\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2940\" y=\"1010\" plane=\"far\" depth=\"461\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2870\" y=\"1010\" plane=\"far\" depth=\"462\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2800\" y=\"1010\" plane=\"far\" depth=\"463\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3600\" y=\"1010\" plane=\"far\" depth=\"464\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3670\" y=\"1010\" plane=\"far\" depth=\"465\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3710\" y=\"1030\" plane=\"far\" depth=\"466\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3710\" y=\"1100\" plane=\"far\" depth=\"467\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3710\" y=\"1170\" plane=\"far\" depth=\"468\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3710\" y=\"1240\" plane=\"far\" depth=\"469\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3710\" y=\"1310\" plane=\"far\" depth=\"470\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3710\" y=\"1380\" plane=\"far\" depth=\"471\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2730\" y=\"1010\" plane=\"far\" depth=\"472\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1030\" plane=\"far\" depth=\"473\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1100\" plane=\"far\" depth=\"474\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1170\" plane=\"far\" depth=\"475\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1240\" plane=\"far\" depth=\"476\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1310\" plane=\"far\" depth=\"477\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1380\" plane=\"far\" depth=\"478\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1450\" plane=\"far\" depth=\"479\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2730\" y=\"1510\" plane=\"far\" depth=\"480\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2800\" y=\"1510\" plane=\"far\" depth=\"481\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2870\" y=\"1510\" plane=\"far\" depth=\"482\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2940\" y=\"1510\" plane=\"far\" depth=\"483\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3010\" y=\"1510\" plane=\"far\" depth=\"484\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3670\" y=\"1440\" plane=\"far\" depth=\"485\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3600\" y=\"1440\" plane=\"far\" depth=\"486\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3530\" y=\"1440\" plane=\"far\" depth=\"487\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3460\" y=\"1440\" plane=\"far\" depth=\"488\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3390\" y=\"1440\" plane=\"far\" depth=\"489\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3320\" y=\"1440\" plane=\"far\" depth=\"490\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3250\" y=\"1440\" plane=\"far\" depth=\"491\"/>";
str = str + "<object tile=\"house_big1\" x=\"3560\" y=\"1030\" plane=\"far\" depth=\"492\"/>";
str = str + "<object tile=\"house_med5\" x=\"3600\" y=\"1160\" plane=\"far\" depth=\"493\"/>";
str = str + "<object tile=\"house_sm2\" x=\"3340\" y=\"1350\" plane=\"far\" depth=\"494\"/>";
str = str + "<object tile=\"house_med4\" x=\"3390\" y=\"1300\" plane=\"far\" depth=\"495\"/>";
str = str + "<object tile=\"house_med1\" x=\"3250\" y=\"1330\" plane=\"far\" depth=\"496\"/>";
str = str + "<object tile=\"house_big1\" x=\"3500\" y=\"1260\" plane=\"far\" depth=\"497\"/>";
str = str + "<object tile=\"house_med4\" x=\"3070\" y=\"1050\" plane=\"far\" depth=\"498\"/>";
str = str + "<object tile=\"house_big1\" x=\"3170\" y=\"1010\" plane=\"far\" depth=\"499\"/>";
str = str + "<object tile=\"house_big2\" x=\"2850\" y=\"1030\" plane=\"far\" depth=\"500\"/>";
str = str + "<object tile=\"house_med3\" x=\"2760\" y=\"1060\" plane=\"far\" depth=\"501\"/>";
str = str + "<object tile=\"house_big1\" x=\"2750\" y=\"1150\" plane=\"far\" depth=\"502\"/>";
str = str + "<object tile=\"house_big1\" x=\"2900\" y=\"1360\" plane=\"far\" depth=\"503\"/>";
str = str + "<object tile=\"house_sm2\" x=\"2850\" y=\"1440\" plane=\"far\" depth=\"504\"/>";
str = str + "<object tile=\"house_med2\" x=\"2750\" y=\"1250\" plane=\"far\" depth=\"505\"/>";
str = str + "<object tile=\"house_med3\" x=\"2750\" y=\"1350\" plane=\"far\" depth=\"506\"/>";
str = str + "<object tile=\"hangar2\" x=\"2420\" y=\"1970\" plane=\"far\" depth=\"507\"/>";
str = str + "<object tile=\"hangar2\" x=\"2420\" y=\"1830\" plane=\"far\" depth=\"508\"/>";
str = str + "<object tile=\"oil_punp2\" x=\"2100\" y=\"2100\" plane=\"far\" depth=\"509\"/>";
str = str + "<object tile=\"oil_punp2\" x=\"2100\" y=\"1980\" plane=\"far\" depth=\"510\"/>";
str = str + "<object tile=\"oil_barrel2\" x=\"2220\" y=\"2050\" plane=\"far\" depth=\"511\"/>";
str = str + "<object tile=\"oil_barrel2\" x=\"2220\" y=\"1920\" plane=\"far\" depth=\"512\"/>";
str = str + "<object tile=\"oil_pump1\" x=\"2440\" y=\"2140\" plane=\"far\" depth=\"513\"/>";
str = str + "<object tile=\"oil_barrel2\" x=\"2450\" y=\"2080\" plane=\"far\" depth=\"514\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3480\" y=\"1930\" plane=\"far\" depth=\"515\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3480\" y=\"2000\" plane=\"far\" depth=\"516\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3490\" y=\"2060\" plane=\"far\" depth=\"517\"/>";
str = str + "<object tile=\"house_med4\" x=\"3520\" y=\"2070\" plane=\"far\" depth=\"518\"/>";
str = str + "<object tile=\"hero1\" x=\"1410\" y=\"3290\" plane=\"far\" depth=\"519\"/>";
str = str + "<object tile=\"PZRK\" x=\"1410\" y=\"780\" plane=\"main\" depth=\"520\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-212\" deltay=\"-14\" mtype=\"lin\" steps=\"106\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"125\" deltay=\"177\" mtype=\"lin\" steps=\"108\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"87\" deltay=\"-163\" mtype=\"lin\" steps=\"92\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1190\" y=\"960\" plane=\"main\" depth=\"521\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"85\" deltay=\"-40\" mtype=\"lin\" steps=\"46\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"60\" deltay=\"96\" mtype=\"lin\" steps=\"56\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"77\" deltay=\"-55\" mtype=\"lin\" steps=\"47\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-222\" deltay=\"-1\" mtype=\"lin\" steps=\"111\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1680\" y=\"1030\" plane=\"main\" depth=\"522\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-127\" deltay=\"-26\" mtype=\"lin\" steps=\"64\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"65\" deltay=\"-61\" mtype=\"lin\" steps=\"44\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"62\" deltay=\"87\" mtype=\"lin\" steps=\"53\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1010\" y=\"1870\" plane=\"main\" depth=\"523\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"20\" deltay=\"68\" mtype=\"lin\" steps=\"35\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"39\" deltay=\"-50\" mtype=\"lin\" steps=\"31\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-59\" deltay=\"-18\" mtype=\"lin\" steps=\"30\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1120\" y=\"2160\" plane=\"main\" depth=\"524\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-114\" deltay=\"20\" mtype=\"lin\" steps=\"57\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"89\" deltay=\"31\" mtype=\"lin\" steps=\"47\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"25\" deltay=\"-51\" mtype=\"lin\" steps=\"28\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"1070\" y=\"2260\" plane=\"main\" depth=\"525\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"104\" deltay=\"-1\" mtype=\"lin\" steps=\"52\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-104\" deltay=\"1\" mtype=\"lin\" steps=\"52\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1370\" y=\"2200\" plane=\"main\" depth=\"526\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"87\" deltay=\"29\" mtype=\"lin\" steps=\"45\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-87\" deltay=\"-29\" mtype=\"lin\" steps=\"45\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"1320\" y=\"1930\" plane=\"main\" depth=\"527\"/>";
str = str + "<object tile=\"gunner\" x=\"2410\" y=\"2460\" plane=\"main\" depth=\"528\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1\" deltay=\"80\" mtype=\"lin\" steps=\"40\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"1\" deltay=\"-80\" mtype=\"lin\" steps=\"40\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2550\" y=\"2300\" plane=\"main\" depth=\"529\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"48\" deltay=\"-53\" mtype=\"lin\" steps=\"35\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"28\" deltay=\"58\" mtype=\"lin\" steps=\"32\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-76\" deltay=\"-5\" mtype=\"lin\" steps=\"38\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"2540\" y=\"2110\" plane=\"main\" depth=\"530\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"100\" deltay=\"-67\" mtype=\"lin\" steps=\"60\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-11\" deltay=\"90\" mtype=\"lin\" steps=\"45\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-89\" deltay=\"-23\" mtype=\"lin\" steps=\"45\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"2190\" y=\"2080\" plane=\"main\" depth=\"531\"/>";
str = str + "<object tile=\"gunner\" x=\"2150\" y=\"2070\" plane=\"main\" depth=\"532\"/>";
str = str + "<object tile=\"PZRK\" x=\"2150\" y=\"1960\" plane=\"main\" depth=\"533\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"21\" deltay=\"-102\" mtype=\"lin\" steps=\"52\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-21\" deltay=\"102\" mtype=\"lin\" steps=\"52\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"2010\" y=\"2110\" plane=\"main\" depth=\"534\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-22\" deltay=\"-54\" mtype=\"lin\" steps=\"29\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"73\" deltay=\"92\" mtype=\"lin\" steps=\"58\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-51\" deltay=\"-38\" mtype=\"lin\" steps=\"31\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"2130\" y=\"2180\" plane=\"main\" depth=\"535\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"100\" deltay=\"0\" mtype=\"lin\" steps=\"50\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-100\" deltay=\"0\" mtype=\"lin\" steps=\"50\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2050\" y=\"2290\" plane=\"main\" depth=\"536\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"113\" deltay=\"-33\" mtype=\"lin\" steps=\"58\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"112\" deltay=\"5\" mtype=\"lin\" steps=\"56\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-21\" deltay=\"71\" mtype=\"lin\" steps=\"37\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-204\" deltay=\"-43\" mtype=\"lin\" steps=\"104\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2130\" y=\"2400\" plane=\"main\" depth=\"537\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"83\" deltay=\"-16\" mtype=\"lin\" steps=\"42\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-63\" deltay=\"-57\" mtype=\"lin\" steps=\"42\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-20\" deltay=\"73\" mtype=\"lin\" steps=\"37\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"3780\" y=\"2410\" plane=\"main\" depth=\"538\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-92\" deltay=\"-72\" mtype=\"lin\" steps=\"58\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-4\" deltay=\"101\" mtype=\"lin\" steps=\"50\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"96\" deltay=\"-29\" mtype=\"lin\" steps=\"50\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"3610\" y=\"2430\" plane=\"main\" depth=\"539\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-93\" deltay=\"-13\" mtype=\"lin\" steps=\"46\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"93\" deltay=\"13\" mtype=\"lin\" steps=\"46\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"3120\" y=\"2100\" plane=\"main\" depth=\"540\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"21\" deltay=\"136\" mtype=\"lin\" steps=\"68\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"66\" deltay=\"-17\" mtype=\"lin\" steps=\"34\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-84\" deltay=\"-20\" mtype=\"lin\" steps=\"43\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-3\" deltay=\"-99\" mtype=\"lin\" steps=\"49\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"3140\" y=\"1850\" plane=\"main\" depth=\"541\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"7\" deltay=\"71\" mtype=\"lin\" steps=\"35\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-7\" deltay=\"-71\" mtype=\"lin\" steps=\"35\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"3200\" y=\"1850\" plane=\"main\" depth=\"542\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"3\" deltay=\"72\" mtype=\"lin\" steps=\"36\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-3\" deltay=\"-72\" mtype=\"lin\" steps=\"36\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_3\" x=\"3020\" y=\"1570\" plane=\"main\" depth=\"543\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-276\" deltay=\"9\" mtype=\"lin\" steps=\"138\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"276\" deltay=\"-9\" mtype=\"lin\" steps=\"138\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_3\" x=\"3260\" y=\"1510\" plane=\"main\" depth=\"544\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1\" deltay=\"162\" mtype=\"lin\" steps=\"81\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"1\" deltay=\"-162\" mtype=\"lin\" steps=\"81\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_3\" x=\"3380\" y=\"1510\" plane=\"main\" depth=\"545\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-274\" deltay=\"-2\" mtype=\"lin\" steps=\"137\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"274\" deltay=\"2\" mtype=\"lin\" steps=\"137\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_3\" x=\"3770\" y=\"1290\" plane=\"main\" depth=\"546\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"93\" deltay=\"-14\" mtype=\"lin\" steps=\"47\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-4\" deltay=\"-122\" mtype=\"lin\" steps=\"61\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-89\" deltay=\"136\" mtype=\"lin\" steps=\"81\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK_3\" x=\"3180\" y=\"1420\" plane=\"main\" depth=\"547\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-129\" deltay=\"-101\" mtype=\"lin\" steps=\"81\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"129\" deltay=\"101\" mtype=\"lin\" steps=\"81\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_3\" x=\"2680\" y=\"1050\" plane=\"main\" depth=\"548\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-11\" deltay=\"315\" mtype=\"lin\" steps=\"157\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"11\" deltay=\"-315\" mtype=\"lin\" steps=\"157\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_3\" x=\"2880\" y=\"950\" plane=\"main\" depth=\"549\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-164\" deltay=\"-3\" mtype=\"lin\" steps=\"82\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-34\" deltay=\"124\" mtype=\"lin\" steps=\"64\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1\" deltay=\"-134\" mtype=\"lin\" steps=\"67\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"199\" deltay=\"13\" mtype=\"lin\" steps=\"99\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_3\" x=\"3270\" y=\"960\" plane=\"main\" depth=\"550\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-274\" deltay=\"8\" mtype=\"lin\" steps=\"137\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"274\" deltay=\"-8\" mtype=\"lin\" steps=\"137\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_3\" x=\"3780\" y=\"980\" plane=\"main\" depth=\"551\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-4\" deltay=\"271\" mtype=\"lin\" steps=\"135\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"4\" deltay=\"-271\" mtype=\"lin\" steps=\"135\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK_3\" x=\"3089\" y=\"1389\" plane=\"main\" depth=\"552\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"166\" deltay=\"120\" mtype=\"lin\" steps=\"102\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-166\" deltay=\"-120\" mtype=\"lin\" steps=\"102\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK_3\" x=\"3209\" y=\"1369\" plane=\"main\" depth=\"553\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-23\" deltay=\"-83\" mtype=\"lin\" steps=\"43\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"23\" deltay=\"83\" mtype=\"lin\" steps=\"43\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_3\" x=\"2959\" y=\"1249\" plane=\"main\" depth=\"554\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-81\" deltay=\"107\" mtype=\"lin\" steps=\"67\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"81\" deltay=\"-107\" mtype=\"lin\" steps=\"67\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"artelery_unit\" x=\"3101\" y=\"1172\" plane=\"main\" depth=\"555\"/>";
str = str + "<object tile=\"PZRK_3\" x=\"3179\" y=\"1189\" plane=\"main\" depth=\"556\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-151\" deltay=\"-4\" mtype=\"lin\" steps=\"75\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"14\" deltay=\"123\" mtype=\"lin\" steps=\"61\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"108\" deltay=\"31\" mtype=\"lin\" steps=\"56\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"29\" deltay=\"-150\" mtype=\"lin\" steps=\"76\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"tank_pvo1\" x=\"3250\" y=\"1210\" plane=\"main\" depth=\"557\"/>";
str = str + "<object tile=\"PZRK_3\" x=\"3339\" y=\"1279\" plane=\"main\" depth=\"558\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-96\" deltay=\"22\" mtype=\"lin\" steps=\"49\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"96\" deltay=\"-22\" mtype=\"lin\" steps=\"49\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_3\" x=\"3420\" y=\"1237\" plane=\"main\" depth=\"559\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"23\" deltay=\"-139\" mtype=\"lin\" steps=\"70\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"39\" deltay=\"117\" mtype=\"lin\" steps=\"61\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-62\" deltay=\"22\" mtype=\"lin\" steps=\"32\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_3\" x=\"3659\" y=\"1399\" plane=\"main\" depth=\"560\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"20\" deltay=\"-103\" mtype=\"lin\" steps=\"52\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-20\" deltay=\"103\" mtype=\"lin\" steps=\"52\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"artelery_unit\" x=\"3349\" y=\"1029\" plane=\"main\" depth=\"561\"/>";
str = str + "<object tile=\"artelery_unit\" x=\"3200\" y=\"820\" plane=\"main\" depth=\"562\"/>";
str = str + "<object tile=\"gunner_3\" x=\"3299\" y=\"799\" plane=\"main\" depth=\"563\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-9\" deltay=\"154\" mtype=\"lin\" steps=\"77\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"194\" deltay=\"-2\" mtype=\"lin\" steps=\"97\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-185\" deltay=\"-152\" mtype=\"lin\" steps=\"119\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_3\" x=\"3579\" y=\"779\" plane=\"main\" depth=\"564\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"1\" deltay=\"176\" mtype=\"lin\" steps=\"88\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-145\" deltay=\"-158\" mtype=\"lin\" steps=\"107\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"144\" deltay=\"-18\" mtype=\"lin\" steps=\"72\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_3\" x=\"2600\" y=\"1350\" plane=\"main\" depth=\"565\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"6\" deltay=\"197\" mtype=\"lin\" steps=\"98\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"154\" deltay=\"20\" mtype=\"lin\" steps=\"77\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-118\" deltay=\"-53\" mtype=\"lin\" steps=\"64\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-42\" deltay=\"-164\" mtype=\"lin\" steps=\"84\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK_3\" x=\"3850\" y=\"1410\" plane=\"main\" depth=\"566\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-87\" deltay=\"131\" mtype=\"lin\" steps=\"78\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-241\" deltay=\"-4\" mtype=\"lin\" steps=\"120\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"28\" deltay=\"137\" mtype=\"lin\" steps=\"69\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"300\" deltay=\"-264\" mtype=\"lin\" steps=\"199\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"palms3\" x=\"2590\" y=\"2060\" plane=\"nearest\" depth=\"567\"/>";
str = str + "<object tile=\"palms4\" x=\"2580\" y=\"1910\" plane=\"nearest\" depth=\"568\"/>";
str = str + "<object tile=\"palms4\" x=\"2400\" y=\"2180\" plane=\"nearest\" depth=\"569\"/>";
str = str + "<object tile=\"palms5\" x=\"2620\" y=\"2180\" plane=\"nearest\" depth=\"570\"/>";
str = str + "<object tile=\"palms1\" x=\"2640\" y=\"1900\" plane=\"nearest\" depth=\"571\"/>";
str = str + "<object tile=\"palms1\" x=\"2640\" y=\"2270\" plane=\"nearest\" depth=\"572\"/>";
str = str + "<object tile=\"palms4\" x=\"2000\" y=\"2130\" plane=\"nearest\" depth=\"573\"/>";
str = str + "<object tile=\"palms5\" x=\"2110\" y=\"2160\" plane=\"nearest\" depth=\"574\"/>";
str = str + "<object tile=\"palms1\" x=\"2150\" y=\"2380\" plane=\"nearest\" depth=\"575\"/>";
str = str + "<object tile=\"palms1\" x=\"2060\" y=\"2300\" plane=\"nearest\" depth=\"576\"/>";
str = str + "<object tile=\"palms1\" x=\"2060\" y=\"1880\" plane=\"nearest\" depth=\"577\"/>";
str = str + "<object tile=\"palms1\" x=\"2100\" y=\"1870\" plane=\"nearest\" depth=\"578\"/>";
str = str + "<object tile=\"palms1\" x=\"2080\" y=\"1910\" plane=\"nearest\" depth=\"579\"/>";
str = str + "<object tile=\"palms1\" x=\"2140\" y=\"2330\" plane=\"nearest\" depth=\"580\"/>";
str = str + "<object tile=\"palms3\" x=\"2000\" y=\"2010\" plane=\"nearest\" depth=\"581\"/>";
str = str + "<object tile=\"palms5\" x=\"2170\" y=\"1830\" plane=\"nearest\" depth=\"582\"/>";
str = str + "<object tile=\"palms1\" x=\"2170\" y=\"1920\" plane=\"nearest\" depth=\"583\"/>";
str = str + "<object tile=\"palms1\" x=\"3440\" y=\"2360\" plane=\"nearest\" depth=\"584\"/>";
str = str + "<object tile=\"palms1\" x=\"3450\" y=\"2330\" plane=\"nearest\" depth=\"585\"/>";
str = str + "<object tile=\"palms1\" x=\"3450\" y=\"2280\" plane=\"nearest\" depth=\"586\"/>";
str = str + "<object tile=\"palms1\" x=\"3740\" y=\"2330\" plane=\"nearest\" depth=\"587\"/>";
str = str + "<object tile=\"palms3\" x=\"3710\" y=\"2430\" plane=\"nearest\" depth=\"588\"/>";
str = str + "<object tile=\"palms1\" x=\"3550\" y=\"2500\" plane=\"nearest\" depth=\"589\"/>";
str = str + "<object tile=\"palms1\" x=\"3100\" y=\"1880\" plane=\"nearest\" depth=\"590\"/>";
str = str + "<object tile=\"palms5\" x=\"3100\" y=\"1790\" plane=\"nearest\" depth=\"591\"/>";
str = str + "<object tile=\"palms1\" x=\"2730\" y=\"1440\" plane=\"nearest\" depth=\"592\"/>";
str = str + "<object tile=\"palms1\" x=\"2780\" y=\"1450\" plane=\"nearest\" depth=\"593\"/>";
str = str + "<object tile=\"palms4\" x=\"980\" y=\"1800\" plane=\"nearest\" depth=\"594\"/>";
str = str + "<object tile=\"palms5\" x=\"1330\" y=\"2120\" plane=\"nearest\" depth=\"595\"/>";
str = str + "<object tile=\"palms1\" x=\"1390\" y=\"2220\" plane=\"nearest\" depth=\"596\"/>";
str = str + "<object tile=\"palms1\" x=\"1330\" y=\"2220\" plane=\"nearest\" depth=\"597\"/>";
str = str + "<object tile=\"palms1\" x=\"970\" y=\"1930\" plane=\"nearest\" depth=\"598\"/>";
str = str + "<object tile=\"palms3\" x=\"1050\" y=\"2150\" plane=\"nearest\" depth=\"599\"/>";
str = str + "<object tile=\"palms1\" x=\"1020\" y=\"2190\" plane=\"nearest\" depth=\"600\"/>";
str = str + "<object tile=\"palms1\" x=\"970\" y=\"2200\" plane=\"nearest\" depth=\"601\"/>";
str = str + "<object tile=\"palms1\" x=\"1300\" y=\"1900\" plane=\"nearest\" depth=\"602\"/>";
str = str + "<object tile=\"palms5\" x=\"1570\" y=\"3220\" plane=\"nearest\" depth=\"603\"/>";
str = str + "<object tile=\"palms1\" x=\"1640\" y=\"3370\" plane=\"nearest\" depth=\"604\"/>";
str = str + "<object tile=\"palms3\" x=\"1510\" y=\"3290\" plane=\"nearest\" depth=\"605\"/>";
str = str + "<object tile=\"palms3\" x=\"1570\" y=\"960\" plane=\"nearest\" depth=\"606\"/>";
str = str + "<object tile=\"palms1\" x=\"1630\" y=\"1080\" plane=\"nearest\" depth=\"607\"/>";
str = str + "<object tile=\"palms1\" x=\"1660\" y=\"1040\" plane=\"nearest\" depth=\"608\"/>";
str = str + "<object tile=\"palms1\" x=\"1650\" y=\"940\" plane=\"nearest\" depth=\"609\"/>";
str = str + "<object tile=\"palms1\" x=\"1170\" y=\"740\" plane=\"nearest\" depth=\"610\"/>";
str = str + "<object tile=\"palms1\" x=\"2980\" y=\"2410\" plane=\"nearest\" depth=\"611\"/>";
str = str + "<object tile=\"palms3\" x=\"2220\" y=\"2910\" plane=\"nearest\" depth=\"612\"/>";
str = str + "<object tile=\"palms3\" x=\"2390\" y=\"2560\" plane=\"nearest\" depth=\"613\"/>";
str = str + "<object tile=\"palms4\" x=\"2400\" y=\"2780\" plane=\"nearest\" depth=\"614\"/>";
str = str + "<object tile=\"palms5\" x=\"2170\" y=\"2610\" plane=\"nearest\" depth=\"615\"/>";
str = str + "<object tile=\"palms5\" x=\"2410\" y=\"2990\" plane=\"nearest\" depth=\"616\"/>";
str = str + "<object tile=\"palms5\" x=\"2150\" y=\"2770\" plane=\"nearest\" depth=\"617\"/>";
str = str + "<object tile=\"palms4\" x=\"2430\" y=\"2690\" plane=\"nearest\" depth=\"618\"/>";
str = str + "<object tile=\"palms1\" x=\"2270\" y=\"2600\" plane=\"nearest\" depth=\"619\"/>";
str = str + "<object tile=\"palms1\" x=\"2170\" y=\"2700\" plane=\"nearest\" depth=\"620\"/>";
str = str + "<object tile=\"palms1\" x=\"2250\" y=\"3040\" plane=\"nearest\" depth=\"621\"/>";
str = str + "<object tile=\"palms1\" x=\"2420\" y=\"2950\" plane=\"nearest\" depth=\"622\"/>";
str = str + "<object tile=\"null_tile\" x=\"4040\" y=\"810\" plane=\"nearest1\" depth=\"623\"/>";
str = str + "<object tile=\"null_tile\" x=\"4040\" y=\"410\" plane=\"nearest1\" depth=\"624\"/>";
str = str + "<object tile=\"null_tile\" x=\"3700\" y=\"10\" plane=\"nearest1\" depth=\"625\"/>";
str = str + "<object tile=\"null_tile\" x=\"950\" y=\"10\" plane=\"nearest1\" depth=\"626\"/>";
str = str + "<object tile=\"null_tile\" x=\"400\" y=\"10\" plane=\"nearest1\" depth=\"627\"/>";
str = str + "<object tile=\"null_tile\" x=\"190\" y=\"410\" plane=\"nearest1\" depth=\"628\"/>";
str = str + "<object tile=\"null_tile\" x=\"190\" y=\"1610\" plane=\"nearest1\" depth=\"629\"/>";
str = str + "<object tile=\"null_tile\" x=\"190\" y=\"2010\" plane=\"nearest1\" depth=\"630\"/>";
str = str + "<object tile=\"null_tile\" x=\"190\" y=\"2410\" plane=\"nearest1\" depth=\"631\"/>";
str = str + "<object tile=\"null_tile\" x=\"190\" y=\"2810\" plane=\"nearest1\" depth=\"632\"/>";
str = str + "<object tile=\"null_tile\" x=\"190\" y=\"3210\" plane=\"nearest1\" depth=\"633\"/>";
str = str + "<object tile=\"null_tile\" x=\"190\" y=\"3610\" plane=\"nearest1\" depth=\"634\"/>";
str = str + "<object tile=\"null_tile\" x=\"740\" y=\"3610\" plane=\"nearest1\" depth=\"635\"/>";
str = str + "<object tile=\"null_tile\" x=\"190\" y=\"810\" plane=\"nearest1\" depth=\"636\"/>";
str = str + "<object tile=\"null_tile\" x=\"190\" y=\"1210\" plane=\"nearest1\" depth=\"637\"/>";
str = str + "<object tile=\"null_tile\" x=\"2050\" y=\"10\" plane=\"nearest1\" depth=\"638\"/>";
str = str + "<object tile=\"null_tile\" x=\"1500\" y=\"10\" plane=\"nearest1\" depth=\"639\"/>";
str = str + "<object tile=\"null_tile\" x=\"3150\" y=\"10\" plane=\"nearest1\" depth=\"640\"/>";
str = str + "<object tile=\"null_tile\" x=\"2600\" y=\"10\" plane=\"nearest1\" depth=\"641\"/>";
str = str + "<object tile=\"null_tile\" x=\"4040\" y=\"2810\" plane=\"nearest1\" depth=\"642\"/>";
str = str + "<object tile=\"null_tile\" x=\"4040\" y=\"2410\" plane=\"nearest1\" depth=\"643\"/>";
str = str + "<object tile=\"null_tile\" x=\"4040\" y=\"2010\" plane=\"nearest1\" depth=\"644\"/>";
str = str + "<object tile=\"null_tile\" x=\"4040\" y=\"1210\" plane=\"nearest1\" depth=\"645\"/>";
str = str + "<object tile=\"null_tile\" x=\"4040\" y=\"1610\" plane=\"nearest1\" depth=\"646\"/>";
str = str + "<object tile=\"null_tile\" x=\"4040\" y=\"3210\" plane=\"nearest1\" depth=\"647\"/>";
str = str + "<object tile=\"null_tile\" x=\"4040\" y=\"3610\" plane=\"nearest1\" depth=\"648\"/>";
str = str + "<object tile=\"null_tile\" x=\"2940\" y=\"3610\" plane=\"nearest1\" depth=\"649\"/>";
str = str + "<object tile=\"null_tile\" x=\"1290\" y=\"3610\" plane=\"nearest1\" depth=\"650\"/>";
str = str + "<object tile=\"null_tile\" x=\"1840\" y=\"3610\" plane=\"nearest1\" depth=\"651\"/>";
str = str + "<object tile=\"null_tile\" x=\"2390\" y=\"3610\" plane=\"nearest1\" depth=\"652\"/>";
str = str + "<object tile=\"null_tile\" x=\"3490\" y=\"3610\" plane=\"nearest1\" depth=\"653\"/>";
str = str + "</array>";
str = str + "</object>";
str = str + "<object name=\"level_5\">";
str = str + "<var name=\"comment\" >There is new evidence of an imminent terrorist attack. Suicide bombers driving trucks packed with explosives are going to try to break into the refugee camp. Prevent hundreds of refugees from facing a tortuous death.";
str = str + "- top-priority assignment: destroy the explosives-packed.";
str = str + "</var>";
str = str + "<array name=\"missions\">";
str = str + "<object group=\"miss_5\" arrow=\"arr_1\" missionType=\"kill\" active=\"1\" timer=\"800\" winAmount=\"3\" looseAmount=\"1\" actionTrue=\"score 1000,startClip ScompletedMission\" actionFalse=\"score 0,startClip SfailedMission\"/>";
str = str + "<object group=\"miss_3_1\" dontCount=\"1\" missionType=\"survive\" active=\"1\" timer=\"800\" winAmount=\"5\" looseAmount=\"1\" actionTrue=\"score 1000,startClip completedMission, win\" actionFalse=\"score 0,startClip failedMission, loose\"/>";
str = str + "</array>";
str = str + "<array name=\"level\">";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1480\" plane=\"far2\" depth=\"1\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1480\" plane=\"far2\" depth=\"2\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1380\" plane=\"far2\" depth=\"3\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1380\" plane=\"far2\" depth=\"4\"/>";
str = str + "<object tile=\"road_u2\" x=\"1880\" y=\"780\" plane=\"far2\" depth=\"5\"/>";
str = str + "<object tile=\"road_u_l\" x=\"2280\" y=\"1580\" plane=\"far2\" depth=\"6\"/>";
str = str + "<object tile=\"road_u2\" x=\"1780\" y=\"780\" plane=\"far2\" depth=\"7\"/>";
str = str + "<object tile=\"road_d1\" x=\"2080\" y=\"880\" plane=\"far2\" depth=\"8\"/>";
str = str + "<object tile=\"road_u2\" x=\"2080\" y=\"780\" plane=\"far2\" depth=\"9\"/>";
str = str + "<object tile=\"road_u2\" x=\"2180\" y=\"780\" plane=\"far2\" depth=\"10\"/>";
str = str + "<object tile=\"road_d1\" x=\"2580\" y=\"1680\" plane=\"far2\" depth=\"11\"/>";
str = str + "<object tile=\"road_u2\" x=\"2580\" y=\"1580\" plane=\"far2\" depth=\"12\"/>";
str = str + "<object tile=\"road_d_r\" x=\"2380\" y=\"1680\" plane=\"far2\" depth=\"13\"/>";
str = str + "<object tile=\"road_u_r\" x=\"2380\" y=\"1580\" plane=\"far2\" depth=\"14\"/>";
str = str + "<object tile=\"road_d1\" x=\"2480\" y=\"1680\" plane=\"far2\" depth=\"15\"/>";
str = str + "<object tile=\"road_u2\" x=\"2480\" y=\"1580\" plane=\"far2\" depth=\"16\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1780\" plane=\"far2\" depth=\"17\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1780\" plane=\"far2\" depth=\"18\"/>";
str = str + "<object tile=\"road_d1\" x=\"1980\" y=\"880\" plane=\"far2\" depth=\"19\"/>";
str = str + "<object tile=\"road_u2\" x=\"1980\" y=\"780\" plane=\"far2\" depth=\"20\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1280\" plane=\"far2\" depth=\"21\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1280\" plane=\"far2\" depth=\"22\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1180\" plane=\"far2\" depth=\"23\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1180\" plane=\"far2\" depth=\"24\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1080\" plane=\"far2\" depth=\"25\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1080\" plane=\"far2\" depth=\"26\"/>";
str = str + "<object tile=\"road_d_l\" x=\"2280\" y=\"880\" plane=\"far2\" depth=\"27\"/>";
str = str + "<object tile=\"road_u2\" x=\"2280\" y=\"780\" plane=\"far2\" depth=\"28\"/>";
str = str + "<object tile=\"road_d1\" x=\"2180\" y=\"880\" plane=\"far2\" depth=\"29\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"980\" plane=\"far2\" depth=\"30\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"980\" plane=\"far2\" depth=\"31\"/>";
str = str + "<object tile=\"road_d_l\" x=\"2280\" y=\"1680\" plane=\"far2\" depth=\"32\"/>";
str = str + "<object tile=\"road_d1\" x=\"1880\" y=\"1680\" plane=\"far2\" depth=\"33\"/>";
str = str + "<object tile=\"road_d1\" x=\"1780\" y=\"1680\" plane=\"far2\" depth=\"34\"/>";
str = str + "<object tile=\"road_u2\" x=\"2180\" y=\"1580\" plane=\"far2\" depth=\"35\"/>";
str = str + "<object tile=\"road_d1\" x=\"2180\" y=\"1680\" plane=\"far2\" depth=\"36\"/>";
str = str + "<object tile=\"road_d1\" x=\"2080\" y=\"1680\" plane=\"far2\" depth=\"37\"/>";
str = str + "<object tile=\"road_u2\" x=\"2080\" y=\"1580\" plane=\"far2\" depth=\"38\"/>";
str = str + "<object tile=\"road_u2\" x=\"1980\" y=\"1580\" plane=\"far2\" depth=\"39\"/>";
str = str + "<object tile=\"road_d1\" x=\"1980\" y=\"1680\" plane=\"far2\" depth=\"40\"/>";
str = str + "<object tile=\"road_d1\" x=\"1880\" y=\"880\" plane=\"far2\" depth=\"41\"/>";
str = str + "<object tile=\"road_d1\" x=\"1780\" y=\"880\" plane=\"far2\" depth=\"42\"/>";
str = str + "<object tile=\"road_u2\" x=\"1880\" y=\"1580\" plane=\"far2\" depth=\"43\"/>";
str = str + "<object tile=\"road_u2\" x=\"1780\" y=\"1580\" plane=\"far2\" depth=\"44\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"880\" plane=\"far2\" depth=\"45\"/>";
str = str + "<object tile=\"road_ru\" x=\"2380\" y=\"780\" plane=\"far2\" depth=\"46\"/>";
str = str + "<object tile=\"road_ld\" x=\"1680\" y=\"880\" plane=\"far2\" depth=\"47\"/>";
str = str + "<object tile=\"road_lu\" x=\"1680\" y=\"780\" plane=\"far2\" depth=\"48\"/>";
str = str + "<object tile=\"road_d1\" x=\"1680\" y=\"1680\" plane=\"far2\" depth=\"49\"/>";
str = str + "<object tile=\"road_u2\" x=\"1680\" y=\"1580\" plane=\"far2\" depth=\"50\"/>";
str = str + "<object tile=\"road_u2\" x=\"1580\" y=\"1580\" plane=\"far2\" depth=\"51\"/>";
str = str + "<object tile=\"road_d1\" x=\"1580\" y=\"1680\" plane=\"far2\" depth=\"52\"/>";
str = str + "<object tile=\"road_d1\" x=\"1480\" y=\"1680\" plane=\"far2\" depth=\"53\"/>";
str = str + "<object tile=\"road_u2\" x=\"1480\" y=\"1580\" plane=\"far2\" depth=\"54\"/>";
str = str + "<object tile=\"road_u2\" x=\"1380\" y=\"1580\" plane=\"far2\" depth=\"55\"/>";
str = str + "<object tile=\"road_d1\" x=\"1380\" y=\"1680\" plane=\"far2\" depth=\"56\"/>";
str = str + "<object tile=\"road_d1\" x=\"1280\" y=\"1680\" plane=\"far2\" depth=\"57\"/>";
str = str + "<object tile=\"road_u2\" x=\"1280\" y=\"1580\" plane=\"far2\" depth=\"58\"/>";
str = str + "<object tile=\"road_u2\" x=\"1180\" y=\"1580\" plane=\"far2\" depth=\"59\"/>";
str = str + "<object tile=\"road_d_r\" x=\"1180\" y=\"1680\" plane=\"far2\" depth=\"60\"/>";
str = str + "<object tile=\"road_lu\" x=\"1080\" y=\"1580\" plane=\"far2\" depth=\"61\"/>";
str = str + "<object tile=\"road_l3\" x=\"1080\" y=\"1680\" plane=\"far2\" depth=\"62\"/>";
str = str + "<object tile=\"road_ld\" x=\"1080\" y=\"1780\" plane=\"far2\" depth=\"63\"/>";
str = str + "<object tile=\"road_rd\" x=\"1180\" y=\"1780\" plane=\"far2\" depth=\"64\"/>";
str = str + "<object tile=\"road_d1\" x=\"2680\" y=\"1680\" plane=\"far2\" depth=\"65\"/>";
str = str + "<object tile=\"road_u2\" x=\"2680\" y=\"1580\" plane=\"far2\" depth=\"66\"/>";
str = str + "<object tile=\"road_d1\" x=\"2780\" y=\"1680\" plane=\"far2\" depth=\"67\"/>";
str = str + "<object tile=\"road_u2\" x=\"2780\" y=\"1580\" plane=\"far2\" depth=\"68\"/>";
str = str + "<object tile=\"road_d1\" x=\"2880\" y=\"1680\" plane=\"far2\" depth=\"69\"/>";
str = str + "<object tile=\"road_u2\" x=\"2880\" y=\"1580\" plane=\"far2\" depth=\"70\"/>";
str = str + "<object tile=\"road_d1\" x=\"2980\" y=\"1680\" plane=\"far2\" depth=\"71\"/>";
str = str + "<object tile=\"road_u2\" x=\"2980\" y=\"1580\" plane=\"far2\" depth=\"72\"/>";
str = str + "<object tile=\"road_d1\" x=\"3080\" y=\"1680\" plane=\"far2\" depth=\"73\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3080\" y=\"1580\" plane=\"far2\" depth=\"74\"/>";
str = str + "<object tile=\"road_rd\" x=\"3180\" y=\"1680\" plane=\"far2\" depth=\"75\"/>";
str = str + "<object tile=\"road_r1\" x=\"3180\" y=\"1580\" plane=\"far2\" depth=\"76\"/>";
str = str + "<object tile=\"road_l3\" x=\"3080\" y=\"1480\" plane=\"far2\" depth=\"77\"/>";
str = str + "<object tile=\"road_r1\" x=\"3180\" y=\"1480\" plane=\"far2\" depth=\"78\"/>";
str = str + "<object tile=\"road_ru\" x=\"3180\" y=\"1380\" plane=\"far2\" depth=\"79\"/>";
str = str + "<object tile=\"road_lu\" x=\"3080\" y=\"1380\" plane=\"far2\" depth=\"80\"/>";
str = str + "<object tile=\"road_rd\" x=\"3460\" y=\"970\" plane=\"far2\" depth=\"81\"/>";
str = str + "<object tile=\"road_ld\" x=\"3360\" y=\"970\" plane=\"far2\" depth=\"82\"/>";
str = str + "<object tile=\"road_l3\" x=\"3360\" y=\"870\" plane=\"far2\" depth=\"83\"/>";
str = str + "<object tile=\"road_d_r\" x=\"3460\" y=\"870\" plane=\"far2\" depth=\"84\"/>";
str = str + "<object tile=\"road_lu\" x=\"3360\" y=\"770\" plane=\"far2\" depth=\"85\"/>";
str = str + "<object tile=\"road_u2\" x=\"3460\" y=\"770\" plane=\"far2\" depth=\"86\"/>";
str = str + "<object tile=\"road_d1\" x=\"3560\" y=\"870\" plane=\"far2\" depth=\"87\"/>";
str = str + "<object tile=\"road_u2\" x=\"3560\" y=\"770\" plane=\"far2\" depth=\"88\"/>";
str = str + "<object tile=\"road_d1\" x=\"3660\" y=\"870\" plane=\"far2\" depth=\"89\"/>";
str = str + "<object tile=\"road_rd\" x=\"3760\" y=\"860\" plane=\"far2\" depth=\"90\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3660\" y=\"770\" plane=\"far2\" depth=\"91\"/>";
str = str + "<object tile=\"road_r1\" x=\"3760\" y=\"770\" plane=\"far2\" depth=\"92\"/>";
str = str + "<object tile=\"road_r1\" x=\"3760\" y=\"670\" plane=\"far2\" depth=\"93\"/>";
str = str + "<object tile=\"road_l3\" x=\"3660\" y=\"670\" plane=\"far2\" depth=\"94\"/>";
str = str + "<object tile=\"road_l3\" x=\"3660\" y=\"570\" plane=\"far2\" depth=\"95\"/>";
str = str + "<object tile=\"road_r1\" x=\"3760\" y=\"570\" plane=\"far2\" depth=\"96\"/>";
str = str + "<object tile=\"road_l3\" x=\"3660\" y=\"470\" plane=\"far2\" depth=\"97\"/>";
str = str + "<object tile=\"road_r1\" x=\"3760\" y=\"470\" plane=\"far2\" depth=\"98\"/>";
str = str + "<object tile=\"road_r1\" x=\"3760\" y=\"370\" plane=\"far2\" depth=\"99\"/>";
str = str + "<object tile=\"road_l3\" x=\"3660\" y=\"370\" plane=\"far2\" depth=\"100\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1880\" plane=\"far2\" depth=\"101\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1880\" plane=\"far2\" depth=\"102\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"1980\" plane=\"far2\" depth=\"103\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"1980\" plane=\"far2\" depth=\"104\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2080\" plane=\"far2\" depth=\"105\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2080\" plane=\"far2\" depth=\"106\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2180\" plane=\"far2\" depth=\"107\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2180\" plane=\"far2\" depth=\"108\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2280\" plane=\"far2\" depth=\"109\"/>";
str = str + "<object tile=\"road_u_r\" x=\"2380\" y=\"2280\" plane=\"far2\" depth=\"110\"/>";
str = str + "<object tile=\"road_d_r\" x=\"2380\" y=\"2380\" plane=\"far2\" depth=\"111\"/>";
str = str + "<object tile=\"road_u2\" x=\"2480\" y=\"2280\" plane=\"far2\" depth=\"112\"/>";
str = str + "<object tile=\"road_d1\" x=\"2480\" y=\"2380\" plane=\"far2\" depth=\"113\"/>";
str = str + "<object tile=\"road_d1\" x=\"2580\" y=\"2380\" plane=\"far2\" depth=\"114\"/>";
str = str + "<object tile=\"road_u2\" x=\"2580\" y=\"2280\" plane=\"far2\" depth=\"115\"/>";
str = str + "<object tile=\"road_u2\" x=\"2680\" y=\"2280\" plane=\"far2\" depth=\"116\"/>";
str = str + "<object tile=\"road_d1\" x=\"2680\" y=\"2380\" plane=\"far2\" depth=\"117\"/>";
str = str + "<object tile=\"road_d1\" x=\"2780\" y=\"2380\" plane=\"far2\" depth=\"118\"/>";
str = str + "<object tile=\"road_u2\" x=\"2780\" y=\"2280\" plane=\"far2\" depth=\"119\"/>";
str = str + "<object tile=\"road_d1\" x=\"2880\" y=\"2380\" plane=\"far2\" depth=\"120\"/>";
str = str + "<object tile=\"road_u2\" x=\"2880\" y=\"2280\" plane=\"far2\" depth=\"121\"/>";
str = str + "<object tile=\"road_d1\" x=\"2980\" y=\"2380\" plane=\"far2\" depth=\"122\"/>";
str = str + "<object tile=\"road_u2\" x=\"2980\" y=\"2280\" plane=\"far2\" depth=\"123\"/>";
str = str + "<object tile=\"road_d1\" x=\"3080\" y=\"2380\" plane=\"far2\" depth=\"124\"/>";
str = str + "<object tile=\"road_u2\" x=\"3080\" y=\"2280\" plane=\"far2\" depth=\"125\"/>";
str = str + "<object tile=\"road_d1\" x=\"3180\" y=\"2380\" plane=\"far2\" depth=\"126\"/>";
str = str + "<object tile=\"road_u2\" x=\"3180\" y=\"2280\" plane=\"far2\" depth=\"127\"/>";
str = str + "<object tile=\"road_d1\" x=\"3280\" y=\"2380\" plane=\"far2\" depth=\"128\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3280\" y=\"2280\" plane=\"far2\" depth=\"129\"/>";
str = str + "<object tile=\"road_rd\" x=\"3380\" y=\"2380\" plane=\"far2\" depth=\"130\"/>";
str = str + "<object tile=\"road_r1\" x=\"3380\" y=\"2280\" plane=\"far2\" depth=\"131\"/>";
str = str + "<object tile=\"road_ru\" x=\"3380\" y=\"2180\" plane=\"far2\" depth=\"132\"/>";
str = str + "<object tile=\"road_lu\" x=\"3280\" y=\"2180\" plane=\"far2\" depth=\"133\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2380\" plane=\"far2\" depth=\"134\"/>";
str = str + "<object tile=\"road_u_l\" x=\"2280\" y=\"2480\" plane=\"far2\" depth=\"135\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2480\" plane=\"far2\" depth=\"136\"/>";
str = str + "<object tile=\"road_d_l\" x=\"2280\" y=\"2580\" plane=\"far2\" depth=\"137\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2580\" plane=\"far2\" depth=\"138\"/>";
str = str + "<object tile=\"road_d1\" x=\"2180\" y=\"2580\" plane=\"far2\" depth=\"139\"/>";
str = str + "<object tile=\"road_u2\" x=\"2180\" y=\"2480\" plane=\"far2\" depth=\"140\"/>";
str = str + "<object tile=\"road_u2\" x=\"2080\" y=\"2480\" plane=\"far2\" depth=\"141\"/>";
str = str + "<object tile=\"road_u2\" x=\"1980\" y=\"2480\" plane=\"far2\" depth=\"142\"/>";
str = str + "<object tile=\"road_u2\" x=\"1880\" y=\"2480\" plane=\"far2\" depth=\"143\"/>";
str = str + "<object tile=\"road_u2\" x=\"1780\" y=\"2480\" plane=\"far2\" depth=\"144\"/>";
str = str + "<object tile=\"road_u2\" x=\"1680\" y=\"2480\" plane=\"far2\" depth=\"145\"/>";
str = str + "<object tile=\"road_u2\" x=\"1580\" y=\"2480\" plane=\"far2\" depth=\"146\"/>";
str = str + "<object tile=\"road_u2\" x=\"1480\" y=\"2480\" plane=\"far2\" depth=\"147\"/>";
str = str + "<object tile=\"road_l3\" x=\"1380\" y=\"2580\" plane=\"far2\" depth=\"148\"/>";
str = str + "<object tile=\"road_l3\" x=\"1380\" y=\"2680\" plane=\"far2\" depth=\"149\"/>";
str = str + "<object tile=\"road_l3\" x=\"1380\" y=\"2780\" plane=\"far2\" depth=\"150\"/>";
str = str + "<object tile=\"road_ld\" x=\"1380\" y=\"2880\" plane=\"far2\" depth=\"151\"/>";
str = str + "<object tile=\"road_rd\" x=\"1480\" y=\"2880\" plane=\"far2\" depth=\"152\"/>";
str = str + "<object tile=\"road_r1\" x=\"1480\" y=\"2780\" plane=\"far2\" depth=\"153\"/>";
str = str + "<object tile=\"road_r1\" x=\"1480\" y=\"2680\" plane=\"far2\" depth=\"154\"/>";
str = str + "<object tile=\"road_d_r\" x=\"1480\" y=\"2580\" plane=\"far2\" depth=\"155\"/>";
str = str + "<object tile=\"road_lu\" x=\"1380\" y=\"2480\" plane=\"far2\" depth=\"156\"/>";
str = str + "<object tile=\"road_d1\" x=\"1580\" y=\"2580\" plane=\"far2\" depth=\"157\"/>";
str = str + "<object tile=\"road_d1\" x=\"1680\" y=\"2580\" plane=\"far2\" depth=\"158\"/>";
str = str + "<object tile=\"road_d1\" x=\"1780\" y=\"2580\" plane=\"far2\" depth=\"159\"/>";
str = str + "<object tile=\"road_d1\" x=\"1880\" y=\"2580\" plane=\"far2\" depth=\"160\"/>";
str = str + "<object tile=\"road_d1\" x=\"1980\" y=\"2580\" plane=\"far2\" depth=\"161\"/>";
str = str + "<object tile=\"road_d1\" x=\"2080\" y=\"2580\" plane=\"far2\" depth=\"162\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2680\" plane=\"far2\" depth=\"163\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2680\" plane=\"far2\" depth=\"164\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2780\" plane=\"far2\" depth=\"165\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2880\" plane=\"far2\" depth=\"166\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"2980\" plane=\"far2\" depth=\"167\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"3080\" plane=\"far2\" depth=\"168\"/>";
str = str + "<object tile=\"road_r1\" x=\"2380\" y=\"3180\" plane=\"far2\" depth=\"169\"/>";
str = str + "<object tile=\"road_u_r\" x=\"2380\" y=\"3280\" plane=\"far2\" depth=\"170\"/>";
str = str + "<object tile=\"road_u2\" x=\"2480\" y=\"3280\" plane=\"far2\" depth=\"171\"/>";
str = str + "<object tile=\"road_u2\" x=\"2580\" y=\"3280\" plane=\"far2\" depth=\"172\"/>";
str = str + "<object tile=\"road_u2\" x=\"2680\" y=\"3280\" plane=\"far2\" depth=\"173\"/>";
str = str + "<object tile=\"road_ru\" x=\"2780\" y=\"3280\" plane=\"far2\" depth=\"174\"/>";
str = str + "<object tile=\"road_rd\" x=\"2780\" y=\"3380\" plane=\"far2\" depth=\"175\"/>";
str = str + "<object tile=\"road_d1\" x=\"2680\" y=\"3380\" plane=\"far2\" depth=\"176\"/>";
str = str + "<object tile=\"road_d1\" x=\"2580\" y=\"3380\" plane=\"far2\" depth=\"177\"/>";
str = str + "<object tile=\"road_d1\" x=\"2480\" y=\"3380\" plane=\"far2\" depth=\"178\"/>";
str = str + "<object tile=\"road_d1\" x=\"2380\" y=\"3380\" plane=\"far2\" depth=\"179\"/>";
str = str + "<object tile=\"road_ld\" x=\"2280\" y=\"3380\" plane=\"far2\" depth=\"180\"/>";
str = str + "<object tile=\"road_d_l\" x=\"2280\" y=\"3280\" plane=\"far2\" depth=\"181\"/>";
str = str + "<object tile=\"road_u_l\" x=\"2280\" y=\"3180\" plane=\"far2\" depth=\"182\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"3080\" plane=\"far2\" depth=\"183\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2980\" plane=\"far2\" depth=\"184\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2880\" plane=\"far2\" depth=\"185\"/>";
str = str + "<object tile=\"road_l3\" x=\"2280\" y=\"2780\" plane=\"far2\" depth=\"186\"/>";
str = str + "<object tile=\"road_d1\" x=\"2180\" y=\"3280\" plane=\"far2\" depth=\"187\"/>";
str = str + "<object tile=\"road_u2\" x=\"2180\" y=\"3180\" plane=\"far2\" depth=\"188\"/>";
str = str + "<object tile=\"road_d1\" x=\"2080\" y=\"3280\" plane=\"far2\" depth=\"189\"/>";
str = str + "<object tile=\"road_u2\" x=\"2080\" y=\"3180\" plane=\"far2\" depth=\"190\"/>";
str = str + "<object tile=\"road_d1\" x=\"1980\" y=\"3280\" plane=\"far2\" depth=\"191\"/>";
str = str + "<object tile=\"road_u2\" x=\"1980\" y=\"3180\" plane=\"far2\" depth=\"192\"/>";
str = str + "<object tile=\"road_u2\" x=\"1880\" y=\"3180\" plane=\"far2\" depth=\"193\"/>";
str = str + "<object tile=\"road_d1\" x=\"1880\" y=\"3280\" plane=\"far2\" depth=\"194\"/>";
str = str + "<object tile=\"road_ld\" x=\"1780\" y=\"3280\" plane=\"far2\" depth=\"195\"/>";
str = str + "<object tile=\"road_lu\" x=\"1780\" y=\"3180\" plane=\"far2\" depth=\"196\"/>";
str = str + "<object tile=\"house_med1\" x=\"1710\" y=\"3080\" plane=\"far\" depth=\"197\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1340\" y=\"3470\" plane=\"far\" depth=\"198\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1410\" y=\"3470\" plane=\"far\" depth=\"199\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1480\" y=\"3470\" plane=\"far\" depth=\"200\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1270\" y=\"2910\" plane=\"far\" depth=\"201\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1340\" y=\"2910\" plane=\"far\" depth=\"202\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1530\" y=\"2910\" plane=\"far\" depth=\"203\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1600\" y=\"2910\" plane=\"far\" depth=\"204\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1670\" y=\"2910\" plane=\"far\" depth=\"205\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1740\" y=\"2910\" plane=\"far\" depth=\"206\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1810\" y=\"2910\" plane=\"far\" depth=\"207\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1850\" y=\"2930\" plane=\"far\" depth=\"208\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1850\" y=\"3000\" plane=\"far\" depth=\"209\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1850\" y=\"3070\" plane=\"far\" depth=\"210\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1740\" y=\"3260\" plane=\"far\" depth=\"211\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1740\" y=\"3330\" plane=\"far\" depth=\"212\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1740\" y=\"3400\" plane=\"far\" depth=\"213\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1550\" y=\"3470\" plane=\"far\" depth=\"214\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1620\" y=\"3470\" plane=\"far\" depth=\"215\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1690\" y=\"3470\" plane=\"far\" depth=\"216\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1520\" y=\"2930\" plane=\"far\" depth=\"217\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1520\" y=\"3000\" plane=\"far\" depth=\"218\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1810\" y=\"3130\" plane=\"far\" depth=\"219\"/>";
str = str + "<object tile=\"oil_barrel1\" x=\"1580\" y=\"2970\" plane=\"far\" depth=\"220\"/>";
str = str + "<object tile=\"oil_barrel1\" x=\"1690\" y=\"2970\" plane=\"far\" depth=\"221\"/>";
str = str + "<object tile=\"tower_guard\" x=\"1790\" y=\"2950\" plane=\"far\" depth=\"222\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"2920\" plane=\"far\" depth=\"223\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"2990\" plane=\"far\" depth=\"224\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"3060\" plane=\"far\" depth=\"225\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"3130\" plane=\"far\" depth=\"226\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"3200\" plane=\"far\" depth=\"227\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"3270\" plane=\"far\" depth=\"228\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"3340\" plane=\"far\" depth=\"229\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1260\" y=\"3410\" plane=\"far\" depth=\"230\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1270\" y=\"3470\" plane=\"far\" depth=\"231\"/>";
str = str + "<object tile=\"tower_water\" x=\"1620\" y=\"3290\" plane=\"far\" depth=\"232\"/>";
str = str + "<object tile=\"heliPad\" x=\"1370\" y=\"3270\" plane=\"far\" depth=\"233\"/>";
str = str + "<object tile=\"house_med3\" x=\"1310\" y=\"2950\" plane=\"far\" depth=\"234\"/>";
str = str + "<object tile=\"house_med4\" x=\"1310\" y=\"3050\" plane=\"far\" depth=\"235\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1310\" y=\"3150\" plane=\"far\" depth=\"236\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3420\" plane=\"far\" depth=\"237\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3460\" plane=\"far\" depth=\"238\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3500\" plane=\"far\" depth=\"239\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3100\" plane=\"far\" depth=\"240\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3140\" plane=\"far\" depth=\"241\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3180\" plane=\"far\" depth=\"242\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3220\" plane=\"far\" depth=\"243\"/>";
str = str + "<object tile=\"wirefence1\" x=\"2870\" y=\"3260\" plane=\"far\" depth=\"244\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2870\" y=\"3530\" plane=\"far\" depth=\"245\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2910\" y=\"3530\" plane=\"far\" depth=\"246\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2950\" y=\"3530\" plane=\"far\" depth=\"247\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2990\" y=\"3530\" plane=\"far\" depth=\"248\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3030\" y=\"3530\" plane=\"far\" depth=\"249\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3070\" y=\"3530\" plane=\"far\" depth=\"250\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3110\" y=\"3530\" plane=\"far\" depth=\"251\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3150\" y=\"3530\" plane=\"far\" depth=\"252\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3190\" y=\"3530\" plane=\"far\" depth=\"253\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3230\" y=\"3530\" plane=\"far\" depth=\"254\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3270\" y=\"3530\" plane=\"far\" depth=\"255\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2870\" y=\"3100\" plane=\"far\" depth=\"256\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2910\" y=\"3100\" plane=\"far\" depth=\"257\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2950\" y=\"3100\" plane=\"far\" depth=\"258\"/>";
str = str + "<object tile=\"wirefence2\" x=\"2990\" y=\"3100\" plane=\"far\" depth=\"259\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3030\" y=\"3100\" plane=\"far\" depth=\"260\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3070\" y=\"3100\" plane=\"far\" depth=\"261\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3110\" y=\"3100\" plane=\"far\" depth=\"262\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3150\" y=\"3100\" plane=\"far\" depth=\"263\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3190\" y=\"3100\" plane=\"far\" depth=\"264\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3230\" y=\"3100\" plane=\"far\" depth=\"265\"/>";
str = str + "<object tile=\"wirefence2\" x=\"3270\" y=\"3100\" plane=\"far\" depth=\"266\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3100\" plane=\"far\" depth=\"267\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3140\" plane=\"far\" depth=\"268\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3180\" plane=\"far\" depth=\"269\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3220\" plane=\"far\" depth=\"270\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3260\" plane=\"far\" depth=\"271\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3300\" plane=\"far\" depth=\"272\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3340\" plane=\"far\" depth=\"273\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3380\" plane=\"far\" depth=\"274\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3420\" plane=\"far\" depth=\"275\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3460\" plane=\"far\" depth=\"276\"/>";
str = str + "<object tile=\"wirefence1\" x=\"3310\" y=\"3500\" plane=\"far\" depth=\"277\"/>";
str = str + "<object tile=\"tent2\" x=\"3250\" y=\"3490\" plane=\"far\" depth=\"278\"/>";
str = str + "<object tile=\"tent2\" x=\"3250\" y=\"3440\" plane=\"far\" depth=\"279\"/>";
str = str + "<object tile=\"tent2\" x=\"3250\" y=\"3390\" plane=\"far\" depth=\"280\"/>";
str = str + "<object tile=\"tent2\" x=\"3250\" y=\"3340\" plane=\"far\" depth=\"281\"/>";
str = str + "<object tile=\"tent2\" x=\"3160\" y=\"3490\" plane=\"far\" depth=\"282\"/>";
str = str + "<object tile=\"tent2\" x=\"3160\" y=\"3440\" plane=\"far\" depth=\"283\"/>";
str = str + "<object tile=\"tent2\" x=\"3160\" y=\"3390\" plane=\"far\" depth=\"284\"/>";
str = str + "<object tile=\"tent2\" x=\"3160\" y=\"3340\" plane=\"far\" depth=\"285\"/>";
str = str + "<object tile=\"tent1\" x=\"2900\" y=\"3220\" plane=\"far\" depth=\"286\"/>";
str = str + "<object tile=\"tent1\" x=\"2940\" y=\"3220\" plane=\"far\" depth=\"287\"/>";
str = str + "<object tile=\"tent1\" x=\"2980\" y=\"3220\" plane=\"far\" depth=\"288\"/>";
str = str + "<object tile=\"tent1\" x=\"3020\" y=\"3220\" plane=\"far\" depth=\"289\"/>";
str = str + "<object tile=\"tent1\" x=\"2900\" y=\"3130\" plane=\"far\" depth=\"290\"/>";
str = str + "<object tile=\"tent1\" x=\"2940\" y=\"3130\" plane=\"far\" depth=\"291\"/>";
str = str + "<object tile=\"tent1\" x=\"2980\" y=\"3130\" plane=\"far\" depth=\"292\"/>";
str = str + "<object tile=\"tent1\" x=\"3020\" y=\"3130\" plane=\"far\" depth=\"293\"/>";
str = str + "<object tile=\"tent1\" x=\"3250\" y=\"3220\" plane=\"far\" depth=\"294\"/>";
str = str + "<object tile=\"tent1\" x=\"3210\" y=\"3220\" plane=\"far\" depth=\"295\"/>";
str = str + "<object tile=\"tent1\" x=\"3170\" y=\"3220\" plane=\"far\" depth=\"296\"/>";
str = str + "<object tile=\"tent1\" x=\"3130\" y=\"3220\" plane=\"far\" depth=\"297\"/>";
str = str + "<object tile=\"tent1\" x=\"3130\" y=\"3130\" plane=\"far\" depth=\"298\"/>";
str = str + "<object tile=\"tent1\" x=\"3170\" y=\"3130\" plane=\"far\" depth=\"299\"/>";
str = str + "<object tile=\"tent1\" x=\"3210\" y=\"3130\" plane=\"far\" depth=\"300\"/>";
str = str + "<object tile=\"tent1\" x=\"3250\" y=\"3130\" plane=\"far\" depth=\"301\"/>";
str = str + "<object tile=\"tower_water\" x=\"2890\" y=\"3420\" plane=\"far\" depth=\"302\"/>";
str = str + "<object tile=\"house_sm2\" x=\"2960\" y=\"3450\" plane=\"far\" depth=\"303\"/>";
str = str + "<object tile=\"house_big2\" x=\"3250\" y=\"1810\" plane=\"far\" depth=\"304\"/>";
str = str + "<object tile=\"tower_water\" x=\"3230\" y=\"2180\" plane=\"far\" depth=\"305\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3160\" y=\"2270\" plane=\"far\" depth=\"306\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3370\" y=\"1770\" plane=\"far\" depth=\"307\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3300\" y=\"1770\" plane=\"far\" depth=\"308\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3230\" y=\"1770\" plane=\"far\" depth=\"309\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3160\" y=\"1770\" plane=\"far\" depth=\"310\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3090\" y=\"1770\" plane=\"far\" depth=\"311\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"1790\" plane=\"far\" depth=\"312\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"1860\" plane=\"far\" depth=\"313\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"1930\" plane=\"far\" depth=\"314\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"2000\" plane=\"far\" depth=\"315\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"2070\" plane=\"far\" depth=\"316\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"2140\" plane=\"far\" depth=\"317\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3080\" y=\"2210\" plane=\"far\" depth=\"318\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3090\" y=\"2270\" plane=\"far\" depth=\"319\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3440\" y=\"1770\" plane=\"far\" depth=\"320\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3480\" y=\"1790\" plane=\"far\" depth=\"321\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3480\" y=\"1860\" plane=\"far\" depth=\"322\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3420\" y=\"2290\" plane=\"far\" depth=\"323\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3420\" y=\"2360\" plane=\"far\" depth=\"324\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3420\" y=\"2430\" plane=\"far\" depth=\"325\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3230\" y=\"2270\" plane=\"far\" depth=\"326\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3630\" y=\"2060\" plane=\"far\" depth=\"327\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3560\" y=\"2060\" plane=\"far\" depth=\"328\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3770\" y=\"2060\" plane=\"far\" depth=\"329\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3700\" y=\"2060\" plane=\"far\" depth=\"330\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3570\" y=\"2570\" plane=\"far\" depth=\"331\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3500\" y=\"2570\" plane=\"far\" depth=\"332\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3420\" y=\"2500\" plane=\"far\" depth=\"333\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3430\" y=\"2570\" plane=\"far\" depth=\"334\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2080\" plane=\"far\" depth=\"335\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2150\" plane=\"far\" depth=\"336\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2220\" plane=\"far\" depth=\"337\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2290\" plane=\"far\" depth=\"338\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2360\" plane=\"far\" depth=\"339\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2430\" plane=\"far\" depth=\"340\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3820\" y=\"2500\" plane=\"far\" depth=\"341\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3780\" y=\"2570\" plane=\"far\" depth=\"342\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3710\" y=\"2570\" plane=\"far\" depth=\"343\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3640\" y=\"2570\" plane=\"far\" depth=\"344\"/>";
str = str + "<object tile=\"house_med3\" x=\"3120\" y=\"1960\" plane=\"far\" depth=\"345\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3180\" y=\"2070\" plane=\"far\" depth=\"346\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3180\" y=\"2100\" plane=\"far\" depth=\"347\"/>";
str = str + "<object tile=\"house_sm1\" x=\"3160\" y=\"2130\" plane=\"far\" depth=\"348\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3460\" y=\"2290\" plane=\"far\" depth=\"349\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3500\" y=\"2290\" plane=\"far\" depth=\"350\"/>";
str = str + "<object tile=\"house_big1\" x=\"3520\" y=\"2260\" plane=\"far\" depth=\"351\"/>";
str = str + "<object tile=\"house_med2\" x=\"3710\" y=\"2050\" plane=\"far\" depth=\"352\"/>";
str = str + "<object tile=\"house_sm1\" x=\"3780\" y=\"2160\" plane=\"far\" depth=\"353\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3670\" y=\"2290\" plane=\"far\" depth=\"354\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3700\" y=\"2290\" plane=\"far\" depth=\"355\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3730\" y=\"2290\" plane=\"far\" depth=\"356\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3760\" y=\"2290\" plane=\"far\" depth=\"357\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3790\" y=\"2290\" plane=\"far\" depth=\"358\"/>";
str = str + "<object tile=\"house_med5\" x=\"3450\" y=\"2440\" plane=\"far\" depth=\"359\"/>";
str = str + "<object tile=\"house_sm1\" x=\"3570\" y=\"2490\" plane=\"far\" depth=\"360\"/>";
str = str + "<object tile=\"house_med1\" x=\"3610\" y=\"2470\" plane=\"far\" depth=\"361\"/>";
str = str + "<object tile=\"house_sm2\" x=\"3700\" y=\"2480\" plane=\"far\" depth=\"362\"/>";
str = str + "<object tile=\"house_sm1\" x=\"3780\" y=\"2300\" plane=\"far\" depth=\"363\"/>";
str = str + "<object tile=\"house_sm2\" x=\"3730\" y=\"2300\" plane=\"far\" depth=\"364\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1240\" y=\"1780\" plane=\"far\" depth=\"365\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1310\" y=\"1780\" plane=\"far\" depth=\"366\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1030\" y=\"1780\" plane=\"far\" depth=\"367\"/>";
str = str + "<object tile=\"wall_big2\" x=\"960\" y=\"1780\" plane=\"far\" depth=\"368\"/>";
str = str + "<object tile=\"wall_big2\" x=\"890\" y=\"1780\" plane=\"far\" depth=\"369\"/>";
str = str + "<object tile=\"wall_big2\" x=\"820\" y=\"1780\" plane=\"far\" depth=\"370\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1380\" y=\"1780\" plane=\"far\" depth=\"371\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1450\" y=\"1780\" plane=\"far\" depth=\"372\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"1800\" plane=\"far\" depth=\"373\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"1870\" plane=\"far\" depth=\"374\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"1800\" plane=\"far\" depth=\"375\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"1870\" plane=\"far\" depth=\"376\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"1940\" plane=\"far\" depth=\"377\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"2010\" plane=\"far\" depth=\"378\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"2080\" plane=\"far\" depth=\"379\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"1940\" plane=\"far\" depth=\"380\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"2010\" plane=\"far\" depth=\"381\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"2080\" plane=\"far\" depth=\"382\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"2150\" plane=\"far\" depth=\"383\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"2150\" plane=\"far\" depth=\"384\"/>";
str = str + "<object tile=\"wall_big2\" x=\"890\" y=\"2290\" plane=\"far\" depth=\"385\"/>";
str = str + "<object tile=\"wall_big2\" x=\"960\" y=\"2290\" plane=\"far\" depth=\"386\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1030\" y=\"2290\" plane=\"far\" depth=\"387\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1100\" y=\"2290\" plane=\"far\" depth=\"388\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1170\" y=\"2290\" plane=\"far\" depth=\"389\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1240\" y=\"2290\" plane=\"far\" depth=\"390\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1310\" y=\"2290\" plane=\"far\" depth=\"391\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1380\" y=\"2290\" plane=\"far\" depth=\"392\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1490\" y=\"2220\" plane=\"far\" depth=\"393\"/>";
str = str + "<object tile=\"wall_big1\" x=\"810\" y=\"2220\" plane=\"far\" depth=\"394\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1450\" y=\"2290\" plane=\"far\" depth=\"395\"/>";
str = str + "<object tile=\"wall_big2\" x=\"820\" y=\"2290\" plane=\"far\" depth=\"396\"/>";
str = str + "<object tile=\"house_big1\" x=\"850\" y=\"1800\" plane=\"far\" depth=\"397\"/>";
str = str + "<object tile=\"house_med3\" x=\"860\" y=\"1930\" plane=\"far\" depth=\"398\"/>";
str = str + "<object tile=\"house_med4\" x=\"990\" y=\"2050\" plane=\"far\" depth=\"399\"/>";
str = str + "<object tile=\"house_big1\" x=\"840\" y=\"2010\" plane=\"far\" depth=\"400\"/>";
str = str + "<object tile=\"house_med3\" x=\"860\" y=\"2140\" plane=\"far\" depth=\"401\"/>";
str = str + "<object tile=\"house_med4\" x=\"1240\" y=\"1810\" plane=\"far\" depth=\"402\"/>";
str = str + "<object tile=\"house_big1\" x=\"1340\" y=\"1800\" plane=\"far\" depth=\"403\"/>";
str = str + "<object tile=\"house_med5\" x=\"1380\" y=\"1920\" plane=\"far\" depth=\"404\"/>";
str = str + "<object tile=\"house_big1\" x=\"1350\" y=\"2010\" plane=\"far\" depth=\"405\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1200\" y=\"2210\" plane=\"far\" depth=\"406\"/>";
str = str + "<object tile=\"house_med2\" x=\"1250\" y=\"2160\" plane=\"far\" depth=\"407\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1660\" y=\"570\" plane=\"far\" depth=\"408\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1590\" y=\"570\" plane=\"far\" depth=\"409\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1520\" y=\"570\" plane=\"far\" depth=\"410\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1450\" y=\"570\" plane=\"far\" depth=\"411\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1380\" y=\"570\" plane=\"far\" depth=\"412\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1310\" y=\"570\" plane=\"far\" depth=\"413\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1240\" y=\"570\" plane=\"far\" depth=\"414\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1170\" y=\"570\" plane=\"far\" depth=\"415\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1100\" y=\"570\" plane=\"far\" depth=\"416\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1030\" y=\"570\" plane=\"far\" depth=\"417\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1700\" y=\"590\" plane=\"far\" depth=\"418\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1700\" y=\"660\" plane=\"far\" depth=\"419\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1700\" y=\"730\" plane=\"far\" depth=\"420\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"590\" plane=\"far\" depth=\"421\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"660\" plane=\"far\" depth=\"422\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"730\" plane=\"far\" depth=\"423\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"800\" plane=\"far\" depth=\"424\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"870\" plane=\"far\" depth=\"425\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"940\" plane=\"far\" depth=\"426\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"1010\" plane=\"far\" depth=\"427\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1020\" y=\"1080\" plane=\"far\" depth=\"428\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1700\" y=\"940\" plane=\"far\" depth=\"429\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1700\" y=\"1010\" plane=\"far\" depth=\"430\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1700\" y=\"1080\" plane=\"far\" depth=\"431\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1030\" y=\"1150\" plane=\"far\" depth=\"432\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1100\" y=\"1150\" plane=\"far\" depth=\"433\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1170\" y=\"1150\" plane=\"far\" depth=\"434\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1240\" y=\"1150\" plane=\"far\" depth=\"435\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1310\" y=\"1150\" plane=\"far\" depth=\"436\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1380\" y=\"1150\" plane=\"far\" depth=\"437\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1450\" y=\"1150\" plane=\"far\" depth=\"438\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1520\" y=\"1150\" plane=\"far\" depth=\"439\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1590\" y=\"1150\" plane=\"far\" depth=\"440\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1660\" y=\"1150\" plane=\"far\" depth=\"441\"/>";
str = str + "<object tile=\"house_med4\" x=\"1440\" y=\"620\" plane=\"far\" depth=\"442\"/>";
str = str + "<object tile=\"house_med4\" x=\"1190\" y=\"620\" plane=\"far\" depth=\"443\"/>";
str = str + "<object tile=\"house_med2\" x=\"1530\" y=\"1020\" plane=\"far\" depth=\"444\"/>";
str = str + "<object tile=\"house_med1\" x=\"1310\" y=\"1050\" plane=\"far\" depth=\"445\"/>";
str = str + "<object tile=\"house_big1\" x=\"1560\" y=\"580\" plane=\"far\" depth=\"446\"/>";
str = str + "<object tile=\"house_big1\" x=\"1290\" y=\"580\" plane=\"far\" depth=\"447\"/>";
str = str + "<object tile=\"house_big1\" x=\"1050\" y=\"580\" plane=\"far\" depth=\"448\"/>";
str = str + "<object tile=\"house_big1\" x=\"1390\" y=\"990\" plane=\"far\" depth=\"449\"/>";
str = str + "<object tile=\"house_med3\" x=\"1060\" y=\"700\" plane=\"far\" depth=\"450\"/>";
str = str + "<object tile=\"house_big1\" x=\"1050\" y=\"800\" plane=\"far\" depth=\"451\"/>";
str = str + "<object tile=\"house_med3\" x=\"1060\" y=\"930\" plane=\"far\" depth=\"452\"/>";
str = str + "<object tile=\"house_med4\" x=\"1060\" y=\"1030\" plane=\"far\" depth=\"453\"/>";
str = str + "<object tile=\"house_big1\" x=\"1160\" y=\"990\" plane=\"far\" depth=\"454\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3520\" y=\"1010\" plane=\"far\" depth=\"455\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3290\" y=\"1010\" plane=\"far\" depth=\"456\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3220\" y=\"1010\" plane=\"far\" depth=\"457\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3150\" y=\"1010\" plane=\"far\" depth=\"458\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3080\" y=\"1010\" plane=\"far\" depth=\"459\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3010\" y=\"1010\" plane=\"far\" depth=\"460\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2940\" y=\"1010\" plane=\"far\" depth=\"461\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2870\" y=\"1010\" plane=\"far\" depth=\"462\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2800\" y=\"1010\" plane=\"far\" depth=\"463\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3600\" y=\"1010\" plane=\"far\" depth=\"464\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3670\" y=\"1010\" plane=\"far\" depth=\"465\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3710\" y=\"1030\" plane=\"far\" depth=\"466\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3710\" y=\"1100\" plane=\"far\" depth=\"467\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3710\" y=\"1170\" plane=\"far\" depth=\"468\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3710\" y=\"1240\" plane=\"far\" depth=\"469\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3710\" y=\"1310\" plane=\"far\" depth=\"470\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3050\" y=\"1440\" plane=\"far\" depth=\"471\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3710\" y=\"1380\" plane=\"far\" depth=\"472\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2730\" y=\"1010\" plane=\"far\" depth=\"473\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1030\" plane=\"far\" depth=\"474\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1100\" plane=\"far\" depth=\"475\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1170\" plane=\"far\" depth=\"476\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1240\" plane=\"far\" depth=\"477\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1310\" plane=\"far\" depth=\"478\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1380\" plane=\"far\" depth=\"479\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2720\" y=\"1450\" plane=\"far\" depth=\"480\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2730\" y=\"1510\" plane=\"far\" depth=\"481\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2800\" y=\"1510\" plane=\"far\" depth=\"482\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2870\" y=\"1510\" plane=\"far\" depth=\"483\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2940\" y=\"1510\" plane=\"far\" depth=\"484\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3010\" y=\"1510\" plane=\"far\" depth=\"485\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3670\" y=\"1440\" plane=\"far\" depth=\"486\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3600\" y=\"1440\" plane=\"far\" depth=\"487\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3530\" y=\"1440\" plane=\"far\" depth=\"488\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3460\" y=\"1440\" plane=\"far\" depth=\"489\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3390\" y=\"1440\" plane=\"far\" depth=\"490\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3320\" y=\"1440\" plane=\"far\" depth=\"491\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3250\" y=\"1440\" plane=\"far\" depth=\"492\"/>";
str = str + "<object tile=\"house_big1\" x=\"3560\" y=\"1030\" plane=\"far\" depth=\"493\"/>";
str = str + "<object tile=\"house_med5\" x=\"3600\" y=\"1160\" plane=\"far\" depth=\"494\"/>";
str = str + "<object tile=\"house_sm2\" x=\"3340\" y=\"1350\" plane=\"far\" depth=\"495\"/>";
str = str + "<object tile=\"house_med4\" x=\"3390\" y=\"1300\" plane=\"far\" depth=\"496\"/>";
str = str + "<object tile=\"house_med1\" x=\"3250\" y=\"1330\" plane=\"far\" depth=\"497\"/>";
str = str + "<object tile=\"house_big1\" x=\"3500\" y=\"1260\" plane=\"far\" depth=\"498\"/>";
str = str + "<object tile=\"house_med4\" x=\"3070\" y=\"1050\" plane=\"far\" depth=\"499\"/>";
str = str + "<object tile=\"house_big1\" x=\"3170\" y=\"1010\" plane=\"far\" depth=\"500\"/>";
str = str + "<object tile=\"house_big2\" x=\"2850\" y=\"1030\" plane=\"far\" depth=\"501\"/>";
str = str + "<object tile=\"house_med3\" x=\"2760\" y=\"1060\" plane=\"far\" depth=\"502\"/>";
str = str + "<object tile=\"house_big1\" x=\"2750\" y=\"1150\" plane=\"far\" depth=\"503\"/>";
str = str + "<object tile=\"house_big1\" x=\"2900\" y=\"1360\" plane=\"far\" depth=\"504\"/>";
str = str + "<object tile=\"house_sm2\" x=\"2850\" y=\"1440\" plane=\"far\" depth=\"505\"/>";
str = str + "<object tile=\"house_med2\" x=\"2750\" y=\"1250\" plane=\"far\" depth=\"506\"/>";
str = str + "<object tile=\"house_med3\" x=\"2750\" y=\"1350\" plane=\"far\" depth=\"507\"/>";
str = str + "<object tile=\"hangar2\" x=\"2420\" y=\"1970\" plane=\"far\" depth=\"508\"/>";
str = str + "<object tile=\"hangar2\" x=\"2420\" y=\"1830\" plane=\"far\" depth=\"509\"/>";
str = str + "<object tile=\"oil_punp2\" x=\"2110\" y=\"2100\" plane=\"far\" depth=\"510\"/>";
str = str + "<object tile=\"oil_punp2\" x=\"2100\" y=\"1980\" plane=\"far\" depth=\"511\"/>";
str = str + "<object tile=\"oil_barrel2\" x=\"2220\" y=\"2050\" plane=\"far\" depth=\"512\"/>";
str = str + "<object tile=\"oil_barrel2\" x=\"2220\" y=\"1920\" plane=\"far\" depth=\"513\"/>";
str = str + "<object tile=\"oil_pump1\" x=\"2440\" y=\"2140\" plane=\"far\" depth=\"514\"/>";
str = str + "<object tile=\"oil_barrel2\" x=\"2450\" y=\"2080\" plane=\"far\" depth=\"515\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3480\" y=\"1930\" plane=\"far\" depth=\"516\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3480\" y=\"2000\" plane=\"far\" depth=\"517\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3490\" y=\"2060\" plane=\"far\" depth=\"518\"/>";
str = str + "<object tile=\"house_med4\" x=\"3520\" y=\"2070\" plane=\"far\" depth=\"519\"/>";
str = str + "<object tile=\"hero1\" x=\"1420\" y=\"3300\" plane=\"far\" depth=\"520\"/>";
str = str + "<object tile=\"host_1\" x=\"3120\" y=\"3330\" plane=\"main\" depth=\"521\"/>";
str = str + "<object tile=\"host_1\" x=\"3120\" y=\"3390\" plane=\"main\" depth=\"522\"/>";
str = str + "<object tile=\"host_1\" x=\"3020\" y=\"3260\" plane=\"main\" depth=\"523\"/>";
str = str + "<object tile=\"host_1\" x=\"2980\" y=\"3270\" plane=\"main\" depth=\"524\"/>";
str = str + "<object tile=\"host_1\" x=\"2990\" y=\"3400\" plane=\"main\" depth=\"525\"/>";
str = str + "<object tile=\"truck_tent_1\" x=\"1400\" y=\"870\" plane=\"main\" depth=\"526\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"55\" deltay=\"-1\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"90\" rtype=\"lin\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"35\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"800\" deltay=\"0\" mtype=\"lin\" steps=\"100\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"31\" deltay=\"6\" mtype=\"lin\" steps=\"3\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"24\" deltay=\"9\" mtype=\"lin\" steps=\"3\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"24\" deltay=\"21\" mtype=\"lin\" steps=\"3\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"15\" deltay=\"29\" mtype=\"lin\" steps=\"4\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"8\" deltay=\"37\" mtype=\"lin\" steps=\"4\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1\" deltay=\"2293\" mtype=\"lin\" steps=\"286\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"7\" deltay=\"36\" mtype=\"lin\" steps=\"4\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"11\" deltay=\"23\" mtype=\"lin\" steps=\"3\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"22\" deltay=\"22\" mtype=\"lin\" steps=\"3\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"21\" deltay=\"12\" mtype=\"lin\" steps=\"3\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"29\" deltay=\"4\" mtype=\"lin\" steps=\"3\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"604\" deltay=\"2\" mtype=\"lin\" steps=\"75\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"52\" deltay=\"0\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" />";
str = str + "<object action=\"kill\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1702\" deltay=\"-2493\" mtype=\"lin\" steps=\"377\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1680\" y=\"1030\" plane=\"main\" depth=\"527\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-127\" deltay=\"-26\" mtype=\"lin\" steps=\"64\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"65\" deltay=\"-61\" mtype=\"lin\" steps=\"44\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"62\" deltay=\"87\" mtype=\"lin\" steps=\"53\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"1410\" y=\"780\" plane=\"main\" depth=\"528\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-212\" deltay=\"-14\" mtype=\"lin\" steps=\"106\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"125\" deltay=\"177\" mtype=\"lin\" steps=\"108\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"87\" deltay=\"-163\" mtype=\"lin\" steps=\"92\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1190\" y=\"960\" plane=\"main\" depth=\"529\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"85\" deltay=\"-40\" mtype=\"lin\" steps=\"46\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"60\" deltay=\"96\" mtype=\"lin\" steps=\"56\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"77\" deltay=\"-55\" mtype=\"lin\" steps=\"47\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-222\" deltay=\"-1\" mtype=\"lin\" steps=\"111\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_3\" x=\"2650\" y=\"1410\" plane=\"main\" depth=\"530\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-98\" deltay=\"158\" mtype=\"lin\" steps=\"92\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"98\" deltay=\"-158\" mtype=\"lin\" steps=\"92\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_3\" x=\"2680\" y=\"1030\" plane=\"main\" depth=\"531\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-11\" deltay=\"315\" mtype=\"lin\" steps=\"157\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"11\" deltay=\"-315\" mtype=\"lin\" steps=\"157\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_3\" x=\"2880\" y=\"930\" plane=\"main\" depth=\"532\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-164\" deltay=\"-3\" mtype=\"lin\" steps=\"82\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-34\" deltay=\"124\" mtype=\"lin\" steps=\"64\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1\" deltay=\"-134\" mtype=\"lin\" steps=\"67\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"199\" deltay=\"13\" mtype=\"lin\" steps=\"99\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_3\" x=\"3270\" y=\"940\" plane=\"main\" depth=\"533\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-274\" deltay=\"8\" mtype=\"lin\" steps=\"137\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"274\" deltay=\"-8\" mtype=\"lin\" steps=\"137\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_3\" x=\"3780\" y=\"980\" plane=\"main\" depth=\"534\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-4\" deltay=\"271\" mtype=\"lin\" steps=\"135\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"4\" deltay=\"-271\" mtype=\"lin\" steps=\"135\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_3\" x=\"3740\" y=\"1510\" plane=\"main\" depth=\"535\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-212\" deltay=\"-3\" mtype=\"lin\" steps=\"106\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"212\" deltay=\"3\" mtype=\"lin\" steps=\"106\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_3\" x=\"3540\" y=\"1500\" plane=\"main\" depth=\"536\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-135\" deltay=\"143\" mtype=\"lin\" steps=\"98\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"135\" deltay=\"-143\" mtype=\"lin\" steps=\"98\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_3\" x=\"3020\" y=\"1550\" plane=\"main\" depth=\"537\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-276\" deltay=\"9\" mtype=\"lin\" steps=\"138\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"276\" deltay=\"-9\" mtype=\"lin\" steps=\"138\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"truck_tent_1\" x=\"3370\" y=\"2360\" plane=\"main\" depth=\"538\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-39\" deltay=\"2\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-90\" rtype=\"lin\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"50\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-858\" deltay=\"-2\" mtype=\"lin\" steps=\"143\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-29\" deltay=\"5\" mtype=\"lin\" steps=\"4\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-29\" deltay=\"13\" mtype=\"lin\" steps=\"5\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-23\" deltay=\"24\" mtype=\"lin\" steps=\"5\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-15\" deltay=\"28\" mtype=\"lin\" steps=\"5\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-2\" deltay=\"22\" mtype=\"lin\" steps=\"3\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"827\" mtype=\"lin\" steps=\"137\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"6\" deltay=\"27\" mtype=\"lin\" steps=\"4\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"10\" deltay=\"21\" mtype=\"lin\" steps=\"3\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"23\" deltay=\"22\" mtype=\"lin\" steps=\"5\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"22\" deltay=\"13\" mtype=\"lin\" steps=\"4\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"27\" deltay=\"7\" mtype=\"lin\" steps=\"4\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"577\" deltay=\"-6\" mtype=\"lin\" steps=\"96\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"38\" deltay=\"0\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" />";
str = str + "<object action=\"kill\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"292\" deltay=\"-1003\" mtype=\"lin\" steps=\"174\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"3610\" y=\"2430\" plane=\"main\" depth=\"539\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-93\" deltay=\"-13\" mtype=\"lin\" steps=\"46\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"93\" deltay=\"13\" mtype=\"lin\" steps=\"46\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"3780\" y=\"2410\" plane=\"main\" depth=\"540\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-92\" deltay=\"-72\" mtype=\"lin\" steps=\"58\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-4\" deltay=\"101\" mtype=\"lin\" steps=\"50\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"96\" deltay=\"-29\" mtype=\"lin\" steps=\"50\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"3120\" y=\"2100\" plane=\"main\" depth=\"541\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"21\" deltay=\"136\" mtype=\"lin\" steps=\"68\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"66\" deltay=\"-17\" mtype=\"lin\" steps=\"34\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-84\" deltay=\"-20\" mtype=\"lin\" steps=\"43\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-3\" deltay=\"-99\" mtype=\"lin\" steps=\"49\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"3140\" y=\"1850\" plane=\"main\" depth=\"542\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"7\" deltay=\"71\" mtype=\"lin\" steps=\"35\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-7\" deltay=\"-71\" mtype=\"lin\" steps=\"35\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"3200\" y=\"1850\" plane=\"main\" depth=\"543\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"3\" deltay=\"72\" mtype=\"lin\" steps=\"36\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-3\" deltay=\"-72\" mtype=\"lin\" steps=\"36\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"2010\" y=\"2110\" plane=\"main\" depth=\"544\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-22\" deltay=\"-54\" mtype=\"lin\" steps=\"29\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"73\" deltay=\"92\" mtype=\"lin\" steps=\"58\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-51\" deltay=\"-38\" mtype=\"lin\" steps=\"31\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2150\" y=\"2070\" plane=\"main\" depth=\"545\"/>";
str = str + "<object tile=\"PZRK\" x=\"2190\" y=\"2080\" plane=\"main\" depth=\"546\"/>";
str = str + "<object tile=\"PZRK\" x=\"2150\" y=\"1960\" plane=\"main\" depth=\"547\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"21\" deltay=\"-102\" mtype=\"lin\" steps=\"52\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-21\" deltay=\"102\" mtype=\"lin\" steps=\"52\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"2130\" y=\"2180\" plane=\"main\" depth=\"548\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"100\" deltay=\"0\" mtype=\"lin\" steps=\"50\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-100\" deltay=\"0\" mtype=\"lin\" steps=\"50\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2050\" y=\"2290\" plane=\"main\" depth=\"549\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"113\" deltay=\"-33\" mtype=\"lin\" steps=\"58\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"112\" deltay=\"5\" mtype=\"lin\" steps=\"56\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-21\" deltay=\"71\" mtype=\"lin\" steps=\"37\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-204\" deltay=\"-43\" mtype=\"lin\" steps=\"104\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2130\" y=\"2400\" plane=\"main\" depth=\"550\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"83\" deltay=\"-16\" mtype=\"lin\" steps=\"42\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-63\" deltay=\"-57\" mtype=\"lin\" steps=\"42\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-20\" deltay=\"73\" mtype=\"lin\" steps=\"37\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2410\" y=\"2460\" plane=\"main\" depth=\"551\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1\" deltay=\"80\" mtype=\"lin\" steps=\"40\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"1\" deltay=\"-80\" mtype=\"lin\" steps=\"40\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2550\" y=\"2300\" plane=\"main\" depth=\"552\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"48\" deltay=\"-53\" mtype=\"lin\" steps=\"35\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"28\" deltay=\"58\" mtype=\"lin\" steps=\"32\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-76\" deltay=\"-5\" mtype=\"lin\" steps=\"38\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"2540\" y=\"2110\" plane=\"main\" depth=\"553\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"100\" deltay=\"-67\" mtype=\"lin\" steps=\"60\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-11\" deltay=\"90\" mtype=\"lin\" steps=\"45\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-89\" deltay=\"-23\" mtype=\"lin\" steps=\"45\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1010\" y=\"1870\" plane=\"main\" depth=\"554\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"20\" deltay=\"68\" mtype=\"lin\" steps=\"35\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"39\" deltay=\"-50\" mtype=\"lin\" steps=\"31\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-59\" deltay=\"-18\" mtype=\"lin\" steps=\"30\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1120\" y=\"2160\" plane=\"main\" depth=\"555\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-114\" deltay=\"20\" mtype=\"lin\" steps=\"57\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"89\" deltay=\"31\" mtype=\"lin\" steps=\"47\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"25\" deltay=\"-51\" mtype=\"lin\" steps=\"28\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"1070\" y=\"2260\" plane=\"main\" depth=\"556\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"104\" deltay=\"-1\" mtype=\"lin\" steps=\"52\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-104\" deltay=\"1\" mtype=\"lin\" steps=\"52\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1370\" y=\"2200\" plane=\"main\" depth=\"557\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"87\" deltay=\"29\" mtype=\"lin\" steps=\"45\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-87\" deltay=\"-29\" mtype=\"lin\" steps=\"45\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"1320\" y=\"1930\" plane=\"main\" depth=\"558\"/>";
str = str + "<object tile=\"truck_tent_1\" x=\"1140\" y=\"1670\" plane=\"main\" depth=\"559\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"30\" deltay=\"-1\" mtype=\"lin\" steps=\"4\" repeat=\"-100\" rotateTile=\"1\" deltar=\"90\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"1084\" deltay=\"-4\" mtype=\"lin\" steps=\"154\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"32\" deltay=\"5\" mtype=\"lin\" steps=\"4\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"27\" deltay=\"15\" mtype=\"lin\" steps=\"4\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"18\" deltay=\"19\" mtype=\"lin\" steps=\"3\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"8\" deltay=\"24\" mtype=\"lin\" steps=\"3\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"8\" deltay=\"32\" mtype=\"lin\" steps=\"4\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1\" deltay=\"1510\" mtype=\"lin\" steps=\"215\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"9\" deltay=\"36\" mtype=\"lin\" steps=\"5\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"14\" deltay=\"33\" mtype=\"lin\" steps=\"5\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"17\" deltay=\"13\" mtype=\"lin\" steps=\"3\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"29\" deltay=\"12\" mtype=\"lin\" steps=\"4\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"29\" deltay=\"4\" mtype=\"lin\" steps=\"4\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"626\" deltay=\"3\" mtype=\"lin\" steps=\"89\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"45\" deltay=\"-3\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" />";
str = str + "<object action=\"kill\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1975\" deltay=\"-1698\" mtype=\"lin\" steps=\"372\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"palms3\" x=\"2590\" y=\"2060\" plane=\"nearest\" depth=\"560\"/>";
str = str + "<object tile=\"palms4\" x=\"2580\" y=\"1910\" plane=\"nearest\" depth=\"561\"/>";
str = str + "<object tile=\"palms4\" x=\"2400\" y=\"2180\" plane=\"nearest\" depth=\"562\"/>";
str = str + "<object tile=\"palms5\" x=\"2620\" y=\"2180\" plane=\"nearest\" depth=\"563\"/>";
str = str + "<object tile=\"palms1\" x=\"2640\" y=\"1900\" plane=\"nearest\" depth=\"564\"/>";
str = str + "<object tile=\"palms1\" x=\"2640\" y=\"2270\" plane=\"nearest\" depth=\"565\"/>";
str = str + "<object tile=\"palms4\" x=\"2000\" y=\"2130\" plane=\"nearest\" depth=\"566\"/>";
str = str + "<object tile=\"palms5\" x=\"2110\" y=\"2160\" plane=\"nearest\" depth=\"567\"/>";
str = str + "<object tile=\"palms1\" x=\"2150\" y=\"2380\" plane=\"nearest\" depth=\"568\"/>";
str = str + "<object tile=\"palms1\" x=\"2060\" y=\"2300\" plane=\"nearest\" depth=\"569\"/>";
str = str + "<object tile=\"palms1\" x=\"2060\" y=\"1880\" plane=\"nearest\" depth=\"570\"/>";
str = str + "<object tile=\"palms1\" x=\"2100\" y=\"1870\" plane=\"nearest\" depth=\"571\"/>";
str = str + "<object tile=\"palms1\" x=\"2080\" y=\"1910\" plane=\"nearest\" depth=\"572\"/>";
str = str + "<object tile=\"palms1\" x=\"2140\" y=\"2330\" plane=\"nearest\" depth=\"573\"/>";
str = str + "<object tile=\"palms3\" x=\"2000\" y=\"2010\" plane=\"nearest\" depth=\"574\"/>";
str = str + "<object tile=\"palms5\" x=\"2170\" y=\"1830\" plane=\"nearest\" depth=\"575\"/>";
str = str + "<object tile=\"palms1\" x=\"2170\" y=\"1920\" plane=\"nearest\" depth=\"576\"/>";
str = str + "<object tile=\"palms1\" x=\"3440\" y=\"2360\" plane=\"nearest\" depth=\"577\"/>";
str = str + "<object tile=\"palms1\" x=\"3450\" y=\"2330\" plane=\"nearest\" depth=\"578\"/>";
str = str + "<object tile=\"palms1\" x=\"3450\" y=\"2280\" plane=\"nearest\" depth=\"579\"/>";
str = str + "<object tile=\"palms1\" x=\"3740\" y=\"2330\" plane=\"nearest\" depth=\"580\"/>";
str = str + "<object tile=\"palms3\" x=\"3710\" y=\"2430\" plane=\"nearest\" depth=\"581\"/>";
str = str + "<object tile=\"palms1\" x=\"3550\" y=\"2500\" plane=\"nearest\" depth=\"582\"/>";
str = str + "<object tile=\"palms1\" x=\"3100\" y=\"1880\" plane=\"nearest\" depth=\"583\"/>";
str = str + "<object tile=\"palms5\" x=\"3100\" y=\"1790\" plane=\"nearest\" depth=\"584\"/>";
str = str + "<object tile=\"palms1\" x=\"2730\" y=\"1440\" plane=\"nearest\" depth=\"585\"/>";
str = str + "<object tile=\"palms1\" x=\"2780\" y=\"1450\" plane=\"nearest\" depth=\"586\"/>";
str = str + "<object tile=\"palms4\" x=\"980\" y=\"1800\" plane=\"nearest\" depth=\"587\"/>";
str = str + "<object tile=\"palms5\" x=\"1330\" y=\"2120\" plane=\"nearest\" depth=\"588\"/>";
str = str + "<object tile=\"palms1\" x=\"1390\" y=\"2220\" plane=\"nearest\" depth=\"589\"/>";
str = str + "<object tile=\"palms1\" x=\"1330\" y=\"2220\" plane=\"nearest\" depth=\"590\"/>";
str = str + "<object tile=\"palms1\" x=\"970\" y=\"1930\" plane=\"nearest\" depth=\"591\"/>";
str = str + "<object tile=\"palms3\" x=\"1050\" y=\"2150\" plane=\"nearest\" depth=\"592\"/>";
str = str + "<object tile=\"palms1\" x=\"1020\" y=\"2190\" plane=\"nearest\" depth=\"593\"/>";
str = str + "<object tile=\"palms1\" x=\"970\" y=\"2200\" plane=\"nearest\" depth=\"594\"/>";
str = str + "<object tile=\"palms1\" x=\"1300\" y=\"1900\" plane=\"nearest\" depth=\"595\"/>";
str = str + "<object tile=\"palms5\" x=\"1570\" y=\"3220\" plane=\"nearest\" depth=\"596\"/>";
str = str + "<object tile=\"palms1\" x=\"1640\" y=\"3370\" plane=\"nearest\" depth=\"597\"/>";
str = str + "<object tile=\"palms3\" x=\"1510\" y=\"3290\" plane=\"nearest\" depth=\"598\"/>";
str = str + "<object tile=\"palms3\" x=\"1570\" y=\"960\" plane=\"nearest\" depth=\"599\"/>";
str = str + "<object tile=\"palms1\" x=\"1630\" y=\"1080\" plane=\"nearest\" depth=\"600\"/>";
str = str + "<object tile=\"palms1\" x=\"1660\" y=\"1040\" plane=\"nearest\" depth=\"601\"/>";
str = str + "<object tile=\"palms1\" x=\"1650\" y=\"940\" plane=\"nearest\" depth=\"602\"/>";
str = str + "<object tile=\"palms1\" x=\"1170\" y=\"740\" plane=\"nearest\" depth=\"603\"/>";
str = str + "<object tile=\"palms1\" x=\"2980\" y=\"2410\" plane=\"nearest\" depth=\"604\"/>";
str = str + "<object tile=\"palms3\" x=\"2220\" y=\"2910\" plane=\"nearest\" depth=\"605\"/>";
str = str + "<object tile=\"palms3\" x=\"2390\" y=\"2560\" plane=\"nearest\" depth=\"606\"/>";
str = str + "<object tile=\"palms4\" x=\"2400\" y=\"2780\" plane=\"nearest\" depth=\"607\"/>";
str = str + "<object tile=\"palms5\" x=\"2170\" y=\"2610\" plane=\"nearest\" depth=\"608\"/>";
str = str + "<object tile=\"palms5\" x=\"2410\" y=\"2990\" plane=\"nearest\" depth=\"609\"/>";
str = str + "<object tile=\"palms5\" x=\"2150\" y=\"2770\" plane=\"nearest\" depth=\"610\"/>";
str = str + "<object tile=\"palms4\" x=\"2430\" y=\"2690\" plane=\"nearest\" depth=\"611\"/>";
str = str + "<object tile=\"palms1\" x=\"2270\" y=\"2600\" plane=\"nearest\" depth=\"612\"/>";
str = str + "<object tile=\"palms1\" x=\"2170\" y=\"2700\" plane=\"nearest\" depth=\"613\"/>";
str = str + "<object tile=\"palms1\" x=\"2250\" y=\"3040\" plane=\"nearest\" depth=\"614\"/>";
str = str + "<object tile=\"palms1\" x=\"2420\" y=\"2950\" plane=\"nearest\" depth=\"615\"/>";
str = str + "<object tile=\"null_tile\" x=\"4050\" y=\"810\" plane=\"nearest1\" depth=\"616\"/>";
str = str + "<object tile=\"null_tile\" x=\"4050\" y=\"410\" plane=\"nearest1\" depth=\"617\"/>";
str = str + "<object tile=\"null_tile\" x=\"3710\" y=\"10\" plane=\"nearest1\" depth=\"618\"/>";
str = str + "<object tile=\"null_tile\" x=\"960\" y=\"10\" plane=\"nearest1\" depth=\"619\"/>";
str = str + "<object tile=\"null_tile\" x=\"410\" y=\"10\" plane=\"nearest1\" depth=\"620\"/>";
str = str + "<object tile=\"null_tile\" x=\"200\" y=\"410\" plane=\"nearest1\" depth=\"621\"/>";
str = str + "<object tile=\"null_tile\" x=\"200\" y=\"1610\" plane=\"nearest1\" depth=\"622\"/>";
str = str + "<object tile=\"null_tile\" x=\"200\" y=\"2010\" plane=\"nearest1\" depth=\"623\"/>";
str = str + "<object tile=\"null_tile\" x=\"200\" y=\"2410\" plane=\"nearest1\" depth=\"624\"/>";
str = str + "<object tile=\"null_tile\" x=\"200\" y=\"2810\" plane=\"nearest1\" depth=\"625\"/>";
str = str + "<object tile=\"null_tile\" x=\"200\" y=\"3210\" plane=\"nearest1\" depth=\"626\"/>";
str = str + "<object tile=\"null_tile\" x=\"200\" y=\"3610\" plane=\"nearest1\" depth=\"627\"/>";
str = str + "<object tile=\"null_tile\" x=\"750\" y=\"3610\" plane=\"nearest1\" depth=\"628\"/>";
str = str + "<object tile=\"null_tile\" x=\"200\" y=\"810\" plane=\"nearest1\" depth=\"629\"/>";
str = str + "<object tile=\"null_tile\" x=\"200\" y=\"1210\" plane=\"nearest1\" depth=\"630\"/>";
str = str + "<object tile=\"null_tile\" x=\"2060\" y=\"10\" plane=\"nearest1\" depth=\"631\"/>";
str = str + "<object tile=\"null_tile\" x=\"1510\" y=\"10\" plane=\"nearest1\" depth=\"632\"/>";
str = str + "<object tile=\"null_tile\" x=\"3160\" y=\"10\" plane=\"nearest1\" depth=\"633\"/>";
str = str + "<object tile=\"null_tile\" x=\"2610\" y=\"10\" plane=\"nearest1\" depth=\"634\"/>";
str = str + "<object tile=\"null_tile\" x=\"4050\" y=\"2810\" plane=\"nearest1\" depth=\"635\"/>";
str = str + "<object tile=\"null_tile\" x=\"4050\" y=\"2410\" plane=\"nearest1\" depth=\"636\"/>";
str = str + "<object tile=\"null_tile\" x=\"4050\" y=\"2010\" plane=\"nearest1\" depth=\"637\"/>";
str = str + "<object tile=\"null_tile\" x=\"4050\" y=\"1210\" plane=\"nearest1\" depth=\"638\"/>";
str = str + "<object tile=\"null_tile\" x=\"4050\" y=\"1610\" plane=\"nearest1\" depth=\"639\"/>";
str = str + "<object tile=\"null_tile\" x=\"4050\" y=\"3210\" plane=\"nearest1\" depth=\"640\"/>";
str = str + "<object tile=\"null_tile\" x=\"4050\" y=\"3610\" plane=\"nearest1\" depth=\"641\"/>";
str = str + "<object tile=\"null_tile\" x=\"2950\" y=\"3610\" plane=\"nearest1\" depth=\"642\"/>";
str = str + "<object tile=\"null_tile\" x=\"1300\" y=\"3610\" plane=\"nearest1\" depth=\"643\"/>";
str = str + "<object tile=\"null_tile\" x=\"1850\" y=\"3610\" plane=\"nearest1\" depth=\"644\"/>";
str = str + "<object tile=\"null_tile\" x=\"2400\" y=\"3610\" plane=\"nearest1\" depth=\"645\"/>";
str = str + "<object tile=\"null_tile\" x=\"3500\" y=\"3610\" plane=\"nearest1\" depth=\"646\"/>";
str = str + "</array>";
str = str + "</object>";
str = str + "<object name=\"level_6\">";
str = str + "<var name=\"comment\" >Our humanitarian mission has completed our assignment in this region and is relocating to the country\u2019s capital. You must ensure the safety of the humanitarian mission column.";
str = str + "- top-priority assign: the UN column must safely reach its destination.";
str = str + "</var>";
str = str + "<array name=\"missions\">";
str = str + "<object group=\"miss_6\" arrow=\"arr_2\" missionType=\"survive\" active=\"1\" timer=\"1650\" winAmount=\"2\" looseAmount=\"1\" actionTrue=\"score 1000,startClip completedMission, win\" actionFalse=\"score 0,startClip failedMission, loose\"/>";
str = str + "</array>";
str = str + "<array name=\"level\">";
str = str + "<object tile=\"grass1\" x=\"1870\" y=\"2200\" plane=\"far3\" depth=\"1\"/>";
str = str + "<object tile=\"grass1\" x=\"1870\" y=\"2340\" plane=\"far3\" depth=\"2\"/>";
str = str + "<object tile=\"grass1\" x=\"1630\" y=\"2160\" plane=\"far3\" depth=\"3\"/>";
str = str + "<object tile=\"grass1\" x=\"1400\" y=\"2140\" plane=\"far3\" depth=\"4\"/>";
str = str + "<object tile=\"grass1\" x=\"1400\" y=\"1940\" plane=\"far3\" depth=\"5\"/>";
str = str + "<object tile=\"grass1\" x=\"1500\" y=\"2910\" plane=\"far3\" depth=\"6\"/>";
str = str + "<object tile=\"grass1\" x=\"1690\" y=\"2910\" plane=\"far3\" depth=\"7\"/>";
str = str + "<object tile=\"grass1\" x=\"1910\" y=\"2920\" plane=\"far3\" depth=\"8\"/>";
str = str + "<object tile=\"grass2\" x=\"1710\" y=\"2780\" plane=\"far3\" depth=\"9\"/>";
str = str + "<object tile=\"grass2\" x=\"2040\" y=\"2780\" plane=\"far3\" depth=\"10\"/>";
str = str + "<object tile=\"grass1\" x=\"1370\" y=\"1750\" plane=\"far3\" depth=\"11\"/>";
str = str + "<object tile=\"grass2\" x=\"1590\" y=\"1800\" plane=\"far3\" depth=\"12\"/>";
str = str + "<object tile=\"grass2\" x=\"1570\" y=\"1610\" plane=\"far3\" depth=\"13\"/>";
str = str + "<object tile=\"grass1\" x=\"1050\" y=\"1440\" plane=\"far3\" depth=\"14\"/>";
str = str + "<object tile=\"grass1\" x=\"1080\" y=\"1260\" plane=\"far3\" depth=\"15\"/>";
str = str + "<object tile=\"grass1\" x=\"880\" y=\"1430\" plane=\"far3\" depth=\"16\"/>";
str = str + "<object tile=\"grass1\" x=\"890\" y=\"1240\" plane=\"far3\" depth=\"17\"/>";
str = str + "<object tile=\"grass1\" x=\"680\" y=\"1230\" plane=\"far3\" depth=\"18\"/>";
str = str + "<object tile=\"grass1\" x=\"660\" y=\"1430\" plane=\"far3\" depth=\"19\"/>";
str = str + "<object tile=\"grass1\" x=\"770\" y=\"1090\" plane=\"far3\" depth=\"20\"/>";
str = str + "<object tile=\"grass1\" x=\"1540\" y=\"1140\" plane=\"far3\" depth=\"21\"/>";
str = str + "<object tile=\"grass1\" x=\"1460\" y=\"970\" plane=\"far3\" depth=\"22\"/>";
str = str + "<object tile=\"grass1\" x=\"1330\" y=\"930\" plane=\"far3\" depth=\"23\"/>";
str = str + "<object tile=\"grass1\" x=\"1460\" y=\"800\" plane=\"far3\" depth=\"24\"/>";
str = str + "<object tile=\"grass1\" x=\"1340\" y=\"760\" plane=\"far3\" depth=\"25\"/>";
str = str + "<object tile=\"grass1\" x=\"1440\" y=\"630\" plane=\"far3\" depth=\"26\"/>";
str = str + "<object tile=\"grass1\" x=\"760\" y=\"880\" plane=\"far3\" depth=\"27\"/>";
str = str + "<object tile=\"grass1\" x=\"940\" y=\"860\" plane=\"far3\" depth=\"28\"/>";
str = str + "<object tile=\"grass1\" x=\"800\" y=\"3330\" plane=\"far3\" depth=\"29\"/>";
str = str + "<object tile=\"grass1\" x=\"1020\" y=\"3350\" plane=\"far3\" depth=\"30\"/>";
str = str + "<object tile=\"grass1\" x=\"1240\" y=\"3350\" plane=\"far3\" depth=\"31\"/>";
str = str + "<object tile=\"grass1\" x=\"1430\" y=\"3340\" plane=\"far3\" depth=\"32\"/>";
str = str + "<object tile=\"grass1\" x=\"1640\" y=\"3350\" plane=\"far3\" depth=\"33\"/>";
str = str + "<object tile=\"grass1\" x=\"1720\" y=\"3150\" plane=\"far3\" depth=\"34\"/>";
str = str + "<object tile=\"grass1\" x=\"1500\" y=\"3130\" plane=\"far3\" depth=\"35\"/>";
str = str + "<object tile=\"grass1\" x=\"1310\" y=\"3150\" plane=\"far3\" depth=\"36\"/>";
str = str + "<object tile=\"grass1\" x=\"1050\" y=\"3220\" plane=\"far3\" depth=\"37\"/>";
str = str + "<object tile=\"grass1\" x=\"1140\" y=\"3710\" plane=\"far3\" depth=\"38\"/>";
str = str + "<object tile=\"grass1\" x=\"1390\" y=\"3700\" plane=\"far3\" depth=\"39\"/>";
str = str + "<object tile=\"grass1\" x=\"1600\" y=\"3730\" plane=\"far3\" depth=\"40\"/>";
str = str + "<object tile=\"grass2\" x=\"2040\" y=\"2370\" plane=\"far3\" depth=\"41\"/>";
str = str + "<object tile=\"grass2\" x=\"2160\" y=\"2190\" plane=\"far3\" depth=\"42\"/>";
str = str + "<object tile=\"grass1\" x=\"3100\" y=\"2520\" plane=\"far3\" depth=\"43\"/>";
str = str + "<object tile=\"grass1\" x=\"2800\" y=\"2380\" plane=\"far3\" depth=\"44\"/>";
str = str + "<object tile=\"grass1\" x=\"2460\" y=\"2190\" plane=\"far3\" depth=\"45\"/>";
str = str + "<object tile=\"grass1\" x=\"2260\" y=\"2220\" plane=\"far3\" depth=\"46\"/>";
str = str + "<object tile=\"grass1\" x=\"2390\" y=\"2350\" plane=\"far3\" depth=\"47\"/>";
str = str + "<object tile=\"grass1\" x=\"2160\" y=\"2440\" plane=\"far3\" depth=\"48\"/>";
str = str + "<object tile=\"grass3\" x=\"2680\" y=\"2400\" plane=\"far3\" depth=\"49\"/>";
str = str + "<object tile=\"grass3\" x=\"2700\" y=\"2320\" plane=\"far3\" depth=\"50\"/>";
str = str + "<object tile=\"grass3\" x=\"2680\" y=\"2550\" plane=\"far3\" depth=\"51\"/>";
str = str + "<object tile=\"grass3\" x=\"2460\" y=\"2550\" plane=\"far3\" depth=\"52\"/>";
str = str + "<object tile=\"grass3\" x=\"2200\" y=\"2380\" plane=\"far3\" depth=\"53\"/>";
str = str + "<object tile=\"grass3\" x=\"2640\" y=\"2430\" plane=\"far3\" depth=\"54\"/>";
str = str + "<object tile=\"grass1\" x=\"4060\" y=\"3310\" plane=\"far3\" depth=\"55\"/>";
str = str + "<object tile=\"grass1\" x=\"4080\" y=\"3090\" plane=\"far3\" depth=\"56\"/>";
str = str + "<object tile=\"grass1\" x=\"3660\" y=\"3310\" plane=\"far3\" depth=\"57\"/>";
str = str + "<object tile=\"grass1\" x=\"3550\" y=\"3190\" plane=\"far3\" depth=\"58\"/>";
str = str + "<object tile=\"grass1\" x=\"3580\" y=\"3010\" plane=\"far3\" depth=\"59\"/>";
str = str + "<object tile=\"grass2\" x=\"3740\" y=\"3160\" plane=\"far3\" depth=\"60\"/>";
str = str + "<object tile=\"grass2\" x=\"4120\" y=\"2890\" plane=\"far3\" depth=\"61\"/>";
str = str + "<object tile=\"grass2\" x=\"3960\" y=\"2810\" plane=\"far3\" depth=\"62\"/>";
str = str + "<object tile=\"grass1\" x=\"3700\" y=\"2800\" plane=\"far3\" depth=\"63\"/>";
str = str + "<object tile=\"grass1\" x=\"3430\" y=\"2820\" plane=\"far3\" depth=\"64\"/>";
str = str + "<object tile=\"grass1\" x=\"3530\" y=\"2720\" plane=\"far3\" depth=\"65\"/>";
str = str + "<object tile=\"grass1\" x=\"3410\" y=\"2670\" plane=\"far3\" depth=\"66\"/>";
str = str + "<object tile=\"grass1\" x=\"3240\" y=\"3100\" plane=\"far3\" depth=\"67\"/>";
str = str + "<object tile=\"grass1\" x=\"3440\" y=\"3160\" plane=\"far3\" depth=\"68\"/>";
str = str + "<object tile=\"grass1\" x=\"3400\" y=\"3340\" plane=\"far3\" depth=\"69\"/>";
str = str + "<object tile=\"grass1\" x=\"3230\" y=\"3290\" plane=\"far3\" depth=\"70\"/>";
str = str + "<object tile=\"grass1\" x=\"3180\" y=\"2990\" plane=\"far3\" depth=\"71\"/>";
str = str + "<object tile=\"grass1\" x=\"3130\" y=\"2770\" plane=\"far3\" depth=\"72\"/>";
str = str + "<object tile=\"grass1\" x=\"3070\" y=\"2700\" plane=\"far3\" depth=\"73\"/>";
str = str + "<object tile=\"grass1\" x=\"3180\" y=\"3690\" plane=\"far3\" depth=\"74\"/>";
str = str + "<object tile=\"grass1\" x=\"3400\" y=\"3700\" plane=\"far3\" depth=\"75\"/>";
str = str + "<object tile=\"grass1\" x=\"3630\" y=\"3710\" plane=\"far3\" depth=\"76\"/>";
str = str + "<object tile=\"grass1\" x=\"3870\" y=\"3700\" plane=\"far3\" depth=\"77\"/>";
str = str + "<object tile=\"grass1\" x=\"3940\" y=\"3700\" plane=\"far3\" depth=\"78\"/>";
str = str + "<object tile=\"grass1\" x=\"4130\" y=\"3660\" plane=\"far3\" depth=\"79\"/>";
str = str + "<object tile=\"grass1\" x=\"3570\" y=\"3610\" plane=\"far3\" depth=\"80\"/>";
str = str + "<object tile=\"grass1\" x=\"2980\" y=\"3710\" plane=\"far3\" depth=\"81\"/>";
str = str + "<object tile=\"grass1\" x=\"3110\" y=\"3340\" plane=\"far3\" depth=\"82\"/>";
str = str + "<object tile=\"grass1\" x=\"3070\" y=\"2940\" plane=\"far3\" depth=\"83\"/>";
str = str + "<object tile=\"grass1\" x=\"3060\" y=\"3170\" plane=\"far3\" depth=\"84\"/>";
str = str + "<object tile=\"grass1\" x=\"2950\" y=\"2930\" plane=\"far3\" depth=\"85\"/>";
str = str + "<object tile=\"grass1\" x=\"2830\" y=\"2820\" plane=\"far3\" depth=\"86\"/>";
str = str + "<object tile=\"grass1\" x=\"2760\" y=\"2800\" plane=\"far3\" depth=\"87\"/>";
str = str + "<object tile=\"grass1\" x=\"2700\" y=\"2710\" plane=\"far3\" depth=\"88\"/>";
str = str + "<object tile=\"grass1\" x=\"2800\" y=\"2670\" plane=\"far3\" depth=\"89\"/>";
str = str + "<object tile=\"grass1\" x=\"3230\" y=\"2450\" plane=\"far3\" depth=\"90\"/>";
str = str + "<object tile=\"grass1\" x=\"3070\" y=\"2490\" plane=\"far3\" depth=\"91\"/>";
str = str + "<object tile=\"sand\" x=\"-695\" y=\"96\" plane=\"far2\" depth=\"92\"/>";
str = str + "<object tile=\"sand\" x=\"-695\" y=\"486\" plane=\"far2\" depth=\"93\"/>";
str = str + "<object tile=\"sand\" x=\"-695\" y=\"886\" plane=\"far2\" depth=\"94\"/>";
str = str + "<object tile=\"sand\" x=\"-695\" y=\"1276\" plane=\"far2\" depth=\"95\"/>";
str = str + "<object tile=\"road_d1\" x=\"440\" y=\"3730\" plane=\"far2\" depth=\"96\"/>";
str = str + "<object tile=\"road_u2\" x=\"440\" y=\"3530\" plane=\"far2\" depth=\"97\"/>";
str = str + "<object tile=\"road_d1\" x=\"540\" y=\"3730\" plane=\"far2\" depth=\"98\"/>";
str = str + "<object tile=\"road_u2\" x=\"540\" y=\"3530\" plane=\"far2\" depth=\"99\"/>";
str = str + "<object tile=\"road_d1\" x=\"640\" y=\"3730\" plane=\"far2\" depth=\"100\"/>";
str = str + "<object tile=\"road_u2\" x=\"640\" y=\"3530\" plane=\"far2\" depth=\"101\"/>";
str = str + "<object tile=\"road_d1\" x=\"740\" y=\"3730\" plane=\"far2\" depth=\"102\"/>";
str = str + "<object tile=\"road_u2\" x=\"740\" y=\"3530\" plane=\"far2\" depth=\"103\"/>";
str = str + "<object tile=\"road_d1\" x=\"840\" y=\"3730\" plane=\"far2\" depth=\"104\"/>";
str = str + "<object tile=\"road_u2\" x=\"840\" y=\"3530\" plane=\"far2\" depth=\"105\"/>";
str = str + "<object tile=\"road_d1\" x=\"940\" y=\"3730\" plane=\"far2\" depth=\"106\"/>";
str = str + "<object tile=\"road_u2\" x=\"940\" y=\"3530\" plane=\"far2\" depth=\"107\"/>";
str = str + "<object tile=\"road_d1\" x=\"1040\" y=\"3730\" plane=\"far2\" depth=\"108\"/>";
str = str + "<object tile=\"road_u2\" x=\"1040\" y=\"3530\" plane=\"far2\" depth=\"109\"/>";
str = str + "<object tile=\"road_d1\" x=\"1140\" y=\"3730\" plane=\"far2\" depth=\"110\"/>";
str = str + "<object tile=\"road_u2\" x=\"1140\" y=\"3530\" plane=\"far2\" depth=\"111\"/>";
str = str + "<object tile=\"road_d1\" x=\"1240\" y=\"3730\" plane=\"far2\" depth=\"112\"/>";
str = str + "<object tile=\"road_u2\" x=\"1240\" y=\"3530\" plane=\"far2\" depth=\"113\"/>";
str = str + "<object tile=\"road_d1\" x=\"1640\" y=\"3730\" plane=\"far2\" depth=\"114\"/>";
str = str + "<object tile=\"road_u2\" x=\"1640\" y=\"3530\" plane=\"far2\" depth=\"115\"/>";
str = str + "<object tile=\"road_d1\" x=\"1740\" y=\"3730\" plane=\"far2\" depth=\"116\"/>";
str = str + "<object tile=\"road_u2\" x=\"1740\" y=\"3530\" plane=\"far2\" depth=\"117\"/>";
str = str + "<object tile=\"road_d1\" x=\"1840\" y=\"3730\" plane=\"far2\" depth=\"118\"/>";
str = str + "<object tile=\"road_u2\" x=\"1840\" y=\"3530\" plane=\"far2\" depth=\"119\"/>";
str = str + "<object tile=\"road_d1\" x=\"1940\" y=\"3730\" plane=\"far2\" depth=\"120\"/>";
str = str + "<object tile=\"road_u2\" x=\"1940\" y=\"3530\" plane=\"far2\" depth=\"121\"/>";
str = str + "<object tile=\"road_d1\" x=\"2040\" y=\"3730\" plane=\"far2\" depth=\"122\"/>";
str = str + "<object tile=\"road_u2\" x=\"2040\" y=\"3530\" plane=\"far2\" depth=\"123\"/>";
str = str + "<object tile=\"road_d1\" x=\"2140\" y=\"3730\" plane=\"far2\" depth=\"124\"/>";
str = str + "<object tile=\"road_u2\" x=\"2140\" y=\"3530\" plane=\"far2\" depth=\"125\"/>";
str = str + "<object tile=\"road_d1\" x=\"2240\" y=\"3730\" plane=\"far2\" depth=\"126\"/>";
str = str + "<object tile=\"road_u2\" x=\"2240\" y=\"3530\" plane=\"far2\" depth=\"127\"/>";
str = str + "<object tile=\"road_d1\" x=\"2340\" y=\"3730\" plane=\"far2\" depth=\"128\"/>";
str = str + "<object tile=\"road_u2\" x=\"2340\" y=\"3530\" plane=\"far2\" depth=\"129\"/>";
str = str + "<object tile=\"road_d1\" x=\"2440\" y=\"3730\" plane=\"far2\" depth=\"130\"/>";
str = str + "<object tile=\"road_u2\" x=\"2440\" y=\"3530\" plane=\"far2\" depth=\"131\"/>";
str = str + "<object tile=\"road_d1\" x=\"2540\" y=\"3730\" plane=\"far2\" depth=\"132\"/>";
str = str + "<object tile=\"road_d1\" x=\"2640\" y=\"3730\" plane=\"far2\" depth=\"133\"/>";
str = str + "<object tile=\"road_u_l\" x=\"2640\" y=\"3530\" plane=\"far2\" depth=\"134\"/>";
str = str + "<object tile=\"road_u2\" x=\"2540\" y=\"3530\" plane=\"far2\" depth=\"135\"/>";
str = str + "<object tile=\"road_c\" x=\"440\" y=\"3630\" plane=\"far2\" depth=\"136\"/>";
str = str + "<object tile=\"road_c\" x=\"540\" y=\"3630\" plane=\"far2\" depth=\"137\"/>";
str = str + "<object tile=\"road_c\" x=\"640\" y=\"3630\" plane=\"far2\" depth=\"138\"/>";
str = str + "<object tile=\"road_c\" x=\"740\" y=\"3630\" plane=\"far2\" depth=\"139\"/>";
str = str + "<object tile=\"road_c\" x=\"840\" y=\"3630\" plane=\"far2\" depth=\"140\"/>";
str = str + "<object tile=\"road_c\" x=\"940\" y=\"3630\" plane=\"far2\" depth=\"141\"/>";
str = str + "<object tile=\"road_c\" x=\"1040\" y=\"3630\" plane=\"far2\" depth=\"142\"/>";
str = str + "<object tile=\"road_c\" x=\"1140\" y=\"3630\" plane=\"far2\" depth=\"143\"/>";
str = str + "<object tile=\"road_c\" x=\"1240\" y=\"3630\" plane=\"far2\" depth=\"144\"/>";
str = str + "<object tile=\"road_c\" x=\"1640\" y=\"3630\" plane=\"far2\" depth=\"145\"/>";
str = str + "<object tile=\"road_c\" x=\"1740\" y=\"3630\" plane=\"far2\" depth=\"146\"/>";
str = str + "<object tile=\"road_c\" x=\"1840\" y=\"3630\" plane=\"far2\" depth=\"147\"/>";
str = str + "<object tile=\"road_c\" x=\"1940\" y=\"3630\" plane=\"far2\" depth=\"148\"/>";
str = str + "<object tile=\"road_c\" x=\"2040\" y=\"3630\" plane=\"far2\" depth=\"149\"/>";
str = str + "<object tile=\"road_c\" x=\"2140\" y=\"3630\" plane=\"far2\" depth=\"150\"/>";
str = str + "<object tile=\"road_c\" x=\"2240\" y=\"3630\" plane=\"far2\" depth=\"151\"/>";
str = str + "<object tile=\"road_c\" x=\"2340\" y=\"3630\" plane=\"far2\" depth=\"152\"/>";
str = str + "<object tile=\"road_c\" x=\"2440\" y=\"3630\" plane=\"far2\" depth=\"153\"/>";
str = str + "<object tile=\"road_c\" x=\"2540\" y=\"3630\" plane=\"far2\" depth=\"154\"/>";
str = str + "<object tile=\"road_c\" x=\"2640\" y=\"3630\" plane=\"far2\" depth=\"155\"/>";
str = str + "<object tile=\"road_d1\" x=\"1440\" y=\"3730\" plane=\"far2\" depth=\"156\"/>";
str = str + "<object tile=\"road_d1\" x=\"1540\" y=\"3730\" plane=\"far2\" depth=\"157\"/>";
str = str + "<object tile=\"road_c\" x=\"1440\" y=\"3630\" plane=\"far2\" depth=\"158\"/>";
str = str + "<object tile=\"road_c\" x=\"1540\" y=\"3630\" plane=\"far2\" depth=\"159\"/>";
str = str + "<object tile=\"road_d1\" x=\"1340\" y=\"3730\" plane=\"far2\" depth=\"160\"/>";
str = str + "<object tile=\"road_u2\" x=\"1340\" y=\"3530\" plane=\"far2\" depth=\"161\"/>";
str = str + "<object tile=\"road_c\" x=\"1340\" y=\"3630\" plane=\"far2\" depth=\"162\"/>";
str = str + "<object tile=\"road_u_r\" x=\"2740\" y=\"3530\" plane=\"far2\" depth=\"163\"/>";
str = str + "<object tile=\"road_d1\" x=\"2740\" y=\"3730\" plane=\"far2\" depth=\"164\"/>";
str = str + "<object tile=\"road_d1\" x=\"2840\" y=\"3730\" plane=\"far2\" depth=\"165\"/>";
str = str + "<object tile=\"road_u2\" x=\"2840\" y=\"3530\" plane=\"far2\" depth=\"166\"/>";
str = str + "<object tile=\"road_d1\" x=\"2940\" y=\"3730\" plane=\"far2\" depth=\"167\"/>";
str = str + "<object tile=\"road_u2\" x=\"2940\" y=\"3530\" plane=\"far2\" depth=\"168\"/>";
str = str + "<object tile=\"road_c\" x=\"2740\" y=\"3630\" plane=\"far2\" depth=\"169\"/>";
str = str + "<object tile=\"road_c\" x=\"2840\" y=\"3630\" plane=\"far2\" depth=\"170\"/>";
str = str + "<object tile=\"road_c\" x=\"2940\" y=\"3630\" plane=\"far2\" depth=\"171\"/>";
str = str + "<object tile=\"road_d1\" x=\"3040\" y=\"3730\" plane=\"far2\" depth=\"172\"/>";
str = str + "<object tile=\"road_u2\" x=\"3040\" y=\"3530\" plane=\"far2\" depth=\"173\"/>";
str = str + "<object tile=\"road_d1\" x=\"3140\" y=\"3730\" plane=\"far2\" depth=\"174\"/>";
str = str + "<object tile=\"road_u2\" x=\"3140\" y=\"3530\" plane=\"far2\" depth=\"175\"/>";
str = str + "<object tile=\"road_d1\" x=\"3240\" y=\"3730\" plane=\"far2\" depth=\"176\"/>";
str = str + "<object tile=\"road_u2\" x=\"3240\" y=\"3530\" plane=\"far2\" depth=\"177\"/>";
str = str + "<object tile=\"road_d1\" x=\"3340\" y=\"3730\" plane=\"far2\" depth=\"178\"/>";
str = str + "<object tile=\"road_u2\" x=\"3340\" y=\"3530\" plane=\"far2\" depth=\"179\"/>";
str = str + "<object tile=\"road_d1\" x=\"3740\" y=\"3730\" plane=\"far2\" depth=\"180\"/>";
str = str + "<object tile=\"road_u2\" x=\"3740\" y=\"3530\" plane=\"far2\" depth=\"181\"/>";
str = str + "<object tile=\"road_d1\" x=\"3840\" y=\"3730\" plane=\"far2\" depth=\"182\"/>";
str = str + "<object tile=\"road_u2\" x=\"3840\" y=\"3530\" plane=\"far2\" depth=\"183\"/>";
str = str + "<object tile=\"road_d1\" x=\"3940\" y=\"3730\" plane=\"far2\" depth=\"184\"/>";
str = str + "<object tile=\"road_d1\" x=\"4040\" y=\"3730\" plane=\"far2\" depth=\"185\"/>";
str = str + "<object tile=\"road_d1\" x=\"4140\" y=\"3730\" plane=\"far2\" depth=\"186\"/>";
str = str + "<object tile=\"road_u2\" x=\"4140\" y=\"3530\" plane=\"far2\" depth=\"187\"/>";
str = str + "<object tile=\"road_d1\" x=\"4240\" y=\"3730\" plane=\"far2\" depth=\"188\"/>";
str = str + "<object tile=\"road_u2\" x=\"4240\" y=\"3530\" plane=\"far2\" depth=\"189\"/>";
str = str + "<object tile=\"road_c\" x=\"3040\" y=\"3630\" plane=\"far2\" depth=\"190\"/>";
str = str + "<object tile=\"road_c\" x=\"3140\" y=\"3630\" plane=\"far2\" depth=\"191\"/>";
str = str + "<object tile=\"road_c\" x=\"3240\" y=\"3630\" plane=\"far2\" depth=\"192\"/>";
str = str + "<object tile=\"road_c\" x=\"3340\" y=\"3630\" plane=\"far2\" depth=\"193\"/>";
str = str + "<object tile=\"road_c\" x=\"3740\" y=\"3630\" plane=\"far2\" depth=\"194\"/>";
str = str + "<object tile=\"road_c\" x=\"3840\" y=\"3630\" plane=\"far2\" depth=\"195\"/>";
str = str + "<object tile=\"road_c\" x=\"3940\" y=\"3630\" plane=\"far2\" depth=\"196\"/>";
str = str + "<object tile=\"road_c\" x=\"4040\" y=\"3630\" plane=\"far2\" depth=\"197\"/>";
str = str + "<object tile=\"road_c\" x=\"4140\" y=\"3630\" plane=\"far2\" depth=\"198\"/>";
str = str + "<object tile=\"road_c\" x=\"4240\" y=\"3630\" plane=\"far2\" depth=\"199\"/>";
str = str + "<object tile=\"road_d1\" x=\"3540\" y=\"3730\" plane=\"far2\" depth=\"200\"/>";
str = str + "<object tile=\"road_u2\" x=\"3540\" y=\"3530\" plane=\"far2\" depth=\"201\"/>";
str = str + "<object tile=\"road_d1\" x=\"3640\" y=\"3730\" plane=\"far2\" depth=\"202\"/>";
str = str + "<object tile=\"road_u2\" x=\"3640\" y=\"3530\" plane=\"far2\" depth=\"203\"/>";
str = str + "<object tile=\"road_c\" x=\"3540\" y=\"3630\" plane=\"far2\" depth=\"204\"/>";
str = str + "<object tile=\"road_c\" x=\"3640\" y=\"3630\" plane=\"far2\" depth=\"205\"/>";
str = str + "<object tile=\"road_d1\" x=\"3440\" y=\"3730\" plane=\"far2\" depth=\"206\"/>";
str = str + "<object tile=\"road_u2\" x=\"3440\" y=\"3530\" plane=\"far2\" depth=\"207\"/>";
str = str + "<object tile=\"road_c\" x=\"3440\" y=\"3630\" plane=\"far2\" depth=\"208\"/>";
str = str + "<object tile=\"road_d1\" x=\"4340\" y=\"3730\" plane=\"far2\" depth=\"209\"/>";
str = str + "<object tile=\"road_u2\" x=\"4340\" y=\"3530\" plane=\"far2\" depth=\"210\"/>";
str = str + "<object tile=\"road_d1\" x=\"4440\" y=\"3730\" plane=\"far2\" depth=\"211\"/>";
str = str + "<object tile=\"road_u2\" x=\"4440\" y=\"3530\" plane=\"far2\" depth=\"212\"/>";
str = str + "<object tile=\"road_c\" x=\"4340\" y=\"3630\" plane=\"far2\" depth=\"213\"/>";
str = str + "<object tile=\"road_c\" x=\"4440\" y=\"3630\" plane=\"far2\" depth=\"214\"/>";
str = str + "<object tile=\"road_u_l\" x=\"1440\" y=\"3530\" plane=\"far2\" depth=\"215\"/>";
str = str + "<object tile=\"road_u_r\" x=\"1540\" y=\"3530\" plane=\"far2\" depth=\"216\"/>";
str = str + "<object tile=\"road_u_r\" x=\"4040\" y=\"3530\" plane=\"far2\" depth=\"217\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3940\" y=\"3530\" plane=\"far2\" depth=\"218\"/>";
str = str + "<object tile=\"road_l3\" x=\"3940\" y=\"3430\" plane=\"far2\" depth=\"219\"/>";
str = str + "<object tile=\"road_r1\" x=\"4040\" y=\"3430\" plane=\"far2\" depth=\"220\"/>";
str = str + "<object tile=\"road_r1\" x=\"4040\" y=\"3330\" plane=\"far2\" depth=\"221\"/>";
str = str + "<object tile=\"road_l3\" x=\"3940\" y=\"3330\" plane=\"far2\" depth=\"222\"/>";
str = str + "<object tile=\"road_r1\" x=\"4040\" y=\"3230\" plane=\"far2\" depth=\"223\"/>";
str = str + "<object tile=\"road_l3\" x=\"3940\" y=\"3230\" plane=\"far2\" depth=\"224\"/>";
str = str + "<object tile=\"road_l3\" x=\"1440\" y=\"3430\" plane=\"far2\" depth=\"225\"/>";
str = str + "<object tile=\"road_r1\" x=\"1540\" y=\"3430\" plane=\"far2\" depth=\"226\"/>";
str = str + "<object tile=\"road_lu\" x=\"1440\" y=\"3330\" plane=\"far2\" depth=\"227\"/>";
str = str + "<object tile=\"road_ru\" x=\"1540\" y=\"3330\" plane=\"far2\" depth=\"228\"/>";
str = str + "<object tile=\"road_r1\" x=\"2740\" y=\"3430\" plane=\"far2\" depth=\"229\"/>";
str = str + "<object tile=\"road_l3\" x=\"2640\" y=\"3430\" plane=\"far2\" depth=\"230\"/>";
str = str + "<object tile=\"road_r1\" x=\"2740\" y=\"3330\" plane=\"far2\" depth=\"231\"/>";
str = str + "<object tile=\"road_l3\" x=\"2640\" y=\"3330\" plane=\"far2\" depth=\"232\"/>";
str = str + "<object tile=\"road_r1\" x=\"2740\" y=\"3230\" plane=\"far2\" depth=\"233\"/>";
str = str + "<object tile=\"road_l3\" x=\"2640\" y=\"3230\" plane=\"far2\" depth=\"234\"/>";
str = str + "<object tile=\"road_r1\" x=\"2740\" y=\"3130\" plane=\"far2\" depth=\"235\"/>";
str = str + "<object tile=\"road_l3\" x=\"2640\" y=\"3130\" plane=\"far2\" depth=\"236\"/>";
str = str + "<object tile=\"road_r1\" x=\"2740\" y=\"3030\" plane=\"far2\" depth=\"237\"/>";
str = str + "<object tile=\"road_l3\" x=\"2640\" y=\"3030\" plane=\"far2\" depth=\"238\"/>";
str = str + "<object tile=\"road_r1\" x=\"2740\" y=\"2930\" plane=\"far2\" depth=\"239\"/>";
str = str + "<object tile=\"road_l3\" x=\"2640\" y=\"2930\" plane=\"far2\" depth=\"240\"/>";
str = str + "<object tile=\"road_r1\" x=\"2740\" y=\"2830\" plane=\"far2\" depth=\"241\"/>";
str = str + "<object tile=\"road_l3\" x=\"2640\" y=\"2830\" plane=\"far2\" depth=\"242\"/>";
str = str + "<object tile=\"road_d_r\" x=\"2740\" y=\"2730\" plane=\"far2\" depth=\"243\"/>";
str = str + "<object tile=\"road_d_l\" x=\"2640\" y=\"2730\" plane=\"far2\" depth=\"244\"/>";
str = str + "<object tile=\"road_u2\" x=\"2640\" y=\"2630\" plane=\"far2\" depth=\"245\"/>";
str = str + "<object tile=\"road_u2\" x=\"2740\" y=\"2630\" plane=\"far2\" depth=\"246\"/>";
str = str + "<object tile=\"road_r1\" x=\"3140\" y=\"2530\" plane=\"far2\" depth=\"247\"/>";
str = str + "<object tile=\"road_l3\" x=\"3040\" y=\"2530\" plane=\"far2\" depth=\"248\"/>";
str = str + "<object tile=\"road_r1\" x=\"3140\" y=\"2430\" plane=\"far2\" depth=\"249\"/>";
str = str + "<object tile=\"road_l3\" x=\"3040\" y=\"2430\" plane=\"far2\" depth=\"250\"/>";
str = str + "<object tile=\"road_r1\" x=\"3140\" y=\"2330\" plane=\"far2\" depth=\"251\"/>";
str = str + "<object tile=\"road_l3\" x=\"3040\" y=\"2330\" plane=\"far2\" depth=\"252\"/>";
str = str + "<object tile=\"road_d1\" x=\"2140\" y=\"2730\" plane=\"far2\" depth=\"253\"/>";
str = str + "<object tile=\"road_u2\" x=\"2140\" y=\"2630\" plane=\"far2\" depth=\"254\"/>";
str = str + "<object tile=\"road_d1\" x=\"2240\" y=\"2730\" plane=\"far2\" depth=\"255\"/>";
str = str + "<object tile=\"road_u2\" x=\"2240\" y=\"2630\" plane=\"far2\" depth=\"256\"/>";
str = str + "<object tile=\"road_d1\" x=\"2340\" y=\"2730\" plane=\"far2\" depth=\"257\"/>";
str = str + "<object tile=\"road_u2\" x=\"2340\" y=\"2630\" plane=\"far2\" depth=\"258\"/>";
str = str + "<object tile=\"road_d1\" x=\"2440\" y=\"2730\" plane=\"far2\" depth=\"259\"/>";
str = str + "<object tile=\"road_u2\" x=\"2440\" y=\"2630\" plane=\"far2\" depth=\"260\"/>";
str = str + "<object tile=\"road_d1\" x=\"2540\" y=\"2730\" plane=\"far2\" depth=\"261\"/>";
str = str + "<object tile=\"road_u2\" x=\"2540\" y=\"2630\" plane=\"far2\" depth=\"262\"/>";
str = str + "<object tile=\"road_d1\" x=\"2840\" y=\"2730\" plane=\"far2\" depth=\"263\"/>";
str = str + "<object tile=\"road_u2\" x=\"2840\" y=\"2630\" plane=\"far2\" depth=\"264\"/>";
str = str + "<object tile=\"road_d1\" x=\"2940\" y=\"2730\" plane=\"far2\" depth=\"265\"/>";
str = str + "<object tile=\"road_u2\" x=\"2940\" y=\"2630\" plane=\"far2\" depth=\"266\"/>";
str = str + "<object tile=\"road_d1\" x=\"3040\" y=\"2730\" plane=\"far2\" depth=\"267\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3040\" y=\"2630\" plane=\"far2\" depth=\"268\"/>";
str = str + "<object tile=\"road_u_r\" x=\"3140\" y=\"2630\" plane=\"far2\" depth=\"269\"/>";
str = str + "<object tile=\"road_d1\" x=\"3140\" y=\"2730\" plane=\"far2\" depth=\"270\"/>";
str = str + "<object tile=\"road_d1\" x=\"2840\" y=\"2130\" plane=\"far2\" depth=\"271\"/>";
str = str + "<object tile=\"road_d1\" x=\"2940\" y=\"2130\" plane=\"far2\" depth=\"272\"/>";
str = str + "<object tile=\"road_d_l\" x=\"3040\" y=\"2130\" plane=\"far2\" depth=\"273\"/>";
str = str + "<object tile=\"road_l3\" x=\"3040\" y=\"2230\" plane=\"far2\" depth=\"274\"/>";
str = str + "<object tile=\"road_r1\" x=\"3140\" y=\"2230\" plane=\"far2\" depth=\"275\"/>";
str = str + "<object tile=\"road_d_r\" x=\"3140\" y=\"2130\" plane=\"far2\" depth=\"276\"/>";
str = str + "<object tile=\"road_d1\" x=\"3240\" y=\"2130\" plane=\"far2\" depth=\"277\"/>";
str = str + "<object tile=\"road_d1\" x=\"3340\" y=\"2130\" plane=\"far2\" depth=\"278\"/>";
str = str + "<object tile=\"road_d1\" x=\"3440\" y=\"2130\" plane=\"far2\" depth=\"279\"/>";
str = str + "<object tile=\"road_d1\" x=\"3540\" y=\"2130\" plane=\"far2\" depth=\"280\"/>";
str = str + "<object tile=\"road_d1\" x=\"3640\" y=\"2130\" plane=\"far2\" depth=\"281\"/>";
str = str + "<object tile=\"road_d1\" x=\"3740\" y=\"2130\" plane=\"far2\" depth=\"282\"/>";
str = str + "<object tile=\"road_rd\" x=\"3840\" y=\"2130\" plane=\"far2\" depth=\"283\"/>";
str = str + "<object tile=\"road_r1\" x=\"3840\" y=\"2030\" plane=\"far2\" depth=\"284\"/>";
str = str + "<object tile=\"road_c\" x=\"3740\" y=\"2030\" plane=\"far2\" depth=\"285\"/>";
str = str + "<object tile=\"road_u2\" x=\"3740\" y=\"1930\" plane=\"far2\" depth=\"286\"/>";
str = str + "<object tile=\"road_ru\" x=\"3840\" y=\"1930\" plane=\"far2\" depth=\"287\"/>";
str = str + "<object tile=\"road_u2\" x=\"3640\" y=\"1930\" plane=\"far2\" depth=\"288\"/>";
str = str + "<object tile=\"road_u2\" x=\"3540\" y=\"1930\" plane=\"far2\" depth=\"289\"/>";
str = str + "<object tile=\"road_u2\" x=\"3440\" y=\"1930\" plane=\"far2\" depth=\"290\"/>";
str = str + "<object tile=\"road_u2\" x=\"3340\" y=\"1930\" plane=\"far2\" depth=\"291\"/>";
str = str + "<object tile=\"road_u2\" x=\"3240\" y=\"1930\" plane=\"far2\" depth=\"292\"/>";
str = str + "<object tile=\"road_u_r\" x=\"3140\" y=\"1930\" plane=\"far2\" depth=\"293\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3040\" y=\"1930\" plane=\"far2\" depth=\"294\"/>";
str = str + "<object tile=\"road_u2\" x=\"2940\" y=\"1930\" plane=\"far2\" depth=\"295\"/>";
str = str + "<object tile=\"road_u2\" x=\"2840\" y=\"1930\" plane=\"far2\" depth=\"296\"/>";
str = str + "<object tile=\"road_lu\" x=\"2740\" y=\"1930\" plane=\"far2\" depth=\"297\"/>";
str = str + "<object tile=\"road_ld\" x=\"2740\" y=\"2130\" plane=\"far2\" depth=\"298\"/>";
str = str + "<object tile=\"road_l3\" x=\"2740\" y=\"2030\" plane=\"far2\" depth=\"299\"/>";
str = str + "<object tile=\"road_c\" x=\"2840\" y=\"2030\" plane=\"far2\" depth=\"300\"/>";
str = str + "<object tile=\"road_c\" x=\"2940\" y=\"2030\" plane=\"far2\" depth=\"301\"/>";
str = str + "<object tile=\"road_c\" x=\"3040\" y=\"2030\" plane=\"far2\" depth=\"302\"/>";
str = str + "<object tile=\"road_c\" x=\"3140\" y=\"2030\" plane=\"far2\" depth=\"303\"/>";
str = str + "<object tile=\"road_c\" x=\"3240\" y=\"2030\" plane=\"far2\" depth=\"304\"/>";
str = str + "<object tile=\"road_c\" x=\"3340\" y=\"2030\" plane=\"far2\" depth=\"305\"/>";
str = str + "<object tile=\"road_c\" x=\"3440\" y=\"2030\" plane=\"far2\" depth=\"306\"/>";
str = str + "<object tile=\"road_c\" x=\"3540\" y=\"2030\" plane=\"far2\" depth=\"307\"/>";
str = str + "<object tile=\"road_c\" x=\"3640\" y=\"2030\" plane=\"far2\" depth=\"308\"/>";
str = str + "<object tile=\"road_d_l\" x=\"3040\" y=\"1830\" plane=\"far2\" depth=\"309\"/>";
str = str + "<object tile=\"road_d_r\" x=\"3140\" y=\"1830\" plane=\"far2\" depth=\"310\"/>";
str = str + "<object tile=\"road_c\" x=\"3040\" y=\"1730\" plane=\"far2\" depth=\"311\"/>";
str = str + "<object tile=\"road_c\" x=\"3140\" y=\"1730\" plane=\"far2\" depth=\"312\"/>";
str = str + "<object tile=\"road_u2\" x=\"3040\" y=\"1630\" plane=\"far2\" depth=\"313\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3140\" y=\"1630\" plane=\"far2\" depth=\"314\"/>";
str = str + "<object tile=\"road_u_r\" x=\"3240\" y=\"1630\" plane=\"far2\" depth=\"315\"/>";
str = str + "<object tile=\"road_c\" x=\"3240\" y=\"1730\" plane=\"far2\" depth=\"316\"/>";
str = str + "<object tile=\"road_d1\" x=\"3240\" y=\"1830\" plane=\"far2\" depth=\"317\"/>";
str = str + "<object tile=\"road_d1\" x=\"3340\" y=\"1830\" plane=\"far2\" depth=\"318\"/>";
str = str + "<object tile=\"road_d1\" x=\"3440\" y=\"1830\" plane=\"far2\" depth=\"319\"/>";
str = str + "<object tile=\"road_d1\" x=\"3540\" y=\"1830\" plane=\"far2\" depth=\"320\"/>";
str = str + "<object tile=\"road_d1\" x=\"3640\" y=\"1830\" plane=\"far2\" depth=\"321\"/>";
str = str + "<object tile=\"road_d1\" x=\"3740\" y=\"1830\" plane=\"far2\" depth=\"322\"/>";
str = str + "<object tile=\"road_rd\" x=\"3840\" y=\"1830\" plane=\"far2\" depth=\"323\"/>";
str = str + "<object tile=\"road_r1\" x=\"3840\" y=\"1730\" plane=\"far2\" depth=\"324\"/>";
str = str + "<object tile=\"road_ru\" x=\"3840\" y=\"1630\" plane=\"far2\" depth=\"325\"/>";
str = str + "<object tile=\"road_u2\" x=\"3740\" y=\"1630\" plane=\"far2\" depth=\"326\"/>";
str = str + "<object tile=\"road_u2\" x=\"3640\" y=\"1630\" plane=\"far2\" depth=\"327\"/>";
str = str + "<object tile=\"road_u2\" x=\"3540\" y=\"1630\" plane=\"far2\" depth=\"328\"/>";
str = str + "<object tile=\"road_u2\" x=\"3440\" y=\"1630\" plane=\"far2\" depth=\"329\"/>";
str = str + "<object tile=\"road_u2\" x=\"3340\" y=\"1630\" plane=\"far2\" depth=\"330\"/>";
str = str + "<object tile=\"road_c\" x=\"3340\" y=\"1730\" plane=\"far2\" depth=\"331\"/>";
str = str + "<object tile=\"road_c\" x=\"3440\" y=\"1730\" plane=\"far2\" depth=\"332\"/>";
str = str + "<object tile=\"road_c\" x=\"3540\" y=\"1730\" plane=\"far2\" depth=\"333\"/>";
str = str + "<object tile=\"road_c\" x=\"3640\" y=\"1730\" plane=\"far2\" depth=\"334\"/>";
str = str + "<object tile=\"road_c\" x=\"3740\" y=\"1730\" plane=\"far2\" depth=\"335\"/>";
str = str + "<object tile=\"road_c\" x=\"2940\" y=\"1730\" plane=\"far2\" depth=\"336\"/>";
str = str + "<object tile=\"road_c\" x=\"2840\" y=\"1730\" plane=\"far2\" depth=\"337\"/>";
str = str + "<object tile=\"road_d1\" x=\"2940\" y=\"1830\" plane=\"far2\" depth=\"338\"/>";
str = str + "<object tile=\"road_d1\" x=\"2840\" y=\"1830\" plane=\"far2\" depth=\"339\"/>";
str = str + "<object tile=\"road_ld\" x=\"2740\" y=\"1830\" plane=\"far2\" depth=\"340\"/>";
str = str + "<object tile=\"road_l3\" x=\"2740\" y=\"1730\" plane=\"far2\" depth=\"341\"/>";
str = str + "<object tile=\"road_lu\" x=\"2740\" y=\"1630\" plane=\"far2\" depth=\"342\"/>";
str = str + "<object tile=\"road_u2\" x=\"2840\" y=\"1630\" plane=\"far2\" depth=\"343\"/>";
str = str + "<object tile=\"road_u2\" x=\"2940\" y=\"1630\" plane=\"far2\" depth=\"344\"/>";
str = str + "<object tile=\"road_d_r\" x=\"3240\" y=\"1530\" plane=\"far2\" depth=\"345\"/>";
str = str + "<object tile=\"road_d_l\" x=\"3140\" y=\"1530\" plane=\"far2\" depth=\"346\"/>";
str = str + "<object tile=\"road_c\" x=\"3140\" y=\"1430\" plane=\"far2\" depth=\"347\"/>";
str = str + "<object tile=\"road_c\" x=\"3240\" y=\"1430\" plane=\"far2\" depth=\"348\"/>";
str = str + "<object tile=\"road_u_r\" x=\"3240\" y=\"1330\" plane=\"far2\" depth=\"349\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3140\" y=\"1330\" plane=\"far2\" depth=\"350\"/>";
str = str + "<object tile=\"road_u2\" x=\"3040\" y=\"1330\" plane=\"far2\" depth=\"351\"/>";
str = str + "<object tile=\"road_lu\" x=\"2940\" y=\"1330\" plane=\"far2\" depth=\"352\"/>";
str = str + "<object tile=\"road_l3\" x=\"2940\" y=\"1430\" plane=\"far2\" depth=\"353\"/>";
str = str + "<object tile=\"road_ld\" x=\"2940\" y=\"1530\" plane=\"far2\" depth=\"354\"/>";
str = str + "<object tile=\"road_d1\" x=\"3040\" y=\"1530\" plane=\"far2\" depth=\"355\"/>";
str = str + "<object tile=\"road_c\" x=\"3040\" y=\"1430\" plane=\"far2\" depth=\"356\"/>";
str = str + "<object tile=\"road_d1\" x=\"3340\" y=\"1530\" plane=\"far2\" depth=\"357\"/>";
str = str + "<object tile=\"road_d1\" x=\"3440\" y=\"1530\" plane=\"far2\" depth=\"358\"/>";
str = str + "<object tile=\"road_d1\" x=\"3540\" y=\"1530\" plane=\"far2\" depth=\"359\"/>";
str = str + "<object tile=\"road_d1\" x=\"3640\" y=\"1530\" plane=\"far2\" depth=\"360\"/>";
str = str + "<object tile=\"road_d1\" x=\"3740\" y=\"1530\" plane=\"far2\" depth=\"361\"/>";
str = str + "<object tile=\"road_rd\" x=\"3840\" y=\"1530\" plane=\"far2\" depth=\"362\"/>";
str = str + "<object tile=\"road_r1\" x=\"3840\" y=\"1430\" plane=\"far2\" depth=\"363\"/>";
str = str + "<object tile=\"road_ru\" x=\"3840\" y=\"1330\" plane=\"far2\" depth=\"364\"/>";
str = str + "<object tile=\"road_u2\" x=\"3740\" y=\"1330\" plane=\"far2\" depth=\"365\"/>";
str = str + "<object tile=\"road_u2\" x=\"3640\" y=\"1330\" plane=\"far2\" depth=\"366\"/>";
str = str + "<object tile=\"road_u2\" x=\"3540\" y=\"1330\" plane=\"far2\" depth=\"367\"/>";
str = str + "<object tile=\"road_u2\" x=\"3440\" y=\"1330\" plane=\"far2\" depth=\"368\"/>";
str = str + "<object tile=\"road_u2\" x=\"3340\" y=\"1330\" plane=\"far2\" depth=\"369\"/>";
str = str + "<object tile=\"road_c\" x=\"3340\" y=\"1430\" plane=\"far2\" depth=\"370\"/>";
str = str + "<object tile=\"road_c\" x=\"3440\" y=\"1430\" plane=\"far2\" depth=\"371\"/>";
str = str + "<object tile=\"road_c\" x=\"3540\" y=\"1430\" plane=\"far2\" depth=\"372\"/>";
str = str + "<object tile=\"road_c\" x=\"3640\" y=\"1430\" plane=\"far2\" depth=\"373\"/>";
str = str + "<object tile=\"road_c\" x=\"3740\" y=\"1430\" plane=\"far2\" depth=\"374\"/>";
str = str + "<object tile=\"road_r1\" x=\"3240\" y=\"1230\" plane=\"far2\" depth=\"375\"/>";
str = str + "<object tile=\"road_l3\" x=\"3140\" y=\"1230\" plane=\"far2\" depth=\"376\"/>";
str = str + "<object tile=\"road_r1\" x=\"3240\" y=\"1130\" plane=\"far2\" depth=\"377\"/>";
str = str + "<object tile=\"road_l3\" x=\"3140\" y=\"1130\" plane=\"far2\" depth=\"378\"/>";
str = str + "<object tile=\"road_d_l\" x=\"3140\" y=\"1030\" plane=\"far2\" depth=\"379\"/>";
str = str + "<object tile=\"road_d_r\" x=\"3240\" y=\"1030\" plane=\"far2\" depth=\"380\"/>";
str = str + "<object tile=\"road_u_r\" x=\"3240\" y=\"930\" plane=\"far2\" depth=\"381\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3140\" y=\"930\" plane=\"far2\" depth=\"382\"/>";
str = str + "<object tile=\"road_ru\" x=\"3240\" y=\"830\" plane=\"far2\" depth=\"383\"/>";
str = str + "<object tile=\"road_lu\" x=\"3140\" y=\"830\" plane=\"far2\" depth=\"384\"/>";
str = str + "<object tile=\"road_rd\" x=\"3340\" y=\"1030\" plane=\"far2\" depth=\"385\"/>";
str = str + "<object tile=\"road_ru\" x=\"3340\" y=\"930\" plane=\"far2\" depth=\"386\"/>";
str = str + "<object tile=\"road_ld\" x=\"3040\" y=\"1030\" plane=\"far2\" depth=\"387\"/>";
str = str + "<object tile=\"road_lu\" x=\"3040\" y=\"930\" plane=\"far2\" depth=\"388\"/>";
str = str + "<object tile=\"road_d1\" x=\"1740\" y=\"2730\" plane=\"far2\" depth=\"389\"/>";
str = str + "<object tile=\"road_u2\" x=\"1740\" y=\"2630\" plane=\"far2\" depth=\"390\"/>";
str = str + "<object tile=\"road_d1\" x=\"1940\" y=\"3030\" plane=\"far2\" depth=\"391\"/>";
str = str + "<object tile=\"road_u2\" x=\"1840\" y=\"2630\" plane=\"far2\" depth=\"392\"/>";
str = str + "<object tile=\"road_u2\" x=\"1940\" y=\"2630\" plane=\"far2\" depth=\"393\"/>";
str = str + "<object tile=\"road_u2\" x=\"2040\" y=\"2630\" plane=\"far2\" depth=\"394\"/>";
str = str + "<object tile=\"road_d1\" x=\"1240\" y=\"3130\" plane=\"far2\" depth=\"395\"/>";
str = str + "<object tile=\"road_d1\" x=\"1540\" y=\"2730\" plane=\"far2\" depth=\"396\"/>";
str = str + "<object tile=\"road_u2\" x=\"1540\" y=\"2630\" plane=\"far2\" depth=\"397\"/>";
str = str + "<object tile=\"road_d1\" x=\"1640\" y=\"2730\" plane=\"far2\" depth=\"398\"/>";
str = str + "<object tile=\"road_u2\" x=\"1640\" y=\"2630\" plane=\"far2\" depth=\"399\"/>";
str = str + "<object tile=\"road_u_r\" x=\"1340\" y=\"2630\" plane=\"far2\" depth=\"400\"/>";
str = str + "<object tile=\"road_u_l\" x=\"1240\" y=\"2430\" plane=\"far2\" depth=\"401\"/>";
str = str + "<object tile=\"road_lu\" x=\"840\" y=\"2430\" plane=\"far2\" depth=\"402\"/>";
str = str + "<object tile=\"road_ld\" x=\"840\" y=\"3130\" plane=\"far2\" depth=\"403\"/>";
str = str + "<object tile=\"road_d1\" x=\"940\" y=\"3130\" plane=\"far2\" depth=\"404\"/>";
str = str + "<object tile=\"road_u2\" x=\"940\" y=\"2430\" plane=\"far2\" depth=\"405\"/>";
str = str + "<object tile=\"road_d1\" x=\"1040\" y=\"3130\" plane=\"far2\" depth=\"406\"/>";
str = str + "<object tile=\"road_u2\" x=\"1040\" y=\"2430\" plane=\"far2\" depth=\"407\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"2530\" plane=\"far2\" depth=\"408\"/>";
str = str + "<object tile=\"road_l3\" x=\"840\" y=\"2530\" plane=\"far2\" depth=\"409\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"2430\" plane=\"far2\" depth=\"410\"/>";
str = str + "<object tile=\"road_l3\" x=\"840\" y=\"2630\" plane=\"far2\" depth=\"411\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"2330\" plane=\"far2\" depth=\"412\"/>";
str = str + "<object tile=\"road_l3\" x=\"1240\" y=\"2330\" plane=\"far2\" depth=\"413\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"2230\" plane=\"far2\" depth=\"414\"/>";
str = str + "<object tile=\"road_l3\" x=\"1240\" y=\"2230\" plane=\"far2\" depth=\"415\"/>";
str = str + "<object tile=\"road_c\" x=\"940\" y=\"2530\" plane=\"far2\" depth=\"416\"/>";
str = str + "<object tile=\"road_c\" x=\"1040\" y=\"2530\" plane=\"far2\" depth=\"417\"/>";
str = str + "<object tile=\"road_c\" x=\"1240\" y=\"2530\" plane=\"far2\" depth=\"418\"/>";
str = str + "<object tile=\"road_c\" x=\"940\" y=\"2630\" plane=\"far2\" depth=\"419\"/>";
str = str + "<object tile=\"road_c\" x=\"1040\" y=\"2630\" plane=\"far2\" depth=\"420\"/>";
str = str + "<object tile=\"road_c\" x=\"1240\" y=\"2630\" plane=\"far2\" depth=\"421\"/>";
str = str + "<object tile=\"road_d_r\" x=\"1440\" y=\"2730\" plane=\"far2\" depth=\"422\"/>";
str = str + "<object tile=\"road_rd\" x=\"1440\" y=\"3130\" plane=\"far2\" depth=\"423\"/>";
str = str + "<object tile=\"road_c\" x=\"940\" y=\"2730\" plane=\"far2\" depth=\"424\"/>";
str = str + "<object tile=\"road_c\" x=\"1040\" y=\"2730\" plane=\"far2\" depth=\"425\"/>";
str = str + "<object tile=\"road_c\" x=\"1240\" y=\"2730\" plane=\"far2\" depth=\"426\"/>";
str = str + "<object tile=\"road_c\" x=\"940\" y=\"2830\" plane=\"far2\" depth=\"427\"/>";
str = str + "<object tile=\"road_c\" x=\"1040\" y=\"2830\" plane=\"far2\" depth=\"428\"/>";
str = str + "<object tile=\"road_c\" x=\"1240\" y=\"2830\" plane=\"far2\" depth=\"429\"/>";
str = str + "<object tile=\"road_l3\" x=\"840\" y=\"2730\" plane=\"far2\" depth=\"430\"/>";
str = str + "<object tile=\"road_l3\" x=\"840\" y=\"2830\" plane=\"far2\" depth=\"431\"/>";
str = str + "<object tile=\"road_r1\" x=\"1440\" y=\"2830\" plane=\"far2\" depth=\"432\"/>";
str = str + "<object tile=\"road_u2\" x=\"1440\" y=\"2630\" plane=\"far2\" depth=\"433\"/>";
str = str + "<object tile=\"road_d1\" x=\"1140\" y=\"3130\" plane=\"far2\" depth=\"434\"/>";
str = str + "<object tile=\"road_u2\" x=\"1140\" y=\"2430\" plane=\"far2\" depth=\"435\"/>";
str = str + "<object tile=\"road_c\" x=\"1140\" y=\"2530\" plane=\"far2\" depth=\"436\"/>";
str = str + "<object tile=\"road_c\" x=\"1140\" y=\"2630\" plane=\"far2\" depth=\"437\"/>";
str = str + "<object tile=\"road_c\" x=\"1140\" y=\"2730\" plane=\"far2\" depth=\"438\"/>";
str = str + "<object tile=\"road_c\" x=\"1140\" y=\"2830\" plane=\"far2\" depth=\"439\"/>";
str = str + "<object tile=\"road_c\" x=\"940\" y=\"2930\" plane=\"far2\" depth=\"440\"/>";
str = str + "<object tile=\"road_c\" x=\"1040\" y=\"2930\" plane=\"far2\" depth=\"441\"/>";
str = str + "<object tile=\"road_c\" x=\"1240\" y=\"2930\" plane=\"far2\" depth=\"442\"/>";
str = str + "<object tile=\"road_r1\" x=\"1440\" y=\"2930\" plane=\"far2\" depth=\"443\"/>";
str = str + "<object tile=\"road_c\" x=\"1140\" y=\"2930\" plane=\"far2\" depth=\"444\"/>";
str = str + "<object tile=\"road_l3\" x=\"840\" y=\"2930\" plane=\"far2\" depth=\"445\"/>";
str = str + "<object tile=\"road_c\" x=\"940\" y=\"3030\" plane=\"far2\" depth=\"446\"/>";
str = str + "<object tile=\"road_c\" x=\"1040\" y=\"3030\" plane=\"far2\" depth=\"447\"/>";
str = str + "<object tile=\"road_c\" x=\"1240\" y=\"3030\" plane=\"far2\" depth=\"448\"/>";
str = str + "<object tile=\"road_r1\" x=\"1440\" y=\"3030\" plane=\"far2\" depth=\"449\"/>";
str = str + "<object tile=\"road_c\" x=\"1140\" y=\"3030\" plane=\"far2\" depth=\"450\"/>";
str = str + "<object tile=\"road_l3\" x=\"840\" y=\"3030\" plane=\"far2\" depth=\"451\"/>";
str = str + "<object tile=\"road_c\" x=\"1340\" y=\"2730\" plane=\"far2\" depth=\"452\"/>";
str = str + "<object tile=\"road_c\" x=\"1340\" y=\"2830\" plane=\"far2\" depth=\"453\"/>";
str = str + "<object tile=\"road_c\" x=\"1340\" y=\"2930\" plane=\"far2\" depth=\"454\"/>";
str = str + "<object tile=\"road_c\" x=\"1340\" y=\"3030\" plane=\"far2\" depth=\"455\"/>";
str = str + "<object tile=\"road_d1\" x=\"1340\" y=\"3130\" plane=\"far2\" depth=\"456\"/>";
str = str + "<object tile=\"road_d_l\" x=\"1840\" y=\"2730\" plane=\"far2\" depth=\"457\"/>";
str = str + "<object tile=\"road_d_r\" x=\"2040\" y=\"2730\" plane=\"far2\" depth=\"458\"/>";
str = str + "<object tile=\"road_l3\" x=\"1840\" y=\"2830\" plane=\"far2\" depth=\"459\"/>";
str = str + "<object tile=\"road_r1\" x=\"2040\" y=\"2830\" plane=\"far2\" depth=\"460\"/>";
str = str + "<object tile=\"road_r1\" x=\"2040\" y=\"2930\" plane=\"far2\" depth=\"461\"/>";
str = str + "<object tile=\"road_l3\" x=\"1840\" y=\"2930\" plane=\"far2\" depth=\"462\"/>";
str = str + "<object tile=\"road_c\" x=\"1940\" y=\"2930\" plane=\"far2\" depth=\"463\"/>";
str = str + "<object tile=\"road_c\" x=\"1940\" y=\"2830\" plane=\"far2\" depth=\"464\"/>";
str = str + "<object tile=\"road_c\" x=\"1940\" y=\"2730\" plane=\"far2\" depth=\"465\"/>";
str = str + "<object tile=\"road_rd\" x=\"2040\" y=\"3030\" plane=\"far2\" depth=\"466\"/>";
str = str + "<object tile=\"road_ld\" x=\"1840\" y=\"3030\" plane=\"far2\" depth=\"467\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"2130\" plane=\"far2\" depth=\"468\"/>";
str = str + "<object tile=\"road_l3\" x=\"1240\" y=\"1930\" plane=\"far2\" depth=\"469\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"2030\" plane=\"far2\" depth=\"470\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"1930\" plane=\"far2\" depth=\"471\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"1830\" plane=\"far2\" depth=\"472\"/>";
str = str + "<object tile=\"road_l3\" x=\"1240\" y=\"1830\" plane=\"far2\" depth=\"473\"/>";
str = str + "<object tile=\"road_r1\" x=\"1540\" y=\"1630\" plane=\"far2\" depth=\"474\"/>";
str = str + "<object tile=\"road_r1\" x=\"1540\" y=\"1530\" plane=\"far2\" depth=\"475\"/>";
str = str + "<object tile=\"road_l3\" x=\"1240\" y=\"1530\" plane=\"far2\" depth=\"476\"/>";
str = str + "<object tile=\"road_l3\" x=\"1240\" y=\"1430\" plane=\"far2\" depth=\"477\"/>";
str = str + "<object tile=\"road_l3\" x=\"1240\" y=\"1330\" plane=\"far2\" depth=\"478\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"1030\" plane=\"far2\" depth=\"479\"/>";
str = str + "<object tile=\"road_l3\" x=\"1240\" y=\"1030\" plane=\"far2\" depth=\"480\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"930\" plane=\"far2\" depth=\"481\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"830\" plane=\"far2\" depth=\"482\"/>";
str = str + "<object tile=\"road_ru\" x=\"1340\" y=\"730\" plane=\"far2\" depth=\"483\"/>";
str = str + "<object tile=\"road_d_r\" x=\"1340\" y=\"1730\" plane=\"far2\" depth=\"484\"/>";
str = str + "<object tile=\"road_u_r\" x=\"1340\" y=\"1130\" plane=\"far2\" depth=\"485\"/>";
str = str + "<object tile=\"road_u_l\" x=\"1240\" y=\"2030\" plane=\"far2\" depth=\"486\"/>";
str = str + "<object tile=\"road_d_l\" x=\"1240\" y=\"2130\" plane=\"far2\" depth=\"487\"/>";
str = str + "<object tile=\"road_u2\" x=\"940\" y=\"2030\" plane=\"far2\" depth=\"488\"/>";
str = str + "<object tile=\"road_d1\" x=\"940\" y=\"2130\" plane=\"far2\" depth=\"489\"/>";
str = str + "<object tile=\"road_lu\" x=\"840\" y=\"2030\" plane=\"far2\" depth=\"490\"/>";
str = str + "<object tile=\"road_ld\" x=\"840\" y=\"2130\" plane=\"far2\" depth=\"491\"/>";
str = str + "<object tile=\"road_u2\" x=\"1140\" y=\"2030\" plane=\"far2\" depth=\"492\"/>";
str = str + "<object tile=\"road_d1\" x=\"1140\" y=\"2130\" plane=\"far2\" depth=\"493\"/>";
str = str + "<object tile=\"road_u2\" x=\"1040\" y=\"2030\" plane=\"far2\" depth=\"494\"/>";
str = str + "<object tile=\"road_d1\" x=\"1040\" y=\"2130\" plane=\"far2\" depth=\"495\"/>";
str = str + "<object tile=\"road_d_l\" x=\"1240\" y=\"1730\" plane=\"far2\" depth=\"496\"/>";
str = str + "<object tile=\"road_u_l\" x=\"1240\" y=\"1630\" plane=\"far2\" depth=\"497\"/>";
str = str + "<object tile=\"road_d1\" x=\"1140\" y=\"1730\" plane=\"far2\" depth=\"498\"/>";
str = str + "<object tile=\"road_u2\" x=\"1140\" y=\"1630\" plane=\"far2\" depth=\"499\"/>";
str = str + "<object tile=\"road_d1\" x=\"1040\" y=\"1730\" plane=\"far2\" depth=\"500\"/>";
str = str + "<object tile=\"road_u2\" x=\"1040\" y=\"1630\" plane=\"far2\" depth=\"501\"/>";
str = str + "<object tile=\"road_d1\" x=\"940\" y=\"1730\" plane=\"far2\" depth=\"502\"/>";
str = str + "<object tile=\"road_u2\" x=\"940\" y=\"1630\" plane=\"far2\" depth=\"503\"/>";
str = str + "<object tile=\"road_ld\" x=\"840\" y=\"1730\" plane=\"far2\" depth=\"504\"/>";
str = str + "<object tile=\"road_lu\" x=\"840\" y=\"1630\" plane=\"far2\" depth=\"505\"/>";
str = str + "<object tile=\"road_d_l\" x=\"1240\" y=\"830\" plane=\"far2\" depth=\"506\"/>";
str = str + "<object tile=\"road_d1\" x=\"1140\" y=\"830\" plane=\"far2\" depth=\"507\"/>";
str = str + "<object tile=\"road_u2\" x=\"1140\" y=\"730\" plane=\"far2\" depth=\"508\"/>";
str = str + "<object tile=\"road_d1\" x=\"1040\" y=\"830\" plane=\"far2\" depth=\"509\"/>";
str = str + "<object tile=\"road_u2\" x=\"1040\" y=\"730\" plane=\"far2\" depth=\"510\"/>";
str = str + "<object tile=\"road_d1\" x=\"940\" y=\"830\" plane=\"far2\" depth=\"511\"/>";
str = str + "<object tile=\"road_u2\" x=\"940\" y=\"730\" plane=\"far2\" depth=\"512\"/>";
str = str + "<object tile=\"road_ld\" x=\"840\" y=\"830\" plane=\"far2\" depth=\"513\"/>";
str = str + "<object tile=\"road_lu\" x=\"840\" y=\"730\" plane=\"far2\" depth=\"514\"/>";
str = str + "<object tile=\"road_d_l\" x=\"1240\" y=\"1230\" plane=\"far2\" depth=\"515\"/>";
str = str + "<object tile=\"road_u_l\" x=\"1240\" y=\"1130\" plane=\"far2\" depth=\"516\"/>";
str = str + "<object tile=\"road_d1\" x=\"1140\" y=\"1230\" plane=\"far2\" depth=\"517\"/>";
str = str + "<object tile=\"road_u2\" x=\"1140\" y=\"1130\" plane=\"far2\" depth=\"518\"/>";
str = str + "<object tile=\"road_d1\" x=\"1040\" y=\"1230\" plane=\"far2\" depth=\"519\"/>";
str = str + "<object tile=\"road_u2\" x=\"1040\" y=\"1130\" plane=\"far2\" depth=\"520\"/>";
str = str + "<object tile=\"road_ld\" x=\"940\" y=\"1230\" plane=\"far2\" depth=\"521\"/>";
str = str + "<object tile=\"road_lu\" x=\"940\" y=\"1130\" plane=\"far2\" depth=\"522\"/>";
str = str + "<object tile=\"road_u2\" x=\"1240\" y=\"730\" plane=\"far2\" depth=\"523\"/>";
str = str + "<object tile=\"road_l3\" x=\"1240\" y=\"930\" plane=\"far2\" depth=\"524\"/>";
str = str + "<object tile=\"road_d1\" x=\"1440\" y=\"1730\" plane=\"far2\" depth=\"525\"/>";
str = str + "<object tile=\"road_rd\" x=\"1540\" y=\"1730\" plane=\"far2\" depth=\"526\"/>";
str = str + "<object tile=\"road_ru\" x=\"1540\" y=\"1130\" plane=\"far2\" depth=\"527\"/>";
str = str + "<object tile=\"road_u2\" x=\"1440\" y=\"1130\" plane=\"far2\" depth=\"528\"/>";
str = str + "<object tile=\"road_d_r\" x=\"1540\" y=\"1430\" plane=\"far2\" depth=\"529\"/>";
str = str + "<object tile=\"road_u_r\" x=\"1540\" y=\"1330\" plane=\"far2\" depth=\"530\"/>";
str = str + "<object tile=\"road_r1\" x=\"1540\" y=\"1230\" plane=\"far2\" depth=\"531\"/>";
str = str + "<object tile=\"road_c\" x=\"1340\" y=\"1230\" plane=\"far2\" depth=\"532\"/>";
str = str + "<object tile=\"road_c\" x=\"1440\" y=\"1230\" plane=\"far2\" depth=\"533\"/>";
str = str + "<object tile=\"road_c\" x=\"1340\" y=\"1330\" plane=\"far2\" depth=\"534\"/>";
str = str + "<object tile=\"road_c\" x=\"1440\" y=\"1330\" plane=\"far2\" depth=\"535\"/>";
str = str + "<object tile=\"road_c\" x=\"1340\" y=\"1430\" plane=\"far2\" depth=\"536\"/>";
str = str + "<object tile=\"road_c\" x=\"1440\" y=\"1430\" plane=\"far2\" depth=\"537\"/>";
str = str + "<object tile=\"road_c\" x=\"1340\" y=\"1530\" plane=\"far2\" depth=\"538\"/>";
str = str + "<object tile=\"road_c\" x=\"1440\" y=\"1530\" plane=\"far2\" depth=\"539\"/>";
str = str + "<object tile=\"road_c\" x=\"1340\" y=\"1630\" plane=\"far2\" depth=\"540\"/>";
str = str + "<object tile=\"road_c\" x=\"1440\" y=\"1630\" plane=\"far2\" depth=\"541\"/>";
str = str + "<object tile=\"road_d1\" x=\"1840\" y=\"1430\" plane=\"far2\" depth=\"542\"/>";
str = str + "<object tile=\"road_u2\" x=\"1840\" y=\"1330\" plane=\"far2\" depth=\"543\"/>";
str = str + "<object tile=\"road_u2\" x=\"2140\" y=\"1330\" plane=\"far2\" depth=\"544\"/>";
str = str + "<object tile=\"road_u2\" x=\"2240\" y=\"1330\" plane=\"far2\" depth=\"545\"/>";
str = str + "<object tile=\"road_d1\" x=\"1940\" y=\"1430\" plane=\"far2\" depth=\"546\"/>";
str = str + "<object tile=\"road_u2\" x=\"1940\" y=\"1330\" plane=\"far2\" depth=\"547\"/>";
str = str + "<object tile=\"road_d1\" x=\"2040\" y=\"1430\" plane=\"far2\" depth=\"548\"/>";
str = str + "<object tile=\"road_u2\" x=\"2040\" y=\"1330\" plane=\"far2\" depth=\"549\"/>";
str = str + "<object tile=\"road_d1\" x=\"2340\" y=\"1430\" plane=\"far2\" depth=\"550\"/>";
str = str + "<object tile=\"road_u2\" x=\"2340\" y=\"1330\" plane=\"far2\" depth=\"551\"/>";
str = str + "<object tile=\"road_d1\" x=\"2440\" y=\"1430\" plane=\"far2\" depth=\"552\"/>";
str = str + "<object tile=\"road_u2\" x=\"2440\" y=\"1330\" plane=\"far2\" depth=\"553\"/>";
str = str + "<object tile=\"road_r1\" x=\"2740\" y=\"1230\" plane=\"far2\" depth=\"554\"/>";
str = str + "<object tile=\"road_l3\" x=\"2640\" y=\"1230\" plane=\"far2\" depth=\"555\"/>";
str = str + "<object tile=\"road_d1\" x=\"2540\" y=\"1430\" plane=\"far2\" depth=\"556\"/>";
str = str + "<object tile=\"road_u2\" x=\"2540\" y=\"1330\" plane=\"far2\" depth=\"557\"/>";
str = str + "<object tile=\"road_d1\" x=\"2640\" y=\"1430\" plane=\"far2\" depth=\"558\"/>";
str = str + "<object tile=\"road_u_l\" x=\"2640\" y=\"1330\" plane=\"far2\" depth=\"559\"/>";
str = str + "<object tile=\"road_r1\" x=\"2740\" y=\"1330\" plane=\"far2\" depth=\"560\"/>";
str = str + "<object tile=\"road_rd\" x=\"2740\" y=\"1430\" plane=\"far2\" depth=\"561\"/>";
str = str + "<object tile=\"road_r1\" x=\"2740\" y=\"1030\" plane=\"far2\" depth=\"562\"/>";
str = str + "<object tile=\"road_l3\" x=\"2640\" y=\"1030\" plane=\"far2\" depth=\"563\"/>";
str = str + "<object tile=\"road_d_l\" x=\"2640\" y=\"930\" plane=\"far2\" depth=\"564\"/>";
str = str + "<object tile=\"road_d1\" x=\"1840\" y=\"930\" plane=\"far2\" depth=\"565\"/>";
str = str + "<object tile=\"road_u2\" x=\"1840\" y=\"830\" plane=\"far2\" depth=\"566\"/>";
str = str + "<object tile=\"road_d1\" x=\"1940\" y=\"930\" plane=\"far2\" depth=\"567\"/>";
str = str + "<object tile=\"road_u2\" x=\"1940\" y=\"830\" plane=\"far2\" depth=\"568\"/>";
str = str + "<object tile=\"road_u2\" x=\"2640\" y=\"830\" plane=\"far2\" depth=\"569\"/>";
str = str + "<object tile=\"road_r1\" x=\"2740\" y=\"1130\" plane=\"far2\" depth=\"570\"/>";
str = str + "<object tile=\"road_l3\" x=\"2640\" y=\"1130\" plane=\"far2\" depth=\"571\"/>";
str = str + "<object tile=\"road_d1\" x=\"2140\" y=\"930\" plane=\"far2\" depth=\"572\"/>";
str = str + "<object tile=\"road_u2\" x=\"2140\" y=\"830\" plane=\"far2\" depth=\"573\"/>";
str = str + "<object tile=\"road_d1\" x=\"2240\" y=\"930\" plane=\"far2\" depth=\"574\"/>";
str = str + "<object tile=\"road_u2\" x=\"2240\" y=\"830\" plane=\"far2\" depth=\"575\"/>";
str = str + "<object tile=\"road_d1\" x=\"2040\" y=\"930\" plane=\"far2\" depth=\"576\"/>";
str = str + "<object tile=\"road_u2\" x=\"2040\" y=\"830\" plane=\"far2\" depth=\"577\"/>";
str = str + "<object tile=\"road_d1\" x=\"2340\" y=\"930\" plane=\"far2\" depth=\"578\"/>";
str = str + "<object tile=\"road_u2\" x=\"2340\" y=\"830\" plane=\"far2\" depth=\"579\"/>";
str = str + "<object tile=\"road_d1\" x=\"2440\" y=\"930\" plane=\"far2\" depth=\"580\"/>";
str = str + "<object tile=\"road_u2\" x=\"2440\" y=\"830\" plane=\"far2\" depth=\"581\"/>";
str = str + "<object tile=\"road_d1\" x=\"2540\" y=\"930\" plane=\"far2\" depth=\"582\"/>";
str = str + "<object tile=\"road_u2\" x=\"2540\" y=\"830\" plane=\"far2\" depth=\"583\"/>";
str = str + "<object tile=\"road_r1\" x=\"2740\" y=\"930\" plane=\"far2\" depth=\"584\"/>";
str = str + "<object tile=\"road_ru\" x=\"2740\" y=\"830\" plane=\"far2\" depth=\"585\"/>";
str = str + "<object tile=\"road_d_l\" x=\"2140\" y=\"1430\" plane=\"far2\" depth=\"586\"/>";
str = str + "<object tile=\"road_d_r\" x=\"2240\" y=\"1430\" plane=\"far2\" depth=\"587\"/>";
str = str + "<object tile=\"road_ld\" x=\"1740\" y=\"930\" plane=\"far2\" depth=\"588\"/>";
str = str + "<object tile=\"road_lu\" x=\"1740\" y=\"830\" plane=\"far2\" depth=\"589\"/>";
str = str + "<object tile=\"road_u2\" x=\"1640\" y=\"1330\" plane=\"far2\" depth=\"590\"/>";
str = str + "<object tile=\"road_u2\" x=\"1740\" y=\"1330\" plane=\"far2\" depth=\"591\"/>";
str = str + "<object tile=\"road_d1\" x=\"1640\" y=\"1430\" plane=\"far2\" depth=\"592\"/>";
str = str + "<object tile=\"road_d1\" x=\"1740\" y=\"1430\" plane=\"far2\" depth=\"593\"/>";
str = str + "<object tile=\"road_l3\" x=\"2140\" y=\"1530\" plane=\"far2\" depth=\"594\"/>";
str = str + "<object tile=\"road_r1\" x=\"2240\" y=\"1530\" plane=\"far2\" depth=\"595\"/>";
str = str + "<object tile=\"road_u_r\" x=\"2240\" y=\"1630\" plane=\"far2\" depth=\"596\"/>";
str = str + "<object tile=\"road_u_l\" x=\"2140\" y=\"1630\" plane=\"far2\" depth=\"597\"/>";
str = str + "<object tile=\"road_r1\" x=\"2440\" y=\"1730\" plane=\"far2\" depth=\"598\"/>";
str = str + "<object tile=\"road_r1\" x=\"2440\" y=\"1830\" plane=\"far2\" depth=\"599\"/>";
str = str + "<object tile=\"road_u2\" x=\"2040\" y=\"1630\" plane=\"far2\" depth=\"600\"/>";
str = str + "<object tile=\"road_d1\" x=\"2340\" y=\"1930\" plane=\"far2\" depth=\"601\"/>";
str = str + "<object tile=\"road_d1\" x=\"2240\" y=\"1930\" plane=\"far2\" depth=\"602\"/>";
str = str + "<object tile=\"road_c\" x=\"2240\" y=\"1730\" plane=\"far2\" depth=\"603\"/>";
str = str + "<object tile=\"road_c\" x=\"2140\" y=\"1730\" plane=\"far2\" depth=\"604\"/>";
str = str + "<object tile=\"road_c\" x=\"2040\" y=\"1830\" plane=\"far2\" depth=\"605\"/>";
str = str + "<object tile=\"road_c\" x=\"2240\" y=\"1830\" plane=\"far2\" depth=\"606\"/>";
str = str + "<object tile=\"road_c\" x=\"2140\" y=\"1830\" plane=\"far2\" depth=\"607\"/>";
str = str + "<object tile=\"road_c\" x=\"2040\" y=\"1730\" plane=\"far2\" depth=\"608\"/>";
str = str + "<object tile=\"road_c\" x=\"2340\" y=\"1830\" plane=\"far2\" depth=\"609\"/>";
str = str + "<object tile=\"road_c\" x=\"2340\" y=\"1730\" plane=\"far2\" depth=\"610\"/>";
str = str + "<object tile=\"road_ru\" x=\"2440\" y=\"1630\" plane=\"far2\" depth=\"611\"/>";
str = str + "<object tile=\"road_rd\" x=\"2440\" y=\"1930\" plane=\"far2\" depth=\"612\"/>";
str = str + "<object tile=\"road_lu\" x=\"1940\" y=\"1630\" plane=\"far2\" depth=\"613\"/>";
str = str + "<object tile=\"road_l3\" x=\"1940\" y=\"1730\" plane=\"far2\" depth=\"614\"/>";
str = str + "<object tile=\"road_l3\" x=\"1940\" y=\"1830\" plane=\"far2\" depth=\"615\"/>";
str = str + "<object tile=\"road_ld\" x=\"1940\" y=\"1930\" plane=\"far2\" depth=\"616\"/>";
str = str + "<object tile=\"road_u2\" x=\"2340\" y=\"1630\" plane=\"far2\" depth=\"617\"/>";
str = str + "<object tile=\"road_d1\" x=\"2040\" y=\"1930\" plane=\"far2\" depth=\"618\"/>";
str = str + "<object tile=\"road_d1\" x=\"2140\" y=\"1930\" plane=\"far2\" depth=\"619\"/>";
str = str + "<object tile=\"road_d_l\" x=\"3940\" y=\"3130\" plane=\"far2\" depth=\"620\"/>";
str = str + "<object tile=\"road_d_r\" x=\"4040\" y=\"3130\" plane=\"far2\" depth=\"621\"/>";
str = str + "<object tile=\"road_u2\" x=\"3940\" y=\"3030\" plane=\"far2\" depth=\"622\"/>";
str = str + "<object tile=\"road_u2\" x=\"4040\" y=\"3030\" plane=\"far2\" depth=\"623\"/>";
str = str + "<object tile=\"road_rd\" x=\"4140\" y=\"3130\" plane=\"far2\" depth=\"624\"/>";
str = str + "<object tile=\"road_ru\" x=\"4140\" y=\"3030\" plane=\"far2\" depth=\"625\"/>";
str = str + "<object tile=\"road_d_l\" x=\"3340\" y=\"2730\" plane=\"far2\" depth=\"626\"/>";
str = str + "<object tile=\"road_ru\" x=\"3440\" y=\"2630\" plane=\"far2\" depth=\"627\"/>";
str = str + "<object tile=\"road_u2\" x=\"3240\" y=\"2630\" plane=\"far2\" depth=\"628\"/>";
str = str + "<object tile=\"road_r1\" x=\"3440\" y=\"2730\" plane=\"far2\" depth=\"629\"/>";
str = str + "<object tile=\"road_l3\" x=\"3340\" y=\"2930\" plane=\"far2\" depth=\"630\"/>";
str = str + "<object tile=\"road_d1\" x=\"3240\" y=\"2730\" plane=\"far2\" depth=\"631\"/>";
str = str + "<object tile=\"road_u2\" x=\"3340\" y=\"2630\" plane=\"far2\" depth=\"632\"/>";
str = str + "<object tile=\"road_l3\" x=\"3340\" y=\"2830\" plane=\"far2\" depth=\"633\"/>";
str = str + "<object tile=\"road_r1\" x=\"3440\" y=\"2830\" plane=\"far2\" depth=\"634\"/>";
str = str + "<object tile=\"road_u2\" x=\"3840\" y=\"3030\" plane=\"far2\" depth=\"635\"/>";
str = str + "<object tile=\"road_d1\" x=\"3840\" y=\"3130\" plane=\"far2\" depth=\"636\"/>";
str = str + "<object tile=\"road_d1\" x=\"3740\" y=\"3130\" plane=\"far2\" depth=\"637\"/>";
str = str + "<object tile=\"road_u2\" x=\"3740\" y=\"3030\" plane=\"far2\" depth=\"638\"/>";
str = str + "<object tile=\"road_d1\" x=\"3640\" y=\"3130\" plane=\"far2\" depth=\"639\"/>";
str = str + "<object tile=\"road_d1\" x=\"3540\" y=\"3130\" plane=\"far2\" depth=\"640\"/>";
str = str + "<object tile=\"road_u_r\" x=\"3640\" y=\"3030\" plane=\"far2\" depth=\"641\"/>";
str = str + "<object tile=\"road_d1\" x=\"3440\" y=\"3130\" plane=\"far2\" depth=\"642\"/>";
str = str + "<object tile=\"road_l3\" x=\"3340\" y=\"3030\" plane=\"far2\" depth=\"643\"/>";
str = str + "<object tile=\"road_ld\" x=\"3340\" y=\"3130\" plane=\"far2\" depth=\"644\"/>";
str = str + "<object tile=\"road_u_r\" x=\"3440\" y=\"2930\" plane=\"far2\" depth=\"645\"/>";
str = str + "<object tile=\"road_c\" x=\"3440\" y=\"3030\" plane=\"far2\" depth=\"646\"/>";
str = str + "<object tile=\"road_c\" x=\"3540\" y=\"3030\" plane=\"far2\" depth=\"647\"/>";
str = str + "<object tile=\"road_u2\" x=\"3540\" y=\"2930\" plane=\"far2\" depth=\"648\"/>";
str = str + "<object tile=\"road_ru\" x=\"3640\" y=\"2930\" plane=\"far2\" depth=\"649\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3500\" y=\"620\" plane=\"far\" depth=\"650\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3430\" y=\"620\" plane=\"far\" depth=\"651\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3360\" y=\"620\" plane=\"far\" depth=\"652\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3290\" y=\"620\" plane=\"far\" depth=\"653\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3220\" y=\"620\" plane=\"far\" depth=\"654\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3150\" y=\"620\" plane=\"far\" depth=\"655\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3080\" y=\"620\" plane=\"far\" depth=\"656\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3010\" y=\"620\" plane=\"far\" depth=\"657\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2940\" y=\"620\" plane=\"far\" depth=\"658\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2870\" y=\"620\" plane=\"far\" depth=\"659\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2800\" y=\"620\" plane=\"far\" depth=\"660\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2730\" y=\"620\" plane=\"far\" depth=\"661\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2660\" y=\"620\" plane=\"far\" depth=\"662\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2590\" y=\"620\" plane=\"far\" depth=\"663\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2520\" y=\"620\" plane=\"far\" depth=\"664\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2450\" y=\"620\" plane=\"far\" depth=\"665\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2380\" y=\"620\" plane=\"far\" depth=\"666\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2310\" y=\"620\" plane=\"far\" depth=\"667\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2240\" y=\"620\" plane=\"far\" depth=\"668\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2170\" y=\"620\" plane=\"far\" depth=\"669\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2100\" y=\"620\" plane=\"far\" depth=\"670\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2030\" y=\"620\" plane=\"far\" depth=\"671\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1960\" y=\"620\" plane=\"far\" depth=\"672\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1890\" y=\"620\" plane=\"far\" depth=\"673\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1820\" y=\"620\" plane=\"far\" depth=\"674\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1750\" y=\"620\" plane=\"far\" depth=\"675\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1680\" y=\"620\" plane=\"far\" depth=\"676\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1610\" y=\"620\" plane=\"far\" depth=\"677\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1540\" y=\"620\" plane=\"far\" depth=\"678\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1470\" y=\"620\" plane=\"far\" depth=\"679\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1400\" y=\"620\" plane=\"far\" depth=\"680\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1330\" y=\"620\" plane=\"far\" depth=\"681\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1260\" y=\"620\" plane=\"far\" depth=\"682\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1190\" y=\"620\" plane=\"far\" depth=\"683\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1120\" y=\"620\" plane=\"far\" depth=\"684\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1050\" y=\"620\" plane=\"far\" depth=\"685\"/>";
str = str + "<object tile=\"wall_big2\" x=\"980\" y=\"620\" plane=\"far\" depth=\"686\"/>";
str = str + "<object tile=\"wall_big2\" x=\"910\" y=\"620\" plane=\"far\" depth=\"687\"/>";
str = str + "<object tile=\"wall_big2\" x=\"840\" y=\"620\" plane=\"far\" depth=\"688\"/>";
str = str + "<object tile=\"wall_big2\" x=\"770\" y=\"620\" plane=\"far\" depth=\"689\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"640\" plane=\"far\" depth=\"690\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"710\" plane=\"far\" depth=\"691\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"780\" plane=\"far\" depth=\"692\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"850\" plane=\"far\" depth=\"693\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"920\" plane=\"far\" depth=\"694\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"990\" plane=\"far\" depth=\"695\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1060\" plane=\"far\" depth=\"696\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1130\" plane=\"far\" depth=\"697\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1200\" plane=\"far\" depth=\"698\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1270\" plane=\"far\" depth=\"699\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1340\" plane=\"far\" depth=\"700\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1410\" plane=\"far\" depth=\"701\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1480\" plane=\"far\" depth=\"702\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1550\" plane=\"far\" depth=\"703\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1620\" plane=\"far\" depth=\"704\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1690\" plane=\"far\" depth=\"705\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1760\" plane=\"far\" depth=\"706\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1830\" plane=\"far\" depth=\"707\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1900\" plane=\"far\" depth=\"708\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1970\" plane=\"far\" depth=\"709\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2040\" plane=\"far\" depth=\"710\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2110\" plane=\"far\" depth=\"711\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2180\" plane=\"far\" depth=\"712\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2250\" plane=\"far\" depth=\"713\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2320\" plane=\"far\" depth=\"714\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2390\" plane=\"far\" depth=\"715\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2460\" plane=\"far\" depth=\"716\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2530\" plane=\"far\" depth=\"717\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2600\" plane=\"far\" depth=\"718\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2670\" plane=\"far\" depth=\"719\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2740\" plane=\"far\" depth=\"720\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2810\" plane=\"far\" depth=\"721\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2880\" plane=\"far\" depth=\"722\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2950\" plane=\"far\" depth=\"723\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"3020\" plane=\"far\" depth=\"724\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"3090\" plane=\"far\" depth=\"725\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"640\" plane=\"far\" depth=\"726\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"710\" plane=\"far\" depth=\"727\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"780\" plane=\"far\" depth=\"728\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"850\" plane=\"far\" depth=\"729\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"920\" plane=\"far\" depth=\"730\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"990\" plane=\"far\" depth=\"731\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1060\" plane=\"far\" depth=\"732\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1130\" plane=\"far\" depth=\"733\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1200\" plane=\"far\" depth=\"734\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1670\" y=\"1260\" plane=\"far\" depth=\"735\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1740\" y=\"1260\" plane=\"far\" depth=\"736\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1810\" y=\"1260\" plane=\"far\" depth=\"737\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1280\" plane=\"far\" depth=\"738\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1490\" plane=\"far\" depth=\"739\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1670\" y=\"1550\" plane=\"far\" depth=\"740\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1740\" y=\"1550\" plane=\"far\" depth=\"741\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1850\" y=\"1280\" plane=\"far\" depth=\"742\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1850\" y=\"1490\" plane=\"far\" depth=\"743\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1810\" y=\"1550\" plane=\"far\" depth=\"744\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1880\" y=\"1550\" plane=\"far\" depth=\"745\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1570\" plane=\"far\" depth=\"746\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1640\" plane=\"far\" depth=\"747\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1710\" plane=\"far\" depth=\"748\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1780\" plane=\"far\" depth=\"749\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1850\" plane=\"far\" depth=\"750\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1920\" plane=\"far\" depth=\"751\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1990\" plane=\"far\" depth=\"752\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"2060\" plane=\"far\" depth=\"753\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"2130\" plane=\"far\" depth=\"754\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3540\" y=\"640\" plane=\"far\" depth=\"755\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3540\" y=\"710\" plane=\"far\" depth=\"756\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3540\" y=\"780\" plane=\"far\" depth=\"757\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3540\" y=\"850\" plane=\"far\" depth=\"758\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3540\" y=\"920\" plane=\"far\" depth=\"759\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3540\" y=\"990\" plane=\"far\" depth=\"760\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3540\" y=\"1060\" plane=\"far\" depth=\"761\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3540\" y=\"1130\" plane=\"far\" depth=\"762\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2900\" y=\"640\" plane=\"far\" depth=\"763\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2900\" y=\"710\" plane=\"far\" depth=\"764\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2900\" y=\"780\" plane=\"far\" depth=\"765\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2900\" y=\"850\" plane=\"far\" depth=\"766\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2900\" y=\"920\" plane=\"far\" depth=\"767\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2900\" y=\"990\" plane=\"far\" depth=\"768\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2900\" y=\"1060\" plane=\"far\" depth=\"769\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2900\" y=\"1130\" plane=\"far\" depth=\"770\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3530\" y=\"1190\" plane=\"far\" depth=\"771\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3460\" y=\"1190\" plane=\"far\" depth=\"772\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3390\" y=\"1190\" plane=\"far\" depth=\"773\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3320\" y=\"1190\" plane=\"far\" depth=\"774\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3050\" y=\"1190\" plane=\"far\" depth=\"775\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2980\" y=\"1190\" plane=\"far\" depth=\"776\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2910\" y=\"1190\" plane=\"far\" depth=\"777\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2900\" y=\"1210\" plane=\"far\" depth=\"778\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2900\" y=\"1280\" plane=\"far\" depth=\"779\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2900\" y=\"1350\" plane=\"far\" depth=\"780\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2900\" y=\"1420\" plane=\"far\" depth=\"781\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2900\" y=\"1490\" plane=\"far\" depth=\"782\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2789\" y=\"1550\" plane=\"far\" depth=\"783\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2719\" y=\"1550\" plane=\"far\" depth=\"784\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2649\" y=\"1550\" plane=\"far\" depth=\"785\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2579\" y=\"1550\" plane=\"far\" depth=\"786\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2510\" y=\"1550\" plane=\"far\" depth=\"787\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2440\" y=\"1550\" plane=\"far\" depth=\"788\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2369\" y=\"1550\" plane=\"far\" depth=\"789\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2300\" y=\"1550\" plane=\"far\" depth=\"790\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2089\" y=\"1550\" plane=\"far\" depth=\"791\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2019\" y=\"1550\" plane=\"far\" depth=\"792\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1949\" y=\"1550\" plane=\"far\" depth=\"793\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2860\" y=\"1550\" plane=\"far\" depth=\"794\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2690\" y=\"1570\" plane=\"far\" depth=\"795\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2690\" y=\"1640\" plane=\"far\" depth=\"796\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2690\" y=\"1710\" plane=\"far\" depth=\"797\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2690\" y=\"1780\" plane=\"far\" depth=\"798\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2690\" y=\"1850\" plane=\"far\" depth=\"799\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2690\" y=\"1920\" plane=\"far\" depth=\"800\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2690\" y=\"1980\" plane=\"far\" depth=\"801\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2690\" y=\"2050\" plane=\"far\" depth=\"802\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2690\" y=\"2120\" plane=\"far\" depth=\"803\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2650\" y=\"2190\" plane=\"far\" depth=\"804\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2580\" y=\"2190\" plane=\"far\" depth=\"805\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2510\" y=\"2190\" plane=\"far\" depth=\"806\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2440\" y=\"2190\" plane=\"far\" depth=\"807\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2370\" y=\"2190\" plane=\"far\" depth=\"808\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2300\" y=\"2190\" plane=\"far\" depth=\"809\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2230\" y=\"2190\" plane=\"far\" depth=\"810\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2160\" y=\"2190\" plane=\"far\" depth=\"811\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2090\" y=\"2190\" plane=\"far\" depth=\"812\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2020\" y=\"2190\" plane=\"far\" depth=\"813\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1950\" y=\"2190\" plane=\"far\" depth=\"814\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1880\" y=\"2190\" plane=\"far\" depth=\"815\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1810\" y=\"2190\" plane=\"far\" depth=\"816\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1740\" y=\"2190\" plane=\"far\" depth=\"817\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1670\" y=\"2190\" plane=\"far\" depth=\"818\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"2210\" plane=\"far\" depth=\"819\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"2280\" plane=\"far\" depth=\"820\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"2350\" plane=\"far\" depth=\"821\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"2810\" plane=\"far\" depth=\"822\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"2880\" plane=\"far\" depth=\"823\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"2950\" plane=\"far\" depth=\"824\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"3020\" plane=\"far\" depth=\"825\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"3090\" plane=\"far\" depth=\"826\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2929\" y=\"2190\" plane=\"far\" depth=\"827\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2860\" y=\"2190\" plane=\"far\" depth=\"828\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2790\" y=\"2190\" plane=\"far\" depth=\"829\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2719\" y=\"2190\" plane=\"far\" depth=\"830\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3879\" y=\"1190\" plane=\"far\" depth=\"831\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3809\" y=\"1190\" plane=\"far\" depth=\"832\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3740\" y=\"1190\" plane=\"far\" depth=\"833\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3670\" y=\"1190\" plane=\"far\" depth=\"834\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3599\" y=\"1190\" plane=\"far\" depth=\"835\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1210\" plane=\"far\" depth=\"836\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1280\" plane=\"far\" depth=\"837\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1350\" plane=\"far\" depth=\"838\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1420\" plane=\"far\" depth=\"839\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1490\" plane=\"far\" depth=\"840\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1560\" plane=\"far\" depth=\"841\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1630\" plane=\"far\" depth=\"842\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1700\" plane=\"far\" depth=\"843\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1770\" plane=\"far\" depth=\"844\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1840\" plane=\"far\" depth=\"845\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1910\" plane=\"far\" depth=\"846\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1980\" plane=\"far\" depth=\"847\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"2050\" plane=\"far\" depth=\"848\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"2120\" plane=\"far\" depth=\"849\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2091\" y=\"3160\" plane=\"far\" depth=\"850\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2020\" y=\"3160\" plane=\"far\" depth=\"851\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1950\" y=\"3160\" plane=\"far\" depth=\"852\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1880\" y=\"3160\" plane=\"far\" depth=\"853\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1810\" y=\"3160\" plane=\"far\" depth=\"854\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1740\" y=\"3160\" plane=\"far\" depth=\"855\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1671\" y=\"3160\" plane=\"far\" depth=\"856\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1601\" y=\"3160\" plane=\"far\" depth=\"857\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1530\" y=\"3160\" plane=\"far\" depth=\"858\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1460\" y=\"3160\" plane=\"far\" depth=\"859\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1391\" y=\"3160\" plane=\"far\" depth=\"860\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1321\" y=\"3160\" plane=\"far\" depth=\"861\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1251\" y=\"3160\" plane=\"far\" depth=\"862\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1181\" y=\"3160\" plane=\"far\" depth=\"863\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1110\" y=\"3160\" plane=\"far\" depth=\"864\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1041\" y=\"3160\" plane=\"far\" depth=\"865\"/>";
str = str + "<object tile=\"wall_big2\" x=\"971\" y=\"3160\" plane=\"far\" depth=\"866\"/>";
str = str + "<object tile=\"wall_big2\" x=\"901\" y=\"3160\" plane=\"far\" depth=\"867\"/>";
str = str + "<object tile=\"wall_big2\" x=\"831\" y=\"3160\" plane=\"far\" depth=\"868\"/>";
str = str + "<object tile=\"wall_big2\" x=\"761\" y=\"3160\" plane=\"far\" depth=\"869\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2160\" y=\"3160\" plane=\"far\" depth=\"870\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"2420\" plane=\"far\" depth=\"871\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"2490\" plane=\"far\" depth=\"872\"/>";
str = str + "<object tile=\"road_d1\" x=\"1240\" y=\"3130\" plane=\"far\" depth=\"873\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"2560\" plane=\"far\" depth=\"874\"/>";
str = str + "<object tile=\"road_ld\" x=\"840\" y=\"3130\" plane=\"far\" depth=\"875\"/>";
str = str + "<object tile=\"road_d1\" x=\"940\" y=\"3130\" plane=\"far\" depth=\"876\"/>";
str = str + "<object tile=\"road_d1\" x=\"1040\" y=\"3130\" plane=\"far\" depth=\"877\"/>";
str = str + "<object tile=\"road_rd\" x=\"1440\" y=\"3130\" plane=\"far\" depth=\"878\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3251\" y=\"2190\" plane=\"far\" depth=\"879\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3321\" y=\"2190\" plane=\"far\" depth=\"880\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3390\" y=\"2190\" plane=\"far\" depth=\"881\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3460\" y=\"2190\" plane=\"far\" depth=\"882\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3530\" y=\"2190\" plane=\"far\" depth=\"883\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3598\" y=\"2190\" plane=\"far\" depth=\"884\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3669\" y=\"2190\" plane=\"far\" depth=\"885\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3739\" y=\"2190\" plane=\"far\" depth=\"886\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3808\" y=\"2190\" plane=\"far\" depth=\"887\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3880\" y=\"2190\" plane=\"far\" depth=\"888\"/>";
str = str + "<object tile=\"hangar1\" x=\"920\" y=\"3420\" plane=\"far\" depth=\"889\"/>";
str = str + "<object tile=\"hangar1\" x=\"1050\" y=\"3420\" plane=\"far\" depth=\"890\"/>";
str = str + "<object tile=\"road_d1\" x=\"1140\" y=\"3130\" plane=\"far\" depth=\"891\"/>";
str = str + "<object tile=\"road_d1\" x=\"1340\" y=\"3130\" plane=\"far\" depth=\"892\"/>";
str = str + "<object tile=\"heliPad\" x=\"3350\" y=\"800\" plane=\"far\" depth=\"893\"/>";
str = str + "<object tile=\"tower_guard\" x=\"3020\" y=\"2200\" plane=\"far\" depth=\"894\"/>";
str = str + "<object tile=\"house_big2\" x=\"2730\" y=\"1850\" plane=\"far\" depth=\"895\"/>";
str = str + "<object tile=\"house_med5\" x=\"2960\" y=\"1850\" plane=\"far\" depth=\"896\"/>";
str = str + "<object tile=\"house_big2\" x=\"3210\" y=\"1840\" plane=\"far\" depth=\"897\"/>";
str = str + "<object tile=\"house_big2\" x=\"3450\" y=\"1840\" plane=\"far\" depth=\"898\"/>";
str = str + "<object tile=\"house_big2\" x=\"3680\" y=\"1840\" plane=\"far\" depth=\"899\"/>";
str = str + "<object tile=\"house_big2\" x=\"3680\" y=\"1550\" plane=\"far\" depth=\"900\"/>";
str = str + "<object tile=\"house_big2\" x=\"3440\" y=\"1550\" plane=\"far\" depth=\"901\"/>";
str = str + "<object tile=\"house_med5\" x=\"3310\" y=\"1560\" plane=\"far\" depth=\"902\"/>";
str = str + "<object tile=\"house_big2\" x=\"2950\" y=\"1560\" plane=\"far\" depth=\"903\"/>";
str = str + "<object tile=\"house_big2\" x=\"2940\" y=\"1210\" plane=\"far\" depth=\"904\"/>";
str = str + "<object tile=\"house_med5\" x=\"3310\" y=\"1240\" plane=\"far\" depth=\"905\"/>";
str = str + "<object tile=\"house_big2\" x=\"3440\" y=\"1230\" plane=\"far\" depth=\"906\"/>";
str = str + "<object tile=\"house_big2\" x=\"3680\" y=\"1230\" plane=\"far\" depth=\"907\"/>";
str = str + "<object tile=\"house_big2\" x=\"2730\" y=\"1560\" plane=\"far\" depth=\"908\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3210\" y=\"2190\" plane=\"far\" depth=\"909\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2970\" y=\"2210\" plane=\"far\" depth=\"910\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2980\" y=\"2280\" plane=\"far\" depth=\"911\"/>";
str = str + "<object tile=\"post1\" x=\"3200\" y=\"2290\" plane=\"far\" depth=\"912\"/>";
str = str + "<object tile=\"radar_base2\" x=\"3060\" y=\"1090\" plane=\"far\" depth=\"913\"/>";
str = str + "<object tile=\"hangar2\" x=\"3370\" y=\"970\" plane=\"far\" depth=\"914\"/>";
str = str + "<object tile=\"hangar1\" x=\"3180\" y=\"670\" plane=\"far\" depth=\"915\"/>";
str = str + "<object tile=\"tent2\" x=\"2960\" y=\"1060\" plane=\"far\" depth=\"916\"/>";
str = str + "<object tile=\"tent2\" x=\"2960\" y=\"1030\" plane=\"far\" depth=\"917\"/>";
str = str + "<object tile=\"tent2\" x=\"2960\" y=\"1000\" plane=\"far\" depth=\"918\"/>";
str = str + "<object tile=\"tent2\" x=\"2960\" y=\"970\" plane=\"far\" depth=\"919\"/>";
str = str + "<object tile=\"tent1\" x=\"3000\" y=\"940\" plane=\"far\" depth=\"920\"/>";
str = str + "<object tile=\"tent1\" x=\"3030\" y=\"940\" plane=\"far\" depth=\"921\"/>";
str = str + "<object tile=\"tent1\" x=\"3060\" y=\"940\" plane=\"far\" depth=\"922\"/>";
str = str + "<object tile=\"tent1\" x=\"3090\" y=\"940\" plane=\"far\" depth=\"923\"/>";
str = str + "<object tile=\"tent1\" x=\"3120\" y=\"940\" plane=\"far\" depth=\"924\"/>";
str = str + "<object tile=\"house_med3\" x=\"800\" y=\"2520\" plane=\"far\" depth=\"925\"/>";
str = str + "<object tile=\"house_med4\" x=\"860\" y=\"2370\" plane=\"far\" depth=\"926\"/>";
str = str + "<object tile=\"house_sm1\" x=\"800\" y=\"2620\" plane=\"far\" depth=\"927\"/>";
str = str + "<object tile=\"house_med3\" x=\"800\" y=\"2680\" plane=\"far\" depth=\"928\"/>";
str = str + "<object tile=\"house_med1\" x=\"970\" y=\"2390\" plane=\"far\" depth=\"929\"/>";
str = str + "<object tile=\"house_sm1\" x=\"800\" y=\"2780\" plane=\"far\" depth=\"930\"/>";
str = str + "<object tile=\"house_med3\" x=\"800\" y=\"2840\" plane=\"far\" depth=\"931\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1390\" y=\"2390\" plane=\"far\" depth=\"932\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1390\" y=\"2420\" plane=\"far\" depth=\"933\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1390\" y=\"2450\" plane=\"far\" depth=\"934\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1390\" y=\"2480\" plane=\"far\" depth=\"935\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1390\" y=\"2510\" plane=\"far\" depth=\"936\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1390\" y=\"2540\" plane=\"far\" depth=\"937\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1390\" y=\"2570\" plane=\"far\" depth=\"938\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1390\" y=\"2600\" plane=\"far\" depth=\"939\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1400\" y=\"2630\" plane=\"far\" depth=\"940\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1430\" y=\"2630\" plane=\"far\" depth=\"941\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1460\" y=\"2630\" plane=\"far\" depth=\"942\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1490\" y=\"2630\" plane=\"far\" depth=\"943\"/>";
str = str + "<object tile=\"house_med5\" x=\"1400\" y=\"2330\" plane=\"far\" depth=\"944\"/>";
str = str + "<object tile=\"house_big1\" x=\"1500\" y=\"2370\" plane=\"far\" depth=\"945\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1450\" y=\"2440\" plane=\"far\" depth=\"946\"/>";
str = str + "<object tile=\"house_sm1\" x=\"1650\" y=\"2390\" plane=\"far\" depth=\"947\"/>";
str = str + "<object tile=\"house_med1\" x=\"1780\" y=\"2370\" plane=\"far\" depth=\"948\"/>";
str = str + "<object tile=\"house_med2\" x=\"1690\" y=\"2370\" plane=\"far\" depth=\"949\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1860\" y=\"2450\" plane=\"far\" depth=\"950\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1860\" y=\"2480\" plane=\"far\" depth=\"951\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1860\" y=\"2510\" plane=\"far\" depth=\"952\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1860\" y=\"2540\" plane=\"far\" depth=\"953\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1860\" y=\"2570\" plane=\"far\" depth=\"954\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1860\" y=\"2600\" plane=\"far\" depth=\"955\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1840\" y=\"2630\" plane=\"far\" depth=\"956\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1810\" y=\"2630\" plane=\"far\" depth=\"957\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1780\" y=\"2630\" plane=\"far\" depth=\"958\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1750\" y=\"2630\" plane=\"far\" depth=\"959\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1720\" y=\"2630\" plane=\"far\" depth=\"960\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1690\" y=\"2630\" plane=\"far\" depth=\"961\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1660\" y=\"2630\" plane=\"far\" depth=\"962\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1630\" y=\"2630\" plane=\"far\" depth=\"963\"/>";
str = str + "<object tile=\"house_med4\" x=\"820\" y=\"2950\" plane=\"far\" depth=\"964\"/>";
str = str + "<object tile=\"house_med1\" x=\"1580\" y=\"2820\" plane=\"far\" depth=\"965\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1580\" y=\"2900\" plane=\"far\" depth=\"966\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1580\" y=\"2930\" plane=\"far\" depth=\"967\"/>";
str = str + "<object tile=\"house_sm1\" x=\"1780\" y=\"2800\" plane=\"far\" depth=\"968\"/>";
str = str + "<object tile=\"house_med2\" x=\"1680\" y=\"2790\" plane=\"far\" depth=\"969\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1830\" y=\"2810\" plane=\"far\" depth=\"970\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1850\" y=\"2810\" plane=\"far\" depth=\"971\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1850\" y=\"2840\" plane=\"far\" depth=\"972\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1850\" y=\"2870\" plane=\"far\" depth=\"973\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1850\" y=\"2900\" plane=\"far\" depth=\"974\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1850\" y=\"2930\" plane=\"far\" depth=\"975\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1810\" y=\"2940\" plane=\"far\" depth=\"976\"/>";
str = str + "<object tile=\"house_med3\" x=\"850\" y=\"3040\" plane=\"far\" depth=\"977\"/>";
str = str + "<object tile=\"tower_water\" x=\"1490\" y=\"2800\" plane=\"far\" depth=\"978\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1580\" y=\"2960\" plane=\"far\" depth=\"979\"/>";
str = str + "<object tile=\"house_sm1\" x=\"1590\" y=\"2930\" plane=\"far\" depth=\"980\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1830\" y=\"2990\" plane=\"far\" depth=\"981\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1800\" y=\"2990\" plane=\"far\" depth=\"982\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1770\" y=\"2990\" plane=\"far\" depth=\"983\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1740\" y=\"2990\" plane=\"far\" depth=\"984\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1710\" y=\"2990\" plane=\"far\" depth=\"985\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1590\" y=\"2990\" plane=\"far\" depth=\"986\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1620\" y=\"2990\" plane=\"far\" depth=\"987\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1650\" y=\"2990\" plane=\"far\" depth=\"988\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1680\" y=\"2990\" plane=\"far\" depth=\"989\"/>";
str = str + "<object tile=\"house_med5\" x=\"1470\" y=\"2880\" plane=\"far\" depth=\"990\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1170\" y=\"2180\" plane=\"far\" depth=\"991\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1200\" y=\"2180\" plane=\"far\" depth=\"992\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1230\" y=\"2180\" plane=\"far\" depth=\"993\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1250\" y=\"2180\" plane=\"far\" depth=\"994\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1250\" y=\"2210\" plane=\"far\" depth=\"995\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1250\" y=\"2240\" plane=\"far\" depth=\"996\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1250\" y=\"2360\" plane=\"far\" depth=\"997\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1250\" y=\"2390\" plane=\"far\" depth=\"998\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1250\" y=\"2420\" plane=\"far\" depth=\"999\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1230\" y=\"2450\" plane=\"far\" depth=\"1000\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1200\" y=\"2450\" plane=\"far\" depth=\"1001\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1170\" y=\"2450\" plane=\"far\" depth=\"1002\"/>";
str = str + "<object tile=\"house_sm1\" x=\"1160\" y=\"2370\" plane=\"far\" depth=\"1003\"/>";
str = str + "<object tile=\"house_med2\" x=\"1060\" y=\"2360\" plane=\"far\" depth=\"1004\"/>";
str = str + "<object tile=\"house_big2\" x=\"950\" y=\"2150\" plane=\"far\" depth=\"1005\"/>";
str = str + "<object tile=\"house_big1\" x=\"810\" y=\"2140\" plane=\"far\" depth=\"1006\"/>";
str = str + "<object tile=\"tower_guard\" x=\"1740\" y=\"1460\" plane=\"far\" depth=\"1007\"/>";
str = str + "<object tile=\"tower_guard\" x=\"1740\" y=\"1310\" plane=\"far\" depth=\"1008\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"830\" y=\"2460\" plane=\"far\" depth=\"1009\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"800\" y=\"2460\" plane=\"far\" depth=\"1010\"/>";
str = str + "<object tile=\"house_med3\" x=\"1480\" y=\"2990\" plane=\"far\" depth=\"1011\"/>";
str = str + "<object tile=\"house_sm1\" x=\"1480\" y=\"3090\" plane=\"far\" depth=\"1012\"/>";
str = str + "<object tile=\"house_med4\" x=\"1280\" y=\"660\" plane=\"far\" depth=\"1013\"/>";
str = str + "<object tile=\"house_big1\" x=\"1380\" y=\"660\" plane=\"far\" depth=\"1014\"/>";
str = str + "<object tile=\"house_big2\" x=\"1050\" y=\"640\" plane=\"far\" depth=\"1015\"/>";
str = str + "<object tile=\"house_big2\" x=\"830\" y=\"640\" plane=\"far\" depth=\"1016\"/>";
str = str + "<object tile=\"house_med5\" x=\"780\" y=\"760\" plane=\"far\" depth=\"1017\"/>";
str = str + "<object tile=\"house_big2\" x=\"830\" y=\"870\" plane=\"far\" depth=\"1018\"/>";
str = str + "<object tile=\"house_big2\" x=\"1060\" y=\"870\" plane=\"far\" depth=\"1019\"/>";
str = str + "<object tile=\"house_med3\" x=\"1200\" y=\"970\" plane=\"far\" depth=\"1020\"/>";
str = str + "<object tile=\"house_med1\" x=\"790\" y=\"1100\" plane=\"far\" depth=\"1021\"/>";
str = str + "<object tile=\"house_med4\" x=\"890\" y=\"1080\" plane=\"far\" depth=\"1022\"/>";
str = str + "<object tile=\"house_big1\" x=\"1000\" y=\"1040\" plane=\"far\" depth=\"1023\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1150\" y=\"1120\" plane=\"far\" depth=\"1024\"/>";
str = str + "<object tile=\"house_med3\" x=\"1200\" y=\"1070\" plane=\"far\" depth=\"1025\"/>";
str = str + "<object tile=\"house_big1\" x=\"800\" y=\"1740\" plane=\"far\" depth=\"1026\"/>";
str = str + "<object tile=\"house_med1\" x=\"950\" y=\"1760\" plane=\"far\" depth=\"1027\"/>";
str = str + "<object tile=\"house_med5\" x=\"1040\" y=\"1750\" plane=\"far\" depth=\"1028\"/>";
str = str + "<object tile=\"house_med2\" x=\"1150\" y=\"1740\" plane=\"far\" depth=\"1029\"/>";
str = str + "<object tile=\"house_med3\" x=\"1170\" y=\"1840\" plane=\"far\" depth=\"1030\"/>";
str = str + "<object tile=\"house_med3\" x=\"810\" y=\"1870\" plane=\"far\" depth=\"1031\"/>";
str = str + "<object tile=\"house_med4\" x=\"810\" y=\"1970\" plane=\"far\" depth=\"1032\"/>";
str = str + "<object tile=\"house_sm2\" x=\"920\" y=\"2020\" plane=\"far\" depth=\"1033\"/>";
str = str + "<object tile=\"house_med2\" x=\"970\" y=\"1960\" plane=\"far\" depth=\"1034\"/>";
str = str + "<object tile=\"house_sm1\" x=\"1080\" y=\"2000\" plane=\"far\" depth=\"1035\"/>";
str = str + "<object tile=\"house_big1\" x=\"1110\" y=\"1920\" plane=\"far\" depth=\"1036\"/>";
str = str + "<object tile=\"house_med3\" x=\"960\" y=\"1300\" plane=\"far\" depth=\"1037\"/>";
str = str + "<object tile=\"house_sm2\" x=\"890\" y=\"1390\" plane=\"far\" depth=\"1038\"/>";
str = str + "<object tile=\"house_big1\" x=\"930\" y=\"1370\" plane=\"far\" depth=\"1039\"/>";
str = str + "<object tile=\"house_med2\" x=\"790\" y=\"1330\" plane=\"far\" depth=\"1040\"/>";
str = str + "<object tile=\"house_med4\" x=\"1080\" y=\"1390\" plane=\"far\" depth=\"1041\"/>";
str = str + "<object tile=\"house_sm1\" x=\"800\" y=\"1430\" plane=\"far\" depth=\"1042\"/>";
str = str + "<object tile=\"house_sm2\" x=\"940\" y=\"1500\" plane=\"far\" depth=\"1043\"/>";
str = str + "<object tile=\"house_med4\" x=\"880\" y=\"1540\" plane=\"far\" depth=\"1044\"/>";
str = str + "<object tile=\"house_sm1\" x=\"1190\" y=\"1420\" plane=\"far\" depth=\"1045\"/>";
str = str + "<object tile=\"house_sm2\" x=\"830\" y=\"1580\" plane=\"far\" depth=\"1046\"/>";
str = str + "<object tile=\"house_med3\" x=\"810\" y=\"1620\" plane=\"far\" depth=\"1047\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1080\" y=\"1480\" plane=\"far\" depth=\"1048\"/>";
str = str + "<object tile=\"house_med2\" x=\"980\" y=\"1530\" plane=\"far\" depth=\"1049\"/>";
str = str + "<object tile=\"house_med3\" x=\"1080\" y=\"1520\" plane=\"far\" depth=\"1050\"/>";
str = str + "<object tile=\"house_sm1\" x=\"1160\" y=\"1570\" plane=\"far\" depth=\"1051\"/>";
str = str + "<object tile=\"house_sm2\" x=\"800\" y=\"1490\" plane=\"far\" depth=\"1052\"/>";
str = str + "<object tile=\"house_med3\" x=\"790\" y=\"1170\" plane=\"far\" depth=\"1053\"/>";
str = str + "<object tile=\"house_sm1\" x=\"790\" y=\"1270\" plane=\"far\" depth=\"1054\"/>";
str = str + "<object tile=\"tower_water\" x=\"1190\" y=\"1270\" plane=\"far\" depth=\"1055\"/>";
str = str + "<object tile=\"house_med1\" x=\"1710\" y=\"1680\" plane=\"far\" depth=\"1056\"/>";
str = str + "<object tile=\"house_big1\" x=\"1790\" y=\"1550\" plane=\"far\" depth=\"1057\"/>";
str = str + "<object tile=\"house_med1\" x=\"1800\" y=\"1680\" plane=\"far\" depth=\"1058\"/>";
str = str + "<object tile=\"house_med4\" x=\"1800\" y=\"1740\" plane=\"far\" depth=\"1059\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1800\" y=\"1830\" plane=\"far\" depth=\"1060\"/>";
str = str + "<object tile=\"house_med2\" x=\"1710\" y=\"1720\" plane=\"far\" depth=\"1061\"/>";
str = str + "<object tile=\"house_sm1\" x=\"1710\" y=\"1820\" plane=\"far\" depth=\"1062\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1750\" y=\"1880\" plane=\"far\" depth=\"1063\"/>";
str = str + "<object tile=\"house_big1\" x=\"1790\" y=\"1860\" plane=\"far\" depth=\"1064\"/>";
str = str + "<object tile=\"house_med5\" x=\"1700\" y=\"1990\" plane=\"far\" depth=\"1065\"/>";
str = str + "<object tile=\"tower_water\" x=\"1710\" y=\"1990\" plane=\"far\" depth=\"1066\"/>";
str = str + "<object tile=\"house_sm1\" x=\"1930\" y=\"1990\" plane=\"far\" depth=\"1067\"/>";
str = str + "<object tile=\"house_med1\" x=\"1970\" y=\"1990\" plane=\"far\" depth=\"1068\"/>";
str = str + "<object tile=\"house_big1\" x=\"2050\" y=\"1940\" plane=\"far\" depth=\"1069\"/>";
str = str + "<object tile=\"house_sm1\" x=\"2020\" y=\"2060\" plane=\"far\" depth=\"1070\"/>";
str = str + "<object tile=\"house_big1\" x=\"2470\" y=\"1540\" plane=\"far\" depth=\"1071\"/>";
str = str + "<object tile=\"house_med4\" x=\"2560\" y=\"1700\" plane=\"far\" depth=\"1072\"/>";
str = str + "<object tile=\"house_med3\" x=\"2480\" y=\"1780\" plane=\"far\" depth=\"1073\"/>";
str = str + "<object tile=\"house_sm1\" x=\"2560\" y=\"1790\" plane=\"far\" depth=\"1074\"/>";
str = str + "<object tile=\"house_sm2\" x=\"2480\" y=\"1880\" plane=\"far\" depth=\"1075\"/>";
str = str + "<object tile=\"house_med1\" x=\"2470\" y=\"1920\" plane=\"far\" depth=\"1076\"/>";
str = str + "<object tile=\"house_big1\" x=\"2550\" y=\"1880\" plane=\"far\" depth=\"1077\"/>";
str = str + "<object tile=\"house_sm1\" x=\"2520\" y=\"1990\" plane=\"far\" depth=\"1078\"/>";
str = str + "<object tile=\"house_med2\" x=\"2510\" y=\"2020\" plane=\"far\" depth=\"1079\"/>";
str = str + "<object tile=\"house_med3\" x=\"2260\" y=\"1970\" plane=\"far\" depth=\"1080\"/>";
str = str + "<object tile=\"house_big1\" x=\"2320\" y=\"1930\" plane=\"far\" depth=\"1081\"/>";
str = str + "<object tile=\"house_sm1\" x=\"2340\" y=\"2060\" plane=\"far\" depth=\"1082\"/>";
str = str + "<object tile=\"house_sm2\" x=\"2460\" y=\"2070\" plane=\"far\" depth=\"1083\"/>";
str = str + "<object tile=\"house_med1\" x=\"2340\" y=\"1580\" plane=\"far\" depth=\"1084\"/>";
str = str + "<object tile=\"house_med4\" x=\"1940\" y=\"1570\" plane=\"far\" depth=\"1085\"/>";
str = str + "<object tile=\"house_sm2\" x=\"2050\" y=\"1590\" plane=\"far\" depth=\"1086\"/>";
str = str + "<object tile=\"house_med4\" x=\"1820\" y=\"2010\" plane=\"far\" depth=\"1087\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1820\" y=\"2100\" plane=\"far\" depth=\"1088\"/>";
str = str + "<object tile=\"house_sm2\" x=\"2430\" y=\"1600\" plane=\"far\" depth=\"1089\"/>";
str = str + "<object tile=\"house_sm1\" x=\"2110\" y=\"1570\" plane=\"far\" depth=\"1090\"/>";
str = str + "<object tile=\"tower_guard\" x=\"2110\" y=\"2570\" plane=\"far\" depth=\"1091\"/>";
str = str + "<object tile=\"tower_guard\" x=\"2120\" y=\"2780\" plane=\"far\" depth=\"1092\"/>";
str = str + "<object tile=\"tower_guard\" x=\"2630\" y=\"1570\" plane=\"far\" depth=\"1093\"/>";
str = str + "<object tile=\"tower_guard\" x=\"2630\" y=\"2120\" plane=\"far\" depth=\"1094\"/>";
str = str + "<object tile=\"tower_guard\" x=\"1720\" y=\"2110\" plane=\"far\" depth=\"1095\"/>";
str = str + "<object tile=\"tower_guard\" x=\"1710\" y=\"1590\" plane=\"far\" depth=\"1096\"/>";
str = str + "<object tile=\"oil_punp2\" x=\"1610\" y=\"3470\" plane=\"far\" depth=\"1097\"/>";
str = str + "<object tile=\"oil_pump1\" x=\"1260\" y=\"3480\" plane=\"far\" depth=\"1098\"/>";
str = str + "<object tile=\"oil_punp2\" x=\"1610\" y=\"3360\" plane=\"far\" depth=\"1099\"/>";
str = str + "<object tile=\"oil_pump1\" x=\"1260\" y=\"3380\" plane=\"far\" depth=\"1100\"/>";
str = str + "<object tile=\"house_med1\" x=\"2870\" y=\"2580\" plane=\"far\" depth=\"1101\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2840\" y=\"2380\" plane=\"far\" depth=\"1102\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2870\" y=\"2381\" plane=\"far\" depth=\"1103\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2900\" y=\"2381\" plane=\"far\" depth=\"1104\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2930\" y=\"2381\" plane=\"far\" depth=\"1105\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2960\" y=\"2381\" plane=\"far\" depth=\"1106\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2990\" y=\"2381\" plane=\"far\" depth=\"1107\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3020\" y=\"2381\" plane=\"far\" depth=\"1108\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2830\" y=\"2381\" plane=\"far\" depth=\"1109\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2830\" y=\"2411\" plane=\"far\" depth=\"1110\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2830\" y=\"2441\" plane=\"far\" depth=\"1111\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2830\" y=\"2471\" plane=\"far\" depth=\"1112\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2830\" y=\"2501\" plane=\"far\" depth=\"1113\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2830\" y=\"2531\" plane=\"far\" depth=\"1114\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2830\" y=\"2560\" plane=\"far\" depth=\"1115\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2830\" y=\"2591\" plane=\"far\" depth=\"1116\"/>";
str = str + "<object tile=\"house_sm2\" x=\"2840\" y=\"2451\" plane=\"far\" depth=\"1117\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3040\" y=\"2381\" plane=\"far\" depth=\"1118\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3040\" y=\"2411\" plane=\"far\" depth=\"1119\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3040\" y=\"2440\" plane=\"far\" depth=\"1120\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2830\" y=\"2621\" plane=\"far\" depth=\"1121\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2840\" y=\"2651\" plane=\"far\" depth=\"1122\"/>";
str = str + "<object tile=\"house_med3\" x=\"2990\" y=\"2470\" plane=\"far\" depth=\"1123\"/>";
str = str + "<object tile=\"house_med4\" x=\"2970\" y=\"2560\" plane=\"far\" depth=\"1124\"/>";
str = str + "<object tile=\"house_med4\" x=\"2360\" y=\"2230\" plane=\"far\" depth=\"1125\"/>";
str = str + "<object tile=\"house_big1\" x=\"2450\" y=\"2210\" plane=\"far\" depth=\"1126\"/>";
str = str + "<object tile=\"house_med3\" x=\"2600\" y=\"2230\" plane=\"far\" depth=\"1127\"/>";
str = str + "<object tile=\"house_med5\" x=\"2240\" y=\"2230\" plane=\"far\" depth=\"1128\"/>";
str = str + "<object tile=\"house_sm1\" x=\"2600\" y=\"2330\" plane=\"far\" depth=\"1129\"/>";
str = str + "<object tile=\"house_sm2\" x=\"2570\" y=\"2260\" plane=\"far\" depth=\"1130\"/>";
str = str + "<object tile=\"house_med1\" x=\"2370\" y=\"2320\" plane=\"far\" depth=\"1131\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2281\" plane=\"far\" depth=\"1132\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2311\" plane=\"far\" depth=\"1133\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2341\" plane=\"far\" depth=\"1134\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2371\" plane=\"far\" depth=\"1135\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2400\" plane=\"far\" depth=\"1136\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2431\" plane=\"far\" depth=\"1137\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2461\" plane=\"far\" depth=\"1138\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2491\" plane=\"far\" depth=\"1139\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2521\" plane=\"far\" depth=\"1140\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2550\" plane=\"far\" depth=\"1141\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2580\" plane=\"far\" depth=\"1142\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2611\" plane=\"far\" depth=\"1143\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2610\" y=\"2640\" plane=\"far\" depth=\"1144\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2640\" y=\"2641\" plane=\"far\" depth=\"1145\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2670\" y=\"2640\" plane=\"far\" depth=\"1146\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2700\" y=\"2640\" plane=\"far\" depth=\"1147\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2730\" y=\"2640\" plane=\"far\" depth=\"1148\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2760\" y=\"2641\" plane=\"far\" depth=\"1149\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2420\" y=\"2600\" plane=\"far\" depth=\"1150\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2550\" y=\"2640\" plane=\"far\" depth=\"1151\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2580\" y=\"2641\" plane=\"far\" depth=\"1152\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2240\" y=\"2600\" plane=\"far\" depth=\"1153\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2270\" y=\"2601\" plane=\"far\" depth=\"1154\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2300\" y=\"2600\" plane=\"far\" depth=\"1155\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2330\" y=\"2600\" plane=\"far\" depth=\"1156\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2360\" y=\"2600\" plane=\"far\" depth=\"1157\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2390\" y=\"2601\" plane=\"far\" depth=\"1158\"/>";
str = str + "<object tile=\"house_med1\" x=\"2680\" y=\"2490\" plane=\"far\" depth=\"1159\"/>";
str = str + "<object tile=\"house_med2\" x=\"2590\" y=\"2510\" plane=\"far\" depth=\"1160\"/>";
str = str + "<object tile=\"house_sm1\" x=\"2690\" y=\"2550\" plane=\"far\" depth=\"1161\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2251\" plane=\"far\" depth=\"1162\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2221\" plane=\"far\" depth=\"1163\"/>";
str = str + "<object tile=\"oil_barrel2\" x=\"3880\" y=\"3440\" plane=\"far\" depth=\"1164\"/>";
str = str + "<object tile=\"oil_barrel2\" x=\"3880\" y=\"3370\" plane=\"far\" depth=\"1165\"/>";
str = str + "<object tile=\"oil_barrel2\" x=\"3880\" y=\"3300\" plane=\"far\" depth=\"1166\"/>";
str = str + "<object tile=\"oil_barrel2\" x=\"3880\" y=\"3230\" plane=\"far\" depth=\"1167\"/>";
str = str + "<object tile=\"hangar2\" x=\"4100\" y=\"3450\" plane=\"far\" depth=\"1168\"/>";
str = str + "<object tile=\"oil_punp2\" x=\"4100\" y=\"3360\" plane=\"far\" depth=\"1169\"/>";
str = str + "<object tile=\"oil_punp2\" x=\"4100\" y=\"3270\" plane=\"far\" depth=\"1170\"/>";
str = str + "<object tile=\"oil_punp2\" x=\"4100\" y=\"3180\" plane=\"far\" depth=\"1171\"/>";
str = str + "<object tile=\"house_big2\" x=\"3830\" y=\"2940\" plane=\"far\" depth=\"1172\"/>";
str = str + "<object tile=\"house_med2\" x=\"3410\" y=\"3150\" plane=\"far\" depth=\"1173\"/>";
str = str + "<object tile=\"house_med5\" x=\"4050\" y=\"2940\" plane=\"far\" depth=\"1174\"/>";
str = str + "<object tile=\"house_sm2\" x=\"3420\" y=\"3250\" plane=\"far\" depth=\"1175\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3860\" y=\"3190\" plane=\"far\" depth=\"1176\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3890\" y=\"3190\" plane=\"far\" depth=\"1177\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3920\" y=\"3190\" plane=\"far\" depth=\"1178\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3950\" y=\"3190\" plane=\"far\" depth=\"1179\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3190\" plane=\"far\" depth=\"1180\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3220\" plane=\"far\" depth=\"1181\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3250\" plane=\"far\" depth=\"1182\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3280\" plane=\"far\" depth=\"1183\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3310\" plane=\"far\" depth=\"1184\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3340\" plane=\"far\" depth=\"1185\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3370\" plane=\"far\" depth=\"1186\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3400\" plane=\"far\" depth=\"1187\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3430\" plane=\"far\" depth=\"1188\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3460\" plane=\"far\" depth=\"1189\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3490\" plane=\"far\" depth=\"1190\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3860\" y=\"3520\" plane=\"far\" depth=\"1191\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3890\" y=\"3520\" plane=\"far\" depth=\"1192\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3920\" y=\"3520\" plane=\"far\" depth=\"1193\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3950\" y=\"3520\" plane=\"far\" depth=\"1194\"/>";
str = str + "<object tile=\"hangar1\" x=\"3690\" y=\"2920\" plane=\"far\" depth=\"1195\"/>";
str = str + "<object tile=\"oil_barrel1\" x=\"3610\" y=\"3320\" plane=\"far\" depth=\"1196\"/>";
str = str + "<object tile=\"oil_barrel1\" x=\"3530\" y=\"3320\" plane=\"far\" depth=\"1197\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3780\" y=\"3170\" plane=\"far\" depth=\"1198\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3780\" y=\"3200\" plane=\"far\" depth=\"1199\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3780\" y=\"3230\" plane=\"far\" depth=\"1200\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3700\" y=\"3260\" plane=\"far\" depth=\"1201\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3730\" y=\"3260\" plane=\"far\" depth=\"1202\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3760\" y=\"3260\" plane=\"far\" depth=\"1203\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3691\" y=\"3261\" plane=\"far\" depth=\"1204\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3691\" y=\"3291\" plane=\"far\" depth=\"1205\"/>";
str = str + "<object tile=\"oil_barrel2\" x=\"3700\" y=\"3190\" plane=\"far\" depth=\"1206\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3390\" y=\"3170\" plane=\"far\" depth=\"1207\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3390\" y=\"3200\" plane=\"far\" depth=\"1208\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3390\" y=\"3230\" plane=\"far\" depth=\"1209\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3691\" y=\"3321\" plane=\"far\" depth=\"1210\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3690\" y=\"3350\" plane=\"far\" depth=\"1211\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3390\" y=\"3260\" plane=\"far\" depth=\"1212\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3390\" y=\"3290\" plane=\"far\" depth=\"1213\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3690\" y=\"3383\" plane=\"far\" depth=\"1214\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3520\" y=\"3410\" plane=\"far\" depth=\"1215\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3550\" y=\"3410\" plane=\"far\" depth=\"1216\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3580\" y=\"3410\" plane=\"far\" depth=\"1217\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3610\" y=\"3410\" plane=\"far\" depth=\"1218\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3640\" y=\"3410\" plane=\"far\" depth=\"1219\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3670\" y=\"3410\" plane=\"far\" depth=\"1220\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3400\" y=\"3320\" plane=\"far\" depth=\"1221\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3430\" y=\"3320\" plane=\"far\" depth=\"1222\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3460\" y=\"3320\" plane=\"far\" depth=\"1223\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3480\" y=\"3320\" plane=\"far\" depth=\"1224\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3480\" y=\"3350\" plane=\"far\" depth=\"1225\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3480\" y=\"3380\" plane=\"far\" depth=\"1226\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3490\" y=\"3410\" plane=\"far\" depth=\"1227\"/>";
str = str + "<object tile=\"oil_pump1\" x=\"3180\" y=\"2760\" plane=\"far\" depth=\"1228\"/>";
str = str + "<object tile=\"oil_pump1\" x=\"3180\" y=\"2850\" plane=\"far\" depth=\"1229\"/>";
str = str + "<object tile=\"oil_pump1\" x=\"3180\" y=\"2940\" plane=\"far\" depth=\"1230\"/>";
str = str + "<object tile=\"oil_pump1\" x=\"3180\" y=\"3030\" plane=\"far\" depth=\"1231\"/>";
str = str + "<object tile=\"tower_water\" x=\"3270\" y=\"3100\" plane=\"far\" depth=\"1232\"/>";
str = str + "<object tile=\"hangar2\" x=\"3460\" y=\"2710\" plane=\"far\" depth=\"1233\"/>";
str = str + "<object tile=\"hangar2\" x=\"3470\" y=\"2850\" plane=\"far\" depth=\"1234\"/>";
str = str + "<object tile=\"hero1\" x=\"740\" y=\"3630\" plane=\"main\" depth=\"1235\"/>";
str = str + "<object tile=\"cargo_heli\" x=\"3410\" y=\"850\" plane=\"main\" depth=\"1236\"/>";
str = str + "<object tile=\"un_car1\" x=\"940\" y=\"3620\" plane=\"main\" depth=\"1237\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"81\" deltay=\"0\" mtype=\"lin\" steps=\"40\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"100\" deltay=\"0\" mtype=\"lin\" steps=\"33\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"1520\" deltay=\"1\" mtype=\"lin\" steps=\"380\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"23\" deltay=\"-7\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"23\" deltay=\"-14\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"18\" deltay=\"-21\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"13\" deltay=\"-27\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"7\" deltay=\"-29\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-2\" deltay=\"-710\" mtype=\"lin\" steps=\"177\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"7\" deltay=\"-38\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"12\" deltay=\"-25\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"18\" deltay=\"-19\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"22\" deltay=\"-10\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"31\" deltay=\"-6\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"226\" deltay=\"-4\" mtype=\"lin\" steps=\"56\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"28\" deltay=\"-8\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"24\" deltay=\"-14\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"18\" deltay=\"-20\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"14\" deltay=\"-28\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"3\" deltay=\"-32\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-277\" mtype=\"lin\" steps=\"69\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-164\" mtype=\"lin\" steps=\"82\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1\" deltay=\"-295\" mtype=\"lin\" steps=\"59\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"7\" deltay=\"-37\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"15\" deltay=\"-25\" mtype=\"lin\" steps=\"5\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"27\" deltay=\"-23\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"21\" deltay=\"-23\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"18\" deltay=\"-23\" mtype=\"lin\" steps=\"5\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"12\" deltay=\"-39\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"1\" deltay=\"-762\" mtype=\"lin\" steps=\"152\" repeat=\"-100\" />";
str = str + "<object action=\"survive\" stay=\"1\" setTrans=\"1\" stopMove=\"1\" stopShoot=\"1\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-2286\" deltay=\"2679\" mtype=\"lin\" steps=\"880\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"un_car2\" x=\"850\" y=\"3620\" plane=\"main\" depth=\"1238\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"100\" deltay=\"0\" mtype=\"lin\" steps=\"50\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"100\" deltay=\"0\" mtype=\"lin\" steps=\"33\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"1597\" deltay=\"-1\" mtype=\"lin\" steps=\"399\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"28\" deltay=\"-7\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"22\" deltay=\"-13\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"17\" deltay=\"-22\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"9\" deltay=\"-29\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"4\" deltay=\"-29\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-711\" mtype=\"lin\" steps=\"177\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"7\" deltay=\"-34\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"12\" deltay=\"-27\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"18\" deltay=\"-15\" mtype=\"lin\" steps=\"5\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"21\" deltay=\"-14\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"31\" deltay=\"-9\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"227\" deltay=\"0\" mtype=\"lin\" steps=\"56\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"27\" deltay=\"-5\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"20\" deltay=\"-10\" mtype=\"lin\" steps=\"5\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"18\" deltay=\"-23\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"10\" deltay=\"-38\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"5\" deltay=\"-37\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"3\" deltay=\"-192\" mtype=\"lin\" steps=\"48\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"1\" deltay=\"-216\" mtype=\"lin\" steps=\"108\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-300\" mtype=\"lin\" steps=\"50\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"7\" deltay=\"-38\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"15\" deltay=\"-23\" mtype=\"lin\" steps=\"5\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"25\" deltay=\"-29\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"23\" deltay=\"-23\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"15\" deltay=\"-23\" mtype=\"lin\" steps=\"5\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"7\" deltay=\"-35\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"1\" deltay=\"-694\" mtype=\"lin\" steps=\"138\" repeat=\"-100\" />";
str = str + "<object action=\"survive\" stay=\"1\" setTrans=\"1\" stopMove=\"1\" stopShoot=\"1\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-2370\" deltay=\"2597\" mtype=\"lin\" steps=\"1171\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"truck_oil_2\" x=\"1560\" y=\"3440\" plane=\"main\" depth=\"1239\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"45\" mtype=\"lin\" steps=\"22\" repeat=\"-100\" rotateTile=\"1\" deltar=\"180\" rtype=\"lin\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"120\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1\" deltay=\"40\" mtype=\"lin\" steps=\"10\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"8\" deltay=\"32\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"16\" deltay=\"25\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"22\" deltay=\"19\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"25\" deltay=\"11\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"28\" deltay=\"3\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"498\" deltay=\"-1\" mtype=\"lin\" steps=\"124\" repeat=\"-100\" />";
str = str + "<object action=\"kill\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-596\" deltay=\"-174\" mtype=\"lin\" steps=\"155\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"truck_oil_2\" x=\"1510\" y=\"3380\" plane=\"main\" depth=\"1240\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1\" deltay=\"22\" mtype=\"lin\" steps=\"11\" repeat=\"-100\" rotateTile=\"1\" deltar=\"180\" rtype=\"lin\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"135\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"119\" mtype=\"lin\" steps=\"59\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"8\" deltay=\"32\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"16\" deltay=\"25\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"22\" deltay=\"19\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"25\" deltay=\"11\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"28\" deltay=\"3\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"349\" deltay=\"0\" mtype=\"lin\" steps=\"87\" repeat=\"-100\" />";
str = str + "<object action=\"kill\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-447\" deltay=\"-231\" mtype=\"lin\" steps=\"125\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"truck_oil_2\" x=\"3810\" y=\"3600\" plane=\"main\" depth=\"1241\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-35\" deltay=\"0\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-90\" rtype=\"lin\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"290\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-944\" deltay=\"-1\" mtype=\"lin\" steps=\"188\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-25\" deltay=\"-5\" mtype=\"lin\" steps=\"5\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-22\" deltay=\"-11\" mtype=\"lin\" steps=\"4\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-18\" deltay=\"-19\" mtype=\"lin\" steps=\"5\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-10\" deltay=\"-23\" mtype=\"lin\" steps=\"5\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-5\" deltay=\"-32\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"1\" deltay=\"-118\" mtype=\"lin\" steps=\"16\" repeat=\"-100\" />";
str = str + "<object action=\"kill\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"truck_oil_2\" x=\"2020\" y=\"2770\" plane=\"main\" depth=\"1242\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"35\" deltay=\"0\" mtype=\"lin\" steps=\"5\" repeat=\"-100\" rotateTile=\"1\" deltar=\"90\" rtype=\"lin\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"600\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"988\" deltay=\"0\" mtype=\"lin\" steps=\"164\" repeat=\"-100\" />";
str = str + "<object action=\"kill\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"truck_oil_2\" x=\"3460\" y=\"3020\" plane=\"main\" depth=\"1243\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"650\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1\" deltay=\"-215\" mtype=\"lin\" steps=\"53\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-5\" deltay=\"-31\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-12\" deltay=\"-23\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-20\" deltay=\"-21\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-25\" deltay=\"-12\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-32\" deltay=\"-6\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-124\" deltay=\"0\" mtype=\"lin\" steps=\"31\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-27\" deltay=\"-6\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-24\" deltay=\"-13\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-20\" deltay=\"-23\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-12\" deltay=\"-20\" mtype=\"lin\" steps=\"5\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-5\" deltay=\"-31\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-2\" deltay=\"-166\" mtype=\"lin\" steps=\"41\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"1\" deltay=\"-38\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" />";
str = str + "<object action=\"kill\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"2260\" y=\"3430\" plane=\"main\" depth=\"1244\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-75\" deltay=\"81\" mtype=\"lin\" steps=\"55\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"75\" deltay=\"-81\" mtype=\"lin\" steps=\"55\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"2190\" y=\"3400\" plane=\"main\" depth=\"1245\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-72\" deltay=\"54\" mtype=\"lin\" steps=\"45\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"72\" deltay=\"-54\" mtype=\"lin\" steps=\"45\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2060\" y=\"3440\" plane=\"main\" depth=\"1246\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"97\" deltay=\"-50\" mtype=\"lin\" steps=\"27\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-97\" deltay=\"50\" mtype=\"lin\" steps=\"27\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2130\" y=\"3500\" plane=\"main\" depth=\"1247\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"103\" deltay=\"-91\" mtype=\"lin\" steps=\"34\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-103\" deltay=\"91\" mtype=\"lin\" steps=\"34\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2220\" y=\"3550\" plane=\"main\" depth=\"1248\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"67\" deltay=\"-100\" mtype=\"lin\" steps=\"30\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-67\" deltay=\"100\" mtype=\"lin\" steps=\"30\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"2160\" y=\"3810\" plane=\"main\" depth=\"1249\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"118\" deltay=\"38\" mtype=\"lin\" steps=\"61\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-118\" deltay=\"-38\" mtype=\"lin\" steps=\"61\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2310\" y=\"3910\" plane=\"main\" depth=\"1250\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-122\" deltay=\"-44\" mtype=\"lin\" steps=\"32\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"122\" deltay=\"44\" mtype=\"lin\" steps=\"32\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2340\" y=\"3820\" plane=\"main\" depth=\"1251\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-123\" deltay=\"-40\" mtype=\"lin\" steps=\"32\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"123\" deltay=\"40\" mtype=\"lin\" steps=\"32\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2470\" y=\"3530\" plane=\"main\" depth=\"1252\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"147\" deltay=\"7\" mtype=\"lin\" steps=\"73\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"16\" deltay=\"-97\" mtype=\"lin\" steps=\"49\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-163\" deltay=\"90\" mtype=\"lin\" steps=\"93\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2490\" y=\"3350\" plane=\"main\" depth=\"1253\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"106\" deltay=\"44\" mtype=\"lin\" steps=\"57\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-125\" deltay=\"81\" mtype=\"lin\" steps=\"74\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"19\" deltay=\"-125\" mtype=\"lin\" steps=\"63\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"tank_pvo1_2\" x=\"2830\" y=\"3480\" plane=\"main\" depth=\"1254\"/>";
str = str + "<object tile=\"gunner\" x=\"2750\" y=\"2590\" plane=\"main\" depth=\"1255\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-9\" deltay=\"27\" mtype=\"lin\" steps=\"14\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"9\" deltay=\"-27\" mtype=\"lin\" steps=\"14\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"2460\" y=\"2570\" plane=\"main\" depth=\"1256\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"60\" deltay=\"84\" mtype=\"lin\" steps=\"51\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-60\" deltay=\"-84\" mtype=\"lin\" steps=\"51\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"2800\" y=\"2460\" plane=\"main\" depth=\"1257\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"5\" deltay=\"184\" mtype=\"lin\" steps=\"92\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-5\" deltay=\"-184\" mtype=\"lin\" steps=\"92\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"2950\" y=\"2430\" plane=\"main\" depth=\"1258\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"57\" deltay=\"-7\" mtype=\"lin\" steps=\"28\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-57\" deltay=\"7\" mtype=\"lin\" steps=\"28\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"2830\" y=\"2270\" plane=\"main\" depth=\"1259\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"95\" deltay=\"54\" mtype=\"lin\" steps=\"54\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"106\" deltay=\"14\" mtype=\"lin\" steps=\"53\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-145\" deltay=\"2\" mtype=\"lin\" steps=\"72\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-56\" deltay=\"-70\" mtype=\"lin\" steps=\"44\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"3040\" y=\"3010\" plane=\"main\" depth=\"1260\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-131\" deltay=\"-160\" mtype=\"lin\" steps=\"103\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"131\" deltay=\"160\" mtype=\"lin\" steps=\"103\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"3130\" y=\"2920\" plane=\"main\" depth=\"1261\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-167\" deltay=\"-103\" mtype=\"lin\" steps=\"98\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"167\" deltay=\"103\" mtype=\"lin\" steps=\"98\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"3250\" y=\"2470\" plane=\"main\" depth=\"1262\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-54\" deltay=\"66\" mtype=\"lin\" steps=\"42\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"54\" deltay=\"-66\" mtype=\"lin\" steps=\"42\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"3290\" y=\"2510\" plane=\"main\" depth=\"1263\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-23\" deltay=\"114\" mtype=\"lin\" steps=\"58\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"23\" deltay=\"-114\" mtype=\"lin\" steps=\"58\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"3340\" y=\"2640\" plane=\"main\" depth=\"1264\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-2\" deltay=\"-81\" mtype=\"lin\" steps=\"40\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"2\" deltay=\"81\" mtype=\"lin\" steps=\"40\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"palms1\" x=\"770\" y=\"2930\" plane=\"nearest\" depth=\"1265\"/>";
str = str + "<object tile=\"palms1\" x=\"780\" y=\"2990\" plane=\"nearest\" depth=\"1266\"/>";
str = str + "<object tile=\"palms1\" x=\"770\" y=\"3100\" plane=\"nearest\" depth=\"1267\"/>";
str = str + "<object tile=\"palms1\" x=\"800\" y=\"3100\" plane=\"nearest\" depth=\"1268\"/>";
str = str + "<object tile=\"palms1\" x=\"790\" y=\"3060\" plane=\"nearest\" depth=\"1269\"/>";
str = str + "<object tile=\"palms1\" x=\"820\" y=\"3010\" plane=\"nearest\" depth=\"1270\"/>";
str = str + "<object tile=\"palms1\" x=\"840\" y=\"2760\" plane=\"nearest\" depth=\"1271\"/>";
str = str + "<object tile=\"palms4\" x=\"1880\" y=\"2400\" plane=\"nearest\" depth=\"1272\"/>";
str = str + "<object tile=\"palms5\" x=\"1780\" y=\"2230\" plane=\"nearest\" depth=\"1273\"/>";
str = str + "<object tile=\"palms1\" x=\"1970\" y=\"2350\" plane=\"nearest\" depth=\"1274\"/>";
str = str + "<object tile=\"palms1\" x=\"1930\" y=\"2300\" plane=\"nearest\" depth=\"1275\"/>";
str = str + "<object tile=\"palms1\" x=\"1970\" y=\"2260\" plane=\"nearest\" depth=\"1276\"/>";
str = str + "<object tile=\"palms1\" x=\"1710\" y=\"2260\" plane=\"nearest\" depth=\"1277\"/>";
str = str + "<object tile=\"palms1\" x=\"1680\" y=\"2300\" plane=\"nearest\" depth=\"1278\"/>";
str = str + "<object tile=\"palms1\" x=\"1440\" y=\"2230\" plane=\"nearest\" depth=\"1279\"/>";
str = str + "<object tile=\"palms3\" x=\"1540\" y=\"2190\" plane=\"nearest\" depth=\"1280\"/>";
str = str + "<object tile=\"palms1\" x=\"1670\" y=\"2260\" plane=\"nearest\" depth=\"1281\"/>";
str = str + "<object tile=\"palms1\" x=\"1510\" y=\"2260\" plane=\"nearest\" depth=\"1282\"/>";
str = str + "<object tile=\"palms1\" x=\"1480\" y=\"2190\" plane=\"nearest\" depth=\"1283\"/>";
str = str + "<object tile=\"palms1\" x=\"1400\" y=\"2190\" plane=\"nearest\" depth=\"1284\"/>";
str = str + "<object tile=\"palms1\" x=\"1680\" y=\"2220\" plane=\"nearest\" depth=\"1285\"/>";
str = str + "<object tile=\"palms1\" x=\"1740\" y=\"2220\" plane=\"nearest\" depth=\"1286\"/>";
str = str + "<object tile=\"palms1\" x=\"1740\" y=\"2280\" plane=\"nearest\" depth=\"1287\"/>";
str = str + "<object tile=\"palms1\" x=\"1660\" y=\"2330\" plane=\"nearest\" depth=\"1288\"/>";
str = str + "<object tile=\"palms1\" x=\"1530\" y=\"2310\" plane=\"nearest\" depth=\"1289\"/>";
str = str + "<object tile=\"palms3\" x=\"1610\" y=\"3000\" plane=\"nearest\" depth=\"1290\"/>";
str = str + "<object tile=\"palms4\" x=\"1810\" y=\"2990\" plane=\"nearest\" depth=\"1291\"/>";
str = str + "<object tile=\"palms1\" x=\"1930\" y=\"3060\" plane=\"nearest\" depth=\"1292\"/>";
str = str + "<object tile=\"palms1\" x=\"1960\" y=\"3080\" plane=\"nearest\" depth=\"1293\"/>";
str = str + "<object tile=\"palms1\" x=\"1530\" y=\"3090\" plane=\"nearest\" depth=\"1294\"/>";
str = str + "<object tile=\"palms1\" x=\"1570\" y=\"3080\" plane=\"nearest\" depth=\"1295\"/>";
str = str + "<object tile=\"palms1\" x=\"1750\" y=\"3070\" plane=\"nearest\" depth=\"1296\"/>";
str = str + "<object tile=\"palms1\" x=\"1750\" y=\"3030\" plane=\"nearest\" depth=\"1297\"/>";
str = str + "<object tile=\"palms1\" x=\"1900\" y=\"2520\" plane=\"nearest\" depth=\"1298\"/>";
str = str + "<object tile=\"palms1\" x=\"1840\" y=\"2820\" plane=\"nearest\" depth=\"1299\"/>";
str = str + "<object tile=\"palms1\" x=\"1860\" y=\"2780\" plane=\"nearest\" depth=\"1300\"/>";
str = str + "<object tile=\"palms1\" x=\"1850\" y=\"2910\" plane=\"nearest\" depth=\"1301\"/>";
str = str + "<object tile=\"palms1\" x=\"1910\" y=\"2560\" plane=\"nearest\" depth=\"1302\"/>";
str = str + "<object tile=\"palms5\" x=\"1360\" y=\"1740\" plane=\"nearest\" depth=\"1303\"/>";
str = str + "<object tile=\"palms5\" x=\"1490\" y=\"1770\" plane=\"nearest\" depth=\"1304\"/>";
str = str + "<object tile=\"palms5\" x=\"1460\" y=\"1090\" plane=\"nearest\" depth=\"1305\"/>";
str = str + "<object tile=\"palms4\" x=\"1360\" y=\"1830\" plane=\"nearest\" depth=\"1306\"/>";
str = str + "<object tile=\"palms4\" x=\"1360\" y=\"1030\" plane=\"nearest\" depth=\"1307\"/>";
str = str + "<object tile=\"palms1\" x=\"1570\" y=\"1720\" plane=\"nearest\" depth=\"1308\"/>";
str = str + "<object tile=\"palms1\" x=\"1610\" y=\"1690\" plane=\"nearest\" depth=\"1309\"/>";
str = str + "<object tile=\"palms1\" x=\"1600\" y=\"1750\" plane=\"nearest\" depth=\"1310\"/>";
str = str + "<object tile=\"palms1\" x=\"1360\" y=\"1980\" plane=\"nearest\" depth=\"1311\"/>";
str = str + "<object tile=\"palms5\" x=\"1460\" y=\"1880\" plane=\"nearest\" depth=\"1312\"/>";
str = str + "<object tile=\"palms4\" x=\"1370\" y=\"2080\" plane=\"nearest\" depth=\"1313\"/>";
str = str + "<object tile=\"palms4\" x=\"1400\" y=\"1970\" plane=\"nearest\" depth=\"1314\"/>";
str = str + "<object tile=\"palms4\" x=\"1500\" y=\"2030\" plane=\"nearest\" depth=\"1315\"/>";
str = str + "<object tile=\"palms1\" x=\"1380\" y=\"2240\" plane=\"nearest\" depth=\"1316\"/>";
str = str + "<object tile=\"palms1\" x=\"1590\" y=\"1140\" plane=\"nearest\" depth=\"1317\"/>";
str = str + "<object tile=\"palms5\" x=\"1380\" y=\"800\" plane=\"nearest\" depth=\"1318\"/>";
str = str + "<object tile=\"palms4\" x=\"1530\" y=\"670\" plane=\"nearest\" depth=\"1319\"/>";
str = str + "<object tile=\"palms4\" x=\"1370\" y=\"890\" plane=\"nearest\" depth=\"1320\"/>";
str = str + "<object tile=\"palms3\" x=\"1530\" y=\"800\" plane=\"nearest\" depth=\"1321\"/>";
str = str + "<object tile=\"palms1\" x=\"1440\" y=\"900\" plane=\"nearest\" depth=\"1322\"/>";
str = str + "<object tile=\"palms1\" x=\"1530\" y=\"850\" plane=\"nearest\" depth=\"1323\"/>";
str = str + "<object tile=\"palms1\" x=\"1450\" y=\"1050\" plane=\"nearest\" depth=\"1324\"/>";
str = str + "<object tile=\"palms3\" x=\"1540\" y=\"910\" plane=\"nearest\" depth=\"1325\"/>";
str = str + "<object tile=\"palms3\" x=\"1500\" y=\"1000\" plane=\"nearest\" depth=\"1326\"/>";
str = str + "<object tile=\"palms1\" x=\"1540\" y=\"970\" plane=\"nearest\" depth=\"1327\"/>";
str = str + "<object tile=\"palms1\" x=\"1580\" y=\"1030\" plane=\"nearest\" depth=\"1328\"/>";
str = str + "<object tile=\"palms1\" x=\"790\" y=\"2460\" plane=\"nearest\" depth=\"1329\"/>";
str = str + "<object tile=\"palms1\" x=\"830\" y=\"2470\" plane=\"nearest\" depth=\"1330\"/>";
str = str + "<object tile=\"palms1\" x=\"780\" y=\"1540\" plane=\"nearest\" depth=\"1331\"/>";
str = str + "<object tile=\"palms1\" x=\"840\" y=\"1420\" plane=\"nearest\" depth=\"1332\"/>";
str = str + "<object tile=\"palms1\" x=\"790\" y=\"1300\" plane=\"nearest\" depth=\"1333\"/>";
str = str + "<object tile=\"palms1\" x=\"1140\" y=\"1260\" plane=\"nearest\" depth=\"1334\"/>";
str = str + "<object tile=\"palms1\" x=\"1120\" y=\"1290\" plane=\"nearest\" depth=\"1335\"/>";
str = str + "<object tile=\"palms1\" x=\"1230\" y=\"1320\" plane=\"nearest\" depth=\"1336\"/>";
str = str + "<object tile=\"palms1\" x=\"1180\" y=\"1320\" plane=\"nearest\" depth=\"1337\"/>";
str = str + "<object tile=\"palms1\" x=\"780\" y=\"700\" plane=\"nearest\" depth=\"1338\"/>";
str = str + "<object tile=\"palms1\" x=\"800\" y=\"630\" plane=\"nearest\" depth=\"1339\"/>";
str = str + "<object tile=\"palms1\" x=\"1030\" y=\"640\" plane=\"nearest\" depth=\"1340\"/>";
str = str + "<object tile=\"palms1\" x=\"1530\" y=\"630\" plane=\"nearest\" depth=\"1341\"/>";
str = str + "<object tile=\"palms1\" x=\"1610\" y=\"640\" plane=\"nearest\" depth=\"1342\"/>";
str = str + "<object tile=\"palms1\" x=\"1030\" y=\"930\" plane=\"nearest\" depth=\"1343\"/>";
str = str + "<object tile=\"palms1\" x=\"770\" y=\"970\" plane=\"nearest\" depth=\"1344\"/>";
str = str + "<object tile=\"palms1\" x=\"800\" y=\"920\" plane=\"nearest\" depth=\"1345\"/>";
str = str + "<object tile=\"palms1\" x=\"800\" y=\"850\" plane=\"nearest\" depth=\"1346\"/>";
str = str + "<object tile=\"palms1\" x=\"1540\" y=\"2100\" plane=\"nearest\" depth=\"1347\"/>";
str = str + "<object tile=\"palms1\" x=\"1200\" y=\"1590\" plane=\"nearest\" depth=\"1348\"/>";
str = str + "<object tile=\"palms1\" x=\"1220\" y=\"1630\" plane=\"nearest\" depth=\"1349\"/>";
str = str + "<object tile=\"palms1\" x=\"1220\" y=\"1600\" plane=\"nearest\" depth=\"1350\"/>";
str = str + "<object tile=\"palms1\" x=\"770\" y=\"2170\" plane=\"nearest\" depth=\"1351\"/>";
str = str + "<object tile=\"palms1\" x=\"780\" y=\"2050\" plane=\"nearest\" depth=\"1352\"/>";
str = str + "<object tile=\"palms1\" x=\"960\" y=\"1860\" plane=\"nearest\" depth=\"1353\"/>";
str = str + "<object tile=\"palms5\" x=\"2140\" y=\"2030\" plane=\"nearest\" depth=\"1354\"/>";
str = str + "<object tile=\"palms4\" x=\"1670\" y=\"1850\" plane=\"nearest\" depth=\"1355\"/>";
str = str + "<object tile=\"palms3\" x=\"2370\" y=\"2060\" plane=\"nearest\" depth=\"1356\"/>";
str = str + "<object tile=\"palms1\" x=\"2350\" y=\"2110\" plane=\"nearest\" depth=\"1357\"/>";
str = str + "<object tile=\"palms1\" x=\"2520\" y=\"1860\" plane=\"nearest\" depth=\"1358\"/>";
str = str + "<object tile=\"palms1\" x=\"1760\" y=\"1790\" plane=\"nearest\" depth=\"1359\"/>";
str = str + "<object tile=\"palms1\" x=\"1860\" y=\"2100\" plane=\"nearest\" depth=\"1360\"/>";
str = str + "<object tile=\"palms1\" x=\"1920\" y=\"2030\" plane=\"nearest\" depth=\"1361\"/>";
str = str + "<object tile=\"palms1\" x=\"2170\" y=\"2110\" plane=\"nearest\" depth=\"1362\"/>";
str = str + "<object tile=\"palms1\" x=\"2310\" y=\"2110\" plane=\"nearest\" depth=\"1363\"/>";
str = str + "<object tile=\"palms1\" x=\"2040\" y=\"1540\" plane=\"nearest\" depth=\"1364\"/>";
str = str + "<object tile=\"palms5\" x=\"1730\" y=\"3390\" plane=\"nearest\" depth=\"1365\"/>";
str = str + "<object tile=\"palms5\" x=\"1690\" y=\"3260\" plane=\"nearest\" depth=\"1366\"/>";
str = str + "<object tile=\"palms5\" x=\"1340\" y=\"3250\" plane=\"nearest\" depth=\"1367\"/>";
str = str + "<object tile=\"palms5\" x=\"1050\" y=\"3310\" plane=\"nearest\" depth=\"1368\"/>";
str = str + "<object tile=\"palms5\" x=\"1230\" y=\"3760\" plane=\"nearest\" depth=\"1369\"/>";
str = str + "<object tile=\"palms5\" x=\"1060\" y=\"3730\" plane=\"nearest\" depth=\"1370\"/>";
str = str + "<object tile=\"palms5\" x=\"1680\" y=\"3770\" plane=\"nearest\" depth=\"1371\"/>";
str = str + "<object tile=\"palms5\" x=\"1420\" y=\"3770\" plane=\"nearest\" depth=\"1372\"/>";
str = str + "<object tile=\"palms4\" x=\"1530\" y=\"3420\" plane=\"nearest\" depth=\"1373\"/>";
str = str + "<object tile=\"palms4\" x=\"1160\" y=\"3430\" plane=\"nearest\" depth=\"1374\"/>";
str = str + "<object tile=\"palms4\" x=\"810\" y=\"3410\" plane=\"nearest\" depth=\"1375\"/>";
str = str + "<object tile=\"palms4\" x=\"1340\" y=\"3750\" plane=\"nearest\" depth=\"1376\"/>";
str = str + "<object tile=\"palms4\" x=\"1840\" y=\"3780\" plane=\"nearest\" depth=\"1377\"/>";
str = str + "<object tile=\"palms3\" x=\"1520\" y=\"3310\" plane=\"nearest\" depth=\"1378\"/>";
str = str + "<object tile=\"palms3\" x=\"950\" y=\"3340\" plane=\"nearest\" depth=\"1379\"/>";
str = str + "<object tile=\"palms1\" x=\"870\" y=\"3380\" plane=\"nearest\" depth=\"1380\"/>";
str = str + "<object tile=\"palms1\" x=\"1240\" y=\"3870\" plane=\"nearest\" depth=\"1381\"/>";
str = str + "<object tile=\"palms1\" x=\"1240\" y=\"3830\" plane=\"nearest\" depth=\"1382\"/>";
str = str + "<object tile=\"palms1\" x=\"1560\" y=\"3850\" plane=\"nearest\" depth=\"1383\"/>";
str = str + "<object tile=\"palms1\" x=\"1600\" y=\"3820\" plane=\"nearest\" depth=\"1384\"/>";
str = str + "<object tile=\"palms1\" x=\"1580\" y=\"3750\" plane=\"nearest\" depth=\"1385\"/>";
str = str + "<object tile=\"palms1\" x=\"1680\" y=\"3870\" plane=\"nearest\" depth=\"1386\"/>";
str = str + "<object tile=\"palms1\" x=\"1600\" y=\"3270\" plane=\"nearest\" depth=\"1387\"/>";
str = str + "<object tile=\"palms1\" x=\"1590\" y=\"3220\" plane=\"nearest\" depth=\"1388\"/>";
str = str + "<object tile=\"palms4\" x=\"1800\" y=\"3170\" plane=\"nearest\" depth=\"1389\"/>";
str = str + "<object tile=\"palms4\" x=\"1120\" y=\"3200\" plane=\"nearest\" depth=\"1390\"/>";
str = str + "<object tile=\"palms3\" x=\"980\" y=\"3230\" plane=\"nearest\" depth=\"1391\"/>";
str = str + "<object tile=\"palms3\" x=\"1890\" y=\"3230\" plane=\"nearest\" depth=\"1392\"/>";
str = str + "<object tile=\"palms1\" x=\"1280\" y=\"3230\" plane=\"nearest\" depth=\"1393\"/>";
str = str + "<object tile=\"palms1\" x=\"1340\" y=\"3190\" plane=\"nearest\" depth=\"1394\"/>";
str = str + "<object tile=\"palms1\" x=\"1240\" y=\"3190\" plane=\"nearest\" depth=\"1395\"/>";
str = str + "<object tile=\"palms1\" x=\"1230\" y=\"3340\" plane=\"nearest\" depth=\"1396\"/>";
str = str + "<object tile=\"palms4\" x=\"2010\" y=\"2220\" plane=\"nearest\" depth=\"1397\"/>";
str = str + "<object tile=\"palms3\" x=\"1950\" y=\"2430\" plane=\"nearest\" depth=\"1398\"/>";
str = str + "<object tile=\"palms3\" x=\"2040\" y=\"2330\" plane=\"nearest\" depth=\"1399\"/>";
str = str + "<object tile=\"palms1\" x=\"2020\" y=\"2440\" plane=\"nearest\" depth=\"1400\"/>";
str = str + "<object tile=\"palms1\" x=\"2030\" y=\"2400\" plane=\"nearest\" depth=\"1401\"/>";
str = str + "<object tile=\"palms1\" x=\"2020\" y=\"3100\" plane=\"nearest\" depth=\"1402\"/>";
str = str + "<object tile=\"palms1\" x=\"2010\" y=\"3060\" plane=\"nearest\" depth=\"1403\"/>";
str = str + "<object tile=\"palms1\" x=\"2060\" y=\"3020\" plane=\"nearest\" depth=\"1404\"/>";
str = str + "<object tile=\"palms1\" x=\"2040\" y=\"2970\" plane=\"nearest\" depth=\"1405\"/>";
str = str + "<object tile=\"palms1\" x=\"2070\" y=\"2950\" plane=\"nearest\" depth=\"1406\"/>";
str = str + "<object tile=\"palms1\" x=\"2070\" y=\"2890\" plane=\"nearest\" depth=\"1407\"/>";
str = str + "<object tile=\"palms5\" x=\"3690\" y=\"3380\" plane=\"nearest\" depth=\"1408\"/>";
str = str + "<object tile=\"palms5\" x=\"4050\" y=\"2880\" plane=\"nearest\" depth=\"1409\"/>";
str = str + "<object tile=\"palms4\" x=\"4230\" y=\"3420\" plane=\"nearest\" depth=\"1410\"/>";
str = str + "<object tile=\"palms4\" x=\"4170\" y=\"3050\" plane=\"nearest\" depth=\"1411\"/>";
str = str + "<object tile=\"palms3\" x=\"3740\" y=\"3280\" plane=\"nearest\" depth=\"1412\"/>";
str = str + "<object tile=\"palms3\" x=\"4210\" y=\"3020\" plane=\"nearest\" depth=\"1413\"/>";
str = str + "<object tile=\"palms1\" x=\"3790\" y=\"3210\" plane=\"nearest\" depth=\"1414\"/>";
str = str + "<object tile=\"palms1\" x=\"3710\" y=\"3490\" plane=\"nearest\" depth=\"1415\"/>";
str = str + "<object tile=\"palms1\" x=\"4290\" y=\"3340\" plane=\"nearest\" depth=\"1416\"/>";
str = str + "<object tile=\"palms1\" x=\"4300\" y=\"3410\" plane=\"nearest\" depth=\"1417\"/>";
str = str + "<object tile=\"palms1\" x=\"4340\" y=\"3380\" plane=\"nearest\" depth=\"1418\"/>";
str = str + "<object tile=\"palms1\" x=\"4390\" y=\"3310\" plane=\"nearest\" depth=\"1419\"/>";
str = str + "<object tile=\"palms1\" x=\"4330\" y=\"3250\" plane=\"nearest\" depth=\"1420\"/>";
str = str + "<object tile=\"palms1\" x=\"4320\" y=\"3150\" plane=\"nearest\" depth=\"1421\"/>";
str = str + "<object tile=\"palms1\" x=\"4350\" y=\"3510\" plane=\"nearest\" depth=\"1422\"/>";
str = str + "<object tile=\"palms1\" x=\"4410\" y=\"3500\" plane=\"nearest\" depth=\"1423\"/>";
str = str + "<object tile=\"palms1\" x=\"4340\" y=\"3450\" plane=\"nearest\" depth=\"1424\"/>";
str = str + "<object tile=\"palms1\" x=\"4020\" y=\"2840\" plane=\"nearest\" depth=\"1425\"/>";
str = str + "<object tile=\"palms1\" x=\"1990\" y=\"3330\" plane=\"nearest\" depth=\"1426\"/>";
str = str + "<object tile=\"palms1\" x=\"3700\" y=\"3310\" plane=\"nearest\" depth=\"1427\"/>";
str = str + "<object tile=\"palms1\" x=\"3590\" y=\"3480\" plane=\"nearest\" depth=\"1428\"/>";
str = str + "<object tile=\"palms1\" x=\"3630\" y=\"3450\" plane=\"nearest\" depth=\"1429\"/>";
str = str + "<object tile=\"palms1\" x=\"3630\" y=\"3490\" plane=\"nearest\" depth=\"1430\"/>";
str = str + "<object tile=\"palms1\" x=\"3850\" y=\"2870\" plane=\"nearest\" depth=\"1431\"/>";
str = str + "<object tile=\"palms1\" x=\"3870\" y=\"2840\" plane=\"nearest\" depth=\"1432\"/>";
str = str + "<object tile=\"palms1\" x=\"3760\" y=\"2790\" plane=\"nearest\" depth=\"1433\"/>";
str = str + "<object tile=\"palms5\" x=\"2060\" y=\"2440\" plane=\"nearest\" depth=\"1434\"/>";
str = str + "<object tile=\"palms4\" x=\"2010\" y=\"2530\" plane=\"nearest\" depth=\"1435\"/>";
str = str + "<object tile=\"palms4\" x=\"2100\" y=\"2210\" plane=\"nearest\" depth=\"1436\"/>";
str = str + "<object tile=\"palms3\" x=\"2100\" y=\"2340\" plane=\"nearest\" depth=\"1437\"/>";
str = str + "<object tile=\"palms3\" x=\"2050\" y=\"2800\" plane=\"nearest\" depth=\"1438\"/>";
str = str + "<object tile=\"palms5\" x=\"2110\" y=\"2990\" plane=\"nearest\" depth=\"1439\"/>";
str = str + "<object tile=\"palms1\" x=\"2160\" y=\"2960\" plane=\"nearest\" depth=\"1440\"/>";
str = str + "<object tile=\"palms1\" x=\"2150\" y=\"2850\" plane=\"nearest\" depth=\"1441\"/>";
str = str + "<object tile=\"palms1\" x=\"2110\" y=\"2950\" plane=\"nearest\" depth=\"1442\"/>";
str = str + "<object tile=\"palms1\" x=\"2070\" y=\"3110\" plane=\"nearest\" depth=\"1443\"/>";
str = str + "<object tile=\"palms1\" x=\"2100\" y=\"3120\" plane=\"nearest\" depth=\"1444\"/>";
str = str + "<object tile=\"palms1\" x=\"2040\" y=\"3200\" plane=\"nearest\" depth=\"1445\"/>";
str = str + "<object tile=\"palms1\" x=\"2040\" y=\"3240\" plane=\"nearest\" depth=\"1446\"/>";
str = str + "<object tile=\"palms5\" x=\"3000\" y=\"2760\" plane=\"nearest\" depth=\"1447\"/>";
str = str + "<object tile=\"palms5\" x=\"3240\" y=\"2520\" plane=\"nearest\" depth=\"1448\"/>";
str = str + "<object tile=\"palms4\" x=\"3170\" y=\"2530\" plane=\"nearest\" depth=\"1449\"/>";
str = str + "<object tile=\"palms5\" x=\"3300\" y=\"3310\" plane=\"nearest\" depth=\"1450\"/>";
str = str + "<object tile=\"palms3\" x=\"3350\" y=\"2500\" plane=\"nearest\" depth=\"1451\"/>";
str = str + "<object tile=\"palms1\" x=\"3440\" y=\"2500\" plane=\"nearest\" depth=\"1452\"/>";
str = str + "<object tile=\"palms1\" x=\"3480\" y=\"2490\" plane=\"nearest\" depth=\"1453\"/>";
str = str + "<object tile=\"palms1\" x=\"3450\" y=\"2650\" plane=\"nearest\" depth=\"1454\"/>";
str = str + "<object tile=\"palms1\" x=\"3070\" y=\"2900\" plane=\"nearest\" depth=\"1455\"/>";
str = str + "<object tile=\"palms1\" x=\"3100\" y=\"2910\" plane=\"nearest\" depth=\"1456\"/>";
str = str + "<object tile=\"palms1\" x=\"3120\" y=\"3060\" plane=\"nearest\" depth=\"1457\"/>";
str = str + "<object tile=\"palms1\" x=\"2890\" y=\"2910\" plane=\"nearest\" depth=\"1458\"/>";
str = str + "<object tile=\"palms1\" x=\"2940\" y=\"2870\" plane=\"nearest\" depth=\"1459\"/>";
str = str + "<object tile=\"palms1\" x=\"2940\" y=\"2940\" plane=\"nearest\" depth=\"1460\"/>";
str = str + "<object tile=\"palms1\" x=\"2910\" y=\"2910\" plane=\"nearest\" depth=\"1461\"/>";
str = str + "<object tile=\"palms1\" x=\"2930\" y=\"2910\" plane=\"nearest\" depth=\"1462\"/>";
str = str + "<object tile=\"palms5\" x=\"2220\" y=\"2500\" plane=\"nearest\" depth=\"1463\"/>";
str = str + "<object tile=\"palms4\" x=\"2700\" y=\"2220\" plane=\"nearest\" depth=\"1464\"/>";
str = str + "<object tile=\"palms3\" x=\"2670\" y=\"2310\" plane=\"nearest\" depth=\"1465\"/>";
str = str + "<object tile=\"palms1\" x=\"2250\" y=\"2460\" plane=\"nearest\" depth=\"1466\"/>";
str = str + "<object tile=\"palms1\" x=\"2300\" y=\"2620\" plane=\"nearest\" depth=\"1467\"/>";
str = str + "<object tile=\"palms1\" x=\"2530\" y=\"2370\" plane=\"nearest\" depth=\"1468\"/>";
str = str + "<object tile=\"palms1\" x=\"2430\" y=\"2360\" plane=\"nearest\" depth=\"1469\"/>";
str = str + "<object tile=\"palms1\" x=\"2440\" y=\"2390\" plane=\"nearest\" depth=\"1470\"/>";
str = str + "<object tile=\"palms1\" x=\"2410\" y=\"2410\" plane=\"nearest\" depth=\"1471\"/>";
str = str + "<object tile=\"null_tile\" x=\"0\" y=\"3940\" plane=\"nearest1\" depth=\"1472\"/>";
str = str + "<object tile=\"null_tile\" x=\"3290\" y=\"3940\" plane=\"nearest1\" depth=\"1473\"/>";
str = str + "<object tile=\"null_tile\" x=\"2740\" y=\"3940\" plane=\"nearest1\" depth=\"1474\"/>";
str = str + "<object tile=\"null_tile\" x=\"2190\" y=\"3940\" plane=\"nearest1\" depth=\"1475\"/>";
str = str + "<object tile=\"null_tile\" x=\"1640\" y=\"3940\" plane=\"nearest1\" depth=\"1476\"/>";
str = str + "<object tile=\"null_tile\" x=\"1100\" y=\"3940\" plane=\"nearest1\" depth=\"1477\"/>";
str = str + "<object tile=\"null_tile\" x=\"550\" y=\"3940\" plane=\"nearest1\" depth=\"1478\"/>";
str = str + "<object tile=\"null_tile\" x=\"3980\" y=\"3540\" plane=\"nearest1\" depth=\"1479\"/>";
str = str + "<object tile=\"null_tile\" x=\"3980\" y=\"3140\" plane=\"nearest1\" depth=\"1480\"/>";
str = str + "<object tile=\"null_tile\" x=\"3980\" y=\"2740\" plane=\"nearest1\" depth=\"1481\"/>";
str = str + "<object tile=\"null_tile\" x=\"3730\" y=\"2340\" plane=\"nearest1\" depth=\"1482\"/>";
str = str + "<object tile=\"null_tile\" x=\"3730\" y=\"1940\" plane=\"nearest1\" depth=\"1483\"/>";
str = str + "<object tile=\"null_tile\" x=\"3730\" y=\"1540\" plane=\"nearest1\" depth=\"1484\"/>";
str = str + "<object tile=\"null_tile\" x=\"3730\" y=\"1140\" plane=\"nearest1\" depth=\"1485\"/>";
str = str + "<object tile=\"null_tile\" x=\"3730\" y=\"740\" plane=\"nearest1\" depth=\"1486\"/>";
str = str + "<object tile=\"null_tile\" x=\"3470\" y=\"340\" plane=\"nearest1\" depth=\"1487\"/>";
str = str + "<object tile=\"null_tile\" x=\"2920\" y=\"340\" plane=\"nearest1\" depth=\"1488\"/>";
str = str + "<object tile=\"null_tile\" x=\"2370\" y=\"550\" plane=\"nearest1\" depth=\"1489\"/>";
str = str + "<object tile=\"null_tile\" x=\"2370\" y=\"950\" plane=\"nearest1\" depth=\"1490\"/>";
str = str + "<object tile=\"null_tile\" x=\"2370\" y=\"1350\" plane=\"nearest1\" depth=\"1491\"/>";
str = str + "<object tile=\"null_tile\" x=\"1820\" y=\"1750\" plane=\"nearest1\" depth=\"1492\"/>";
str = str + "<object tile=\"null_tile\" x=\"1590\" y=\"2150\" plane=\"nearest1\" depth=\"1493\"/>";
str = str + "<object tile=\"null_tile\" x=\"1350\" y=\"2550\" plane=\"nearest1\" depth=\"1494\"/>";
str = str + "<object tile=\"null_tile\" x=\"1100\" y=\"2950\" plane=\"nearest1\" depth=\"1495\"/>";
str = str + "<object tile=\"null_tile\" x=\"550\" y=\"2950\" plane=\"nearest1\" depth=\"1496\"/>";
str = str + "<object tile=\"null_tile\" x=\"2370\" y=\"1750\" plane=\"nearest1\" depth=\"1497\"/>";
str = str + "<object tile=\"null_tile\" x=\"0\" y=\"3140\" plane=\"nearest1\" depth=\"1498\"/>";
str = str + "<object tile=\"null_tile\" x=\"0\" y=\"3540\" plane=\"nearest1\" depth=\"1499\"/>";
str = str + "<object tile=\"null_tile\" x=\"3840\" y=\"3940\" plane=\"nearest1\" depth=\"1500\"/>";
str = str + "</array>";
str = str + "</object>";
str = str + "<object name=\"level_7\">";
str = str + "<var name=\"comment\" >Our delegation\u2019s humanitarian work is being undermined by the sabotage attacks perpetrated by the sectarians. Unrest has flared up in the city, and our people have been forced to take cover on the roofs of district mission offices. They must be urgently evacuated.";
str = str + "- top-priority assign: take members on the humanitarian mission on board your craft.";
str = str + "</var>";
str = str + "<array name=\"missions\">";
str = str + "<object group=\"host\" arrow=\"arr_3\" missionType=\"collect\" active=\"1\" timer=\"1000\" winAmount=\"15\" looseAmount=\"1\" actionTrue=\"startClip completedMission,score 100,win\" actionFalse=\"score 0,startClip failedMission, loose\"/>";
str = str + "</array>";
str = str + "<array name=\"level\">";
str = str + "<object tile=\"host\" x=\"1120\" y=\"2390\" plane=\"nearest1\" depth=\"1494\"/>";
str = str + "<object tile=\"host\" x=\"1030\" y=\"1980\" plane=\"nearest1\" depth=\"1495\"/>";
str = str + "<object tile=\"host\" x=\"1210\" y=\"1770\" plane=\"nearest1\" depth=\"1496\"/>";
str = str + "<object tile=\"host\" x=\"1020\" y=\"1410\" plane=\"nearest1\" depth=\"1497\"/>";
str = str + "<object tile=\"host\" x=\"1220\" y=\"1290\" plane=\"nearest1\" depth=\"1498\"/>";
str = str + "<object tile=\"host\" x=\"1240\" y=\"990\" plane=\"nearest1\" depth=\"1499\"/>";
str = str + "<object tile=\"host\" x=\"1000\" y=\"900\" plane=\"nearest1\" depth=\"1500\"/>";
str = str + "<object tile=\"host\" x=\"1430\" y=\"710\" plane=\"nearest1\" depth=\"1501\"/>";
str = str + "<object tile=\"host\" x=\"1550\" y=\"2420\" plane=\"nearest1\" depth=\"1502\"/>";
str = str + "<object tile=\"host\" x=\"1740\" y=\"2820\" plane=\"nearest1\" depth=\"1503\"/>";
str = str + "<object tile=\"host\" x=\"1120\" y=\"2200\" plane=\"nearest1\" depth=\"1504\"/>";
str = str + "<object tile=\"host\" x=\"1740\" y=\"2400\" plane=\"nearest1\" depth=\"1505\"/>";
str = str + "<object tile=\"host\" x=\"1120\" y=\"1550\" plane=\"nearest1\" depth=\"1506\"/>";
str = str + "<object tile=\"host\" x=\"930\" y=\"2390\" plane=\"nearest1\" depth=\"1508\"/>";
str = str + "<object tile=\"host\" x=\"870\" y=\"2180\" plane=\"nearest1\" depth=\"1509\"/>";
str = str + "<object tile=\"grass1\" x=\"1870\" y=\"2200\" plane=\"far3\" depth=\"1\"/>";
str = str + "<object tile=\"grass1\" x=\"1870\" y=\"2340\" plane=\"far3\" depth=\"2\"/>";
str = str + "<object tile=\"grass1\" x=\"1630\" y=\"2160\" plane=\"far3\" depth=\"3\"/>";
str = str + "<object tile=\"grass1\" x=\"4100\" y=\"3330\" plane=\"far3\" depth=\"4\"/>";
str = str + "<object tile=\"grass1\" x=\"4120\" y=\"3110\" plane=\"far3\" depth=\"5\"/>";
str = str + "<object tile=\"grass1\" x=\"3700\" y=\"3330\" plane=\"far3\" depth=\"6\"/>";
str = str + "<object tile=\"grass1\" x=\"3590\" y=\"3210\" plane=\"far3\" depth=\"7\"/>";
str = str + "<object tile=\"grass1\" x=\"3620\" y=\"3030\" plane=\"far3\" depth=\"8\"/>";
str = str + "<object tile=\"grass2\" x=\"3780\" y=\"3180\" plane=\"far3\" depth=\"9\"/>";
str = str + "<object tile=\"grass2\" x=\"4160\" y=\"2910\" plane=\"far3\" depth=\"10\"/>";
str = str + "<object tile=\"grass2\" x=\"4000\" y=\"2830\" plane=\"far3\" depth=\"11\"/>";
str = str + "<object tile=\"grass1\" x=\"3740\" y=\"2820\" plane=\"far3\" depth=\"12\"/>";
str = str + "<object tile=\"grass1\" x=\"1400\" y=\"2140\" plane=\"far3\" depth=\"13\"/>";
str = str + "<object tile=\"grass1\" x=\"1400\" y=\"1940\" plane=\"far3\" depth=\"14\"/>";
str = str + "<object tile=\"grass1\" x=\"1500\" y=\"2910\" plane=\"far3\" depth=\"15\"/>";
str = str + "<object tile=\"grass1\" x=\"1690\" y=\"2910\" plane=\"far3\" depth=\"16\"/>";
str = str + "<object tile=\"grass1\" x=\"1910\" y=\"2920\" plane=\"far3\" depth=\"17\"/>";
str = str + "<object tile=\"grass2\" x=\"1710\" y=\"2780\" plane=\"far3\" depth=\"18\"/>";
str = str + "<object tile=\"grass2\" x=\"2040\" y=\"2780\" plane=\"far3\" depth=\"19\"/>";
str = str + "<object tile=\"grass1\" x=\"1370\" y=\"1750\" plane=\"far3\" depth=\"20\"/>";
str = str + "<object tile=\"grass2\" x=\"1590\" y=\"1800\" plane=\"far3\" depth=\"21\"/>";
str = str + "<object tile=\"grass2\" x=\"1570\" y=\"1610\" plane=\"far3\" depth=\"22\"/>";
str = str + "<object tile=\"grass1\" x=\"1050\" y=\"1440\" plane=\"far3\" depth=\"23\"/>";
str = str + "<object tile=\"grass1\" x=\"1080\" y=\"1260\" plane=\"far3\" depth=\"24\"/>";
str = str + "<object tile=\"grass1\" x=\"880\" y=\"1430\" plane=\"far3\" depth=\"25\"/>";
str = str + "<object tile=\"grass1\" x=\"890\" y=\"1240\" plane=\"far3\" depth=\"26\"/>";
str = str + "<object tile=\"grass1\" x=\"680\" y=\"1230\" plane=\"far3\" depth=\"27\"/>";
str = str + "<object tile=\"grass1\" x=\"660\" y=\"1430\" plane=\"far3\" depth=\"28\"/>";
str = str + "<object tile=\"grass1\" x=\"770\" y=\"1090\" plane=\"far3\" depth=\"29\"/>";
str = str + "<object tile=\"grass1\" x=\"1540\" y=\"1140\" plane=\"far3\" depth=\"30\"/>";
str = str + "<object tile=\"grass1\" x=\"1460\" y=\"970\" plane=\"far3\" depth=\"31\"/>";
str = str + "<object tile=\"grass1\" x=\"1330\" y=\"930\" plane=\"far3\" depth=\"32\"/>";
str = str + "<object tile=\"grass1\" x=\"1460\" y=\"800\" plane=\"far3\" depth=\"33\"/>";
str = str + "<object tile=\"grass1\" x=\"1340\" y=\"760\" plane=\"far3\" depth=\"34\"/>";
str = str + "<object tile=\"grass1\" x=\"1440\" y=\"630\" plane=\"far3\" depth=\"35\"/>";
str = str + "<object tile=\"grass1\" x=\"760\" y=\"880\" plane=\"far3\" depth=\"36\"/>";
str = str + "<object tile=\"grass1\" x=\"940\" y=\"860\" plane=\"far3\" depth=\"37\"/>";
str = str + "<object tile=\"grass1\" x=\"800\" y=\"3330\" plane=\"far3\" depth=\"38\"/>";
str = str + "<object tile=\"grass1\" x=\"1020\" y=\"3350\" plane=\"far3\" depth=\"39\"/>";
str = str + "<object tile=\"grass1\" x=\"1240\" y=\"3350\" plane=\"far3\" depth=\"40\"/>";
str = str + "<object tile=\"grass1\" x=\"1430\" y=\"3340\" plane=\"far3\" depth=\"41\"/>";
str = str + "<object tile=\"grass1\" x=\"1640\" y=\"3350\" plane=\"far3\" depth=\"42\"/>";
str = str + "<object tile=\"grass1\" x=\"1720\" y=\"3150\" plane=\"far3\" depth=\"43\"/>";
str = str + "<object tile=\"grass1\" x=\"1500\" y=\"3130\" plane=\"far3\" depth=\"44\"/>";
str = str + "<object tile=\"grass1\" x=\"1310\" y=\"3150\" plane=\"far3\" depth=\"45\"/>";
str = str + "<object tile=\"grass1\" x=\"1050\" y=\"3220\" plane=\"far3\" depth=\"46\"/>";
str = str + "<object tile=\"grass1\" x=\"1140\" y=\"3710\" plane=\"far3\" depth=\"47\"/>";
str = str + "<object tile=\"grass1\" x=\"1390\" y=\"3700\" plane=\"far3\" depth=\"48\"/>";
str = str + "<object tile=\"grass1\" x=\"1600\" y=\"3730\" plane=\"far3\" depth=\"49\"/>";
str = str + "<object tile=\"grass2\" x=\"2000\" y=\"2440\" plane=\"far3\" depth=\"50\"/>";
str = str + "<object tile=\"grass2\" x=\"2020\" y=\"2230\" plane=\"far3\" depth=\"51\"/>";
str = str + "<object tile=\"grass2\" x=\"2050\" y=\"2360\" plane=\"far3\" depth=\"52\"/>";
str = str + "<object tile=\"grass2\" x=\"2100\" y=\"2930\" plane=\"far3\" depth=\"53\"/>";
str = str + "<object tile=\"grass2\" x=\"2100\" y=\"3010\" plane=\"far3\" depth=\"54\"/>";
str = str + "<object tile=\"grass2\" x=\"1960\" y=\"3100\" plane=\"far3\" depth=\"55\"/>";
str = str + "<object tile=\"grass2\" x=\"2170\" y=\"2180\" plane=\"far3\" depth=\"56\"/>";
str = str + "<object tile=\"grass2\" x=\"2170\" y=\"2100\" plane=\"far3\" depth=\"57\"/>";
str = str + "<object tile=\"grass2\" x=\"2140\" y=\"2030\" plane=\"far3\" depth=\"58\"/>";
str = str + "<object tile=\"grass2\" x=\"2310\" y=\"2040\" plane=\"far3\" depth=\"59\"/>";
str = str + "<object tile=\"grass2\" x=\"2470\" y=\"2040\" plane=\"far3\" depth=\"60\"/>";
str = str + "<object tile=\"grass2\" x=\"2540\" y=\"1970\" plane=\"far3\" depth=\"61\"/>";
str = str + "<object tile=\"grass2\" x=\"2420\" y=\"1920\" plane=\"far3\" depth=\"62\"/>";
str = str + "<object tile=\"grass2\" x=\"1930\" y=\"2090\" plane=\"far3\" depth=\"63\"/>";
str = str + "<object tile=\"grass2\" x=\"1810\" y=\"2090\" plane=\"far3\" depth=\"64\"/>";
str = str + "<object tile=\"grass2\" x=\"1660\" y=\"2080\" plane=\"far3\" depth=\"65\"/>";
str = str + "<object tile=\"grass2\" x=\"1620\" y=\"1450\" plane=\"far3\" depth=\"66\"/>";
str = str + "<object tile=\"grass2\" x=\"1570\" y=\"1460\" plane=\"far3\" depth=\"67\"/>";
str = str + "<object tile=\"grass2\" x=\"1940\" y=\"1460\" plane=\"far3\" depth=\"68\"/>";
str = str + "<object tile=\"grass2\" x=\"1750\" y=\"1460\" plane=\"far3\" depth=\"69\"/>";
str = str + "<object tile=\"grass2\" x=\"2020\" y=\"1460\" plane=\"far3\" depth=\"70\"/>";
str = str + "<object tile=\"grass2\" x=\"1810\" y=\"1650\" plane=\"far3\" depth=\"71\"/>";
str = str + "<object tile=\"grass2\" x=\"1830\" y=\"1800\" plane=\"far3\" depth=\"72\"/>";
str = str + "<object tile=\"grass2\" x=\"2440\" y=\"1690\" plane=\"far3\" depth=\"73\"/>";
str = str + "<object tile=\"grass2\" x=\"2540\" y=\"1520\" plane=\"far3\" depth=\"74\"/>";
str = str + "<object tile=\"grass2\" x=\"2300\" y=\"1500\" plane=\"far3\" depth=\"75\"/>";
str = str + "<object tile=\"grass2\" x=\"2270\" y=\"1430\" plane=\"far3\" depth=\"76\"/>";
str = str + "<object tile=\"grass2\" x=\"2610\" y=\"1470\" plane=\"far3\" depth=\"77\"/>";
str = str + "<object tile=\"grass2\" x=\"1710\" y=\"2470\" plane=\"far3\" depth=\"78\"/>";
str = str + "<object tile=\"grass2\" x=\"1800\" y=\"2470\" plane=\"far3\" depth=\"79\"/>";
str = str + "<object tile=\"grass2\" x=\"1520\" y=\"2450\" plane=\"far3\" depth=\"80\"/>";
str = str + "<object tile=\"grass2\" x=\"1310\" y=\"2440\" plane=\"far3\" depth=\"81\"/>";
str = str + "<object tile=\"grass2\" x=\"1380\" y=\"2470\" plane=\"far3\" depth=\"82\"/>";
str = str + "<object tile=\"grass2\" x=\"1350\" y=\"2340\" plane=\"far3\" depth=\"83\"/>";
str = str + "<object tile=\"grass2\" x=\"1480\" y=\"2710\" plane=\"far3\" depth=\"84\"/>";
str = str + "<object tile=\"grass2\" x=\"1660\" y=\"2750\" plane=\"far3\" depth=\"85\"/>";
str = str + "<object tile=\"grass2\" x=\"1100\" y=\"2290\" plane=\"far3\" depth=\"86\"/>";
str = str + "<object tile=\"grass2\" x=\"1110\" y=\"2150\" plane=\"far3\" depth=\"87\"/>";
str = str + "<object tile=\"grass2\" x=\"900\" y=\"2210\" plane=\"far3\" depth=\"88\"/>";
str = str + "<object tile=\"grass2\" x=\"790\" y=\"2310\" plane=\"far3\" depth=\"89\"/>";
str = str + "<object tile=\"grass2\" x=\"1060\" y=\"2250\" plane=\"far3\" depth=\"90\"/>";
str = str + "<object tile=\"grass2\" x=\"750\" y=\"2110\" plane=\"far3\" depth=\"91\"/>";
str = str + "<object tile=\"grass2\" x=\"740\" y=\"2030\" plane=\"far3\" depth=\"92\"/>";
str = str + "<object tile=\"grass2\" x=\"780\" y=\"1790\" plane=\"far3\" depth=\"93\"/>";
str = str + "<object tile=\"grass2\" x=\"840\" y=\"1820\" plane=\"far3\" depth=\"94\"/>";
str = str + "<object tile=\"grass2\" x=\"970\" y=\"1840\" plane=\"far3\" depth=\"95\"/>";
str = str + "<object tile=\"grass1\" x=\"3470\" y=\"2840\" plane=\"far3\" depth=\"96\"/>";
str = str + "<object tile=\"grass1\" x=\"3570\" y=\"2740\" plane=\"far3\" depth=\"97\"/>";
str = str + "<object tile=\"grass1\" x=\"3450\" y=\"2690\" plane=\"far3\" depth=\"98\"/>";
str = str + "<object tile=\"grass1\" x=\"3280\" y=\"3120\" plane=\"far3\" depth=\"99\"/>";
str = str + "<object tile=\"grass1\" x=\"3480\" y=\"3180\" plane=\"far3\" depth=\"100\"/>";
str = str + "<object tile=\"grass1\" x=\"3440\" y=\"3360\" plane=\"far3\" depth=\"101\"/>";
str = str + "<object tile=\"grass1\" x=\"3270\" y=\"3310\" plane=\"far3\" depth=\"102\"/>";
str = str + "<object tile=\"grass1\" x=\"3220\" y=\"3010\" plane=\"far3\" depth=\"103\"/>";
str = str + "<object tile=\"grass1\" x=\"3170\" y=\"2790\" plane=\"far3\" depth=\"104\"/>";
str = str + "<object tile=\"grass1\" x=\"3110\" y=\"2720\" plane=\"far3\" depth=\"105\"/>";
str = str + "<object tile=\"grass1\" x=\"3220\" y=\"3710\" plane=\"far3\" depth=\"106\"/>";
str = str + "<object tile=\"grass1\" x=\"3440\" y=\"3720\" plane=\"far3\" depth=\"107\"/>";
str = str + "<object tile=\"grass1\" x=\"3670\" y=\"3730\" plane=\"far3\" depth=\"108\"/>";
str = str + "<object tile=\"grass1\" x=\"3910\" y=\"3720\" plane=\"far3\" depth=\"109\"/>";
str = str + "<object tile=\"grass1\" x=\"3980\" y=\"3720\" plane=\"far3\" depth=\"110\"/>";
str = str + "<object tile=\"grass1\" x=\"4170\" y=\"3680\" plane=\"far3\" depth=\"111\"/>";
str = str + "<object tile=\"grass1\" x=\"3610\" y=\"3630\" plane=\"far3\" depth=\"112\"/>";
str = str + "<object tile=\"grass1\" x=\"3020\" y=\"3730\" plane=\"far3\" depth=\"113\"/>";
str = str + "<object tile=\"grass1\" x=\"3150\" y=\"3360\" plane=\"far3\" depth=\"114\"/>";
str = str + "<object tile=\"grass1\" x=\"3110\" y=\"2960\" plane=\"far3\" depth=\"115\"/>";
str = str + "<object tile=\"grass1\" x=\"3100\" y=\"3190\" plane=\"far3\" depth=\"116\"/>";
str = str + "<object tile=\"grass1\" x=\"2990\" y=\"2950\" plane=\"far3\" depth=\"117\"/>";
str = str + "<object tile=\"grass1\" x=\"2870\" y=\"2840\" plane=\"far3\" depth=\"118\"/>";
str = str + "<object tile=\"grass1\" x=\"2800\" y=\"2820\" plane=\"far3\" depth=\"119\"/>";
str = str + "<object tile=\"grass1\" x=\"2740\" y=\"2730\" plane=\"far3\" depth=\"120\"/>";
str = str + "<object tile=\"grass1\" x=\"2840\" y=\"2690\" plane=\"far3\" depth=\"121\"/>";
str = str + "<object tile=\"grass1\" x=\"3270\" y=\"2470\" plane=\"far3\" depth=\"122\"/>";
str = str + "<object tile=\"grass1\" x=\"3110\" y=\"2510\" plane=\"far3\" depth=\"123\"/>";
str = str + "<object tile=\"grass1\" x=\"2810\" y=\"2370\" plane=\"far3\" depth=\"124\"/>";
str = str + "<object tile=\"grass1\" x=\"2470\" y=\"2180\" plane=\"far3\" depth=\"125\"/>";
str = str + "<object tile=\"grass1\" x=\"2270\" y=\"2210\" plane=\"far3\" depth=\"126\"/>";
str = str + "<object tile=\"grass1\" x=\"2400\" y=\"2340\" plane=\"far3\" depth=\"127\"/>";
str = str + "<object tile=\"grass1\" x=\"2170\" y=\"2430\" plane=\"far3\" depth=\"128\"/>";
str = str + "<object tile=\"grass3\" x=\"2690\" y=\"2390\" plane=\"far3\" depth=\"129\"/>";
str = str + "<object tile=\"grass3\" x=\"2710\" y=\"2310\" plane=\"far3\" depth=\"130\"/>";
str = str + "<object tile=\"grass3\" x=\"2690\" y=\"2540\" plane=\"far3\" depth=\"131\"/>";
str = str + "<object tile=\"grass3\" x=\"2470\" y=\"2540\" plane=\"far3\" depth=\"132\"/>";
str = str + "<object tile=\"grass3\" x=\"2210\" y=\"2370\" plane=\"far3\" depth=\"133\"/>";
str = str + "<object tile=\"grass3\" x=\"2650\" y=\"2420\" plane=\"far3\" depth=\"134\"/>";
str = str + "<object tile=\"grass3\" x=\"2090\" y=\"2070\" plane=\"far3\" depth=\"135\"/>";
str = str + "<object tile=\"grass3\" x=\"2150\" y=\"2610\" plane=\"far3\" depth=\"136\"/>";
str = str + "<object tile=\"road_d1\" x=\"440\" y=\"3730\" plane=\"far2\" depth=\"137\"/>";
str = str + "<object tile=\"road_u2\" x=\"440\" y=\"3530\" plane=\"far2\" depth=\"138\"/>";
str = str + "<object tile=\"road_d1\" x=\"540\" y=\"3730\" plane=\"far2\" depth=\"139\"/>";
str = str + "<object tile=\"road_u2\" x=\"540\" y=\"3530\" plane=\"far2\" depth=\"140\"/>";
str = str + "<object tile=\"road_d1\" x=\"640\" y=\"3730\" plane=\"far2\" depth=\"141\"/>";
str = str + "<object tile=\"road_u2\" x=\"640\" y=\"3530\" plane=\"far2\" depth=\"142\"/>";
str = str + "<object tile=\"road_d1\" x=\"740\" y=\"3730\" plane=\"far2\" depth=\"143\"/>";
str = str + "<object tile=\"road_u2\" x=\"740\" y=\"3530\" plane=\"far2\" depth=\"144\"/>";
str = str + "<object tile=\"road_d1\" x=\"840\" y=\"3730\" plane=\"far2\" depth=\"145\"/>";
str = str + "<object tile=\"road_u2\" x=\"840\" y=\"3530\" plane=\"far2\" depth=\"146\"/>";
str = str + "<object tile=\"road_d1\" x=\"940\" y=\"3730\" plane=\"far2\" depth=\"147\"/>";
str = str + "<object tile=\"road_u2\" x=\"940\" y=\"3530\" plane=\"far2\" depth=\"148\"/>";
str = str + "<object tile=\"road_d1\" x=\"1040\" y=\"3730\" plane=\"far2\" depth=\"149\"/>";
str = str + "<object tile=\"road_u2\" x=\"1040\" y=\"3530\" plane=\"far2\" depth=\"150\"/>";
str = str + "<object tile=\"road_d1\" x=\"1140\" y=\"3730\" plane=\"far2\" depth=\"151\"/>";
str = str + "<object tile=\"road_u2\" x=\"1140\" y=\"3530\" plane=\"far2\" depth=\"152\"/>";
str = str + "<object tile=\"road_d1\" x=\"1240\" y=\"3730\" plane=\"far2\" depth=\"153\"/>";
str = str + "<object tile=\"road_u2\" x=\"1240\" y=\"3530\" plane=\"far2\" depth=\"154\"/>";
str = str + "<object tile=\"road_d1\" x=\"1640\" y=\"3730\" plane=\"far2\" depth=\"155\"/>";
str = str + "<object tile=\"road_u2\" x=\"1640\" y=\"3530\" plane=\"far2\" depth=\"156\"/>";
str = str + "<object tile=\"road_d1\" x=\"1740\" y=\"3730\" plane=\"far2\" depth=\"157\"/>";
str = str + "<object tile=\"road_u2\" x=\"1740\" y=\"3530\" plane=\"far2\" depth=\"158\"/>";
str = str + "<object tile=\"road_d1\" x=\"1840\" y=\"3730\" plane=\"far2\" depth=\"159\"/>";
str = str + "<object tile=\"road_u2\" x=\"1840\" y=\"3530\" plane=\"far2\" depth=\"160\"/>";
str = str + "<object tile=\"road_d1\" x=\"1940\" y=\"3730\" plane=\"far2\" depth=\"161\"/>";
str = str + "<object tile=\"road_u2\" x=\"1940\" y=\"3530\" plane=\"far2\" depth=\"162\"/>";
str = str + "<object tile=\"road_d1\" x=\"2040\" y=\"3730\" plane=\"far2\" depth=\"163\"/>";
str = str + "<object tile=\"road_u2\" x=\"2040\" y=\"3530\" plane=\"far2\" depth=\"164\"/>";
str = str + "<object tile=\"road_d1\" x=\"2140\" y=\"3730\" plane=\"far2\" depth=\"165\"/>";
str = str + "<object tile=\"road_u2\" x=\"2140\" y=\"3530\" plane=\"far2\" depth=\"166\"/>";
str = str + "<object tile=\"road_d1\" x=\"2240\" y=\"3730\" plane=\"far2\" depth=\"167\"/>";
str = str + "<object tile=\"road_u2\" x=\"2240\" y=\"3530\" plane=\"far2\" depth=\"168\"/>";
str = str + "<object tile=\"road_d1\" x=\"2340\" y=\"3730\" plane=\"far2\" depth=\"169\"/>";
str = str + "<object tile=\"road_u2\" x=\"2340\" y=\"3530\" plane=\"far2\" depth=\"170\"/>";
str = str + "<object tile=\"road_d1\" x=\"2440\" y=\"3730\" plane=\"far2\" depth=\"171\"/>";
str = str + "<object tile=\"road_u2\" x=\"2440\" y=\"3530\" plane=\"far2\" depth=\"172\"/>";
str = str + "<object tile=\"road_d1\" x=\"2540\" y=\"3730\" plane=\"far2\" depth=\"173\"/>";
str = str + "<object tile=\"road_d1\" x=\"2640\" y=\"3730\" plane=\"far2\" depth=\"174\"/>";
str = str + "<object tile=\"road_u_l\" x=\"2640\" y=\"3530\" plane=\"far2\" depth=\"175\"/>";
str = str + "<object tile=\"road_u2\" x=\"2540\" y=\"3530\" plane=\"far2\" depth=\"176\"/>";
str = str + "<object tile=\"road_c\" x=\"440\" y=\"3630\" plane=\"far2\" depth=\"177\"/>";
str = str + "<object tile=\"road_c\" x=\"540\" y=\"3630\" plane=\"far2\" depth=\"178\"/>";
str = str + "<object tile=\"road_c\" x=\"640\" y=\"3630\" plane=\"far2\" depth=\"179\"/>";
str = str + "<object tile=\"road_c\" x=\"740\" y=\"3630\" plane=\"far2\" depth=\"180\"/>";
str = str + "<object tile=\"road_c\" x=\"840\" y=\"3630\" plane=\"far2\" depth=\"181\"/>";
str = str + "<object tile=\"road_c\" x=\"940\" y=\"3630\" plane=\"far2\" depth=\"182\"/>";
str = str + "<object tile=\"road_c\" x=\"1040\" y=\"3630\" plane=\"far2\" depth=\"183\"/>";
str = str + "<object tile=\"road_c\" x=\"1140\" y=\"3630\" plane=\"far2\" depth=\"184\"/>";
str = str + "<object tile=\"road_c\" x=\"1240\" y=\"3630\" plane=\"far2\" depth=\"185\"/>";
str = str + "<object tile=\"road_c\" x=\"1640\" y=\"3630\" plane=\"far2\" depth=\"186\"/>";
str = str + "<object tile=\"road_c\" x=\"1740\" y=\"3630\" plane=\"far2\" depth=\"187\"/>";
str = str + "<object tile=\"road_c\" x=\"1840\" y=\"3630\" plane=\"far2\" depth=\"188\"/>";
str = str + "<object tile=\"road_c\" x=\"1940\" y=\"3630\" plane=\"far2\" depth=\"189\"/>";
str = str + "<object tile=\"road_c\" x=\"2040\" y=\"3630\" plane=\"far2\" depth=\"190\"/>";
str = str + "<object tile=\"road_c\" x=\"2140\" y=\"3630\" plane=\"far2\" depth=\"191\"/>";
str = str + "<object tile=\"road_c\" x=\"2240\" y=\"3630\" plane=\"far2\" depth=\"192\"/>";
str = str + "<object tile=\"road_c\" x=\"2340\" y=\"3630\" plane=\"far2\" depth=\"193\"/>";
str = str + "<object tile=\"road_c\" x=\"2440\" y=\"3630\" plane=\"far2\" depth=\"194\"/>";
str = str + "<object tile=\"road_c\" x=\"2540\" y=\"3630\" plane=\"far2\" depth=\"195\"/>";
str = str + "<object tile=\"road_c\" x=\"2640\" y=\"3630\" plane=\"far2\" depth=\"196\"/>";
str = str + "<object tile=\"road_d1\" x=\"1440\" y=\"3730\" plane=\"far2\" depth=\"197\"/>";
str = str + "<object tile=\"road_d1\" x=\"1540\" y=\"3730\" plane=\"far2\" depth=\"198\"/>";
str = str + "<object tile=\"road_c\" x=\"1440\" y=\"3630\" plane=\"far2\" depth=\"199\"/>";
str = str + "<object tile=\"road_c\" x=\"1540\" y=\"3630\" plane=\"far2\" depth=\"200\"/>";
str = str + "<object tile=\"road_d1\" x=\"1340\" y=\"3730\" plane=\"far2\" depth=\"201\"/>";
str = str + "<object tile=\"road_u2\" x=\"1340\" y=\"3530\" plane=\"far2\" depth=\"202\"/>";
str = str + "<object tile=\"road_c\" x=\"1340\" y=\"3630\" plane=\"far2\" depth=\"203\"/>";
str = str + "<object tile=\"road_u_r\" x=\"2740\" y=\"3530\" plane=\"far2\" depth=\"204\"/>";
str = str + "<object tile=\"road_d1\" x=\"2740\" y=\"3730\" plane=\"far2\" depth=\"205\"/>";
str = str + "<object tile=\"road_d1\" x=\"2840\" y=\"3730\" plane=\"far2\" depth=\"206\"/>";
str = str + "<object tile=\"road_u2\" x=\"2840\" y=\"3530\" plane=\"far2\" depth=\"207\"/>";
str = str + "<object tile=\"road_d1\" x=\"2940\" y=\"3730\" plane=\"far2\" depth=\"208\"/>";
str = str + "<object tile=\"road_u2\" x=\"2940\" y=\"3530\" plane=\"far2\" depth=\"209\"/>";
str = str + "<object tile=\"road_c\" x=\"2740\" y=\"3630\" plane=\"far2\" depth=\"210\"/>";
str = str + "<object tile=\"road_c\" x=\"2840\" y=\"3630\" plane=\"far2\" depth=\"211\"/>";
str = str + "<object tile=\"road_c\" x=\"2940\" y=\"3630\" plane=\"far2\" depth=\"212\"/>";
str = str + "<object tile=\"road_d1\" x=\"3040\" y=\"3730\" plane=\"far2\" depth=\"213\"/>";
str = str + "<object tile=\"road_u2\" x=\"3040\" y=\"3530\" plane=\"far2\" depth=\"214\"/>";
str = str + "<object tile=\"road_d1\" x=\"3140\" y=\"3730\" plane=\"far2\" depth=\"215\"/>";
str = str + "<object tile=\"road_u2\" x=\"3140\" y=\"3530\" plane=\"far2\" depth=\"216\"/>";
str = str + "<object tile=\"road_d1\" x=\"3240\" y=\"3730\" plane=\"far2\" depth=\"217\"/>";
str = str + "<object tile=\"road_u2\" x=\"3240\" y=\"3530\" plane=\"far2\" depth=\"218\"/>";
str = str + "<object tile=\"road_d1\" x=\"3340\" y=\"3730\" plane=\"far2\" depth=\"219\"/>";
str = str + "<object tile=\"road_u2\" x=\"3340\" y=\"3530\" plane=\"far2\" depth=\"220\"/>";
str = str + "<object tile=\"road_d1\" x=\"3740\" y=\"3730\" plane=\"far2\" depth=\"221\"/>";
str = str + "<object tile=\"road_u2\" x=\"3740\" y=\"3530\" plane=\"far2\" depth=\"222\"/>";
str = str + "<object tile=\"road_d1\" x=\"3840\" y=\"3730\" plane=\"far2\" depth=\"223\"/>";
str = str + "<object tile=\"road_u2\" x=\"3840\" y=\"3530\" plane=\"far2\" depth=\"224\"/>";
str = str + "<object tile=\"road_d1\" x=\"3940\" y=\"3730\" plane=\"far2\" depth=\"225\"/>";
str = str + "<object tile=\"road_d1\" x=\"4040\" y=\"3730\" plane=\"far2\" depth=\"226\"/>";
str = str + "<object tile=\"road_d1\" x=\"4140\" y=\"3730\" plane=\"far2\" depth=\"227\"/>";
str = str + "<object tile=\"road_u2\" x=\"4140\" y=\"3530\" plane=\"far2\" depth=\"228\"/>";
str = str + "<object tile=\"road_d1\" x=\"4240\" y=\"3730\" plane=\"far2\" depth=\"229\"/>";
str = str + "<object tile=\"road_u2\" x=\"4240\" y=\"3530\" plane=\"far2\" depth=\"230\"/>";
str = str + "<object tile=\"road_c\" x=\"3040\" y=\"3630\" plane=\"far2\" depth=\"231\"/>";
str = str + "<object tile=\"road_c\" x=\"3140\" y=\"3630\" plane=\"far2\" depth=\"232\"/>";
str = str + "<object tile=\"road_c\" x=\"3240\" y=\"3630\" plane=\"far2\" depth=\"233\"/>";
str = str + "<object tile=\"road_c\" x=\"3340\" y=\"3630\" plane=\"far2\" depth=\"234\"/>";
str = str + "<object tile=\"road_c\" x=\"3740\" y=\"3630\" plane=\"far2\" depth=\"235\"/>";
str = str + "<object tile=\"road_c\" x=\"3840\" y=\"3630\" plane=\"far2\" depth=\"236\"/>";
str = str + "<object tile=\"road_c\" x=\"3940\" y=\"3630\" plane=\"far2\" depth=\"237\"/>";
str = str + "<object tile=\"road_c\" x=\"4040\" y=\"3630\" plane=\"far2\" depth=\"238\"/>";
str = str + "<object tile=\"road_c\" x=\"4140\" y=\"3630\" plane=\"far2\" depth=\"239\"/>";
str = str + "<object tile=\"road_c\" x=\"4240\" y=\"3630\" plane=\"far2\" depth=\"240\"/>";
str = str + "<object tile=\"road_d1\" x=\"3540\" y=\"3730\" plane=\"far2\" depth=\"241\"/>";
str = str + "<object tile=\"road_u2\" x=\"3540\" y=\"3530\" plane=\"far2\" depth=\"242\"/>";
str = str + "<object tile=\"road_d1\" x=\"3640\" y=\"3730\" plane=\"far2\" depth=\"243\"/>";
str = str + "<object tile=\"road_u2\" x=\"3640\" y=\"3530\" plane=\"far2\" depth=\"244\"/>";
str = str + "<object tile=\"road_c\" x=\"3540\" y=\"3630\" plane=\"far2\" depth=\"245\"/>";
str = str + "<object tile=\"road_c\" x=\"3640\" y=\"3630\" plane=\"far2\" depth=\"246\"/>";
str = str + "<object tile=\"road_d1\" x=\"3440\" y=\"3730\" plane=\"far2\" depth=\"247\"/>";
str = str + "<object tile=\"road_u2\" x=\"3440\" y=\"3530\" plane=\"far2\" depth=\"248\"/>";
str = str + "<object tile=\"road_c\" x=\"3440\" y=\"3630\" plane=\"far2\" depth=\"249\"/>";
str = str + "<object tile=\"road_d1\" x=\"4340\" y=\"3730\" plane=\"far2\" depth=\"250\"/>";
str = str + "<object tile=\"road_u2\" x=\"4340\" y=\"3530\" plane=\"far2\" depth=\"251\"/>";
str = str + "<object tile=\"road_d1\" x=\"4440\" y=\"3730\" plane=\"far2\" depth=\"252\"/>";
str = str + "<object tile=\"road_u2\" x=\"4440\" y=\"3530\" plane=\"far2\" depth=\"253\"/>";
str = str + "<object tile=\"road_c\" x=\"4340\" y=\"3630\" plane=\"far2\" depth=\"254\"/>";
str = str + "<object tile=\"road_c\" x=\"4440\" y=\"3630\" plane=\"far2\" depth=\"255\"/>";
str = str + "<object tile=\"road_u_l\" x=\"1440\" y=\"3530\" plane=\"far2\" depth=\"256\"/>";
str = str + "<object tile=\"road_u_r\" x=\"1540\" y=\"3530\" plane=\"far2\" depth=\"257\"/>";
str = str + "<object tile=\"road_u_r\" x=\"4040\" y=\"3530\" plane=\"far2\" depth=\"258\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3940\" y=\"3530\" plane=\"far2\" depth=\"259\"/>";
str = str + "<object tile=\"road_l3\" x=\"3940\" y=\"3430\" plane=\"far2\" depth=\"260\"/>";
str = str + "<object tile=\"road_r1\" x=\"4040\" y=\"3430\" plane=\"far2\" depth=\"261\"/>";
str = str + "<object tile=\"road_r1\" x=\"4040\" y=\"3330\" plane=\"far2\" depth=\"262\"/>";
str = str + "<object tile=\"road_l3\" x=\"3940\" y=\"3330\" plane=\"far2\" depth=\"263\"/>";
str = str + "<object tile=\"road_r1\" x=\"4040\" y=\"3230\" plane=\"far2\" depth=\"264\"/>";
str = str + "<object tile=\"road_l3\" x=\"3940\" y=\"3230\" plane=\"far2\" depth=\"265\"/>";
str = str + "<object tile=\"road_d_l\" x=\"3940\" y=\"3130\" plane=\"far2\" depth=\"266\"/>";
str = str + "<object tile=\"road_d_r\" x=\"4040\" y=\"3130\" plane=\"far2\" depth=\"267\"/>";
str = str + "<object tile=\"road_u2\" x=\"3940\" y=\"3030\" plane=\"far2\" depth=\"268\"/>";
str = str + "<object tile=\"road_u2\" x=\"4040\" y=\"3030\" plane=\"far2\" depth=\"269\"/>";
str = str + "<object tile=\"road_rd\" x=\"4140\" y=\"3130\" plane=\"far2\" depth=\"270\"/>";
str = str + "<object tile=\"road_ru\" x=\"4140\" y=\"3030\" plane=\"far2\" depth=\"271\"/>";
str = str + "<object tile=\"road_l3\" x=\"1440\" y=\"3430\" plane=\"far2\" depth=\"272\"/>";
str = str + "<object tile=\"road_r1\" x=\"1540\" y=\"3430\" plane=\"far2\" depth=\"273\"/>";
str = str + "<object tile=\"road_lu\" x=\"1440\" y=\"3330\" plane=\"far2\" depth=\"274\"/>";
str = str + "<object tile=\"road_ru\" x=\"1540\" y=\"3330\" plane=\"far2\" depth=\"275\"/>";
str = str + "<object tile=\"road_r1\" x=\"2740\" y=\"3430\" plane=\"far2\" depth=\"276\"/>";
str = str + "<object tile=\"road_l3\" x=\"2640\" y=\"3430\" plane=\"far2\" depth=\"277\"/>";
str = str + "<object tile=\"road_r1\" x=\"2740\" y=\"3330\" plane=\"far2\" depth=\"278\"/>";
str = str + "<object tile=\"road_l3\" x=\"2640\" y=\"3330\" plane=\"far2\" depth=\"279\"/>";
str = str + "<object tile=\"road_r1\" x=\"2740\" y=\"3230\" plane=\"far2\" depth=\"280\"/>";
str = str + "<object tile=\"road_l3\" x=\"2640\" y=\"3230\" plane=\"far2\" depth=\"281\"/>";
str = str + "<object tile=\"road_r1\" x=\"2740\" y=\"3130\" plane=\"far2\" depth=\"282\"/>";
str = str + "<object tile=\"road_l3\" x=\"2640\" y=\"3130\" plane=\"far2\" depth=\"283\"/>";
str = str + "<object tile=\"road_r1\" x=\"2740\" y=\"3030\" plane=\"far2\" depth=\"284\"/>";
str = str + "<object tile=\"road_l3\" x=\"2640\" y=\"3030\" plane=\"far2\" depth=\"285\"/>";
str = str + "<object tile=\"road_r1\" x=\"2740\" y=\"2930\" plane=\"far2\" depth=\"286\"/>";
str = str + "<object tile=\"road_l3\" x=\"2640\" y=\"2930\" plane=\"far2\" depth=\"287\"/>";
str = str + "<object tile=\"road_r1\" x=\"2740\" y=\"2830\" plane=\"far2\" depth=\"288\"/>";
str = str + "<object tile=\"road_l3\" x=\"2640\" y=\"2830\" plane=\"far2\" depth=\"289\"/>";
str = str + "<object tile=\"road_d_r\" x=\"2740\" y=\"2730\" plane=\"far2\" depth=\"290\"/>";
str = str + "<object tile=\"road_d_l\" x=\"2640\" y=\"2730\" plane=\"far2\" depth=\"291\"/>";
str = str + "<object tile=\"road_r1\" x=\"3140\" y=\"2530\" plane=\"far2\" depth=\"292\"/>";
str = str + "<object tile=\"road_r1\" x=\"3140\" y=\"2430\" plane=\"far2\" depth=\"293\"/>";
str = str + "<object tile=\"road_r1\" x=\"3140\" y=\"2330\" plane=\"far2\" depth=\"294\"/>";
str = str + "<object tile=\"road_d1\" x=\"2140\" y=\"2730\" plane=\"far2\" depth=\"295\"/>";
str = str + "<object tile=\"road_u2\" x=\"2140\" y=\"2630\" plane=\"far2\" depth=\"296\"/>";
str = str + "<object tile=\"road_d1\" x=\"2240\" y=\"2730\" plane=\"far2\" depth=\"297\"/>";
str = str + "<object tile=\"road_u2\" x=\"2240\" y=\"2630\" plane=\"far2\" depth=\"298\"/>";
str = str + "<object tile=\"road_d1\" x=\"2340\" y=\"2730\" plane=\"far2\" depth=\"299\"/>";
str = str + "<object tile=\"road_u2\" x=\"2340\" y=\"2630\" plane=\"far2\" depth=\"300\"/>";
str = str + "<object tile=\"road_d1\" x=\"2440\" y=\"2730\" plane=\"far2\" depth=\"301\"/>";
str = str + "<object tile=\"road_u2\" x=\"2440\" y=\"2630\" plane=\"far2\" depth=\"302\"/>";
str = str + "<object tile=\"road_d1\" x=\"2540\" y=\"2730\" plane=\"far2\" depth=\"303\"/>";
str = str + "<object tile=\"road_u2\" x=\"2540\" y=\"2630\" plane=\"far2\" depth=\"304\"/>";
str = str + "<object tile=\"road_d1\" x=\"2840\" y=\"2730\" plane=\"far2\" depth=\"305\"/>";
str = str + "<object tile=\"road_d1\" x=\"2940\" y=\"2730\" plane=\"far2\" depth=\"306\"/>";
str = str + "<object tile=\"road_d1\" x=\"3040\" y=\"2730\" plane=\"far2\" depth=\"307\"/>";
str = str + "<object tile=\"road_u_r\" x=\"3140\" y=\"2630\" plane=\"far2\" depth=\"308\"/>";
str = str + "<object tile=\"road_d_l\" x=\"3340\" y=\"2730\" plane=\"far2\" depth=\"309\"/>";
str = str + "<object tile=\"road_ru\" x=\"3440\" y=\"2630\" plane=\"far2\" depth=\"310\"/>";
str = str + "<object tile=\"road_d1\" x=\"3140\" y=\"2730\" plane=\"far2\" depth=\"311\"/>";
str = str + "<object tile=\"road_u2\" x=\"3240\" y=\"2630\" plane=\"far2\" depth=\"312\"/>";
str = str + "<object tile=\"road_r1\" x=\"3440\" y=\"2730\" plane=\"far2\" depth=\"313\"/>";
str = str + "<object tile=\"road_l3\" x=\"3340\" y=\"2930\" plane=\"far2\" depth=\"314\"/>";
str = str + "<object tile=\"road_d1\" x=\"3240\" y=\"2730\" plane=\"far2\" depth=\"315\"/>";
str = str + "<object tile=\"road_u2\" x=\"3340\" y=\"2630\" plane=\"far2\" depth=\"316\"/>";
str = str + "<object tile=\"road_l3\" x=\"3340\" y=\"2830\" plane=\"far2\" depth=\"317\"/>";
str = str + "<object tile=\"road_r1\" x=\"3440\" y=\"2830\" plane=\"far2\" depth=\"318\"/>";
str = str + "<object tile=\"road_d1\" x=\"2840\" y=\"2130\" plane=\"far2\" depth=\"319\"/>";
str = str + "<object tile=\"road_d1\" x=\"2940\" y=\"2130\" plane=\"far2\" depth=\"320\"/>";
str = str + "<object tile=\"road_d_l\" x=\"3040\" y=\"2130\" plane=\"far2\" depth=\"321\"/>";
str = str + "<object tile=\"road_l3\" x=\"3040\" y=\"2230\" plane=\"far2\" depth=\"322\"/>";
str = str + "<object tile=\"road_r1\" x=\"3140\" y=\"2230\" plane=\"far2\" depth=\"323\"/>";
str = str + "<object tile=\"road_d_r\" x=\"3140\" y=\"2130\" plane=\"far2\" depth=\"324\"/>";
str = str + "<object tile=\"road_d1\" x=\"3240\" y=\"2130\" plane=\"far2\" depth=\"325\"/>";
str = str + "<object tile=\"road_d1\" x=\"3340\" y=\"2130\" plane=\"far2\" depth=\"326\"/>";
str = str + "<object tile=\"road_d1\" x=\"3440\" y=\"2130\" plane=\"far2\" depth=\"327\"/>";
str = str + "<object tile=\"road_d1\" x=\"3540\" y=\"2130\" plane=\"far2\" depth=\"328\"/>";
str = str + "<object tile=\"road_d1\" x=\"3640\" y=\"2130\" plane=\"far2\" depth=\"329\"/>";
str = str + "<object tile=\"road_d1\" x=\"3740\" y=\"2130\" plane=\"far2\" depth=\"330\"/>";
str = str + "<object tile=\"road_rd\" x=\"3840\" y=\"2130\" plane=\"far2\" depth=\"331\"/>";
str = str + "<object tile=\"road_r1\" x=\"3840\" y=\"2030\" plane=\"far2\" depth=\"332\"/>";
str = str + "<object tile=\"road_c\" x=\"3740\" y=\"2030\" plane=\"far2\" depth=\"333\"/>";
str = str + "<object tile=\"road_u2\" x=\"3740\" y=\"1930\" plane=\"far2\" depth=\"334\"/>";
str = str + "<object tile=\"road_ru\" x=\"3840\" y=\"1930\" plane=\"far2\" depth=\"335\"/>";
str = str + "<object tile=\"road_u2\" x=\"3640\" y=\"1930\" plane=\"far2\" depth=\"336\"/>";
str = str + "<object tile=\"road_u2\" x=\"3540\" y=\"1930\" plane=\"far2\" depth=\"337\"/>";
str = str + "<object tile=\"road_u2\" x=\"3440\" y=\"1930\" plane=\"far2\" depth=\"338\"/>";
str = str + "<object tile=\"road_u2\" x=\"3340\" y=\"1930\" plane=\"far2\" depth=\"339\"/>";
str = str + "<object tile=\"road_u2\" x=\"3240\" y=\"1930\" plane=\"far2\" depth=\"340\"/>";
str = str + "<object tile=\"road_u_r\" x=\"3140\" y=\"1930\" plane=\"far2\" depth=\"341\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3040\" y=\"1930\" plane=\"far2\" depth=\"342\"/>";
str = str + "<object tile=\"road_u2\" x=\"2940\" y=\"1930\" plane=\"far2\" depth=\"343\"/>";
str = str + "<object tile=\"road_u2\" x=\"2840\" y=\"1930\" plane=\"far2\" depth=\"344\"/>";
str = str + "<object tile=\"road_lu\" x=\"2740\" y=\"1930\" plane=\"far2\" depth=\"345\"/>";
str = str + "<object tile=\"road_ld\" x=\"2740\" y=\"2130\" plane=\"far2\" depth=\"346\"/>";
str = str + "<object tile=\"road_l3\" x=\"2740\" y=\"2030\" plane=\"far2\" depth=\"347\"/>";
str = str + "<object tile=\"road_c\" x=\"2840\" y=\"2030\" plane=\"far2\" depth=\"348\"/>";
str = str + "<object tile=\"road_c\" x=\"2940\" y=\"2030\" plane=\"far2\" depth=\"349\"/>";
str = str + "<object tile=\"road_c\" x=\"3040\" y=\"2030\" plane=\"far2\" depth=\"350\"/>";
str = str + "<object tile=\"road_c\" x=\"3140\" y=\"2030\" plane=\"far2\" depth=\"351\"/>";
str = str + "<object tile=\"road_c\" x=\"3240\" y=\"2030\" plane=\"far2\" depth=\"352\"/>";
str = str + "<object tile=\"road_c\" x=\"3340\" y=\"2030\" plane=\"far2\" depth=\"353\"/>";
str = str + "<object tile=\"road_c\" x=\"3440\" y=\"2030\" plane=\"far2\" depth=\"354\"/>";
str = str + "<object tile=\"road_c\" x=\"3540\" y=\"2030\" plane=\"far2\" depth=\"355\"/>";
str = str + "<object tile=\"road_c\" x=\"3640\" y=\"2030\" plane=\"far2\" depth=\"356\"/>";
str = str + "<object tile=\"road_d_l\" x=\"3040\" y=\"1830\" plane=\"far2\" depth=\"357\"/>";
str = str + "<object tile=\"road_d_r\" x=\"3140\" y=\"1830\" plane=\"far2\" depth=\"358\"/>";
str = str + "<object tile=\"road_c\" x=\"3040\" y=\"1730\" plane=\"far2\" depth=\"359\"/>";
str = str + "<object tile=\"road_c\" x=\"3140\" y=\"1730\" plane=\"far2\" depth=\"360\"/>";
str = str + "<object tile=\"road_u2\" x=\"3040\" y=\"1630\" plane=\"far2\" depth=\"361\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3140\" y=\"1630\" plane=\"far2\" depth=\"362\"/>";
str = str + "<object tile=\"road_u_r\" x=\"3240\" y=\"1630\" plane=\"far2\" depth=\"363\"/>";
str = str + "<object tile=\"road_c\" x=\"3240\" y=\"1730\" plane=\"far2\" depth=\"364\"/>";
str = str + "<object tile=\"road_d1\" x=\"3240\" y=\"1830\" plane=\"far2\" depth=\"365\"/>";
str = str + "<object tile=\"road_d1\" x=\"3340\" y=\"1830\" plane=\"far2\" depth=\"366\"/>";
str = str + "<object tile=\"road_d1\" x=\"3440\" y=\"1830\" plane=\"far2\" depth=\"367\"/>";
str = str + "<object tile=\"road_d1\" x=\"3540\" y=\"1830\" plane=\"far2\" depth=\"368\"/>";
str = str + "<object tile=\"road_d1\" x=\"3640\" y=\"1830\" plane=\"far2\" depth=\"369\"/>";
str = str + "<object tile=\"road_d1\" x=\"3740\" y=\"1830\" plane=\"far2\" depth=\"370\"/>";
str = str + "<object tile=\"road_rd\" x=\"3840\" y=\"1830\" plane=\"far2\" depth=\"371\"/>";
str = str + "<object tile=\"road_r1\" x=\"3840\" y=\"1730\" plane=\"far2\" depth=\"372\"/>";
str = str + "<object tile=\"road_ru\" x=\"3840\" y=\"1630\" plane=\"far2\" depth=\"373\"/>";
str = str + "<object tile=\"road_u2\" x=\"3740\" y=\"1630\" plane=\"far2\" depth=\"374\"/>";
str = str + "<object tile=\"road_u2\" x=\"3640\" y=\"1630\" plane=\"far2\" depth=\"375\"/>";
str = str + "<object tile=\"road_u2\" x=\"3540\" y=\"1630\" plane=\"far2\" depth=\"376\"/>";
str = str + "<object tile=\"road_u2\" x=\"3440\" y=\"1630\" plane=\"far2\" depth=\"377\"/>";
str = str + "<object tile=\"road_u2\" x=\"3340\" y=\"1630\" plane=\"far2\" depth=\"378\"/>";
str = str + "<object tile=\"road_c\" x=\"3340\" y=\"1730\" plane=\"far2\" depth=\"379\"/>";
str = str + "<object tile=\"road_c\" x=\"3440\" y=\"1730\" plane=\"far2\" depth=\"380\"/>";
str = str + "<object tile=\"road_c\" x=\"3540\" y=\"1730\" plane=\"far2\" depth=\"381\"/>";
str = str + "<object tile=\"road_c\" x=\"3640\" y=\"1730\" plane=\"far2\" depth=\"382\"/>";
str = str + "<object tile=\"road_c\" x=\"3740\" y=\"1730\" plane=\"far2\" depth=\"383\"/>";
str = str + "<object tile=\"road_c\" x=\"2940\" y=\"1730\" plane=\"far2\" depth=\"384\"/>";
str = str + "<object tile=\"road_c\" x=\"2840\" y=\"1730\" plane=\"far2\" depth=\"385\"/>";
str = str + "<object tile=\"road_d1\" x=\"2940\" y=\"1830\" plane=\"far2\" depth=\"386\"/>";
str = str + "<object tile=\"road_d1\" x=\"2840\" y=\"1830\" plane=\"far2\" depth=\"387\"/>";
str = str + "<object tile=\"road_ld\" x=\"2740\" y=\"1830\" plane=\"far2\" depth=\"388\"/>";
str = str + "<object tile=\"road_l3\" x=\"2740\" y=\"1730\" plane=\"far2\" depth=\"389\"/>";
str = str + "<object tile=\"road_lu\" x=\"2740\" y=\"1630\" plane=\"far2\" depth=\"390\"/>";
str = str + "<object tile=\"road_u2\" x=\"2840\" y=\"1630\" plane=\"far2\" depth=\"391\"/>";
str = str + "<object tile=\"road_u2\" x=\"2940\" y=\"1630\" plane=\"far2\" depth=\"392\"/>";
str = str + "<object tile=\"road_d_r\" x=\"3240\" y=\"1530\" plane=\"far2\" depth=\"393\"/>";
str = str + "<object tile=\"road_d_l\" x=\"3140\" y=\"1530\" plane=\"far2\" depth=\"394\"/>";
str = str + "<object tile=\"road_c\" x=\"3140\" y=\"1430\" plane=\"far2\" depth=\"395\"/>";
str = str + "<object tile=\"road_c\" x=\"3240\" y=\"1430\" plane=\"far2\" depth=\"396\"/>";
str = str + "<object tile=\"road_u_r\" x=\"3240\" y=\"1330\" plane=\"far2\" depth=\"397\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3140\" y=\"1330\" plane=\"far2\" depth=\"398\"/>";
str = str + "<object tile=\"road_u2\" x=\"3040\" y=\"1330\" plane=\"far2\" depth=\"399\"/>";
str = str + "<object tile=\"road_lu\" x=\"2940\" y=\"1330\" plane=\"far2\" depth=\"400\"/>";
str = str + "<object tile=\"road_l3\" x=\"2940\" y=\"1430\" plane=\"far2\" depth=\"401\"/>";
str = str + "<object tile=\"road_ld\" x=\"2940\" y=\"1530\" plane=\"far2\" depth=\"402\"/>";
str = str + "<object tile=\"road_d1\" x=\"3040\" y=\"1530\" plane=\"far2\" depth=\"403\"/>";
str = str + "<object tile=\"road_c\" x=\"3040\" y=\"1430\" plane=\"far2\" depth=\"404\"/>";
str = str + "<object tile=\"road_d1\" x=\"3340\" y=\"1530\" plane=\"far2\" depth=\"405\"/>";
str = str + "<object tile=\"road_d1\" x=\"3440\" y=\"1530\" plane=\"far2\" depth=\"406\"/>";
str = str + "<object tile=\"road_d1\" x=\"3540\" y=\"1530\" plane=\"far2\" depth=\"407\"/>";
str = str + "<object tile=\"road_d1\" x=\"3640\" y=\"1530\" plane=\"far2\" depth=\"408\"/>";
str = str + "<object tile=\"road_d1\" x=\"3740\" y=\"1530\" plane=\"far2\" depth=\"409\"/>";
str = str + "<object tile=\"road_rd\" x=\"3840\" y=\"1530\" plane=\"far2\" depth=\"410\"/>";
str = str + "<object tile=\"road_r1\" x=\"3840\" y=\"1430\" plane=\"far2\" depth=\"411\"/>";
str = str + "<object tile=\"road_ru\" x=\"3840\" y=\"1330\" plane=\"far2\" depth=\"412\"/>";
str = str + "<object tile=\"road_u2\" x=\"3740\" y=\"1330\" plane=\"far2\" depth=\"413\"/>";
str = str + "<object tile=\"road_u2\" x=\"3640\" y=\"1330\" plane=\"far2\" depth=\"414\"/>";
str = str + "<object tile=\"road_u2\" x=\"3540\" y=\"1330\" plane=\"far2\" depth=\"415\"/>";
str = str + "<object tile=\"road_u2\" x=\"3440\" y=\"1330\" plane=\"far2\" depth=\"416\"/>";
str = str + "<object tile=\"road_u2\" x=\"3340\" y=\"1330\" plane=\"far2\" depth=\"417\"/>";
str = str + "<object tile=\"road_c\" x=\"3340\" y=\"1430\" plane=\"far2\" depth=\"418\"/>";
str = str + "<object tile=\"road_c\" x=\"3440\" y=\"1430\" plane=\"far2\" depth=\"419\"/>";
str = str + "<object tile=\"road_c\" x=\"3540\" y=\"1430\" plane=\"far2\" depth=\"420\"/>";
str = str + "<object tile=\"road_c\" x=\"3640\" y=\"1430\" plane=\"far2\" depth=\"421\"/>";
str = str + "<object tile=\"road_c\" x=\"3740\" y=\"1430\" plane=\"far2\" depth=\"422\"/>";
str = str + "<object tile=\"road_r1\" x=\"3240\" y=\"1230\" plane=\"far2\" depth=\"423\"/>";
str = str + "<object tile=\"road_l3\" x=\"3140\" y=\"1230\" plane=\"far2\" depth=\"424\"/>";
str = str + "<object tile=\"road_r1\" x=\"3240\" y=\"1130\" plane=\"far2\" depth=\"425\"/>";
str = str + "<object tile=\"road_l3\" x=\"3140\" y=\"1130\" plane=\"far2\" depth=\"426\"/>";
str = str + "<object tile=\"road_d_l\" x=\"3140\" y=\"1030\" plane=\"far2\" depth=\"427\"/>";
str = str + "<object tile=\"road_d_r\" x=\"3240\" y=\"1030\" plane=\"far2\" depth=\"428\"/>";
str = str + "<object tile=\"road_u_r\" x=\"3240\" y=\"930\" plane=\"far2\" depth=\"429\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3140\" y=\"930\" plane=\"far2\" depth=\"430\"/>";
str = str + "<object tile=\"road_ru\" x=\"3240\" y=\"830\" plane=\"far2\" depth=\"431\"/>";
str = str + "<object tile=\"road_lu\" x=\"3140\" y=\"830\" plane=\"far2\" depth=\"432\"/>";
str = str + "<object tile=\"road_rd\" x=\"3340\" y=\"1030\" plane=\"far2\" depth=\"433\"/>";
str = str + "<object tile=\"road_ru\" x=\"3340\" y=\"930\" plane=\"far2\" depth=\"434\"/>";
str = str + "<object tile=\"road_ld\" x=\"3040\" y=\"1030\" plane=\"far2\" depth=\"435\"/>";
str = str + "<object tile=\"road_lu\" x=\"3040\" y=\"930\" plane=\"far2\" depth=\"436\"/>";
str = str + "<object tile=\"road_d1\" x=\"1740\" y=\"2730\" plane=\"far2\" depth=\"437\"/>";
str = str + "<object tile=\"road_u2\" x=\"1740\" y=\"2630\" plane=\"far2\" depth=\"438\"/>";
str = str + "<object tile=\"road_d1\" x=\"1940\" y=\"3030\" plane=\"far2\" depth=\"439\"/>";
str = str + "<object tile=\"road_u2\" x=\"1840\" y=\"2630\" plane=\"far2\" depth=\"440\"/>";
str = str + "<object tile=\"road_u2\" x=\"1940\" y=\"2630\" plane=\"far2\" depth=\"441\"/>";
str = str + "<object tile=\"road_u2\" x=\"2040\" y=\"2630\" plane=\"far2\" depth=\"442\"/>";
str = str + "<object tile=\"road_d1\" x=\"1240\" y=\"3130\" plane=\"far2\" depth=\"443\"/>";
str = str + "<object tile=\"road_d1\" x=\"1540\" y=\"2730\" plane=\"far2\" depth=\"444\"/>";
str = str + "<object tile=\"road_u2\" x=\"1540\" y=\"2630\" plane=\"far2\" depth=\"445\"/>";
str = str + "<object tile=\"road_d1\" x=\"1640\" y=\"2730\" plane=\"far2\" depth=\"446\"/>";
str = str + "<object tile=\"road_u2\" x=\"1640\" y=\"2630\" plane=\"far2\" depth=\"447\"/>";
str = str + "<object tile=\"road_u_r\" x=\"1340\" y=\"2630\" plane=\"far2\" depth=\"448\"/>";
str = str + "<object tile=\"road_u_l\" x=\"1240\" y=\"2430\" plane=\"far2\" depth=\"449\"/>";
str = str + "<object tile=\"road_lu\" x=\"840\" y=\"2430\" plane=\"far2\" depth=\"450\"/>";
str = str + "<object tile=\"road_ld\" x=\"840\" y=\"3130\" plane=\"far2\" depth=\"451\"/>";
str = str + "<object tile=\"road_d1\" x=\"940\" y=\"3130\" plane=\"far2\" depth=\"452\"/>";
str = str + "<object tile=\"road_u2\" x=\"940\" y=\"2430\" plane=\"far2\" depth=\"453\"/>";
str = str + "<object tile=\"road_d1\" x=\"1040\" y=\"3130\" plane=\"far2\" depth=\"454\"/>";
str = str + "<object tile=\"road_u2\" x=\"1040\" y=\"2430\" plane=\"far2\" depth=\"455\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"2530\" plane=\"far2\" depth=\"456\"/>";
str = str + "<object tile=\"road_l3\" x=\"840\" y=\"2530\" plane=\"far2\" depth=\"457\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"2430\" plane=\"far2\" depth=\"458\"/>";
str = str + "<object tile=\"road_l3\" x=\"840\" y=\"2630\" plane=\"far2\" depth=\"459\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"2330\" plane=\"far2\" depth=\"460\"/>";
str = str + "<object tile=\"road_l3\" x=\"1240\" y=\"2330\" plane=\"far2\" depth=\"461\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"2230\" plane=\"far2\" depth=\"462\"/>";
str = str + "<object tile=\"road_l3\" x=\"1240\" y=\"2230\" plane=\"far2\" depth=\"463\"/>";
str = str + "<object tile=\"road_c\" x=\"940\" y=\"2530\" plane=\"far2\" depth=\"464\"/>";
str = str + "<object tile=\"road_c\" x=\"1040\" y=\"2530\" plane=\"far2\" depth=\"465\"/>";
str = str + "<object tile=\"road_c\" x=\"1240\" y=\"2530\" plane=\"far2\" depth=\"466\"/>";
str = str + "<object tile=\"road_c\" x=\"940\" y=\"2630\" plane=\"far2\" depth=\"467\"/>";
str = str + "<object tile=\"road_c\" x=\"1040\" y=\"2630\" plane=\"far2\" depth=\"468\"/>";
str = str + "<object tile=\"road_c\" x=\"1240\" y=\"2630\" plane=\"far2\" depth=\"469\"/>";
str = str + "<object tile=\"road_d_r\" x=\"1440\" y=\"2730\" plane=\"far2\" depth=\"470\"/>";
str = str + "<object tile=\"road_rd\" x=\"1440\" y=\"3130\" plane=\"far2\" depth=\"471\"/>";
str = str + "<object tile=\"road_c\" x=\"940\" y=\"2730\" plane=\"far2\" depth=\"472\"/>";
str = str + "<object tile=\"road_c\" x=\"1040\" y=\"2730\" plane=\"far2\" depth=\"473\"/>";
str = str + "<object tile=\"road_c\" x=\"1240\" y=\"2730\" plane=\"far2\" depth=\"474\"/>";
str = str + "<object tile=\"road_c\" x=\"940\" y=\"2830\" plane=\"far2\" depth=\"475\"/>";
str = str + "<object tile=\"road_c\" x=\"1040\" y=\"2830\" plane=\"far2\" depth=\"476\"/>";
str = str + "<object tile=\"road_c\" x=\"1240\" y=\"2830\" plane=\"far2\" depth=\"477\"/>";
str = str + "<object tile=\"road_l3\" x=\"840\" y=\"2730\" plane=\"far2\" depth=\"478\"/>";
str = str + "<object tile=\"road_l3\" x=\"840\" y=\"2830\" plane=\"far2\" depth=\"479\"/>";
str = str + "<object tile=\"road_r1\" x=\"1440\" y=\"2830\" plane=\"far2\" depth=\"480\"/>";
str = str + "<object tile=\"road_u2\" x=\"1440\" y=\"2630\" plane=\"far2\" depth=\"481\"/>";
str = str + "<object tile=\"road_d1\" x=\"1140\" y=\"3130\" plane=\"far2\" depth=\"482\"/>";
str = str + "<object tile=\"road_u2\" x=\"1140\" y=\"2430\" plane=\"far2\" depth=\"483\"/>";
str = str + "<object tile=\"road_c\" x=\"1140\" y=\"2530\" plane=\"far2\" depth=\"484\"/>";
str = str + "<object tile=\"road_c\" x=\"1140\" y=\"2630\" plane=\"far2\" depth=\"485\"/>";
str = str + "<object tile=\"road_c\" x=\"1140\" y=\"2730\" plane=\"far2\" depth=\"486\"/>";
str = str + "<object tile=\"road_c\" x=\"1140\" y=\"2830\" plane=\"far2\" depth=\"487\"/>";
str = str + "<object tile=\"road_c\" x=\"940\" y=\"2930\" plane=\"far2\" depth=\"488\"/>";
str = str + "<object tile=\"road_c\" x=\"1040\" y=\"2930\" plane=\"far2\" depth=\"489\"/>";
str = str + "<object tile=\"road_c\" x=\"1240\" y=\"2930\" plane=\"far2\" depth=\"490\"/>";
str = str + "<object tile=\"road_r1\" x=\"1440\" y=\"2930\" plane=\"far2\" depth=\"491\"/>";
str = str + "<object tile=\"road_c\" x=\"1140\" y=\"2930\" plane=\"far2\" depth=\"492\"/>";
str = str + "<object tile=\"road_l3\" x=\"840\" y=\"2930\" plane=\"far2\" depth=\"493\"/>";
str = str + "<object tile=\"road_c\" x=\"940\" y=\"3030\" plane=\"far2\" depth=\"494\"/>";
str = str + "<object tile=\"road_c\" x=\"1040\" y=\"3030\" plane=\"far2\" depth=\"495\"/>";
str = str + "<object tile=\"road_c\" x=\"1240\" y=\"3030\" plane=\"far2\" depth=\"496\"/>";
str = str + "<object tile=\"road_r1\" x=\"1440\" y=\"3030\" plane=\"far2\" depth=\"497\"/>";
str = str + "<object tile=\"road_c\" x=\"1140\" y=\"3030\" plane=\"far2\" depth=\"498\"/>";
str = str + "<object tile=\"road_l3\" x=\"840\" y=\"3030\" plane=\"far2\" depth=\"499\"/>";
str = str + "<object tile=\"road_c\" x=\"1340\" y=\"2730\" plane=\"far2\" depth=\"500\"/>";
str = str + "<object tile=\"road_c\" x=\"1340\" y=\"2830\" plane=\"far2\" depth=\"501\"/>";
str = str + "<object tile=\"road_c\" x=\"1340\" y=\"2930\" plane=\"far2\" depth=\"502\"/>";
str = str + "<object tile=\"road_c\" x=\"1340\" y=\"3030\" plane=\"far2\" depth=\"503\"/>";
str = str + "<object tile=\"road_d1\" x=\"1340\" y=\"3130\" plane=\"far2\" depth=\"504\"/>";
str = str + "<object tile=\"road_d_l\" x=\"1840\" y=\"2730\" plane=\"far2\" depth=\"505\"/>";
str = str + "<object tile=\"road_d_r\" x=\"2040\" y=\"2730\" plane=\"far2\" depth=\"506\"/>";
str = str + "<object tile=\"road_l3\" x=\"1840\" y=\"2830\" plane=\"far2\" depth=\"507\"/>";
str = str + "<object tile=\"road_r1\" x=\"2040\" y=\"2830\" plane=\"far2\" depth=\"508\"/>";
str = str + "<object tile=\"road_r1\" x=\"2040\" y=\"2930\" plane=\"far2\" depth=\"509\"/>";
str = str + "<object tile=\"road_l3\" x=\"1840\" y=\"2930\" plane=\"far2\" depth=\"510\"/>";
str = str + "<object tile=\"road_c\" x=\"1940\" y=\"2930\" plane=\"far2\" depth=\"511\"/>";
str = str + "<object tile=\"road_c\" x=\"1940\" y=\"2830\" plane=\"far2\" depth=\"512\"/>";
str = str + "<object tile=\"road_c\" x=\"1940\" y=\"2730\" plane=\"far2\" depth=\"513\"/>";
str = str + "<object tile=\"road_rd\" x=\"2040\" y=\"3030\" plane=\"far2\" depth=\"514\"/>";
str = str + "<object tile=\"road_ld\" x=\"1840\" y=\"3030\" plane=\"far2\" depth=\"515\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"2130\" plane=\"far2\" depth=\"516\"/>";
str = str + "<object tile=\"road_l3\" x=\"1240\" y=\"1930\" plane=\"far2\" depth=\"517\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"2030\" plane=\"far2\" depth=\"518\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"1930\" plane=\"far2\" depth=\"519\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"1830\" plane=\"far2\" depth=\"520\"/>";
str = str + "<object tile=\"road_l3\" x=\"1240\" y=\"1830\" plane=\"far2\" depth=\"521\"/>";
str = str + "<object tile=\"road_r1\" x=\"1540\" y=\"1630\" plane=\"far2\" depth=\"522\"/>";
str = str + "<object tile=\"road_r1\" x=\"1540\" y=\"1530\" plane=\"far2\" depth=\"523\"/>";
str = str + "<object tile=\"road_l3\" x=\"1240\" y=\"1530\" plane=\"far2\" depth=\"524\"/>";
str = str + "<object tile=\"road_l3\" x=\"1240\" y=\"1430\" plane=\"far2\" depth=\"525\"/>";
str = str + "<object tile=\"road_l3\" x=\"1240\" y=\"1330\" plane=\"far2\" depth=\"526\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"1030\" plane=\"far2\" depth=\"527\"/>";
str = str + "<object tile=\"road_l3\" x=\"1240\" y=\"1030\" plane=\"far2\" depth=\"528\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"930\" plane=\"far2\" depth=\"529\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"830\" plane=\"far2\" depth=\"530\"/>";
str = str + "<object tile=\"road_ru\" x=\"1340\" y=\"730\" plane=\"far2\" depth=\"531\"/>";
str = str + "<object tile=\"road_d_r\" x=\"1340\" y=\"1730\" plane=\"far2\" depth=\"532\"/>";
str = str + "<object tile=\"road_u_r\" x=\"1340\" y=\"1130\" plane=\"far2\" depth=\"533\"/>";
str = str + "<object tile=\"road_u_l\" x=\"1240\" y=\"2030\" plane=\"far2\" depth=\"534\"/>";
str = str + "<object tile=\"road_d_l\" x=\"1240\" y=\"2130\" plane=\"far2\" depth=\"535\"/>";
str = str + "<object tile=\"road_u2\" x=\"940\" y=\"2030\" plane=\"far2\" depth=\"536\"/>";
str = str + "<object tile=\"road_d1\" x=\"940\" y=\"2130\" plane=\"far2\" depth=\"537\"/>";
str = str + "<object tile=\"road_lu\" x=\"840\" y=\"2030\" plane=\"far2\" depth=\"538\"/>";
str = str + "<object tile=\"road_ld\" x=\"840\" y=\"2130\" plane=\"far2\" depth=\"539\"/>";
str = str + "<object tile=\"road_u2\" x=\"1140\" y=\"2030\" plane=\"far2\" depth=\"540\"/>";
str = str + "<object tile=\"road_d1\" x=\"1140\" y=\"2130\" plane=\"far2\" depth=\"541\"/>";
str = str + "<object tile=\"road_u2\" x=\"1040\" y=\"2030\" plane=\"far2\" depth=\"542\"/>";
str = str + "<object tile=\"road_d1\" x=\"1040\" y=\"2130\" plane=\"far2\" depth=\"543\"/>";
str = str + "<object tile=\"road_d_l\" x=\"1240\" y=\"1730\" plane=\"far2\" depth=\"544\"/>";
str = str + "<object tile=\"road_u_l\" x=\"1240\" y=\"1630\" plane=\"far2\" depth=\"545\"/>";
str = str + "<object tile=\"road_d1\" x=\"1140\" y=\"1730\" plane=\"far2\" depth=\"546\"/>";
str = str + "<object tile=\"road_u2\" x=\"1140\" y=\"1630\" plane=\"far2\" depth=\"547\"/>";
str = str + "<object tile=\"road_d1\" x=\"1040\" y=\"1730\" plane=\"far2\" depth=\"548\"/>";
str = str + "<object tile=\"road_u2\" x=\"1040\" y=\"1630\" plane=\"far2\" depth=\"549\"/>";
str = str + "<object tile=\"road_d1\" x=\"940\" y=\"1730\" plane=\"far2\" depth=\"550\"/>";
str = str + "<object tile=\"road_u2\" x=\"940\" y=\"1630\" plane=\"far2\" depth=\"551\"/>";
str = str + "<object tile=\"road_ld\" x=\"840\" y=\"1730\" plane=\"far2\" depth=\"552\"/>";
str = str + "<object tile=\"road_lu\" x=\"840\" y=\"1630\" plane=\"far2\" depth=\"553\"/>";
str = str + "<object tile=\"road_d_l\" x=\"1240\" y=\"830\" plane=\"far2\" depth=\"554\"/>";
str = str + "<object tile=\"road_d1\" x=\"1140\" y=\"830\" plane=\"far2\" depth=\"555\"/>";
str = str + "<object tile=\"road_u2\" x=\"1140\" y=\"730\" plane=\"far2\" depth=\"556\"/>";
str = str + "<object tile=\"road_d1\" x=\"1040\" y=\"830\" plane=\"far2\" depth=\"557\"/>";
str = str + "<object tile=\"road_u2\" x=\"1040\" y=\"730\" plane=\"far2\" depth=\"558\"/>";
str = str + "<object tile=\"road_d1\" x=\"940\" y=\"830\" plane=\"far2\" depth=\"559\"/>";
str = str + "<object tile=\"road_u2\" x=\"940\" y=\"730\" plane=\"far2\" depth=\"560\"/>";
str = str + "<object tile=\"road_ld\" x=\"840\" y=\"830\" plane=\"far2\" depth=\"561\"/>";
str = str + "<object tile=\"road_lu\" x=\"840\" y=\"730\" plane=\"far2\" depth=\"562\"/>";
str = str + "<object tile=\"road_d_l\" x=\"1240\" y=\"1230\" plane=\"far2\" depth=\"563\"/>";
str = str + "<object tile=\"road_u_l\" x=\"1240\" y=\"1130\" plane=\"far2\" depth=\"564\"/>";
str = str + "<object tile=\"road_d1\" x=\"1140\" y=\"1230\" plane=\"far2\" depth=\"565\"/>";
str = str + "<object tile=\"road_u2\" x=\"1140\" y=\"1130\" plane=\"far2\" depth=\"566\"/>";
str = str + "<object tile=\"road_d1\" x=\"1040\" y=\"1230\" plane=\"far2\" depth=\"567\"/>";
str = str + "<object tile=\"road_u2\" x=\"1040\" y=\"1130\" plane=\"far2\" depth=\"568\"/>";
str = str + "<object tile=\"road_ld\" x=\"940\" y=\"1230\" plane=\"far2\" depth=\"569\"/>";
str = str + "<object tile=\"road_lu\" x=\"940\" y=\"1130\" plane=\"far2\" depth=\"570\"/>";
str = str + "<object tile=\"road_u2\" x=\"1240\" y=\"730\" plane=\"far2\" depth=\"571\"/>";
str = str + "<object tile=\"road_l3\" x=\"1240\" y=\"930\" plane=\"far2\" depth=\"572\"/>";
str = str + "<object tile=\"road_d1\" x=\"1440\" y=\"1730\" plane=\"far2\" depth=\"573\"/>";
str = str + "<object tile=\"road_rd\" x=\"1540\" y=\"1730\" plane=\"far2\" depth=\"574\"/>";
str = str + "<object tile=\"road_ru\" x=\"1540\" y=\"1130\" plane=\"far2\" depth=\"575\"/>";
str = str + "<object tile=\"road_u2\" x=\"1440\" y=\"1130\" plane=\"far2\" depth=\"576\"/>";
str = str + "<object tile=\"road_d_r\" x=\"1540\" y=\"1430\" plane=\"far2\" depth=\"577\"/>";
str = str + "<object tile=\"road_u_r\" x=\"1540\" y=\"1330\" plane=\"far2\" depth=\"578\"/>";
str = str + "<object tile=\"road_r1\" x=\"1540\" y=\"1230\" plane=\"far2\" depth=\"579\"/>";
str = str + "<object tile=\"road_c\" x=\"1340\" y=\"1230\" plane=\"far2\" depth=\"580\"/>";
str = str + "<object tile=\"road_c\" x=\"1440\" y=\"1230\" plane=\"far2\" depth=\"581\"/>";
str = str + "<object tile=\"road_c\" x=\"1340\" y=\"1330\" plane=\"far2\" depth=\"582\"/>";
str = str + "<object tile=\"road_c\" x=\"1440\" y=\"1330\" plane=\"far2\" depth=\"583\"/>";
str = str + "<object tile=\"road_c\" x=\"1340\" y=\"1430\" plane=\"far2\" depth=\"584\"/>";
str = str + "<object tile=\"road_c\" x=\"1440\" y=\"1430\" plane=\"far2\" depth=\"585\"/>";
str = str + "<object tile=\"road_c\" x=\"1340\" y=\"1530\" plane=\"far2\" depth=\"586\"/>";
str = str + "<object tile=\"road_c\" x=\"1440\" y=\"1530\" plane=\"far2\" depth=\"587\"/>";
str = str + "<object tile=\"road_c\" x=\"1340\" y=\"1630\" plane=\"far2\" depth=\"588\"/>";
str = str + "<object tile=\"road_c\" x=\"1440\" y=\"1630\" plane=\"far2\" depth=\"589\"/>";
str = str + "<object tile=\"road_d1\" x=\"1840\" y=\"1430\" plane=\"far2\" depth=\"590\"/>";
str = str + "<object tile=\"road_u2\" x=\"1840\" y=\"1330\" plane=\"far2\" depth=\"591\"/>";
str = str + "<object tile=\"road_u2\" x=\"2140\" y=\"1330\" plane=\"far2\" depth=\"592\"/>";
str = str + "<object tile=\"road_d1\" x=\"1940\" y=\"1430\" plane=\"far2\" depth=\"593\"/>";
str = str + "<object tile=\"road_u2\" x=\"1940\" y=\"1330\" plane=\"far2\" depth=\"594\"/>";
str = str + "<object tile=\"road_d1\" x=\"2040\" y=\"1430\" plane=\"far2\" depth=\"595\"/>";
str = str + "<object tile=\"road_u2\" x=\"2040\" y=\"1330\" plane=\"far2\" depth=\"596\"/>";
str = str + "<object tile=\"road_d_l\" x=\"2140\" y=\"1430\" plane=\"far2\" depth=\"597\"/>";
str = str + "<object tile=\"road_u2\" x=\"1640\" y=\"1330\" plane=\"far2\" depth=\"598\"/>";
str = str + "<object tile=\"road_u2\" x=\"1740\" y=\"1330\" plane=\"far2\" depth=\"599\"/>";
str = str + "<object tile=\"road_d1\" x=\"1640\" y=\"1430\" plane=\"far2\" depth=\"600\"/>";
str = str + "<object tile=\"road_d1\" x=\"1740\" y=\"1430\" plane=\"far2\" depth=\"601\"/>";
str = str + "<object tile=\"road_l3\" x=\"2140\" y=\"1530\" plane=\"far2\" depth=\"602\"/>";
str = str + "<object tile=\"road_r1\" x=\"2240\" y=\"1530\" plane=\"far2\" depth=\"603\"/>";
str = str + "<object tile=\"road_u_r\" x=\"2240\" y=\"1630\" plane=\"far2\" depth=\"604\"/>";
str = str + "<object tile=\"road_u_l\" x=\"2140\" y=\"1630\" plane=\"far2\" depth=\"605\"/>";
str = str + "<object tile=\"road_r1\" x=\"2440\" y=\"1730\" plane=\"far2\" depth=\"606\"/>";
str = str + "<object tile=\"road_r1\" x=\"2440\" y=\"1830\" plane=\"far2\" depth=\"607\"/>";
str = str + "<object tile=\"road_u2\" x=\"2040\" y=\"1630\" plane=\"far2\" depth=\"608\"/>";
str = str + "<object tile=\"road_d1\" x=\"2340\" y=\"1930\" plane=\"far2\" depth=\"609\"/>";
str = str + "<object tile=\"road_d1\" x=\"2240\" y=\"1930\" plane=\"far2\" depth=\"610\"/>";
str = str + "<object tile=\"road_c\" x=\"2240\" y=\"1730\" plane=\"far2\" depth=\"611\"/>";
str = str + "<object tile=\"road_c\" x=\"2140\" y=\"1730\" plane=\"far2\" depth=\"612\"/>";
str = str + "<object tile=\"road_c\" x=\"2040\" y=\"1830\" plane=\"far2\" depth=\"613\"/>";
str = str + "<object tile=\"road_c\" x=\"2240\" y=\"1830\" plane=\"far2\" depth=\"614\"/>";
str = str + "<object tile=\"road_c\" x=\"2140\" y=\"1830\" plane=\"far2\" depth=\"615\"/>";
str = str + "<object tile=\"road_c\" x=\"2040\" y=\"1730\" plane=\"far2\" depth=\"616\"/>";
str = str + "<object tile=\"road_c\" x=\"2340\" y=\"1830\" plane=\"far2\" depth=\"617\"/>";
str = str + "<object tile=\"road_c\" x=\"2340\" y=\"1730\" plane=\"far2\" depth=\"618\"/>";
str = str + "<object tile=\"road_ru\" x=\"2440\" y=\"1630\" plane=\"far2\" depth=\"619\"/>";
str = str + "<object tile=\"road_rd\" x=\"2440\" y=\"1930\" plane=\"far2\" depth=\"620\"/>";
str = str + "<object tile=\"road_lu\" x=\"1940\" y=\"1630\" plane=\"far2\" depth=\"621\"/>";
str = str + "<object tile=\"road_l3\" x=\"1940\" y=\"1730\" plane=\"far2\" depth=\"622\"/>";
str = str + "<object tile=\"road_l3\" x=\"1940\" y=\"1830\" plane=\"far2\" depth=\"623\"/>";
str = str + "<object tile=\"road_ld\" x=\"1940\" y=\"1930\" plane=\"far2\" depth=\"624\"/>";
str = str + "<object tile=\"road_u2\" x=\"2340\" y=\"1630\" plane=\"far2\" depth=\"625\"/>";
str = str + "<object tile=\"road_d1\" x=\"2040\" y=\"1930\" plane=\"far2\" depth=\"626\"/>";
str = str + "<object tile=\"road_d1\" x=\"2140\" y=\"1930\" plane=\"far2\" depth=\"627\"/>";
str = str + "<object tile=\"road_u2\" x=\"3840\" y=\"3030\" plane=\"far2\" depth=\"628\"/>";
str = str + "<object tile=\"road_d1\" x=\"3840\" y=\"3130\" plane=\"far2\" depth=\"629\"/>";
str = str + "<object tile=\"road_d1\" x=\"3740\" y=\"3130\" plane=\"far2\" depth=\"630\"/>";
str = str + "<object tile=\"road_u2\" x=\"3740\" y=\"3030\" plane=\"far2\" depth=\"631\"/>";
str = str + "<object tile=\"road_d1\" x=\"3640\" y=\"3130\" plane=\"far2\" depth=\"632\"/>";
str = str + "<object tile=\"road_d1\" x=\"3540\" y=\"3130\" plane=\"far2\" depth=\"633\"/>";
str = str + "<object tile=\"road_u_r\" x=\"3640\" y=\"3030\" plane=\"far2\" depth=\"634\"/>";
str = str + "<object tile=\"road_d1\" x=\"3440\" y=\"3130\" plane=\"far2\" depth=\"635\"/>";
str = str + "<object tile=\"road_l3\" x=\"3340\" y=\"3030\" plane=\"far2\" depth=\"636\"/>";
str = str + "<object tile=\"road_ld\" x=\"3340\" y=\"3130\" plane=\"far2\" depth=\"637\"/>";
str = str + "<object tile=\"road_u_r\" x=\"3440\" y=\"2930\" plane=\"far2\" depth=\"638\"/>";
str = str + "<object tile=\"road_c\" x=\"3440\" y=\"3030\" plane=\"far2\" depth=\"639\"/>";
str = str + "<object tile=\"road_c\" x=\"3540\" y=\"3030\" plane=\"far2\" depth=\"640\"/>";
str = str + "<object tile=\"road_u2\" x=\"3540\" y=\"2930\" plane=\"far2\" depth=\"641\"/>";
str = str + "<object tile=\"road_ru\" x=\"3640\" y=\"2930\" plane=\"far2\" depth=\"642\"/>";
str = str + "<object tile=\"road_r1\" x=\"2240\" y=\"1430\" plane=\"far2\" depth=\"643\"/>";
str = str + "<object tile=\"road_ru\" x=\"2240\" y=\"1330\" plane=\"far2\" depth=\"644\"/>";
str = str + "<object tile=\"road_u2\" x=\"2740\" y=\"2630\" plane=\"far2\" depth=\"650\"/>";
str = str + "<object tile=\"road_u2\" x=\"2640\" y=\"2630\" plane=\"far2\" depth=\"651\"/>";
str = str + "<object tile=\"road_l3\" x=\"3040\" y=\"2330\" plane=\"far2\" depth=\"652\"/>";
str = str + "<object tile=\"road_l3\" x=\"3040\" y=\"2430\" plane=\"far2\" depth=\"653\"/>";
str = str + "<object tile=\"road_l3\" x=\"3040\" y=\"2530\" plane=\"far2\" depth=\"654\"/>";
str = str + "<object tile=\"road_u2\" x=\"2840\" y=\"2630\" plane=\"far2\" depth=\"655\"/>";
str = str + "<object tile=\"road_u2\" x=\"2940\" y=\"2630\" plane=\"far2\" depth=\"656\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3040\" y=\"2630\" plane=\"far2\" depth=\"657\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3500\" y=\"620\" plane=\"far\" depth=\"658\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3430\" y=\"620\" plane=\"far\" depth=\"659\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3360\" y=\"620\" plane=\"far\" depth=\"660\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3290\" y=\"620\" plane=\"far\" depth=\"661\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3220\" y=\"620\" plane=\"far\" depth=\"662\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3150\" y=\"620\" plane=\"far\" depth=\"663\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3080\" y=\"620\" plane=\"far\" depth=\"664\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3010\" y=\"620\" plane=\"far\" depth=\"665\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2940\" y=\"620\" plane=\"far\" depth=\"666\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2870\" y=\"620\" plane=\"far\" depth=\"667\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1620\" y=\"620\" plane=\"far\" depth=\"668\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1550\" y=\"620\" plane=\"far\" depth=\"669\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1480\" y=\"620\" plane=\"far\" depth=\"670\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1410\" y=\"620\" plane=\"far\" depth=\"671\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1340\" y=\"620\" plane=\"far\" depth=\"672\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1270\" y=\"620\" plane=\"far\" depth=\"673\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1200\" y=\"620\" plane=\"far\" depth=\"674\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1130\" y=\"620\" plane=\"far\" depth=\"675\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1060\" y=\"620\" plane=\"far\" depth=\"676\"/>";
str = str + "<object tile=\"wall_big2\" x=\"990\" y=\"620\" plane=\"far\" depth=\"677\"/>";
str = str + "<object tile=\"wall_big2\" x=\"920\" y=\"620\" plane=\"far\" depth=\"678\"/>";
str = str + "<object tile=\"wall_big2\" x=\"850\" y=\"620\" plane=\"far\" depth=\"679\"/>";
str = str + "<object tile=\"wall_big2\" x=\"780\" y=\"620\" plane=\"far\" depth=\"680\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"640\" plane=\"far\" depth=\"681\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"710\" plane=\"far\" depth=\"682\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"780\" plane=\"far\" depth=\"683\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"850\" plane=\"far\" depth=\"684\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"920\" plane=\"far\" depth=\"685\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"990\" plane=\"far\" depth=\"686\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1060\" plane=\"far\" depth=\"687\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1130\" plane=\"far\" depth=\"688\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1200\" plane=\"far\" depth=\"689\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1270\" plane=\"far\" depth=\"690\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1340\" plane=\"far\" depth=\"691\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1410\" plane=\"far\" depth=\"692\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1480\" plane=\"far\" depth=\"693\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1550\" plane=\"far\" depth=\"694\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1620\" plane=\"far\" depth=\"695\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1690\" plane=\"far\" depth=\"696\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1760\" plane=\"far\" depth=\"697\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1830\" plane=\"far\" depth=\"698\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1900\" plane=\"far\" depth=\"699\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1970\" plane=\"far\" depth=\"700\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2040\" plane=\"far\" depth=\"701\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2110\" plane=\"far\" depth=\"702\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2180\" plane=\"far\" depth=\"703\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2250\" plane=\"far\" depth=\"704\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2320\" plane=\"far\" depth=\"705\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2390\" plane=\"far\" depth=\"706\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2460\" plane=\"far\" depth=\"707\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2530\" plane=\"far\" depth=\"708\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2600\" plane=\"far\" depth=\"709\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2670\" plane=\"far\" depth=\"710\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2740\" plane=\"far\" depth=\"711\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2810\" plane=\"far\" depth=\"712\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2880\" plane=\"far\" depth=\"713\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2950\" plane=\"far\" depth=\"714\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"3020\" plane=\"far\" depth=\"715\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"3090\" plane=\"far\" depth=\"716\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"640\" plane=\"far\" depth=\"717\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"710\" plane=\"far\" depth=\"718\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"780\" plane=\"far\" depth=\"719\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"850\" plane=\"far\" depth=\"720\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"920\" plane=\"far\" depth=\"721\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"990\" plane=\"far\" depth=\"722\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1060\" plane=\"far\" depth=\"723\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1130\" plane=\"far\" depth=\"724\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1200\" plane=\"far\" depth=\"725\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1670\" y=\"1260\" plane=\"far\" depth=\"726\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1740\" y=\"1260\" plane=\"far\" depth=\"727\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1810\" y=\"1260\" plane=\"far\" depth=\"728\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1280\" plane=\"far\" depth=\"729\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1490\" plane=\"far\" depth=\"730\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1670\" y=\"1550\" plane=\"far\" depth=\"731\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1740\" y=\"1550\" plane=\"far\" depth=\"732\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1840\" y=\"1280\" plane=\"far\" depth=\"733\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1840\" y=\"1490\" plane=\"far\" depth=\"734\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1810\" y=\"1550\" plane=\"far\" depth=\"735\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1880\" y=\"1550\" plane=\"far\" depth=\"736\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1570\" plane=\"far\" depth=\"737\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1640\" plane=\"far\" depth=\"738\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1710\" plane=\"far\" depth=\"739\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1780\" plane=\"far\" depth=\"740\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1850\" plane=\"far\" depth=\"741\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1920\" plane=\"far\" depth=\"742\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1990\" plane=\"far\" depth=\"743\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"2060\" plane=\"far\" depth=\"744\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"2130\" plane=\"far\" depth=\"745\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3540\" y=\"640\" plane=\"far\" depth=\"746\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3540\" y=\"710\" plane=\"far\" depth=\"747\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3540\" y=\"780\" plane=\"far\" depth=\"748\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3540\" y=\"850\" plane=\"far\" depth=\"749\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3540\" y=\"920\" plane=\"far\" depth=\"750\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3540\" y=\"990\" plane=\"far\" depth=\"751\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3540\" y=\"1060\" plane=\"far\" depth=\"752\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3540\" y=\"1130\" plane=\"far\" depth=\"753\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2860\" y=\"640\" plane=\"far\" depth=\"754\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2860\" y=\"710\" plane=\"far\" depth=\"755\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2860\" y=\"780\" plane=\"far\" depth=\"756\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2860\" y=\"850\" plane=\"far\" depth=\"757\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2860\" y=\"920\" plane=\"far\" depth=\"758\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2860\" y=\"990\" plane=\"far\" depth=\"759\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2860\" y=\"1060\" plane=\"far\" depth=\"760\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2860\" y=\"1130\" plane=\"far\" depth=\"761\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3530\" y=\"1190\" plane=\"far\" depth=\"762\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3460\" y=\"1190\" plane=\"far\" depth=\"763\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3390\" y=\"1190\" plane=\"far\" depth=\"764\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3320\" y=\"1190\" plane=\"far\" depth=\"765\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3010\" y=\"1190\" plane=\"far\" depth=\"766\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2940\" y=\"1190\" plane=\"far\" depth=\"767\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2870\" y=\"1190\" plane=\"far\" depth=\"768\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2860\" y=\"1210\" plane=\"far\" depth=\"769\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2860\" y=\"1280\" plane=\"far\" depth=\"770\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2860\" y=\"1350\" plane=\"far\" depth=\"771\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2860\" y=\"1420\" plane=\"far\" depth=\"772\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2860\" y=\"1490\" plane=\"far\" depth=\"773\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2789\" y=\"1550\" plane=\"far\" depth=\"774\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2719\" y=\"1550\" plane=\"far\" depth=\"775\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2649\" y=\"1550\" plane=\"far\" depth=\"776\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2579\" y=\"1550\" plane=\"far\" depth=\"777\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2510\" y=\"1550\" plane=\"far\" depth=\"778\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2440\" y=\"1550\" plane=\"far\" depth=\"779\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2369\" y=\"1550\" plane=\"far\" depth=\"780\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2300\" y=\"1550\" plane=\"far\" depth=\"781\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2089\" y=\"1550\" plane=\"far\" depth=\"782\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2019\" y=\"1550\" plane=\"far\" depth=\"783\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1949\" y=\"1550\" plane=\"far\" depth=\"784\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2690\" y=\"1570\" plane=\"far\" depth=\"785\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2690\" y=\"1640\" plane=\"far\" depth=\"786\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2690\" y=\"1710\" plane=\"far\" depth=\"787\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2690\" y=\"1780\" plane=\"far\" depth=\"788\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2690\" y=\"1850\" plane=\"far\" depth=\"789\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2690\" y=\"1920\" plane=\"far\" depth=\"790\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2690\" y=\"1980\" plane=\"far\" depth=\"791\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2690\" y=\"2050\" plane=\"far\" depth=\"792\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2690\" y=\"2120\" plane=\"far\" depth=\"793\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2650\" y=\"2190\" plane=\"far\" depth=\"794\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2580\" y=\"2190\" plane=\"far\" depth=\"795\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2510\" y=\"2190\" plane=\"far\" depth=\"796\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2440\" y=\"2190\" plane=\"far\" depth=\"797\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2370\" y=\"2190\" plane=\"far\" depth=\"798\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2300\" y=\"2190\" plane=\"far\" depth=\"799\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2230\" y=\"2190\" plane=\"far\" depth=\"800\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2160\" y=\"2190\" plane=\"far\" depth=\"801\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2090\" y=\"2190\" plane=\"far\" depth=\"802\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2020\" y=\"2190\" plane=\"far\" depth=\"803\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1950\" y=\"2190\" plane=\"far\" depth=\"804\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1880\" y=\"2190\" plane=\"far\" depth=\"805\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1810\" y=\"2190\" plane=\"far\" depth=\"806\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1740\" y=\"2190\" plane=\"far\" depth=\"807\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1670\" y=\"2190\" plane=\"far\" depth=\"808\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"2210\" plane=\"far\" depth=\"809\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"2280\" plane=\"far\" depth=\"810\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"2350\" plane=\"far\" depth=\"811\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"2810\" plane=\"far\" depth=\"812\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"2880\" plane=\"far\" depth=\"813\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"2950\" plane=\"far\" depth=\"814\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"3020\" plane=\"far\" depth=\"815\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"3090\" plane=\"far\" depth=\"816\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2929\" y=\"2190\" plane=\"far\" depth=\"817\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2860\" y=\"2190\" plane=\"far\" depth=\"818\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2790\" y=\"2190\" plane=\"far\" depth=\"819\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2719\" y=\"2190\" plane=\"far\" depth=\"820\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3879\" y=\"1190\" plane=\"far\" depth=\"821\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3809\" y=\"1190\" plane=\"far\" depth=\"822\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3740\" y=\"1190\" plane=\"far\" depth=\"823\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3670\" y=\"1190\" plane=\"far\" depth=\"824\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3599\" y=\"1190\" plane=\"far\" depth=\"825\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1210\" plane=\"far\" depth=\"826\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1280\" plane=\"far\" depth=\"827\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1350\" plane=\"far\" depth=\"828\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1420\" plane=\"far\" depth=\"829\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1490\" plane=\"far\" depth=\"830\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1560\" plane=\"far\" depth=\"831\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1630\" plane=\"far\" depth=\"832\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1700\" plane=\"far\" depth=\"833\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1770\" plane=\"far\" depth=\"834\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1840\" plane=\"far\" depth=\"835\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1910\" plane=\"far\" depth=\"836\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1980\" plane=\"far\" depth=\"837\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"2050\" plane=\"far\" depth=\"838\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"2120\" plane=\"far\" depth=\"839\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2091\" y=\"3160\" plane=\"far\" depth=\"840\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2020\" y=\"3160\" plane=\"far\" depth=\"841\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1950\" y=\"3160\" plane=\"far\" depth=\"842\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1880\" y=\"3160\" plane=\"far\" depth=\"843\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1810\" y=\"3160\" plane=\"far\" depth=\"844\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1740\" y=\"3160\" plane=\"far\" depth=\"845\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1671\" y=\"3160\" plane=\"far\" depth=\"846\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1601\" y=\"3160\" plane=\"far\" depth=\"847\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1530\" y=\"3160\" plane=\"far\" depth=\"848\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1460\" y=\"3160\" plane=\"far\" depth=\"849\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1391\" y=\"3160\" plane=\"far\" depth=\"850\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1321\" y=\"3160\" plane=\"far\" depth=\"851\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1251\" y=\"3160\" plane=\"far\" depth=\"852\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1181\" y=\"3160\" plane=\"far\" depth=\"853\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1110\" y=\"3160\" plane=\"far\" depth=\"854\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1041\" y=\"3160\" plane=\"far\" depth=\"855\"/>";
str = str + "<object tile=\"wall_big2\" x=\"971\" y=\"3160\" plane=\"far\" depth=\"856\"/>";
str = str + "<object tile=\"wall_big2\" x=\"901\" y=\"3160\" plane=\"far\" depth=\"857\"/>";
str = str + "<object tile=\"wall_big2\" x=\"831\" y=\"3160\" plane=\"far\" depth=\"858\"/>";
str = str + "<object tile=\"wall_big2\" x=\"761\" y=\"3160\" plane=\"far\" depth=\"859\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2160\" y=\"3160\" plane=\"far\" depth=\"860\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"2420\" plane=\"far\" depth=\"861\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"2490\" plane=\"far\" depth=\"862\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"2560\" plane=\"far\" depth=\"863\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3251\" y=\"2190\" plane=\"far\" depth=\"864\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3321\" y=\"2190\" plane=\"far\" depth=\"865\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3390\" y=\"2190\" plane=\"far\" depth=\"866\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3460\" y=\"2190\" plane=\"far\" depth=\"867\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3530\" y=\"2190\" plane=\"far\" depth=\"868\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3598\" y=\"2190\" plane=\"far\" depth=\"869\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3669\" y=\"2190\" plane=\"far\" depth=\"870\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3739\" y=\"2190\" plane=\"far\" depth=\"871\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3808\" y=\"2190\" plane=\"far\" depth=\"872\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3880\" y=\"2190\" plane=\"far\" depth=\"873\"/>";
str = str + "<object tile=\"hangar1\" x=\"920\" y=\"3420\" plane=\"far\" depth=\"874\"/>";
str = str + "<object tile=\"hangar1\" x=\"1050\" y=\"3420\" plane=\"far\" depth=\"875\"/>";
str = str + "<object tile=\"heliPad\" x=\"3350\" y=\"800\" plane=\"far\" depth=\"876\"/>";
str = str + "<object tile=\"tower_guard\" x=\"3020\" y=\"2200\" plane=\"far\" depth=\"877\"/>";
str = str + "<object tile=\"house_big2\" x=\"2730\" y=\"1850\" plane=\"far\" depth=\"878\"/>";
str = str + "<object tile=\"house_med5\" x=\"2960\" y=\"1850\" plane=\"far\" depth=\"879\"/>";
str = str + "<object tile=\"house_big2\" x=\"3210\" y=\"1840\" plane=\"far\" depth=\"880\"/>";
str = str + "<object tile=\"house_big2\" x=\"3450\" y=\"1840\" plane=\"far\" depth=\"881\"/>";
str = str + "<object tile=\"house_big2\" x=\"3680\" y=\"1840\" plane=\"far\" depth=\"882\"/>";
str = str + "<object tile=\"house_big2\" x=\"3680\" y=\"1550\" plane=\"far\" depth=\"883\"/>";
str = str + "<object tile=\"house_big2\" x=\"3440\" y=\"1550\" plane=\"far\" depth=\"884\"/>";
str = str + "<object tile=\"house_med5\" x=\"3310\" y=\"1560\" plane=\"far\" depth=\"885\"/>";
str = str + "<object tile=\"house_big2\" x=\"2950\" y=\"1560\" plane=\"far\" depth=\"886\"/>";
str = str + "<object tile=\"house_med5\" x=\"3310\" y=\"1240\" plane=\"far\" depth=\"887\"/>";
str = str + "<object tile=\"house_big2\" x=\"3440\" y=\"1230\" plane=\"far\" depth=\"888\"/>";
str = str + "<object tile=\"house_big2\" x=\"3680\" y=\"1230\" plane=\"far\" depth=\"889\"/>";
str = str + "<object tile=\"house_big2\" x=\"2730\" y=\"1560\" plane=\"far\" depth=\"890\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3210\" y=\"2190\" plane=\"far\" depth=\"891\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2970\" y=\"2210\" plane=\"far\" depth=\"892\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2980\" y=\"2280\" plane=\"far\" depth=\"893\"/>";
str = str + "<object tile=\"post1\" x=\"3200\" y=\"2290\" plane=\"far\" depth=\"894\"/>";
str = str + "<object tile=\"cargo_heli\" x=\"3390\" y=\"830\" plane=\"far\" depth=\"895\"/>";
str = str + "<object tile=\"radar_base2\" x=\"3060\" y=\"1090\" plane=\"far\" depth=\"896\"/>";
str = str + "<object tile=\"hangar2\" x=\"3370\" y=\"970\" plane=\"far\" depth=\"897\"/>";
str = str + "<object tile=\"hangar1\" x=\"3180\" y=\"670\" plane=\"far\" depth=\"898\"/>";
str = str + "<object tile=\"tent2\" x=\"2960\" y=\"1060\" plane=\"far\" depth=\"899\"/>";
str = str + "<object tile=\"tent2\" x=\"2960\" y=\"1030\" plane=\"far\" depth=\"900\"/>";
str = str + "<object tile=\"tent2\" x=\"2960\" y=\"1000\" plane=\"far\" depth=\"901\"/>";
str = str + "<object tile=\"tent2\" x=\"2960\" y=\"970\" plane=\"far\" depth=\"902\"/>";
str = str + "<object tile=\"tent1\" x=\"3000\" y=\"940\" plane=\"far\" depth=\"903\"/>";
str = str + "<object tile=\"tent1\" x=\"3030\" y=\"940\" plane=\"far\" depth=\"904\"/>";
str = str + "<object tile=\"tent1\" x=\"3060\" y=\"940\" plane=\"far\" depth=\"905\"/>";
str = str + "<object tile=\"tent1\" x=\"3090\" y=\"940\" plane=\"far\" depth=\"906\"/>";
str = str + "<object tile=\"tent1\" x=\"3120\" y=\"940\" plane=\"far\" depth=\"907\"/>";
str = str + "<object tile=\"house_med3\" x=\"800\" y=\"2520\" plane=\"far\" depth=\"908\"/>";
str = str + "<object tile=\"house_med4\" x=\"860\" y=\"2370\" plane=\"far\" depth=\"909\"/>";
str = str + "<object tile=\"house_sm1\" x=\"800\" y=\"2620\" plane=\"far\" depth=\"910\"/>";
str = str + "<object tile=\"house_med3\" x=\"800\" y=\"2680\" plane=\"far\" depth=\"911\"/>";
str = str + "<object tile=\"house_med1\" x=\"970\" y=\"2390\" plane=\"far\" depth=\"912\"/>";
str = str + "<object tile=\"house_sm1\" x=\"800\" y=\"2780\" plane=\"far\" depth=\"913\"/>";
str = str + "<object tile=\"house_med3\" x=\"800\" y=\"2840\" plane=\"far\" depth=\"914\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1390\" y=\"2390\" plane=\"far\" depth=\"915\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1390\" y=\"2420\" plane=\"far\" depth=\"916\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1390\" y=\"2450\" plane=\"far\" depth=\"917\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1390\" y=\"2480\" plane=\"far\" depth=\"918\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1390\" y=\"2510\" plane=\"far\" depth=\"919\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1390\" y=\"2540\" plane=\"far\" depth=\"920\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1390\" y=\"2570\" plane=\"far\" depth=\"921\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1390\" y=\"2600\" plane=\"far\" depth=\"922\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1400\" y=\"2630\" plane=\"far\" depth=\"923\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1430\" y=\"2630\" plane=\"far\" depth=\"924\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1460\" y=\"2630\" plane=\"far\" depth=\"925\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1490\" y=\"2630\" plane=\"far\" depth=\"926\"/>";
str = str + "<object tile=\"house_med5\" x=\"1400\" y=\"2330\" plane=\"far\" depth=\"927\"/>";
str = str + "<object tile=\"house_big1\" x=\"1500\" y=\"2370\" plane=\"far\" depth=\"928\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1450\" y=\"2440\" plane=\"far\" depth=\"929\"/>";
str = str + "<object tile=\"house_sm1\" x=\"1650\" y=\"2390\" plane=\"far\" depth=\"930\"/>";
str = str + "<object tile=\"house_med1\" x=\"1780\" y=\"2370\" plane=\"far\" depth=\"931\"/>";
str = str + "<object tile=\"house_med2\" x=\"1690\" y=\"2370\" plane=\"far\" depth=\"932\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1860\" y=\"2450\" plane=\"far\" depth=\"933\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1860\" y=\"2480\" plane=\"far\" depth=\"934\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1860\" y=\"2510\" plane=\"far\" depth=\"935\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1860\" y=\"2540\" plane=\"far\" depth=\"936\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1860\" y=\"2570\" plane=\"far\" depth=\"937\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1860\" y=\"2600\" plane=\"far\" depth=\"938\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1840\" y=\"2630\" plane=\"far\" depth=\"939\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1810\" y=\"2630\" plane=\"far\" depth=\"940\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1780\" y=\"2630\" plane=\"far\" depth=\"941\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1750\" y=\"2630\" plane=\"far\" depth=\"942\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1720\" y=\"2630\" plane=\"far\" depth=\"943\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1690\" y=\"2630\" plane=\"far\" depth=\"944\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1660\" y=\"2630\" plane=\"far\" depth=\"945\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1630\" y=\"2630\" plane=\"far\" depth=\"946\"/>";
str = str + "<object tile=\"house_med4\" x=\"820\" y=\"2950\" plane=\"far\" depth=\"947\"/>";
str = str + "<object tile=\"house_med1\" x=\"1580\" y=\"2820\" plane=\"far\" depth=\"948\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1580\" y=\"2900\" plane=\"far\" depth=\"949\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1580\" y=\"2930\" plane=\"far\" depth=\"950\"/>";
str = str + "<object tile=\"house_sm1\" x=\"1780\" y=\"2800\" plane=\"far\" depth=\"951\"/>";
str = str + "<object tile=\"house_med2\" x=\"1680\" y=\"2790\" plane=\"far\" depth=\"952\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1830\" y=\"2810\" plane=\"far\" depth=\"953\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1850\" y=\"2810\" plane=\"far\" depth=\"954\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1850\" y=\"2840\" plane=\"far\" depth=\"955\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1850\" y=\"2870\" plane=\"far\" depth=\"956\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1850\" y=\"2900\" plane=\"far\" depth=\"957\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1850\" y=\"2930\" plane=\"far\" depth=\"958\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1810\" y=\"2940\" plane=\"far\" depth=\"959\"/>";
str = str + "<object tile=\"house_med3\" x=\"850\" y=\"3040\" plane=\"far\" depth=\"960\"/>";
str = str + "<object tile=\"tower_water\" x=\"1490\" y=\"2800\" plane=\"far\" depth=\"961\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1580\" y=\"2960\" plane=\"far\" depth=\"962\"/>";
str = str + "<object tile=\"house_sm1\" x=\"1590\" y=\"2930\" plane=\"far\" depth=\"963\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1830\" y=\"2990\" plane=\"far\" depth=\"964\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1800\" y=\"2990\" plane=\"far\" depth=\"965\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1770\" y=\"2990\" plane=\"far\" depth=\"966\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1740\" y=\"2990\" plane=\"far\" depth=\"967\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1710\" y=\"2990\" plane=\"far\" depth=\"968\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1590\" y=\"2990\" plane=\"far\" depth=\"969\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1620\" y=\"2990\" plane=\"far\" depth=\"970\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1650\" y=\"2990\" plane=\"far\" depth=\"971\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1680\" y=\"2990\" plane=\"far\" depth=\"972\"/>";
str = str + "<object tile=\"house_med5\" x=\"1470\" y=\"2880\" plane=\"far\" depth=\"973\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1170\" y=\"2180\" plane=\"far\" depth=\"974\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1200\" y=\"2180\" plane=\"far\" depth=\"975\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1230\" y=\"2180\" plane=\"far\" depth=\"976\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1250\" y=\"2180\" plane=\"far\" depth=\"977\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1250\" y=\"2210\" plane=\"far\" depth=\"978\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1250\" y=\"2240\" plane=\"far\" depth=\"979\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1250\" y=\"2360\" plane=\"far\" depth=\"980\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1250\" y=\"2390\" plane=\"far\" depth=\"981\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1250\" y=\"2420\" plane=\"far\" depth=\"982\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1230\" y=\"2450\" plane=\"far\" depth=\"983\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1200\" y=\"2450\" plane=\"far\" depth=\"984\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1170\" y=\"2450\" plane=\"far\" depth=\"985\"/>";
str = str + "<object tile=\"house_sm1\" x=\"1160\" y=\"2370\" plane=\"far\" depth=\"986\"/>";
str = str + "<object tile=\"house_med2\" x=\"1060\" y=\"2360\" plane=\"far\" depth=\"987\"/>";
str = str + "<object tile=\"house_big2\" x=\"950\" y=\"2150\" plane=\"far\" depth=\"988\"/>";
str = str + "<object tile=\"house_big1\" x=\"810\" y=\"2140\" plane=\"far\" depth=\"989\"/>";
str = str + "<object tile=\"tower_guard\" x=\"1740\" y=\"1460\" plane=\"far\" depth=\"990\"/>";
str = str + "<object tile=\"tower_guard\" x=\"1740\" y=\"1310\" plane=\"far\" depth=\"991\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"830\" y=\"2460\" plane=\"far\" depth=\"992\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"800\" y=\"2460\" plane=\"far\" depth=\"993\"/>";
str = str + "<object tile=\"house_med3\" x=\"1480\" y=\"2990\" plane=\"far\" depth=\"994\"/>";
str = str + "<object tile=\"house_sm1\" x=\"1480\" y=\"3090\" plane=\"far\" depth=\"995\"/>";
str = str + "<object tile=\"house_med4\" x=\"1280\" y=\"660\" plane=\"far\" depth=\"996\"/>";
str = str + "<object tile=\"house_big1\" x=\"1380\" y=\"660\" plane=\"far\" depth=\"997\"/>";
str = str + "<object tile=\"house_big2\" x=\"1050\" y=\"640\" plane=\"far\" depth=\"998\"/>";
str = str + "<object tile=\"house_big2\" x=\"830\" y=\"640\" plane=\"far\" depth=\"999\"/>";
str = str + "<object tile=\"house_med5\" x=\"780\" y=\"760\" plane=\"far\" depth=\"1000\"/>";
str = str + "<object tile=\"house_big2\" x=\"830\" y=\"870\" plane=\"far\" depth=\"1001\"/>";
str = str + "<object tile=\"house_big2\" x=\"1060\" y=\"870\" plane=\"far\" depth=\"1002\"/>";
str = str + "<object tile=\"house_med3\" x=\"1200\" y=\"970\" plane=\"far\" depth=\"1003\"/>";
str = str + "<object tile=\"house_med1\" x=\"790\" y=\"1100\" plane=\"far\" depth=\"1004\"/>";
str = str + "<object tile=\"house_med4\" x=\"890\" y=\"1080\" plane=\"far\" depth=\"1005\"/>";
str = str + "<object tile=\"house_big1\" x=\"1000\" y=\"1040\" plane=\"far\" depth=\"1006\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1150\" y=\"1120\" plane=\"far\" depth=\"1007\"/>";
str = str + "<object tile=\"house_med3\" x=\"1200\" y=\"1070\" plane=\"far\" depth=\"1008\"/>";
str = str + "<object tile=\"house_big1\" x=\"800\" y=\"1740\" plane=\"far\" depth=\"1009\"/>";
str = str + "<object tile=\"house_med1\" x=\"950\" y=\"1760\" plane=\"far\" depth=\"1010\"/>";
str = str + "<object tile=\"house_med5\" x=\"1040\" y=\"1750\" plane=\"far\" depth=\"1011\"/>";
str = str + "<object tile=\"house_med2\" x=\"1150\" y=\"1740\" plane=\"far\" depth=\"1012\"/>";
str = str + "<object tile=\"house_med3\" x=\"1170\" y=\"1840\" plane=\"far\" depth=\"1013\"/>";
str = str + "<object tile=\"house_med3\" x=\"810\" y=\"1870\" plane=\"far\" depth=\"1014\"/>";
str = str + "<object tile=\"house_med4\" x=\"810\" y=\"1970\" plane=\"far\" depth=\"1015\"/>";
str = str + "<object tile=\"house_sm2\" x=\"920\" y=\"2020\" plane=\"far\" depth=\"1016\"/>";
str = str + "<object tile=\"house_med2\" x=\"970\" y=\"1960\" plane=\"far\" depth=\"1017\"/>";
str = str + "<object tile=\"house_sm1\" x=\"1080\" y=\"2000\" plane=\"far\" depth=\"1018\"/>";
str = str + "<object tile=\"house_big1\" x=\"1110\" y=\"1920\" plane=\"far\" depth=\"1019\"/>";
str = str + "<object tile=\"house_med3\" x=\"960\" y=\"1300\" plane=\"far\" depth=\"1020\"/>";
str = str + "<object tile=\"house_sm2\" x=\"890\" y=\"1390\" plane=\"far\" depth=\"1021\"/>";
str = str + "<object tile=\"house_big1\" x=\"930\" y=\"1370\" plane=\"far\" depth=\"1022\"/>";
str = str + "<object tile=\"house_med2\" x=\"790\" y=\"1330\" plane=\"far\" depth=\"1023\"/>";
str = str + "<object tile=\"house_med4\" x=\"1080\" y=\"1390\" plane=\"far\" depth=\"1024\"/>";
str = str + "<object tile=\"house_sm1\" x=\"800\" y=\"1430\" plane=\"far\" depth=\"1025\"/>";
str = str + "<object tile=\"house_sm2\" x=\"940\" y=\"1500\" plane=\"far\" depth=\"1026\"/>";
str = str + "<object tile=\"house_med4\" x=\"880\" y=\"1540\" plane=\"far\" depth=\"1027\"/>";
str = str + "<object tile=\"house_sm1\" x=\"1190\" y=\"1420\" plane=\"far\" depth=\"1028\"/>";
str = str + "<object tile=\"house_sm2\" x=\"830\" y=\"1580\" plane=\"far\" depth=\"1029\"/>";
str = str + "<object tile=\"house_med3\" x=\"810\" y=\"1620\" plane=\"far\" depth=\"1030\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1080\" y=\"1480\" plane=\"far\" depth=\"1031\"/>";
str = str + "<object tile=\"house_med2\" x=\"980\" y=\"1530\" plane=\"far\" depth=\"1032\"/>";
str = str + "<object tile=\"house_med3\" x=\"1080\" y=\"1520\" plane=\"far\" depth=\"1033\"/>";
str = str + "<object tile=\"house_sm1\" x=\"1160\" y=\"1570\" plane=\"far\" depth=\"1034\"/>";
str = str + "<object tile=\"house_sm2\" x=\"800\" y=\"1490\" plane=\"far\" depth=\"1035\"/>";
str = str + "<object tile=\"house_med3\" x=\"790\" y=\"1170\" plane=\"far\" depth=\"1036\"/>";
str = str + "<object tile=\"house_sm1\" x=\"790\" y=\"1270\" plane=\"far\" depth=\"1037\"/>";
str = str + "<object tile=\"tower_water\" x=\"1190\" y=\"1270\" plane=\"far\" depth=\"1038\"/>";
str = str + "<object tile=\"house_med1\" x=\"1710\" y=\"1680\" plane=\"far\" depth=\"1039\"/>";
str = str + "<object tile=\"house_big1\" x=\"1790\" y=\"1550\" plane=\"far\" depth=\"1040\"/>";
str = str + "<object tile=\"house_med1\" x=\"1800\" y=\"1680\" plane=\"far\" depth=\"1041\"/>";
str = str + "<object tile=\"house_med4\" x=\"1800\" y=\"1740\" plane=\"far\" depth=\"1042\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1800\" y=\"1830\" plane=\"far\" depth=\"1043\"/>";
str = str + "<object tile=\"house_med2\" x=\"1710\" y=\"1720\" plane=\"far\" depth=\"1044\"/>";
str = str + "<object tile=\"house_sm1\" x=\"1710\" y=\"1820\" plane=\"far\" depth=\"1045\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1750\" y=\"1880\" plane=\"far\" depth=\"1046\"/>";
str = str + "<object tile=\"house_big1\" x=\"1790\" y=\"1860\" plane=\"far\" depth=\"1047\"/>";
str = str + "<object tile=\"house_med5\" x=\"1700\" y=\"1990\" plane=\"far\" depth=\"1048\"/>";
str = str + "<object tile=\"tower_water\" x=\"1710\" y=\"1990\" plane=\"far\" depth=\"1049\"/>";
str = str + "<object tile=\"house_sm1\" x=\"1930\" y=\"1990\" plane=\"far\" depth=\"1050\"/>";
str = str + "<object tile=\"house_med1\" x=\"1970\" y=\"1990\" plane=\"far\" depth=\"1051\"/>";
str = str + "<object tile=\"house_big1\" x=\"2050\" y=\"1940\" plane=\"far\" depth=\"1052\"/>";
str = str + "<object tile=\"house_sm1\" x=\"2020\" y=\"2060\" plane=\"far\" depth=\"1053\"/>";
str = str + "<object tile=\"house_big1\" x=\"2470\" y=\"1540\" plane=\"far\" depth=\"1054\"/>";
str = str + "<object tile=\"house_med4\" x=\"2560\" y=\"1700\" plane=\"far\" depth=\"1055\"/>";
str = str + "<object tile=\"house_med3\" x=\"2480\" y=\"1780\" plane=\"far\" depth=\"1056\"/>";
str = str + "<object tile=\"house_sm1\" x=\"2560\" y=\"1790\" plane=\"far\" depth=\"1057\"/>";
str = str + "<object tile=\"house_sm2\" x=\"2480\" y=\"1880\" plane=\"far\" depth=\"1058\"/>";
str = str + "<object tile=\"house_med1\" x=\"2470\" y=\"1920\" plane=\"far\" depth=\"1059\"/>";
str = str + "<object tile=\"house_big1\" x=\"2550\" y=\"1880\" plane=\"far\" depth=\"1060\"/>";
str = str + "<object tile=\"house_sm1\" x=\"2520\" y=\"1990\" plane=\"far\" depth=\"1061\"/>";
str = str + "<object tile=\"house_med2\" x=\"2510\" y=\"2020\" plane=\"far\" depth=\"1062\"/>";
str = str + "<object tile=\"house_med3\" x=\"2260\" y=\"1970\" plane=\"far\" depth=\"1063\"/>";
str = str + "<object tile=\"house_big1\" x=\"2330\" y=\"1930\" plane=\"far\" depth=\"1064\"/>";
str = str + "<object tile=\"house_sm1\" x=\"2340\" y=\"2060\" plane=\"far\" depth=\"1065\"/>";
str = str + "<object tile=\"house_sm2\" x=\"2460\" y=\"2070\" plane=\"far\" depth=\"1066\"/>";
str = str + "<object tile=\"house_med1\" x=\"2340\" y=\"1580\" plane=\"far\" depth=\"1067\"/>";
str = str + "<object tile=\"house_med4\" x=\"1940\" y=\"1570\" plane=\"far\" depth=\"1068\"/>";
str = str + "<object tile=\"house_sm2\" x=\"2050\" y=\"1590\" plane=\"far\" depth=\"1069\"/>";
str = str + "<object tile=\"house_med4\" x=\"1820\" y=\"2010\" plane=\"far\" depth=\"1070\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1820\" y=\"2100\" plane=\"far\" depth=\"1071\"/>";
str = str + "<object tile=\"house_sm2\" x=\"2430\" y=\"1600\" plane=\"far\" depth=\"1072\"/>";
str = str + "<object tile=\"house_sm1\" x=\"2110\" y=\"1570\" plane=\"far\" depth=\"1073\"/>";
str = str + "<object tile=\"tower_guard\" x=\"2120\" y=\"2560\" plane=\"far\" depth=\"1074\"/>";
str = str + "<object tile=\"tower_guard\" x=\"2130\" y=\"2780\" plane=\"far\" depth=\"1075\"/>";
str = str + "<object tile=\"tower_guard\" x=\"2630\" y=\"1570\" plane=\"far\" depth=\"1076\"/>";
str = str + "<object tile=\"tower_guard\" x=\"2630\" y=\"2120\" plane=\"far\" depth=\"1077\"/>";
str = str + "<object tile=\"tower_guard\" x=\"1720\" y=\"2110\" plane=\"far\" depth=\"1078\"/>";
str = str + "<object tile=\"tower_guard\" x=\"1710\" y=\"1590\" plane=\"far\" depth=\"1079\"/>";
str = str + "<object tile=\"oil_punp2\" x=\"1610\" y=\"3470\" plane=\"far\" depth=\"1080\"/>";
str = str + "<object tile=\"oil_pump1\" x=\"1260\" y=\"3480\" plane=\"far\" depth=\"1081\"/>";
str = str + "<object tile=\"oil_punp2\" x=\"1610\" y=\"3360\" plane=\"far\" depth=\"1082\"/>";
str = str + "<object tile=\"oil_pump1\" x=\"1260\" y=\"3380\" plane=\"far\" depth=\"1083\"/>";
str = str + "<object tile=\"oil_barrel2\" x=\"3880\" y=\"3440\" plane=\"far\" depth=\"1084\"/>";
str = str + "<object tile=\"oil_barrel2\" x=\"3880\" y=\"3370\" plane=\"far\" depth=\"1085\"/>";
str = str + "<object tile=\"oil_barrel2\" x=\"3880\" y=\"3300\" plane=\"far\" depth=\"1086\"/>";
str = str + "<object tile=\"oil_barrel2\" x=\"3880\" y=\"3230\" plane=\"far\" depth=\"1087\"/>";
str = str + "<object tile=\"hangar2\" x=\"4100\" y=\"3450\" plane=\"far\" depth=\"1088\"/>";
str = str + "<object tile=\"oil_punp2\" x=\"4100\" y=\"3360\" plane=\"far\" depth=\"1089\"/>";
str = str + "<object tile=\"oil_punp2\" x=\"4100\" y=\"3270\" plane=\"far\" depth=\"1090\"/>";
str = str + "<object tile=\"oil_punp2\" x=\"4100\" y=\"3180\" plane=\"far\" depth=\"1091\"/>";
str = str + "<object tile=\"house_big2\" x=\"3830\" y=\"2940\" plane=\"far\" depth=\"1092\"/>";
str = str + "<object tile=\"house_med2\" x=\"3410\" y=\"3150\" plane=\"far\" depth=\"1093\"/>";
str = str + "<object tile=\"house_med5\" x=\"4050\" y=\"2940\" plane=\"far\" depth=\"1094\"/>";
str = str + "<object tile=\"house_sm2\" x=\"3420\" y=\"3250\" plane=\"far\" depth=\"1095\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3860\" y=\"3190\" plane=\"far\" depth=\"1096\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3890\" y=\"3190\" plane=\"far\" depth=\"1097\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3920\" y=\"3190\" plane=\"far\" depth=\"1098\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3950\" y=\"3190\" plane=\"far\" depth=\"1099\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3190\" plane=\"far\" depth=\"1100\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3220\" plane=\"far\" depth=\"1101\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3250\" plane=\"far\" depth=\"1102\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3280\" plane=\"far\" depth=\"1103\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3310\" plane=\"far\" depth=\"1104\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3340\" plane=\"far\" depth=\"1105\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3370\" plane=\"far\" depth=\"1106\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3400\" plane=\"far\" depth=\"1107\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3430\" plane=\"far\" depth=\"1108\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3460\" plane=\"far\" depth=\"1109\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3490\" plane=\"far\" depth=\"1110\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3860\" y=\"3520\" plane=\"far\" depth=\"1111\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3890\" y=\"3520\" plane=\"far\" depth=\"1112\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3920\" y=\"3520\" plane=\"far\" depth=\"1113\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3950\" y=\"3520\" plane=\"far\" depth=\"1114\"/>";
str = str + "<object tile=\"hangar1\" x=\"3690\" y=\"2920\" plane=\"far\" depth=\"1115\"/>";
str = str + "<object tile=\"oil_barrel1\" x=\"3610\" y=\"3320\" plane=\"far\" depth=\"1116\"/>";
str = str + "<object tile=\"oil_barrel1\" x=\"3530\" y=\"3320\" plane=\"far\" depth=\"1117\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3780\" y=\"3170\" plane=\"far\" depth=\"1118\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3780\" y=\"3200\" plane=\"far\" depth=\"1119\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3780\" y=\"3230\" plane=\"far\" depth=\"1120\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3700\" y=\"3260\" plane=\"far\" depth=\"1121\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3730\" y=\"3260\" plane=\"far\" depth=\"1122\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3760\" y=\"3260\" plane=\"far\" depth=\"1123\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3691\" y=\"3261\" plane=\"far\" depth=\"1124\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3691\" y=\"3291\" plane=\"far\" depth=\"1125\"/>";
str = str + "<object tile=\"oil_barrel2\" x=\"3700\" y=\"3190\" plane=\"far\" depth=\"1126\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3390\" y=\"3170\" plane=\"far\" depth=\"1127\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3390\" y=\"3200\" plane=\"far\" depth=\"1128\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3390\" y=\"3230\" plane=\"far\" depth=\"1129\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3691\" y=\"3321\" plane=\"far\" depth=\"1130\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3690\" y=\"3350\" plane=\"far\" depth=\"1131\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3390\" y=\"3260\" plane=\"far\" depth=\"1132\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3390\" y=\"3290\" plane=\"far\" depth=\"1133\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3690\" y=\"3383\" plane=\"far\" depth=\"1134\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3520\" y=\"3410\" plane=\"far\" depth=\"1135\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3550\" y=\"3410\" plane=\"far\" depth=\"1136\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3580\" y=\"3410\" plane=\"far\" depth=\"1137\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3610\" y=\"3410\" plane=\"far\" depth=\"1138\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3640\" y=\"3410\" plane=\"far\" depth=\"1139\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3670\" y=\"3410\" plane=\"far\" depth=\"1140\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3400\" y=\"3320\" plane=\"far\" depth=\"1141\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3430\" y=\"3320\" plane=\"far\" depth=\"1142\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3460\" y=\"3320\" plane=\"far\" depth=\"1143\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3480\" y=\"3320\" plane=\"far\" depth=\"1144\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3480\" y=\"3350\" plane=\"far\" depth=\"1145\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3480\" y=\"3380\" plane=\"far\" depth=\"1146\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3490\" y=\"3410\" plane=\"far\" depth=\"1147\"/>";
str = str + "<object tile=\"oil_pump1\" x=\"3180\" y=\"2760\" plane=\"far\" depth=\"1148\"/>";
str = str + "<object tile=\"oil_pump1\" x=\"3180\" y=\"2850\" plane=\"far\" depth=\"1149\"/>";
str = str + "<object tile=\"oil_pump1\" x=\"3180\" y=\"2940\" plane=\"far\" depth=\"1150\"/>";
str = str + "<object tile=\"oil_pump1\" x=\"3180\" y=\"3030\" plane=\"far\" depth=\"1151\"/>";
str = str + "<object tile=\"tower_water\" x=\"3270\" y=\"3100\" plane=\"far\" depth=\"1152\"/>";
str = str + "<object tile=\"hangar2\" x=\"3460\" y=\"2710\" plane=\"far\" depth=\"1153\"/>";
str = str + "<object tile=\"hangar2\" x=\"3470\" y=\"2850\" plane=\"far\" depth=\"1154\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3080\" y=\"1190\" plane=\"far\" depth=\"1155\"/>";
str = str + "<object tile=\"house_big2\" x=\"2900\" y=\"1230\" plane=\"far\" depth=\"1156\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1880\" y=\"1260\" plane=\"far\" depth=\"1157\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1950\" y=\"1260\" plane=\"far\" depth=\"1158\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2020\" y=\"1260\" plane=\"far\" depth=\"1159\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2090\" y=\"1260\" plane=\"far\" depth=\"1160\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2159\" y=\"1260\" plane=\"far\" depth=\"1161\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2229\" y=\"1260\" plane=\"far\" depth=\"1162\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2300\" y=\"1260\" plane=\"far\" depth=\"1163\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2369\" y=\"1260\" plane=\"far\" depth=\"1164\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2439\" y=\"1260\" plane=\"far\" depth=\"1165\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2509\" y=\"1260\" plane=\"far\" depth=\"1166\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2580\" y=\"1260\" plane=\"far\" depth=\"1167\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2649\" y=\"1260\" plane=\"far\" depth=\"1168\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2720\" y=\"1260\" plane=\"far\" depth=\"1169\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2790\" y=\"1260\" plane=\"far\" depth=\"1170\"/>";
str = str + "<object tile=\"house_med1\" x=\"2870\" y=\"2580\" plane=\"far\" depth=\"1171\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2840\" y=\"2380\" plane=\"far\" depth=\"1172\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2870\" y=\"2380\" plane=\"far\" depth=\"1173\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2900\" y=\"2381\" plane=\"far\" depth=\"1174\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2930\" y=\"2380\" plane=\"far\" depth=\"1175\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2960\" y=\"2381\" plane=\"far\" depth=\"1176\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2990\" y=\"2380\" plane=\"far\" depth=\"1177\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3020\" y=\"2381\" plane=\"far\" depth=\"1178\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2830\" y=\"2380\" plane=\"far\" depth=\"1179\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2830\" y=\"2410\" plane=\"far\" depth=\"1180\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2830\" y=\"2440\" plane=\"far\" depth=\"1181\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2830\" y=\"2470\" plane=\"far\" depth=\"1182\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2830\" y=\"2500\" plane=\"far\" depth=\"1183\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2830\" y=\"2530\" plane=\"far\" depth=\"1184\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2830\" y=\"2560\" plane=\"far\" depth=\"1185\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2830\" y=\"2590\" plane=\"far\" depth=\"1186\"/>";
str = str + "<object tile=\"house_sm2\" x=\"2840\" y=\"2450\" plane=\"far\" depth=\"1187\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3040\" y=\"2380\" plane=\"far\" depth=\"1188\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3040\" y=\"2410\" plane=\"far\" depth=\"1189\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3040\" y=\"2440\" plane=\"far\" depth=\"1190\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2830\" y=\"2620\" plane=\"far\" depth=\"1191\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2840\" y=\"2650\" plane=\"far\" depth=\"1192\"/>";
str = str + "<object tile=\"house_med3\" x=\"2990\" y=\"2470\" plane=\"far\" depth=\"1193\"/>";
str = str + "<object tile=\"house_med4\" x=\"2970\" y=\"2560\" plane=\"far\" depth=\"1194\"/>";
str = str + "<object tile=\"house_med4\" x=\"2360\" y=\"2220\" plane=\"far\" depth=\"1195\"/>";
str = str + "<object tile=\"house_big1\" x=\"2450\" y=\"2200\" plane=\"far\" depth=\"1196\"/>";
str = str + "<object tile=\"house_med3\" x=\"2600\" y=\"2220\" plane=\"far\" depth=\"1197\"/>";
str = str + "<object tile=\"house_med5\" x=\"2240\" y=\"2220\" plane=\"far\" depth=\"1198\"/>";
str = str + "<object tile=\"house_sm1\" x=\"2600\" y=\"2320\" plane=\"far\" depth=\"1199\"/>";
str = str + "<object tile=\"house_sm2\" x=\"2570\" y=\"2250\" plane=\"far\" depth=\"1200\"/>";
str = str + "<object tile=\"house_med1\" x=\"2370\" y=\"2310\" plane=\"far\" depth=\"1201\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2210\" plane=\"far\" depth=\"1202\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2240\" plane=\"far\" depth=\"1203\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2270\" plane=\"far\" depth=\"1204\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2300\" plane=\"far\" depth=\"1205\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2330\" plane=\"far\" depth=\"1206\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2360\" plane=\"far\" depth=\"1207\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2390\" plane=\"far\" depth=\"1208\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2420\" plane=\"far\" depth=\"1209\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2450\" plane=\"far\" depth=\"1210\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2480\" plane=\"far\" depth=\"1211\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2510\" plane=\"far\" depth=\"1212\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2539\" plane=\"far\" depth=\"1213\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2570\" plane=\"far\" depth=\"1214\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2600\" plane=\"far\" depth=\"1215\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2610\" y=\"2630\" plane=\"far\" depth=\"1216\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2640\" y=\"2630\" plane=\"far\" depth=\"1217\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2670\" y=\"2630\" plane=\"far\" depth=\"1218\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2700\" y=\"2630\" plane=\"far\" depth=\"1219\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2730\" y=\"2630\" plane=\"far\" depth=\"1220\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2760\" y=\"2630\" plane=\"far\" depth=\"1221\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2420\" y=\"2590\" plane=\"far\" depth=\"1222\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2550\" y=\"2630\" plane=\"far\" depth=\"1223\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2580\" y=\"2630\" plane=\"far\" depth=\"1224\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2240\" y=\"2590\" plane=\"far\" depth=\"1225\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2270\" y=\"2590\" plane=\"far\" depth=\"1226\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2300\" y=\"2590\" plane=\"far\" depth=\"1227\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2330\" y=\"2590\" plane=\"far\" depth=\"1228\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2360\" y=\"2590\" plane=\"far\" depth=\"1229\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2390\" y=\"2590\" plane=\"far\" depth=\"1230\"/>";
str = str + "<object tile=\"house_med1\" x=\"2680\" y=\"2480\" plane=\"far\" depth=\"1231\"/>";
str = str + "<object tile=\"house_med2\" x=\"2590\" y=\"2500\" plane=\"far\" depth=\"1232\"/>";
str = str + "<object tile=\"house_sm1\" x=\"2690\" y=\"2540\" plane=\"far\" depth=\"1233\"/>";
str = str + "<object tile=\"heliPad\" x=\"3010\" y=\"780\" plane=\"far\" depth=\"1234\"/>";
str = str + "<object tile=\"hero1\" x=\"3060\" y=\"830\" plane=\"main\" depth=\"1235\"/>";
str = str + "<object tile=\"gunner\" x=\"950\" y=\"800\" plane=\"main\" depth=\"1236\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"236\" deltay=\"1\" mtype=\"lin\" steps=\"118\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-236\" deltay=\"-1\" mtype=\"lin\" steps=\"118\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1520\" y=\"900\" plane=\"main\" depth=\"1237\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-206\" deltay=\"17\" mtype=\"lin\" steps=\"103\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"206\" deltay=\"-17\" mtype=\"lin\" steps=\"103\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1370\" y=\"1400\" plane=\"main\" depth=\"1238\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"193\" deltay=\"1\" mtype=\"lin\" steps=\"96\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"35\" deltay=\"66\" mtype=\"lin\" steps=\"37\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"6\" deltay=\"-87\" mtype=\"lin\" steps=\"43\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-234\" deltay=\"20\" mtype=\"lin\" steps=\"117\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1220\" y=\"1530\" plane=\"main\" depth=\"1239\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"100\" deltay=\"0\" mtype=\"lin\" steps=\"50\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-22\" deltay=\"182\" mtype=\"lin\" steps=\"91\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"40\" deltay=\"-108\" mtype=\"lin\" steps=\"57\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-118\" deltay=\"-74\" mtype=\"lin\" steps=\"69\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1320\" y=\"960\" plane=\"main\" depth=\"1240\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"2\" deltay=\"264\" mtype=\"lin\" steps=\"132\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"63\" deltay=\"102\" mtype=\"lin\" steps=\"59\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-65\" deltay=\"-366\" mtype=\"lin\" steps=\"185\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"1510\" y=\"1220\" plane=\"main\" depth=\"1241\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-94\" deltay=\"-23\" mtype=\"lin\" steps=\"48\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"94\" deltay=\"23\" mtype=\"lin\" steps=\"48\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"1100\" y=\"1070\" plane=\"main\" depth=\"1242\"/>";
str = str + "<object tile=\"PZRK\" x=\"1090\" y=\"1790\" plane=\"main\" depth=\"1243\"/>";
str = str + "<object tile=\"PZRK\" x=\"1440\" y=\"2370\" plane=\"main\" depth=\"1244\"/>";
str = str + "<object tile=\"gunner\" x=\"910\" y=\"1340\" plane=\"main\" depth=\"1245\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-98\" mtype=\"lin\" steps=\"49\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"168\" deltay=\"0\" mtype=\"lin\" steps=\"84\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"97\" mtype=\"lin\" steps=\"48\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-44\" deltay=\"-119\" mtype=\"lin\" steps=\"63\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-86\" deltay=\"2\" mtype=\"lin\" steps=\"43\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-38\" deltay=\"118\" mtype=\"lin\" steps=\"61\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_1\" x=\"930\" y=\"1660\" plane=\"main\" depth=\"1246\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"329\" deltay=\"-4\" mtype=\"lin\" steps=\"164\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"2\" deltay=\"-252\" mtype=\"lin\" steps=\"126\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-19\" deltay=\"236\" mtype=\"lin\" steps=\"118\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-312\" deltay=\"20\" mtype=\"lin\" steps=\"156\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_1\" x=\"1520\" y=\"1730\" plane=\"main\" depth=\"1247\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-573\" deltay=\"1\" mtype=\"lin\" steps=\"286\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"366\" deltay=\"-61\" mtype=\"lin\" steps=\"185\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"130\" mtype=\"lin\" steps=\"65\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"207\" deltay=\"-70\" mtype=\"lin\" steps=\"109\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"870\" y=\"2100\" plane=\"main\" depth=\"1248\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"472\" deltay=\"-1\" mtype=\"lin\" steps=\"236\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"6\" deltay=\"-300\" mtype=\"lin\" steps=\"150\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-61\" deltay=\"326\" mtype=\"lin\" steps=\"165\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-417\" deltay=\"-25\" mtype=\"lin\" steps=\"208\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1290\" y=\"2250\" plane=\"main\" depth=\"1249\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"65\" deltay=\"-170\" mtype=\"lin\" steps=\"91\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-34\" deltay=\"-85\" mtype=\"lin\" steps=\"45\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-31\" deltay=\"255\" mtype=\"lin\" steps=\"128\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1400\" y=\"1860\" plane=\"main\" depth=\"1250\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-69\" deltay=\"108\" mtype=\"lin\" steps=\"64\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"119\" deltay=\"63\" mtype=\"lin\" steps=\"67\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-148\" deltay=\"-160\" mtype=\"lin\" steps=\"108\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"98\" deltay=\"-11\" mtype=\"lin\" steps=\"49\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1470\" y=\"2120\" plane=\"main\" depth=\"1251\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"89\" deltay=\"76\" mtype=\"lin\" steps=\"58\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-120\" deltay=\"72\" mtype=\"lin\" steps=\"69\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"31\" deltay=\"-148\" mtype=\"lin\" steps=\"75\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1270\" y=\"2320\" plane=\"main\" depth=\"1252\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-356\" deltay=\"2\" mtype=\"lin\" steps=\"178\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"356\" deltay=\"-2\" mtype=\"lin\" steps=\"178\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"1760\" y=\"2550\" plane=\"main\" depth=\"1253\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-265\" deltay=\"0\" mtype=\"lin\" steps=\"132\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"265\" deltay=\"0\" mtype=\"lin\" steps=\"132\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1810\" y=\"2320\" plane=\"main\" depth=\"1254\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-201\" deltay=\"-94\" mtype=\"lin\" steps=\"110\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-148\" deltay=\"45\" mtype=\"lin\" steps=\"77\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"238\" deltay=\"32\" mtype=\"lin\" steps=\"120\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"111\" deltay=\"17\" mtype=\"lin\" steps=\"56\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1060\" y=\"2600\" plane=\"main\" depth=\"1255\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-130\" deltay=\"-70\" mtype=\"lin\" steps=\"73\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"272\" deltay=\"1\" mtype=\"lin\" steps=\"136\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-142\" deltay=\"69\" mtype=\"lin\" steps=\"78\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1230\" y=\"2890\" plane=\"main\" depth=\"1256\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"54\" deltay=\"-113\" mtype=\"lin\" steps=\"62\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-151\" deltay=\"154\" mtype=\"lin\" steps=\"107\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"97\" deltay=\"-41\" mtype=\"lin\" steps=\"52\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1370\" y=\"2720\" plane=\"main\" depth=\"1257\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"86\" deltay=\"-39\" mtype=\"lin\" steps=\"47\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"9\" deltay=\"85\" mtype=\"lin\" steps=\"42\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-95\" deltay=\"-46\" mtype=\"lin\" steps=\"52\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1060\" y=\"2970\" plane=\"main\" depth=\"1258\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"145\" deltay=\"1\" mtype=\"lin\" steps=\"72\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-97\" deltay=\"-159\" mtype=\"lin\" steps=\"93\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-48\" deltay=\"158\" mtype=\"lin\" steps=\"82\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"1370\" y=\"2950\" plane=\"main\" depth=\"1259\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-66\" deltay=\"-147\" mtype=\"lin\" steps=\"80\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"146\" deltay=\"18\" mtype=\"lin\" steps=\"73\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-80\" deltay=\"129\" mtype=\"lin\" steps=\"75\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"1000\" y=\"2720\" plane=\"main\" depth=\"1260\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"152\" deltay=\"-47\" mtype=\"lin\" steps=\"79\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-6\" deltay=\"-105\" mtype=\"lin\" steps=\"52\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-146\" deltay=\"152\" mtype=\"lin\" steps=\"105\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"1310\" y=\"2530\" plane=\"main\" depth=\"1261\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"72\" deltay=\"-234\" mtype=\"lin\" steps=\"122\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-83\" deltay=\"-42\" mtype=\"lin\" steps=\"46\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"11\" deltay=\"276\" mtype=\"lin\" steps=\"138\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"1560\" y=\"2700\" plane=\"main\" depth=\"1262\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"131\" deltay=\"70\" mtype=\"lin\" steps=\"74\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"102\" deltay=\"-64\" mtype=\"lin\" steps=\"60\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-233\" deltay=\"-6\" mtype=\"lin\" steps=\"116\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"palms1\" x=\"770\" y=\"2930\" plane=\"nearest\" depth=\"1263\"/>";
str = str + "<object tile=\"palms1\" x=\"780\" y=\"2990\" plane=\"nearest\" depth=\"1264\"/>";
str = str + "<object tile=\"palms1\" x=\"770\" y=\"3100\" plane=\"nearest\" depth=\"1265\"/>";
str = str + "<object tile=\"palms1\" x=\"800\" y=\"3100\" plane=\"nearest\" depth=\"1266\"/>";
str = str + "<object tile=\"palms1\" x=\"790\" y=\"3060\" plane=\"nearest\" depth=\"1267\"/>";
str = str + "<object tile=\"palms1\" x=\"820\" y=\"3010\" plane=\"nearest\" depth=\"1268\"/>";
str = str + "<object tile=\"palms1\" x=\"840\" y=\"2760\" plane=\"nearest\" depth=\"1269\"/>";
str = str + "<object tile=\"palms4\" x=\"1880\" y=\"2400\" plane=\"nearest\" depth=\"1270\"/>";
str = str + "<object tile=\"palms4\" x=\"2010\" y=\"2200\" plane=\"nearest\" depth=\"1271\"/>";
str = str + "<object tile=\"palms5\" x=\"1780\" y=\"2230\" plane=\"nearest\" depth=\"1272\"/>";
str = str + "<object tile=\"palms3\" x=\"1950\" y=\"2410\" plane=\"nearest\" depth=\"1273\"/>";
str = str + "<object tile=\"palms3\" x=\"2040\" y=\"2310\" plane=\"nearest\" depth=\"1274\"/>";
str = str + "<object tile=\"palms1\" x=\"2020\" y=\"2420\" plane=\"nearest\" depth=\"1275\"/>";
str = str + "<object tile=\"palms1\" x=\"2030\" y=\"2380\" plane=\"nearest\" depth=\"1276\"/>";
str = str + "<object tile=\"palms1\" x=\"1970\" y=\"2350\" plane=\"nearest\" depth=\"1277\"/>";
str = str + "<object tile=\"palms1\" x=\"1930\" y=\"2300\" plane=\"nearest\" depth=\"1278\"/>";
str = str + "<object tile=\"palms1\" x=\"1970\" y=\"2260\" plane=\"nearest\" depth=\"1279\"/>";
str = str + "<object tile=\"palms1\" x=\"1710\" y=\"2260\" plane=\"nearest\" depth=\"1280\"/>";
str = str + "<object tile=\"palms1\" x=\"1680\" y=\"2300\" plane=\"nearest\" depth=\"1281\"/>";
str = str + "<object tile=\"palms1\" x=\"1440\" y=\"2230\" plane=\"nearest\" depth=\"1282\"/>";
str = str + "<object tile=\"palms3\" x=\"1540\" y=\"2190\" plane=\"nearest\" depth=\"1283\"/>";
str = str + "<object tile=\"palms1\" x=\"1670\" y=\"2260\" plane=\"nearest\" depth=\"1284\"/>";
str = str + "<object tile=\"palms1\" x=\"1510\" y=\"2260\" plane=\"nearest\" depth=\"1285\"/>";
str = str + "<object tile=\"palms1\" x=\"1480\" y=\"2190\" plane=\"nearest\" depth=\"1286\"/>";
str = str + "<object tile=\"palms1\" x=\"1400\" y=\"2190\" plane=\"nearest\" depth=\"1287\"/>";
str = str + "<object tile=\"palms1\" x=\"1680\" y=\"2220\" plane=\"nearest\" depth=\"1288\"/>";
str = str + "<object tile=\"palms1\" x=\"1740\" y=\"2220\" plane=\"nearest\" depth=\"1289\"/>";
str = str + "<object tile=\"palms1\" x=\"1740\" y=\"2280\" plane=\"nearest\" depth=\"1290\"/>";
str = str + "<object tile=\"palms1\" x=\"1660\" y=\"2330\" plane=\"nearest\" depth=\"1291\"/>";
str = str + "<object tile=\"palms1\" x=\"1530\" y=\"2310\" plane=\"nearest\" depth=\"1292\"/>";
str = str + "<object tile=\"palms3\" x=\"1610\" y=\"3000\" plane=\"nearest\" depth=\"1293\"/>";
str = str + "<object tile=\"palms4\" x=\"1810\" y=\"2990\" plane=\"nearest\" depth=\"1294\"/>";
str = str + "<object tile=\"palms1\" x=\"1930\" y=\"3060\" plane=\"nearest\" depth=\"1295\"/>";
str = str + "<object tile=\"palms1\" x=\"1960\" y=\"3080\" plane=\"nearest\" depth=\"1296\"/>";
str = str + "<object tile=\"palms1\" x=\"2020\" y=\"3080\" plane=\"nearest\" depth=\"1297\"/>";
str = str + "<object tile=\"palms1\" x=\"2010\" y=\"3040\" plane=\"nearest\" depth=\"1298\"/>";
str = str + "<object tile=\"palms1\" x=\"2060\" y=\"3000\" plane=\"nearest\" depth=\"1299\"/>";
str = str + "<object tile=\"palms1\" x=\"2040\" y=\"2950\" plane=\"nearest\" depth=\"1300\"/>";
str = str + "<object tile=\"palms1\" x=\"2070\" y=\"2930\" plane=\"nearest\" depth=\"1301\"/>";
str = str + "<object tile=\"palms1\" x=\"1530\" y=\"3090\" plane=\"nearest\" depth=\"1302\"/>";
str = str + "<object tile=\"palms1\" x=\"1570\" y=\"3080\" plane=\"nearest\" depth=\"1303\"/>";
str = str + "<object tile=\"palms1\" x=\"1750\" y=\"3070\" plane=\"nearest\" depth=\"1304\"/>";
str = str + "<object tile=\"palms1\" x=\"1750\" y=\"3030\" plane=\"nearest\" depth=\"1305\"/>";
str = str + "<object tile=\"palms1\" x=\"2070\" y=\"2870\" plane=\"nearest\" depth=\"1306\"/>";
str = str + "<object tile=\"palms1\" x=\"1900\" y=\"2520\" plane=\"nearest\" depth=\"1307\"/>";
str = str + "<object tile=\"palms1\" x=\"1840\" y=\"2820\" plane=\"nearest\" depth=\"1308\"/>";
str = str + "<object tile=\"palms1\" x=\"1860\" y=\"2780\" plane=\"nearest\" depth=\"1309\"/>";
str = str + "<object tile=\"palms1\" x=\"1850\" y=\"2910\" plane=\"nearest\" depth=\"1310\"/>";
str = str + "<object tile=\"palms1\" x=\"1910\" y=\"2560\" plane=\"nearest\" depth=\"1311\"/>";
str = str + "<object tile=\"palms5\" x=\"1360\" y=\"1740\" plane=\"nearest\" depth=\"1312\"/>";
str = str + "<object tile=\"palms5\" x=\"1490\" y=\"1770\" plane=\"nearest\" depth=\"1313\"/>";
str = str + "<object tile=\"palms5\" x=\"1460\" y=\"1090\" plane=\"nearest\" depth=\"1314\"/>";
str = str + "<object tile=\"palms4\" x=\"1360\" y=\"1830\" plane=\"nearest\" depth=\"1315\"/>";
str = str + "<object tile=\"palms4\" x=\"1360\" y=\"1030\" plane=\"nearest\" depth=\"1316\"/>";
str = str + "<object tile=\"palms1\" x=\"1570\" y=\"1720\" plane=\"nearest\" depth=\"1317\"/>";
str = str + "<object tile=\"palms1\" x=\"1610\" y=\"1690\" plane=\"nearest\" depth=\"1318\"/>";
str = str + "<object tile=\"palms1\" x=\"1600\" y=\"1750\" plane=\"nearest\" depth=\"1319\"/>";
str = str + "<object tile=\"palms1\" x=\"1360\" y=\"1980\" plane=\"nearest\" depth=\"1320\"/>";
str = str + "<object tile=\"palms5\" x=\"1460\" y=\"1880\" plane=\"nearest\" depth=\"1321\"/>";
str = str + "<object tile=\"palms4\" x=\"1370\" y=\"2080\" plane=\"nearest\" depth=\"1322\"/>";
str = str + "<object tile=\"palms4\" x=\"1400\" y=\"1970\" plane=\"nearest\" depth=\"1323\"/>";
str = str + "<object tile=\"palms4\" x=\"1500\" y=\"2030\" plane=\"nearest\" depth=\"1324\"/>";
str = str + "<object tile=\"palms1\" x=\"1380\" y=\"2240\" plane=\"nearest\" depth=\"1325\"/>";
str = str + "<object tile=\"palms1\" x=\"1590\" y=\"1140\" plane=\"nearest\" depth=\"1326\"/>";
str = str + "<object tile=\"palms5\" x=\"1380\" y=\"800\" plane=\"nearest\" depth=\"1327\"/>";
str = str + "<object tile=\"palms4\" x=\"1530\" y=\"670\" plane=\"nearest\" depth=\"1328\"/>";
str = str + "<object tile=\"palms4\" x=\"1370\" y=\"890\" plane=\"nearest\" depth=\"1329\"/>";
str = str + "<object tile=\"palms3\" x=\"1530\" y=\"800\" plane=\"nearest\" depth=\"1330\"/>";
str = str + "<object tile=\"palms1\" x=\"1440\" y=\"900\" plane=\"nearest\" depth=\"1331\"/>";
str = str + "<object tile=\"palms1\" x=\"1530\" y=\"850\" plane=\"nearest\" depth=\"1332\"/>";
str = str + "<object tile=\"palms1\" x=\"1450\" y=\"1050\" plane=\"nearest\" depth=\"1333\"/>";
str = str + "<object tile=\"palms3\" x=\"1540\" y=\"910\" plane=\"nearest\" depth=\"1334\"/>";
str = str + "<object tile=\"palms3\" x=\"1500\" y=\"1000\" plane=\"nearest\" depth=\"1335\"/>";
str = str + "<object tile=\"palms1\" x=\"1540\" y=\"970\" plane=\"nearest\" depth=\"1336\"/>";
str = str + "<object tile=\"palms1\" x=\"1580\" y=\"1030\" plane=\"nearest\" depth=\"1337\"/>";
str = str + "<object tile=\"palms1\" x=\"790\" y=\"2460\" plane=\"nearest\" depth=\"1338\"/>";
str = str + "<object tile=\"palms1\" x=\"830\" y=\"2470\" plane=\"nearest\" depth=\"1339\"/>";
str = str + "<object tile=\"palms1\" x=\"780\" y=\"1540\" plane=\"nearest\" depth=\"1340\"/>";
str = str + "<object tile=\"palms1\" x=\"840\" y=\"1420\" plane=\"nearest\" depth=\"1341\"/>";
str = str + "<object tile=\"palms1\" x=\"790\" y=\"1300\" plane=\"nearest\" depth=\"1342\"/>";
str = str + "<object tile=\"palms1\" x=\"1140\" y=\"1260\" plane=\"nearest\" depth=\"1343\"/>";
str = str + "<object tile=\"palms1\" x=\"1120\" y=\"1290\" plane=\"nearest\" depth=\"1344\"/>";
str = str + "<object tile=\"palms1\" x=\"1230\" y=\"1320\" plane=\"nearest\" depth=\"1345\"/>";
str = str + "<object tile=\"palms1\" x=\"1180\" y=\"1320\" plane=\"nearest\" depth=\"1346\"/>";
str = str + "<object tile=\"palms1\" x=\"780\" y=\"700\" plane=\"nearest\" depth=\"1347\"/>";
str = str + "<object tile=\"palms1\" x=\"800\" y=\"630\" plane=\"nearest\" depth=\"1348\"/>";
str = str + "<object tile=\"palms1\" x=\"1030\" y=\"640\" plane=\"nearest\" depth=\"1349\"/>";
str = str + "<object tile=\"palms1\" x=\"1530\" y=\"630\" plane=\"nearest\" depth=\"1350\"/>";
str = str + "<object tile=\"palms1\" x=\"1610\" y=\"640\" plane=\"nearest\" depth=\"1351\"/>";
str = str + "<object tile=\"palms1\" x=\"1030\" y=\"930\" plane=\"nearest\" depth=\"1352\"/>";
str = str + "<object tile=\"palms1\" x=\"770\" y=\"970\" plane=\"nearest\" depth=\"1353\"/>";
str = str + "<object tile=\"palms1\" x=\"800\" y=\"920\" plane=\"nearest\" depth=\"1354\"/>";
str = str + "<object tile=\"palms1\" x=\"800\" y=\"850\" plane=\"nearest\" depth=\"1355\"/>";
str = str + "<object tile=\"palms1\" x=\"1540\" y=\"2100\" plane=\"nearest\" depth=\"1356\"/>";
str = str + "<object tile=\"palms1\" x=\"1200\" y=\"1590\" plane=\"nearest\" depth=\"1357\"/>";
str = str + "<object tile=\"palms1\" x=\"1220\" y=\"1630\" plane=\"nearest\" depth=\"1358\"/>";
str = str + "<object tile=\"palms1\" x=\"1220\" y=\"1600\" plane=\"nearest\" depth=\"1359\"/>";
str = str + "<object tile=\"palms1\" x=\"770\" y=\"2170\" plane=\"nearest\" depth=\"1360\"/>";
str = str + "<object tile=\"palms1\" x=\"780\" y=\"2050\" plane=\"nearest\" depth=\"1361\"/>";
str = str + "<object tile=\"palms1\" x=\"960\" y=\"1860\" plane=\"nearest\" depth=\"1362\"/>";
str = str + "<object tile=\"palms5\" x=\"2140\" y=\"2030\" plane=\"nearest\" depth=\"1363\"/>";
str = str + "<object tile=\"palms4\" x=\"1670\" y=\"1850\" plane=\"nearest\" depth=\"1364\"/>";
str = str + "<object tile=\"palms3\" x=\"2370\" y=\"2060\" plane=\"nearest\" depth=\"1365\"/>";
str = str + "<object tile=\"palms1\" x=\"2350\" y=\"2110\" plane=\"nearest\" depth=\"1366\"/>";
str = str + "<object tile=\"palms1\" x=\"2520\" y=\"1860\" plane=\"nearest\" depth=\"1367\"/>";
str = str + "<object tile=\"palms1\" x=\"1760\" y=\"1790\" plane=\"nearest\" depth=\"1368\"/>";
str = str + "<object tile=\"palms1\" x=\"1860\" y=\"2100\" plane=\"nearest\" depth=\"1369\"/>";
str = str + "<object tile=\"palms1\" x=\"1920\" y=\"2030\" plane=\"nearest\" depth=\"1370\"/>";
str = str + "<object tile=\"palms1\" x=\"2170\" y=\"2110\" plane=\"nearest\" depth=\"1371\"/>";
str = str + "<object tile=\"palms1\" x=\"2310\" y=\"2110\" plane=\"nearest\" depth=\"1372\"/>";
str = str + "<object tile=\"palms1\" x=\"2040\" y=\"1540\" plane=\"nearest\" depth=\"1373\"/>";
str = str + "<object tile=\"palms5\" x=\"3690\" y=\"3360\" plane=\"nearest\" depth=\"1374\"/>";
str = str + "<object tile=\"palms5\" x=\"4050\" y=\"2860\" plane=\"nearest\" depth=\"1375\"/>";
str = str + "<object tile=\"palms4\" x=\"4230\" y=\"3400\" plane=\"nearest\" depth=\"1376\"/>";
str = str + "<object tile=\"palms4\" x=\"4170\" y=\"3030\" plane=\"nearest\" depth=\"1377\"/>";
str = str + "<object tile=\"palms3\" x=\"3740\" y=\"3260\" plane=\"nearest\" depth=\"1378\"/>";
str = str + "<object tile=\"palms3\" x=\"4210\" y=\"3000\" plane=\"nearest\" depth=\"1379\"/>";
str = str + "<object tile=\"palms1\" x=\"3790\" y=\"3190\" plane=\"nearest\" depth=\"1380\"/>";
str = str + "<object tile=\"palms1\" x=\"3710\" y=\"3470\" plane=\"nearest\" depth=\"1381\"/>";
str = str + "<object tile=\"palms1\" x=\"4290\" y=\"3320\" plane=\"nearest\" depth=\"1382\"/>";
str = str + "<object tile=\"palms1\" x=\"4300\" y=\"3390\" plane=\"nearest\" depth=\"1383\"/>";
str = str + "<object tile=\"palms1\" x=\"4340\" y=\"3360\" plane=\"nearest\" depth=\"1384\"/>";
str = str + "<object tile=\"palms1\" x=\"4390\" y=\"3290\" plane=\"nearest\" depth=\"1385\"/>";
str = str + "<object tile=\"palms1\" x=\"4330\" y=\"3230\" plane=\"nearest\" depth=\"1386\"/>";
str = str + "<object tile=\"palms1\" x=\"4320\" y=\"3130\" plane=\"nearest\" depth=\"1387\"/>";
str = str + "<object tile=\"palms1\" x=\"4350\" y=\"3490\" plane=\"nearest\" depth=\"1388\"/>";
str = str + "<object tile=\"palms1\" x=\"4410\" y=\"3480\" plane=\"nearest\" depth=\"1389\"/>";
str = str + "<object tile=\"palms1\" x=\"4340\" y=\"3430\" plane=\"nearest\" depth=\"1390\"/>";
str = str + "<object tile=\"palms1\" x=\"4020\" y=\"2820\" plane=\"nearest\" depth=\"1391\"/>";
str = str + "<object tile=\"palms5\" x=\"1730\" y=\"3390\" plane=\"nearest\" depth=\"1392\"/>";
str = str + "<object tile=\"palms5\" x=\"1690\" y=\"3260\" plane=\"nearest\" depth=\"1393\"/>";
str = str + "<object tile=\"palms5\" x=\"1340\" y=\"3250\" plane=\"nearest\" depth=\"1394\"/>";
str = str + "<object tile=\"palms5\" x=\"1050\" y=\"3310\" plane=\"nearest\" depth=\"1395\"/>";
str = str + "<object tile=\"palms5\" x=\"1230\" y=\"3760\" plane=\"nearest\" depth=\"1396\"/>";
str = str + "<object tile=\"palms5\" x=\"1060\" y=\"3730\" plane=\"nearest\" depth=\"1397\"/>";
str = str + "<object tile=\"palms5\" x=\"1680\" y=\"3770\" plane=\"nearest\" depth=\"1398\"/>";
str = str + "<object tile=\"palms5\" x=\"1420\" y=\"3770\" plane=\"nearest\" depth=\"1399\"/>";
str = str + "<object tile=\"palms4\" x=\"1530\" y=\"3420\" plane=\"nearest\" depth=\"1400\"/>";
str = str + "<object tile=\"palms4\" x=\"1160\" y=\"3430\" plane=\"nearest\" depth=\"1401\"/>";
str = str + "<object tile=\"palms4\" x=\"810\" y=\"3410\" plane=\"nearest\" depth=\"1402\"/>";
str = str + "<object tile=\"palms4\" x=\"1340\" y=\"3750\" plane=\"nearest\" depth=\"1403\"/>";
str = str + "<object tile=\"palms4\" x=\"1840\" y=\"3780\" plane=\"nearest\" depth=\"1404\"/>";
str = str + "<object tile=\"palms3\" x=\"1520\" y=\"3310\" plane=\"nearest\" depth=\"1405\"/>";
str = str + "<object tile=\"palms3\" x=\"950\" y=\"3340\" plane=\"nearest\" depth=\"1406\"/>";
str = str + "<object tile=\"palms1\" x=\"870\" y=\"3380\" plane=\"nearest\" depth=\"1407\"/>";
str = str + "<object tile=\"palms1\" x=\"1240\" y=\"3870\" plane=\"nearest\" depth=\"1408\"/>";
str = str + "<object tile=\"palms1\" x=\"1240\" y=\"3830\" plane=\"nearest\" depth=\"1409\"/>";
str = str + "<object tile=\"palms1\" x=\"1560\" y=\"3850\" plane=\"nearest\" depth=\"1410\"/>";
str = str + "<object tile=\"palms1\" x=\"1600\" y=\"3820\" plane=\"nearest\" depth=\"1411\"/>";
str = str + "<object tile=\"palms1\" x=\"1580\" y=\"3750\" plane=\"nearest\" depth=\"1412\"/>";
str = str + "<object tile=\"palms1\" x=\"1680\" y=\"3870\" plane=\"nearest\" depth=\"1413\"/>";
str = str + "<object tile=\"palms1\" x=\"1600\" y=\"3270\" plane=\"nearest\" depth=\"1414\"/>";
str = str + "<object tile=\"palms1\" x=\"1590\" y=\"3220\" plane=\"nearest\" depth=\"1415\"/>";
str = str + "<object tile=\"palms4\" x=\"1800\" y=\"3170\" plane=\"nearest\" depth=\"1416\"/>";
str = str + "<object tile=\"palms4\" x=\"1120\" y=\"3200\" plane=\"nearest\" depth=\"1417\"/>";
str = str + "<object tile=\"palms3\" x=\"980\" y=\"3230\" plane=\"nearest\" depth=\"1418\"/>";
str = str + "<object tile=\"palms3\" x=\"1890\" y=\"3230\" plane=\"nearest\" depth=\"1419\"/>";
str = str + "<object tile=\"palms1\" x=\"1990\" y=\"3310\" plane=\"nearest\" depth=\"1420\"/>";
str = str + "<object tile=\"palms1\" x=\"1280\" y=\"3230\" plane=\"nearest\" depth=\"1421\"/>";
str = str + "<object tile=\"palms1\" x=\"1340\" y=\"3190\" plane=\"nearest\" depth=\"1422\"/>";
str = str + "<object tile=\"palms1\" x=\"1240\" y=\"3190\" plane=\"nearest\" depth=\"1423\"/>";
str = str + "<object tile=\"palms1\" x=\"1230\" y=\"3340\" plane=\"nearest\" depth=\"1424\"/>";
str = str + "<object tile=\"palms1\" x=\"3700\" y=\"3290\" plane=\"nearest\" depth=\"1425\"/>";
str = str + "<object tile=\"palms1\" x=\"3590\" y=\"3460\" plane=\"nearest\" depth=\"1426\"/>";
str = str + "<object tile=\"palms1\" x=\"3630\" y=\"3430\" plane=\"nearest\" depth=\"1427\"/>";
str = str + "<object tile=\"palms1\" x=\"3630\" y=\"3470\" plane=\"nearest\" depth=\"1428\"/>";
str = str + "<object tile=\"palms1\" x=\"3850\" y=\"2850\" plane=\"nearest\" depth=\"1429\"/>";
str = str + "<object tile=\"palms1\" x=\"3870\" y=\"2820\" plane=\"nearest\" depth=\"1430\"/>";
str = str + "<object tile=\"palms1\" x=\"3760\" y=\"2770\" plane=\"nearest\" depth=\"1431\"/>";
str = str + "<object tile=\"palms5\" x=\"2060\" y=\"2420\" plane=\"nearest\" depth=\"1432\"/>";
str = str + "<object tile=\"palms4\" x=\"2010\" y=\"2510\" plane=\"nearest\" depth=\"1433\"/>";
str = str + "<object tile=\"palms4\" x=\"2100\" y=\"2190\" plane=\"nearest\" depth=\"1434\"/>";
str = str + "<object tile=\"palms3\" x=\"2100\" y=\"2320\" plane=\"nearest\" depth=\"1435\"/>";
str = str + "<object tile=\"palms3\" x=\"2050\" y=\"2780\" plane=\"nearest\" depth=\"1436\"/>";
str = str + "<object tile=\"palms5\" x=\"2110\" y=\"2970\" plane=\"nearest\" depth=\"1437\"/>";
str = str + "<object tile=\"palms1\" x=\"2160\" y=\"2940\" plane=\"nearest\" depth=\"1438\"/>";
str = str + "<object tile=\"palms1\" x=\"2150\" y=\"2830\" plane=\"nearest\" depth=\"1439\"/>";
str = str + "<object tile=\"palms1\" x=\"2110\" y=\"2930\" plane=\"nearest\" depth=\"1440\"/>";
str = str + "<object tile=\"palms1\" x=\"2070\" y=\"3090\" plane=\"nearest\" depth=\"1441\"/>";
str = str + "<object tile=\"palms1\" x=\"2100\" y=\"3100\" plane=\"nearest\" depth=\"1442\"/>";
str = str + "<object tile=\"palms1\" x=\"2040\" y=\"3180\" plane=\"nearest\" depth=\"1443\"/>";
str = str + "<object tile=\"palms1\" x=\"2040\" y=\"3220\" plane=\"nearest\" depth=\"1444\"/>";
str = str + "<object tile=\"palms5\" x=\"3000\" y=\"2740\" plane=\"nearest\" depth=\"1445\"/>";
str = str + "<object tile=\"palms5\" x=\"3240\" y=\"2500\" plane=\"nearest\" depth=\"1446\"/>";
str = str + "<object tile=\"palms4\" x=\"3170\" y=\"2510\" plane=\"nearest\" depth=\"1447\"/>";
str = str + "<object tile=\"palms5\" x=\"3300\" y=\"3290\" plane=\"nearest\" depth=\"1448\"/>";
str = str + "<object tile=\"palms3\" x=\"3350\" y=\"2480\" plane=\"nearest\" depth=\"1449\"/>";
str = str + "<object tile=\"palms1\" x=\"3440\" y=\"2480\" plane=\"nearest\" depth=\"1450\"/>";
str = str + "<object tile=\"palms1\" x=\"3480\" y=\"2470\" plane=\"nearest\" depth=\"1451\"/>";
str = str + "<object tile=\"palms1\" x=\"3450\" y=\"2630\" plane=\"nearest\" depth=\"1452\"/>";
str = str + "<object tile=\"palms1\" x=\"3070\" y=\"2880\" plane=\"nearest\" depth=\"1453\"/>";
str = str + "<object tile=\"palms1\" x=\"3100\" y=\"2890\" plane=\"nearest\" depth=\"1454\"/>";
str = str + "<object tile=\"palms1\" x=\"3120\" y=\"3040\" plane=\"nearest\" depth=\"1455\"/>";
str = str + "<object tile=\"palms1\" x=\"2890\" y=\"2890\" plane=\"nearest\" depth=\"1456\"/>";
str = str + "<object tile=\"palms1\" x=\"2940\" y=\"2850\" plane=\"nearest\" depth=\"1457\"/>";
str = str + "<object tile=\"palms1\" x=\"2940\" y=\"2920\" plane=\"nearest\" depth=\"1458\"/>";
str = str + "<object tile=\"palms1\" x=\"2910\" y=\"2890\" plane=\"nearest\" depth=\"1459\"/>";
str = str + "<object tile=\"palms1\" x=\"2930\" y=\"2890\" plane=\"nearest\" depth=\"1460\"/>";
str = str + "<object tile=\"palms5\" x=\"2220\" y=\"2480\" plane=\"nearest\" depth=\"1461\"/>";
str = str + "<object tile=\"palms4\" x=\"2700\" y=\"2200\" plane=\"nearest\" depth=\"1462\"/>";
str = str + "<object tile=\"palms3\" x=\"2670\" y=\"2290\" plane=\"nearest\" depth=\"1463\"/>";
str = str + "<object tile=\"palms1\" x=\"2250\" y=\"2440\" plane=\"nearest\" depth=\"1464\"/>";
str = str + "<object tile=\"palms1\" x=\"2300\" y=\"2600\" plane=\"nearest\" depth=\"1465\"/>";
str = str + "<object tile=\"palms1\" x=\"2530\" y=\"2350\" plane=\"nearest\" depth=\"1466\"/>";
str = str + "<object tile=\"palms1\" x=\"2430\" y=\"2340\" plane=\"nearest\" depth=\"1467\"/>";
str = str + "<object tile=\"palms1\" x=\"2440\" y=\"2370\" plane=\"nearest\" depth=\"1468\"/>";
str = str + "<object tile=\"palms1\" x=\"2410\" y=\"2390\" plane=\"nearest\" depth=\"1469\"/>";
str = str + "<object tile=\"null_tile\" x=\"4050\" y=\"950\" plane=\"nearest1\" depth=\"1470\"/>";
str = str + "<object tile=\"null_tile\" x=\"4050\" y=\"550\" plane=\"nearest1\" depth=\"1471\"/>";
str = str + "<object tile=\"null_tile\" x=\"3710\" y=\"150\" plane=\"nearest1\" depth=\"1472\"/>";
str = str + "<object tile=\"null_tile\" x=\"960\" y=\"150\" plane=\"nearest1\" depth=\"1473\"/>";
str = str + "<object tile=\"null_tile\" x=\"410\" y=\"150\" plane=\"nearest1\" depth=\"1474\"/>";
str = str + "<object tile=\"null_tile\" x=\"200\" y=\"550\" plane=\"nearest1\" depth=\"1475\"/>";
str = str + "<object tile=\"null_tile\" x=\"200\" y=\"1750\" plane=\"nearest1\" depth=\"1476\"/>";
str = str + "<object tile=\"null_tile\" x=\"200\" y=\"2150\" plane=\"nearest1\" depth=\"1477\"/>";
str = str + "<object tile=\"null_tile\" x=\"200\" y=\"2550\" plane=\"nearest1\" depth=\"1478\"/>";
str = str + "<object tile=\"null_tile\" x=\"200\" y=\"2950\" plane=\"nearest1\" depth=\"1479\"/>";
str = str + "<object tile=\"null_tile\" x=\"200\" y=\"3350\" plane=\"nearest1\" depth=\"1480\"/>";
str = str + "<object tile=\"null_tile\" x=\"200\" y=\"3750\" plane=\"nearest1\" depth=\"1481\"/>";
str = str + "<object tile=\"null_tile\" x=\"750\" y=\"3750\" plane=\"nearest1\" depth=\"1482\"/>";
str = str + "<object tile=\"null_tile\" x=\"200\" y=\"950\" plane=\"nearest1\" depth=\"1483\"/>";
str = str + "<object tile=\"null_tile\" x=\"200\" y=\"1350\" plane=\"nearest1\" depth=\"1484\"/>";
str = str + "<object tile=\"null_tile\" x=\"2060\" y=\"150\" plane=\"nearest1\" depth=\"1485\"/>";
str = str + "<object tile=\"null_tile\" x=\"1510\" y=\"150\" plane=\"nearest1\" depth=\"1486\"/>";
str = str + "<object tile=\"null_tile\" x=\"3160\" y=\"150\" plane=\"nearest1\" depth=\"1487\"/>";
str = str + "<object tile=\"null_tile\" x=\"2610\" y=\"150\" plane=\"nearest1\" depth=\"1488\"/>";
str = str + "<object tile=\"null_tile\" x=\"4050\" y=\"2950\" plane=\"nearest1\" depth=\"1489\"/>";
str = str + "<object tile=\"null_tile\" x=\"4050\" y=\"2550\" plane=\"nearest1\" depth=\"1490\"/>";
str = str + "<object tile=\"null_tile\" x=\"4050\" y=\"2150\" plane=\"nearest1\" depth=\"1491\"/>";
str = str + "<object tile=\"null_tile\" x=\"4050\" y=\"1350\" plane=\"nearest1\" depth=\"1492\"/>";
str = str + "<object tile=\"null_tile\" x=\"4050\" y=\"1750\" plane=\"nearest1\" depth=\"1493\"/>";
str = str + "<object tile=\"null_tile\" x=\"4050\" y=\"3350\" plane=\"nearest1\" depth=\"1494\"/>";
str = str + "<object tile=\"null_tile\" x=\"4050\" y=\"3750\" plane=\"nearest1\" depth=\"1495\"/>";
str = str + "<object tile=\"null_tile\" x=\"2950\" y=\"3750\" plane=\"nearest1\" depth=\"1496\"/>";
str = str + "<object tile=\"null_tile\" x=\"1300\" y=\"3750\" plane=\"nearest1\" depth=\"1497\"/>";
str = str + "<object tile=\"null_tile\" x=\"1850\" y=\"3750\" plane=\"nearest1\" depth=\"1498\"/>";
str = str + "<object tile=\"null_tile\" x=\"2400\" y=\"3750\" plane=\"nearest1\" depth=\"1499\"/>";
str = str + "<object tile=\"null_tile\" x=\"3500\" y=\"3750\" plane=\"nearest1\" depth=\"1500\"/>";
str = str + "</array>";
str = str + "</object>";
str = str + "<object name=\"level_8\">";
str = str + "<var name=\"comment\" >The fanatically driven terrorists have decided to take the city by force. You must destroy the heavy combat equipment column before it enters the city.";
str = str + "- top-priority assignment: destroy the column.";
str = str + "- secondary assignment: destroy the self-propelled antiaircraft guns.";
str = str + "</var>";
str = str + "<array name=\"missions\">";
str = str + "<object group=\"miss_7\" missionType=\"kill\" arrow=\"arr_1\" active=\"1\" timer=\"1500\" winAmount=\"5\" looseAmount=\"1\" actionTrue=\"score 1000,startClip completedMission, win\" actionFalse=\"score 0,startClip failedMission, loose\"/>";
str = str + "<object group=\"miss_7_1\" missionType=\"kill\" dontCount=\"1\" active=\"1\" timer=\"1500\" winAmount=\"3\" looseAmount=\"1\" actionTrue=\"score 1000,startClip ScompletedMission\" actionFalse=\"score 0,startClip SfailedMission\"/>";
str = str + "</array>";
str = str + "<array name=\"level\">";
str = str + "<object tile=\"grass1\" x=\"1870\" y=\"2200\" plane=\"far3\" depth=\"1\"/>";
str = str + "<object tile=\"grass1\" x=\"1870\" y=\"2340\" plane=\"far3\" depth=\"2\"/>";
str = str + "<object tile=\"grass1\" x=\"1630\" y=\"2160\" plane=\"far3\" depth=\"3\"/>";
str = str + "<object tile=\"grass1\" x=\"4100\" y=\"3330\" plane=\"far3\" depth=\"4\"/>";
str = str + "<object tile=\"grass1\" x=\"4120\" y=\"3110\" plane=\"far3\" depth=\"5\"/>";
str = str + "<object tile=\"grass1\" x=\"3700\" y=\"3330\" plane=\"far3\" depth=\"6\"/>";
str = str + "<object tile=\"grass1\" x=\"3590\" y=\"3210\" plane=\"far3\" depth=\"7\"/>";
str = str + "<object tile=\"grass1\" x=\"3620\" y=\"3030\" plane=\"far3\" depth=\"8\"/>";
str = str + "<object tile=\"grass2\" x=\"3780\" y=\"3180\" plane=\"far3\" depth=\"9\"/>";
str = str + "<object tile=\"grass2\" x=\"4160\" y=\"2910\" plane=\"far3\" depth=\"10\"/>";
str = str + "<object tile=\"grass2\" x=\"4000\" y=\"2830\" plane=\"far3\" depth=\"11\"/>";
str = str + "<object tile=\"grass1\" x=\"3740\" y=\"2820\" plane=\"far3\" depth=\"12\"/>";
str = str + "<object tile=\"grass1\" x=\"1400\" y=\"2140\" plane=\"far3\" depth=\"13\"/>";
str = str + "<object tile=\"grass1\" x=\"1400\" y=\"1940\" plane=\"far3\" depth=\"14\"/>";
str = str + "<object tile=\"grass1\" x=\"1500\" y=\"2910\" plane=\"far3\" depth=\"15\"/>";
str = str + "<object tile=\"grass1\" x=\"1690\" y=\"2910\" plane=\"far3\" depth=\"16\"/>";
str = str + "<object tile=\"grass1\" x=\"1910\" y=\"2920\" plane=\"far3\" depth=\"17\"/>";
str = str + "<object tile=\"grass2\" x=\"1710\" y=\"2780\" plane=\"far3\" depth=\"18\"/>";
str = str + "<object tile=\"grass2\" x=\"2040\" y=\"2780\" plane=\"far3\" depth=\"19\"/>";
str = str + "<object tile=\"grass1\" x=\"1370\" y=\"1750\" plane=\"far3\" depth=\"20\"/>";
str = str + "<object tile=\"grass2\" x=\"1590\" y=\"1800\" plane=\"far3\" depth=\"21\"/>";
str = str + "<object tile=\"grass2\" x=\"1570\" y=\"1610\" plane=\"far3\" depth=\"22\"/>";
str = str + "<object tile=\"grass1\" x=\"1050\" y=\"1440\" plane=\"far3\" depth=\"23\"/>";
str = str + "<object tile=\"grass1\" x=\"1080\" y=\"1260\" plane=\"far3\" depth=\"24\"/>";
str = str + "<object tile=\"grass1\" x=\"880\" y=\"1430\" plane=\"far3\" depth=\"25\"/>";
str = str + "<object tile=\"grass1\" x=\"890\" y=\"1240\" plane=\"far3\" depth=\"26\"/>";
str = str + "<object tile=\"grass1\" x=\"680\" y=\"1230\" plane=\"far3\" depth=\"27\"/>";
str = str + "<object tile=\"grass1\" x=\"660\" y=\"1430\" plane=\"far3\" depth=\"28\"/>";
str = str + "<object tile=\"grass1\" x=\"770\" y=\"1090\" plane=\"far3\" depth=\"29\"/>";
str = str + "<object tile=\"grass1\" x=\"1540\" y=\"1140\" plane=\"far3\" depth=\"30\"/>";
str = str + "<object tile=\"grass1\" x=\"1460\" y=\"970\" plane=\"far3\" depth=\"31\"/>";
str = str + "<object tile=\"grass1\" x=\"1330\" y=\"930\" plane=\"far3\" depth=\"32\"/>";
str = str + "<object tile=\"grass1\" x=\"1460\" y=\"800\" plane=\"far3\" depth=\"33\"/>";
str = str + "<object tile=\"grass1\" x=\"1340\" y=\"760\" plane=\"far3\" depth=\"34\"/>";
str = str + "<object tile=\"grass1\" x=\"1440\" y=\"630\" plane=\"far3\" depth=\"35\"/>";
str = str + "<object tile=\"grass1\" x=\"760\" y=\"880\" plane=\"far3\" depth=\"36\"/>";
str = str + "<object tile=\"grass1\" x=\"940\" y=\"860\" plane=\"far3\" depth=\"37\"/>";
str = str + "<object tile=\"grass1\" x=\"800\" y=\"3330\" plane=\"far3\" depth=\"38\"/>";
str = str + "<object tile=\"grass1\" x=\"1020\" y=\"3350\" plane=\"far3\" depth=\"39\"/>";
str = str + "<object tile=\"grass1\" x=\"1240\" y=\"3350\" plane=\"far3\" depth=\"40\"/>";
str = str + "<object tile=\"grass1\" x=\"1430\" y=\"3340\" plane=\"far3\" depth=\"41\"/>";
str = str + "<object tile=\"grass1\" x=\"1640\" y=\"3350\" plane=\"far3\" depth=\"42\"/>";
str = str + "<object tile=\"grass1\" x=\"1720\" y=\"3150\" plane=\"far3\" depth=\"43\"/>";
str = str + "<object tile=\"grass1\" x=\"1500\" y=\"3130\" plane=\"far3\" depth=\"44\"/>";
str = str + "<object tile=\"grass1\" x=\"1310\" y=\"3150\" plane=\"far3\" depth=\"45\"/>";
str = str + "<object tile=\"grass1\" x=\"1050\" y=\"3220\" plane=\"far3\" depth=\"46\"/>";
str = str + "<object tile=\"grass1\" x=\"1140\" y=\"3710\" plane=\"far3\" depth=\"47\"/>";
str = str + "<object tile=\"grass1\" x=\"1390\" y=\"3700\" plane=\"far3\" depth=\"48\"/>";
str = str + "<object tile=\"grass1\" x=\"1600\" y=\"3730\" plane=\"far3\" depth=\"49\"/>";
str = str + "<object tile=\"grass2\" x=\"2000\" y=\"2440\" plane=\"far3\" depth=\"50\"/>";
str = str + "<object tile=\"grass2\" x=\"2020\" y=\"2230\" plane=\"far3\" depth=\"51\"/>";
str = str + "<object tile=\"grass2\" x=\"2050\" y=\"2360\" plane=\"far3\" depth=\"52\"/>";
str = str + "<object tile=\"grass2\" x=\"2100\" y=\"2930\" plane=\"far3\" depth=\"53\"/>";
str = str + "<object tile=\"grass2\" x=\"2100\" y=\"3010\" plane=\"far3\" depth=\"54\"/>";
str = str + "<object tile=\"grass2\" x=\"1960\" y=\"3100\" plane=\"far3\" depth=\"55\"/>";
str = str + "<object tile=\"grass2\" x=\"2170\" y=\"2180\" plane=\"far3\" depth=\"56\"/>";
str = str + "<object tile=\"grass2\" x=\"2170\" y=\"2100\" plane=\"far3\" depth=\"57\"/>";
str = str + "<object tile=\"grass2\" x=\"2140\" y=\"2030\" plane=\"far3\" depth=\"58\"/>";
str = str + "<object tile=\"grass2\" x=\"2310\" y=\"2040\" plane=\"far3\" depth=\"59\"/>";
str = str + "<object tile=\"grass2\" x=\"2470\" y=\"2040\" plane=\"far3\" depth=\"60\"/>";
str = str + "<object tile=\"grass2\" x=\"2540\" y=\"1970\" plane=\"far3\" depth=\"61\"/>";
str = str + "<object tile=\"grass2\" x=\"2420\" y=\"1920\" plane=\"far3\" depth=\"62\"/>";
str = str + "<object tile=\"grass2\" x=\"1930\" y=\"2090\" plane=\"far3\" depth=\"63\"/>";
str = str + "<object tile=\"grass2\" x=\"1810\" y=\"2090\" plane=\"far3\" depth=\"64\"/>";
str = str + "<object tile=\"grass2\" x=\"1660\" y=\"2080\" plane=\"far3\" depth=\"65\"/>";
str = str + "<object tile=\"grass2\" x=\"1620\" y=\"1450\" plane=\"far3\" depth=\"66\"/>";
str = str + "<object tile=\"grass2\" x=\"1570\" y=\"1460\" plane=\"far3\" depth=\"67\"/>";
str = str + "<object tile=\"grass2\" x=\"1940\" y=\"1460\" plane=\"far3\" depth=\"68\"/>";
str = str + "<object tile=\"grass2\" x=\"1750\" y=\"1460\" plane=\"far3\" depth=\"69\"/>";
str = str + "<object tile=\"grass2\" x=\"2020\" y=\"1460\" plane=\"far3\" depth=\"70\"/>";
str = str + "<object tile=\"grass2\" x=\"1810\" y=\"1650\" plane=\"far3\" depth=\"71\"/>";
str = str + "<object tile=\"grass2\" x=\"1830\" y=\"1800\" plane=\"far3\" depth=\"72\"/>";
str = str + "<object tile=\"grass2\" x=\"2440\" y=\"1690\" plane=\"far3\" depth=\"73\"/>";
str = str + "<object tile=\"grass2\" x=\"2540\" y=\"1520\" plane=\"far3\" depth=\"74\"/>";
str = str + "<object tile=\"grass2\" x=\"2300\" y=\"1500\" plane=\"far3\" depth=\"75\"/>";
str = str + "<object tile=\"grass2\" x=\"2270\" y=\"1430\" plane=\"far3\" depth=\"76\"/>";
str = str + "<object tile=\"grass2\" x=\"2610\" y=\"1470\" plane=\"far3\" depth=\"77\"/>";
str = str + "<object tile=\"grass2\" x=\"1710\" y=\"2470\" plane=\"far3\" depth=\"78\"/>";
str = str + "<object tile=\"grass2\" x=\"1800\" y=\"2470\" plane=\"far3\" depth=\"79\"/>";
str = str + "<object tile=\"grass2\" x=\"1520\" y=\"2450\" plane=\"far3\" depth=\"80\"/>";
str = str + "<object tile=\"grass2\" x=\"1310\" y=\"2440\" plane=\"far3\" depth=\"81\"/>";
str = str + "<object tile=\"grass2\" x=\"1380\" y=\"2470\" plane=\"far3\" depth=\"82\"/>";
str = str + "<object tile=\"grass2\" x=\"1350\" y=\"2340\" plane=\"far3\" depth=\"83\"/>";
str = str + "<object tile=\"grass2\" x=\"1480\" y=\"2710\" plane=\"far3\" depth=\"84\"/>";
str = str + "<object tile=\"grass2\" x=\"1660\" y=\"2750\" plane=\"far3\" depth=\"85\"/>";
str = str + "<object tile=\"grass2\" x=\"1100\" y=\"2290\" plane=\"far3\" depth=\"86\"/>";
str = str + "<object tile=\"grass2\" x=\"1110\" y=\"2150\" plane=\"far3\" depth=\"87\"/>";
str = str + "<object tile=\"grass2\" x=\"900\" y=\"2210\" plane=\"far3\" depth=\"88\"/>";
str = str + "<object tile=\"grass2\" x=\"790\" y=\"2310\" plane=\"far3\" depth=\"89\"/>";
str = str + "<object tile=\"grass2\" x=\"1060\" y=\"2250\" plane=\"far3\" depth=\"90\"/>";
str = str + "<object tile=\"grass2\" x=\"750\" y=\"2110\" plane=\"far3\" depth=\"91\"/>";
str = str + "<object tile=\"grass2\" x=\"740\" y=\"2030\" plane=\"far3\" depth=\"92\"/>";
str = str + "<object tile=\"grass2\" x=\"780\" y=\"1790\" plane=\"far3\" depth=\"93\"/>";
str = str + "<object tile=\"grass2\" x=\"840\" y=\"1820\" plane=\"far3\" depth=\"94\"/>";
str = str + "<object tile=\"grass2\" x=\"970\" y=\"1840\" plane=\"far3\" depth=\"95\"/>";
str = str + "<object tile=\"grass1\" x=\"3470\" y=\"2840\" plane=\"far3\" depth=\"96\"/>";
str = str + "<object tile=\"grass1\" x=\"3570\" y=\"2740\" plane=\"far3\" depth=\"97\"/>";
str = str + "<object tile=\"grass1\" x=\"3450\" y=\"2690\" plane=\"far3\" depth=\"98\"/>";
str = str + "<object tile=\"grass1\" x=\"3280\" y=\"3120\" plane=\"far3\" depth=\"99\"/>";
str = str + "<object tile=\"grass1\" x=\"3480\" y=\"3180\" plane=\"far3\" depth=\"100\"/>";
str = str + "<object tile=\"grass1\" x=\"3440\" y=\"3360\" plane=\"far3\" depth=\"101\"/>";
str = str + "<object tile=\"grass1\" x=\"3270\" y=\"3310\" plane=\"far3\" depth=\"102\"/>";
str = str + "<object tile=\"grass1\" x=\"3220\" y=\"3010\" plane=\"far3\" depth=\"103\"/>";
str = str + "<object tile=\"grass1\" x=\"3170\" y=\"2790\" plane=\"far3\" depth=\"104\"/>";
str = str + "<object tile=\"grass1\" x=\"3110\" y=\"2720\" plane=\"far3\" depth=\"105\"/>";
str = str + "<object tile=\"grass1\" x=\"3220\" y=\"3710\" plane=\"far3\" depth=\"106\"/>";
str = str + "<object tile=\"grass1\" x=\"3440\" y=\"3720\" plane=\"far3\" depth=\"107\"/>";
str = str + "<object tile=\"grass1\" x=\"3670\" y=\"3730\" plane=\"far3\" depth=\"108\"/>";
str = str + "<object tile=\"grass1\" x=\"3910\" y=\"3720\" plane=\"far3\" depth=\"109\"/>";
str = str + "<object tile=\"grass1\" x=\"3980\" y=\"3720\" plane=\"far3\" depth=\"110\"/>";
str = str + "<object tile=\"grass1\" x=\"4170\" y=\"3680\" plane=\"far3\" depth=\"111\"/>";
str = str + "<object tile=\"grass1\" x=\"3610\" y=\"3630\" plane=\"far3\" depth=\"112\"/>";
str = str + "<object tile=\"grass1\" x=\"3020\" y=\"3730\" plane=\"far3\" depth=\"113\"/>";
str = str + "<object tile=\"grass1\" x=\"3150\" y=\"3360\" plane=\"far3\" depth=\"114\"/>";
str = str + "<object tile=\"grass1\" x=\"3110\" y=\"2960\" plane=\"far3\" depth=\"115\"/>";
str = str + "<object tile=\"grass1\" x=\"3100\" y=\"3190\" plane=\"far3\" depth=\"116\"/>";
str = str + "<object tile=\"grass1\" x=\"2990\" y=\"2950\" plane=\"far3\" depth=\"117\"/>";
str = str + "<object tile=\"grass1\" x=\"2870\" y=\"2840\" plane=\"far3\" depth=\"118\"/>";
str = str + "<object tile=\"grass1\" x=\"2800\" y=\"2820\" plane=\"far3\" depth=\"119\"/>";
str = str + "<object tile=\"grass1\" x=\"2740\" y=\"2730\" plane=\"far3\" depth=\"120\"/>";
str = str + "<object tile=\"grass1\" x=\"2840\" y=\"2690\" plane=\"far3\" depth=\"121\"/>";
str = str + "<object tile=\"grass1\" x=\"3270\" y=\"2470\" plane=\"far3\" depth=\"122\"/>";
str = str + "<object tile=\"grass1\" x=\"3110\" y=\"2510\" plane=\"far3\" depth=\"123\"/>";
str = str + "<object tile=\"grass1\" x=\"2810\" y=\"2370\" plane=\"far3\" depth=\"124\"/>";
str = str + "<object tile=\"grass1\" x=\"2470\" y=\"2180\" plane=\"far3\" depth=\"125\"/>";
str = str + "<object tile=\"grass1\" x=\"2270\" y=\"2210\" plane=\"far3\" depth=\"126\"/>";
str = str + "<object tile=\"grass1\" x=\"2400\" y=\"2340\" plane=\"far3\" depth=\"127\"/>";
str = str + "<object tile=\"grass1\" x=\"2170\" y=\"2430\" plane=\"far3\" depth=\"128\"/>";
str = str + "<object tile=\"grass3\" x=\"2690\" y=\"2390\" plane=\"far3\" depth=\"129\"/>";
str = str + "<object tile=\"grass3\" x=\"2710\" y=\"2310\" plane=\"far3\" depth=\"130\"/>";
str = str + "<object tile=\"grass3\" x=\"2690\" y=\"2540\" plane=\"far3\" depth=\"131\"/>";
str = str + "<object tile=\"grass3\" x=\"2470\" y=\"2540\" plane=\"far3\" depth=\"132\"/>";
str = str + "<object tile=\"grass3\" x=\"2210\" y=\"2370\" plane=\"far3\" depth=\"133\"/>";
str = str + "<object tile=\"grass3\" x=\"2650\" y=\"2420\" plane=\"far3\" depth=\"134\"/>";
str = str + "<object tile=\"grass3\" x=\"2090\" y=\"2070\" plane=\"far3\" depth=\"135\"/>";
str = str + "<object tile=\"grass3\" x=\"2150\" y=\"2610\" plane=\"far3\" depth=\"136\"/>";
str = str + "<object tile=\"road_d1\" x=\"440\" y=\"3730\" plane=\"far2\" depth=\"137\"/>";
str = str + "<object tile=\"road_u2\" x=\"440\" y=\"3530\" plane=\"far2\" depth=\"138\"/>";
str = str + "<object tile=\"road_d1\" x=\"540\" y=\"3730\" plane=\"far2\" depth=\"139\"/>";
str = str + "<object tile=\"road_u2\" x=\"540\" y=\"3530\" plane=\"far2\" depth=\"140\"/>";
str = str + "<object tile=\"road_d1\" x=\"640\" y=\"3730\" plane=\"far2\" depth=\"141\"/>";
str = str + "<object tile=\"road_u2\" x=\"640\" y=\"3530\" plane=\"far2\" depth=\"142\"/>";
str = str + "<object tile=\"road_d1\" x=\"740\" y=\"3730\" plane=\"far2\" depth=\"143\"/>";
str = str + "<object tile=\"road_u2\" x=\"740\" y=\"3530\" plane=\"far2\" depth=\"144\"/>";
str = str + "<object tile=\"road_d1\" x=\"840\" y=\"3730\" plane=\"far2\" depth=\"145\"/>";
str = str + "<object tile=\"road_u2\" x=\"840\" y=\"3530\" plane=\"far2\" depth=\"146\"/>";
str = str + "<object tile=\"road_d1\" x=\"940\" y=\"3730\" plane=\"far2\" depth=\"147\"/>";
str = str + "<object tile=\"road_u2\" x=\"940\" y=\"3530\" plane=\"far2\" depth=\"148\"/>";
str = str + "<object tile=\"road_d1\" x=\"1040\" y=\"3730\" plane=\"far2\" depth=\"149\"/>";
str = str + "<object tile=\"road_u2\" x=\"1040\" y=\"3530\" plane=\"far2\" depth=\"150\"/>";
str = str + "<object tile=\"road_d1\" x=\"1140\" y=\"3730\" plane=\"far2\" depth=\"151\"/>";
str = str + "<object tile=\"road_u2\" x=\"1140\" y=\"3530\" plane=\"far2\" depth=\"152\"/>";
str = str + "<object tile=\"road_d1\" x=\"1240\" y=\"3730\" plane=\"far2\" depth=\"153\"/>";
str = str + "<object tile=\"road_u2\" x=\"1240\" y=\"3530\" plane=\"far2\" depth=\"154\"/>";
str = str + "<object tile=\"road_d1\" x=\"1640\" y=\"3730\" plane=\"far2\" depth=\"155\"/>";
str = str + "<object tile=\"road_u2\" x=\"1640\" y=\"3530\" plane=\"far2\" depth=\"156\"/>";
str = str + "<object tile=\"road_d1\" x=\"1740\" y=\"3730\" plane=\"far2\" depth=\"157\"/>";
str = str + "<object tile=\"road_u2\" x=\"1740\" y=\"3530\" plane=\"far2\" depth=\"158\"/>";
str = str + "<object tile=\"road_d1\" x=\"1840\" y=\"3730\" plane=\"far2\" depth=\"159\"/>";
str = str + "<object tile=\"road_u2\" x=\"1840\" y=\"3530\" plane=\"far2\" depth=\"160\"/>";
str = str + "<object tile=\"road_d1\" x=\"1940\" y=\"3730\" plane=\"far2\" depth=\"161\"/>";
str = str + "<object tile=\"road_u2\" x=\"1940\" y=\"3530\" plane=\"far2\" depth=\"162\"/>";
str = str + "<object tile=\"road_d1\" x=\"2040\" y=\"3730\" plane=\"far2\" depth=\"163\"/>";
str = str + "<object tile=\"road_u2\" x=\"2040\" y=\"3530\" plane=\"far2\" depth=\"164\"/>";
str = str + "<object tile=\"road_d1\" x=\"2140\" y=\"3730\" plane=\"far2\" depth=\"165\"/>";
str = str + "<object tile=\"road_u2\" x=\"2140\" y=\"3530\" plane=\"far2\" depth=\"166\"/>";
str = str + "<object tile=\"road_d1\" x=\"2240\" y=\"3730\" plane=\"far2\" depth=\"167\"/>";
str = str + "<object tile=\"road_u2\" x=\"2240\" y=\"3530\" plane=\"far2\" depth=\"168\"/>";
str = str + "<object tile=\"road_d1\" x=\"2340\" y=\"3730\" plane=\"far2\" depth=\"169\"/>";
str = str + "<object tile=\"road_u2\" x=\"2340\" y=\"3530\" plane=\"far2\" depth=\"170\"/>";
str = str + "<object tile=\"road_d1\" x=\"2440\" y=\"3730\" plane=\"far2\" depth=\"171\"/>";
str = str + "<object tile=\"road_u2\" x=\"2440\" y=\"3530\" plane=\"far2\" depth=\"172\"/>";
str = str + "<object tile=\"road_d1\" x=\"2540\" y=\"3730\" plane=\"far2\" depth=\"173\"/>";
str = str + "<object tile=\"road_d1\" x=\"2640\" y=\"3730\" plane=\"far2\" depth=\"174\"/>";
str = str + "<object tile=\"road_u_l\" x=\"2640\" y=\"3530\" plane=\"far2\" depth=\"175\"/>";
str = str + "<object tile=\"road_u2\" x=\"2540\" y=\"3530\" plane=\"far2\" depth=\"176\"/>";
str = str + "<object tile=\"road_c\" x=\"440\" y=\"3630\" plane=\"far2\" depth=\"177\"/>";
str = str + "<object tile=\"road_c\" x=\"540\" y=\"3630\" plane=\"far2\" depth=\"178\"/>";
str = str + "<object tile=\"road_c\" x=\"640\" y=\"3630\" plane=\"far2\" depth=\"179\"/>";
str = str + "<object tile=\"road_c\" x=\"740\" y=\"3630\" plane=\"far2\" depth=\"180\"/>";
str = str + "<object tile=\"road_c\" x=\"840\" y=\"3630\" plane=\"far2\" depth=\"181\"/>";
str = str + "<object tile=\"road_c\" x=\"940\" y=\"3630\" plane=\"far2\" depth=\"182\"/>";
str = str + "<object tile=\"road_c\" x=\"1040\" y=\"3630\" plane=\"far2\" depth=\"183\"/>";
str = str + "<object tile=\"road_c\" x=\"1140\" y=\"3630\" plane=\"far2\" depth=\"184\"/>";
str = str + "<object tile=\"road_c\" x=\"1240\" y=\"3630\" plane=\"far2\" depth=\"185\"/>";
str = str + "<object tile=\"road_c\" x=\"1640\" y=\"3630\" plane=\"far2\" depth=\"186\"/>";
str = str + "<object tile=\"road_c\" x=\"1740\" y=\"3630\" plane=\"far2\" depth=\"187\"/>";
str = str + "<object tile=\"road_c\" x=\"1840\" y=\"3630\" plane=\"far2\" depth=\"188\"/>";
str = str + "<object tile=\"road_c\" x=\"1940\" y=\"3630\" plane=\"far2\" depth=\"189\"/>";
str = str + "<object tile=\"road_c\" x=\"2040\" y=\"3630\" plane=\"far2\" depth=\"190\"/>";
str = str + "<object tile=\"road_c\" x=\"2140\" y=\"3630\" plane=\"far2\" depth=\"191\"/>";
str = str + "<object tile=\"road_c\" x=\"2240\" y=\"3630\" plane=\"far2\" depth=\"192\"/>";
str = str + "<object tile=\"road_c\" x=\"2340\" y=\"3630\" plane=\"far2\" depth=\"193\"/>";
str = str + "<object tile=\"road_c\" x=\"2440\" y=\"3630\" plane=\"far2\" depth=\"194\"/>";
str = str + "<object tile=\"road_c\" x=\"2540\" y=\"3630\" plane=\"far2\" depth=\"195\"/>";
str = str + "<object tile=\"road_c\" x=\"2640\" y=\"3630\" plane=\"far2\" depth=\"196\"/>";
str = str + "<object tile=\"road_d1\" x=\"1440\" y=\"3730\" plane=\"far2\" depth=\"197\"/>";
str = str + "<object tile=\"road_d1\" x=\"1540\" y=\"3730\" plane=\"far2\" depth=\"198\"/>";
str = str + "<object tile=\"road_c\" x=\"1440\" y=\"3630\" plane=\"far2\" depth=\"199\"/>";
str = str + "<object tile=\"road_c\" x=\"1540\" y=\"3630\" plane=\"far2\" depth=\"200\"/>";
str = str + "<object tile=\"road_d1\" x=\"1340\" y=\"3730\" plane=\"far2\" depth=\"201\"/>";
str = str + "<object tile=\"road_u2\" x=\"1340\" y=\"3530\" plane=\"far2\" depth=\"202\"/>";
str = str + "<object tile=\"road_c\" x=\"1340\" y=\"3630\" plane=\"far2\" depth=\"203\"/>";
str = str + "<object tile=\"road_u_r\" x=\"2740\" y=\"3530\" plane=\"far2\" depth=\"204\"/>";
str = str + "<object tile=\"road_d1\" x=\"2740\" y=\"3730\" plane=\"far2\" depth=\"205\"/>";
str = str + "<object tile=\"road_d1\" x=\"2840\" y=\"3730\" plane=\"far2\" depth=\"206\"/>";
str = str + "<object tile=\"road_u2\" x=\"2840\" y=\"3530\" plane=\"far2\" depth=\"207\"/>";
str = str + "<object tile=\"road_d1\" x=\"2940\" y=\"3730\" plane=\"far2\" depth=\"208\"/>";
str = str + "<object tile=\"road_u2\" x=\"2940\" y=\"3530\" plane=\"far2\" depth=\"209\"/>";
str = str + "<object tile=\"road_c\" x=\"2740\" y=\"3630\" plane=\"far2\" depth=\"210\"/>";
str = str + "<object tile=\"road_c\" x=\"2840\" y=\"3630\" plane=\"far2\" depth=\"211\"/>";
str = str + "<object tile=\"road_c\" x=\"2940\" y=\"3630\" plane=\"far2\" depth=\"212\"/>";
str = str + "<object tile=\"road_d1\" x=\"3040\" y=\"3730\" plane=\"far2\" depth=\"213\"/>";
str = str + "<object tile=\"road_u2\" x=\"3040\" y=\"3530\" plane=\"far2\" depth=\"214\"/>";
str = str + "<object tile=\"road_d1\" x=\"3140\" y=\"3730\" plane=\"far2\" depth=\"215\"/>";
str = str + "<object tile=\"road_u2\" x=\"3140\" y=\"3530\" plane=\"far2\" depth=\"216\"/>";
str = str + "<object tile=\"road_d1\" x=\"3240\" y=\"3730\" plane=\"far2\" depth=\"217\"/>";
str = str + "<object tile=\"road_u2\" x=\"3240\" y=\"3530\" plane=\"far2\" depth=\"218\"/>";
str = str + "<object tile=\"road_d1\" x=\"3340\" y=\"3730\" plane=\"far2\" depth=\"219\"/>";
str = str + "<object tile=\"road_u2\" x=\"3340\" y=\"3530\" plane=\"far2\" depth=\"220\"/>";
str = str + "<object tile=\"road_d1\" x=\"3740\" y=\"3730\" plane=\"far2\" depth=\"221\"/>";
str = str + "<object tile=\"road_u2\" x=\"3740\" y=\"3530\" plane=\"far2\" depth=\"222\"/>";
str = str + "<object tile=\"road_d1\" x=\"3840\" y=\"3730\" plane=\"far2\" depth=\"223\"/>";
str = str + "<object tile=\"road_u2\" x=\"3840\" y=\"3530\" plane=\"far2\" depth=\"224\"/>";
str = str + "<object tile=\"road_d1\" x=\"3940\" y=\"3730\" plane=\"far2\" depth=\"225\"/>";
str = str + "<object tile=\"road_d1\" x=\"4040\" y=\"3730\" plane=\"far2\" depth=\"226\"/>";
str = str + "<object tile=\"road_d1\" x=\"4140\" y=\"3730\" plane=\"far2\" depth=\"227\"/>";
str = str + "<object tile=\"road_u2\" x=\"4140\" y=\"3530\" plane=\"far2\" depth=\"228\"/>";
str = str + "<object tile=\"road_d1\" x=\"4240\" y=\"3730\" plane=\"far2\" depth=\"229\"/>";
str = str + "<object tile=\"road_u2\" x=\"4240\" y=\"3530\" plane=\"far2\" depth=\"230\"/>";
str = str + "<object tile=\"road_c\" x=\"3040\" y=\"3630\" plane=\"far2\" depth=\"231\"/>";
str = str + "<object tile=\"road_c\" x=\"3140\" y=\"3630\" plane=\"far2\" depth=\"232\"/>";
str = str + "<object tile=\"road_c\" x=\"3240\" y=\"3630\" plane=\"far2\" depth=\"233\"/>";
str = str + "<object tile=\"road_c\" x=\"3340\" y=\"3630\" plane=\"far2\" depth=\"234\"/>";
str = str + "<object tile=\"road_c\" x=\"3740\" y=\"3630\" plane=\"far2\" depth=\"235\"/>";
str = str + "<object tile=\"road_c\" x=\"3840\" y=\"3630\" plane=\"far2\" depth=\"236\"/>";
str = str + "<object tile=\"road_c\" x=\"3940\" y=\"3630\" plane=\"far2\" depth=\"237\"/>";
str = str + "<object tile=\"road_c\" x=\"4040\" y=\"3630\" plane=\"far2\" depth=\"238\"/>";
str = str + "<object tile=\"road_c\" x=\"4140\" y=\"3630\" plane=\"far2\" depth=\"239\"/>";
str = str + "<object tile=\"road_c\" x=\"4240\" y=\"3630\" plane=\"far2\" depth=\"240\"/>";
str = str + "<object tile=\"road_d1\" x=\"3540\" y=\"3730\" plane=\"far2\" depth=\"241\"/>";
str = str + "<object tile=\"road_u2\" x=\"3540\" y=\"3530\" plane=\"far2\" depth=\"242\"/>";
str = str + "<object tile=\"road_d1\" x=\"3640\" y=\"3730\" plane=\"far2\" depth=\"243\"/>";
str = str + "<object tile=\"road_u2\" x=\"3640\" y=\"3530\" plane=\"far2\" depth=\"244\"/>";
str = str + "<object tile=\"road_c\" x=\"3540\" y=\"3630\" plane=\"far2\" depth=\"245\"/>";
str = str + "<object tile=\"road_c\" x=\"3640\" y=\"3630\" plane=\"far2\" depth=\"246\"/>";
str = str + "<object tile=\"road_d1\" x=\"3440\" y=\"3730\" plane=\"far2\" depth=\"247\"/>";
str = str + "<object tile=\"road_u2\" x=\"3440\" y=\"3530\" plane=\"far2\" depth=\"248\"/>";
str = str + "<object tile=\"road_c\" x=\"3440\" y=\"3630\" plane=\"far2\" depth=\"249\"/>";
str = str + "<object tile=\"road_d1\" x=\"4340\" y=\"3730\" plane=\"far2\" depth=\"250\"/>";
str = str + "<object tile=\"road_u2\" x=\"4340\" y=\"3530\" plane=\"far2\" depth=\"251\"/>";
str = str + "<object tile=\"road_d1\" x=\"4440\" y=\"3730\" plane=\"far2\" depth=\"252\"/>";
str = str + "<object tile=\"road_u2\" x=\"4440\" y=\"3530\" plane=\"far2\" depth=\"253\"/>";
str = str + "<object tile=\"road_c\" x=\"4340\" y=\"3630\" plane=\"far2\" depth=\"254\"/>";
str = str + "<object tile=\"road_c\" x=\"4440\" y=\"3630\" plane=\"far2\" depth=\"255\"/>";
str = str + "<object tile=\"road_u_l\" x=\"1440\" y=\"3530\" plane=\"far2\" depth=\"256\"/>";
str = str + "<object tile=\"road_u_r\" x=\"1540\" y=\"3530\" plane=\"far2\" depth=\"257\"/>";
str = str + "<object tile=\"road_u_r\" x=\"4040\" y=\"3530\" plane=\"far2\" depth=\"258\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3940\" y=\"3530\" plane=\"far2\" depth=\"259\"/>";
str = str + "<object tile=\"road_l3\" x=\"3940\" y=\"3430\" plane=\"far2\" depth=\"260\"/>";
str = str + "<object tile=\"road_r1\" x=\"4040\" y=\"3430\" plane=\"far2\" depth=\"261\"/>";
str = str + "<object tile=\"road_r1\" x=\"4040\" y=\"3330\" plane=\"far2\" depth=\"262\"/>";
str = str + "<object tile=\"road_l3\" x=\"3940\" y=\"3330\" plane=\"far2\" depth=\"263\"/>";
str = str + "<object tile=\"road_r1\" x=\"4040\" y=\"3230\" plane=\"far2\" depth=\"264\"/>";
str = str + "<object tile=\"road_l3\" x=\"3940\" y=\"3230\" plane=\"far2\" depth=\"265\"/>";
str = str + "<object tile=\"road_d_l\" x=\"3940\" y=\"3130\" plane=\"far2\" depth=\"266\"/>";
str = str + "<object tile=\"road_d_r\" x=\"4040\" y=\"3130\" plane=\"far2\" depth=\"267\"/>";
str = str + "<object tile=\"road_u2\" x=\"3940\" y=\"3030\" plane=\"far2\" depth=\"268\"/>";
str = str + "<object tile=\"road_u2\" x=\"4040\" y=\"3030\" plane=\"far2\" depth=\"269\"/>";
str = str + "<object tile=\"road_rd\" x=\"4140\" y=\"3130\" plane=\"far2\" depth=\"270\"/>";
str = str + "<object tile=\"road_ru\" x=\"4140\" y=\"3030\" plane=\"far2\" depth=\"271\"/>";
str = str + "<object tile=\"road_l3\" x=\"1440\" y=\"3430\" plane=\"far2\" depth=\"272\"/>";
str = str + "<object tile=\"road_r1\" x=\"1540\" y=\"3430\" plane=\"far2\" depth=\"273\"/>";
str = str + "<object tile=\"road_lu\" x=\"1440\" y=\"3330\" plane=\"far2\" depth=\"274\"/>";
str = str + "<object tile=\"road_ru\" x=\"1540\" y=\"3330\" plane=\"far2\" depth=\"275\"/>";
str = str + "<object tile=\"road_r1\" x=\"2740\" y=\"3430\" plane=\"far2\" depth=\"276\"/>";
str = str + "<object tile=\"road_l3\" x=\"2640\" y=\"3430\" plane=\"far2\" depth=\"277\"/>";
str = str + "<object tile=\"road_r1\" x=\"2740\" y=\"3330\" plane=\"far2\" depth=\"278\"/>";
str = str + "<object tile=\"road_l3\" x=\"2640\" y=\"3330\" plane=\"far2\" depth=\"279\"/>";
str = str + "<object tile=\"road_r1\" x=\"2740\" y=\"3230\" plane=\"far2\" depth=\"280\"/>";
str = str + "<object tile=\"road_l3\" x=\"2640\" y=\"3230\" plane=\"far2\" depth=\"281\"/>";
str = str + "<object tile=\"road_r1\" x=\"2740\" y=\"3130\" plane=\"far2\" depth=\"282\"/>";
str = str + "<object tile=\"road_l3\" x=\"2640\" y=\"3130\" plane=\"far2\" depth=\"283\"/>";
str = str + "<object tile=\"road_r1\" x=\"2740\" y=\"3030\" plane=\"far2\" depth=\"284\"/>";
str = str + "<object tile=\"road_l3\" x=\"2640\" y=\"3030\" plane=\"far2\" depth=\"285\"/>";
str = str + "<object tile=\"road_r1\" x=\"2740\" y=\"2930\" plane=\"far2\" depth=\"286\"/>";
str = str + "<object tile=\"road_l3\" x=\"2640\" y=\"2930\" plane=\"far2\" depth=\"287\"/>";
str = str + "<object tile=\"road_r1\" x=\"2740\" y=\"2830\" plane=\"far2\" depth=\"288\"/>";
str = str + "<object tile=\"road_l3\" x=\"2640\" y=\"2830\" plane=\"far2\" depth=\"289\"/>";
str = str + "<object tile=\"road_d_r\" x=\"2740\" y=\"2730\" plane=\"far2\" depth=\"290\"/>";
str = str + "<object tile=\"road_d_l\" x=\"2640\" y=\"2730\" plane=\"far2\" depth=\"291\"/>";
str = str + "<object tile=\"road_r1\" x=\"3140\" y=\"2530\" plane=\"far2\" depth=\"292\"/>";
str = str + "<object tile=\"road_r1\" x=\"3140\" y=\"2430\" plane=\"far2\" depth=\"293\"/>";
str = str + "<object tile=\"road_r1\" x=\"3140\" y=\"2330\" plane=\"far2\" depth=\"294\"/>";
str = str + "<object tile=\"road_d1\" x=\"2140\" y=\"2730\" plane=\"far2\" depth=\"295\"/>";
str = str + "<object tile=\"road_u2\" x=\"2140\" y=\"2630\" plane=\"far2\" depth=\"296\"/>";
str = str + "<object tile=\"road_d1\" x=\"2240\" y=\"2730\" plane=\"far2\" depth=\"297\"/>";
str = str + "<object tile=\"road_u2\" x=\"2240\" y=\"2630\" plane=\"far2\" depth=\"298\"/>";
str = str + "<object tile=\"road_d1\" x=\"2340\" y=\"2730\" plane=\"far2\" depth=\"299\"/>";
str = str + "<object tile=\"road_u2\" x=\"2340\" y=\"2630\" plane=\"far2\" depth=\"300\"/>";
str = str + "<object tile=\"road_d1\" x=\"2440\" y=\"2730\" plane=\"far2\" depth=\"301\"/>";
str = str + "<object tile=\"road_u2\" x=\"2440\" y=\"2630\" plane=\"far2\" depth=\"302\"/>";
str = str + "<object tile=\"road_d1\" x=\"2540\" y=\"2730\" plane=\"far2\" depth=\"303\"/>";
str = str + "<object tile=\"road_u2\" x=\"2540\" y=\"2630\" plane=\"far2\" depth=\"304\"/>";
str = str + "<object tile=\"road_d1\" x=\"2840\" y=\"2730\" plane=\"far2\" depth=\"305\"/>";
str = str + "<object tile=\"road_d1\" x=\"2940\" y=\"2730\" plane=\"far2\" depth=\"306\"/>";
str = str + "<object tile=\"road_d1\" x=\"3040\" y=\"2730\" plane=\"far2\" depth=\"307\"/>";
str = str + "<object tile=\"road_u_r\" x=\"3140\" y=\"2630\" plane=\"far2\" depth=\"308\"/>";
str = str + "<object tile=\"road_d_l\" x=\"3340\" y=\"2730\" plane=\"far2\" depth=\"309\"/>";
str = str + "<object tile=\"road_ru\" x=\"3440\" y=\"2630\" plane=\"far2\" depth=\"310\"/>";
str = str + "<object tile=\"road_d1\" x=\"3140\" y=\"2730\" plane=\"far2\" depth=\"311\"/>";
str = str + "<object tile=\"road_u2\" x=\"3240\" y=\"2630\" plane=\"far2\" depth=\"312\"/>";
str = str + "<object tile=\"road_r1\" x=\"3440\" y=\"2730\" plane=\"far2\" depth=\"313\"/>";
str = str + "<object tile=\"road_l3\" x=\"3340\" y=\"2930\" plane=\"far2\" depth=\"314\"/>";
str = str + "<object tile=\"road_d1\" x=\"3240\" y=\"2730\" plane=\"far2\" depth=\"315\"/>";
str = str + "<object tile=\"road_u2\" x=\"3340\" y=\"2630\" plane=\"far2\" depth=\"316\"/>";
str = str + "<object tile=\"road_l3\" x=\"3340\" y=\"2830\" plane=\"far2\" depth=\"317\"/>";
str = str + "<object tile=\"road_r1\" x=\"3440\" y=\"2830\" plane=\"far2\" depth=\"318\"/>";
str = str + "<object tile=\"road_d1\" x=\"2840\" y=\"2130\" plane=\"far2\" depth=\"319\"/>";
str = str + "<object tile=\"road_d1\" x=\"2940\" y=\"2130\" plane=\"far2\" depth=\"320\"/>";
str = str + "<object tile=\"road_d_l\" x=\"3040\" y=\"2130\" plane=\"far2\" depth=\"321\"/>";
str = str + "<object tile=\"road_l3\" x=\"3040\" y=\"2230\" plane=\"far2\" depth=\"322\"/>";
str = str + "<object tile=\"road_r1\" x=\"3140\" y=\"2230\" plane=\"far2\" depth=\"323\"/>";
str = str + "<object tile=\"road_d_r\" x=\"3140\" y=\"2130\" plane=\"far2\" depth=\"324\"/>";
str = str + "<object tile=\"road_d1\" x=\"3240\" y=\"2130\" plane=\"far2\" depth=\"325\"/>";
str = str + "<object tile=\"road_d1\" x=\"3340\" y=\"2130\" plane=\"far2\" depth=\"326\"/>";
str = str + "<object tile=\"road_d1\" x=\"3440\" y=\"2130\" plane=\"far2\" depth=\"327\"/>";
str = str + "<object tile=\"road_d1\" x=\"3540\" y=\"2130\" plane=\"far2\" depth=\"328\"/>";
str = str + "<object tile=\"road_d1\" x=\"3640\" y=\"2130\" plane=\"far2\" depth=\"329\"/>";
str = str + "<object tile=\"road_d1\" x=\"3740\" y=\"2130\" plane=\"far2\" depth=\"330\"/>";
str = str + "<object tile=\"road_rd\" x=\"3840\" y=\"2130\" plane=\"far2\" depth=\"331\"/>";
str = str + "<object tile=\"road_r1\" x=\"3840\" y=\"2030\" plane=\"far2\" depth=\"332\"/>";
str = str + "<object tile=\"road_c\" x=\"3740\" y=\"2030\" plane=\"far2\" depth=\"333\"/>";
str = str + "<object tile=\"road_u2\" x=\"3740\" y=\"1930\" plane=\"far2\" depth=\"334\"/>";
str = str + "<object tile=\"road_ru\" x=\"3840\" y=\"1930\" plane=\"far2\" depth=\"335\"/>";
str = str + "<object tile=\"road_u2\" x=\"3640\" y=\"1930\" plane=\"far2\" depth=\"336\"/>";
str = str + "<object tile=\"road_u2\" x=\"3540\" y=\"1930\" plane=\"far2\" depth=\"337\"/>";
str = str + "<object tile=\"road_u2\" x=\"3440\" y=\"1930\" plane=\"far2\" depth=\"338\"/>";
str = str + "<object tile=\"road_u2\" x=\"3340\" y=\"1930\" plane=\"far2\" depth=\"339\"/>";
str = str + "<object tile=\"road_u2\" x=\"3240\" y=\"1930\" plane=\"far2\" depth=\"340\"/>";
str = str + "<object tile=\"road_u_r\" x=\"3140\" y=\"1930\" plane=\"far2\" depth=\"341\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3040\" y=\"1930\" plane=\"far2\" depth=\"342\"/>";
str = str + "<object tile=\"road_u2\" x=\"2940\" y=\"1930\" plane=\"far2\" depth=\"343\"/>";
str = str + "<object tile=\"road_u2\" x=\"2840\" y=\"1930\" plane=\"far2\" depth=\"344\"/>";
str = str + "<object tile=\"road_lu\" x=\"2740\" y=\"1930\" plane=\"far2\" depth=\"345\"/>";
str = str + "<object tile=\"road_ld\" x=\"2740\" y=\"2130\" plane=\"far2\" depth=\"346\"/>";
str = str + "<object tile=\"road_l3\" x=\"2740\" y=\"2030\" plane=\"far2\" depth=\"347\"/>";
str = str + "<object tile=\"road_c\" x=\"2840\" y=\"2030\" plane=\"far2\" depth=\"348\"/>";
str = str + "<object tile=\"road_c\" x=\"2940\" y=\"2030\" plane=\"far2\" depth=\"349\"/>";
str = str + "<object tile=\"road_c\" x=\"3040\" y=\"2030\" plane=\"far2\" depth=\"350\"/>";
str = str + "<object tile=\"road_c\" x=\"3140\" y=\"2030\" plane=\"far2\" depth=\"351\"/>";
str = str + "<object tile=\"road_c\" x=\"3240\" y=\"2030\" plane=\"far2\" depth=\"352\"/>";
str = str + "<object tile=\"road_c\" x=\"3340\" y=\"2030\" plane=\"far2\" depth=\"353\"/>";
str = str + "<object tile=\"road_c\" x=\"3440\" y=\"2030\" plane=\"far2\" depth=\"354\"/>";
str = str + "<object tile=\"road_c\" x=\"3540\" y=\"2030\" plane=\"far2\" depth=\"355\"/>";
str = str + "<object tile=\"road_c\" x=\"3640\" y=\"2030\" plane=\"far2\" depth=\"356\"/>";
str = str + "<object tile=\"road_d_l\" x=\"3040\" y=\"1830\" plane=\"far2\" depth=\"357\"/>";
str = str + "<object tile=\"road_d_r\" x=\"3140\" y=\"1830\" plane=\"far2\" depth=\"358\"/>";
str = str + "<object tile=\"road_c\" x=\"3040\" y=\"1730\" plane=\"far2\" depth=\"359\"/>";
str = str + "<object tile=\"road_c\" x=\"3140\" y=\"1730\" plane=\"far2\" depth=\"360\"/>";
str = str + "<object tile=\"road_u2\" x=\"3040\" y=\"1630\" plane=\"far2\" depth=\"361\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3140\" y=\"1630\" plane=\"far2\" depth=\"362\"/>";
str = str + "<object tile=\"road_u_r\" x=\"3240\" y=\"1630\" plane=\"far2\" depth=\"363\"/>";
str = str + "<object tile=\"road_c\" x=\"3240\" y=\"1730\" plane=\"far2\" depth=\"364\"/>";
str = str + "<object tile=\"road_d1\" x=\"3240\" y=\"1830\" plane=\"far2\" depth=\"365\"/>";
str = str + "<object tile=\"road_d1\" x=\"3340\" y=\"1830\" plane=\"far2\" depth=\"366\"/>";
str = str + "<object tile=\"road_d1\" x=\"3440\" y=\"1830\" plane=\"far2\" depth=\"367\"/>";
str = str + "<object tile=\"road_d1\" x=\"3540\" y=\"1830\" plane=\"far2\" depth=\"368\"/>";
str = str + "<object tile=\"road_d1\" x=\"3640\" y=\"1830\" plane=\"far2\" depth=\"369\"/>";
str = str + "<object tile=\"road_d1\" x=\"3740\" y=\"1830\" plane=\"far2\" depth=\"370\"/>";
str = str + "<object tile=\"road_rd\" x=\"3840\" y=\"1830\" plane=\"far2\" depth=\"371\"/>";
str = str + "<object tile=\"road_r1\" x=\"3840\" y=\"1730\" plane=\"far2\" depth=\"372\"/>";
str = str + "<object tile=\"road_ru\" x=\"3840\" y=\"1630\" plane=\"far2\" depth=\"373\"/>";
str = str + "<object tile=\"road_u2\" x=\"3740\" y=\"1630\" plane=\"far2\" depth=\"374\"/>";
str = str + "<object tile=\"road_u2\" x=\"3640\" y=\"1630\" plane=\"far2\" depth=\"375\"/>";
str = str + "<object tile=\"road_u2\" x=\"3540\" y=\"1630\" plane=\"far2\" depth=\"376\"/>";
str = str + "<object tile=\"road_u2\" x=\"3440\" y=\"1630\" plane=\"far2\" depth=\"377\"/>";
str = str + "<object tile=\"road_u2\" x=\"3340\" y=\"1630\" plane=\"far2\" depth=\"378\"/>";
str = str + "<object tile=\"road_c\" x=\"3340\" y=\"1730\" plane=\"far2\" depth=\"379\"/>";
str = str + "<object tile=\"road_c\" x=\"3440\" y=\"1730\" plane=\"far2\" depth=\"380\"/>";
str = str + "<object tile=\"road_c\" x=\"3540\" y=\"1730\" plane=\"far2\" depth=\"381\"/>";
str = str + "<object tile=\"road_c\" x=\"3640\" y=\"1730\" plane=\"far2\" depth=\"382\"/>";
str = str + "<object tile=\"road_c\" x=\"3740\" y=\"1730\" plane=\"far2\" depth=\"383\"/>";
str = str + "<object tile=\"road_c\" x=\"2940\" y=\"1730\" plane=\"far2\" depth=\"384\"/>";
str = str + "<object tile=\"road_c\" x=\"2840\" y=\"1730\" plane=\"far2\" depth=\"385\"/>";
str = str + "<object tile=\"road_d1\" x=\"2940\" y=\"1830\" plane=\"far2\" depth=\"386\"/>";
str = str + "<object tile=\"road_d1\" x=\"2840\" y=\"1830\" plane=\"far2\" depth=\"387\"/>";
str = str + "<object tile=\"road_ld\" x=\"2740\" y=\"1830\" plane=\"far2\" depth=\"388\"/>";
str = str + "<object tile=\"road_l3\" x=\"2740\" y=\"1730\" plane=\"far2\" depth=\"389\"/>";
str = str + "<object tile=\"road_lu\" x=\"2740\" y=\"1630\" plane=\"far2\" depth=\"390\"/>";
str = str + "<object tile=\"road_u2\" x=\"2840\" y=\"1630\" plane=\"far2\" depth=\"391\"/>";
str = str + "<object tile=\"road_u2\" x=\"2940\" y=\"1630\" plane=\"far2\" depth=\"392\"/>";
str = str + "<object tile=\"road_d_r\" x=\"3240\" y=\"1530\" plane=\"far2\" depth=\"393\"/>";
str = str + "<object tile=\"road_d_l\" x=\"3140\" y=\"1530\" plane=\"far2\" depth=\"394\"/>";
str = str + "<object tile=\"road_c\" x=\"3140\" y=\"1430\" plane=\"far2\" depth=\"395\"/>";
str = str + "<object tile=\"road_c\" x=\"3240\" y=\"1430\" plane=\"far2\" depth=\"396\"/>";
str = str + "<object tile=\"road_u_r\" x=\"3240\" y=\"1330\" plane=\"far2\" depth=\"397\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3140\" y=\"1330\" plane=\"far2\" depth=\"398\"/>";
str = str + "<object tile=\"road_u2\" x=\"3040\" y=\"1330\" plane=\"far2\" depth=\"399\"/>";
str = str + "<object tile=\"road_lu\" x=\"2940\" y=\"1330\" plane=\"far2\" depth=\"400\"/>";
str = str + "<object tile=\"road_l3\" x=\"2940\" y=\"1430\" plane=\"far2\" depth=\"401\"/>";
str = str + "<object tile=\"road_ld\" x=\"2940\" y=\"1530\" plane=\"far2\" depth=\"402\"/>";
str = str + "<object tile=\"road_d1\" x=\"3040\" y=\"1530\" plane=\"far2\" depth=\"403\"/>";
str = str + "<object tile=\"road_c\" x=\"3040\" y=\"1430\" plane=\"far2\" depth=\"404\"/>";
str = str + "<object tile=\"road_d1\" x=\"3340\" y=\"1530\" plane=\"far2\" depth=\"405\"/>";
str = str + "<object tile=\"road_d1\" x=\"3440\" y=\"1530\" plane=\"far2\" depth=\"406\"/>";
str = str + "<object tile=\"road_d1\" x=\"3540\" y=\"1530\" plane=\"far2\" depth=\"407\"/>";
str = str + "<object tile=\"road_d1\" x=\"3640\" y=\"1530\" plane=\"far2\" depth=\"408\"/>";
str = str + "<object tile=\"road_d1\" x=\"3740\" y=\"1530\" plane=\"far2\" depth=\"409\"/>";
str = str + "<object tile=\"road_rd\" x=\"3840\" y=\"1530\" plane=\"far2\" depth=\"410\"/>";
str = str + "<object tile=\"road_r1\" x=\"3840\" y=\"1430\" plane=\"far2\" depth=\"411\"/>";
str = str + "<object tile=\"road_ru\" x=\"3840\" y=\"1330\" plane=\"far2\" depth=\"412\"/>";
str = str + "<object tile=\"road_u2\" x=\"3740\" y=\"1330\" plane=\"far2\" depth=\"413\"/>";
str = str + "<object tile=\"road_u2\" x=\"3640\" y=\"1330\" plane=\"far2\" depth=\"414\"/>";
str = str + "<object tile=\"road_u2\" x=\"3540\" y=\"1330\" plane=\"far2\" depth=\"415\"/>";
str = str + "<object tile=\"road_u2\" x=\"3440\" y=\"1330\" plane=\"far2\" depth=\"416\"/>";
str = str + "<object tile=\"road_u2\" x=\"3340\" y=\"1330\" plane=\"far2\" depth=\"417\"/>";
str = str + "<object tile=\"road_c\" x=\"3340\" y=\"1430\" plane=\"far2\" depth=\"418\"/>";
str = str + "<object tile=\"road_c\" x=\"3440\" y=\"1430\" plane=\"far2\" depth=\"419\"/>";
str = str + "<object tile=\"road_c\" x=\"3540\" y=\"1430\" plane=\"far2\" depth=\"420\"/>";
str = str + "<object tile=\"road_c\" x=\"3640\" y=\"1430\" plane=\"far2\" depth=\"421\"/>";
str = str + "<object tile=\"road_c\" x=\"3740\" y=\"1430\" plane=\"far2\" depth=\"422\"/>";
str = str + "<object tile=\"road_r1\" x=\"3240\" y=\"1230\" plane=\"far2\" depth=\"423\"/>";
str = str + "<object tile=\"road_l3\" x=\"3140\" y=\"1230\" plane=\"far2\" depth=\"424\"/>";
str = str + "<object tile=\"road_r1\" x=\"3240\" y=\"1130\" plane=\"far2\" depth=\"425\"/>";
str = str + "<object tile=\"road_l3\" x=\"3140\" y=\"1130\" plane=\"far2\" depth=\"426\"/>";
str = str + "<object tile=\"road_d_l\" x=\"3140\" y=\"1030\" plane=\"far2\" depth=\"427\"/>";
str = str + "<object tile=\"road_d_r\" x=\"3240\" y=\"1030\" plane=\"far2\" depth=\"428\"/>";
str = str + "<object tile=\"road_u_r\" x=\"3240\" y=\"930\" plane=\"far2\" depth=\"429\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3140\" y=\"930\" plane=\"far2\" depth=\"430\"/>";
str = str + "<object tile=\"road_ru\" x=\"3240\" y=\"830\" plane=\"far2\" depth=\"431\"/>";
str = str + "<object tile=\"road_lu\" x=\"3140\" y=\"830\" plane=\"far2\" depth=\"432\"/>";
str = str + "<object tile=\"road_rd\" x=\"3340\" y=\"1030\" plane=\"far2\" depth=\"433\"/>";
str = str + "<object tile=\"road_ru\" x=\"3340\" y=\"930\" plane=\"far2\" depth=\"434\"/>";
str = str + "<object tile=\"road_ld\" x=\"3040\" y=\"1030\" plane=\"far2\" depth=\"435\"/>";
str = str + "<object tile=\"road_lu\" x=\"3040\" y=\"930\" plane=\"far2\" depth=\"436\"/>";
str = str + "<object tile=\"road_d1\" x=\"1740\" y=\"2730\" plane=\"far2\" depth=\"437\"/>";
str = str + "<object tile=\"road_u2\" x=\"1740\" y=\"2630\" plane=\"far2\" depth=\"438\"/>";
str = str + "<object tile=\"road_d1\" x=\"1940\" y=\"3030\" plane=\"far2\" depth=\"439\"/>";
str = str + "<object tile=\"road_u2\" x=\"1840\" y=\"2630\" plane=\"far2\" depth=\"440\"/>";
str = str + "<object tile=\"road_u2\" x=\"1940\" y=\"2630\" plane=\"far2\" depth=\"441\"/>";
str = str + "<object tile=\"road_u2\" x=\"2040\" y=\"2630\" plane=\"far2\" depth=\"442\"/>";
str = str + "<object tile=\"road_d1\" x=\"1240\" y=\"3130\" plane=\"far2\" depth=\"443\"/>";
str = str + "<object tile=\"road_d1\" x=\"1540\" y=\"2730\" plane=\"far2\" depth=\"444\"/>";
str = str + "<object tile=\"road_u2\" x=\"1540\" y=\"2630\" plane=\"far2\" depth=\"445\"/>";
str = str + "<object tile=\"road_d1\" x=\"1640\" y=\"2730\" plane=\"far2\" depth=\"446\"/>";
str = str + "<object tile=\"road_u2\" x=\"1640\" y=\"2630\" plane=\"far2\" depth=\"447\"/>";
str = str + "<object tile=\"road_u_r\" x=\"1340\" y=\"2630\" plane=\"far2\" depth=\"448\"/>";
str = str + "<object tile=\"road_u_l\" x=\"1240\" y=\"2430\" plane=\"far2\" depth=\"449\"/>";
str = str + "<object tile=\"road_lu\" x=\"840\" y=\"2430\" plane=\"far2\" depth=\"450\"/>";
str = str + "<object tile=\"road_ld\" x=\"840\" y=\"3130\" plane=\"far2\" depth=\"451\"/>";
str = str + "<object tile=\"road_d1\" x=\"940\" y=\"3130\" plane=\"far2\" depth=\"452\"/>";
str = str + "<object tile=\"road_u2\" x=\"940\" y=\"2430\" plane=\"far2\" depth=\"453\"/>";
str = str + "<object tile=\"road_d1\" x=\"1040\" y=\"3130\" plane=\"far2\" depth=\"454\"/>";
str = str + "<object tile=\"road_u2\" x=\"1040\" y=\"2430\" plane=\"far2\" depth=\"455\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"2530\" plane=\"far2\" depth=\"456\"/>";
str = str + "<object tile=\"road_l3\" x=\"840\" y=\"2530\" plane=\"far2\" depth=\"457\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"2430\" plane=\"far2\" depth=\"458\"/>";
str = str + "<object tile=\"road_l3\" x=\"840\" y=\"2630\" plane=\"far2\" depth=\"459\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"2330\" plane=\"far2\" depth=\"460\"/>";
str = str + "<object tile=\"road_l3\" x=\"1240\" y=\"2330\" plane=\"far2\" depth=\"461\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"2230\" plane=\"far2\" depth=\"462\"/>";
str = str + "<object tile=\"road_l3\" x=\"1240\" y=\"2230\" plane=\"far2\" depth=\"463\"/>";
str = str + "<object tile=\"road_c\" x=\"940\" y=\"2530\" plane=\"far2\" depth=\"464\"/>";
str = str + "<object tile=\"road_c\" x=\"1040\" y=\"2530\" plane=\"far2\" depth=\"465\"/>";
str = str + "<object tile=\"road_c\" x=\"1240\" y=\"2530\" plane=\"far2\" depth=\"466\"/>";
str = str + "<object tile=\"road_c\" x=\"940\" y=\"2630\" plane=\"far2\" depth=\"467\"/>";
str = str + "<object tile=\"road_c\" x=\"1040\" y=\"2630\" plane=\"far2\" depth=\"468\"/>";
str = str + "<object tile=\"road_c\" x=\"1240\" y=\"2630\" plane=\"far2\" depth=\"469\"/>";
str = str + "<object tile=\"road_d_r\" x=\"1440\" y=\"2730\" plane=\"far2\" depth=\"470\"/>";
str = str + "<object tile=\"road_rd\" x=\"1440\" y=\"3130\" plane=\"far2\" depth=\"471\"/>";
str = str + "<object tile=\"road_c\" x=\"940\" y=\"2730\" plane=\"far2\" depth=\"472\"/>";
str = str + "<object tile=\"road_c\" x=\"1040\" y=\"2730\" plane=\"far2\" depth=\"473\"/>";
str = str + "<object tile=\"road_c\" x=\"1240\" y=\"2730\" plane=\"far2\" depth=\"474\"/>";
str = str + "<object tile=\"road_c\" x=\"940\" y=\"2830\" plane=\"far2\" depth=\"475\"/>";
str = str + "<object tile=\"road_c\" x=\"1040\" y=\"2830\" plane=\"far2\" depth=\"476\"/>";
str = str + "<object tile=\"road_c\" x=\"1240\" y=\"2830\" plane=\"far2\" depth=\"477\"/>";
str = str + "<object tile=\"road_l3\" x=\"840\" y=\"2730\" plane=\"far2\" depth=\"478\"/>";
str = str + "<object tile=\"road_l3\" x=\"840\" y=\"2830\" plane=\"far2\" depth=\"479\"/>";
str = str + "<object tile=\"road_r1\" x=\"1440\" y=\"2830\" plane=\"far2\" depth=\"480\"/>";
str = str + "<object tile=\"road_u2\" x=\"1440\" y=\"2630\" plane=\"far2\" depth=\"481\"/>";
str = str + "<object tile=\"road_d1\" x=\"1140\" y=\"3130\" plane=\"far2\" depth=\"482\"/>";
str = str + "<object tile=\"road_u2\" x=\"1140\" y=\"2430\" plane=\"far2\" depth=\"483\"/>";
str = str + "<object tile=\"road_c\" x=\"1140\" y=\"2530\" plane=\"far2\" depth=\"484\"/>";
str = str + "<object tile=\"road_c\" x=\"1140\" y=\"2630\" plane=\"far2\" depth=\"485\"/>";
str = str + "<object tile=\"road_c\" x=\"1140\" y=\"2730\" plane=\"far2\" depth=\"486\"/>";
str = str + "<object tile=\"road_c\" x=\"1140\" y=\"2830\" plane=\"far2\" depth=\"487\"/>";
str = str + "<object tile=\"road_c\" x=\"940\" y=\"2930\" plane=\"far2\" depth=\"488\"/>";
str = str + "<object tile=\"road_c\" x=\"1040\" y=\"2930\" plane=\"far2\" depth=\"489\"/>";
str = str + "<object tile=\"road_c\" x=\"1240\" y=\"2930\" plane=\"far2\" depth=\"490\"/>";
str = str + "<object tile=\"road_r1\" x=\"1440\" y=\"2930\" plane=\"far2\" depth=\"491\"/>";
str = str + "<object tile=\"road_c\" x=\"1140\" y=\"2930\" plane=\"far2\" depth=\"492\"/>";
str = str + "<object tile=\"road_l3\" x=\"840\" y=\"2930\" plane=\"far2\" depth=\"493\"/>";
str = str + "<object tile=\"road_c\" x=\"940\" y=\"3030\" plane=\"far2\" depth=\"494\"/>";
str = str + "<object tile=\"road_c\" x=\"1040\" y=\"3030\" plane=\"far2\" depth=\"495\"/>";
str = str + "<object tile=\"road_c\" x=\"1240\" y=\"3030\" plane=\"far2\" depth=\"496\"/>";
str = str + "<object tile=\"road_r1\" x=\"1440\" y=\"3030\" plane=\"far2\" depth=\"497\"/>";
str = str + "<object tile=\"road_c\" x=\"1140\" y=\"3030\" plane=\"far2\" depth=\"498\"/>";
str = str + "<object tile=\"road_l3\" x=\"840\" y=\"3030\" plane=\"far2\" depth=\"499\"/>";
str = str + "<object tile=\"road_c\" x=\"1340\" y=\"2730\" plane=\"far2\" depth=\"500\"/>";
str = str + "<object tile=\"road_c\" x=\"1340\" y=\"2830\" plane=\"far2\" depth=\"501\"/>";
str = str + "<object tile=\"road_c\" x=\"1340\" y=\"2930\" plane=\"far2\" depth=\"502\"/>";
str = str + "<object tile=\"road_c\" x=\"1340\" y=\"3030\" plane=\"far2\" depth=\"503\"/>";
str = str + "<object tile=\"road_d1\" x=\"1340\" y=\"3130\" plane=\"far2\" depth=\"504\"/>";
str = str + "<object tile=\"road_d_l\" x=\"1840\" y=\"2730\" plane=\"far2\" depth=\"505\"/>";
str = str + "<object tile=\"road_d_r\" x=\"2040\" y=\"2730\" plane=\"far2\" depth=\"506\"/>";
str = str + "<object tile=\"road_l3\" x=\"1840\" y=\"2830\" plane=\"far2\" depth=\"507\"/>";
str = str + "<object tile=\"road_r1\" x=\"2040\" y=\"2830\" plane=\"far2\" depth=\"508\"/>";
str = str + "<object tile=\"road_r1\" x=\"2040\" y=\"2930\" plane=\"far2\" depth=\"509\"/>";
str = str + "<object tile=\"road_l3\" x=\"1840\" y=\"2930\" plane=\"far2\" depth=\"510\"/>";
str = str + "<object tile=\"road_c\" x=\"1940\" y=\"2930\" plane=\"far2\" depth=\"511\"/>";
str = str + "<object tile=\"road_c\" x=\"1940\" y=\"2830\" plane=\"far2\" depth=\"512\"/>";
str = str + "<object tile=\"road_c\" x=\"1940\" y=\"2730\" plane=\"far2\" depth=\"513\"/>";
str = str + "<object tile=\"road_rd\" x=\"2040\" y=\"3030\" plane=\"far2\" depth=\"514\"/>";
str = str + "<object tile=\"road_ld\" x=\"1840\" y=\"3030\" plane=\"far2\" depth=\"515\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"2130\" plane=\"far2\" depth=\"516\"/>";
str = str + "<object tile=\"road_l3\" x=\"1240\" y=\"1930\" plane=\"far2\" depth=\"517\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"2030\" plane=\"far2\" depth=\"518\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"1930\" plane=\"far2\" depth=\"519\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"1830\" plane=\"far2\" depth=\"520\"/>";
str = str + "<object tile=\"road_l3\" x=\"1240\" y=\"1830\" plane=\"far2\" depth=\"521\"/>";
str = str + "<object tile=\"road_r1\" x=\"1540\" y=\"1630\" plane=\"far2\" depth=\"522\"/>";
str = str + "<object tile=\"road_r1\" x=\"1540\" y=\"1530\" plane=\"far2\" depth=\"523\"/>";
str = str + "<object tile=\"road_l3\" x=\"1240\" y=\"1530\" plane=\"far2\" depth=\"524\"/>";
str = str + "<object tile=\"road_l3\" x=\"1240\" y=\"1430\" plane=\"far2\" depth=\"525\"/>";
str = str + "<object tile=\"road_l3\" x=\"1240\" y=\"1330\" plane=\"far2\" depth=\"526\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"1030\" plane=\"far2\" depth=\"527\"/>";
str = str + "<object tile=\"road_l3\" x=\"1240\" y=\"1030\" plane=\"far2\" depth=\"528\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"930\" plane=\"far2\" depth=\"529\"/>";
str = str + "<object tile=\"road_r1\" x=\"1340\" y=\"830\" plane=\"far2\" depth=\"530\"/>";
str = str + "<object tile=\"road_ru\" x=\"1340\" y=\"730\" plane=\"far2\" depth=\"531\"/>";
str = str + "<object tile=\"road_d_r\" x=\"1340\" y=\"1730\" plane=\"far2\" depth=\"532\"/>";
str = str + "<object tile=\"road_u_r\" x=\"1340\" y=\"1130\" plane=\"far2\" depth=\"533\"/>";
str = str + "<object tile=\"road_u_l\" x=\"1240\" y=\"2030\" plane=\"far2\" depth=\"534\"/>";
str = str + "<object tile=\"road_d_l\" x=\"1240\" y=\"2130\" plane=\"far2\" depth=\"535\"/>";
str = str + "<object tile=\"road_u2\" x=\"940\" y=\"2030\" plane=\"far2\" depth=\"536\"/>";
str = str + "<object tile=\"road_d1\" x=\"940\" y=\"2130\" plane=\"far2\" depth=\"537\"/>";
str = str + "<object tile=\"road_lu\" x=\"840\" y=\"2030\" plane=\"far2\" depth=\"538\"/>";
str = str + "<object tile=\"road_ld\" x=\"840\" y=\"2130\" plane=\"far2\" depth=\"539\"/>";
str = str + "<object tile=\"road_u2\" x=\"1140\" y=\"2030\" plane=\"far2\" depth=\"540\"/>";
str = str + "<object tile=\"road_d1\" x=\"1140\" y=\"2130\" plane=\"far2\" depth=\"541\"/>";
str = str + "<object tile=\"road_u2\" x=\"1040\" y=\"2030\" plane=\"far2\" depth=\"542\"/>";
str = str + "<object tile=\"road_d1\" x=\"1040\" y=\"2130\" plane=\"far2\" depth=\"543\"/>";
str = str + "<object tile=\"road_d_l\" x=\"1240\" y=\"1730\" plane=\"far2\" depth=\"544\"/>";
str = str + "<object tile=\"road_u_l\" x=\"1240\" y=\"1630\" plane=\"far2\" depth=\"545\"/>";
str = str + "<object tile=\"road_d1\" x=\"1140\" y=\"1730\" plane=\"far2\" depth=\"546\"/>";
str = str + "<object tile=\"road_u2\" x=\"1140\" y=\"1630\" plane=\"far2\" depth=\"547\"/>";
str = str + "<object tile=\"road_d1\" x=\"1040\" y=\"1730\" plane=\"far2\" depth=\"548\"/>";
str = str + "<object tile=\"road_u2\" x=\"1040\" y=\"1630\" plane=\"far2\" depth=\"549\"/>";
str = str + "<object tile=\"road_d1\" x=\"940\" y=\"1730\" plane=\"far2\" depth=\"550\"/>";
str = str + "<object tile=\"road_u2\" x=\"940\" y=\"1630\" plane=\"far2\" depth=\"551\"/>";
str = str + "<object tile=\"road_ld\" x=\"840\" y=\"1730\" plane=\"far2\" depth=\"552\"/>";
str = str + "<object tile=\"road_lu\" x=\"840\" y=\"1630\" plane=\"far2\" depth=\"553\"/>";
str = str + "<object tile=\"road_d_l\" x=\"1240\" y=\"830\" plane=\"far2\" depth=\"554\"/>";
str = str + "<object tile=\"road_d1\" x=\"1140\" y=\"830\" plane=\"far2\" depth=\"555\"/>";
str = str + "<object tile=\"road_u2\" x=\"1140\" y=\"730\" plane=\"far2\" depth=\"556\"/>";
str = str + "<object tile=\"road_d1\" x=\"1040\" y=\"830\" plane=\"far2\" depth=\"557\"/>";
str = str + "<object tile=\"road_u2\" x=\"1040\" y=\"730\" plane=\"far2\" depth=\"558\"/>";
str = str + "<object tile=\"road_d1\" x=\"940\" y=\"830\" plane=\"far2\" depth=\"559\"/>";
str = str + "<object tile=\"road_u2\" x=\"940\" y=\"730\" plane=\"far2\" depth=\"560\"/>";
str = str + "<object tile=\"road_ld\" x=\"840\" y=\"830\" plane=\"far2\" depth=\"561\"/>";
str = str + "<object tile=\"road_lu\" x=\"840\" y=\"730\" plane=\"far2\" depth=\"562\"/>";
str = str + "<object tile=\"road_d_l\" x=\"1240\" y=\"1230\" plane=\"far2\" depth=\"563\"/>";
str = str + "<object tile=\"road_u_l\" x=\"1240\" y=\"1130\" plane=\"far2\" depth=\"564\"/>";
str = str + "<object tile=\"road_d1\" x=\"1140\" y=\"1230\" plane=\"far2\" depth=\"565\"/>";
str = str + "<object tile=\"road_u2\" x=\"1140\" y=\"1130\" plane=\"far2\" depth=\"566\"/>";
str = str + "<object tile=\"road_d1\" x=\"1040\" y=\"1230\" plane=\"far2\" depth=\"567\"/>";
str = str + "<object tile=\"road_u2\" x=\"1040\" y=\"1130\" plane=\"far2\" depth=\"568\"/>";
str = str + "<object tile=\"road_ld\" x=\"940\" y=\"1230\" plane=\"far2\" depth=\"569\"/>";
str = str + "<object tile=\"road_lu\" x=\"940\" y=\"1130\" plane=\"far2\" depth=\"570\"/>";
str = str + "<object tile=\"road_u2\" x=\"1240\" y=\"730\" plane=\"far2\" depth=\"571\"/>";
str = str + "<object tile=\"road_l3\" x=\"1240\" y=\"930\" plane=\"far2\" depth=\"572\"/>";
str = str + "<object tile=\"road_d1\" x=\"1440\" y=\"1730\" plane=\"far2\" depth=\"573\"/>";
str = str + "<object tile=\"road_rd\" x=\"1540\" y=\"1730\" plane=\"far2\" depth=\"574\"/>";
str = str + "<object tile=\"road_ru\" x=\"1540\" y=\"1130\" plane=\"far2\" depth=\"575\"/>";
str = str + "<object tile=\"road_u2\" x=\"1440\" y=\"1130\" plane=\"far2\" depth=\"576\"/>";
str = str + "<object tile=\"road_d_r\" x=\"1540\" y=\"1430\" plane=\"far2\" depth=\"577\"/>";
str = str + "<object tile=\"road_u_r\" x=\"1540\" y=\"1330\" plane=\"far2\" depth=\"578\"/>";
str = str + "<object tile=\"road_r1\" x=\"1540\" y=\"1230\" plane=\"far2\" depth=\"579\"/>";
str = str + "<object tile=\"road_c\" x=\"1340\" y=\"1230\" plane=\"far2\" depth=\"580\"/>";
str = str + "<object tile=\"road_c\" x=\"1440\" y=\"1230\" plane=\"far2\" depth=\"581\"/>";
str = str + "<object tile=\"road_c\" x=\"1340\" y=\"1330\" plane=\"far2\" depth=\"582\"/>";
str = str + "<object tile=\"road_c\" x=\"1440\" y=\"1330\" plane=\"far2\" depth=\"583\"/>";
str = str + "<object tile=\"road_c\" x=\"1340\" y=\"1430\" plane=\"far2\" depth=\"584\"/>";
str = str + "<object tile=\"road_c\" x=\"1440\" y=\"1430\" plane=\"far2\" depth=\"585\"/>";
str = str + "<object tile=\"road_c\" x=\"1340\" y=\"1530\" plane=\"far2\" depth=\"586\"/>";
str = str + "<object tile=\"road_c\" x=\"1440\" y=\"1530\" plane=\"far2\" depth=\"587\"/>";
str = str + "<object tile=\"road_c\" x=\"1340\" y=\"1630\" plane=\"far2\" depth=\"588\"/>";
str = str + "<object tile=\"road_c\" x=\"1440\" y=\"1630\" plane=\"far2\" depth=\"589\"/>";
str = str + "<object tile=\"road_d1\" x=\"1840\" y=\"1430\" plane=\"far2\" depth=\"590\"/>";
str = str + "<object tile=\"road_u2\" x=\"1840\" y=\"1330\" plane=\"far2\" depth=\"591\"/>";
str = str + "<object tile=\"road_u2\" x=\"2140\" y=\"1330\" plane=\"far2\" depth=\"592\"/>";
str = str + "<object tile=\"road_d1\" x=\"1940\" y=\"1430\" plane=\"far2\" depth=\"593\"/>";
str = str + "<object tile=\"road_u2\" x=\"1940\" y=\"1330\" plane=\"far2\" depth=\"594\"/>";
str = str + "<object tile=\"road_d1\" x=\"2040\" y=\"1430\" plane=\"far2\" depth=\"595\"/>";
str = str + "<object tile=\"road_u2\" x=\"2040\" y=\"1330\" plane=\"far2\" depth=\"596\"/>";
str = str + "<object tile=\"road_d_l\" x=\"2140\" y=\"1430\" plane=\"far2\" depth=\"597\"/>";
str = str + "<object tile=\"road_u2\" x=\"1640\" y=\"1330\" plane=\"far2\" depth=\"598\"/>";
str = str + "<object tile=\"road_u2\" x=\"1740\" y=\"1330\" plane=\"far2\" depth=\"599\"/>";
str = str + "<object tile=\"road_d1\" x=\"1640\" y=\"1430\" plane=\"far2\" depth=\"600\"/>";
str = str + "<object tile=\"road_d1\" x=\"1740\" y=\"1430\" plane=\"far2\" depth=\"601\"/>";
str = str + "<object tile=\"road_l3\" x=\"2140\" y=\"1530\" plane=\"far2\" depth=\"602\"/>";
str = str + "<object tile=\"road_r1\" x=\"2240\" y=\"1530\" plane=\"far2\" depth=\"603\"/>";
str = str + "<object tile=\"road_u_r\" x=\"2240\" y=\"1630\" plane=\"far2\" depth=\"604\"/>";
str = str + "<object tile=\"road_u_l\" x=\"2140\" y=\"1630\" plane=\"far2\" depth=\"605\"/>";
str = str + "<object tile=\"road_r1\" x=\"2440\" y=\"1730\" plane=\"far2\" depth=\"606\"/>";
str = str + "<object tile=\"road_r1\" x=\"2440\" y=\"1830\" plane=\"far2\" depth=\"607\"/>";
str = str + "<object tile=\"road_u2\" x=\"2040\" y=\"1630\" plane=\"far2\" depth=\"608\"/>";
str = str + "<object tile=\"road_d1\" x=\"2340\" y=\"1930\" plane=\"far2\" depth=\"609\"/>";
str = str + "<object tile=\"road_d1\" x=\"2240\" y=\"1930\" plane=\"far2\" depth=\"610\"/>";
str = str + "<object tile=\"road_c\" x=\"2240\" y=\"1730\" plane=\"far2\" depth=\"611\"/>";
str = str + "<object tile=\"road_c\" x=\"2140\" y=\"1730\" plane=\"far2\" depth=\"612\"/>";
str = str + "<object tile=\"road_c\" x=\"2040\" y=\"1830\" plane=\"far2\" depth=\"613\"/>";
str = str + "<object tile=\"road_c\" x=\"2240\" y=\"1830\" plane=\"far2\" depth=\"614\"/>";
str = str + "<object tile=\"road_c\" x=\"2140\" y=\"1830\" plane=\"far2\" depth=\"615\"/>";
str = str + "<object tile=\"road_c\" x=\"2040\" y=\"1730\" plane=\"far2\" depth=\"616\"/>";
str = str + "<object tile=\"road_c\" x=\"2340\" y=\"1830\" plane=\"far2\" depth=\"617\"/>";
str = str + "<object tile=\"road_c\" x=\"2340\" y=\"1730\" plane=\"far2\" depth=\"618\"/>";
str = str + "<object tile=\"road_ru\" x=\"2440\" y=\"1630\" plane=\"far2\" depth=\"619\"/>";
str = str + "<object tile=\"road_rd\" x=\"2440\" y=\"1930\" plane=\"far2\" depth=\"620\"/>";
str = str + "<object tile=\"road_lu\" x=\"1940\" y=\"1630\" plane=\"far2\" depth=\"621\"/>";
str = str + "<object tile=\"road_l3\" x=\"1940\" y=\"1730\" plane=\"far2\" depth=\"622\"/>";
str = str + "<object tile=\"road_l3\" x=\"1940\" y=\"1830\" plane=\"far2\" depth=\"623\"/>";
str = str + "<object tile=\"road_ld\" x=\"1940\" y=\"1930\" plane=\"far2\" depth=\"624\"/>";
str = str + "<object tile=\"road_u2\" x=\"2340\" y=\"1630\" plane=\"far2\" depth=\"625\"/>";
str = str + "<object tile=\"road_d1\" x=\"2040\" y=\"1930\" plane=\"far2\" depth=\"626\"/>";
str = str + "<object tile=\"road_d1\" x=\"2140\" y=\"1930\" plane=\"far2\" depth=\"627\"/>";
str = str + "<object tile=\"road_u2\" x=\"3840\" y=\"3030\" plane=\"far2\" depth=\"628\"/>";
str = str + "<object tile=\"road_d1\" x=\"3840\" y=\"3130\" plane=\"far2\" depth=\"629\"/>";
str = str + "<object tile=\"road_d1\" x=\"3740\" y=\"3130\" plane=\"far2\" depth=\"630\"/>";
str = str + "<object tile=\"road_u2\" x=\"3740\" y=\"3030\" plane=\"far2\" depth=\"631\"/>";
str = str + "<object tile=\"road_d1\" x=\"3640\" y=\"3130\" plane=\"far2\" depth=\"632\"/>";
str = str + "<object tile=\"road_d1\" x=\"3540\" y=\"3130\" plane=\"far2\" depth=\"633\"/>";
str = str + "<object tile=\"road_u_r\" x=\"3640\" y=\"3030\" plane=\"far2\" depth=\"634\"/>";
str = str + "<object tile=\"road_d1\" x=\"3440\" y=\"3130\" plane=\"far2\" depth=\"635\"/>";
str = str + "<object tile=\"road_l3\" x=\"3340\" y=\"3030\" plane=\"far2\" depth=\"636\"/>";
str = str + "<object tile=\"road_ld\" x=\"3340\" y=\"3130\" plane=\"far2\" depth=\"637\"/>";
str = str + "<object tile=\"road_u_r\" x=\"3440\" y=\"2930\" plane=\"far2\" depth=\"638\"/>";
str = str + "<object tile=\"road_c\" x=\"3440\" y=\"3030\" plane=\"far2\" depth=\"639\"/>";
str = str + "<object tile=\"road_c\" x=\"3540\" y=\"3030\" plane=\"far2\" depth=\"640\"/>";
str = str + "<object tile=\"road_u2\" x=\"3540\" y=\"2930\" plane=\"far2\" depth=\"641\"/>";
str = str + "<object tile=\"road_ru\" x=\"3640\" y=\"2930\" plane=\"far2\" depth=\"642\"/>";
str = str + "<object tile=\"road_r1\" x=\"2240\" y=\"1430\" plane=\"far2\" depth=\"643\"/>";
str = str + "<object tile=\"road_ru\" x=\"2240\" y=\"1330\" plane=\"far2\" depth=\"644\"/>";
str = str + "<object tile=\"road_u2\" x=\"2740\" y=\"2630\" plane=\"far2\" depth=\"650\"/>";
str = str + "<object tile=\"road_u2\" x=\"2640\" y=\"2630\" plane=\"far2\" depth=\"651\"/>";
str = str + "<object tile=\"road_l3\" x=\"3040\" y=\"2330\" plane=\"far2\" depth=\"652\"/>";
str = str + "<object tile=\"road_l3\" x=\"3040\" y=\"2430\" plane=\"far2\" depth=\"653\"/>";
str = str + "<object tile=\"road_l3\" x=\"3040\" y=\"2530\" plane=\"far2\" depth=\"654\"/>";
str = str + "<object tile=\"road_u2\" x=\"2840\" y=\"2630\" plane=\"far2\" depth=\"655\"/>";
str = str + "<object tile=\"road_u2\" x=\"2940\" y=\"2630\" plane=\"far2\" depth=\"656\"/>";
str = str + "<object tile=\"road_u_l\" x=\"3040\" y=\"2630\" plane=\"far2\" depth=\"657\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3500\" y=\"620\" plane=\"far\" depth=\"658\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3430\" y=\"620\" plane=\"far\" depth=\"659\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3360\" y=\"620\" plane=\"far\" depth=\"660\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3290\" y=\"620\" plane=\"far\" depth=\"661\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3220\" y=\"620\" plane=\"far\" depth=\"662\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3150\" y=\"620\" plane=\"far\" depth=\"663\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3080\" y=\"620\" plane=\"far\" depth=\"664\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3010\" y=\"620\" plane=\"far\" depth=\"665\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2940\" y=\"620\" plane=\"far\" depth=\"666\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2870\" y=\"620\" plane=\"far\" depth=\"667\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1620\" y=\"620\" plane=\"far\" depth=\"668\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1550\" y=\"620\" plane=\"far\" depth=\"669\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1480\" y=\"620\" plane=\"far\" depth=\"670\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1410\" y=\"620\" plane=\"far\" depth=\"671\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1340\" y=\"620\" plane=\"far\" depth=\"672\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1270\" y=\"620\" plane=\"far\" depth=\"673\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1200\" y=\"620\" plane=\"far\" depth=\"674\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1130\" y=\"620\" plane=\"far\" depth=\"675\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1060\" y=\"620\" plane=\"far\" depth=\"676\"/>";
str = str + "<object tile=\"wall_big2\" x=\"990\" y=\"620\" plane=\"far\" depth=\"677\"/>";
str = str + "<object tile=\"wall_big2\" x=\"920\" y=\"620\" plane=\"far\" depth=\"678\"/>";
str = str + "<object tile=\"wall_big2\" x=\"850\" y=\"620\" plane=\"far\" depth=\"679\"/>";
str = str + "<object tile=\"wall_big2\" x=\"780\" y=\"620\" plane=\"far\" depth=\"680\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"640\" plane=\"far\" depth=\"681\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"710\" plane=\"far\" depth=\"682\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"780\" plane=\"far\" depth=\"683\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"850\" plane=\"far\" depth=\"684\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"920\" plane=\"far\" depth=\"685\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"990\" plane=\"far\" depth=\"686\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1060\" plane=\"far\" depth=\"687\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1130\" plane=\"far\" depth=\"688\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1200\" plane=\"far\" depth=\"689\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1270\" plane=\"far\" depth=\"690\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1340\" plane=\"far\" depth=\"691\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1410\" plane=\"far\" depth=\"692\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1480\" plane=\"far\" depth=\"693\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1550\" plane=\"far\" depth=\"694\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1620\" plane=\"far\" depth=\"695\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1690\" plane=\"far\" depth=\"696\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1760\" plane=\"far\" depth=\"697\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1830\" plane=\"far\" depth=\"698\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1900\" plane=\"far\" depth=\"699\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"1970\" plane=\"far\" depth=\"700\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2040\" plane=\"far\" depth=\"701\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2110\" plane=\"far\" depth=\"702\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2180\" plane=\"far\" depth=\"703\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2250\" plane=\"far\" depth=\"704\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2320\" plane=\"far\" depth=\"705\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2390\" plane=\"far\" depth=\"706\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2460\" plane=\"far\" depth=\"707\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2530\" plane=\"far\" depth=\"708\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2600\" plane=\"far\" depth=\"709\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2670\" plane=\"far\" depth=\"710\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2740\" plane=\"far\" depth=\"711\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2810\" plane=\"far\" depth=\"712\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2880\" plane=\"far\" depth=\"713\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"2950\" plane=\"far\" depth=\"714\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"3020\" plane=\"far\" depth=\"715\"/>";
str = str + "<object tile=\"wall_big1\" x=\"760\" y=\"3090\" plane=\"far\" depth=\"716\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"640\" plane=\"far\" depth=\"717\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"710\" plane=\"far\" depth=\"718\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"780\" plane=\"far\" depth=\"719\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"850\" plane=\"far\" depth=\"720\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"920\" plane=\"far\" depth=\"721\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"990\" plane=\"far\" depth=\"722\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1060\" plane=\"far\" depth=\"723\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1130\" plane=\"far\" depth=\"724\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1200\" plane=\"far\" depth=\"725\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1670\" y=\"1260\" plane=\"far\" depth=\"726\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1740\" y=\"1260\" plane=\"far\" depth=\"727\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1810\" y=\"1260\" plane=\"far\" depth=\"728\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1280\" plane=\"far\" depth=\"729\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1490\" plane=\"far\" depth=\"730\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1670\" y=\"1550\" plane=\"far\" depth=\"731\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1740\" y=\"1550\" plane=\"far\" depth=\"732\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1840\" y=\"1280\" plane=\"far\" depth=\"733\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1840\" y=\"1490\" plane=\"far\" depth=\"734\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1810\" y=\"1550\" plane=\"far\" depth=\"735\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1880\" y=\"1550\" plane=\"far\" depth=\"736\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1570\" plane=\"far\" depth=\"737\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1640\" plane=\"far\" depth=\"738\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1710\" plane=\"far\" depth=\"739\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1780\" plane=\"far\" depth=\"740\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1850\" plane=\"far\" depth=\"741\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1920\" plane=\"far\" depth=\"742\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"1990\" plane=\"far\" depth=\"743\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"2060\" plane=\"far\" depth=\"744\"/>";
str = str + "<object tile=\"wall_big1\" x=\"1660\" y=\"2130\" plane=\"far\" depth=\"745\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3540\" y=\"640\" plane=\"far\" depth=\"746\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3540\" y=\"710\" plane=\"far\" depth=\"747\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3540\" y=\"780\" plane=\"far\" depth=\"748\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3540\" y=\"850\" plane=\"far\" depth=\"749\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3540\" y=\"920\" plane=\"far\" depth=\"750\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3540\" y=\"990\" plane=\"far\" depth=\"751\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3540\" y=\"1060\" plane=\"far\" depth=\"752\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3540\" y=\"1130\" plane=\"far\" depth=\"753\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2860\" y=\"640\" plane=\"far\" depth=\"754\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2860\" y=\"710\" plane=\"far\" depth=\"755\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2860\" y=\"780\" plane=\"far\" depth=\"756\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2860\" y=\"850\" plane=\"far\" depth=\"757\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2860\" y=\"920\" plane=\"far\" depth=\"758\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2860\" y=\"990\" plane=\"far\" depth=\"759\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2860\" y=\"1060\" plane=\"far\" depth=\"760\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2860\" y=\"1130\" plane=\"far\" depth=\"761\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3530\" y=\"1190\" plane=\"far\" depth=\"762\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3460\" y=\"1190\" plane=\"far\" depth=\"763\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3390\" y=\"1190\" plane=\"far\" depth=\"764\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3320\" y=\"1190\" plane=\"far\" depth=\"765\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3010\" y=\"1190\" plane=\"far\" depth=\"766\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2940\" y=\"1190\" plane=\"far\" depth=\"767\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2870\" y=\"1190\" plane=\"far\" depth=\"768\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2860\" y=\"1210\" plane=\"far\" depth=\"769\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2860\" y=\"1280\" plane=\"far\" depth=\"770\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2860\" y=\"1350\" plane=\"far\" depth=\"771\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2860\" y=\"1420\" plane=\"far\" depth=\"772\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2860\" y=\"1490\" plane=\"far\" depth=\"773\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2789\" y=\"1550\" plane=\"far\" depth=\"774\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2719\" y=\"1550\" plane=\"far\" depth=\"775\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2649\" y=\"1550\" plane=\"far\" depth=\"776\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2579\" y=\"1550\" plane=\"far\" depth=\"777\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2510\" y=\"1550\" plane=\"far\" depth=\"778\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2440\" y=\"1550\" plane=\"far\" depth=\"779\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2369\" y=\"1550\" plane=\"far\" depth=\"780\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2300\" y=\"1550\" plane=\"far\" depth=\"781\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2089\" y=\"1550\" plane=\"far\" depth=\"782\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2019\" y=\"1550\" plane=\"far\" depth=\"783\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1949\" y=\"1550\" plane=\"far\" depth=\"784\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2690\" y=\"1570\" plane=\"far\" depth=\"785\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2690\" y=\"1640\" plane=\"far\" depth=\"786\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2690\" y=\"1710\" plane=\"far\" depth=\"787\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2690\" y=\"1780\" plane=\"far\" depth=\"788\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2690\" y=\"1850\" plane=\"far\" depth=\"789\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2690\" y=\"1920\" plane=\"far\" depth=\"790\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2690\" y=\"1980\" plane=\"far\" depth=\"791\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2690\" y=\"2050\" plane=\"far\" depth=\"792\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2690\" y=\"2120\" plane=\"far\" depth=\"793\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2650\" y=\"2190\" plane=\"far\" depth=\"794\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2580\" y=\"2190\" plane=\"far\" depth=\"795\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2510\" y=\"2190\" plane=\"far\" depth=\"796\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2440\" y=\"2190\" plane=\"far\" depth=\"797\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2370\" y=\"2190\" plane=\"far\" depth=\"798\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2300\" y=\"2190\" plane=\"far\" depth=\"799\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2230\" y=\"2190\" plane=\"far\" depth=\"800\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2160\" y=\"2190\" plane=\"far\" depth=\"801\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2090\" y=\"2190\" plane=\"far\" depth=\"802\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2020\" y=\"2190\" plane=\"far\" depth=\"803\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1950\" y=\"2190\" plane=\"far\" depth=\"804\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1880\" y=\"2190\" plane=\"far\" depth=\"805\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1810\" y=\"2190\" plane=\"far\" depth=\"806\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1740\" y=\"2190\" plane=\"far\" depth=\"807\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1670\" y=\"2190\" plane=\"far\" depth=\"808\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"2210\" plane=\"far\" depth=\"809\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"2280\" plane=\"far\" depth=\"810\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"2350\" plane=\"far\" depth=\"811\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"2810\" plane=\"far\" depth=\"812\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"2880\" plane=\"far\" depth=\"813\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"2950\" plane=\"far\" depth=\"814\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"3020\" plane=\"far\" depth=\"815\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"3090\" plane=\"far\" depth=\"816\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2929\" y=\"2190\" plane=\"far\" depth=\"817\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2860\" y=\"2190\" plane=\"far\" depth=\"818\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2790\" y=\"2190\" plane=\"far\" depth=\"819\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2719\" y=\"2190\" plane=\"far\" depth=\"820\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3879\" y=\"1190\" plane=\"far\" depth=\"821\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3809\" y=\"1190\" plane=\"far\" depth=\"822\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3740\" y=\"1190\" plane=\"far\" depth=\"823\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3670\" y=\"1190\" plane=\"far\" depth=\"824\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3599\" y=\"1190\" plane=\"far\" depth=\"825\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1210\" plane=\"far\" depth=\"826\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1280\" plane=\"far\" depth=\"827\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1350\" plane=\"far\" depth=\"828\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1420\" plane=\"far\" depth=\"829\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1490\" plane=\"far\" depth=\"830\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1560\" plane=\"far\" depth=\"831\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1630\" plane=\"far\" depth=\"832\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1700\" plane=\"far\" depth=\"833\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1770\" plane=\"far\" depth=\"834\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1840\" plane=\"far\" depth=\"835\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1910\" plane=\"far\" depth=\"836\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"1980\" plane=\"far\" depth=\"837\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"2050\" plane=\"far\" depth=\"838\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3920\" y=\"2120\" plane=\"far\" depth=\"839\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2091\" y=\"3160\" plane=\"far\" depth=\"840\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2020\" y=\"3160\" plane=\"far\" depth=\"841\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1950\" y=\"3160\" plane=\"far\" depth=\"842\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1880\" y=\"3160\" plane=\"far\" depth=\"843\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1810\" y=\"3160\" plane=\"far\" depth=\"844\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1740\" y=\"3160\" plane=\"far\" depth=\"845\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1671\" y=\"3160\" plane=\"far\" depth=\"846\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1601\" y=\"3160\" plane=\"far\" depth=\"847\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1530\" y=\"3160\" plane=\"far\" depth=\"848\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1460\" y=\"3160\" plane=\"far\" depth=\"849\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1391\" y=\"3160\" plane=\"far\" depth=\"850\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1321\" y=\"3160\" plane=\"far\" depth=\"851\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1251\" y=\"3160\" plane=\"far\" depth=\"852\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1181\" y=\"3160\" plane=\"far\" depth=\"853\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1110\" y=\"3160\" plane=\"far\" depth=\"854\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1041\" y=\"3160\" plane=\"far\" depth=\"855\"/>";
str = str + "<object tile=\"wall_big2\" x=\"971\" y=\"3160\" plane=\"far\" depth=\"856\"/>";
str = str + "<object tile=\"wall_big2\" x=\"901\" y=\"3160\" plane=\"far\" depth=\"857\"/>";
str = str + "<object tile=\"wall_big2\" x=\"831\" y=\"3160\" plane=\"far\" depth=\"858\"/>";
str = str + "<object tile=\"wall_big2\" x=\"761\" y=\"3160\" plane=\"far\" depth=\"859\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2160\" y=\"3160\" plane=\"far\" depth=\"860\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"2420\" plane=\"far\" depth=\"861\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"2490\" plane=\"far\" depth=\"862\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2200\" y=\"2560\" plane=\"far\" depth=\"863\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3251\" y=\"2190\" plane=\"far\" depth=\"864\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3321\" y=\"2190\" plane=\"far\" depth=\"865\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3390\" y=\"2190\" plane=\"far\" depth=\"866\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3460\" y=\"2190\" plane=\"far\" depth=\"867\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3530\" y=\"2190\" plane=\"far\" depth=\"868\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3598\" y=\"2190\" plane=\"far\" depth=\"869\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3669\" y=\"2190\" plane=\"far\" depth=\"870\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3739\" y=\"2190\" plane=\"far\" depth=\"871\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3808\" y=\"2190\" plane=\"far\" depth=\"872\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3880\" y=\"2190\" plane=\"far\" depth=\"873\"/>";
str = str + "<object tile=\"hangar1\" x=\"920\" y=\"3420\" plane=\"far\" depth=\"874\"/>";
str = str + "<object tile=\"hangar1\" x=\"1050\" y=\"3420\" plane=\"far\" depth=\"875\"/>";
str = str + "<object tile=\"heliPad\" x=\"3350\" y=\"800\" plane=\"far\" depth=\"876\"/>";
str = str + "<object tile=\"tower_guard\" x=\"3020\" y=\"2200\" plane=\"far\" depth=\"877\"/>";
str = str + "<object tile=\"house_big2\" x=\"2730\" y=\"1850\" plane=\"far\" depth=\"878\"/>";
str = str + "<object tile=\"house_med5\" x=\"2960\" y=\"1850\" plane=\"far\" depth=\"879\"/>";
str = str + "<object tile=\"house_big2\" x=\"3210\" y=\"1840\" plane=\"far\" depth=\"880\"/>";
str = str + "<object tile=\"house_big2\" x=\"3450\" y=\"1840\" plane=\"far\" depth=\"881\"/>";
str = str + "<object tile=\"house_big2\" x=\"3680\" y=\"1840\" plane=\"far\" depth=\"882\"/>";
str = str + "<object tile=\"house_big2\" x=\"3680\" y=\"1550\" plane=\"far\" depth=\"883\"/>";
str = str + "<object tile=\"house_big2\" x=\"3440\" y=\"1550\" plane=\"far\" depth=\"884\"/>";
str = str + "<object tile=\"house_med5\" x=\"3310\" y=\"1560\" plane=\"far\" depth=\"885\"/>";
str = str + "<object tile=\"house_big2\" x=\"2950\" y=\"1560\" plane=\"far\" depth=\"886\"/>";
str = str + "<object tile=\"house_med5\" x=\"3310\" y=\"1240\" plane=\"far\" depth=\"887\"/>";
str = str + "<object tile=\"house_big2\" x=\"3440\" y=\"1230\" plane=\"far\" depth=\"888\"/>";
str = str + "<object tile=\"house_big2\" x=\"3680\" y=\"1230\" plane=\"far\" depth=\"889\"/>";
str = str + "<object tile=\"house_big2\" x=\"2730\" y=\"1560\" plane=\"far\" depth=\"890\"/>";
str = str + "<object tile=\"wall_big1\" x=\"3210\" y=\"2190\" plane=\"far\" depth=\"891\"/>";
str = str + "<object tile=\"wall_big1\" x=\"2970\" y=\"2210\" plane=\"far\" depth=\"892\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2980\" y=\"2280\" plane=\"far\" depth=\"893\"/>";
str = str + "<object tile=\"post1\" x=\"3200\" y=\"2290\" plane=\"far\" depth=\"894\"/>";
str = str + "<object tile=\"cargo_heli\" x=\"3390\" y=\"830\" plane=\"far\" depth=\"895\"/>";
str = str + "<object tile=\"radar_base2\" x=\"3060\" y=\"1090\" plane=\"far\" depth=\"896\"/>";
str = str + "<object tile=\"hangar2\" x=\"3370\" y=\"970\" plane=\"far\" depth=\"897\"/>";
str = str + "<object tile=\"hangar1\" x=\"3180\" y=\"670\" plane=\"far\" depth=\"898\"/>";
str = str + "<object tile=\"tent2\" x=\"2960\" y=\"1060\" plane=\"far\" depth=\"899\"/>";
str = str + "<object tile=\"tent2\" x=\"2960\" y=\"1030\" plane=\"far\" depth=\"900\"/>";
str = str + "<object tile=\"tent2\" x=\"2960\" y=\"1000\" plane=\"far\" depth=\"901\"/>";
str = str + "<object tile=\"tent2\" x=\"2960\" y=\"970\" plane=\"far\" depth=\"902\"/>";
str = str + "<object tile=\"tent1\" x=\"3000\" y=\"940\" plane=\"far\" depth=\"903\"/>";
str = str + "<object tile=\"tent1\" x=\"3030\" y=\"940\" plane=\"far\" depth=\"904\"/>";
str = str + "<object tile=\"tent1\" x=\"3060\" y=\"940\" plane=\"far\" depth=\"905\"/>";
str = str + "<object tile=\"tent1\" x=\"3090\" y=\"940\" plane=\"far\" depth=\"906\"/>";
str = str + "<object tile=\"tent1\" x=\"3120\" y=\"940\" plane=\"far\" depth=\"907\"/>";
str = str + "<object tile=\"house_med3\" x=\"800\" y=\"2520\" plane=\"far\" depth=\"908\"/>";
str = str + "<object tile=\"house_med4\" x=\"860\" y=\"2370\" plane=\"far\" depth=\"909\"/>";
str = str + "<object tile=\"house_sm1\" x=\"800\" y=\"2620\" plane=\"far\" depth=\"910\"/>";
str = str + "<object tile=\"house_med3\" x=\"800\" y=\"2680\" plane=\"far\" depth=\"911\"/>";
str = str + "<object tile=\"house_med1\" x=\"970\" y=\"2390\" plane=\"far\" depth=\"912\"/>";
str = str + "<object tile=\"house_sm1\" x=\"800\" y=\"2780\" plane=\"far\" depth=\"913\"/>";
str = str + "<object tile=\"house_med3\" x=\"800\" y=\"2840\" plane=\"far\" depth=\"914\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1390\" y=\"2390\" plane=\"far\" depth=\"915\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1390\" y=\"2420\" plane=\"far\" depth=\"916\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1390\" y=\"2450\" plane=\"far\" depth=\"917\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1390\" y=\"2480\" plane=\"far\" depth=\"918\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1390\" y=\"2510\" plane=\"far\" depth=\"919\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1390\" y=\"2540\" plane=\"far\" depth=\"920\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1390\" y=\"2570\" plane=\"far\" depth=\"921\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1390\" y=\"2600\" plane=\"far\" depth=\"922\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1400\" y=\"2630\" plane=\"far\" depth=\"923\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1430\" y=\"2630\" plane=\"far\" depth=\"924\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1460\" y=\"2630\" plane=\"far\" depth=\"925\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1490\" y=\"2630\" plane=\"far\" depth=\"926\"/>";
str = str + "<object tile=\"house_med5\" x=\"1400\" y=\"2330\" plane=\"far\" depth=\"927\"/>";
str = str + "<object tile=\"house_big1\" x=\"1500\" y=\"2370\" plane=\"far\" depth=\"928\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1450\" y=\"2440\" plane=\"far\" depth=\"929\"/>";
str = str + "<object tile=\"house_sm1\" x=\"1650\" y=\"2390\" plane=\"far\" depth=\"930\"/>";
str = str + "<object tile=\"house_med1\" x=\"1780\" y=\"2370\" plane=\"far\" depth=\"931\"/>";
str = str + "<object tile=\"house_med2\" x=\"1690\" y=\"2370\" plane=\"far\" depth=\"932\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1860\" y=\"2450\" plane=\"far\" depth=\"933\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1860\" y=\"2480\" plane=\"far\" depth=\"934\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1860\" y=\"2510\" plane=\"far\" depth=\"935\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1860\" y=\"2540\" plane=\"far\" depth=\"936\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1860\" y=\"2570\" plane=\"far\" depth=\"937\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1860\" y=\"2600\" plane=\"far\" depth=\"938\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1840\" y=\"2630\" plane=\"far\" depth=\"939\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1810\" y=\"2630\" plane=\"far\" depth=\"940\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1780\" y=\"2630\" plane=\"far\" depth=\"941\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1750\" y=\"2630\" plane=\"far\" depth=\"942\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1720\" y=\"2630\" plane=\"far\" depth=\"943\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1690\" y=\"2630\" plane=\"far\" depth=\"944\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1660\" y=\"2630\" plane=\"far\" depth=\"945\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1630\" y=\"2630\" plane=\"far\" depth=\"946\"/>";
str = str + "<object tile=\"house_med4\" x=\"820\" y=\"2950\" plane=\"far\" depth=\"947\"/>";
str = str + "<object tile=\"house_med1\" x=\"1580\" y=\"2820\" plane=\"far\" depth=\"948\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1580\" y=\"2900\" plane=\"far\" depth=\"949\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1580\" y=\"2930\" plane=\"far\" depth=\"950\"/>";
str = str + "<object tile=\"house_sm1\" x=\"1780\" y=\"2800\" plane=\"far\" depth=\"951\"/>";
str = str + "<object tile=\"house_med2\" x=\"1680\" y=\"2790\" plane=\"far\" depth=\"952\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1830\" y=\"2810\" plane=\"far\" depth=\"953\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1850\" y=\"2810\" plane=\"far\" depth=\"954\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1850\" y=\"2840\" plane=\"far\" depth=\"955\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1850\" y=\"2870\" plane=\"far\" depth=\"956\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1850\" y=\"2900\" plane=\"far\" depth=\"957\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1850\" y=\"2930\" plane=\"far\" depth=\"958\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1810\" y=\"2940\" plane=\"far\" depth=\"959\"/>";
str = str + "<object tile=\"house_med3\" x=\"850\" y=\"3040\" plane=\"far\" depth=\"960\"/>";
str = str + "<object tile=\"tower_water\" x=\"1490\" y=\"2800\" plane=\"far\" depth=\"961\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1580\" y=\"2960\" plane=\"far\" depth=\"962\"/>";
str = str + "<object tile=\"house_sm1\" x=\"1590\" y=\"2930\" plane=\"far\" depth=\"963\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1830\" y=\"2990\" plane=\"far\" depth=\"964\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1800\" y=\"2990\" plane=\"far\" depth=\"965\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1770\" y=\"2990\" plane=\"far\" depth=\"966\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1740\" y=\"2990\" plane=\"far\" depth=\"967\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1710\" y=\"2990\" plane=\"far\" depth=\"968\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1590\" y=\"2990\" plane=\"far\" depth=\"969\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1620\" y=\"2990\" plane=\"far\" depth=\"970\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1650\" y=\"2990\" plane=\"far\" depth=\"971\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1680\" y=\"2990\" plane=\"far\" depth=\"972\"/>";
str = str + "<object tile=\"house_med5\" x=\"1470\" y=\"2880\" plane=\"far\" depth=\"973\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1170\" y=\"2180\" plane=\"far\" depth=\"974\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1200\" y=\"2180\" plane=\"far\" depth=\"975\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1230\" y=\"2180\" plane=\"far\" depth=\"976\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1250\" y=\"2180\" plane=\"far\" depth=\"977\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1250\" y=\"2210\" plane=\"far\" depth=\"978\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1250\" y=\"2240\" plane=\"far\" depth=\"979\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1250\" y=\"2360\" plane=\"far\" depth=\"980\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1250\" y=\"2390\" plane=\"far\" depth=\"981\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"1250\" y=\"2420\" plane=\"far\" depth=\"982\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1230\" y=\"2450\" plane=\"far\" depth=\"983\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1200\" y=\"2450\" plane=\"far\" depth=\"984\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"1170\" y=\"2450\" plane=\"far\" depth=\"985\"/>";
str = str + "<object tile=\"house_sm1\" x=\"1160\" y=\"2370\" plane=\"far\" depth=\"986\"/>";
str = str + "<object tile=\"house_med2\" x=\"1060\" y=\"2360\" plane=\"far\" depth=\"987\"/>";
str = str + "<object tile=\"house_big2\" x=\"950\" y=\"2150\" plane=\"far\" depth=\"988\"/>";
str = str + "<object tile=\"house_big1\" x=\"810\" y=\"2140\" plane=\"far\" depth=\"989\"/>";
str = str + "<object tile=\"tower_guard\" x=\"1740\" y=\"1460\" plane=\"far\" depth=\"990\"/>";
str = str + "<object tile=\"tower_guard\" x=\"1740\" y=\"1310\" plane=\"far\" depth=\"991\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"830\" y=\"2460\" plane=\"far\" depth=\"992\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"800\" y=\"2460\" plane=\"far\" depth=\"993\"/>";
str = str + "<object tile=\"house_med3\" x=\"1480\" y=\"2990\" plane=\"far\" depth=\"994\"/>";
str = str + "<object tile=\"house_sm1\" x=\"1480\" y=\"3090\" plane=\"far\" depth=\"995\"/>";
str = str + "<object tile=\"house_med4\" x=\"1280\" y=\"660\" plane=\"far\" depth=\"996\"/>";
str = str + "<object tile=\"house_big1\" x=\"1380\" y=\"660\" plane=\"far\" depth=\"997\"/>";
str = str + "<object tile=\"house_big2\" x=\"1050\" y=\"640\" plane=\"far\" depth=\"998\"/>";
str = str + "<object tile=\"house_big2\" x=\"830\" y=\"640\" plane=\"far\" depth=\"999\"/>";
str = str + "<object tile=\"house_med5\" x=\"780\" y=\"760\" plane=\"far\" depth=\"1000\"/>";
str = str + "<object tile=\"house_big2\" x=\"830\" y=\"870\" plane=\"far\" depth=\"1001\"/>";
str = str + "<object tile=\"house_big2\" x=\"1060\" y=\"870\" plane=\"far\" depth=\"1002\"/>";
str = str + "<object tile=\"house_med3\" x=\"1200\" y=\"970\" plane=\"far\" depth=\"1003\"/>";
str = str + "<object tile=\"house_med1\" x=\"790\" y=\"1100\" plane=\"far\" depth=\"1004\"/>";
str = str + "<object tile=\"house_med4\" x=\"890\" y=\"1080\" plane=\"far\" depth=\"1005\"/>";
str = str + "<object tile=\"house_big1\" x=\"1000\" y=\"1040\" plane=\"far\" depth=\"1006\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1150\" y=\"1120\" plane=\"far\" depth=\"1007\"/>";
str = str + "<object tile=\"house_med3\" x=\"1200\" y=\"1070\" plane=\"far\" depth=\"1008\"/>";
str = str + "<object tile=\"house_big1\" x=\"800\" y=\"1740\" plane=\"far\" depth=\"1009\"/>";
str = str + "<object tile=\"house_med1\" x=\"950\" y=\"1760\" plane=\"far\" depth=\"1010\"/>";
str = str + "<object tile=\"house_med5\" x=\"1040\" y=\"1750\" plane=\"far\" depth=\"1011\"/>";
str = str + "<object tile=\"house_med2\" x=\"1150\" y=\"1740\" plane=\"far\" depth=\"1012\"/>";
str = str + "<object tile=\"house_med3\" x=\"1170\" y=\"1840\" plane=\"far\" depth=\"1013\"/>";
str = str + "<object tile=\"house_med3\" x=\"810\" y=\"1870\" plane=\"far\" depth=\"1014\"/>";
str = str + "<object tile=\"house_med4\" x=\"810\" y=\"1970\" plane=\"far\" depth=\"1015\"/>";
str = str + "<object tile=\"house_sm2\" x=\"920\" y=\"2020\" plane=\"far\" depth=\"1016\"/>";
str = str + "<object tile=\"house_med2\" x=\"970\" y=\"1960\" plane=\"far\" depth=\"1017\"/>";
str = str + "<object tile=\"house_sm1\" x=\"1080\" y=\"2000\" plane=\"far\" depth=\"1018\"/>";
str = str + "<object tile=\"house_big1\" x=\"1110\" y=\"1920\" plane=\"far\" depth=\"1019\"/>";
str = str + "<object tile=\"house_med3\" x=\"960\" y=\"1300\" plane=\"far\" depth=\"1020\"/>";
str = str + "<object tile=\"house_sm2\" x=\"890\" y=\"1390\" plane=\"far\" depth=\"1021\"/>";
str = str + "<object tile=\"house_big1\" x=\"930\" y=\"1370\" plane=\"far\" depth=\"1022\"/>";
str = str + "<object tile=\"house_med2\" x=\"790\" y=\"1330\" plane=\"far\" depth=\"1023\"/>";
str = str + "<object tile=\"house_med4\" x=\"1080\" y=\"1390\" plane=\"far\" depth=\"1024\"/>";
str = str + "<object tile=\"house_sm1\" x=\"800\" y=\"1430\" plane=\"far\" depth=\"1025\"/>";
str = str + "<object tile=\"house_sm2\" x=\"940\" y=\"1500\" plane=\"far\" depth=\"1026\"/>";
str = str + "<object tile=\"house_med4\" x=\"880\" y=\"1540\" plane=\"far\" depth=\"1027\"/>";
str = str + "<object tile=\"house_sm1\" x=\"1190\" y=\"1420\" plane=\"far\" depth=\"1028\"/>";
str = str + "<object tile=\"house_sm2\" x=\"830\" y=\"1580\" plane=\"far\" depth=\"1029\"/>";
str = str + "<object tile=\"house_med3\" x=\"810\" y=\"1620\" plane=\"far\" depth=\"1030\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1080\" y=\"1480\" plane=\"far\" depth=\"1031\"/>";
str = str + "<object tile=\"house_med2\" x=\"980\" y=\"1530\" plane=\"far\" depth=\"1032\"/>";
str = str + "<object tile=\"house_med3\" x=\"1080\" y=\"1520\" plane=\"far\" depth=\"1033\"/>";
str = str + "<object tile=\"house_sm1\" x=\"1160\" y=\"1570\" plane=\"far\" depth=\"1034\"/>";
str = str + "<object tile=\"house_sm2\" x=\"800\" y=\"1490\" plane=\"far\" depth=\"1035\"/>";
str = str + "<object tile=\"house_med3\" x=\"790\" y=\"1170\" plane=\"far\" depth=\"1036\"/>";
str = str + "<object tile=\"house_sm1\" x=\"790\" y=\"1270\" plane=\"far\" depth=\"1037\"/>";
str = str + "<object tile=\"tower_water\" x=\"1190\" y=\"1270\" plane=\"far\" depth=\"1038\"/>";
str = str + "<object tile=\"house_med1\" x=\"1710\" y=\"1680\" plane=\"far\" depth=\"1039\"/>";
str = str + "<object tile=\"house_big1\" x=\"1790\" y=\"1550\" plane=\"far\" depth=\"1040\"/>";
str = str + "<object tile=\"house_med1\" x=\"1800\" y=\"1680\" plane=\"far\" depth=\"1041\"/>";
str = str + "<object tile=\"house_med4\" x=\"1800\" y=\"1740\" plane=\"far\" depth=\"1042\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1800\" y=\"1830\" plane=\"far\" depth=\"1043\"/>";
str = str + "<object tile=\"house_med2\" x=\"1710\" y=\"1720\" plane=\"far\" depth=\"1044\"/>";
str = str + "<object tile=\"house_sm1\" x=\"1710\" y=\"1820\" plane=\"far\" depth=\"1045\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1750\" y=\"1880\" plane=\"far\" depth=\"1046\"/>";
str = str + "<object tile=\"house_big1\" x=\"1790\" y=\"1860\" plane=\"far\" depth=\"1047\"/>";
str = str + "<object tile=\"house_med5\" x=\"1700\" y=\"1990\" plane=\"far\" depth=\"1048\"/>";
str = str + "<object tile=\"tower_water\" x=\"1710\" y=\"1990\" plane=\"far\" depth=\"1049\"/>";
str = str + "<object tile=\"house_sm1\" x=\"1930\" y=\"1990\" plane=\"far\" depth=\"1050\"/>";
str = str + "<object tile=\"house_med1\" x=\"1970\" y=\"1990\" plane=\"far\" depth=\"1051\"/>";
str = str + "<object tile=\"house_big1\" x=\"2050\" y=\"1940\" plane=\"far\" depth=\"1052\"/>";
str = str + "<object tile=\"house_sm1\" x=\"2020\" y=\"2060\" plane=\"far\" depth=\"1053\"/>";
str = str + "<object tile=\"house_big1\" x=\"2470\" y=\"1540\" plane=\"far\" depth=\"1054\"/>";
str = str + "<object tile=\"house_med4\" x=\"2560\" y=\"1700\" plane=\"far\" depth=\"1055\"/>";
str = str + "<object tile=\"house_med3\" x=\"2480\" y=\"1780\" plane=\"far\" depth=\"1056\"/>";
str = str + "<object tile=\"house_sm1\" x=\"2560\" y=\"1790\" plane=\"far\" depth=\"1057\"/>";
str = str + "<object tile=\"house_sm2\" x=\"2480\" y=\"1880\" plane=\"far\" depth=\"1058\"/>";
str = str + "<object tile=\"house_med1\" x=\"2470\" y=\"1920\" plane=\"far\" depth=\"1059\"/>";
str = str + "<object tile=\"house_big1\" x=\"2550\" y=\"1880\" plane=\"far\" depth=\"1060\"/>";
str = str + "<object tile=\"house_sm1\" x=\"2520\" y=\"1990\" plane=\"far\" depth=\"1061\"/>";
str = str + "<object tile=\"house_med2\" x=\"2510\" y=\"2020\" plane=\"far\" depth=\"1062\"/>";
str = str + "<object tile=\"house_med3\" x=\"2260\" y=\"1970\" plane=\"far\" depth=\"1063\"/>";
str = str + "<object tile=\"house_big1\" x=\"2330\" y=\"1930\" plane=\"far\" depth=\"1064\"/>";
str = str + "<object tile=\"house_sm1\" x=\"2340\" y=\"2060\" plane=\"far\" depth=\"1065\"/>";
str = str + "<object tile=\"house_sm2\" x=\"2460\" y=\"2070\" plane=\"far\" depth=\"1066\"/>";
str = str + "<object tile=\"house_med1\" x=\"2340\" y=\"1580\" plane=\"far\" depth=\"1067\"/>";
str = str + "<object tile=\"house_med4\" x=\"1940\" y=\"1570\" plane=\"far\" depth=\"1068\"/>";
str = str + "<object tile=\"house_sm2\" x=\"2050\" y=\"1590\" plane=\"far\" depth=\"1069\"/>";
str = str + "<object tile=\"house_med4\" x=\"1820\" y=\"2010\" plane=\"far\" depth=\"1070\"/>";
str = str + "<object tile=\"house_sm2\" x=\"1820\" y=\"2100\" plane=\"far\" depth=\"1071\"/>";
str = str + "<object tile=\"house_sm2\" x=\"2430\" y=\"1600\" plane=\"far\" depth=\"1072\"/>";
str = str + "<object tile=\"house_sm1\" x=\"2110\" y=\"1570\" plane=\"far\" depth=\"1073\"/>";
str = str + "<object tile=\"tower_guard\" x=\"2120\" y=\"2560\" plane=\"far\" depth=\"1074\"/>";
str = str + "<object tile=\"tower_guard\" x=\"2130\" y=\"2780\" plane=\"far\" depth=\"1075\"/>";
str = str + "<object tile=\"tower_guard\" x=\"2630\" y=\"1570\" plane=\"far\" depth=\"1076\"/>";
str = str + "<object tile=\"tower_guard\" x=\"2630\" y=\"2120\" plane=\"far\" depth=\"1077\"/>";
str = str + "<object tile=\"tower_guard\" x=\"1720\" y=\"2110\" plane=\"far\" depth=\"1078\"/>";
str = str + "<object tile=\"tower_guard\" x=\"1710\" y=\"1590\" plane=\"far\" depth=\"1079\"/>";
str = str + "<object tile=\"oil_punp2\" x=\"1610\" y=\"3470\" plane=\"far\" depth=\"1080\"/>";
str = str + "<object tile=\"oil_pump1\" x=\"1260\" y=\"3480\" plane=\"far\" depth=\"1081\"/>";
str = str + "<object tile=\"oil_punp2\" x=\"1610\" y=\"3360\" plane=\"far\" depth=\"1082\"/>";
str = str + "<object tile=\"oil_pump1\" x=\"1260\" y=\"3380\" plane=\"far\" depth=\"1083\"/>";
str = str + "<object tile=\"oil_barrel2\" x=\"3880\" y=\"3440\" plane=\"far\" depth=\"1084\"/>";
str = str + "<object tile=\"oil_barrel2\" x=\"3880\" y=\"3370\" plane=\"far\" depth=\"1085\"/>";
str = str + "<object tile=\"oil_barrel2\" x=\"3880\" y=\"3300\" plane=\"far\" depth=\"1086\"/>";
str = str + "<object tile=\"oil_barrel2\" x=\"3880\" y=\"3230\" plane=\"far\" depth=\"1087\"/>";
str = str + "<object tile=\"hangar2\" x=\"4100\" y=\"3450\" plane=\"far\" depth=\"1088\"/>";
str = str + "<object tile=\"oil_punp2\" x=\"4100\" y=\"3360\" plane=\"far\" depth=\"1089\"/>";
str = str + "<object tile=\"oil_punp2\" x=\"4100\" y=\"3270\" plane=\"far\" depth=\"1090\"/>";
str = str + "<object tile=\"oil_punp2\" x=\"4100\" y=\"3180\" plane=\"far\" depth=\"1091\"/>";
str = str + "<object tile=\"house_big2\" x=\"3830\" y=\"2940\" plane=\"far\" depth=\"1092\"/>";
str = str + "<object tile=\"house_med2\" x=\"3410\" y=\"3150\" plane=\"far\" depth=\"1093\"/>";
str = str + "<object tile=\"house_med5\" x=\"4050\" y=\"2940\" plane=\"far\" depth=\"1094\"/>";
str = str + "<object tile=\"house_sm2\" x=\"3420\" y=\"3250\" plane=\"far\" depth=\"1095\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3860\" y=\"3190\" plane=\"far\" depth=\"1096\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3890\" y=\"3190\" plane=\"far\" depth=\"1097\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3920\" y=\"3190\" plane=\"far\" depth=\"1098\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3950\" y=\"3190\" plane=\"far\" depth=\"1099\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3190\" plane=\"far\" depth=\"1100\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3220\" plane=\"far\" depth=\"1101\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3250\" plane=\"far\" depth=\"1102\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3280\" plane=\"far\" depth=\"1103\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3310\" plane=\"far\" depth=\"1104\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3340\" plane=\"far\" depth=\"1105\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3370\" plane=\"far\" depth=\"1106\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3400\" plane=\"far\" depth=\"1107\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3430\" plane=\"far\" depth=\"1108\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3460\" plane=\"far\" depth=\"1109\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3850\" y=\"3490\" plane=\"far\" depth=\"1110\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3860\" y=\"3520\" plane=\"far\" depth=\"1111\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3890\" y=\"3520\" plane=\"far\" depth=\"1112\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3920\" y=\"3520\" plane=\"far\" depth=\"1113\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3950\" y=\"3520\" plane=\"far\" depth=\"1114\"/>";
str = str + "<object tile=\"hangar1\" x=\"3690\" y=\"2920\" plane=\"far\" depth=\"1115\"/>";
str = str + "<object tile=\"oil_barrel1\" x=\"3610\" y=\"3320\" plane=\"far\" depth=\"1116\"/>";
str = str + "<object tile=\"oil_barrel1\" x=\"3530\" y=\"3320\" plane=\"far\" depth=\"1117\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3780\" y=\"3170\" plane=\"far\" depth=\"1118\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3780\" y=\"3200\" plane=\"far\" depth=\"1119\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3780\" y=\"3230\" plane=\"far\" depth=\"1120\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3700\" y=\"3260\" plane=\"far\" depth=\"1121\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3730\" y=\"3260\" plane=\"far\" depth=\"1122\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3760\" y=\"3260\" plane=\"far\" depth=\"1123\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3691\" y=\"3261\" plane=\"far\" depth=\"1124\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3691\" y=\"3291\" plane=\"far\" depth=\"1125\"/>";
str = str + "<object tile=\"oil_barrel2\" x=\"3700\" y=\"3190\" plane=\"far\" depth=\"1126\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3390\" y=\"3170\" plane=\"far\" depth=\"1127\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3390\" y=\"3200\" plane=\"far\" depth=\"1128\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3390\" y=\"3230\" plane=\"far\" depth=\"1129\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3691\" y=\"3321\" plane=\"far\" depth=\"1130\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3690\" y=\"3350\" plane=\"far\" depth=\"1131\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3390\" y=\"3260\" plane=\"far\" depth=\"1132\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3390\" y=\"3290\" plane=\"far\" depth=\"1133\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3690\" y=\"3383\" plane=\"far\" depth=\"1134\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3520\" y=\"3410\" plane=\"far\" depth=\"1135\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3550\" y=\"3410\" plane=\"far\" depth=\"1136\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3580\" y=\"3410\" plane=\"far\" depth=\"1137\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3610\" y=\"3410\" plane=\"far\" depth=\"1138\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3640\" y=\"3410\" plane=\"far\" depth=\"1139\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3670\" y=\"3410\" plane=\"far\" depth=\"1140\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3400\" y=\"3320\" plane=\"far\" depth=\"1141\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3430\" y=\"3320\" plane=\"far\" depth=\"1142\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3460\" y=\"3320\" plane=\"far\" depth=\"1143\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3480\" y=\"3320\" plane=\"far\" depth=\"1144\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3480\" y=\"3350\" plane=\"far\" depth=\"1145\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3480\" y=\"3380\" plane=\"far\" depth=\"1146\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3490\" y=\"3410\" plane=\"far\" depth=\"1147\"/>";
str = str + "<object tile=\"oil_pump1\" x=\"3180\" y=\"2760\" plane=\"far\" depth=\"1148\"/>";
str = str + "<object tile=\"oil_pump1\" x=\"3180\" y=\"2850\" plane=\"far\" depth=\"1149\"/>";
str = str + "<object tile=\"oil_pump1\" x=\"3180\" y=\"2940\" plane=\"far\" depth=\"1150\"/>";
str = str + "<object tile=\"oil_pump1\" x=\"3180\" y=\"3030\" plane=\"far\" depth=\"1151\"/>";
str = str + "<object tile=\"tower_water\" x=\"3270\" y=\"3100\" plane=\"far\" depth=\"1152\"/>";
str = str + "<object tile=\"hangar2\" x=\"3460\" y=\"2710\" plane=\"far\" depth=\"1153\"/>";
str = str + "<object tile=\"hangar2\" x=\"3470\" y=\"2850\" plane=\"far\" depth=\"1154\"/>";
str = str + "<object tile=\"wall_big2\" x=\"3080\" y=\"1190\" plane=\"far\" depth=\"1155\"/>";
str = str + "<object tile=\"house_big2\" x=\"2900\" y=\"1230\" plane=\"far\" depth=\"1156\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1880\" y=\"1260\" plane=\"far\" depth=\"1157\"/>";
str = str + "<object tile=\"wall_big2\" x=\"1950\" y=\"1260\" plane=\"far\" depth=\"1158\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2020\" y=\"1260\" plane=\"far\" depth=\"1159\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2090\" y=\"1260\" plane=\"far\" depth=\"1160\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2159\" y=\"1260\" plane=\"far\" depth=\"1161\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2229\" y=\"1260\" plane=\"far\" depth=\"1162\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2300\" y=\"1260\" plane=\"far\" depth=\"1163\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2369\" y=\"1260\" plane=\"far\" depth=\"1164\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2439\" y=\"1260\" plane=\"far\" depth=\"1165\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2509\" y=\"1260\" plane=\"far\" depth=\"1166\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2580\" y=\"1260\" plane=\"far\" depth=\"1167\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2649\" y=\"1260\" plane=\"far\" depth=\"1168\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2720\" y=\"1260\" plane=\"far\" depth=\"1169\"/>";
str = str + "<object tile=\"wall_big2\" x=\"2790\" y=\"1260\" plane=\"far\" depth=\"1170\"/>";
str = str + "<object tile=\"house_med1\" x=\"2870\" y=\"2580\" plane=\"far\" depth=\"1171\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2840\" y=\"2380\" plane=\"far\" depth=\"1172\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2870\" y=\"2380\" plane=\"far\" depth=\"1173\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2900\" y=\"2381\" plane=\"far\" depth=\"1174\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2930\" y=\"2380\" plane=\"far\" depth=\"1175\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2960\" y=\"2381\" plane=\"far\" depth=\"1176\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2990\" y=\"2380\" plane=\"far\" depth=\"1177\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"3020\" y=\"2381\" plane=\"far\" depth=\"1178\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2830\" y=\"2380\" plane=\"far\" depth=\"1179\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2830\" y=\"2410\" plane=\"far\" depth=\"1180\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2830\" y=\"2440\" plane=\"far\" depth=\"1181\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2830\" y=\"2470\" plane=\"far\" depth=\"1182\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2830\" y=\"2500\" plane=\"far\" depth=\"1183\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2830\" y=\"2530\" plane=\"far\" depth=\"1184\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2830\" y=\"2560\" plane=\"far\" depth=\"1185\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2830\" y=\"2590\" plane=\"far\" depth=\"1186\"/>";
str = str + "<object tile=\"house_sm2\" x=\"2840\" y=\"2450\" plane=\"far\" depth=\"1187\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3040\" y=\"2380\" plane=\"far\" depth=\"1188\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3040\" y=\"2410\" plane=\"far\" depth=\"1189\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"3040\" y=\"2440\" plane=\"far\" depth=\"1190\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2830\" y=\"2620\" plane=\"far\" depth=\"1191\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2840\" y=\"2650\" plane=\"far\" depth=\"1192\"/>";
str = str + "<object tile=\"house_med3\" x=\"2990\" y=\"2470\" plane=\"far\" depth=\"1193\"/>";
str = str + "<object tile=\"house_med4\" x=\"2970\" y=\"2560\" plane=\"far\" depth=\"1194\"/>";
str = str + "<object tile=\"house_med4\" x=\"2360\" y=\"2220\" plane=\"far\" depth=\"1195\"/>";
str = str + "<object tile=\"house_big1\" x=\"2450\" y=\"2200\" plane=\"far\" depth=\"1196\"/>";
str = str + "<object tile=\"house_med3\" x=\"2600\" y=\"2220\" plane=\"far\" depth=\"1197\"/>";
str = str + "<object tile=\"house_med5\" x=\"2240\" y=\"2220\" plane=\"far\" depth=\"1198\"/>";
str = str + "<object tile=\"house_sm1\" x=\"2600\" y=\"2320\" plane=\"far\" depth=\"1199\"/>";
str = str + "<object tile=\"house_sm2\" x=\"2570\" y=\"2250\" plane=\"far\" depth=\"1200\"/>";
str = str + "<object tile=\"house_med1\" x=\"2370\" y=\"2310\" plane=\"far\" depth=\"1201\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2210\" plane=\"far\" depth=\"1202\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2240\" plane=\"far\" depth=\"1203\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2270\" plane=\"far\" depth=\"1204\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2300\" plane=\"far\" depth=\"1205\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2330\" plane=\"far\" depth=\"1206\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2360\" plane=\"far\" depth=\"1207\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2390\" plane=\"far\" depth=\"1208\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2420\" plane=\"far\" depth=\"1209\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2450\" plane=\"far\" depth=\"1210\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2480\" plane=\"far\" depth=\"1211\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2510\" plane=\"far\" depth=\"1212\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2539\" plane=\"far\" depth=\"1213\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2570\" plane=\"far\" depth=\"1214\"/>";
str = str + "<object tile=\"wall_sm1\" x=\"2780\" y=\"2600\" plane=\"far\" depth=\"1215\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2610\" y=\"2630\" plane=\"far\" depth=\"1216\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2640\" y=\"2630\" plane=\"far\" depth=\"1217\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2670\" y=\"2630\" plane=\"far\" depth=\"1218\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2700\" y=\"2630\" plane=\"far\" depth=\"1219\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2730\" y=\"2630\" plane=\"far\" depth=\"1220\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2760\" y=\"2630\" plane=\"far\" depth=\"1221\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2420\" y=\"2590\" plane=\"far\" depth=\"1222\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2550\" y=\"2630\" plane=\"far\" depth=\"1223\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2580\" y=\"2630\" plane=\"far\" depth=\"1224\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2240\" y=\"2590\" plane=\"far\" depth=\"1225\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2270\" y=\"2590\" plane=\"far\" depth=\"1226\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2300\" y=\"2590\" plane=\"far\" depth=\"1227\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2330\" y=\"2590\" plane=\"far\" depth=\"1228\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2360\" y=\"2590\" plane=\"far\" depth=\"1229\"/>";
str = str + "<object tile=\"wall_sm2\" x=\"2390\" y=\"2590\" plane=\"far\" depth=\"1230\"/>";
str = str + "<object tile=\"house_med1\" x=\"2680\" y=\"2480\" plane=\"far\" depth=\"1231\"/>";
str = str + "<object tile=\"house_med2\" x=\"2590\" y=\"2500\" plane=\"far\" depth=\"1232\"/>";
str = str + "<object tile=\"house_sm1\" x=\"2690\" y=\"2540\" plane=\"far\" depth=\"1233\"/>";
str = str + "<object tile=\"cargo_heli\" x=\"3390\" y=\"830\" plane=\"main\" depth=\"1234\"/>";
str = str + "<object tile=\"hero1\" x=\"3070\" y=\"820\" plane=\"main\" depth=\"1235\"/>";
str = str + "<object tile=\"gunner\" x=\"950\" y=\"800\" plane=\"main\" depth=\"1236\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"236\" deltay=\"1\" mtype=\"lin\" steps=\"118\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-236\" deltay=\"-1\" mtype=\"lin\" steps=\"118\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1000\" y=\"810\" plane=\"main\" depth=\"1237\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"203\" deltay=\"0\" mtype=\"lin\" steps=\"101\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-203\" deltay=\"0\" mtype=\"lin\" steps=\"101\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1080\" y=\"820\" plane=\"main\" depth=\"1238\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"193\" deltay=\"1\" mtype=\"lin\" steps=\"96\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"35\" deltay=\"66\" mtype=\"lin\" steps=\"37\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"6\" deltay=\"-87\" mtype=\"lin\" steps=\"43\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-234\" deltay=\"20\" mtype=\"lin\" steps=\"117\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1230\" y=\"810\" plane=\"main\" depth=\"1239\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"100\" deltay=\"0\" mtype=\"lin\" steps=\"50\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-22\" deltay=\"182\" mtype=\"lin\" steps=\"91\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"40\" deltay=\"-108\" mtype=\"lin\" steps=\"57\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-118\" deltay=\"-74\" mtype=\"lin\" steps=\"69\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1310\" y=\"830\" plane=\"main\" depth=\"1240\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"2\" deltay=\"264\" mtype=\"lin\" steps=\"132\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"63\" deltay=\"102\" mtype=\"lin\" steps=\"59\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-65\" deltay=\"-366\" mtype=\"lin\" steps=\"185\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"1540\" y=\"890\" plane=\"main\" depth=\"1241\"/>";
str = str + "<object tile=\"PZRK\" x=\"1580\" y=\"720\" plane=\"main\" depth=\"1242\"/>";
str = str + "<object tile=\"PZRK\" x=\"1570\" y=\"1150\" plane=\"main\" depth=\"1243\"/>";
str = str + "<object tile=\"PZRK\" x=\"1100\" y=\"1070\" plane=\"main\" depth=\"1244\"/>";
str = str + "<object tile=\"PZRK\" x=\"930\" y=\"690\" plane=\"main\" depth=\"1245\"/>";
str = str + "<object tile=\"PZRK\" x=\"850\" y=\"1350\" plane=\"main\" depth=\"1246\"/>";
str = str + "<object tile=\"PZRK\" x=\"1090\" y=\"1790\" plane=\"main\" depth=\"1247\"/>";
str = str + "<object tile=\"PZRK\" x=\"900\" y=\"2190\" plane=\"main\" depth=\"1248\"/>";
str = str + "<object tile=\"PZRK\" x=\"2460\" y=\"2530\" plane=\"main\" depth=\"1249\"/>";
str = str + "<object tile=\"PZRK\" x=\"2900\" y=\"2810\" plane=\"main\" depth=\"1250\"/>";
str = str + "<object tile=\"gunner\" x=\"910\" y=\"1340\" plane=\"main\" depth=\"1251\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-98\" mtype=\"lin\" steps=\"49\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"168\" deltay=\"0\" mtype=\"lin\" steps=\"84\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"97\" mtype=\"lin\" steps=\"48\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-44\" deltay=\"-119\" mtype=\"lin\" steps=\"63\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-86\" deltay=\"2\" mtype=\"lin\" steps=\"43\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-38\" deltay=\"118\" mtype=\"lin\" steps=\"61\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_1\" x=\"930\" y=\"1660\" plane=\"main\" depth=\"1252\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"329\" deltay=\"-4\" mtype=\"lin\" steps=\"164\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"2\" deltay=\"-252\" mtype=\"lin\" steps=\"126\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-19\" deltay=\"236\" mtype=\"lin\" steps=\"118\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-312\" deltay=\"20\" mtype=\"lin\" steps=\"156\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner_1\" x=\"1520\" y=\"1730\" plane=\"main\" depth=\"1253\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-573\" deltay=\"1\" mtype=\"lin\" steps=\"286\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"366\" deltay=\"-61\" mtype=\"lin\" steps=\"185\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"130\" mtype=\"lin\" steps=\"65\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"207\" deltay=\"-70\" mtype=\"lin\" steps=\"109\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"870\" y=\"2100\" plane=\"main\" depth=\"1254\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"472\" deltay=\"-1\" mtype=\"lin\" steps=\"236\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"6\" deltay=\"-300\" mtype=\"lin\" steps=\"150\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-61\" deltay=\"326\" mtype=\"lin\" steps=\"165\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-417\" deltay=\"-25\" mtype=\"lin\" steps=\"208\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1550\" y=\"2240\" plane=\"main\" depth=\"1255\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"65\" deltay=\"-170\" mtype=\"lin\" steps=\"91\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-34\" deltay=\"-85\" mtype=\"lin\" steps=\"45\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-31\" deltay=\"255\" mtype=\"lin\" steps=\"128\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1510\" y=\"1900\" plane=\"main\" depth=\"1256\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-69\" deltay=\"108\" mtype=\"lin\" steps=\"64\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"119\" deltay=\"63\" mtype=\"lin\" steps=\"67\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-148\" deltay=\"-160\" mtype=\"lin\" steps=\"108\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"98\" deltay=\"-11\" mtype=\"lin\" steps=\"49\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1470\" y=\"2120\" plane=\"main\" depth=\"1257\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"89\" deltay=\"76\" mtype=\"lin\" steps=\"58\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-120\" deltay=\"72\" mtype=\"lin\" steps=\"69\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"31\" deltay=\"-148\" mtype=\"lin\" steps=\"75\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1270\" y=\"2320\" plane=\"main\" depth=\"1258\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-356\" deltay=\"2\" mtype=\"lin\" steps=\"178\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"356\" deltay=\"-2\" mtype=\"lin\" steps=\"178\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1140\" y=\"2590\" plane=\"main\" depth=\"1259\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-130\" deltay=\"-70\" mtype=\"lin\" steps=\"73\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"272\" deltay=\"1\" mtype=\"lin\" steps=\"136\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-142\" deltay=\"69\" mtype=\"lin\" steps=\"78\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1340\" y=\"2960\" plane=\"main\" depth=\"1260\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"54\" deltay=\"-113\" mtype=\"lin\" steps=\"62\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-151\" deltay=\"154\" mtype=\"lin\" steps=\"107\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"97\" deltay=\"-41\" mtype=\"lin\" steps=\"52\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"gunner\" x=\"1040\" y=\"3010\" plane=\"main\" depth=\"1261\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"145\" deltay=\"1\" mtype=\"lin\" steps=\"72\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-97\" deltay=\"-159\" mtype=\"lin\" steps=\"93\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-48\" deltay=\"158\" mtype=\"lin\" steps=\"82\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"2370\" y=\"3050\" plane=\"main\" depth=\"1262\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-66\" deltay=\"-147\" mtype=\"lin\" steps=\"80\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"146\" deltay=\"18\" mtype=\"lin\" steps=\"73\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-80\" deltay=\"129\" mtype=\"lin\" steps=\"75\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"2170\" y=\"2430\" plane=\"main\" depth=\"1263\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-50\" deltay=\"-83\" mtype=\"lin\" steps=\"48\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-131\" deltay=\"44\" mtype=\"lin\" steps=\"69\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"49\" deltay=\"108\" mtype=\"lin\" steps=\"59\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"100\" deltay=\"0\" mtype=\"lin\" steps=\"50\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"32\" deltay=\"-69\" mtype=\"lin\" steps=\"38\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"1990\" y=\"2360\" plane=\"main\" depth=\"1264\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"34\" deltay=\"108\" mtype=\"lin\" steps=\"56\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"114\" deltay=\"22\" mtype=\"lin\" steps=\"58\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"12\" deltay=\"-104\" mtype=\"lin\" steps=\"52\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-63\" deltay=\"-51\" mtype=\"lin\" steps=\"40\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-97\" deltay=\"25\" mtype=\"lin\" steps=\"50\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"PZRK\" x=\"2010\" y=\"2500\" plane=\"main\" depth=\"1265\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"110\" deltay=\"-9\" mtype=\"lin\" steps=\"55\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"33\" deltay=\"-96\" mtype=\"lin\" steps=\"50\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-75\" deltay=\"-52\" mtype=\"lin\" steps=\"45\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-101\" deltay=\"64\" mtype=\"lin\" steps=\"59\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"33\" deltay=\"93\" mtype=\"lin\" steps=\"49\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"tank_panzer3\" x=\"1410\" y=\"3620\" plane=\"main\" depth=\"1266\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"100\" deltay=\"0\" mtype=\"lin\" steps=\"25\" repeat=\"-100\" rotateTile=\"1\" deltar=\"90\" rtype=\"lin\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"50\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"1117\" deltay=\"1\" mtype=\"lin\" steps=\"279\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"30\" deltay=\"-7\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"22\" deltay=\"-13\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"22\" deltay=\"-22\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"13\" deltay=\"-27\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"7\" deltay=\"-36\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1\" deltay=\"-699\" mtype=\"lin\" steps=\"174\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-7\" deltay=\"-29\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-11\" deltay=\"-25\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-26\" deltay=\"-26\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-32\" deltay=\"-16\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-29\" deltay=\"-5\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1668\" deltay=\"-1\" mtype=\"lin\" steps=\"417\" repeat=\"-100\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"1000\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"463\" deltay=\"905\" mtype=\"lin\" steps=\"254\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"tank_panzer3\" x=\"1210\" y=\"3620\" plane=\"main\" depth=\"1267\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"100\" deltay=\"0\" mtype=\"lin\" steps=\"25\" repeat=\"-100\" rotateTile=\"1\" deltar=\"90\" rtype=\"lin\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"50\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"1314\" deltay=\"9\" mtype=\"lin\" steps=\"328\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"29\" deltay=\"-8\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"27\" deltay=\"-18\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"20\" deltay=\"-22\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"10\" deltay=\"-29\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"9\" deltay=\"-32\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1\" deltay=\"-711\" mtype=\"lin\" steps=\"177\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-5\" deltay=\"-26\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-13\" deltay=\"-27\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-24\" deltay=\"-26\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-27\" deltay=\"-12\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-33\" deltay=\"-5\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1451\" deltay=\"0\" mtype=\"lin\" steps=\"362\" repeat=\"-100\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"1000\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"45\" deltay=\"907\" mtype=\"lin\" steps=\"227\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"tank_t80\" x=\"860\" y=\"3620\" plane=\"main\" depth=\"1268\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"100\" deltay=\"0\" mtype=\"lin\" steps=\"25\" repeat=\"-100\" rotateTile=\"1\" deltar=\"90\" rtype=\"lin\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"50\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"1661\" deltay=\"-1\" mtype=\"lin\" steps=\"415\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"21\" deltay=\"-5\" mtype=\"lin\" steps=\"5\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"22\" deltay=\"-11\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"28\" deltay=\"-24\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"14\" deltay=\"-26\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"9\" deltay=\"-42\" mtype=\"lin\" steps=\"10\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"1\" deltay=\"-694\" mtype=\"lin\" steps=\"173\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-7\" deltay=\"-30\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-13\" deltay=\"-26\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-26\" deltay=\"-26\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-31\" deltay=\"-14\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-26\" deltay=\"-4\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1287\" deltay=\"-2\" mtype=\"lin\" steps=\"321\" repeat=\"-100\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"1000\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-466\" deltay=\"905\" mtype=\"lin\" steps=\"254\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"truck_tent_3\" x=\"1090\" y=\"3620\" plane=\"main\" depth=\"1269\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"100\" deltay=\"0\" mtype=\"lin\" steps=\"25\" repeat=\"-100\" rotateTile=\"1\" deltar=\"90\" rtype=\"lin\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"50\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"1438\" deltay=\"1\" mtype=\"lin\" steps=\"359\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"24\" deltay=\"-7\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"27\" deltay=\"-17\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"20\" deltay=\"-24\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"12\" deltay=\"-26\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"6\" deltay=\"-39\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"4\" deltay=\"-691\" mtype=\"lin\" steps=\"172\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-5\" deltay=\"-28\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-13\" deltay=\"-28\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-20\" deltay=\"-24\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-29\" deltay=\"-15\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-34\" deltay=\"-8\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1361\" deltay=\"2\" mtype=\"lin\" steps=\"340\" repeat=\"-100\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"1000\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-169\" deltay=\"904\" mtype=\"lin\" steps=\"229\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"tank_pvo1_1\" x=\"990\" y=\"3620\" plane=\"main\" depth=\"1270\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"100\" deltay=\"0\" mtype=\"lin\" steps=\"25\" repeat=\"-100\" rotateTile=\"1\" deltar=\"90\" rtype=\"lin\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"50\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"1526\" deltay=\"1\" mtype=\"lin\" steps=\"381\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"31\" deltay=\"-10\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"28\" deltay=\"-16\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"20\" deltay=\"-20\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"12\" deltay=\"-24\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"7\" deltay=\"-38\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"2\" deltay=\"-699\" mtype=\"lin\" steps=\"174\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-6\" deltay=\"-28\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-12\" deltay=\"-26\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-20\" deltay=\"-22\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-29\" deltay=\"-15\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-33\" deltay=\"-8\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-950\" deltay=\"1\" mtype=\"lin\" steps=\"237\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-37\" deltay=\"-10\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-27\" deltay=\"-15\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-17\" deltay=\"-23\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-12\" deltay=\"-28\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1\" deltay=\"-35\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1\" deltay=\"-32\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"1000\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-581\" deltay=\"1047\" mtype=\"lin\" steps=\"299\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"tank_pvo2\" x=\"1310\" y=\"3620\" plane=\"main\" depth=\"1271\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"100\" deltay=\"0\" mtype=\"lin\" steps=\"25\" repeat=\"-100\" rotateTile=\"1\" deltar=\"90\" rtype=\"lin\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"50\"/>";
str = str + "<object action=\"move\" startByHit=\"50\" deltax=\"1212\" deltay=\"5\" mtype=\"lin\" steps=\"303\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"27\" deltay=\"-7\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"22\" deltay=\"-13\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"22\" deltay=\"-23\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"13\" deltay=\"-28\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"6\" deltay=\"-37\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1\" deltay=\"-708\" mtype=\"lin\" steps=\"177\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-4\" deltay=\"-24\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-11\" deltay=\"-27\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-19\" deltay=\"-24\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-32\" deltay=\"-18\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-34\" deltay=\"-8\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1551\" deltay=\"-1\" mtype=\"lin\" steps=\"387\" repeat=\"-100\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"1000\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"250\" deltay=\"913\" mtype=\"lin\" steps=\"236\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"tank_pvo2\" x=\"650\" y=\"3620\" plane=\"main\" depth=\"1272\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"100\" deltay=\"0\" mtype=\"lin\" steps=\"25\" repeat=\"-100\" rotateTile=\"1\" deltar=\"90\" rtype=\"lin\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"50\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"1874\" deltay=\"-2\" mtype=\"lin\" steps=\"468\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"26\" deltay=\"-8\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"26\" deltay=\"-15\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"19\" deltay=\"-24\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"13\" deltay=\"-29\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"5\" deltay=\"-34\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-703\" mtype=\"lin\" steps=\"175\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-7\" deltay=\"-28\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-15\" deltay=\"-29\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-29\" deltay=\"-25\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-24\" deltay=\"-12\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-28\" deltay=\"-2\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-535\" deltay=\"2\" mtype=\"lin\" steps=\"133\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-33\" deltay=\"6\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-25\" deltay=\"11\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-26\" deltay=\"22\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-12\" deltay=\"29\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-7\" deltay=\"28\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-3\" deltay=\"90\" mtype=\"lin\" steps=\"22\" repeat=\"-100\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"1000\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1319\" deltay=\"723\" mtype=\"lin\" steps=\"376\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"tank_t80\" x=\"760\" y=\"3620\" plane=\"main\" depth=\"1273\" >";
str = str + "<array name=\"moving\">";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"100\" deltay=\"0\" mtype=\"lin\" steps=\"25\" repeat=\"-100\" rotateTile=\"1\" deltar=\"90\" rtype=\"lin\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"50\"/>";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"1752\" deltay=\"8\" mtype=\"lin\" steps=\"438\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"35\" deltay=\"-6\" mtype=\"lin\" steps=\"8\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"26\" deltay=\"-10\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"24\" deltay=\"-17\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"11\" deltay=\"-22\" mtype=\"lin\" steps=\"6\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"8\" deltay=\"-36\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"5\" deltay=\"-704\" mtype=\"lin\" steps=\"176\" repeat=\"-100\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-6\" deltay=\"-38\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-16\" deltay=\"-27\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-29\" deltay=\"-25\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-34\" deltay=\"-15\" mtype=\"lin\" steps=\"9\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-29\" deltay=\"-5\" mtype=\"lin\" steps=\"7\" repeat=\"-100\" rotateTile=\"1\" deltar=\"-18\" rtype=\"lin\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-1168\" deltay=\"-2\" mtype=\"lin\" steps=\"292\" repeat=\"-100\" />";
str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"1000\" />";
str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-679\" deltay=\"899\" mtype=\"lin\" steps=\"281\" repeat=\"-100\" />";
str = str + "</array>";
str = str + "</object>";
str = str + "<object tile=\"palms1\" x=\"770\" y=\"2930\" plane=\"nearest\" depth=\"1274\"/>";
str = str + "<object tile=\"palms1\" x=\"780\" y=\"2990\" plane=\"nearest\" depth=\"1275\"/>";
str = str + "<object tile=\"palms1\" x=\"770\" y=\"3100\" plane=\"nearest\" depth=\"1276\"/>";
str = str + "<object tile=\"palms1\" x=\"800\" y=\"3100\" plane=\"nearest\" depth=\"1277\"/>";
str = str + "<object tile=\"palms1\" x=\"790\" y=\"3060\" plane=\"nearest\" depth=\"1278\"/>";
str = str + "<object tile=\"palms1\" x=\"820\" y=\"3010\" plane=\"nearest\" depth=\"1279\"/>";
str = str + "<object tile=\"palms1\" x=\"840\" y=\"2760\" plane=\"nearest\" depth=\"1280\"/>";
str = str + "<object tile=\"palms4\" x=\"1880\" y=\"2400\" plane=\"nearest\" depth=\"1281\"/>";
str = str + "<object tile=\"palms4\" x=\"2010\" y=\"2200\" plane=\"nearest\" depth=\"1282\"/>";
str = str + "<object tile=\"palms5\" x=\"1780\" y=\"2230\" plane=\"nearest\" depth=\"1283\"/>";
str = str + "<object tile=\"palms3\" x=\"1950\" y=\"2410\" plane=\"nearest\" depth=\"1284\"/>";
str = str + "<object tile=\"palms3\" x=\"2040\" y=\"2310\" plane=\"nearest\" depth=\"1285\"/>";
str = str + "<object tile=\"palms1\" x=\"2020\" y=\"2420\" plane=\"nearest\" depth=\"1286\"/>";
str = str + "<object tile=\"palms1\" x=\"2030\" y=\"2380\" plane=\"nearest\" depth=\"1287\"/>";
str = str + "<object tile=\"palms1\" x=\"1970\" y=\"2350\" plane=\"nearest\" depth=\"1288\"/>";
str = str + "<object tile=\"palms1\" x=\"1930\" y=\"2300\" plane=\"nearest\" depth=\"1289\"/>";
str = str + "<object tile=\"palms1\" x=\"1970\" y=\"2260\" plane=\"nearest\" depth=\"1290\"/>";
str = str + "<object tile=\"palms1\" x=\"1710\" y=\"2260\" plane=\"nearest\" depth=\"1291\"/>";
str = str + "<object tile=\"palms1\" x=\"1680\" y=\"2300\" plane=\"nearest\" depth=\"1292\"/>";
str = str + "<object tile=\"palms1\" x=\"1440\" y=\"2230\" plane=\"nearest\" depth=\"1293\"/>";
str = str + "<object tile=\"palms3\" x=\"1540\" y=\"2190\" plane=\"nearest\" depth=\"1294\"/>";
str = str + "<object tile=\"palms1\" x=\"1670\" y=\"2260\" plane=\"nearest\" depth=\"1295\"/>";
str = str + "<object tile=\"palms1\" x=\"1510\" y=\"2260\" plane=\"nearest\" depth=\"1296\"/>";
str = str + "<object tile=\"palms1\" x=\"1480\" y=\"2190\" plane=\"nearest\" depth=\"1297\"/>";
str = str + "<object tile=\"palms1\" x=\"1400\" y=\"2190\" plane=\"nearest\" depth=\"1298\"/>";
str = str + "<object tile=\"palms1\" x=\"1680\" y=\"2220\" plane=\"nearest\" depth=\"1299\"/>";
str = str + "<object tile=\"palms1\" x=\"1740\" y=\"2220\" plane=\"nearest\" depth=\"1300\"/>";
str = str + "<object tile=\"palms1\" x=\"1740\" y=\"2280\" plane=\"nearest\" depth=\"1301\"/>";
str = str + "<object tile=\"palms1\" x=\"1660\" y=\"2330\" plane=\"nearest\" depth=\"1302\"/>";
str = str + "<object tile=\"palms1\" x=\"1530\" y=\"2310\" plane=\"nearest\" depth=\"1303\"/>";
str = str + "<object tile=\"palms3\" x=\"1610\" y=\"3000\" plane=\"nearest\" depth=\"1304\"/>";
str = str + "<object tile=\"palms4\" x=\"1810\" y=\"2990\" plane=\"nearest\" depth=\"1305\"/>";
str = str + "<object tile=\"palms1\" x=\"1930\" y=\"3060\" plane=\"nearest\" depth=\"1306\"/>";
str = str + "<object tile=\"palms1\" x=\"1960\" y=\"3080\" plane=\"nearest\" depth=\"1307\"/>";
str = str + "<object tile=\"palms1\" x=\"2020\" y=\"3080\" plane=\"nearest\" depth=\"1308\"/>";
str = str + "<object tile=\"palms1\" x=\"2010\" y=\"3040\" plane=\"nearest\" depth=\"1309\"/>";
str = str + "<object tile=\"palms1\" x=\"2060\" y=\"3000\" plane=\"nearest\" depth=\"1310\"/>";
str = str + "<object tile=\"palms1\" x=\"2040\" y=\"2950\" plane=\"nearest\" depth=\"1311\"/>";
str = str + "<object tile=\"palms1\" x=\"2070\" y=\"2930\" plane=\"nearest\" depth=\"1312\"/>";
str = str + "<object tile=\"palms1\" x=\"1530\" y=\"3090\" plane=\"nearest\" depth=\"1313\"/>";
str = str + "<object tile=\"palms1\" x=\"1570\" y=\"3080\" plane=\"nearest\" depth=\"1314\"/>";
str = str + "<object tile=\"palms1\" x=\"1750\" y=\"3070\" plane=\"nearest\" depth=\"1315\"/>";
str = str + "<object tile=\"palms1\" x=\"1750\" y=\"3030\" plane=\"nearest\" depth=\"1316\"/>";
str = str + "<object tile=\"palms1\" x=\"2070\" y=\"2870\" plane=\"nearest\" depth=\"1317\"/>";
str = str + "<object tile=\"palms1\" x=\"1900\" y=\"2520\" plane=\"nearest\" depth=\"1318\"/>";
str = str + "<object tile=\"palms1\" x=\"1840\" y=\"2820\" plane=\"nearest\" depth=\"1319\"/>";
str = str + "<object tile=\"palms1\" x=\"1860\" y=\"2780\" plane=\"nearest\" depth=\"1320\"/>";
str = str + "<object tile=\"palms1\" x=\"1850\" y=\"2910\" plane=\"nearest\" depth=\"1321\"/>";
str = str + "<object tile=\"palms1\" x=\"1910\" y=\"2560\" plane=\"nearest\" depth=\"1322\"/>";
str = str + "<object tile=\"palms5\" x=\"1360\" y=\"1740\" plane=\"nearest\" depth=\"1323\"/>";
str = str + "<object tile=\"palms5\" x=\"1490\" y=\"1770\" plane=\"nearest\" depth=\"1324\"/>";
str = str + "<object tile=\"palms5\" x=\"1460\" y=\"1090\" plane=\"nearest\" depth=\"1325\"/>";
str = str + "<object tile=\"palms4\" x=\"1360\" y=\"1830\" plane=\"nearest\" depth=\"1326\"/>";
str = str + "<object tile=\"palms4\" x=\"1360\" y=\"1030\" plane=\"nearest\" depth=\"1327\"/>";
str = str + "<object tile=\"palms1\" x=\"1570\" y=\"1720\" plane=\"nearest\" depth=\"1328\"/>";
str = str + "<object tile=\"palms1\" x=\"1610\" y=\"1690\" plane=\"nearest\" depth=\"1329\"/>";
str = str + "<object tile=\"palms1\" x=\"1600\" y=\"1750\" plane=\"nearest\" depth=\"1330\"/>";
str = str + "<object tile=\"palms1\" x=\"1360\" y=\"1980\" plane=\"nearest\" depth=\"1331\"/>";
str = str + "<object tile=\"palms5\" x=\"1460\" y=\"1880\" plane=\"nearest\" depth=\"1332\"/>";
str = str + "<object tile=\"palms4\" x=\"1370\" y=\"2080\" plane=\"nearest\" depth=\"1333\"/>";
str = str + "<object tile=\"palms4\" x=\"1400\" y=\"1970\" plane=\"nearest\" depth=\"1334\"/>";
str = str + "<object tile=\"palms4\" x=\"1500\" y=\"2030\" plane=\"nearest\" depth=\"1335\"/>";
str = str + "<object tile=\"palms1\" x=\"1380\" y=\"2240\" plane=\"nearest\" depth=\"1336\"/>";
str = str + "<object tile=\"palms1\" x=\"1590\" y=\"1140\" plane=\"nearest\" depth=\"1337\"/>";
str = str + "<object tile=\"palms5\" x=\"1380\" y=\"800\" plane=\"nearest\" depth=\"1338\"/>";
str = str + "<object tile=\"palms4\" x=\"1530\" y=\"670\" plane=\"nearest\" depth=\"1339\"/>";
str = str + "<object tile=\"palms4\" x=\"1370\" y=\"890\" plane=\"nearest\" depth=\"1340\"/>";
str = str + "<object tile=\"palms3\" x=\"1530\" y=\"800\" plane=\"nearest\" depth=\"1341\"/>";
str = str + "<object tile=\"palms1\" x=\"1440\" y=\"900\" plane=\"nearest\" depth=\"1342\"/>";
str = str + "<object tile=\"palms1\" x=\"1530\" y=\"850\" plane=\"nearest\" depth=\"1343\"/>";
str = str + "<object tile=\"palms1\" x=\"1450\" y=\"1050\" plane=\"nearest\" depth=\"1344\"/>";
str = str + "<object tile=\"palms3\" x=\"1540\" y=\"910\" plane=\"nearest\" depth=\"1345\"/>";
str = str + "<object tile=\"palms3\" x=\"1500\" y=\"1000\" plane=\"nearest\" depth=\"1346\"/>";
str = str + "<object tile=\"palms1\" x=\"1540\" y=\"970\" plane=\"nearest\" depth=\"1347\"/>";
str = str + "<object tile=\"palms1\" x=\"1580\" y=\"1030\" plane=\"nearest\" depth=\"1348\"/>";
str = str + "<object tile=\"palms1\" x=\"790\" y=\"2460\" plane=\"nearest\" depth=\"1349\"/>";
str = str + "<object tile=\"palms1\" x=\"830\" y=\"2470\" plane=\"nearest\" depth=\"1350\"/>";
str = str + "<object tile=\"palms1\" x=\"780\" y=\"1540\" plane=\"nearest\" depth=\"1351\"/>";
str = str + "<object tile=\"palms1\" x=\"840\" y=\"1420\" plane=\"nearest\" depth=\"1352\"/>";
str = str + "<object tile=\"palms1\" x=\"790\" y=\"1300\" plane=\"nearest\" depth=\"1353\"/>";
str = str + "<object tile=\"palms1\" x=\"1140\" y=\"1260\" plane=\"nearest\" depth=\"1354\"/>";
str = str + "<object tile=\"palms1\" x=\"1120\" y=\"1290\" plane=\"nearest\" depth=\"1355\"/>";
str = str + "<object tile=\"palms1\" x=\"1230\" y=\"1320\" plane=\"nearest\" depth=\"1356\"/>";
str = str + "<object tile=\"palms1\" x=\"1180\" y=\"1320\" plane=\"nearest\" depth=\"1357\"/>";
str = str + "<object tile=\"palms1\" x=\"780\" y=\"700\" plane=\"nearest\" depth=\"1358\"/>";
str = str + "<object tile=\"palms1\" x=\"800\" y=\"630\" plane=\"nearest\" depth=\"1359\"/>";
str = str + "<object tile=\"palms1\" x=\"1030\" y=\"640\" plane=\"nearest\" depth=\"1360\"/>";
str = str + "<object tile=\"palms1\" x=\"1530\" y=\"630\" plane=\"nearest\" depth=\"1361\"/>";
str = str + "<object tile=\"palms1\" x=\"1610\" y=\"640\" plane=\"nearest\" depth=\"1362\"/>";
str = str + "<object tile=\"palms1\" x=\"1030\" y=\"930\" plane=\"nearest\" depth=\"1363\"/>";
str = str + "<object tile=\"palms1\" x=\"770\" y=\"970\" plane=\"nearest\" depth=\"1364\"/>";
str = str + "<object tile=\"palms1\" x=\"800\" y=\"920\" plane=\"nearest\" depth=\"1365\"/>";
str = str + "<object tile=\"palms1\" x=\"800\" y=\"850\" plane=\"nearest\" depth=\"1366\"/>";
str = str + "<object tile=\"palms1\" x=\"1540\" y=\"2100\" plane=\"nearest\" depth=\"1367\"/>";
str = str + "<object tile=\"palms1\" x=\"1200\" y=\"1590\" plane=\"nearest\" depth=\"1368\"/>";
str = str + "<object tile=\"palms1\" x=\"1220\" y=\"1630\" plane=\"nearest\" depth=\"1369\"/>";
str = str + "<object tile=\"palms1\" x=\"1220\" y=\"1600\" plane=\"nearest\" depth=\"1370\"/>";
str = str + "<object tile=\"palms1\" x=\"770\" y=\"2170\" plane=\"nearest\" depth=\"1371\"/>";
str = str + "<object tile=\"palms1\" x=\"780\" y=\"2050\" plane=\"nearest\" depth=\"1372\"/>";
str = str + "<object tile=\"palms1\" x=\"960\" y=\"1860\" plane=\"nearest\" depth=\"1373\"/>";
str = str + "<object tile=\"palms5\" x=\"2140\" y=\"2030\" plane=\"nearest\" depth=\"1374\"/>";
str = str + "<object tile=\"palms4\" x=\"1670\" y=\"1850\" plane=\"nearest\" depth=\"1375\"/>";
str = str + "<object tile=\"palms3\" x=\"2370\" y=\"2060\" plane=\"nearest\" depth=\"1376\"/>";
str = str + "<object tile=\"palms1\" x=\"2350\" y=\"2110\" plane=\"nearest\" depth=\"1377\"/>";
str = str + "<object tile=\"palms1\" x=\"2520\" y=\"1860\" plane=\"nearest\" depth=\"1378\"/>";
str = str + "<object tile=\"palms1\" x=\"1760\" y=\"1790\" plane=\"nearest\" depth=\"1379\"/>";
str = str + "<object tile=\"palms1\" x=\"1860\" y=\"2100\" plane=\"nearest\" depth=\"1380\"/>";
str = str + "<object tile=\"palms1\" x=\"1920\" y=\"2030\" plane=\"nearest\" depth=\"1381\"/>";
str = str + "<object tile=\"palms1\" x=\"2170\" y=\"2110\" plane=\"nearest\" depth=\"1382\"/>";
str = str + "<object tile=\"palms1\" x=\"2310\" y=\"2110\" plane=\"nearest\" depth=\"1383\"/>";
str = str + "<object tile=\"palms1\" x=\"2040\" y=\"1540\" plane=\"nearest\" depth=\"1384\"/>";
str = str + "<object tile=\"palms5\" x=\"3690\" y=\"3360\" plane=\"nearest\" depth=\"1385\"/>";
str = str + "<object tile=\"palms5\" x=\"4050\" y=\"2860\" plane=\"nearest\" depth=\"1386\"/>";
str = str + "<object tile=\"palms4\" x=\"4230\" y=\"3400\" plane=\"nearest\" depth=\"1387\"/>";
str = str + "<object tile=\"palms4\" x=\"4170\" y=\"3030\" plane=\"nearest\" depth=\"1388\"/>";
str = str + "<object tile=\"palms3\" x=\"3740\" y=\"3260\" plane=\"nearest\" depth=\"1389\"/>";
str = str + "<object tile=\"palms3\" x=\"4210\" y=\"3000\" plane=\"nearest\" depth=\"1390\"/>";
str = str + "<object tile=\"palms1\" x=\"3790\" y=\"3190\" plane=\"nearest\" depth=\"1391\"/>";
str = str + "<object tile=\"palms1\" x=\"3710\" y=\"3470\" plane=\"nearest\" depth=\"1392\"/>";
str = str + "<object tile=\"palms1\" x=\"4290\" y=\"3320\" plane=\"nearest\" depth=\"1393\"/>";
str = str + "<object tile=\"palms1\" x=\"4300\" y=\"3390\" plane=\"nearest\" depth=\"1394\"/>";
str = str + "<object tile=\"palms1\" x=\"4340\" y=\"3360\" plane=\"nearest\" depth=\"1395\"/>";
str = str + "<object tile=\"palms1\" x=\"4390\" y=\"3290\" plane=\"nearest\" depth=\"1396\"/>";
str = str + "<object tile=\"palms1\" x=\"4330\" y=\"3230\" plane=\"nearest\" depth=\"1397\"/>";
str = str + "<object tile=\"palms1\" x=\"4320\" y=\"3130\" plane=\"nearest\" depth=\"1398\"/>";
str = str + "<object tile=\"palms1\" x=\"4350\" y=\"3490\" plane=\"nearest\" depth=\"1399\"/>";
str = str + "<object tile=\"palms1\" x=\"4410\" y=\"3480\" plane=\"nearest\" depth=\"1400\"/>";
str = str + "<object tile=\"palms1\" x=\"4340\" y=\"3430\" plane=\"nearest\" depth=\"1401\"/>";
str = str + "<object tile=\"palms1\" x=\"4020\" y=\"2820\" plane=\"nearest\" depth=\"1402\"/>";
str = str + "<object tile=\"palms5\" x=\"1730\" y=\"3390\" plane=\"nearest\" depth=\"1403\"/>";
str = str + "<object tile=\"palms5\" x=\"1690\" y=\"3260\" plane=\"nearest\" depth=\"1404\"/>";
str = str + "<object tile=\"palms5\" x=\"1340\" y=\"3250\" plane=\"nearest\" depth=\"1405\"/>";
str = str + "<object tile=\"palms5\" x=\"1050\" y=\"3310\" plane=\"nearest\" depth=\"1406\"/>";
str = str + "<object tile=\"palms5\" x=\"1230\" y=\"3760\" plane=\"nearest\" depth=\"1407\"/>";
str = str + "<object tile=\"palms5\" x=\"1060\" y=\"3730\" plane=\"nearest\" depth=\"1408\"/>";
str = str + "<object tile=\"palms5\" x=\"1680\" y=\"3770\" plane=\"nearest\" depth=\"1409\"/>";
str = str + "<object tile=\"palms5\" x=\"1420\" y=\"3770\" plane=\"nearest\" depth=\"1410\"/>";
str = str + "<object tile=\"palms4\" x=\"1530\" y=\"3420\" plane=\"nearest\" depth=\"1411\"/>";
str = str + "<object tile=\"palms4\" x=\"1160\" y=\"3430\" plane=\"nearest\" depth=\"1412\"/>";
str = str + "<object tile=\"palms4\" x=\"810\" y=\"3410\" plane=\"nearest\" depth=\"1413\"/>";
str = str + "<object tile=\"palms4\" x=\"1340\" y=\"3750\" plane=\"nearest\" depth=\"1414\"/>";
str = str + "<object tile=\"palms4\" x=\"1840\" y=\"3780\" plane=\"nearest\" depth=\"1415\"/>";
str = str + "<object tile=\"palms3\" x=\"1520\" y=\"3310\" plane=\"nearest\" depth=\"1416\"/>";
str = str + "<object tile=\"palms3\" x=\"950\" y=\"3340\" plane=\"nearest\" depth=\"1417\"/>";
str = str + "<object tile=\"palms1\" x=\"870\" y=\"3380\" plane=\"nearest\" depth=\"1418\"/>";
str = str + "<object tile=\"palms1\" x=\"1240\" y=\"3870\" plane=\"nearest\" depth=\"1419\"/>";
str = str + "<object tile=\"palms1\" x=\"1240\" y=\"3830\" plane=\"nearest\" depth=\"1420\"/>";
str = str + "<object tile=\"palms1\" x=\"1560\" y=\"3850\" plane=\"nearest\" depth=\"1421\"/>";
str = str + "<object tile=\"palms1\" x=\"1600\" y=\"3820\" plane=\"nearest\" depth=\"1422\"/>";
str = str + "<object tile=\"palms1\" x=\"1580\" y=\"3750\" plane=\"nearest\" depth=\"1423\"/>";
str = str + "<object tile=\"palms1\" x=\"1680\" y=\"3870\" plane=\"nearest\" depth=\"1424\"/>";
str = str + "<object tile=\"palms1\" x=\"1600\" y=\"3270\" plane=\"nearest\" depth=\"1425\"/>";
str = str + "<object tile=\"palms1\" x=\"1590\" y=\"3220\" plane=\"nearest\" depth=\"1426\"/>";
str = str + "<object tile=\"palms4\" x=\"1800\" y=\"3170\" plane=\"nearest\" depth=\"1427\"/>";
str = str + "<object tile=\"palms4\" x=\"1120\" y=\"3200\" plane=\"nearest\" depth=\"1428\"/>";
str = str + "<object tile=\"palms3\" x=\"980\" y=\"3230\" plane=\"nearest\" depth=\"1429\"/>";
str = str + "<object tile=\"palms3\" x=\"1890\" y=\"3230\" plane=\"nearest\" depth=\"1430\"/>";
str = str + "<object tile=\"palms1\" x=\"1990\" y=\"3310\" plane=\"nearest\" depth=\"1431\"/>";
str = str + "<object tile=\"palms1\" x=\"1280\" y=\"3230\" plane=\"nearest\" depth=\"1432\"/>";
str = str + "<object tile=\"palms1\" x=\"1340\" y=\"3190\" plane=\"nearest\" depth=\"1433\"/>";
str = str + "<object tile=\"palms1\" x=\"1240\" y=\"3190\" plane=\"nearest\" depth=\"1434\"/>";
str = str + "<object tile=\"palms1\" x=\"1230\" y=\"3340\" plane=\"nearest\" depth=\"1435\"/>";
str = str + "<object tile=\"palms1\" x=\"3700\" y=\"3290\" plane=\"nearest\" depth=\"1436\"/>";
str = str + "<object tile=\"palms1\" x=\"3590\" y=\"3460\" plane=\"nearest\" depth=\"1437\"/>";
str = str + "<object tile=\"palms1\" x=\"3630\" y=\"3430\" plane=\"nearest\" depth=\"1438\"/>";
str = str + "<object tile=\"palms1\" x=\"3630\" y=\"3470\" plane=\"nearest\" depth=\"1439\"/>";
str = str + "<object tile=\"palms1\" x=\"3850\" y=\"2850\" plane=\"nearest\" depth=\"1440\"/>";
str = str + "<object tile=\"palms1\" x=\"3870\" y=\"2820\" plane=\"nearest\" depth=\"1441\"/>";
str = str + "<object tile=\"palms1\" x=\"3760\" y=\"2770\" plane=\"nearest\" depth=\"1442\"/>";
str = str + "<object tile=\"palms5\" x=\"2060\" y=\"2420\" plane=\"nearest\" depth=\"1443\"/>";
str = str + "<object tile=\"palms4\" x=\"2010\" y=\"2510\" plane=\"nearest\" depth=\"1444\"/>";
str = str + "<object tile=\"palms4\" x=\"2100\" y=\"2190\" plane=\"nearest\" depth=\"1445\"/>";
str = str + "<object tile=\"palms3\" x=\"2100\" y=\"2320\" plane=\"nearest\" depth=\"1446\"/>";
str = str + "<object tile=\"palms3\" x=\"2050\" y=\"2780\" plane=\"nearest\" depth=\"1447\"/>";
str = str + "<object tile=\"palms5\" x=\"2110\" y=\"2970\" plane=\"nearest\" depth=\"1448\"/>";
str = str + "<object tile=\"palms1\" x=\"2160\" y=\"2940\" plane=\"nearest\" depth=\"1449\"/>";
str = str + "<object tile=\"palms1\" x=\"2150\" y=\"2830\" plane=\"nearest\" depth=\"1450\"/>";
str = str + "<object tile=\"palms1\" x=\"2110\" y=\"2930\" plane=\"nearest\" depth=\"1451\"/>";
str = str + "<object tile=\"palms1\" x=\"2070\" y=\"3090\" plane=\"nearest\" depth=\"1452\"/>";
str = str + "<object tile=\"palms1\" x=\"2100\" y=\"3100\" plane=\"nearest\" depth=\"1453\"/>";
str = str + "<object tile=\"palms1\" x=\"2040\" y=\"3180\" plane=\"nearest\" depth=\"1454\"/>";
str = str + "<object tile=\"palms1\" x=\"2040\" y=\"3220\" plane=\"nearest\" depth=\"1455\"/>";
str = str + "<object tile=\"palms5\" x=\"3000\" y=\"2740\" plane=\"nearest\" depth=\"1456\"/>";
str = str + "<object tile=\"palms5\" x=\"3240\" y=\"2500\" plane=\"nearest\" depth=\"1457\"/>";
str = str + "<object tile=\"palms4\" x=\"3170\" y=\"2510\" plane=\"nearest\" depth=\"1458\"/>";
str = str + "<object tile=\"palms5\" x=\"3300\" y=\"3290\" plane=\"nearest\" depth=\"1459\"/>";
str = str + "<object tile=\"palms3\" x=\"3350\" y=\"2480\" plane=\"nearest\" depth=\"1460\"/>";
str = str + "<object tile=\"palms1\" x=\"3440\" y=\"2480\" plane=\"nearest\" depth=\"1461\"/>";
str = str + "<object tile=\"palms1\" x=\"3480\" y=\"2470\" plane=\"nearest\" depth=\"1462\"/>";
str = str + "<object tile=\"palms1\" x=\"3450\" y=\"2630\" plane=\"nearest\" depth=\"1463\"/>";
str = str + "<object tile=\"palms1\" x=\"3070\" y=\"2880\" plane=\"nearest\" depth=\"1464\"/>";
str = str + "<object tile=\"palms1\" x=\"3100\" y=\"2890\" plane=\"nearest\" depth=\"1465\"/>";
str = str + "<object tile=\"palms1\" x=\"3120\" y=\"3040\" plane=\"nearest\" depth=\"1466\"/>";
str = str + "<object tile=\"palms1\" x=\"2890\" y=\"2890\" plane=\"nearest\" depth=\"1467\"/>";
str = str + "<object tile=\"palms1\" x=\"2940\" y=\"2850\" plane=\"nearest\" depth=\"1468\"/>";
str = str + "<object tile=\"palms1\" x=\"2940\" y=\"2920\" plane=\"nearest\" depth=\"1469\"/>";
str = str + "<object tile=\"palms1\" x=\"2910\" y=\"2890\" plane=\"nearest\" depth=\"1470\"/>";
str = str + "<object tile=\"palms1\" x=\"2930\" y=\"2890\" plane=\"nearest\" depth=\"1471\"/>";
str = str + "<object tile=\"palms5\" x=\"2220\" y=\"2480\" plane=\"nearest\" depth=\"1472\"/>";
str = str + "<object tile=\"palms4\" x=\"2700\" y=\"2200\" plane=\"nearest\" depth=\"1473\"/>";
str = str + "<object tile=\"palms3\" x=\"2670\" y=\"2290\" plane=\"nearest\" depth=\"1474\"/>";
str = str + "<object tile=\"palms1\" x=\"2250\" y=\"2440\" plane=\"nearest\" depth=\"1475\"/>";
str = str + "<object tile=\"palms1\" x=\"2300\" y=\"2600\" plane=\"nearest\" depth=\"1476\"/>";
str = str + "<object tile=\"palms1\" x=\"2530\" y=\"2350\" plane=\"nearest\" depth=\"1477\"/>";
str = str + "<object tile=\"palms1\" x=\"2430\" y=\"2340\" plane=\"nearest\" depth=\"1478\"/>";
str = str + "<object tile=\"palms1\" x=\"2440\" y=\"2370\" plane=\"nearest\" depth=\"1479\"/>";
str = str + "<object tile=\"palms1\" x=\"2410\" y=\"2390\" plane=\"nearest\" depth=\"1480\"/>";
str = str + "<object tile=\"null_tile\" x=\"3940\" y=\"920\" plane=\"nearest1\" depth=\"1481\"/>";
str = str + "<object tile=\"null_tile\" x=\"3940\" y=\"520\" plane=\"nearest1\" depth=\"1482\"/>";
str = str + "<object tile=\"null_tile\" x=\"3600\" y=\"120\" plane=\"nearest1\" depth=\"1483\"/>";
str = str + "<object tile=\"null_tile\" x=\"850\" y=\"120\" plane=\"nearest1\" depth=\"1484\"/>";
str = str + "<object tile=\"null_tile\" x=\"300\" y=\"120\" plane=\"nearest1\" depth=\"1485\"/>";
str = str + "<object tile=\"null_tile\" x=\"90\" y=\"520\" plane=\"nearest1\" depth=\"1486\"/>";
str = str + "<object tile=\"null_tile\" x=\"90\" y=\"1720\" plane=\"nearest1\" depth=\"1487\"/>";
str = str + "<object tile=\"null_tile\" x=\"90\" y=\"2120\" plane=\"nearest1\" depth=\"1488\"/>";
str = str + "<object tile=\"null_tile\" x=\"90\" y=\"2520\" plane=\"nearest1\" depth=\"1489\"/>";
str = str + "<object tile=\"null_tile\" x=\"90\" y=\"2920\" plane=\"nearest1\" depth=\"1490\"/>";
str = str + "<object tile=\"null_tile\" x=\"90\" y=\"3320\" plane=\"nearest1\" depth=\"1491\"/>";
str = str + "<object tile=\"null_tile\" x=\"90\" y=\"4120\" plane=\"nearest1\" depth=\"1492\"/>";
str = str + "<object tile=\"null_tile\" x=\"640\" y=\"4120\" plane=\"nearest1\" depth=\"1493\"/>";
str = str + "<object tile=\"null_tile\" x=\"90\" y=\"920\" plane=\"nearest1\" depth=\"1494\"/>";
str = str + "<object tile=\"null_tile\" x=\"90\" y=\"1320\" plane=\"nearest1\" depth=\"1495\"/>";
str = str + "<object tile=\"null_tile\" x=\"1950\" y=\"120\" plane=\"nearest1\" depth=\"1496\"/>";
str = str + "<object tile=\"null_tile\" x=\"1400\" y=\"120\" plane=\"nearest1\" depth=\"1497\"/>";
str = str + "<object tile=\"null_tile\" x=\"3050\" y=\"120\" plane=\"nearest1\" depth=\"1498\"/>";
str = str + "<object tile=\"null_tile\" x=\"2500\" y=\"120\" plane=\"nearest1\" depth=\"1499\"/>";
str = str + "<object tile=\"null_tile\" x=\"3940\" y=\"2920\" plane=\"nearest1\" depth=\"1500\"/>";
str = str + "<object tile=\"null_tile\" x=\"3940\" y=\"2520\" plane=\"nearest1\" depth=\"1501\"/>";
str = str + "<object tile=\"null_tile\" x=\"3940\" y=\"2120\" plane=\"nearest1\" depth=\"1502\"/>";
str = str + "<object tile=\"null_tile\" x=\"3940\" y=\"1320\" plane=\"nearest1\" depth=\"1503\"/>";
str = str + "<object tile=\"null_tile\" x=\"3940\" y=\"1720\" plane=\"nearest1\" depth=\"1504\"/>";
str = str + "<object tile=\"null_tile\" x=\"3940\" y=\"3320\" plane=\"nearest1\" depth=\"1505\"/>";
str = str + "<object tile=\"null_tile\" x=\"3940\" y=\"4120\" plane=\"nearest1\" depth=\"1506\"/>";
str = str + "<object tile=\"null_tile\" x=\"2840\" y=\"4120\" plane=\"nearest1\" depth=\"1507\"/>";
str = str + "<object tile=\"null_tile\" x=\"1190\" y=\"4120\" plane=\"nearest1\" depth=\"1508\"/>";
str = str + "<object tile=\"null_tile\" x=\"1740\" y=\"4120\" plane=\"nearest1\" depth=\"1509\"/>";
str = str + "<object tile=\"null_tile\" x=\"2290\" y=\"4120\" plane=\"nearest1\" depth=\"1510\"/>";
str = str + "<object tile=\"null_tile\" x=\"3390\" y=\"4120\" plane=\"nearest1\" depth=\"1511\"/>";
str = str + "<object tile=\"null_tile\" x=\"90\" y=\"3720\" plane=\"nearest1\" depth=\"1512\"/>";
str = str + "<object tile=\"null_tile\" x=\"3940\" y=\"3720\" plane=\"nearest1\" depth=\"1513\"/>";
str = str + "</array>";
str = str + "</object>";
str = str + "</object>";
str = str + "</settings>";
debug("Loading main settings XML file...");
createXML();
Frame 7
stop();
_global.levelNum = 0;
Instance of Symbol 936 MovieClip "btn_sound" in Frame 7
onClipEvent (load) {
if (!sound.enable) {
gotoAndStop (2);
}
}
Instance of Symbol 961 MovieClip in Frame 7
onClipEvent (load) {
var saved = SharedObject.getLocal(gameName, "/");
if (saved.data.levelDone > 0) {
startLevel = saved.data.levelDone;
gotoAndPlay (2);
}
}
Frame 8
stop();
intro_text.htmlText = _global.envS.textZ.intro;
Frame 9
stop();
_global.diffLevel = 2;
Frame 10
prebreefFunc();
Frame 11
stop();
if (_global.levelsSet["level_" + levelNum] != undefined) {
_global.allowToStart = true;
globalStart();
}
Symbol 3 Button
on (press) {
openSite();
}
Symbol 15 MovieClip Frame 1
_visible = false;
Symbol 17 MovieClip [bulletMC] Frame 1
#initclip 22
Object.registerClass("bulletMC", bullet);
#endinitclip
Symbol 18 MovieClip [queue] Frame 1
#initclip 13
Object.registerClass("queue", queue);
#endinitclip
Symbol 40 MovieClip [explode3] Frame 10
stop();
this.removeMovieClip();
Symbol 49 MovieClip [explode1] Frame 15
stop();
this.removeMovieClip();
Symbol 60 MovieClip [explode2] Frame 7
_global.sound.play("eexplode", sx);
Symbol 60 MovieClip [explode2] Frame 22
stop();
this.removeMovieClip();
Symbol 66 MovieClip [bonus_anim_fullHealth] Frame 36
this.removeMovieClip();
Symbol 69 MovieClip [bonus_anim_miniHealth] Frame 36
this.removeMovieClip();
Symbol 72 MovieClip [score_ind] Frame 36
this.removeMovieClip();
Symbol 73 MovieClip [freeMovingTileMC] Frame 1
#initclip 14
Object.registerClass("freeMovingTileMC", freeMovingTile);
#endinitclip
Symbol 74 MovieClip [playerMC] Frame 1
#initclip 15
Object.registerClass("playerMC", player);
#endinitclip
Symbol 75 MovieClip [tileMC] Frame 1
#initclip 16
Object.registerClass("tileMC", tile);
#endinitclip
Symbol 91 MovieClip [standingTileMC] Frame 1
#initclip 17
Object.registerClass("standingTileMC", standingTile);
#endinitclip
Symbol 93 MovieClip [long_plane] Frame 1
n = "long_plane";
Symbol 95 MovieClip [long_triang] Frame 1
n = "long_triang";
Symbol 98 MovieClip [pathMovingTileMC] Frame 1
#initclip 18
Object.registerClass("pathMovingTileMC", pathMovingTile);
#endinitclip
Symbol 100 MovieClip [moving_plane] Frame 1
n = "moving_plane";
Symbol 102 MovieClip [moving_plane2] Frame 1
n = "moving_plane";
Symbol 104 MovieClip [enemy1] Frame 1
n = "moving_plane";
Symbol 107 MovieClip [block1] Frame 1
n = "block1";
Symbol 110 MovieClip [block2] Frame 1
n = "block2";
Symbol 113 MovieClip [block3] Frame 1
n = "block3";
Symbol 116 MovieClip [block4] Frame 1
n = "block4";
Symbol 119 MovieClip [block5] Frame 1
n = "block5";
Symbol 122 MovieClip [block6] Frame 1
n = "block6";
Symbol 125 MovieClip [block7] Frame 1
n = "block7";
Symbol 128 MovieClip [block8] Frame 1
n = "block8";
Symbol 137 MovieClip [bonus_ring] Frame 1
n = "bonus_ring";
stop();
Symbol 140 MovieClip [brick1] Frame 1
n = "brick1";
Symbol 143 MovieClip [brick2] Frame 1
n = "brick2";
Symbol 146 MovieClip [brick3] Frame 1
n = "brick3";
Symbol 149 MovieClip [brickGround1] Frame 1
n = "brickGround1";
Symbol 152 MovieClip [brickGround2] Frame 1
n = "brickGround2";
Symbol 155 MovieClip [corner1] Frame 1
n = "corner1";
Symbol 158 MovieClip [elevator1] Frame 1
n = "elevator1";
Symbol 161 MovieClip [elevator2] Frame 1
n = "elevator2";
Symbol 164 MovieClip [futur1] Frame 1
n = "futur1";
Symbol 167 MovieClip [futur2] Frame 1
n = "futur2";
Symbol 170 MovieClip [futur3] Frame 1
n = "futur3";
Symbol 173 MovieClip [futur4] Frame 1
n = "futur4";
Symbol 176 MovieClip [futur5] Frame 1
n = "futur5";
Symbol 179 MovieClip [futur6] Frame 1
n = "futur6";
Symbol 182 MovieClip [futur7] Frame 1
n = "futur7";
Symbol 185 MovieClip [futur8] Frame 1
n = "futur8";
Symbol 188 MovieClip [futur9] Frame 1
n = "futur9";
Symbol 193 MovieClip [jumper1] Frame 1
n = "jumper1";
stop();
Symbol 196 MovieClip [needle1] Frame 1
n = "needle1";
Symbol 199 MovieClip [ring1] Frame 1
n = "ring1";
Symbol 202 MovieClip [rock1] Frame 1
n = "rock1";
Symbol 205 MovieClip [truss1] Frame 1
n = "truss1";
Symbol 208 MovieClip [truss2] Frame 1
n = "truss2";
Symbol 211 MovieClip [tube1] Frame 1
n = "tube1";
Symbol 214 MovieClip [tube2] Frame 1
n = "tube2";
Symbol 217 MovieClip [tube3] Frame 1
n = "tube3";
Symbol 220 MovieClip [twinTube1] Frame 1
n = "twinTube1";
Symbol 223 MovieClip [twinTube2] Frame 1
n = "twinTube2";
Symbol 226 MovieClip [twinTube3] Frame 1
n = "twinTube3";
Symbol 231 MovieClip [doorRed] Frame 1
n = "doorRed";
Symbol 231 MovieClip [doorRed] Frame 15
stop();
Symbol 236 MovieClip [weapon_2] Frame 1
#initclip 19
Object.registerClass("weapon_2", bullet);
#endinitclip
Symbol 238 MovieClip [weapon_1] Frame 1
#initclip 20
Object.registerClass("weapon_1", bullet);
#endinitclip
Symbol 271 MovieClip [transporter1] Frame 1
n = "transporter1";
stop();
Symbol 274 MovieClip [stairs] Frame 1
n = "stairs";
Symbol 277 MovieClip [endoflevel] Frame 1
n = "endoflevel";
Symbol 278 MovieClip [doorGreen] Frame 1
n = "doorGreen";
Symbol 278 MovieClip [doorGreen] Frame 15
stop();
Symbol 279 MovieClip [doorBlue] Frame 1
n = "doorBlue";
Symbol 279 MovieClip [doorBlue] Frame 15
stop();
Symbol 280 MovieClip [doorYellow] Frame 1
n = "doorYellow";
Symbol 280 MovieClip [doorYellow] Frame 15
stop();
Symbol 283 MovieClip [keyRed] Frame 1
n = "keyRed";
Symbol 284 MovieClip [keyGreen] Frame 1
n = "keyGreen";
Symbol 285 MovieClip [keyBlue] Frame 1
n = "keyBlue";
Symbol 286 MovieClip [keyYellow] Frame 1
n = "keyYellow";
Symbol 287 MovieClip [twinTube4] Frame 1
n = "twinTube4";
Symbol 290 MovieClip [megatank] Frame 1
n = "futur6";
Symbol 295 MovieClip Frame 1
stop();
Symbol 300 MovieClip Frame 1
stop();
Symbol 310 MovieClip Frame 1
stop();
Symbol 313 MovieClip [explode_c] Frame 22
stop();
this.removeMovieClip();
Symbol 318 MovieClip [barrel] Frame 1
n = "barrel";
Symbol 321 MovieClip [truck] Frame 1
n = "truck";
Symbol 323 MovieClip Frame 1
if (!((_global.envS.debug == 1) && (_global.envS.markerDebug == 1))) {
_visible = false;
}
Instance of Symbol 324 MovieClip in Symbol 325 MovieClip Frame 1
onClipEvent (load) {
_parent._parent.stop();
pp = (Math.random() * 50) + 50;
step = 0;
}
onClipEvent (enterFrame) {
step++;
if (step >= pp) {
_parent._parent.play();
}
}
Symbol 332 MovieClip [rockets] Frame 1
n = "rockets";
stop();
Symbol 339 MovieClip [score] Frame 1
n = "score";
Symbol 346 MovieClip [health] Frame 1
n = "health";
Symbol 353 MovieClip [speed] Frame 1
n = "speed";
Symbol 360 MovieClip [tools] Frame 1
n = "tools";
Symbol 364 MovieClip Frame 1
_visible = false;
Symbol 365 MovieClip [heliPad] Frame 1
n = "heliPad";
Symbol 377 MovieClip [house_big1] Frame 1
n = "house_big1";
Symbol 715 MovieClip [weapon_3] Frame 1
#initclip 21
Object.registerClass("weapon_3", bullet);
#endinitclip
Symbol 785 MovieClip Frame 18
gotoAndPlay (1);
Symbol 785 MovieClip Frame 51
stop();
Symbol 820 MovieClip Frame 17
gotoAndPlay (1);
Symbol 820 MovieClip Frame 50
stop();
Symbol 868 MovieClip [mTargets] Frame 1
stop();
Symbol 868 MovieClip [mTargets] Frame 2
stop();
Symbol 868 MovieClip [mTargets] Frame 3
stop();
Symbol 868 MovieClip [mTargets] Frame 4
stop();
Symbol 919 MovieClip [explode0] Frame 2
_global.sound.play("eexplode", sx);
Symbol 919 MovieClip [explode0] Frame 25
stop();
this.removeMovieClip();
Symbol 1042 MovieClip [__Packages.queue] Frame 0
class queue extends MovieClip
{
function queue () {
super();
actions = new Array();
newActions = new Array();
_global.queue = this;
}
function addFunc(func, obj, priority) {
ticket++;
if (_global.noSet(priority)) {
priority = 50;
}
newActions.push({func:func, obj:obj, pr:priority, ticket:ticket});
sync = false;
return(ticket);
}
function remove(t) {
var _local2 = 0;
while (_local2 < actions.length) {
if (actions[_local2].ticket == t) {
actions.splice(_local2, 1);
return(true);
}
_local2++;
}
_local2 = 0;
while (_local2 < newActions.length) {
if (newActions[_local2].ticket == t) {
newActions.splice(_local2, 1);
return(true);
}
_local2++;
}
trace((("*****************NOT removed\t" + t) + "\t") + actions.length);
return(false);
}
function clear() {
delete actions;
delete newActions;
actions = new Array();
newActions = new Array();
ticket = 0;
sync = true;
}
function onEnterFrame() {
if (_global.gameInProcess) {
if (_global.collisionPause != 0) {
if (_global.collisionPause >= _global.envS.collisionMaxPause) {
_global.collisionPause = 0;
} else {
_global.collisionPause++;
}
}
if (_global.collisionPause == 0) {
if (!sync) {
while (newActions.length > 0) {
actions.push(newActions.pop());
}
actions.sortOn("pr", Array.NUMERIC);
sync = true;
}
var _local3 = 0;
while (_local3 < actions.length) {
var _local4 = actions.length;
actions[_local3].func.call(actions[_local3].obj);
if (actions.length != _local4) {
_local3--;
}
_local3++;
}
}
}
}
var actions = new Array();
var newActions = new Array();
var ticket = 0;
var sync = true;
}
Symbol 1043 MovieClip [__Packages.queuedObject] Frame 0
class queuedObject extends MovieClip
{
var debug, gl, PI2, ticket;
function queuedObject () {
super();
debug = _global.debug;
gl = _global;
PI2 = gl.PI2;
}
function inQueue(a) {
if (!init) {
if (_global.noSet(a)) {
a = 50;
}
ticket = _global.queue.addFunc(oEF, this, a);
init = true;
}
}
function outQueue() {
if (init) {
_global.queue.remove(ticket);
init = false;
}
}
function oEF() {
}
var init = false;
}
Symbol 1044 MovieClip [__Packages.tile] Frame 0
class tile extends queuedObject
{
var moving, immortal, isHitable, evil, transparent, fullTransparent, weaponTransparent, splashTransparent, isPlayer, blinkObject, immortalHit, immortalHitFullTime, gl, hitDamage, bonus, isBullet, zoned, solid, guns, splashDamage, splashRadius, splashDelay, dieSound, dieMovie, dieMoviePlane, autoDestroy, groups, sirviveIn, score, dontCollideWhileMoving, image, body, bb_loc_arr, type, myTile, attachMovie, getNextHighestDepth, hitPoints, zoneType, zone_loc_arr, viewer, createEmptyMovieClip, splashPoint, debug, inQueue, bar, haveBar, stand_tf, weaponed, globalToLocal, health, initHealth, x, _rotation, PI2, _x, y, _y, bb_arr, zone_arr, immortalHitTime, outQueue, removeMovieClip, onEnterFrame, groupTarget;
function tile () {
super();
moving = false;
immortal = false;
isHitable = false;
evil = false;
transparent = false;
fullTransparent = false;
weaponTransparent = false;
splashTransparent = false;
isPlayer = false;
blinkObject = this;
immortalHit = false;
immortalHitFullTime = gl.envS.defaultImmortalHit;
hitDamage = gl.envS.defaultHitDamage;
bonus = false;
isBullet = false;
zoned = false;
solid = 1;
guns = new Array();
splashDamage = 0;
splashRadius = 100;
splashDelay = 10;
dieSound = [gl.envS.defaultDieSound];
dieMovie = gl.envS.defaultDieMovie;
dieMoviePlane = gl.envS.fxPlane;
autoDestroy = -100;
groups = new Array();
sirviveIn = -100;
score = gl.envS.defaultScore;
dontCollideWhileMoving = false;
}
function makeBody() {
if (gl.noSet(image.body)) {
body = image.createEmptyMovieClip("body", image.getNextHighestDepth());
body.beginFill(16711680);
body.drawRect(bb_loc_arr.min.x, bb_loc_arr.min.y, bb_loc_arr.max.x, bb_loc_arr.max.y);
body.endFill();
if (gl.envS.debugBody == 0) {
body._visible = false;
} else {
body._alpha = 50;
}
} else {
body = image.body;
}
}
function makeTile(li, descr) {
if (gl.noSet(li)) {
}
type = li;
myTile = descr;
myTile.mcReference = this;
var _local10 = descr.tile;
if (!gl.noSet(descr.image)) {
_local10 = descr.image;
}
image = attachMovie(_local10, "image", getNextHighestDepth());
image.stop();
if (!gl.noSet(myTile.tint)) {
var _local6 = {ra:100, ga:100, ba:100, aa:100, rb:0, gb:0, bb:0, ab:0};
var _local5 = gl.prepareArrayNum(myTile.tint);
_local6.ra = (_local6.ga = (_local6.ba = 100 - _local5[3]));
_local6.rb = Math.round((_local5[0] * _local5[3]) / 100);
_local6.gb = Math.round((_local5[1] * _local5[3]) / 100);
_local6.bb = Math.round((_local5[2] * _local5[3]) / 100);
new Color(image).setTransform(_local6);
}
if (myTile.needSync == 1) {
image.gotoAndPlay(1 + (gl.levelTimeF % image._totalframes));
}
if (gl.noSet(myTile)) {
gl.debug(("Init faile: cannot find tile declaration '" + type) + "'");
}
var _local8 = myTile.bb.split(",");
bb_loc_arr = new Object();
bb_loc_arr.min = new Object();
bb_loc_arr.max = new Object();
bb_loc_arr.min.x = parseInt(_local8[0]);
bb_loc_arr.min.y = parseInt(_local8[1]);
bb_loc_arr.max.x = parseInt(_local8[2]);
bb_loc_arr.max.y = parseInt(_local8[3]);
const_width = (bb_loc_arr.width = bb_loc_arr.max.x - bb_loc_arr.min.x);
const_height = (bb_loc_arr.height = bb_loc_arr.max.y - bb_loc_arr.min.y);
makeBody();
if (!gl.noSet(myTile.group)) {
groups = gl.prepareArrayString(myTile.group);
}
hitPoints = new Array();
var _local2 = 1;
while (!gl.noSet(image["bb" + _local2])) {
hitPoints.push(image["bb" + _local2]);
_local2++;
}
if (hitPoints.length == 0) {
hitPoints.push(image.cMC("p1", image.getNextHighestDepth(), {_x:bb_loc_arr.min.x, _y:bb_loc_arr.min.y}));
hitPoints.push(image.cMC("p2", image.getNextHighestDepth(), {_x:bb_loc_arr.max.x, _y:bb_loc_arr.min.y}));
hitPoints.push(image.cMC("p3", image.getNextHighestDepth(), {_x:bb_loc_arr.max.x, _y:bb_loc_arr.max.y}));
hitPoints.push(image.cMC("p4", image.getNextHighestDepth(), {_x:bb_loc_arr.min.x, _y:bb_loc_arr.max.y}));
}
if (gl.envS.debugHits == 1) {
_local2 = 0;
while (_local2 < hitPoints.length) {
var _local3 = hitPoints[_local2];
_local3.lineStyle(0, 16711680);
_local3.drawLine(0, -3, 0, 3);
_local3.drawLine(-3, 0, 3, 0);
_local2++;
}
}
if (!gl.noSet(myTile.zone)) {
zoned = true;
zoneType = myTile.zoneType;
_local8 = myTile.zone.split(",");
zone_loc_arr = new Object();
zone_loc_arr.min = new Object();
zone_loc_arr.max = new Object();
zone_loc_arr.min.x = parseInt(_local8[0]);
zone_loc_arr.min.y = parseInt(_local8[1]);
zone_loc_arr.max.x = parseInt(_local8[2]);
zone_loc_arr.max.y = parseInt(_local8[3]);
}
viewer = createEmptyMovieClip("viewer", getNextHighestDepth());
if (!gl.noSet(myTile.health)) {
isHitable = true;
}
if (!gl.noSet(myTile.evil)) {
evil = Boolean(myTile.evil);
}
if (!gl.noSet(myTile.trans)) {
transparent = Boolean(myTile.trans);
}
if (!gl.noSet(myTile.fullTrans)) {
fullTransparent = Boolean(myTile.fullTrans);
}
if (!gl.noSet(myTile.weaponTrans)) {
weaponTransparent = Boolean(myTile.weaponTrans);
}
if (!gl.noSet(myTile.splashTrans)) {
splashTransparent = Boolean(myTile.splashTrans);
}
if (!gl.noSet(myTile.immortalHit)) {
immortalHitFullTime = myTile.immortalHit;
}
if (!gl.noSet(myTile.hitDamage)) {
hitDamage = myTile.hitDamage;
}
if (!gl.noSet(myTile.bonus)) {
bonus = Boolean(myTile.bonus);
}
if (!gl.noSet(myTile.dieSound)) {
dieSound = gl.prepareArrayString(myTile.dieSound);
}
if (!gl.noSet(myTile.dieMovie)) {
dieMovie = myTile.dieMovie;
}
if (!gl.noSet(myTile.dieMoviePlane)) {
dieMoviePlane = myTile.dieMoviePlane;
}
if (!gl.noSet(myTile.splashDamage)) {
splashDamage = myTile.splashDamage;
}
if (!gl.noSet(myTile.splashRadius)) {
splashRadius = myTile.splashRadius;
}
if (!gl.noSet(myTile.splashDelay)) {
splashDelay = myTile.splashDelay;
}
if (!gl.noSet(myTile.splashPoint)) {
splashPoint = image[myTile.splashPoint];
}
if (gl.noSet(splashPoint) && (!gl.noSet(myTile.splashPoint))) {
trace(((("Cannot find splash mount point (" + myTile.type) + ") named '") + myTile.splashPoint) + "'");
}
if (!gl.noSet(splashPoint)) {
if (gl.envS.splashDebug == 1) {
splashPoint._xscale = (splashPoint._yscale = splashRadius * 2);
} else {
splashPoint._visible = false;
}
} else {
splashPoint = image;
}
if (!gl.noSet(myTile.dontCollideWhileMoving)) {
dontCollideWhileMoving = Boolean(myTile.dontCollideWhileMoving);
}
if (!gl.noSet(myTile.autoDestroy)) {
autoDestroy = myTile.autoDestroy;
}
if (autoDestroy > 0) {
debug(this + " COME IN QUEUE with AUTODESTROY");
inQueue();
}
if (!gl.noSet(myTile.sirviveIn)) {
sirviveIn = myTile.sirviveIn;
}
if (sirviveIn > 0) {
debug(this + " COME IN QUEUE with AUTOSURVIVE");
inQueue();
}
if (!gl.noSet(myTile.score)) {
score = myTile.score;
}
setHealth(myTile.health);
if (isHitable) {
debug(this + " COME IN QUEUE with HEALTH");
inQueue();
}
if ((gl.envS.healthDebug == 1) && (isHitable)) {
bar = createEmptyMovieClip("bar", getNextHighestDepth());
bar.beginFill(16711680);
bar.drawRect((-gl.envS.healthBarWidth) / 2, -2, gl.envS.healthBarWidth / 2, 2);
bar.endFill();
bar.createEmptyMovieClip("bar", bar.getNextHighestDepth());
bar.bar.beginFill(65280);
bar.bar.drawRect(0, -2, gl.envS.healthBarWidth, 2);
bar.bar.endFill();
bar.bar._x = (-gl.envS.healthBarWidth) / 2;
bar.createEmptyMovieClip("bar2", bar.getNextHighestDepth());
bar.bar2.lineStyle(1, 0);
bar.bar2.drawRect((-gl.envS.healthBarWidth) / 2, -2, gl.envS.healthBarWidth / 2, 2);
bar._x = (bb_loc_arr.max.x + bb_loc_arr.min.x) / 2;
bar._y = bb_loc_arr.min.y - 5;
haveBar = true;
}
if (gl.envS.standOnDebug == 1) {
stand_tf = createEmptyMovieClip("stand_tf", getNextHighestDepth());
stand_tf.createTextField("tf1", 1, 0, 0, 100, 120);
stand_tf.createTextField("tf2", 2, 0, 0, 100, 120);
stand_tf.tf1.selectable = (stand_tf.tf2.selectable = false);
var _local7 = new TextFormat();
_local7.font = "Arial";
_local7.size = 14;
_local7.align = "center";
_local7.bold = true;
_local7.color = 10027008 /* 0x990000 */;
stand_tf.tf1.setNewTextFormat(_local7);
stand_tf.tf2.setNewTextFormat(_local7);
stand_tf.tf1.wordWrap = (stand_tf.tf2.wordWrap = false);
stand_tf.tf1.multiline = (stand_tf.tf2.multiline = false);
stand_tf.tf1.autoSize = (stand_tf.tf2.autoSize = true);
stand_tf.tf1.text = (stand_tf.tf2.text = "TESTstring");
stand_tf.tf1._y = bb_loc_arr.min.y - 3;
stand_tf.tf2._y = (bb_loc_arr.max.y - stand_tf.tf2._height) + 3;
stand_tf.tf1.text = (stand_tf.tf2.text = "");
updateTextPosition();
}
if (!gl.noSet(myTile.solid)) {
solid = parseInt(myTile.solid);
}
if (!gl.noSet(myTile.weapon)) {
_local2 = 0;
while (_local2 < myTile.weapon.length) {
var _local4 = new cannon();
if (_local4.init(myTile.weapon[_local2], this, guns.length)) {
guns.push(_local4);
} else {
trace(((("Cannot init gun N " + _local2) + ", ignoring... (") + myTile.type) + ")");
}
_local2++;
}
if (guns.length > 0) {
debug(this + " COME IN QUEUE with WEAPON");
inQueue();
weaponed = true;
} else {
trace(("WEAPON ABILITY NOT AVAILABLE (" + myTile.type) + ")");
}
}
if ((((type == "doorGreen") || (type == "doorRed")) || (type == "doorBlue")) || (type == "doorYellow")) {
if (gl.mto[type].gameState == 1) {
transparent = (fullTransparent = (weaponTransparent = (splashTransparent = true)));
image.gotoAndStop("enimEnd");
}
}
}
function hitMyBody(x, y) {
var _local2 = new Object();
_local2.x = x;
_local2.y = y;
globalToLocal(_local2);
if ((_local2.x >= bb_loc_arr.min.x) && (_local2.x <= bb_loc_arr.max.x)) {
if ((_local2.y >= bb_loc_arr.min.y) && (_local2.y <= bb_loc_arr.max.y)) {
return(true);
}
}
return(false);
}
function setHealth(n) {
if (!gl.noSet(n)) {
if (gl.noSet(health)) {
initHealth = parseFloat(n);
}
health = parseFloat(n);
}
if (gl.noSet(health)) {
health = 10;
}
viewHealth();
}
function viewHealth() {
if (!haveBar) {
return(undefined);
}
if (health >= 0) {
bar.bar._xscale = (100 * health) / initHealth;
}
}
function changeHealth(d) {
if (health == 0) {
return(undefined);
}
health = health + d;
if (health < 0) {
health = 0;
}
if (health > initHealth) {
health = initHealth;
}
viewHealth();
if (health <= 0) {
var _local2 = {x:splashPoint._x, y:splashPoint._y};
splashPoint._parent.localToGlobal(_local2);
if (splashDamage > 0) {
gl.checkSplashAll(this, _local2.x, _local2.y);
}
if (!isPlayer) {
gl.mt[gl.envS.playerName].kills++;
}
gl.sound.play(dieSound[Math.floor(Math.random() * dieSound.length)], _local2.x);
if (!isPlayer) {
gl.changeScore(score);
}
checkMyGroups();
outOfGame();
die();
} else if (isPlayer) {
if (d < 0) {
gl.sound.play("pain", x + gl.frameX);
}
if (d > 0) {
gl.sound.play("snd_health", x + gl.frameX);
}
}
}
function setHitable(n) {
isHitable = Boolean(n);
}
function getBB(x, y, al) {
var _local2 = new Object();
_local2.min = new Object();
_local2.max = new Object();
if (((!isPlayer) && (gl.envS.rotateTilesBody == 0)) || (isPlayer && (gl.envS.rotatePlayerBody == 0))) {
body._rotation = -_rotation;
al = 0;
}
if (al != 0) {
var _local7 = bb_loc_arr.min.x;
var _local6 = bb_loc_arr.min.y;
var _local27 = bb_loc_arr.max.x;
var _local26 = bb_loc_arr.max.y;
var _local23 = bb_loc_arr.min.x;
var _local25 = bb_loc_arr.max.y;
var _local29 = bb_loc_arr.max.x;
var _local28 = bb_loc_arr.min.y;
var _local9 = Math.atan2(_local6, _local7);
var _local3 = Math.sqrt((_local7 * _local7) + (_local6 * _local6));
var _local8 = Math.atan2(_local25, _local23);
var _local18 = al / PI2;
_local9 = _local9 + _local18;
_local8 = _local8 + _local18;
var _local17 = Math.cos(_local9);
var _local15 = Math.cos(_local8);
var _local16 = Math.sin(_local9);
var _local14 = Math.sin(_local8);
var _local12 = (_local3 * _local17) + x;
var _local13 = (_local3 * _local16) + y;
var _local10 = ((-_local3) * _local17) + x;
var _local11 = ((-_local3) * _local16) + y;
var _local21 = (_local3 * _local15) + x;
var _local22 = (_local3 * _local14) + y;
var _local19 = ((-_local3) * _local15) + x;
var _local20 = ((-_local3) * _local14) + y;
_local2.min.x = Math.min(_local12, Math.min(_local10, Math.min(_local21, _local19)));
_local2.min.y = Math.min(_local13, Math.min(_local11, Math.min(_local22, _local20)));
_local2.max.x = Math.max(_local12, Math.max(_local10, Math.max(_local21, _local19)));
_local2.max.y = Math.max(_local13, Math.max(_local11, Math.max(_local22, _local20)));
} else {
_local2.min.x = bb_loc_arr.min.x + x;
_local2.min.y = bb_loc_arr.min.y + y;
_local2.max.x = bb_loc_arr.max.x + x;
_local2.max.y = bb_loc_arr.max.y + y;
}
return(_local2);
}
function getZone(x, y) {
if (!zoned) {
return(undefined);
}
var _local2 = new Object();
_local2.min = new Object();
_local2.max = new Object();
_local2.min.x = zone_loc_arr.min.x + x;
_local2.min.y = zone_loc_arr.min.y + y;
_local2.max.x = zone_loc_arr.max.x + x;
_local2.max.y = zone_loc_arr.max.y + y;
return(_local2);
}
function initObj(notNeedDrawing) {
if (gl.noSet(x)) {
x = _x;
}
if (gl.noSet(y)) {
y = _y;
}
if (gl.noSet(notNeedDrawing)) {
notNeedDrawing = false;
}
bb_arr = getBB(x, y, _rotation);
bb_arr.width = bb_arr.max.x - bb_arr.min.x;
bb_arr.height = bb_arr.max.y - bb_arr.min.y;
zone_arr = getZone(x, y);
}
function oEF() {
makeBlinks();
makeFiresCount();
makeFires();
if (immortalHitTime > 0) {
immortalHitTime--;
if (immortalHitTime == 0) {
immortalHit = false;
}
}
if (autoDestroy > 0) {
autoDestroy--;
if (autoDestroy <= 0) {
changeHealth(-health);
autoDestroy = -100;
}
}
if (sirviveIn > 0) {
sirviveIn--;
if ((sirviveIn <= 0) && (sirviveIn != -100)) {
flyOut(false, true);
sirviveIn = -100;
}
}
}
function die(now) {
outQueue();
gl.aTiles.removeFromObj("mc", this);
delete myTile.mcReference;
if (now) {
removeMovieClip();
} else {
var _local4 = _root.frame[dieMoviePlane];
var _local5 = _local4.getNextHighestDepth();
var _local3 = _local4.attachMovie(dieMovie, "fx" + _local5, _local5);
_local3._x = x;
_local3._y = y;
_local3._rotation = Math.random();
onEnterFrame = gl.alphaOut;
}
}
function flyOut(now, survive, needToStay) {
if (survive) {
checkMyGroups(true);
}
if (!needToStay) {
die(now);
}
}
function makeBlinks() {
if (blinkFlag) {
var _local4 = Math.floor(blinkCounter / blinkStep);
blinkCounter++;
var _local3 = Math.floor(blinkCounter / blinkStep);
if (_local4 != _local3) {
var _local2 = {ra:100, ga:100, ba:100, aa:100, rb:0, gb:0, bb:0, ab:0};
if ((_local3 % 2) == 1) {
_local2.ra = (_local2.ga = (_local2.ba = 100 - blinkAmount));
_local2.rb = Math.round((blinkColorR * blinkAmount) / 100);
_local2.gb = Math.round((blinkColorG * blinkAmount) / 100);
_local2.bb = Math.round((blinkColorB * blinkAmount) / 100);
}
new Color(blinkObject).setTransform(_local2);
}
if (blinkCounter > ((2 * blinkStep) * blinkTimes)) {
blinkFlag = false;
}
}
}
function startBlink(col) {
blinkColor = _global.envS.blinks[col].color;
blinkColorR = parseInt(blinkColor.substr(1, 2), 16);
blinkColorG = parseInt(blinkColor.substr(3, 2), 16);
blinkColorB = parseInt(blinkColor.substr(5, 2), 16);
blinkAmount = _global.envS.blinks[col].amount;
blinkTimes = _global.envS.blinks[col].times;
blinkStep = _global.envS.blinks[col].step;
blinkCounter = 0;
blinkFlag = true;
}
function stopBlink() {
if (blinkFlag) {
var _local2 = {ra:100, ga:100, ba:100, aa:100, rb:0, gb:0, bb:0, ab:0};
new Color(blinkObject).setTransform(_local2);
blinkFlag = false;
}
}
function getDamage(enemy, dmg) {
if ((!immortalHit) && (isHitable)) {
startBlink("hit");
if (immortalHitFullTime != 0) {
immortalHitTime = immortalHitFullTime;
immortalHit = true;
}
changeHealth(-dmg);
}
}
function updateTextPosition() {
if (gl.envS.standOnDebug == 1) {
stand_tf.tf1._x = ((bb_loc_arr.min.x + bb_loc_arr.max.x) / 2) - (stand_tf.tf1._width / 2);
stand_tf.tf2._x = ((bb_loc_arr.min.x + bb_loc_arr.max.x) / 2) - (stand_tf.tf2._width / 2);
}
}
function updateTextValues() {
if (gl.envS.standOnDebug == 1) {
updateTextPosition();
}
}
function outOfGame() {
myTile.inGame = false;
}
function makeFiresCount(lastAngle) {
if (weaponed) {
var _local2 = 0;
while (_local2 < guns.length) {
guns[_local2].makeFiresCount(lastAngle);
_local2++;
}
}
}
function makeFires() {
if (weaponed) {
if (checkInFireWindow()) {
var _local2 = 0;
while (_local2 < guns.length) {
guns[_local2].makeFires();
_local2++;
}
}
}
}
function makeBang(num) {
if (weaponed) {
var _local2 = 0;
while (_local2 < guns.length) {
guns[_local2].makeBang(num);
_local2++;
}
}
}
function checkMyGroups(onSurvive) {
if (gl.noSet(onSurvive)) {
onSurvive = false;
}
if (groups.length > 0) {
var _local3 = 0;
while (_local3 < groups.length) {
var _local4 = groups[_local3];
var _local2 = gl.currLevel.preparedGroups[_local4];
if (!_local2.active) {
} else {
if (onSurvive) {
_local2.survived++;
} else {
_local2.killed++;
}
gl.missionTargets.remove(this);
groupTarget.removeMovieClip();
groupTarget = undefined;
gl.checkMissions(false, true);
}
_local3++;
}
}
}
function checkInWindow() {
var _local2 = gl.FrameBB;
if ((_local2.min.x < bb_arr.max.x) && (_local2.max.x > bb_arr.min.x)) {
if ((_local2.min.y < bb_arr.max.y) && (_local2.max.y > bb_arr.min.y)) {
return(true);
}
}
return(false);
}
function checkInFireWindow() {
var _local2 = gl.fireFrameBB;
if ((_local2.min.x < bb_arr.max.x) && (_local2.max.x > bb_arr.min.x)) {
if ((_local2.min.y < bb_arr.max.y) && (_local2.max.y > bb_arr.min.y)) {
return(true);
}
}
return(false);
}
var const_width = 0;
var const_height = 0;
var hit = true;
var blinkColor = "#000000";
var blinkColorR = 0;
var blinkColorG = 0;
var blinkColorB = 0;
var blinkAmount = 0;
var blinkTimes = 0;
var blinkCounter = 0;
var blinkFlag = false;
var blinkStep = 0;
}
Symbol 1045 MovieClip [__Packages.cannon] Frame 0
class cannon
{
var debug, gl, curr_point, curr_anim, parent, myNum, w_image, w_attachPoint, w_shotsOffset, w_cannonAngle, w_rotationSpeed, w_points, w_anims, w_bulletType, w_bulletSpeed, w_bulletLength, w_splashDamage, w_splashRadius, w_splashDelay, w_passageAbility, w_bulletGravity, w_bulletDamage, w_bulletExplode, w_bulletSound, w_shootSound, w_bulletAngle, w_shotsTime, w_reloadingTime, w_amount, w_clip, image, w_c_clip, w_c_time, myAngle;
function cannon () {
debug = _global.debug;
gl = _global;
curr_point = new Array();
curr_anim = new Array();
}
function init(a, p, n) {
parent = p;
myNum = n;
w_image = a.image;
w_attachPoint = a.attachPoint;
w_shotsOffset = a.shotsOffset;
w_cannonAngle = a.cannonAngle;
w_rotationSpeed = a.rotationSpeed;
w_points = gl.prepareArrayString(a.points);
w_anims = gl.prepareArrayString(a.anims);
w_bulletType = gl.prepareArrayString(a.bulletType);
w_bulletSpeed = gl.prepareArrayNumber(a.bulletSpeed);
w_bulletLength = gl.prepareArrayNumber(a.bulletLength);
w_splashDamage = gl.prepareArrayNumber(a.splashDamage);
w_splashRadius = gl.prepareArrayNumber(a.splashRadius);
w_splashDelay = gl.prepareArrayNumber(a.splashDelay);
w_passageAbility = gl.prepareArrayNumber(a.passageAbility);
w_bulletGravity = gl.prepareArrayNumber(a.bulletGravity);
w_bulletDamage = gl.prepareArrayNumber(a.bulletDamage);
w_bulletExplode = gl.prepareArrayString(a.bulletExplode);
w_bulletSound = gl.prepareArrayString(a.bulletSound);
w_shootSound = gl.prepareArrayString(a.shootSound);
w_bulletAngle = gl.prepareArrayNumber(a.bulletAngle);
w_shotsTime = gl.prepareArrayNumber(a.shotsTime);
w_reloadingTime = gl.prepareArrayNumber(a.reloadingTime);
w_amount = gl.prepareArrayNumber(a.amount);
w_clip = gl.prepareArrayNumber(a.clip);
var _local6 = true;
if (gl.noSet(parent)) {
debug("Link to parent TILE object not defined", true);
_local6 = false;
}
if (gl.noSet(w_attachPoint)) {
debug(("Name of attach point not defined (" + parent.myTile.type) + ")", true);
_local6 = false;
} else if (gl.noSet(parent.image[w_attachPoint])) {
debug(((("MovieClip of attach point with name " + w_attachPoint) + " not defined (") + parent.myTile.type) + ")", true);
_local6 = false;
}
if (gl.noSet(w_image)) {
debug(("Visual image not defined (" + parent.myTile.type) + ")", true);
_local6 = false;
}
if (gl.noSet(w_points)) {
debug(("Fire points are not defined (" + parent.myTile.type) + ")", true);
}
if (gl.noSet(w_bulletType)) {
debug(("Bullet types are not defined (" + parent.myTile.type) + ")", true);
_local6 = false;
}
if (gl.noSet(w_bulletSpeed)) {
w_bulletSpeed = [5];
}
if (gl.noSet(w_bulletLength)) {
w_bulletLength = [0];
}
if (gl.noSet(w_splashDamage)) {
w_splashDamage = [0];
}
if (gl.noSet(w_splashRadius)) {
w_splashRadius = [100];
}
if (gl.noSet(w_splashDelay)) {
w_splashDelay = [10];
}
if (gl.noSet(w_passageAbility)) {
w_passageAbility = [1];
}
if (gl.noSet(w_bulletGravity)) {
w_bulletGravity = [gl.envS.gravity];
}
if (gl.noSet(w_bulletDamage)) {
w_bulletDamage = [5];
}
if (gl.noSet(w_bulletExplode)) {
w_bulletExplode = ["eexplode"];
}
if (gl.noSet(w_shootSound)) {
w_shootSound = ["none"];
}
if (gl.noSet(w_bulletAngle)) {
w_bulletAngle = [0];
}
if (gl.noSet(w_shotsTime)) {
w_shotsTime = [10];
}
if (gl.noSet(w_reloadingTime)) {
w_reloadingTime = [50];
}
if (gl.noSet(w_amount)) {
w_amount = [-100];
}
if (gl.noSet(w_clip)) {
w_clip = [2];
}
if (gl.noSet(w_shotsOffset)) {
w_shotsOffset = 0;
}
if (gl.noSet(w_cannonAngle)) {
w_cannonAngle = "f0";
}
if (gl.noSet(w_rotationSpeed)) {
w_rotationSpeed = 360;
}
if (_local6) {
image = parent.image.attachMovie(w_image, "gun" + myNum, parent.image.getNextHighestDepth());
image._x = parent.image[w_attachPoint]._x;
image._y = parent.image[w_attachPoint]._y;
w_anims.arrangeLength(w_points.length);
w_bulletType.arrangeLength(w_points.length);
w_bulletSpeed.arrangeLength(w_points.length);
w_bulletLength.arrangeLength(w_points.length);
w_splashDamage.arrangeLength(w_points.length);
w_splashRadius.arrangeLength(w_points.length);
w_splashDelay.arrangeLength(w_points.length);
w_passageAbility.arrangeLength(w_points.length);
w_bulletGravity.arrangeLength(w_points.length);
w_bulletDamage.arrangeLength(w_points.length);
w_bulletExplode.arrangeLength(w_points.length);
if (!gl.noSet(w_bulletSound)) {
w_bulletSound.arrangeLength(w_points.length);
}
w_shootSound.arrangeLength(w_points.length);
w_bulletAngle.arrangeLength(w_points.length);
w_shotsTime.arrangeLength(w_points.length);
w_reloadingTime.arrangeLength(w_points.length);
w_amount.arrangeLength(w_points.length);
w_clip.arrangeLength(w_points.length);
var _local3 = 0;
while (_local3 < w_points.length) {
w_points[_local3] = gl.prepareArrayString(w_points[_local3], "-");
curr_point[_local3] = 0;
_local3++;
}
_local3 = 0;
while (_local3 < w_anims.length) {
w_anims[_local3] = gl.prepareArrayString(w_anims[_local3], "-");
curr_anim[_local3] = 0;
_local3++;
}
_local3 = 0;
while (_local3 < w_bulletSound.length) {
if (gl.noSet(w_bulletSound[_local3])) {
w_bulletSound[_local3] = "s_" + w_bulletType[_local3];
}
_local3++;
}
_local3 = 0;
while (_local3 < w_points.length) {
var _local2 = 0;
while (_local2 < w_points[_local3].length) {
w_points[_local3][_local2] = (gl.noSet(image[w_points[_local3][_local2]]) ? (image) : (image[w_points[_local3][_local2]]));
_local2++;
}
_local3++;
}
_local3 = 0;
while (_local3 < w_anims.length) {
var _local2 = 0;
while (_local2 < w_anims[_local3].length) {
w_anims[_local3][_local2] = (gl.noSet(image[w_anims[_local3][_local2]]) ? undefined : (image[w_anims[_local3][_local2]]));
_local2++;
}
_local3++;
}
w_c_clip = new Array();
_local3 = 0;
while (_local3 < w_clip.length) {
w_c_clip[_local3] = w_clip[_local3];
_local3++;
}
w_c_time = new Array();
var _local5 = 1000000000 /* 0x3B9ACA00 */;
_local3 = 0;
while (_local3 < w_reloadingTime.length) {
w_c_time[_local3] = w_reloadingTime[_local3] - w_shotsOffset;
_local5 = Math.min(_local5, w_c_time[_local3]);
_local3++;
}
_local3 = 0;
while (_local3 < w_reloadingTime.length) {
w_c_time[_local3] = w_c_time[_local3] - _local5;
_local3++;
}
}
return(_local6);
}
function makeFiresCount(lastAngle) {
rotateGun(lastAngle);
var _local2 = 0;
while (_local2 < w_c_time.length) {
if ((w_amount[_local2] > 0) || (w_amount[_local2] == -100)) {
if (w_c_time[_local2] > 0) {
w_c_time[_local2]--;
}
}
_local2++;
}
}
function makeFires() {
var _local2 = 0;
while (_local2 < w_c_time.length) {
if ((w_amount[_local2] > 0) || (w_amount[_local2] == -100)) {
if (w_c_time[_local2] == 0) {
makeBang(_local2);
if (w_amount[_local2] > 0) {
w_amount[_local2]--;
}
w_c_clip[_local2]--;
if (w_c_clip[_local2] == 0) {
w_c_clip[_local2] = w_clip[_local2];
w_c_time[_local2] = w_reloadingTime[_local2];
} else {
w_c_time[_local2] = w_shotsTime[_local2];
}
}
}
_local2++;
}
}
function makeBang(num) {
var _local6 = _root.frame[gl.envS.weaponPlane];
var _local8 = _local6.getNextHighestDepth();
var _local4 = _local6.attachMovie(w_bulletType[num], "wp" + _local8, _local8);
var _local7 = w_points[num][curr_point[num]];
var _local5 = {x:_local7._x, y:_local7._y};
_local7._parent.localToGlobal(_local5);
var _local9 = {x:_local5.x, y:_local5.y};
_local6.globalToLocal(_local5);
_local4._x = _local5.x;
_local4._y = _local5.y;
_local4.getBB();
_local4.getZone();
_local4.setType(w_bulletType[num]);
_local4.setSpeed(w_bulletSpeed[num]);
_local4.setLength(w_bulletLength[num]);
_local4.setSplash(w_splashDamage[num], w_splashRadius[num], w_splashDelay[num]);
_local4.setPassage(w_passageAbility[num]);
_local4.setAngle(myAngle + w_bulletAngle[num]);
_local4.setGravity(w_bulletGravity[num]);
_local4.setDamage(w_bulletDamage[num]);
_local4.setDecalls(w_bulletExplode[num], w_bulletSound[num]);
if (w_shootSound[num] != "none") {
gl.sound.play(w_shootSound[num], _local9.x);
}
_local4.setParent(parent);
_local4.setPlayer(parent.isPlayer);
gl.fires.add(_local4);
_local4.checkMyPosition();
if (!gl.noSet(w_anims[num][curr_anim[num]])) {
w_anims[num][curr_anim[num]].gotoAndPlay("bang");
}
curr_point[num]++;
if (curr_point[num] >= w_points[num].length) {
curr_point[num] = 0;
}
curr_anim[num]++;
if (curr_anim[num] >= w_anims[num].length) {
curr_anim[num] = 0;
}
}
function rotateGun(lastAngle) {
if (gl.noSet(lastAngle)) {
lastAngle = 0;
}
var _local5 = {x:image._x, y:image._y};
image._parent.localToGlobal(_local5);
var _local6 = w_cannonAngle.charAt(0);
var _local4 = w_cannonAngle.substr(1, 10);
_local4 = parseInt(_local4);
if (_local6 == "m") {
_local4 = (-lastAngle) + _local4;
}
if (_local6 == "h") {
var _local7 = _local4;
if (parent.image._yscale < 0) {
_local7 = -_local7;
}
if (parent.image._xscale < 0) {
_local4 = 180 - _local7;
} else {
_local4 = _local7;
}
}
if (_local6 == "w") {
_local4 = (-parent._rotation) - _local4;
}
if (_local6 == "t") {
if (parent.isPlayer) {
var _local13 = (-Math.atan2(_root._ymouse - _local5.y, _root._xmouse - _local5.x)) * gl.PI2;
} else if (gl.mt[gl.envS.playerName]) {
var _local10 = gl.mt[gl.envS.playerName];
var _local13 = (-Math.atan2((_local10._y + gl.frameY) - _local5.y, (_local10._x + gl.frameX) - _local5.x)) * gl.PI2;
}
_local4 = _local13 - _local4;
}
myAngle = _local4;
var _local14 = ((-myAngle) - parent._rotation) + 90;
var _local9 = _global.getAngleDelta(image._rotation, _local14, 1);
var _local12 = ((_local9 > 0) ? 1 : -1);
var _local8 = 0;
if (Math.abs(_local9) > w_rotationSpeed) {
_local8 = _local12 * w_rotationSpeed;
} else {
_local8 = _local9;
}
image._rotation = image._rotation + _local8;
}
}
Symbol 1046 MovieClip [__Packages.movingTile] Frame 0
class movingTile extends tile
{
var moving, speedToComp, debug, inQueue, speed, speedAdder, gl, modeBorder, createEmptyMovieClip, getNextHighestDepth, bb_loc_arr, x, y, _x, _y, _rotation, initObj, updateTextValues;
function movingTile () {
super();
moving = true;
speedToComp = new Vector(0, 0);
debug(this + " COME IN QUEUE");
inQueue();
speed = new Vector(0, 0);
speedAdder = new Vector(0, 0);
speed.__set__color(16720418);
}
function makeTile(li, descr) {
super.makeTile(li, descr);
if (gl.envS.boxDebug == 1) {
modeBorder = createEmptyMovieClip("modeBorder", getNextHighestDepth());
modeBorder.lineStyle(2, 16711935);
modeBorder.drawRect(bb_loc_arr.min.x + 5, bb_loc_arr.min.y + 5, bb_loc_arr.max.x - 5, bb_loc_arr.max.y - 5);
}
}
function makeImpulse(s, comp) {
if (gl.noSet(comp)) {
comp = false;
}
speedAdder.add(s);
inMove = true;
if (comp) {
speedToComp.define(-s.x, -s.y);
}
}
function calcSpeedAdder() {
if (speedAdder.__get__length() > 0) {
speed.add(speedAdder);
speedAdder.define(0, 0);
inMove = true;
}
speed.checkZero(0.1);
}
function calcSpeedComp() {
if (speedToComp.__get__length() > 0) {
speed.add(speedToComp);
speedToComp.define(0, 0);
}
}
function moveMe(dx, dy, dr) {
if (gl.noSet(dx)) {
dx = 0;
}
if (gl.noSet(dy)) {
dy = 0;
}
if (gl.noSet(dr)) {
dr = 0;
}
x = x + dx;
y = y + dy;
x = gl.roundNums(x, 2);
y = gl.roundNums(y, 2);
_x = x;
_y = y;
_rotation = _rotation + dr;
initObj(true);
}
function oEF() {
updateTextValues();
super.oEF();
if (gl.envS.boxDebug == 1) {
new Color(modeBorder).setRGB((inMove ? ((inAir ? 16711680 : 255)) : 0));
}
_root.tf3.text = speed.length;
}
function die() {
super.die();
}
var inAir = true;
var inMove = true;
}
Symbol 1047 MovieClip [__Packages.Vector] Frame 0
class Vector
{
var PI2, sin__, cos__, length__, nx__, ny__, angle__;
function Vector (nnx, nny, bd) {
PI2 = (_global.noSet(_global.PI2) ? 57.2957795130823 : (_global.PI2));
if (!_global.noSet(bd)) {
debug = (Boolean(bd));
}
init = true;
if (_global.noSet(nnx)) {
nnx = 0;
}
if (_global.noSet(nny)) {
nny = 0;
}
define(nnx, nny);
}
function set x(nnx) {
if (_global.noSet(nnx)) {
return;
}
define(nnx, y__);
//return(x);
}
function get x() {
return(x__);
}
function set y(nny) {
if (_global.noSet(nny)) {
return;
}
define(x__, nny);
//return(y);
}
function get y() {
return(y__);
}
function get sin() {
if (!init) {
return(undefined);
}
if (_global.noSet(sin__)) {
debugFunction("counting sin");
sin__ = y__ / length;
}
debugFunction(" sending sin");
return(sin__);
}
function get cos() {
if (!init) {
return(undefined);
}
if (_global.noSet(cos__)) {
debugFunction("counting cos");
cos__ = x__ / length;
}
debugFunction(" sending cos");
return(cos__);
}
function get length() {
if (!init) {
return(undefined);
}
if (_global.noSet(length__)) {
debugFunction("counting length");
length__ = Math.sqrt((x__ * x__) + (y__ * y__));
}
debugFunction(" sending length");
return(length__);
}
function set length(newlength) {
if (!init) {
return;
}
if ((x__ == 0) && (y__ == 0)) {
return;
}
if (newlength < 0) {
return;
}
debugFunction("setting new length");
var _local2 = newlength / length;
define(_local2 * x__, _local2 * y__);
//return(length);
}
function get nx() {
if (!init) {
return(undefined);
}
if (_global.noSet(nx__)) {
debugFunction("counting normalled x");
if (length == 0) {
nx__ = 0;
} else {
nx__ = x / length;
}
}
debugFunction(" sending normalled x");
return(nx__);
}
function get ny() {
if (!init) {
return(undefined);
}
if (_global.noSet(ny__)) {
debugFunction("counting normalled y");
if (length == 0) {
ny__ = 0;
} else {
ny__ = y / length;
}
}
debugFunction(" sending normalled y");
return(ny__);
}
function get angle() {
if (!init) {
return(undefined);
}
if (_global.noSet(angle__)) {
debugFunction("counting angle");
angle__ = Math.atan2(y__, x__);
}
debugFunction(" sending angle");
return(angle__);
}
function set angle(newangle) {
if (!init) {
return;
}
if ((x__ == 0) && (y__ == 0)) {
return;
}
debugFunction("setting new angle");
define(length * Math.cos(newangle), length * Math.sin(newangle));
//return(angle);
}
function get angleGr() {
var _local3 = angle;
debugFunction("sending angleGr");
if (_global.noSet(_local3)) {
return(undefined);
}
return(_local3 * PI2);
}
function set angleGr(newangle) {
debugFunction("setting new angleGr");
angle = (newangle / PI2);
//return(angleGr);
}
function set debug(a) {
debug__ = a;
//return(debug);
}
function get debug() {
return(debug__);
}
function set color(col) {
if ((col >= 0) && (col <= 16777215)) {
debugFunction(" getting color " + col);
color__ = col;
} else {
debugFunction(" wrong color " + col);
}
//return(color);
}
function get color() {
debugFunction(" sending color");
return(color__);
}
function set thick(th) {
if ((th >= 0) && (th <= 255)) {
debugFunction(" getting thick " + th);
thick__ = th;
} else {
debugFunction(" wrong thick " + th);
}
//return(thick);
}
function get thick() {
debugFunction(" sending thick");
return(thick__);
}
function set alpha(al) {
if ((al >= 0) && (al <= 100)) {
debugFunction(" getting alpha " + al);
alpha__ = al;
} else {
debugFunction(" wrong alpha " + al);
}
//return(alpha);
}
function get alpha() {
debugFunction(" sending alpha");
return(alpha__);
}
function define(nx, ny) {
debugFunction((("define " + nx) + "\t") + ny);
if ((!_global.noSet(nx)) && (!_global.noSet(ny))) {
if ((x__ != nx) || (y__ != ny)) {
debugFunction(" nulling sin-cos-al");
sin__ = undefined;
cos__ = undefined;
length__ = undefined;
angle__ = undefined;
nx__ = undefined;
ny__ = undefined;
x__ = nx;
y__ = ny;
init = true;
} else {
debugFunction(" the same values, no redefine");
}
}
}
function defineA(len, al) {
if (_global.noSet(len)) {
len = 0;
}
if (_global.noSet(al)) {
al = 0;
}
debugFunction((("define by angle " + len) + "\t") + al);
if ((angle__ != al) || (length__ != len)) {
debugFunction(" nulling sin-cos-al");
sin__ = Math.sin(al);
cos__ = Math.cos(al);
length__ = len;
angle__ = al;
x__ = len * cos__;
y__ = len * sin__;
init = true;
} else {
debugFunction(" the same values, no redefine");
}
}
function defineAGr(len, al) {
defineA(len, al / PI2);
}
function add() {
var _local5 = 0;
var _local7 = 0;
var _local6 = 0;
while (_local5 < arguments.length) {
var _local4 = arguments[_local5++];
if (_global.noSet(_local4.x)) {
continue;
}
if (_global.noSet(_local4.y)) {
continue;
}
_local7 = _local7 + _local4.x;
_local6 = _local6 + _local4.y;
}
if ((_local7 != 0) || (_local6 != 0)) {
define(x__ + _local7, y__ + _local6);
}
}
function mult(k1, k2) {
if (_global.noSet(k1)) {
return(undefined);
}
if (_global.noSet(k2)) {
k2 = k1;
}
define(x__ * k1, y__ * k2);
}
function multX(k) {
define(x__ * k, y__);
}
function multY(k) {
define(x__, y__ * k);
}
function rotate(a) {
if (_global.noSet(a)) {
return(undefined);
}
if (a == 0) {
return(undefined);
}
angle = (angle + a);
}
function rotateGr(a) {
if (_global.noSet(a)) {
return(undefined);
}
if (a == 0) {
return(undefined);
}
angleGr = (angleGr + a);
}
function checkZero(a1, a2) {
if (_global.noSet(a1)) {
return(undefined);
}
if (_global.noSet(a2)) {
if (Math.abs(length) <= a1) {
define(0, 0);
}
} else {
var _local4 = x__;
var _local3 = y__;
if (Math.abs(_local4) <= a1) {
_local4 = 0;
}
if (Math.abs(_local3) <= a2) {
_local3 = 0;
}
define(_local4, _local3);
}
}
function checkX(max, d) {
if (_global.noSet(max)) {
return(undefined);
}
if (_global.noSet(d)) {
return(undefined);
}
if (Math.abs(x__ - max) <= d) {
define(max, y__);
}
}
function checkY(max, d) {
if (_global.noSet(max)) {
return(undefined);
}
if (_global.noSet(d)) {
return(undefined);
}
if (Math.abs(y__ - max) <= d) {
define(x__, max);
}
}
function projection(al) {
var _local3 = length * Math.cos(angle + al);
var _local2 = length * Math.sin(angle + al);
define(_local3, _local2);
return(undefined);
}
function projectionGr(al) {
return(projection(al / PI2));
}
function projectionVectors(a, b) {
var _local3 = (a.__get__x() * b.__get__nx()) + (a.__get__y() * b.__get__ny());
define(_local3 * b.__get__nx(), _local3 * b.__get__ny());
return(undefined);
}
function dotProduct(v) {
return((x * v.__get__x()) + (y * v.__get__y()));
}
function crossProduct(v) {
return((x * v.__get__y()) - (y * v.__get__x()));
}
function getPerpendicular() {
return(new Vector(-y__, x__));
}
function getMatrixMult(matrix) {
return(new Vector((matrix[0][0] * x__) + (matrix[0][1] * y__), (matrix[1][0] * x__) + (matrix[1][1] * y__)));
}
function toString() {
if (!init) {
return("Vector not defined");
}
return(((((("Vector: x=" + (Math.round(10000 * x__) / 10000)) + ", y=") + (Math.round(10000 * y__) / 10000)) + ", len=") + (Math.round(10000 * length) / 10000)) + ((!_global.noSet(angle)) ? ((((", angle=" + (Math.round(angleGr * 1000) / 1000)) + "\u00B0 (") + (Math.round(angle * 1000) / 1000)) + " rad)") : ""));
}
function debugFunction(a) {
if (debug__) {
trace(a);
}
}
function view(mc, sx, sy, k) {
if (_global.envS.debugWires != 1) {
return(undefined);
}
if (sx == undefined) {
sx = 0;
}
if (sy == undefined) {
sy = 0;
}
if (k == undefined) {
k = 1;
}
if (!init) {
return(undefined);
}
if (_global.noSet(mc)) {
debugFunction("Cannot view vector: no target");
return(undefined);
}
if (_global.noSet(sx)) {
sx = 0;
}
if (_global.noSet(sy)) {
sy = 0;
}
var _local6 = (k * length) / 2;
angle;
if (_local6 > 10) {
_local6 = 10;
}
mc.lineStyle(thick__, color__, alpha__);
mc.moveTo(sx, sy);
mc.lineTo(sx + (k * x__), sy + (k * y__));
mc.lineTo((sx + (k * x__)) + (_local6 * Math.cos((angle__ - Math.PI) - (20 / PI2))), (sy + (k * y__)) + (_local6 * Math.sin((angle__ - Math.PI) - (20 / PI2))));
mc.moveTo(sx + (k * x__), sy + (k * y__));
mc.lineTo((sx + (k * x__)) + (_local6 * Math.cos((angle__ - Math.PI) + (20 / PI2))), (sy + (k * y__)) + (_local6 * Math.sin((angle__ - Math.PI) + (20 / PI2))));
}
var x__ = 0;
var y__ = 0;
var init = false;
var debug__ = false;
var color__ = 0;
var thick__ = 0;
var alpha__ = 100;
}
Symbol 1048 MovieClip [__Packages.freeMovingTile] Frame 0
class freeMovingTile extends movingTile
{
var controlType, gl, fWheel1, image, fWheel2, myTile, speed, _rotation, speedSign, speedK, viewer, calcZonesTime, inWater, zonesTypes, isPlayer, calcSpeedAdder, inMove, moveMe, calcSpeedComp, debug, x, y, _x, _y, initObj;
function freeMovingTile () {
super();
controlType = gl.envS.controlType;
}
function makeTile(li, descr) {
super.makeTile(li, descr);
fWheel1 = image.fWheel1;
fWheel2 = image.fWheel2;
if (!gl.noSet(myTile.mass)) {
mass = myTile.mass;
}
}
function setParams(xfr, yfr, rfr, afr) {
if (!_global.noSet(xfr)) {
xFriction = xfr;
}
if (!_global.noSet(yfr)) {
yFriction = yfr;
}
if (!_global.noSet(rfr)) {
rFriction = rfr;
}
if (!_global.noSet(afr)) {
airFriction = afr;
}
if (_global.envS.dropAllFriction) {
xFriction = (yFriction = (rFriction = (airFriction = 0)));
}
}
function setMobility(dr, mr, ds) {
if (!_global.noSet(dr)) {
deltaRotation = dr;
}
if (!_global.noSet(mr)) {
maxRotation = mr;
}
if (!_global.noSet(ds)) {
initDeltaSpeed = (deltaSpeed = ds);
}
}
function countSpeedFactor() {
var _local3 = new Vector(speed.__get__x(), speed.__get__y());
if (((controlType == "heli") || (controlType == "heli2")) || (controlType == "heli3")) {
_local3.projectionGr((-_rotation) + wheelRotation);
speedSign = _global.getSign(_local3.y, true);
speedK = Math.abs(_local3.y / 30);
} else {
_local3.projectionGr((-_rotation) + wheelRotation);
speedSign = _global.getSign(_local3.x, true);
speedK = Math.abs(_local3.x / 30);
}
if (Math.abs(speedK) > 1) {
speedK = 1;
}
}
function calcFriction() {
var _local3 = new Vector(0, 0);
_local3.defineA((speedK * 0.1) * speed.__get__length(), speed.__get__angle() - Math.PI);
_local3.mult(airFriction);
var _local2 = new Vector();
_local2.add(speed);
if (((controlType == "heli") || (controlType == "heli2")) || (controlType == "heli3")) {
_local2.projectionGr(-speed.__get__angle());
} else {
_local2.projectionGr(-_rotation);
}
_local2.mult(((1 - speedK) * xFriction) / mass, ((1 - speedK) * yFriction) / mass);
if (((controlType == "heli") || (controlType == "heli2")) || (controlType == "heli3")) {
_local2.projectionGr(speed.__get__angle() - 180);
} else {
_local2.projectionGr(_rotation - 180);
}
speed.add(_local3);
speed.add(_local2);
speed.checkZero(0.2);
speed.view(viewer, 0, 0, 5);
_local2.color = 255;
_local2.view(viewer, 0, 0, 150);
}
function calcZones() {
if (calcZonesTime == gl.levelTimeF) {
return(undefined);
}
gl.calcZones(this);
calcZonesTime = gl.levelTimeF;
checkZones();
}
function checkZones() {
inWater = false;
if (zonesTypes.inArray("water")) {
inWater = true;
}
if (zonesTypes.inArray("end") && (isPlayer)) {
_global.gameInWin = true;
}
}
function calcGravity() {
return(undefined);
}
function oEF() {
if (!_global.gameInProcess) {
return(undefined);
}
countSpeedFactor();
viewer.clear();
var _local6 = rotate + subRotate;
if (_local6 != 0) {
rotate = rotate * (1 - rFriction);
if (Math.abs(rotate) < 0.5) {
rotate = 0;
}
}
viewer._rotation = -_rotation;
viewer.clear();
if (gl.envS.debugWires == 1) {
if (this == gl.mt[gl.envS.playerName]) {
_root.tf_out2.text = speed.length;
}
}
calcSpeedAdder();
inMove = true;
if ((speed.__get__length() > 0) || (Math.abs(_local6) > 0)) {
var _local5 = _global.testCollisions(this, speed, _local6);
moveMe(_local5.dx, _local5.dy, _local5.dr);
}
if (speed.__get__length() > 0) {
calcSpeedComp();
calcFriction();
}
super.oEF();
}
function moveAndCollide(tmpSpeed, sp) {
var _local3 = 0;
var _local6 = true;
while ((tmpSpeed.length > 0) && (_local3 <= gl.envS.maxIterations)) {
if (_local3 == 0) {
debug("\n\n=====================================");
}
debug("\u0423\u0425\u041E\u0414\u0418\u041C \u0412 \u041A\u041E\u041B\u041B\u0418\u0417\u0418\u042E " + _local3);
var _local2 = gl.testCollisions(this, tmpSpeed, sp, _local3);
debug((((("\u0420\u0415\u0417\u0423\u041B\u042C\u0422\u0410\u0422 \u041E\u0411\u0420\u0410\u0411\u041E\u0422\u041A\u0418 \u041A\u041E\u041B\u041B\u0418\u0417\u0418\u0418: " + _local2.actualCrossed) + ", dx=") + _local2.dx) + ", dy=") + _local2.dy);
if (_local2.actualCrossed) {
if ((Math.abs(_local2.dx) > 0) || (Math.abs(_local2.dy) > 0)) {
x = x + _local2.dx;
y = y + _local2.dy;
_x = x;
_y = y;
initObj(true);
}
_local3++;
} else {
if (_local6) {
x = x + _local2.dx;
y = y + _local2.dy;
_x = x;
_y = y;
initObj(true);
tmpSpeed.add(new Vector(sp.nx * gl.envS.precisionOffset, sp.ny * gl.envS.precisionOffset));
_local6 = false;
}
_local3++;
}
}
}
var xFriction = 0.5;
var yFriction = 0.5;
var rFriction = 0.5;
var airFriction = 1;
var deltaSpeed = 3;
var initDeltaSpeed = 3;
var mass = 2;
var rotate = 0;
var subRotate = 0;
var wheelRotation = 0;
var deltaRotation = 3;
var maxRotation = 30;
}
Symbol 1049 MovieClip [__Packages.player] Frame 0
class player extends freeMovingTile
{
var isPlayer, rings, kills, gl, keyboardFireMode, mouseFireMode, controlType, baseRotateFactor, allShootByMouse, deltaRSpeed, maxRSpeed, factorRSpeed, r_speed, myTile, calcZones, wheelRotation, deltaRotation, maxRotation, mass, deltaSpeed, _rotation, speed, countSpeedFactor, speedK, fWheel2, fWheel1, speedSign, subRotate, PI2, y, _parent, x, rotate, guns, changeHealth, initHealth, initDeltaSpeed, groupTarget, weaponed, checkInFireWindow, health;
function player () {
super();
isPlayer = true;
rings = 0;
kills = 0;
_root.gui.rings.text = (rings + "/") + gl.ringsAtAll;
keyboardFireMode = false;
mouseFireMode = false;
controlType = gl.envS.controlType;
baseRotateFactor = gl.envS.baseRotateFactor;
allShootByMouse = ((gl.envS.allShootByMouse == 0) ? false : true);
deltaRSpeed = 1;
maxRSpeed = 30;
factorRSpeed = 0.85;
r_speed = 0;
}
function makeTile(li, descr) {
super.makeTile(li, descr);
updateAmmo();
if (!gl.noSet(myTile.deltaRSpeed)) {
deltaRSpeed = myTile.deltaRSpeed;
}
if (!gl.noSet(myTile.maxRSpeed)) {
maxRSpeed = myTile.maxRSpeed;
}
if (!gl.noSet(myTile.factorRSpeed)) {
factorRSpeed = myTile.factorRSpeed;
}
}
function onMouseDown() {
mouseFireMode = true;
}
function onMouseUp() {
mouseFireMode = false;
}
function oEF() {
calcZones();
if (Key.isDown(32)) {
keyboardFireMode = true;
} else {
keyboardFireMode = false;
}
if (controlType == "car") {
if (Key.isDown(37) || (Key.isDown(65))) {
wheelRotation = wheelRotation - deltaRotation;
}
if (Key.isDown(39) || (Key.isDown(68))) {
wheelRotation = wheelRotation + deltaRotation;
}
if (wheelRotation < (-maxRotation)) {
wheelRotation = -maxRotation;
}
if (wheelRotation > maxRotation) {
wheelRotation = maxRotation;
}
if (Key.isDown(38) || (Key.isDown(87))) {
var _local5 = new Vector(deltaSpeed / mass, 0);
_local5.angleGr = _rotation;
speed.add(_local5);
}
if (Key.isDown(40) || (Key.isDown(83))) {
var _local5 = new Vector(deltaSpeed / mass, 0);
_local5.angleGr = _rotation + 180;
speed.add(_local5);
}
countSpeedFactor();
if ((((((!Key.isDown(37)) && (!Key.isDown(39))) && (!Key.isDown(65))) || (!Key.isDown(68))) || ((Key.isDown(37) || (Key.isDown(65))) && (wheelRotation > 0))) || ((Key.isDown(39) || (Key.isDown(68))) && (wheelRotation < 0))) {
if (_global.envS.rotationDebug == 1) {
wheelRotation = wheelRotation + ((1 * (-wheelRotation)) / 6);
} else {
wheelRotation = wheelRotation + ((speedK * (-wheelRotation)) / 6);
}
}
if (Math.abs(wheelRotation) < 0.1) {
wheelRotation = 0;
}
fWheel1._rotation = (fWheel2._rotation = wheelRotation);
if (((Key.isDown(38) || (Key.isDown(40))) || (Key.isDown(87))) || (Key.isDown(83))) {
var _local8 = speedSign;
if (_local8 != 0) {
_global.storedRotation2 = _local8;
}
}
var _local9 = wheelRotation;
if (_local9 != 0) {
_global.storedRotation = _local9;
}
subRotate = 0;
if (_global.envS.rotationDebug == 1) {
subRotate = ((1 * _global.storedRotation2) * _global.storedRotation) / mass;
} else {
subRotate = ((speedK * speedSign) * wheelRotation) / mass;
}
if (Math.abs(subRotate) < 0.5) {
subRotate = 0;
}
} else if (controlType == "heli") {
if (Key.isDown(38) || (Key.isDown(87))) {
var _local5 = new Vector(0, (-deltaSpeed) / mass);
speed.add(_local5);
}
if (Key.isDown(40) || (Key.isDown(83))) {
var _local5 = new Vector(0, deltaSpeed / mass);
speed.add(_local5);
}
if (Key.isDown(37) || (Key.isDown(65))) {
var _local5 = new Vector((-deltaSpeed) / mass, 0);
speed.add(_local5);
}
if (Key.isDown(39) || (Key.isDown(68))) {
var _local5 = new Vector(deltaSpeed / mass, 0);
speed.add(_local5);
}
var _local10 = Math.atan2(_parent._ymouse - y, _parent._xmouse - x) * PI2;
rotate = gl.getAngleDelta(0, _local10 - _rotation, baseRotateFactor);
} else if (controlType == "heli2") {
if (Key.isDown(38) || (Key.isDown(87))) {
var _local5 = new Vector(0, (-deltaSpeed) / mass);
_local5.angleGr = _rotation;
speed.add(_local5);
}
if (Key.isDown(40) || (Key.isDown(83))) {
var _local5 = new Vector(0, deltaSpeed / mass);
_local5.angleGr = _rotation + 180;
speed.add(_local5);
}
if (Key.isDown(37) || (Key.isDown(65))) {
var _local5 = new Vector((-deltaSpeed) / mass, 0);
_local5.angleGr = _rotation - 90;
speed.add(_local5);
}
if (Key.isDown(39) || (Key.isDown(68))) {
var _local5 = new Vector(deltaSpeed / mass, 0);
_local5.angleGr = _rotation + 90;
speed.add(_local5);
}
var _local10 = Math.atan2(_parent._ymouse - y, _parent._xmouse - x) * PI2;
rotate = gl.getAngleDelta(0, _local10 - _rotation, baseRotateFactor);
} else if (controlType == "heli3") {
if (Key.isDown(38) || (Key.isDown(87))) {
var _local5 = new Vector(0, (-deltaSpeed) / mass);
_local5.angleGr = _rotation;
speed.add(_local5);
}
if (Key.isDown(40) || (Key.isDown(83))) {
var _local5 = new Vector(0, deltaSpeed / mass);
_local5.angleGr = _rotation + 180;
speed.add(_local5);
}
if (Key.isDown(37) || (Key.isDown(65))) {
r_speed = r_speed - deltaRSpeed;
if (r_speed < (-maxRSpeed)) {
r_speed = -maxRSpeed;
}
}
if (Key.isDown(39) || (Key.isDown(68))) {
r_speed = r_speed + deltaRSpeed;
if (r_speed > maxRSpeed) {
r_speed = maxRSpeed;
}
}
if (!(((Key.isDown(37) || (Key.isDown(65))) || (Key.isDown(39))) || (Key.isDown(68)))) {
r_speed = r_speed * factorRSpeed;
}
if (Math.abs(r_speed) <= 0.3) {
r_speed = 0;
}
rotate = r_speed;
} else if (controlType == "tank") {
var _local6 = 0;
if (Key.isDown(37) || (Key.isDown(65))) {
_local6 = -1;
}
if (Key.isDown(39) || (Key.isDown(68))) {
_local6 = 1;
}
if ((Key.isDown(37) || (Key.isDown(65))) && (Key.isDown(39) || (Key.isDown(68)))) {
_local6 = 0;
}
var _local7 = 0;
if (Key.isDown(38) || (Key.isDown(87))) {
_local7 = -1;
}
if (Key.isDown(40) || (Key.isDown(83))) {
_local7 = 1;
}
if ((Key.isDown(38) || (Key.isDown(87))) && (Key.isDown(40) || (Key.isDown(83)))) {
_local7 = 0;
}
var _local5 = new Vector(((_local6 * deltaSpeed) / 5) / mass, ((_local7 * deltaSpeed) / 5) / mass);
speed.add(_local5);
var _local10 = Math.atan2(_local5.y, _local5.x) * PI2;
if (_local5.length > 0) {
rotate = gl.getAngleDelta(0, _local10 - _rotation, baseRotateFactor);
}
}
super.oEF();
_root.tf_out2.text = (x + " : ") + y;
}
function getBonus(obj) {
if (!obj.myTile.inGame) {
return(undefined);
}
if (obj.type == "bonus_ring") {
rings++;
_root.gui.rings.text = (rings + "/") + gl.ringsAtAll;
if (rings == gl.ringsAtAll) {
_global.gameInWin = true;
}
obj.outOfGame();
obj.die();
} else if ((((obj.type == "keyGreen") || (obj.type == "keyRed")) || (obj.type == "keyBlue")) || (obj.type == "keyYellow")) {
if (obj.type == "keyGreen") {
var _local7 = "doorGreen";
}
if (obj.type == "keyRed") {
var _local7 = "doorRed";
}
if (obj.type == "keyBlue") {
var _local7 = "doorBlue";
}
if (obj.type == "keyYellow") {
var _local7 = "doorYellow";
}
var _local6 = gl.mt[_local7];
var _local8 = gl.mto[_local7];
if (_local8.gameState == 0) {
_local8.gameState = 1;
_local6.image.gotoAndPlay("anim");
_local6.transparent = (_local6.fullTransparent = (_local6.weaponTransparent = true));
}
obj.outOfGame();
obj.die();
} else if (obj.type == "rockets") {
if (guns[1].w_amount[0] != -100) {
guns[1].w_amount[0] = guns[1].w_amount[0] + 20;
}
gl.sound.play("upgrade", x + gl.frameX);
updateAmmo();
obj.outOfGame();
obj.die();
} else if (obj.type == "score") {
gl.changeScore(obj.score);
gl.sound.play("coin", x + gl.frameX);
obj.outOfGame();
obj.die();
} else if (obj.type == "health") {
changeHealth(initHealth * 0.25);
obj.outOfGame();
obj.die();
} else if (obj.type == "speed") {
deltaSpeed = initDeltaSpeed * 1.5;
gl.sound.play("upgrade", x + gl.frameX);
obj.outOfGame();
obj.die();
} else if (obj.groups.length > 0) {
var _local5 = 0;
while (_local5 < obj.groups.length) {
gl.currLevel.preparedGroups[obj.groups].taken++;
if (gl.currLevel.preparedGroups[obj.groups].active) {
gl.missionTargets.remove(this);
groupTarget.removeMovieClip();
groupTarget = undefined;
}
_local5++;
}
obj.checkMyGroups();
gl.sound.play("coin", x + gl.frameX);
obj.outOfGame();
obj.die();
}
}
function calcGravity() {
return(undefined);
}
function makeFires() {
if (weaponed) {
if (mouseFireMode || (keyboardFireMode)) {
if (checkInFireWindow()) {
if (allShootByMouse) {
if (mouseFireMode || (keyboardFireMode)) {
var _local2 = 0;
while (_local2 < guns.length) {
guns[_local2].makeFires();
_local2++;
}
}
} else {
if (mouseFireMode) {
guns[0].makeFires();
}
if (keyboardFireMode) {
var _local2 = 1;
while (_local2 < guns.length) {
guns[_local2].makeFires();
_local2++;
}
}
}
updateAmmo();
}
}
}
}
function updateAmmo() {
var _local3 = guns[0].w_amount[0];
_root.gui.ammo1.text = ((_local3 == -100) ? "unlim" : (_local3));
_local3 = guns[1].w_amount[0];
_root.gui.ammo2.text = ((_local3 == -100) ? "unlim" : (_local3));
}
function animGoTo() {
}
function die(a) {
trace("END OF LEVEL");
gl.gameOver = true;
super.die(a);
}
function viewHealth() {
if (health >= 0) {
_root.gui.health.bar._xscale = (100 * health) / initHealth;
}
super.viewHealth();
}
}
Symbol 1050 MovieClip [__Packages.standingTile] Frame 0
class standingTile extends tile
{
var speed;
function standingTile () {
super();
speed = new Vector(0, 0);
speed.__set__color(16720418);
}
var mass = 1000000;
}
Symbol 1051 MovieClip [__Packages.pathMovingTile] Frame 0
class pathMovingTile extends movingTile
{
var oldspeed, pausedByView, canMove, stopAfterCollision, gl, moveDescr, moveStep, moveAction, myTile, moveRepeats, checkInWindow, moveStepsX, moveStepsY, moveStepsR, x, y, startX, startY, startR, _rotation, finalX, finalY, finalR, outOfGame, weaponTransparent, splashTransparent, weaponed, health, PI2, dontCollideWhileMoving, image, speed, moveMe, flyOut, debug, pushWhileMove, _x, _y, initObj;
function pathMovingTile () {
super();
oldspeed = new Vector(0, 0);
pausedByView = false;
canMove = false;
stopAfterCollision = false;
}
function setMovingByPath(m) {
if (gl.noSet(m)) {
return(undefined);
}
moveDescr = m;
if (!gl.noSet(moveDescr)) {
moveStep = -1;
moveAction = -1;
if (myTile.moveByView == 1) {
pausedByView = true;
}
if (myTile.stopAfterColl == 1) {
stopAfterCollision = true;
}
canMove = true;
moveRepeats = new Array();
var _local3 = 0;
while (_local3 < moveDescr.length) {
var _local2 = moveDescr[_local3].repeat;
if (gl.noSet(_local2)) {
_local2 = -100;
}
moveRepeats.push(_local2);
_local3++;
}
}
}
function oEF() {
if (!gl.gameInProcess) {
return(undefined);
}
if (canMove) {
if (pausedByView) {
pausedByView = !checkInWindow();
}
if ((!moveInPause) && (!pausedByView)) {
if (moveStep == -1) {
var _local13 = 0;
do {
_local13++;
moveAction++;
if (moveAction == moveDescr.length) {
moveAction = 0;
}
if (moveRepeats[moveAction] >= 0) {
moveRepeats[moveAction]--;
}
} while (((moveRepeats[moveAction] != -100) && (moveRepeats[moveAction] < 0)) && (_local13 < (moveRepeats.length + 1)));
if (_local13 >= (moveRepeats.length + 1)) {
canMove = false;
}
}
if ((moveStep == -1) && (canMove)) {
var _local29 = false;
var _local27 = false;
var _local10 = moveDescr[moveAction];
if (_local10.action == "move") {
moveStepsX = new Array();
moveStepsY = new Array();
moveStepsR = new Array();
var _local18 = 0;
var _local3 = _local10.steps;
var _local5 = 0;
while (_local5 < _local3) {
_local18 = _local18 + Math.abs(Math.sin((_local5 * Math.PI) / _local3));
_local5++;
}
var _local14 = _local10.deltax;
var _local12 = _local10.deltay;
if (gl.noSet(_local14)) {
_local14 = _local10.movetox - x;
}
if (gl.noSet(_local12)) {
_local12 = _local10.movetoy - y;
}
if (gl.noSet(_local14)) {
_local14 = 0;
}
if (gl.noSet(_local12)) {
_local12 = 0;
}
var _local22 = _local14 / _local18;
var _local20 = _local12 / _local18;
var _local19 = _local10.deltar / _local18;
startX = x;
startY = y;
startR = _rotation;
if (_local10.mtype == "sin") {
var _local15 = 0;
_local5 = 0;
while (_local5 < _local3) {
_local15 = _local15 + Math.abs(Math.sin(((_local5 + 1) * Math.PI) / _local3));
var _local26 = _local15 * _local22;
if (gl.noSet(_local26)) {
_local26 = 0;
}
moveStepsX.push(_local26);
_local26 = _local15 * _local20;
if (gl.noSet(_local26)) {
_local26 = 0;
}
moveStepsY.push(_local26);
_local5++;
}
}
if (_local10.mtype == "lin") {
_local5 = 0;
while (_local5 < _local3) {
var _local26 = ((_local5 + 1) * _local14) / _local3;
if (gl.noSet(_local26)) {
_local26 = 0;
}
moveStepsX.push(_local26);
_local26 = ((_local5 + 1) * _local12) / _local3;
if (gl.noSet(_local26)) {
_local26 = 0;
}
moveStepsY.push(_local26);
_local5++;
}
}
if (_local10.rtype == "sin") {
var _local15 = 0;
_local5 = 0;
while (_local5 < _local3) {
_local15 = _local15 + Math.abs(Math.sin(((_local5 + 1) * Math.PI) / _local3));
var _local26 = _local19 * _local15;
if (gl.noSet(_local26)) {
_local26 = 0;
}
moveStepsR.push(_local26);
_local5++;
}
}
if (_local10.rtype == "lin") {
_local5 = 0;
while (_local5 < _local3) {
var _local26 = ((_local5 + 1) * _local10.deltar) / _local3;
if (gl.noSet(_local26)) {
_local26 = 0;
}
moveStepsR.push(_local26);
_local5++;
}
}
finalX = (gl.noSet(_local14) ? (x) : (x + _local14));
finalY = (gl.noSet(_local12) ? (y) : (y + _local12));
finalR = (gl.noSet(_local10.deltar) ? (_rotation) : (_rotation + _local10.deltar));
} else if (_local10.action == "pause") {
} else if (_local10.action == "survive") {
_local29 = true;
if (_local10.stay == "1") {
_local27 = true;
} else {
outOfGame();
}
if (_local10.setTrans == "1") {
weaponTransparent = true;
splashTransparent = true;
}
if (_local10.stopMove == "1") {
canMove = false;
}
if (_local10.stopShoot == "1") {
weaponed = false;
}
} else if (_local10.action == "kill") {
changeHealth(-health);
} else if (_local10.action == "orbit") {
var _local8 = x;
var _local7 = y;
if (!gl.noSet(_local10.centerdeltax)) {
_local8 = x + _local10.centerdeltax;
}
if (!gl.noSet(_local10.centerdeltay)) {
_local7 = y + _local10.centerdeltay;
}
if (!gl.noSet(_local10.centerx)) {
_local8 = _local10.centerx;
}
if (!gl.noSet(_local10.centery)) {
_local7 = _local10.centery;
}
var _local25 = x - _local8;
var _local24 = y - _local7;
var _local6 = Math.sqrt((_local25 * _local25) + (_local24 * _local24));
var _local11 = Math.atan2(_local24, _local25) * PI2;
var _local28 = _local11 + _local10.deltaorbitr;
moveStepsX = new Array();
moveStepsY = new Array();
var _local18 = 0;
var _local3 = _local10.steps;
var _local5 = 0;
while (_local5 < _local3) {
_local18 = _local18 + Math.abs(Math.sin((_local5 * Math.PI) / _local3));
_local5++;
}
var _local19 = _local10.deltaorbitr / _local18;
var _local21 = _local10.deltar / _local18;
startX = x;
startY = y;
startR = _rotation;
if (_local10.otype == "lin") {
_local5 = 0;
while (_local5 < _local3) {
var _local26 = _local11 + (((_local5 + 1) * _local10.deltaorbitr) / _local3);
if (gl.noSet(_local26)) {
_local26 = 0;
}
var _local4 = _local8 + (_local6 * Math.cos(_local26 / PI2));
if (gl.noSet(_local4)) {
_local4 = 0;
}
var _local9 = _local7 + (_local6 * Math.sin(_local26 / PI2));
if (gl.noSet(_local4)) {
_local4 = 0;
}
moveStepsX.push(_local4);
moveStepsY.push(_local9);
_local5++;
}
}
if (_local10.otype == "sin") {
var _local15 = 0;
_local5 = 0;
while (_local5 < _local3) {
_local15 = _local15 + Math.abs(Math.sin(((_local5 + 1) * Math.PI) / _local3));
var _local26 = _local11 + (_local19 * _local15);
if (gl.noSet(_local26)) {
_local26 = 0;
}
var _local4 = _local8 + (_local6 * Math.cos(_local26 / PI2));
if (gl.noSet(_local4)) {
_local4 = 0;
}
var _local9 = _local7 + (_local6 * Math.sin(_local26 / PI2));
if (gl.noSet(_local4)) {
_local4 = 0;
}
moveStepsX.push(_local4);
moveStepsY.push(_local9);
_local5++;
}
}
finalX = (gl.noSet(_local10.deltaorbitr) ? x : (_local8 + (_local6 * Math.cos(_local28 / PI2))));
finalY = (gl.noSet(_local10.deltaorbitr) ? y : (_local7 + (_local6 * Math.sin(_local28 / PI2))));
if (_local10.rotateTile == 1) {
if (_local10.rtype == "lin") {
_local5 = 0;
while (_local5 < _local3) {
var _local26 = ((_local5 + 1) * _local10.deltar) / _local3;
if (gl.noSet(_local26)) {
_local26 = 0;
}
moveStepsR.push(_local26);
_local5++;
}
}
if (_local10.rtype == "sin") {
var _local15 = 0;
_local5 = 0;
while (_local5 < _local3) {
_local15 = _local15 + Math.abs(Math.sin(((_local5 + 1) * Math.PI) / _local3));
var _local26 = _local21 * _local15;
if (gl.noSet(_local26)) {
_local26 = 0;
}
moveStepsR.push(_local26);
_local5++;
}
}
finalR = (gl.noSet(_local10.deltar) ? _rotation : (_rotation + _local10.deltar));
}
}
moveStep = 0;
moveInPause = false;
if (_local10.startByHit == 1) {
moveInPause = true;
return(undefined);
}
}
if (canMove) {
var _local10 = moveDescr[moveAction];
var _local17 = 0;
var _local16 = 0;
var _local23 = 0;
if (_local10.action == "move") {
var _local26 = moveStepsX[moveStep];
if (_local26 != 0) {
_local17 = (startX + _local26) - x;
}
_local26 = moveStepsY[moveStep];
if (_local26 != 0) {
_local16 = (startY + _local26) - y;
}
_local26 = moveStepsR[moveStep];
if (_local26 != 0) {
_rotation = startR + _local26;
}
if (moveStep == _local10.steps) {
_local17 = finalX - x;
_local16 = finalY - y;
_local23 = finalR;
}
} else if (_local10.action == "pause") {
} else if (_local10.action == "orbit") {
var _local26 = moveStepsX[moveStep];
if (_local26 != 0) {
_local17 = moveStepsX[moveStep] - x;
}
_local26 = moveStepsY[moveStep];
if (_local26 != 0) {
_local16 = moveStepsY[moveStep] - y;
}
_local26 = moveStepsR[moveStep];
if (_local26 != 0) {
_rotation = startR + _local26;
}
if (moveStep == _local10.steps) {
_local17 = finalX - x;
_local16 = finalY - y;
_local23 = finalR;
}
}
if (dontCollideWhileMoving) {
freeWay = true;
} else {
var freeWay = (!gl.testSimpleCollisions(this, new Vector(_local17, _local16), _local23, new Array(gl.mt[gl.envS.playerName])));
}
if (freeWay) {
moveStep++;
if ((moveStep == _local10.steps) || (gl.noSet(_local10.steps))) {
moveStep = -1;
}
if ((Math.abs(_local17) > 0) || (Math.abs(_local16) > 0)) {
if (((_local10.scale == "x") || (_local10.scale == "xy")) || (_local10.scale == "yx")) {
if ((_local17 > 0) && (image._xscale < 100)) {
image._xscale = 100;
}
if ((_local17 < 0) && (image._xscale > -100)) {
image._xscale = -100;
}
}
if (((_local10.scale == "y") || (_local10.scale == "xy")) || (_local10.scale == "yx")) {
if ((_local16 < 0) && (image._yscale < 100)) {
image._yscale = 100;
}
if ((_local16 > 0) && (image._yscale > -100)) {
image._yscale = -100;
}
}
speed.define(_local17, _local16);
oldspeed.define(_local17, _local16);
moveMe(speed.__get__x(), speed.__get__y(), _local23);
}
} else if (stopAfterCollision) {
canMove = false;
}
}
}
}
super.oEF();
if (_local29) {
flyOut(false, true, _local27);
}
}
function moveAndCollide(tmpSpeed, sp) {
var _local3 = 0;
var _local7 = false;
var _local6 = new Vector(tmpSpeed.x, tmpSpeed.y);
while ((tmpSpeed.length > 0) && (_local3 <= gl.envS.maxIterations)) {
debug("\u0423\u0425\u041E\u0414\u0418\u041C \u0412 \u041A\u041E\u041B\u041B\u0418\u0417\u0418\u042E " + _local3);
var _local2 = gl.testCollisions(this, tmpSpeed, sp, _local3, true, false, pushWhileMove);
debug((((("\u0420\u0415\u0417\u0423\u041B\u042C\u0422\u0410\u0422 \u041E\u0411\u0420\u0410\u0411\u041E\u0422\u041A\u0418 \u041A\u041E\u041B\u041B\u0418\u0417\u0418\u0418: " + _local2.actualCrossed) + ", dx=") + _local2.dx) + ", dy=") + _local2.dy);
if (_local2.actualCrossed) {
if ((Math.abs(_local2.dx) > 0) || (Math.abs(_local2.dy) > 0)) {
_local2.coll.tile.moveAndCollide(new Vector(_local2.dxNo + (gl.envS.precisionOffset * gl.getSign(_local2.dxNo)), _local2.dyNo + (gl.envS.precisionOffset * gl.getSign(_local2.dyNo))));
_local2.coll.tile.inMove = true;
x = x + _local2.dx;
y = y + _local2.dy;
tmpSpeed.define(_local2.dxNo, _local2.dyNo);
_x = x;
_y = y;
initObj(true);
}
_local3++;
} else {
x = x + _local2.dx;
y = y + _local2.dy;
_x = x;
_y = y;
initObj(true);
_local3++;
}
}
}
function makeBang(num) {
super.makeBang(num);
}
function makeFiresCount() {
super.makeFiresCount(oldspeed.__get__angleGr());
}
function changeHealth(d) {
if ((d < 0) && (moveInPause)) {
moveInPause = false;
}
super.changeHealth(d);
}
var moveInPause = false;
}
Symbol 1052 MovieClip [__Packages.bullet] Frame 0
class bullet extends queuedObject
{
var speed, gravity, inQueue, off_top, gl, off_bottom, off_left, off_right, box, line, len, point1, point2, isBullet, passage, victims, fromPlayer, type, hitDamage, splashDamage, splashRadius, splashDelay, father, bulletExplode, bulletSound, point_new, _y, _x, point_old, bb_arr, _rotation, outQueue, removeMovieClip;
function bullet () {
super();
speed = new Vector(0, 0);
gravity = new Vector(0, 0);
inQueue(40);
off_top = -gl.envS.bulletOffset.top;
off_bottom = gl.envS.windowY + gl.envS.bulletOffset.bottom;
off_left = -gl.envS.bulletOffset.left;
off_right = gl.envS.windowX + gl.envS.bulletOffset.right;
if (gl.envS.bulletBoxDebug == 1) {
var _local4 = _root.bulletsBB.getNextHighestDepth();
box = _root.bulletsBB.createEmptyMovieClip("box" + _local4, _local4);
}
line = new Object();
len = 0;
point1 = new Object();
point2 = new Object();
isBullet = true;
passage = 1;
victims = new Array();
fromPlayer = false;
}
function setPlayer(isPlayer) {
fromPlayer = isPlayer;
}
function setType(t) {
type = t;
}
function setSpeed(s) {
speed.define(s, 0);
rotateMe();
}
function setAngle(a) {
speed.__set__angleGr(-a);
rotateMe();
}
function setGravity(g) {
gravity.define(0, g);
}
function setDamage(d) {
hitDamage = d;
}
function setLength(l) {
if (!gl.noSet(l)) {
len = l;
}
}
function setSplash(sDam, sRad, sDel) {
if (!gl.noSet(sDam)) {
splashDamage = sDam;
}
if (!gl.noSet(sRad)) {
splashRadius = sRad;
}
if (!gl.noSet(sDel)) {
splashDelay = sDel;
}
}
function setParent(ff) {
father = ff;
}
function setPassage(ff) {
passage = ff;
}
function setDecalls(be, bs) {
if (!gl.noSet(be)) {
bulletExplode = be;
}
if (!gl.noSet(bs)) {
bulletSound = bs;
}
}
function getBB() {
if (gl.noSet(point_new)) {
point_new = {x:_x, y:_y};
}
point_old = {x:point_new.x, y:point_new.y};
point_new = {x:_x, y:_y};
point1.x = point_new.x;
point1.y = point_new.y;
point2.x = point_old.x;
point2.y = point_old.y;
line.x1 = point2.x;
line.y1 = point2.y;
line.x2 = point1.x;
line.y2 = point1.y;
gl.countLine(line);
if (gl.noSet(bb_arr)) {
bb_arr = new Object();
bb_arr.max = new Object();
bb_arr.min = new Object();
}
bb_arr.max.x = Math.max(point1.x, point2.x);
bb_arr.min.x = Math.min(point1.x, point2.x);
bb_arr.max.y = Math.max(point1.y, point2.y);
bb_arr.min.y = Math.min(point1.y, point2.y);
if ((len > 0) && (len > line.length)) {
var _local3 = _x - (line.nndx * len);
var _local2 = _y - (line.nndy * len);
point2.x = _local3;
point2.y = _local2;
bb_arr.max.x = Math.max(point1.x, point2.x);
bb_arr.min.x = Math.min(point1.x, point2.x);
bb_arr.max.y = Math.max(point1.y, point2.y);
bb_arr.min.y = Math.min(point1.y, point2.y);
line.x1 = point2.x;
line.y1 = point2.y;
line.x2 = point1.x;
line.y2 = point1.y;
gl.countLine(line);
}
if (gl.envS.bulletBoxDebug == 1) {
box.clear();
box.lineStyle(0, 16711680);
box.drawRect(bb_arr.min.x, bb_arr.min.y, bb_arr.max.x, bb_arr.max.y);
}
}
function oEF() {
if (gravity.__get__length() > 0) {
speed.add(gravity);
}
var _local3 = (gl.frameX + _x) + speed.__get__x();
var _local2 = (gl.frameY + _y) + speed.__get__y();
var _local4 = speed.__get__x() / speed.__get__y();
if (_local3 > off_right) {
_local3 = off_right + 5;
var _local5 = (gl.frameX + _x) - _local3;
_local2 = (gl.frameY + _y) - (_local5 / _local4);
}
if (_local3 < off_left) {
_local3 = off_left - 5;
var _local5 = (gl.frameX + _x) - _local3;
_local2 = (gl.frameY + _y) - (_local5 / _local4);
}
if (_local2 < off_top) {
_local2 = off_top - 5;
var _local5 = (gl.frameY + _y) - _local2;
_local3 = (gl.frameX + _x) - (_local5 * _local4);
}
if (_local2 > off_bottom) {
_local2 = off_bottom + 5;
var _local5 = (gl.frameY + _y) - _local2;
_local3 = (gl.frameX + _x) - (_local5 * _local4);
}
_x = _local3 - gl.frameX;
_y = _local2 - gl.frameY;
getBB();
rotateMe();
gl.checkBullet(this);
checkMyPosition();
}
function rotateMe() {
_rotation = speed.__get__angleGr() + 90;
}
function die() {
outQueue();
gl.fires.remove(this);
if (!gl.noSet(box)) {
box.removeMovieClip();
}
removeMovieClip();
}
function checkMyPosition() {
if (_x <= ((-gl.frameX) + off_left)) {
die();
}
if (_x >= ((-gl.frameX) + off_right)) {
die();
}
if (_y <= ((-gl.frameY) + off_top)) {
die();
}
if (_y >= ((-gl.frameY) + off_bottom)) {
die();
}
}
function destroy() {
die();
}
function sendDamage(mc, x, y) {
if (gl.isChild(victims, mc)) {
return(true);
}
victims.add(mc);
mc.getDamage(this, hitDamage);
gl.checkSplashAll(this, x, y);
if (!gl.noSet(bulletExplode)) {
var _local6 = _root.frame[gl.envS.fxPlane];
var _local5 = _local6.getNextHighestDepth();
var _local3 = _local6.attachMovie(bulletExplode, "fx" + _local5, _local5);
_local3._x = x - gl.frameX;
_local3._y = y - gl.frameY;
_local3._rotation = Math.random() * 360;
}
if (!gl.noSet(bulletSound)) {
gl.sound.play(bulletSound, x);
}
passage = passage - mc.solid;
if (passage <= 0) {
return(false);
}
return(true);
}
}
Symbol 1053 MovieClip [__Packages.soundCollector] Frame 0
class soundCollector extends MovieClip
{
var col, getNextHighestDepth, createEmptyMovieClip;
function soundCollector () {
super();
col = new Array();
var _local8 = 0;
while (_local8 < arrayLength) {
var _local5 = getNextHighestDepth();
var _local6 = createEmptyMovieClip("mc_" + _local5, _local5);
var _local4 = new Sound(_local6);
_local4.onSoundComplete = scomplete;
var _local7 = {mc:_local6, snd:_local4, free:true, cont:false, pri:false};
_local4.link = _local7;
col.push(_local7);
_local8++;
}
_global.sound = this;
}
function set width(w) {
if (w >= 0) {
__width = w;
}
//return(width);
}
function get width() {
return(__width);
}
function set volume(v) {
if (v >= 0) {
__volume = v;
}
//return(volume);
}
function get volume() {
return(__volume);
}
function set enable(e) {
__enable = e;
if (!__enable) {
var _local2 = 0;
while (_local2 < arrayLength) {
col[_local2].snd.stop();
_local2++;
}
}
//return(enable);
}
function get enable() {
return(__enable);
}
function play(linkage, xpos, priority, num, volume) {
if (!__enable) {
return(undefined);
}
if (_global.noSet(priority)) {
priority = false;
}
if (_global.noSet(num)) {
num = 1;
}
if (num == -1) {
num = 1000000000 /* 0x3B9ACA00 */;
}
var _local12 = false;
var _local6 = -1;
var _local5 = 0;
var _local7 = -1;
var _local3 = 0;
while (_local3 < arrayLength) {
if (col[_local3].free || (_global.noSet(col[_local3].snd.position))) {
col[_local3].free = true;
_local6 = _local3;
break;
}
if (!col[_local3].pri) {
var _local4 = col[_local3].snd.position / col[_local3].snd.duration;
if (_local4 > _local5) {
_local5 = _local4;
_local7 = _local3;
}
}
_local3++;
}
if (_local6 == -1) {
if (priority) {
if (_global.envS.debug && (_global.envS.soundDebug)) {
_global.debug(((((("Sound collector: all slots busy, using slot " + _local7) + " (") + col[_local7].linkage) + ": ") + (col[_local7].snd.position / col[_local7].snd.duration)) + ")");
}
_local6 = _local7;
col[_local6].snd.stop();
} else if (_global.envS.debug && (_global.envS.soundDebug)) {
_global.debug("Sound collector: all slots busy, this sound skipping because of their low priority");
}
}
if (_local6 != -1) {
var _local8 = col[_local6];
_local8.snd.attachSound(linkage);
_local8.snd.setVolume(this.volume);
_local8.target = undefined;
if (!_global.noSet(xpos)) {
if (typeof(xpos) == "number") {
_local8.snd.setPan(calcPan(xpos));
}
if (typeof(xpos) == "movieclip") {
_local8.target = xpos;
}
} else {
_local8.snd.setPan(0);
}
_local8.snd.start(0, num);
_local8.free = false;
_local8.linkage = linkage;
_local8.pri = priority;
}
}
function stop(linkage) {
var _local2 = 0;
while (_local2 < arrayLength) {
if (col[_local2].linkage == linkage) {
col[_local2].snd.stop();
col[_local2].free = true;
}
_local2++;
}
}
function scomplete() {
var _local2 = this;
_local2.link.free = true;
}
function oEF() {
var _local3 = 0;
while (_local3 < arrayLength) {
if (!_global.noSet(col[_local3].target)) {
col[_local3].snd.setPan(calcPan(col[_local3].target._x));
}
_local3++;
}
}
function calcPan(xpos) {
return((((100 * xpos) / __width) * 2) - 100);
}
var arrayLength = 8;
var __volume = 100;
var __width = 100;
var __enable = true;
}
Symbol 928 MovieClip [#soundz] Frame 1
#initclip 23
Object.registerClass("#soundz", soundCollector);
#endinitclip
Symbol 933 Button
on (press) {
this._parent.soundOff();
this.gotoAndStop(2);
}
Symbol 935 Button
on (press) {
this._parent.soundOn();
this.gotoAndStop(1);
}
Symbol 936 MovieClip Frame 1
this.stop();
_root.soundStarter.gotoAndPlay("start");
sound.enable = true;
Symbol 936 MovieClip Frame 2
this.stop();
_root.soundStarter.gotoAndPlay("stop");
sound.enable = false;
Symbol 939 MovieClip Frame 1
_visible = false;
Symbol 939 MovieClip Frame 3
if (!sound.enable) {
gotoAndStop (1);
}
Symbol 939 MovieClip Frame 7
gotoAndStop (1);
Symbol 939 MovieClip Frame 12
gotoAndStop (1);
Symbol 945 Button
on (release) {
_root.noNewGame = true;
_global.sound.play("menu");
_root.gotoAndStop("help");
}
Symbol 950 Button
on (press) {
_global.sound.play("menu");
openSite();
}
Symbol 955 Button
on (release, keyPress "<Space>") {
var saved = SharedObject.getLocal(gameName, "/");
saved.data.levelDone = 0;
saved.flush();
_root.noNewGame = false;
_global.sound.play("menu");
_root.gotoAndStop("help");
}
Symbol 960 Button
on (release) {
_global.levelNum = startLevel;
_root.noNewGame = false;
_global.sound.play("menu");
_root.gotoAndStop("help");
}
Symbol 961 MovieClip Frame 1
stop();
Symbol 961 MovieClip Frame 2
stop();
Symbol 969 Button
on (release, keyPress "<Space>") {
_global.diffLevel = 2;
_global.sound.play("menu");
_root.gotoAndStop("game");
}
Symbol 974 Button
on (release) {
_global.sound.play("menu");
gotoAndStop ("menu");
}
Symbol 981 Button
on (release) {
_global.diffLevel = 1;
_global.sound.play("menu");
_root.gotoAndStop("game");
}
Symbol 983 Button
on (release, keyPress "<Space>") {
_global.diffLevel = 2;
_global.sound.play("menu");
_root.gotoAndStop("game");
}
Symbol 985 Button
on (release) {
_global.diffLevel = 3;
_global.sound.play("menu");
_root.gotoAndStop("game");
}
Symbol 986 Button
on (release, keyPress "<Space>") {
if (mode == 1) {
_global.sound.play("menu");
this.f = makeBreef;
this.f(true);
delete this.f;
} else if (mode == 2) {
setPlayerSettings();
_global.sound.play("menu");
_root.gotoAndStop("level");
}
}
Symbol 990 MovieClip Frame 1
_x = 0;
_y = 0;
delete _global.selectedPlane;
Symbol 997 MovieClip Frame 1
stop();
a._visible = false;
Symbol 1000 MovieClip Frame 1
stop();
a._visible = false;
Symbol 1003 MovieClip Frame 1
stop();
a._visible = false;
Symbol 1006 MovieClip Frame 1
stop();
a._visible = false;
Symbol 1007 MovieClip Frame 1
for (var i in this) {
this[i]._visible = false;
this[i].stop();
}
Symbol 1024 Button
on (release) {
_global.sound.play("menu");
keyGetter.onKeyDown(true);
}
Symbol 1025 Button
on (release) {
stopAllEngines();
_root.gotoAndStop("menu");
_global.sound.play("menu");
}
Symbol 1026 MovieClip Frame 1
_x = 0;
_y = 0;
ttz = _global.envS.textZ;
title.text = ttz.gamePausedTitle;
tf.htmlText = ttz.gamePausedString;
Symbol 1028 MovieClip Frame 1
stop();
Symbol 1035 Button
on (release) {
_global.sound.play("menu");
if (_global.levelsSet["level_" + (levelNum + 1)] != undefined) {
_root.gotoAndStop("game");
} else if (!flag) {
_root.endGameOutput();
} else {
openSite();
_root.gotoAndStop("menu");
}
}
Symbol 1036 MovieClip Frame 1
_x = 0;
_y = 0;
Symbol 1041 MovieClip Frame 1