Merge branch 'v3.0' into brick_fix
|
|
@ -135,6 +135,7 @@ public class DynmapCore implements DynmapCommonAPI {
|
|||
private int fullrenderplayerlimit; /* Number of online players that will cause fullrender processing to pause */
|
||||
private int updateplayerlimit; /* Number of online players that will cause update processing to pause */
|
||||
private String publicURL; // If set, public HRL for accessing dynmap (declared by administrator)
|
||||
private String noPermissionMsg;
|
||||
private boolean didfullpause;
|
||||
private boolean didupdatepause;
|
||||
private Map<String, LinkedList<String>> ids_by_ip = new HashMap<String, LinkedList<String>>();
|
||||
|
|
@ -571,6 +572,9 @@ public class DynmapCore implements DynmapCommonAPI {
|
|||
Log.info("EXPERIMENTAL: chunk migration enabled");
|
||||
|
||||
publicURL = configuration.getString("publicURL", "");
|
||||
|
||||
/* Send this message if the player does not have permission to use the command */
|
||||
noPermissionMsg = configuration.getString("noPermissionMsg", "You don't have permission to use this command!");
|
||||
|
||||
/* Load preupdate/postupdate commands */
|
||||
ImageIOManager.preUpdateCommand = configuration.getString("custom-commands/image-updates/preupdatecommand", "");
|
||||
|
|
@ -2097,7 +2101,7 @@ public class DynmapCore implements DynmapCommonAPI {
|
|||
if (!(sender instanceof DynmapPlayer) || sender.isOp()) {
|
||||
return true;
|
||||
} else if (!sender.hasPrivilege(permission.toLowerCase())) {
|
||||
sender.sendMessage("You don't have permission to use this command!");
|
||||
sender.sendMessage(noPermissionMsg);
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
|
|
|
|||
|
|
@ -1,8 +1,10 @@
|
|||
package org.dynmap.common.chunk;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.ListIterator;
|
||||
import java.util.*;
|
||||
import java.util.concurrent.atomic.AtomicInteger;
|
||||
import java.util.function.BiConsumer;
|
||||
import java.util.function.Consumer;
|
||||
import java.util.function.Supplier;
|
||||
|
||||
import org.dynmap.DynmapChunk;
|
||||
import org.dynmap.DynmapCore;
|
||||
|
|
@ -37,6 +39,7 @@ public abstract class GenericMapChunkCache extends MapChunkCache {
|
|||
private int snapcnt;
|
||||
private GenericChunk[] snaparray; /* Index = (x-x_min) + ((z-z_min)*x_dim) */
|
||||
private boolean[][] isSectionNotEmpty; /* Indexed by snapshot index, then by section index */
|
||||
private AtomicInteger loadingChunks = new AtomicInteger(0); //the amount of threads loading chunks at this moment, used by async loading
|
||||
|
||||
private static final BlockStep unstep[] = { BlockStep.X_MINUS, BlockStep.Y_MINUS, BlockStep.Z_MINUS,
|
||||
BlockStep.X_PLUS, BlockStep.Y_PLUS, BlockStep.Z_PLUS };
|
||||
|
|
@ -697,6 +700,14 @@ public abstract class GenericMapChunkCache extends MapChunkCache {
|
|||
protected abstract GenericChunk getLoadedChunk(DynmapChunk ch);
|
||||
// Load generic chunk from unloaded chunk
|
||||
protected abstract GenericChunk loadChunk(DynmapChunk ch);
|
||||
// Load generic chunk from existing and already loaded chunk async
|
||||
protected Supplier<GenericChunk> getLoadedChunkAsync(DynmapChunk ch) {
|
||||
throw new IllegalStateException("Not implemeted");
|
||||
}
|
||||
// Load generic chunks from unloaded chunk async
|
||||
protected Supplier<GenericChunk> loadChunkAsync(DynmapChunk ch){
|
||||
throw new IllegalStateException("Not implemeted");
|
||||
}
|
||||
|
||||
/**
|
||||
* Read NBT data from loaded chunks - needs to be called from server/world
|
||||
|
|
@ -754,10 +765,82 @@ public abstract class GenericMapChunkCache extends MapChunkCache {
|
|||
return cnt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Read NBT data from loaded chunks - do not needs to be called from server/world
|
||||
* Will throw {@link IllegalStateException} if not supporting
|
||||
*/
|
||||
public void getLoadedChunksAsync() {
|
||||
class SimplePair { //simple pair of the supplier that finishes read async, and a consumer that also finish his work async
|
||||
final Supplier<GenericChunk> supplier;
|
||||
final BiConsumer<GenericChunk, Long> consumer;
|
||||
|
||||
SimplePair(Supplier<GenericChunk> supplier, BiConsumer<GenericChunk, Long> consumer) {
|
||||
this.supplier = supplier;
|
||||
this.consumer = consumer;
|
||||
}
|
||||
}
|
||||
if (!dw.isLoaded()) {
|
||||
isempty = true;
|
||||
unloadChunks();
|
||||
return;
|
||||
}
|
||||
List<SimplePair> lastApply = new ArrayList<>();
|
||||
for (DynmapChunk dynmapChunk : chunks) {
|
||||
long startTime = System.nanoTime();
|
||||
int chunkIndex = (dynmapChunk.x - x_min) + (dynmapChunk.z - z_min) * x_dim;
|
||||
if (snaparray[chunkIndex] != null)
|
||||
continue; // Skip if already processed
|
||||
|
||||
boolean vis = isChunkVisible(dynmapChunk);
|
||||
|
||||
/* Check if cached chunk snapshot found */
|
||||
if (tryChunkCache(dynmapChunk, vis)) {
|
||||
endChunkLoad(startTime, ChunkStats.CACHED_SNAPSHOT_HIT);
|
||||
}
|
||||
// If chunk is loaded and not being unloaded, we're grabbing its NBT data
|
||||
else {
|
||||
// Get generic chunk from already loaded chunk, if we can
|
||||
Supplier<GenericChunk> supplier = getLoadedChunkAsync(dynmapChunk);
|
||||
long startPause = System.nanoTime();
|
||||
BiConsumer<GenericChunk, Long> consumer = (ss, reloadTime) -> {
|
||||
if (ss == null) return;
|
||||
long pause = reloadTime - startPause;
|
||||
if (vis) { // If visible
|
||||
prepChunkSnapshot(dynmapChunk, ss);
|
||||
} else {
|
||||
if (hidestyle == HiddenChunkStyle.FILL_STONE_PLAIN) {
|
||||
ss = getStone();
|
||||
} else if (hidestyle == HiddenChunkStyle.FILL_OCEAN) {
|
||||
ss = getOcean();
|
||||
} else {
|
||||
ss = getEmpty();
|
||||
}
|
||||
}
|
||||
snaparray[chunkIndex] = ss;
|
||||
endChunkLoad(startTime - pause, ChunkStats.LOADED_CHUNKS);
|
||||
|
||||
};
|
||||
lastApply.add(new SimplePair(supplier, consumer));
|
||||
}
|
||||
}
|
||||
//impact on the main thread should be minimal, so we plan and finish the work after main thread finished it's part
|
||||
lastApply.forEach(simplePair -> {
|
||||
long reloadWork = System.nanoTime();
|
||||
simplePair.consumer.accept(simplePair.supplier.get(), reloadWork);
|
||||
});
|
||||
}
|
||||
|
||||
@Override
|
||||
public int loadChunks(int max_to_load) {
|
||||
return getLoadedChunks() + readChunks(max_to_load);
|
||||
}
|
||||
|
||||
/**
|
||||
* Prepare the chunks async
|
||||
*/
|
||||
public void loadChunksAsync() {
|
||||
getLoadedChunksAsync();
|
||||
readChunksAsync();
|
||||
}
|
||||
|
||||
public int readChunks(int max_to_load) {
|
||||
|
|
@ -840,6 +923,96 @@ public abstract class GenericMapChunkCache extends MapChunkCache {
|
|||
return cnt;
|
||||
}
|
||||
|
||||
public void readChunksAsync() {
|
||||
class SimplePair { //pair of the chunk and the data which is readed async
|
||||
private final Supplier<GenericChunk> supplier;
|
||||
private final DynmapChunk chunk;
|
||||
|
||||
SimplePair(DynmapChunk chunk) {
|
||||
this.chunk = chunk;
|
||||
this.supplier = loadChunkAsync(chunk);
|
||||
}
|
||||
}
|
||||
if (!dw.isLoaded()) {
|
||||
isempty = true;
|
||||
unloadChunks();
|
||||
return;
|
||||
}
|
||||
|
||||
List<DynmapChunk> chunks;
|
||||
if (iterator == null) {
|
||||
iterator = Collections.emptyListIterator();
|
||||
chunks = new ArrayList<>(this.chunks);
|
||||
} else {
|
||||
chunks = new ArrayList<>();
|
||||
iterator.forEachRemaining(chunks::add);
|
||||
}
|
||||
//if before increent was 0, means that we are the first, so we need to set this
|
||||
if (loadingChunks.getAndIncrement() == 0) {
|
||||
DynmapCore.setIgnoreChunkLoads(true);
|
||||
}
|
||||
|
||||
try {
|
||||
List<DynmapChunk> cached = new ArrayList<>();
|
||||
List<SimplePair> notCached = new ArrayList<>();
|
||||
|
||||
iterator.forEachRemaining(chunks::add);
|
||||
chunks.stream()
|
||||
.filter(chunk -> snaparray[(chunk.x - x_min) + (chunk.z - z_min) * x_dim] == null)
|
||||
.forEach(chunk -> {
|
||||
if (cache.getSnapshot(dw.getName(), chunk.x, chunk.z) == null) {
|
||||
notCached.add(new SimplePair(chunk));
|
||||
} else {
|
||||
cached.add(chunk);
|
||||
}
|
||||
});
|
||||
|
||||
cached.forEach(chunk -> {
|
||||
long startTime = System.nanoTime();
|
||||
tryChunkCache(chunk, isChunkVisible(chunk));
|
||||
endChunkLoad(startTime, ChunkStats.CACHED_SNAPSHOT_HIT);
|
||||
});
|
||||
notCached.forEach(chunkSupplier -> {
|
||||
long startTime = System.nanoTime();
|
||||
GenericChunk chunk = chunkSupplier.supplier.get();
|
||||
DynmapChunk dynmapChunk = chunkSupplier.chunk;
|
||||
if (chunk != null) {
|
||||
// If hidden
|
||||
if (isChunkVisible(dynmapChunk)) {
|
||||
// Prep snapshot
|
||||
prepChunkSnapshot(dynmapChunk, chunk);
|
||||
} else {
|
||||
if (hidestyle == HiddenChunkStyle.FILL_STONE_PLAIN) {
|
||||
chunk = getStone();
|
||||
} else if (hidestyle == HiddenChunkStyle.FILL_OCEAN) {
|
||||
chunk = getOcean();
|
||||
} else {
|
||||
chunk = getEmpty();
|
||||
}
|
||||
}
|
||||
snaparray[(dynmapChunk.x - x_min) + (dynmapChunk.z - z_min) * x_dim] = chunk;
|
||||
endChunkLoad(startTime, ChunkStats.UNLOADED_CHUNKS);
|
||||
} else {
|
||||
endChunkLoad(startTime, ChunkStats.UNGENERATED_CHUNKS);
|
||||
}
|
||||
});
|
||||
|
||||
isempty = true;
|
||||
/* Fill missing chunks with empty dummy chunk */
|
||||
for (int i = 0; i < snaparray.length; i++) {
|
||||
if (snaparray[i] == null) {
|
||||
snaparray[i] = getEmpty();
|
||||
} else if (!snaparray[i].isEmpty) {
|
||||
isempty = false;
|
||||
}
|
||||
}
|
||||
} finally {
|
||||
if (loadingChunks.decrementAndGet() == 0) {
|
||||
DynmapCore.setIgnoreChunkLoads(false);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Test if done loading
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -468,7 +468,7 @@ public class PostgreSQLMapStorage extends MapStorage {
|
|||
doUpdate(c, "CREATE TABLE " + tableStandaloneFiles + " (FileName VARCHAR(128) NOT NULL, ServerID BIGINT NOT NULL DEFAULT 0, Content BYTEA, PRIMARY KEY (FileName, ServerID))");
|
||||
doUpdate(c, "CREATE INDEX " + tableMaps + "_idx ON " + tableMaps + "(WorldID, MapID, Variant, ServerID)");
|
||||
doUpdate(c, "CREATE TABLE " + tableSchemaVersion + " (level INT PRIMARY KEY NOT NULL)");
|
||||
doUpdate(c, "INSERT INTO " + tableSchemaVersion + " (level) VALUES (3)");
|
||||
doUpdate(c, "INSERT INTO " + tableSchemaVersion + " (level) VALUES (4)");
|
||||
version = 4; // initialzed to current schema
|
||||
} catch (SQLException x) {
|
||||
logSQLException("Error creating tables", x);
|
||||
|
|
|
|||
|
|
@ -10,7 +10,8 @@
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
|
||||
<!-- These 2 lines make us fullscreen on apple mobile products - remove if you don't like that -->
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
||||
<meta name="theme-color" content="#000000">
|
||||
|
||||
<link rel="icon" href="images/dynmap.ico" type="image/ico" />
|
||||
|
||||
|
|
@ -54,4 +55,4 @@
|
|||
|
||||
<div id="mcmap"></div>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -74,7 +74,7 @@ DynMap.prototype = {
|
|||
formatUrl: function(name, options) {
|
||||
var url = this.options.url[name];
|
||||
$.each(options, function(n,v) {
|
||||
url = url.replace("{" + n + "}", v);
|
||||
url = url.replace("{" + n + "}", encodeURIComponent(v));
|
||||
});
|
||||
return url;
|
||||
},
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ componentconstructors['markers'] = function(dynmap, configuration) {
|
|||
|
||||
function loadmarkers(world) {
|
||||
removeAllMarkers();
|
||||
var url = concatURL(dynmap.options.url.markers, '_markers_/marker_'+world+'.json');
|
||||
var url = concatURL(dynmap.options.url.markers, '_markers_/marker_' + encodeURIComponent(world) + '.json');
|
||||
|
||||
$.getJSON(url, function(data) {
|
||||
var ts = data.timestamp;
|
||||
|
|
|
|||
|
|
@ -355,15 +355,19 @@ patchblock:id=ladder,data=6,data=7,patch0=VertX0In
|
|||
# Wall sign - facing east
|
||||
[-1.13.2]patchblock:id=wall_sign,data=0-1,patch0=WSignFront,patch1=WSignBack,patch2=WSignTop,patch3=WSignBottom,patch4=WSignLeft,patch5=WSignRight
|
||||
[1.14-]patchblock:id=oak_wall_sign,id=birch_wall_sign,id=spruce_wall_sign,id=acacia_wall_sign,id=jungle_wall_sign,id=dark_oak_wall_sign,data=0-1,patch0=WSignFront,patch1=WSignBack,patch2=WSignTop,patch3=WSignBottom,patch4=WSignLeft,patch5=WSignRight
|
||||
[1.19-]patchblock:id=mangrove_wall_sign,data=0-1,patch0=WSignFront,patch1=WSignBack,patch2=WSignTop,patch3=WSignBottom,patch4=WSignLeft,patch5=WSignRight
|
||||
# Wall sign - facing west
|
||||
[-1.13.2]patchblock:id=wall_sign,data=2-3,patch0=WSignFront@180,patch1=WSignBack@180,patch2=WSignTop@180,patch3=WSignBottom@180,patch4=WSignLeft@180,patch5=WSignRight@180
|
||||
[1.14-]patchblock:id=oak_wall_sign,id=birch_wall_sign,id=spruce_wall_sign,id=acacia_wall_sign,id=jungle_wall_sign,id=dark_oak_wall_sign,data=2-3,patch0=WSignFront@180,patch1=WSignBack@180,patch2=WSignTop@180,patch3=WSignBottom@180,patch4=WSignLeft@180,patch5=WSignRight@180
|
||||
[1.19-]patchblock:id=mangrove_wall_sign,data=2-3,patch0=WSignFront@180,patch1=WSignBack@180,patch2=WSignTop@180,patch3=WSignBottom@180,patch4=WSignLeft@180,patch5=WSignRight@180
|
||||
# Wall sign - facing north
|
||||
[-1.13.2]patchblock:id=wall_sign,data=4-5,patch0=WSignFront@270,patch1=WSignBack@270,patch2=WSignTop@270,patch3=WSignBottom@270,patch4=WSignLeft@270,patch5=WSignRight@270
|
||||
[1.14-]patchblock:id=oak_wall_sign,id=birch_wall_sign,id=spruce_wall_sign,id=acacia_wall_sign,id=jungle_wall_sign,id=dark_oak_wall_sign,data=4-5,patch0=WSignFront@270,patch1=WSignBack@270,patch2=WSignTop@270,patch3=WSignBottom@270,patch4=WSignLeft@270,patch5=WSignRight@270
|
||||
[1.19-]patchblock:id=mangrove_wall_sign,data=4-5,patch0=WSignFront@270,patch1=WSignBack@270,patch2=WSignTop@270,patch3=WSignBottom@270,patch4=WSignLeft@270,patch5=WSignRight@270
|
||||
# Wall sign - facing south
|
||||
[-1.13.2]patchblock:id=wall_sign,data=6-7,patch0=WSignFront@90,patch1=WSignBack@90,patch2=WSignTop@90,patch3=WSignBottom@90,patch4=WSignLeft@90,patch5=WSignRight@90
|
||||
[1.14-]patchblock:id=oak_wall_sign,id=birch_wall_sign,id=spruce_wall_sign,id=acacia_wall_sign,id=jungle_wall_sign,id=dark_oak_wall_sign,data=6-7,patch0=WSignFront@90,patch1=WSignBack@90,patch2=WSignTop@90,patch3=WSignBottom@90,patch4=WSignLeft@90,patch5=WSignRight@90
|
||||
[1.19-]patchblock:id=mangrove_wall_sign,data=6-7,patch0=WSignFront@90,patch1=WSignBack@90,patch2=WSignTop@90,patch3=WSignBottom@90,patch4=WSignLeft@90,patch5=WSignRight@90
|
||||
|
||||
# Redstone wire
|
||||
customblock:id=redstone_wire,class=org.dynmap.hdmap.renderer.RedstoneWireStateRenderer
|
||||
|
|
@ -372,51 +376,67 @@ ignore-updates:id=redstone_wire
|
|||
# Signpost - facing west
|
||||
[-1.13.2]patchblock:id=sign,data=0-1,patch0=SignFront@180,patch1=SignBack@180,patch2=SignTop@180,patch3=SignBottom@180,patch4=SignLeft@180,patch5=SignRight@180,patch6=PostFront@180,patch7=PostBack@180,patch8=PostLeft@180,patch9=PostRight@180
|
||||
[1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=0-1,patch0=SignFront@180,patch1=SignBack@180,patch2=SignTop@180,patch3=SignBottom@180,patch4=SignLeft@180,patch5=SignRight@180,patch6=PostFront@180,patch7=PostBack@180,patch8=PostLeft@180,patch9=PostRight@180
|
||||
[1.19-]patchblock:id=mangrove_sign,data=0-1,patch0=SignFront@180,patch1=SignBack@180,patch2=SignTop@180,patch3=SignBottom@180,patch4=SignLeft@180,patch5=SignRight@180,patch6=PostFront@180,patch7=PostBack@180,patch8=PostLeft@180,patch9=PostRight@180
|
||||
# Signpost - facing north
|
||||
[-1.13.2]patchblock:id=sign,data=8-9,patch0=SignFront@270,patch1=SignBack@270,patch2=SignTop@270,patch3=SignBottom@270,patch4=SignLeft@270,patch5=SignRight@270,patch6=PostFront@270,patch7=PostBack@270,patch8=PostLeft@270,patch9=PostRight@270
|
||||
[1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=8-9,patch0=SignFront@270,patch1=SignBack@270,patch2=SignTop@270,patch3=SignBottom@270,patch4=SignLeft@270,patch5=SignRight@270,patch6=PostFront@270,patch7=PostBack@270,patch8=PostLeft@270,patch9=PostRight@270
|
||||
[1.19-]patchblock:id=mangrove_sign,data=8-9,patch0=SignFront@270,patch1=SignBack@270,patch2=SignTop@270,patch3=SignBottom@270,patch4=SignLeft@270,patch5=SignRight@270,patch6=PostFront@270,patch7=PostBack@270,patch8=PostLeft@270,patch9=PostRight@270
|
||||
# Signpost - facing east
|
||||
[-1.13.2]patchblock:id=sign,data=16-17,patch0=SignFront,patch1=SignBack,patch2=SignTop,patch3=SignBottom,patch4=SignLeft,patch5=SignRight,patch6=PostFront,patch7=PostBack,patch8=PostLeft,patch9=PostRight
|
||||
[1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=16-17,patch0=SignFront,patch1=SignBack,patch2=SignTop,patch3=SignBottom,patch4=SignLeft,patch5=SignRight,patch6=PostFront,patch7=PostBack,patch8=PostLeft,patch9=PostRight
|
||||
[1.19-]patchblock:id=mangrove_sign,data=16-17,patch0=SignFront,patch1=SignBack,patch2=SignTop,patch3=SignBottom,patch4=SignLeft,patch5=SignRight,patch6=PostFront,patch7=PostBack,patch8=PostLeft,patch9=PostRight
|
||||
# Signpost - facing south
|
||||
[-1.13.2]patchblock:id=sign,data=24-25,patch0=SignFront@90,patch1=SignBack@90,patch2=SignTop@90,patch3=SignBottom@90,patch4=SignLeft@90,patch5=SignRight@90,patch6=PostFront@90,patch7=PostBack@90,patch8=PostLeft@90,patch9=PostRight@90
|
||||
[1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=24-25,patch0=SignFront@90,patch1=SignBack@90,patch2=SignTop@90,patch3=SignBottom@90,patch4=SignLeft@90,patch5=SignRight@90,patch6=PostFront@90,patch7=PostBack@90,patch8=PostLeft@90,patch9=PostRight@90
|
||||
[1.19-]patchblock:id=mangrove_sign,data=24-25,patch0=SignFront@90,patch1=SignBack@90,patch2=SignTop@90,patch3=SignBottom@90,patch4=SignLeft@90,patch5=SignRight@90,patch6=PostFront@90,patch7=PostBack@90,patch8=PostLeft@90,patch9=PostRight@90
|
||||
# Signpost - facing northwest
|
||||
[-1.13.2]patchblock:id=sign,data=4-5,patch0=SignFront@225,patch1=SignBack@225,patch2=SignTop@225,patch3=SignBottom@225,patch4=SignLeft@225,patch5=SignRight@225,patch6=PostFront@225,patch7=PostBack@225,patch8=PostLeft@225,patch9=PostRight@225
|
||||
[1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=4-5,patch0=SignFront@225,patch1=SignBack@225,patch2=SignTop@225,patch3=SignBottom@225,patch4=SignLeft@225,patch5=SignRight@225,patch6=PostFront@225,patch7=PostBack@225,patch8=PostLeft@225,patch9=PostRight@225
|
||||
[1.19-]patchblock:id=mangrove_sign,data=4-5,patch0=SignFront@225,patch1=SignBack@225,patch2=SignTop@225,patch3=SignBottom@225,patch4=SignLeft@225,patch5=SignRight@225,patch6=PostFront@225,patch7=PostBack@225,patch8=PostLeft@225,patch9=PostRight@225
|
||||
# Signpost - facing northeast
|
||||
[-1.13.2]patchblock:id=sign,data=12-13,patch0=SignFront@315,patch1=SignBack@315,patch2=SignTop@315,patch3=SignBottom@315,patch4=SignLeft@315,patch5=SignRight@315,patch6=PostFront@315,patch7=PostBack@315,patch8=PostLeft@315,patch9=PostRight@315
|
||||
[1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=12-13,patch0=SignFront@315,patch1=SignBack@315,patch2=SignTop@315,patch3=SignBottom@315,patch4=SignLeft@315,patch5=SignRight@315,patch6=PostFront@315,patch7=PostBack@315,patch8=PostLeft@315,patch9=PostRight@315
|
||||
[1.19-]patchblock:id=mangrove_sign,data=12-13,patch0=SignFront@315,patch1=SignBack@315,patch2=SignTop@315,patch3=SignBottom@315,patch4=SignLeft@315,patch5=SignRight@315,patch6=PostFront@315,patch7=PostBack@315,patch8=PostLeft@315,patch9=PostRight@315
|
||||
# Signpost - facing southeast
|
||||
[-1.13.2]patchblock:id=sign,data=20-21,patch0=SignFront@45,patch1=SignBack@45,patch2=SignTop@45,patch3=SignBottom@45,patch4=SignLeft@45,patch5=SignRight@45,patch6=PostFront@45,patch7=PostBack@45,patch8=PostLeft@45,patch9=PostRight@45
|
||||
[1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=20-21,patch0=SignFront@45,patch1=SignBack@45,patch2=SignTop@45,patch3=SignBottom@45,patch4=SignLeft@45,patch5=SignRight@45,patch6=PostFront@45,patch7=PostBack@45,patch8=PostLeft@45,patch9=PostRight@45
|
||||
[1.19-]patchblock:id=mangrove_sign,data=20-21,patch0=SignFront@45,patch1=SignBack@45,patch2=SignTop@45,patch3=SignBottom@45,patch4=SignLeft@45,patch5=SignRight@45,patch6=PostFront@45,patch7=PostBack@45,patch8=PostLeft@45,patch9=PostRight@45
|
||||
# Signpost - facing southwest
|
||||
[-1.13.2]patchblock:id=sign,data=28-29,patch0=SignFront@135,patch1=SignBack@135,patch2=SignTop@135,patch3=SignBottom@135,patch4=SignLeft@135,patch5=SignRight@135,patch6=PostFront@135,patch7=PostBack@135,patch8=PostLeft@135,patch9=PostRight@135
|
||||
[1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=28-29,patch0=SignFront@135,patch1=SignBack@135,patch2=SignTop@135,patch3=SignBottom@135,patch4=SignLeft@135,patch5=SignRight@135,patch6=PostFront@135,patch7=PostBack@135,patch8=PostLeft@135,patch9=PostRight@135
|
||||
[1.19-]patchblock:id=mangrove_sign,data=28-29,patch0=SignFront@135,patch1=SignBack@135,patch2=SignTop@135,patch3=SignBottom@135,patch4=SignLeft@135,patch5=SignRight@135,patch6=PostFront@135,patch7=PostBack@135,patch8=PostLeft@135,patch9=PostRight@135
|
||||
# Signpost - facing west-northwest
|
||||
[-1.13.2]patchblock:id=sign,data=2-3,patch0=SignFront@203,patch1=SignBack@203,patch2=SignTop@203,patch3=SignBottom@203,patch4=SignLeft@203,patch5=SignRight@203,patch6=PostFront@203,patch7=PostBack@203,patch8=PostLeft@203,patch9=PostRight@203
|
||||
[1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=2-3,patch0=SignFront@203,patch1=SignBack@203,patch2=SignTop@203,patch3=SignBottom@203,patch4=SignLeft@203,patch5=SignRight@203,patch6=PostFront@203,patch7=PostBack@203,patch8=PostLeft@203,patch9=PostRight@203
|
||||
[1.19-]patchblock:id=mangrove_sign,data=2-3,patch0=SignFront@203,patch1=SignBack@203,patch2=SignTop@203,patch3=SignBottom@203,patch4=SignLeft@203,patch5=SignRight@203,patch6=PostFront@203,patch7=PostBack@203,patch8=PostLeft@203,patch9=PostRight@203
|
||||
# Signpost - facing north-northeast
|
||||
[-1.13.2]patchblock:id=sign,data=10-11,patch0=SignFront@293,patch1=SignBack@293,patch2=SignTop@293,patch3=SignBottom@293,patch4=SignLeft@293,patch5=SignRight@293,patch6=PostFront@293,patch7=PostBack@293,patch8=PostLeft@293,patch9=PostRight@293
|
||||
[1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=10-11,patch0=SignFront@293,patch1=SignBack@293,patch2=SignTop@293,patch3=SignBottom@293,patch4=SignLeft@293,patch5=SignRight@293,patch6=PostFront@293,patch7=PostBack@293,patch8=PostLeft@293,patch9=PostRight@293
|
||||
[1.19-]patchblock:id=mangrove_sign,data=10-11,patch0=SignFront@293,patch1=SignBack@293,patch2=SignTop@293,patch3=SignBottom@293,patch4=SignLeft@293,patch5=SignRight@293,patch6=PostFront@293,patch7=PostBack@293,patch8=PostLeft@293,patch9=PostRight@293
|
||||
# Signpost - facing north-northeast
|
||||
[-1.13.2]patchblock:id=sign,data=18-19,patch0=SignFront@23,patch1=SignBack@23,patch2=SignTop@23,patch3=SignBottom@23,patch4=SignLeft@23,patch5=SignRight@23,patch6=PostFront@23,patch7=PostBack@23,patch8=PostLeft@23,patch9=PostRight@23
|
||||
[1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=18-19,patch0=SignFront@23,patch1=SignBack@23,patch2=SignTop@23,patch3=SignBottom@23,patch4=SignLeft@23,patch5=SignRight@23,patch6=PostFront@23,patch7=PostBack@23,patch8=PostLeft@23,patch9=PostRight@23
|
||||
[1.19-]patchblock:id=mangrove_sign,data=18-19,patch0=SignFront@23,patch1=SignBack@23,patch2=SignTop@23,patch3=SignBottom@23,patch4=SignLeft@23,patch5=SignRight@23,patch6=PostFront@23,patch7=PostBack@23,patch8=PostLeft@23,patch9=PostRight@23
|
||||
# Signpost - facing north-northeast
|
||||
[-1.13.2]patchblock:id=sign,data=26-27,patch0=SignFront@113,patch1=SignBack@113,patch2=SignTop@113,patch3=SignBottom@113,patch4=SignLeft@113,patch5=SignRight@113,patch6=PostFront@113,patch7=PostBack@113,patch8=PostLeft@113,patch9=PostRight@113
|
||||
[1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=26-27,patch0=SignFront@113,patch1=SignBack@113,patch2=SignTop@113,patch3=SignBottom@113,patch4=SignLeft@113,patch5=SignRight@113,patch6=PostFront@113,patch7=PostBack@113,patch8=PostLeft@113,patch9=PostRight@113
|
||||
[1.19-]patchblock:id=mangrove_sign,data=26-27,patch0=SignFront@113,patch1=SignBack@113,patch2=SignTop@113,patch3=SignBottom@113,patch4=SignLeft@113,patch5=SignRight@113,patch6=PostFront@113,patch7=PostBack@113,patch8=PostLeft@113,patch9=PostRight@113
|
||||
# Signpost - facing west-southwest
|
||||
[-1.13.2]patchblock:id=sign,data=30-31,patch0=SignFront@157,patch1=SignBack@157,patch2=SignTop@157,patch3=SignBottom@157,patch4=SignLeft@157,patch5=SignRight@157,patch6=PostFront@157,patch7=PostBack@157,patch8=PostLeft@157,patch9=PostRight@157
|
||||
[1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=30-31,patch0=SignFront@157,patch1=SignBack@157,patch2=SignTop@157,patch3=SignBottom@157,patch4=SignLeft@157,patch5=SignRight@157,patch6=PostFront@157,patch7=PostBack@157,patch8=PostLeft@157,patch9=PostRight@157
|
||||
[1.19-]patchblock:id=mangrove_sign,data=30-31,patch0=SignFront@157,patch1=SignBack@157,patch2=SignTop@157,patch3=SignBottom@157,patch4=SignLeft@157,patch5=SignRight@157,patch6=PostFront@157,patch7=PostBack@157,patch8=PostLeft@157,patch9=PostRight@157
|
||||
# Signpost - facing north-northwest
|
||||
[-1.13.2]patchblock:id=sign,data=6-7,patch0=SignFront@247,patch1=SignBack@247,patch2=SignTop@247,patch3=SignBottom@247,patch4=SignLeft@247,patch5=SignRight@247,patch6=PostFront@247,patch7=PostBack@247,patch8=PostLeft@247,patch9=PostRight@247
|
||||
[1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=6-7,patch0=SignFront@247,patch1=SignBack@247,patch2=SignTop@247,patch3=SignBottom@247,patch4=SignLeft@247,patch5=SignRight@247,patch6=PostFront@247,patch7=PostBack@247,patch8=PostLeft@247,patch9=PostRight@247
|
||||
[1.19-]patchblock:id=mangrove_sign,data=6-7,patch0=SignFront@247,patch1=SignBack@247,patch2=SignTop@247,patch3=SignBottom@247,patch4=SignLeft@247,patch5=SignRight@247,patch6=PostFront@247,patch7=PostBack@247,patch8=PostLeft@247,patch9=PostRight@247
|
||||
# Signpost - facing east-northeast
|
||||
[-1.13.2]patchblock:id=sign,data=14-15,patch0=SignFront@337,patch1=SignBack@337,patch2=SignTop@337,patch3=SignBottom@337,patch4=SignLeft@337,patch5=SignRight@337,patch6=PostFront@337,patch7=PostBack@337,patch8=PostLeft@337,patch9=PostRight@337
|
||||
[1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=14-15,patch0=SignFront@337,patch1=SignBack@337,patch2=SignTop@337,patch3=SignBottom@337,patch4=SignLeft@337,patch5=SignRight@337,patch6=PostFront@337,patch7=PostBack@337,patch8=PostLeft@337,patch9=PostRight@337
|
||||
[1.19-]patchblock:id=mangrove_sign,data=14-15,patch0=SignFront@337,patch1=SignBack@337,patch2=SignTop@337,patch3=SignBottom@337,patch4=SignLeft@337,patch5=SignRight@337,patch6=PostFront@337,patch7=PostBack@337,patch8=PostLeft@337,patch9=PostRight@337
|
||||
# Signpost - facing south-southeast
|
||||
[-1.13.2]patchblock:id=sign,data=22-23,patch0=SignFront@67,patch1=SignBack@67,patch2=SignTop@67,patch3=SignBottom@67,patch4=SignLeft@67,patch5=SignRight@67,patch6=PostFront@67,patch7=PostBack@67,patch8=PostLeft@67,patch9=PostRight@67
|
||||
[1.14-]patchblock:id=oak_sign,id=spruce_sign,id=birch_sign,id=acacia_sign,id=jungle_sign,id=dark_oak_sign,data=22-23,patch0=SignFront@67,patch1=SignBack@67,patch2=SignTop@67,patch3=SignBottom@67,patch4=SignLeft@67,patch5=SignRight@67,patch6=PostFront@67,patch7=PostBack@67,patch8=PostLeft@67,patch9=PostRight@67
|
||||
[1.19-]patchblock:id=mangrove_sign,data=22-23,patch0=SignFront@67,patch1=SignBack@67,patch2=SignTop@67,patch3=SignBottom@67,patch4=SignLeft@67,patch5=SignRight@67,patch6=PostFront@67,patch7=PostBack@67,patch8=PostLeft@67,patch9=PostRight@67
|
||||
# Fire
|
||||
modellist:id=fire,box=0/0/8.8/false:16/16/8.8/-22.5/0/0:s/0/0/0/16/16,box=0/0/7.2/false:16/16/7.2/22.5/0/0:n/0/0/0/16/16,box=8.8/0/0/false:8.8/16/16/0/0/-22/5:w/0/0/0/16/16,box=7.2/0/0/false:7.2/16/16/0/0/22.5:e/0/0/0/16/16,box=0/0/0.01/false:16/16/0.01:s/0/0/0/16/16:n/0/0/0/16/16,box=0/0/0.01/false:16/16/0.01/0/90/0:s/0/0/0/16/16:n/0/0/0/16/16,box=0/0/0.01/false:16/16/0.01/0/180/0:s/0/0/0/16/16:n/0/0/0/16/16,box=0/0/0.01/false:16/16/0.01/0/270/0:s/0/0/0/16/16:n/0/0/0/16/16
|
||||
|
||||
|
|
@ -2243,3 +2263,468 @@ modellist:id=%dropper,state=facing:south,box=0.000000/0.000000/0.000000:16.00000
|
|||
modellist:id=%dropper,state=facing:west,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:d/2:w/1:e/1:n/0:u/2:s/1:R/0/270/0
|
||||
modellist:id=%dropper,state=facing:down,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:d/0:w/0:e/0:n/0:u/1:s/0:R/180/0/0
|
||||
|
||||
|
||||
[1.19-]modellist:id=%mangrove_propagule,state=hanging:true/age:0,box=7.000000/13.611040/10.071930:9.000000/13.611040/12.071930/22.500000/0.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u180/0/8.000000/3.000000/10.000000/5.000000,box=10.071930/13.611040/7.000000:12.071930/13.611040/9.000000/0.000000/0.000000/-22.500000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d90/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u90/0/8.000000/3.000000/10.000000/5.000000,box=7.000000/13.611040/3.928070:9.000000/13.611040/5.928070/-22.500000/0.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d180/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u/0/8.000000/3.000000/10.000000/5.000000,box=3.928070/13.611040/7.000000:5.928070/13.611040/9.000000/0.000000/0.000000/22.500000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d270/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u270/0/8.000000/3.000000/10.000000/5.000000,box=7.000000/13.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/2.000000/2.000000/3.000000:d/0/0.000000/3.000000/2.000000/5.000000:w/0/0.000000/2.000000/2.000000/3.000000:e/0/0.000000/2.000000/2.000000/3.000000:s/0/0.000000/2.000000/2.000000/3.000000:u/0/0.000000/0.000000/2.000000/2.000000,box=7.000000/14.000000/8.000000:9.000000/16.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/2.000000/0.000000:w/0/0.000000/0.000000/0.000000/2.000000:e/0/0.000000/0.000000/0.000000/2.000000:s/0/0.000000/0.000000/2.000000/2.000000:u/0/0.000000/0.000000/2.000000/0.000000,box=7.000000/14.000000/8.000000:9.000000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/2.000000/0.000000:w/0/0.000000/0.000000/0.000000/2.000000:e/0/0.000000/0.000000/0.000000/2.000000:s/0/0.000000/0.000000/2.000000/2.000000:u/0/0.000000/0.000000/2.000000/0.000000
|
||||
[1.19-]modellist:id=%mangrove_propagule,state=hanging:false/age:0,box=4.500000/9.000000/8.000000:11.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:n/0/4.000000/1.000000/11.000000/7.000000:s/0/4.000000/1.000000/11.000000/7.000000,box=8.000000/9.000000/4.500000:8.000000/15.000000/11.500000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:w/0/4.000000/1.000000/11.000000/7.000000:e/0/4.000000/1.000000/11.000000/7.000000,box=8.000000/0.000000/7.000000:8.000000/9.000000/9.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:w/0/7.000000/7.000000/9.000000/16.000000:e/0/7.000000/7.000000/9.000000/16.000000,box=7.000000/0.000000/8.000000:9.000000/9.000000/8.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:n/0/7.000000/7.000000/9.000000/16.000000:s/0/7.000000/7.000000/9.000000/16.000000
|
||||
[1.19-]modellist:id=%mangrove_propagule,state=hanging:true/age:1,box=7.000000/10.000000/7.000000:9.000000/13.000000/9.000000:n/0/0.000000/7.000000/2.000000/10.000000:d/0/0.000000/5.000000/2.000000/7.000000:w/0/0.000000/7.000000/2.000000/10.000000:e/0/0.000000/7.000000/2.000000/10.000000:s/0/0.000000/7.000000/2.000000/10.000000:u/0/0.000000/5.000000/2.000000/7.000000,box=7.000000/13.611040/10.071930:9.000000/13.611040/12.071930/22.500000/0.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u180/0/8.000000/3.000000/10.000000/5.000000,box=10.071930/13.611040/7.000000:12.071930/13.611040/9.000000/0.000000/0.000000/-22.500000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d90/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u90/0/8.000000/3.000000/10.000000/5.000000,box=7.000000/13.611040/3.928070:9.000000/13.611040/5.928070/-22.500000/0.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d180/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u/0/8.000000/3.000000/10.000000/5.000000,box=3.928070/13.611040/7.000000:5.928070/13.611040/9.000000/0.000000/0.000000/22.500000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d270/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u270/0/8.000000/3.000000/10.000000/5.000000,box=7.000000/13.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/2.000000/2.000000/3.000000:d/0/0.000000/3.000000/2.000000/5.000000:w/0/0.000000/2.000000/2.000000/3.000000:e/0/0.000000/2.000000/2.000000/3.000000:s/0/0.000000/2.000000/2.000000/3.000000:u/0/0.000000/0.000000/2.000000/2.000000,box=7.000000/14.000000/8.000000:9.000000/16.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/2.000000/0.000000:w/0/0.000000/0.000000/0.000000/2.000000:e/0/0.000000/0.000000/0.000000/2.000000:s/0/0.000000/0.000000/2.000000/2.000000:u/0/0.000000/0.000000/2.000000/0.000000,box=7.000000/14.000000/8.000000:9.000000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/2.000000/0.000000:w/0/0.000000/0.000000/0.000000/2.000000:e/0/0.000000/0.000000/0.000000/2.000000:s/0/0.000000/0.000000/2.000000/2.000000:u/0/0.000000/0.000000/2.000000/0.000000
|
||||
[1.19-]modellist:id=%mangrove_propagule,state=hanging:false/age:1,box=4.500000/9.000000/8.000000:11.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:n/0/4.000000/1.000000/11.000000/7.000000:s/0/4.000000/1.000000/11.000000/7.000000,box=8.000000/9.000000/4.500000:8.000000/15.000000/11.500000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:w/0/4.000000/1.000000/11.000000/7.000000:e/0/4.000000/1.000000/11.000000/7.000000,box=8.000000/0.000000/7.000000:8.000000/9.000000/9.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:w/0/7.000000/7.000000/9.000000/16.000000:e/0/7.000000/7.000000/9.000000/16.000000,box=7.000000/0.000000/8.000000:9.000000/9.000000/8.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:n/0/7.000000/7.000000/9.000000/16.000000:s/0/7.000000/7.000000/9.000000/16.000000
|
||||
[1.19-]modellist:id=%mangrove_propagule,state=hanging:true/age:2,box=7.000000/10.000000/7.000000:9.000000/13.000000/9.000000:n/0/0.000000/7.000000/2.000000/10.000000:d/0/0.000000/10.000000/2.000000/12.000000:w/0/0.000000/7.000000/2.000000/10.000000:e/0/0.000000/7.000000/2.000000/10.000000:s/0/0.000000/7.000000/2.000000/10.000000:u/0/0.000000/5.000000/2.000000/7.000000,box=7.000000/13.611040/10.071930:9.000000/13.611040/12.071930/22.500000/0.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u180/0/8.000000/3.000000/10.000000/5.000000,box=10.071930/13.611040/7.000000:12.071930/13.611040/9.000000/0.000000/0.000000/-22.500000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d90/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u90/0/8.000000/3.000000/10.000000/5.000000,box=7.000000/13.611040/3.928070:9.000000/13.611040/5.928070/-22.500000/0.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d180/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u/0/8.000000/3.000000/10.000000/5.000000,box=3.928070/13.611040/7.000000:5.928070/13.611040/9.000000/0.000000/0.000000/22.500000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d270/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u270/0/8.000000/3.000000/10.000000/5.000000,box=7.000000/13.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/2.000000/2.000000/3.000000:d/0/0.000000/3.000000/2.000000/5.000000:w/0/0.000000/2.000000/2.000000/3.000000:e/0/0.000000/2.000000/2.000000/3.000000:s/0/0.000000/2.000000/2.000000/3.000000:u/0/0.000000/0.000000/2.000000/2.000000,box=7.000000/14.000000/8.000000:9.000000/16.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/2.000000/0.000000:w/0/0.000000/0.000000/0.000000/2.000000:e/0/0.000000/0.000000/0.000000/2.000000:s/0/0.000000/0.000000/2.000000/2.000000:u/0/0.000000/0.000000/2.000000/0.000000,box=7.000000/14.000000/8.000000:9.000000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/2.000000/0.000000:w/0/0.000000/0.000000/0.000000/2.000000:e/0/0.000000/0.000000/0.000000/2.000000:s/0/0.000000/0.000000/2.000000/2.000000:u/0/0.000000/0.000000/2.000000/0.000000,box=7.000000/7.000000/8.000000:9.000000/10.000000/8.000000/0.000000/45.000000/0.000000/8.000000/16.000000/8.000000:n/0/3.000000/7.000000/5.000000/10.000000:d/0/11.000000/10.000000/13.000000/10.000000:w/0/11.000000/0.000000/11.000000/10.000000:e/0/13.000000/0.000000/13.000000/10.000000:s/0/3.000000/7.000000/5.000000/10.000000:u/0/11.000000/0.000000/13.000000/0.000000,box=7.000000/7.000000/8.000000:9.000000/10.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/16.000000/8.000000:n/0/3.000000/7.000000/5.000000/10.000000:d180/0/11.000000/10.000000/13.000000/10.000000:w/0/13.000000/0.000000/13.000000/10.000000:e/0/11.000000/0.000000/11.000000/10.000000:s/0/3.000000/7.000000/5.000000/10.000000:u180/0/11.000000/0.000000/13.000000/0.000000
|
||||
[1.19-]modellist:id=%mangrove_propagule,state=hanging:false/age:2,box=4.500000/9.000000/8.000000:11.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:n/0/4.000000/1.000000/11.000000/7.000000:s/0/4.000000/1.000000/11.000000/7.000000,box=8.000000/9.000000/4.500000:8.000000/15.000000/11.500000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:w/0/4.000000/1.000000/11.000000/7.000000:e/0/4.000000/1.000000/11.000000/7.000000,box=8.000000/0.000000/7.000000:8.000000/9.000000/9.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:w/0/7.000000/7.000000/9.000000/16.000000:e/0/7.000000/7.000000/9.000000/16.000000,box=7.000000/0.000000/8.000000:9.000000/9.000000/8.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:n/0/7.000000/7.000000/9.000000/16.000000:s/0/7.000000/7.000000/9.000000/16.000000
|
||||
[1.19-]modellist:id=%mangrove_propagule,state=hanging:true/age:3,box=7.000000/10.000000/7.000000:9.000000/13.000000/9.000000:n/0/0.000000/7.000000/2.000000/10.000000:d/0/0.000000/10.000000/2.000000/12.000000:w/0/0.000000/7.000000/2.000000/10.000000:e/0/0.000000/7.000000/2.000000/10.000000:s/0/0.000000/7.000000/2.000000/10.000000:u/0/0.000000/5.000000/2.000000/7.000000,box=7.000000/13.611040/10.071930:9.000000/13.611040/12.071930/22.500000/0.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u180/0/8.000000/3.000000/10.000000/5.000000,box=10.071930/13.611040/7.000000:12.071930/13.611040/9.000000/0.000000/0.000000/-22.500000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d90/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u90/0/8.000000/3.000000/10.000000/5.000000,box=7.000000/13.611040/3.928070:9.000000/13.611040/5.928070/-22.500000/0.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d180/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u/0/8.000000/3.000000/10.000000/5.000000,box=3.928070/13.611040/7.000000:5.928070/13.611040/9.000000/0.000000/0.000000/22.500000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d270/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u270/0/8.000000/3.000000/10.000000/5.000000,box=7.000000/13.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/2.000000/2.000000/3.000000:d/0/0.000000/3.000000/2.000000/5.000000:w/0/0.000000/2.000000/2.000000/3.000000:e/0/0.000000/2.000000/2.000000/3.000000:s/0/0.000000/2.000000/2.000000/3.000000:u/0/0.000000/0.000000/2.000000/2.000000,box=7.000000/14.000000/8.000000:9.000000/16.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/2.000000/0.000000:w/0/0.000000/0.000000/0.000000/2.000000:e/0/0.000000/0.000000/0.000000/2.000000:s/0/0.000000/0.000000/2.000000/2.000000:u/0/0.000000/0.000000/2.000000/0.000000,box=7.000000/14.000000/8.000000:9.000000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/2.000000/0.000000:w/0/0.000000/0.000000/0.000000/2.000000:e/0/0.000000/0.000000/0.000000/2.000000:s/0/0.000000/0.000000/2.000000/2.000000:u/0/0.000000/0.000000/2.000000/0.000000,box=7.000000/3.000000/8.000000:9.000000/10.000000/8.000000/0.000000/45.000000/0.000000/8.000000/16.000000/8.000000:n/0/3.000000/3.000000/5.000000/10.000000:d/0/11.000000/10.000000/13.000000/10.000000:w/0/11.000000/0.000000/11.000000/10.000000:e/0/13.000000/0.000000/13.000000/10.000000:s/0/3.000000/3.000000/5.000000/10.000000:u/0/11.000000/0.000000/13.000000/0.000000,box=7.000000/3.000000/8.000000:9.000000/10.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/16.000000/8.000000:n/0/3.000000/3.000000/5.000000/10.000000:d180/0/11.000000/10.000000/13.000000/10.000000:w/0/13.000000/0.000000/13.000000/10.000000:e/0/11.000000/0.000000/11.000000/10.000000:s/0/3.000000/3.000000/5.000000/10.000000:u180/0/11.000000/0.000000/13.000000/0.000000
|
||||
[1.19-]modellist:id=%mangrove_propagule,state=hanging:false/age:3,box=4.500000/9.000000/8.000000:11.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:n/0/4.000000/1.000000/11.000000/7.000000:s/0/4.000000/1.000000/11.000000/7.000000,box=8.000000/9.000000/4.500000:8.000000/15.000000/11.500000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:w/0/4.000000/1.000000/11.000000/7.000000:e/0/4.000000/1.000000/11.000000/7.000000,box=8.000000/0.000000/7.000000:8.000000/9.000000/9.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:w/0/7.000000/7.000000/9.000000/16.000000:e/0/7.000000/7.000000/9.000000/16.000000,box=7.000000/0.000000/8.000000:9.000000/9.000000/8.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:n/0/7.000000/7.000000/9.000000/16.000000:s/0/7.000000/7.000000/9.000000/16.000000
|
||||
[1.19-]modellist:id=%mangrove_propagule,state=hanging:true/age:4,box=7.000000/10.000000/7.000000:9.000000/13.000000/9.000000:n/0/0.000000/7.000000/2.000000/10.000000:d/0/0.000000/10.000000/2.000000/12.000000:w/0/0.000000/7.000000/2.000000/10.000000:e/0/0.000000/7.000000/2.000000/10.000000:s/0/0.000000/7.000000/2.000000/10.000000:u/0/0.000000/5.000000/2.000000/7.000000,box=7.000000/13.611040/10.071930:9.000000/13.611040/12.071930/22.500000/0.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u180/0/8.000000/3.000000/10.000000/5.000000,box=10.071930/13.611040/7.000000:12.071930/13.611040/9.000000/0.000000/0.000000/-22.500000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d90/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u90/0/8.000000/3.000000/10.000000/5.000000,box=7.000000/13.611040/3.928070:9.000000/13.611040/5.928070/-22.500000/0.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d180/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u/0/8.000000/3.000000/10.000000/5.000000,box=3.928070/13.611040/7.000000:5.928070/13.611040/9.000000/0.000000/0.000000/22.500000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/0.000000:d270/0/6.000000/3.000000/8.000000/5.000000:w/0/0.000000/0.000000/2.000000/0.000000:e/0/0.000000/0.000000/2.000000/0.000000:s/0/0.000000/0.000000/2.000000/0.000000:u270/0/8.000000/3.000000/10.000000/5.000000,box=7.000000/13.000000/7.000000:9.000000/14.000000/9.000000:n/0/0.000000/2.000000/2.000000/3.000000:d/0/0.000000/3.000000/2.000000/5.000000:w/0/0.000000/2.000000/2.000000/3.000000:e/0/0.000000/2.000000/2.000000/3.000000:s/0/0.000000/2.000000/2.000000/3.000000:u/0/0.000000/0.000000/2.000000/2.000000,box=7.000000/14.000000/8.000000:9.000000/16.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/2.000000/0.000000:w/0/0.000000/0.000000/0.000000/2.000000:e/0/0.000000/0.000000/0.000000/2.000000:s/0/0.000000/0.000000/2.000000/2.000000:u/0/0.000000/0.000000/2.000000/0.000000,box=7.000000/14.000000/8.000000:9.000000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/16.000000/8.000000:n/0/0.000000/0.000000/2.000000/2.000000:d/0/0.000000/0.000000/2.000000/0.000000:w/0/0.000000/0.000000/0.000000/2.000000:e/0/0.000000/0.000000/0.000000/2.000000:s/0/0.000000/0.000000/2.000000/2.000000:u/0/0.000000/0.000000/2.000000/0.000000,box=7.000000/0.000000/8.000000:9.000000/10.000000/8.000000/0.000000/45.000000/0.000000/8.000000/16.000000/8.000000:n/0/3.000000/0.000000/5.000000/10.000000:d/0/11.000000/10.000000/13.000000/10.000000:w/0/11.000000/0.000000/11.000000/10.000000:e/0/13.000000/0.000000/13.000000/10.000000:s/0/3.000000/0.000000/5.000000/10.000000:u/0/11.000000/0.000000/13.000000/0.000000,box=7.000000/0.000000/8.000000:9.000000/10.000000/8.000000/0.000000/-45.000000/0.000000/8.000000/16.000000/8.000000:n/0/3.000000/0.000000/5.000000/10.000000:d180/0/11.000000/10.000000/13.000000/10.000000:w/0/13.000000/0.000000/13.000000/10.000000:e/0/11.000000/0.000000/11.000000/10.000000:s/0/3.000000/0.000000/5.000000/10.000000:u180/0/11.000000/0.000000/13.000000/0.000000
|
||||
[1.19-]modellist:id=%mangrove_propagule,state=hanging:false/age:4,box=4.500000/9.000000/8.000000:11.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:n/0/4.000000/1.000000/11.000000/7.000000:s/0/4.000000/1.000000/11.000000/7.000000,box=8.000000/9.000000/4.500000:8.000000/15.000000/11.500000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:w/0/4.000000/1.000000/11.000000/7.000000:e/0/4.000000/1.000000/11.000000/7.000000,box=8.000000/0.000000/7.000000:8.000000/9.000000/9.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:w/0/7.000000/7.000000/9.000000/16.000000:e/0/7.000000/7.000000/9.000000/16.000000,box=7.000000/0.000000/8.000000:9.000000/9.000000/8.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:n/0/7.000000/7.000000/9.000000/16.000000:s/0/7.000000/7.000000/9.000000/16.000000
|
||||
[1.19-]modellist:id=%mangrove_log,state=axis:x,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/1:w/0:e/0:s/0:u180/1:R/90/90/0
|
||||
[1.19-]modellist:id=%mangrove_log,state=axis:z,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/1:w/0:e/0:s/0:u180/1:R/90/0/0
|
||||
[1.19-]modellist:id=%mangrove_roots,box=0.000000/0.000000/8.000000:16.000000/16.000000/8.000000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/0.000000/0.000000:8.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/15.998000/0.000000:16.000000/16.000000/16.000000:d/1/0.000000/16.000000/16.000000/0.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.000000:16.000000/0.002000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:u/1/0.000000/16.000000/16.000000/0.000000,box=0.000000/0.000000/0.000000:16.000000/16.000000/0.002000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/16.000000,box=0.000000/0.000000/15.998000:16.000000/16.000000/16.000000:n/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.000000:0.002000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000,box=15.998000/0.000000/0.000000:16.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000
|
||||
[1.19-]modellist:id=%muddy_mangrove_roots,state=axis:x,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/1:w/0:e/0:s/0:u/1:R/90/90/0
|
||||
[1.19-]modellist:id=%muddy_mangrove_roots,state=axis:z,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/1:w/0:e/0:s/0:u/1:R/90/0/0
|
||||
[1.19-]modellist:id=%stripped_mangrove_log,state=axis:x,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/1:w/0:e/0:s/0:u180/1:R/90/90/0
|
||||
[1.19-]modellist:id=%stripped_mangrove_log,state=axis:z,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/1:w/0:e/0:s/0:u180/1:R/90/0/0
|
||||
[1.19-]modellist:id=%mangrove_wood,state=axis:x,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/0:w/0:e/0:s/0:u/0:R/90/90/0
|
||||
[1.19-]modellist:id=%mangrove_wood,state=axis:z,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/0:w/0:e/0:s/0:u/0:R/90/0/0
|
||||
[1.19-]modellist:id=%stripped_mangrove_wood,state=axis:x,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/0:w/0:e/0:s/0:u/0:R/90/90/0
|
||||
[1.19-]modellist:id=%stripped_mangrove_wood,state=axis:z,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/0:w/0:e/0:s/0:u/0:R/90/0/0
|
||||
[1.19-]modellist:id=%mangrove_pressure_plate,state=powered:true,box=1.000000/0.000000/1.000000:15.000000/0.500000/15.000000:n/0/1.000000/15.000000/15.000000/15.500000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/15.500000:e/0/1.000000/15.000000/15.000000/15.500000:s/0/1.000000/15.000000/15.000000/15.500000:u/0/1.000000/1.000000/15.000000/15.000000
|
||||
[1.19-]modellist:id=%mangrove_pressure_plate,state=powered:false,box=1.000000/0.000000/1.000000:15.000000/1.000000/15.000000:n/0/1.000000/15.000000/15.000000/16.000000:d/0/1.000000/1.000000/15.000000/15.000000:w/0/1.000000/15.000000/15.000000/16.000000:e/0/1.000000/15.000000/15.000000/16.000000:s/0/1.000000/15.000000/15.000000/16.000000:u/0/1.000000/1.000000/15.000000/15.000000
|
||||
[1.19-]modellist:id=%mangrove_trapdoor,state=facing:north/half:top/open:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e90/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/180/0
|
||||
[1.19-]modellist:id=%mangrove_trapdoor,state=facing:north/half:top/open:false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000
|
||||
[1.19-]modellist:id=%mangrove_trapdoor,state=facing:north/half:bottom/open:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e90/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000
|
||||
[1.19-]modellist:id=%mangrove_trapdoor,state=facing:north/half:bottom/open:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000
|
||||
[1.19-]modellist:id=%mangrove_trapdoor,state=facing:south/half:top/open:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e90/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/0/0
|
||||
[1.19-]modellist:id=%mangrove_trapdoor,state=facing:south/half:top/open:false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mangrove_trapdoor,state=facing:south/half:bottom/open:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e90/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mangrove_trapdoor,state=facing:south/half:bottom/open:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mangrove_trapdoor,state=facing:west/half:top/open:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e90/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/90/0
|
||||
[1.19-]modellist:id=%mangrove_trapdoor,state=facing:west/half:top/open:false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mangrove_trapdoor,state=facing:west/half:bottom/open:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e90/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mangrove_trapdoor,state=facing:west/half:bottom/open:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mangrove_trapdoor,state=facing:east/half:top/open:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e90/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/180/270/0
|
||||
[1.19-]modellist:id=%mangrove_trapdoor,state=facing:east/half:top/open:false,box=0.000000/13.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%mangrove_trapdoor,state=facing:east/half:bottom/open:true,box=0.000000/0.000000/13.000000:16.000000/16.000000/16.000000:n/0/0.000000/16.000000/16.000000/0.000000:d/0/0.000000/0.000000/16.000000/3.000000:w90/0/0.000000/0.000000/16.000000/3.000000:e90/0/0.000000/3.000000/16.000000/0.000000:s/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%mangrove_trapdoor,state=facing:east/half:bottom/open:false,box=0.000000/0.000000/0.000000:16.000000/3.000000/16.000000:n/0/0.000000/0.000000/16.000000/3.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/3.000000:e/0/0.000000/0.000000/16.000000/3.000000:s/0/0.000000/0.000000/16.000000/3.000000:u/0/0.000000/16.000000/16.000000/0.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%potted_mangrove_propagule,box=4.500000/9.000000/8.000000:11.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:n/0/11.000000/1.000000/4.000000/7.000000:s/0/4.000000/1.000000/11.000000/7.000000,box=8.000000/9.000000/4.500000:8.000000/15.000000/11.500000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:w/0/4.000000/1.000000/11.000000/7.000000:e/0/11.000000/1.000000/4.000000/7.000000,box=8.000000/0.000000/7.000000:8.000000/9.000000/9.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:w/0/7.000000/7.000000/9.000000/16.000000:e/0/7.000000/7.000000/9.000000/16.000000,box=7.000000/0.000000/8.000000:9.000000/9.000000/8.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:n/0/7.000000/7.000000/9.000000/16.000000:s/0/7.000000/7.000000/9.000000/16.000000,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/1/10.000000/10.000000/11.000000/16.000000:d/1/5.000000/5.000000/6.000000/11.000000:w/1/5.000000/10.000000/11.000000/16.000000:e/1/5.000000/10.000000/11.000000/16.000000:s/1/5.000000/10.000000/6.000000/16.000000:u/1/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/1/5.000000/10.000000/6.000000/16.000000:d/1/10.000000/5.000000/11.000000/11.000000:w/1/5.000000/10.000000/11.000000/16.000000:e/1/5.000000/10.000000/11.000000/16.000000:s/1/10.000000/10.000000/11.000000/16.000000:u/1/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/1/6.000000/10.000000/10.000000/16.000000:d/1/6.000000/10.000000/10.000000/11.000000:s/1/6.000000/10.000000/10.000000/16.000000:u/1/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/1/6.000000/10.000000/10.000000/16.000000:d/1/6.000000/5.000000/10.000000/6.000000:s/1/6.000000/10.000000/10.000000/16.000000:u/1/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/1/6.000000/12.000000/10.000000/16.000000:u/2/6.000000/6.000000/10.000000/10.000000
|
||||
[1.19-]modellist:id=%mangrove_button,state=facing:north/face:floor/powered:true,box=5.000000/0.000000/6.000000:11.000000/1.000000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/10.000000/11.000000/6.000000
|
||||
[1.19-]modellist:id=%mangrove_button,state=facing:north/face:floor/powered:false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/10.000000/11.000000/6.000000
|
||||
[1.19-]modellist:id=%mangrove_button,state=facing:south/face:floor/powered:true,box=5.000000/0.000000/6.000000:11.000000/1.000000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mangrove_button,state=facing:south/face:floor/powered:false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mangrove_button,state=facing:west/face:floor/powered:true,box=5.000000/0.000000/6.000000:11.000000/1.000000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mangrove_button,state=facing:west/face:floor/powered:false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mangrove_button,state=facing:east/face:floor/powered:true,box=5.000000/0.000000/6.000000:11.000000/1.000000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%mangrove_button,state=facing:east/face:floor/powered:false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%mangrove_button,state=facing:north/face:wall/powered:true,box=5.000000/0.000000/6.000000:11.000000/1.000000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%mangrove_button,state=facing:north/face:wall/powered:false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%mangrove_button,state=facing:south/face:wall/powered:true,box=5.000000/0.000000/6.000000:11.000000/1.000000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/90/180/0
|
||||
[1.19-]modellist:id=%mangrove_button,state=facing:south/face:wall/powered:false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/90/180/0
|
||||
[1.19-]modellist:id=%mangrove_button,state=facing:west/face:wall/powered:true,box=5.000000/0.000000/6.000000:11.000000/1.000000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/90/270/0
|
||||
[1.19-]modellist:id=%mangrove_button,state=facing:west/face:wall/powered:false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/90/270/0
|
||||
[1.19-]modellist:id=%mangrove_button,state=facing:east/face:wall/powered:true,box=5.000000/0.000000/6.000000:11.000000/1.000000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/90/90/0
|
||||
[1.19-]modellist:id=%mangrove_button,state=facing:east/face:wall/powered:false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/90/90/0
|
||||
[1.19-]modellist:id=%mangrove_button,state=facing:north/face:ceiling/powered:true,box=5.000000/0.000000/6.000000:11.000000/1.000000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/180/180/0
|
||||
[1.19-]modellist:id=%mangrove_button,state=facing:north/face:ceiling/powered:false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/180/180/0
|
||||
[1.19-]modellist:id=%mangrove_button,state=facing:south/face:ceiling/powered:true,box=5.000000/0.000000/6.000000:11.000000/1.000000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/180/0/0
|
||||
[1.19-]modellist:id=%mangrove_button,state=facing:south/face:ceiling/powered:false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/180/0/0
|
||||
[1.19-]modellist:id=%mangrove_button,state=facing:west/face:ceiling/powered:true,box=5.000000/0.000000/6.000000:11.000000/1.000000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/180/90/0
|
||||
[1.19-]modellist:id=%mangrove_button,state=facing:west/face:ceiling/powered:false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/180/90/0
|
||||
[1.19-]modellist:id=%mangrove_button,state=facing:east/face:ceiling/powered:true,box=5.000000/0.000000/6.000000:11.000000/1.000000/10.000000:n/0/5.000000/14.000000/11.000000/15.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/15.000000:e/0/6.000000/14.000000/10.000000/15.000000:s/0/5.000000/14.000000/11.000000/15.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/180/270/0
|
||||
[1.19-]modellist:id=%mangrove_button,state=facing:east/face:ceiling/powered:false,box=5.000000/0.000000/6.000000:11.000000/2.000000/10.000000:n/0/5.000000/14.000000/11.000000/16.000000:d/0/5.000000/6.000000/11.000000/10.000000:w/0/6.000000/14.000000/10.000000/16.000000:e/0/6.000000/14.000000/10.000000/16.000000:s/0/5.000000/14.000000/11.000000/16.000000:u/0/5.000000/10.000000/11.000000/6.000000:R/180/270/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:north/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:north/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:north/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:north/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:north/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:north/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:north/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:north/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:north/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:north/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:south/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:south/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:south/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:south/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:south/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:south/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:south/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:south/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:south/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:south/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:west/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:west/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:west/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:west/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:west/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:west/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:west/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:west/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:west/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:west/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:east/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:east/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:east/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:east/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:east/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:east/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:east/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:east/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:east/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mangrove_stairs,state=facing:east/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000
|
||||
[1.19-]modellist:id=%mangrove_slab,state=type:top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
||||
[1.19-]modellist:id=%mangrove_slab,state=type:bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
||||
[1.19-]modellist:id=%mangrove_fence_gate,state=facing:north/in_wall:true/open:true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/180/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/180/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mangrove_fence_gate,state=facing:north/in_wall:true/open:false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/180/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/180/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mangrove_fence_gate,state=facing:north/in_wall:false/open:true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/180/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/180/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/180/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mangrove_fence_gate,state=facing:north/in_wall:false/open:false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/180/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/180/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/180/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/180/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/180/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mangrove_fence_gate,state=facing:south/in_wall:true/open:true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000
|
||||
[1.19-]modellist:id=%mangrove_fence_gate,state=facing:south/in_wall:true/open:false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000
|
||||
[1.19-]modellist:id=%mangrove_fence_gate,state=facing:south/in_wall:false/open:true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000
|
||||
[1.19-]modellist:id=%mangrove_fence_gate,state=facing:south/in_wall:false/open:false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000
|
||||
[1.19-]modellist:id=%mangrove_fence_gate,state=facing:west/in_wall:true/open:true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/90/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/90/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%mangrove_fence_gate,state=facing:west/in_wall:true/open:false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/90/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/90/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%mangrove_fence_gate,state=facing:west/in_wall:false/open:true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/90/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/90/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/90/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%mangrove_fence_gate,state=facing:west/in_wall:false/open:false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/90/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/90/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/90/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/90/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/90/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%mangrove_fence_gate,state=facing:east/in_wall:true/open:true,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=0.000000/3.000000/13.000000:2.000000/12.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/270/0,box=14.000000/3.000000/13.000000:16.000000/12.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/270/0,box=0.000000/3.000000/9.000000:2.000000/6.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=0.000000/9.000000/9.000000:2.000000/12.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=14.000000/3.000000/9.000000:16.000000/6.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0,box=14.000000/9.000000/9.000000:16.000000/12.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mangrove_fence_gate,state=facing:east/in_wall:true/open:false,box=0.000000/2.000000/7.000000:2.000000/13.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/2.000000/7.000000:16.000000/13.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=6.000000/3.000000/7.000000:8.000000/12.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/270/0,box=8.000000/3.000000/7.000000:10.000000/12.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/270/0,box=2.000000/3.000000/7.000000:6.000000/6.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=2.000000/9.000000/7.000000:6.000000/12.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=10.000000/3.000000/7.000000:14.000000/6.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0,box=10.000000/9.000000/7.000000:14.000000/12.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mangrove_fence_gate,state=facing:east/in_wall:false/open:true,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=0.000000/6.000000/13.000000:2.000000/15.000000/15.000000:n/0/0.000000/1.000000/2.000000/10.000000:d/0/0.000000/13.000000/2.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/0.000000/1.000000/2.000000/10.000000:u/0/0.000000/13.000000/2.000000/15.000000:R/0/270/0,box=14.000000/6.000000/13.000000:16.000000/15.000000/15.000000:n/0/14.000000/1.000000/16.000000/10.000000:d/0/14.000000/13.000000/16.000000/15.000000:w/0/13.000000/1.000000/15.000000/10.000000:e/0/13.000000/1.000000/15.000000/10.000000:s/0/14.000000/1.000000/16.000000/10.000000:u/0/14.000000/13.000000/16.000000/15.000000:R/0/270/0,box=0.000000/6.000000/9.000000:2.000000/9.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=0.000000/12.000000/9.000000:2.000000/15.000000/13.000000:d/0/0.000000/9.000000/2.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/0.000000/9.000000/2.000000/13.000000:R/0/270/0,box=14.000000/6.000000/9.000000:16.000000/9.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/7.000000/15.000000/10.000000:e/0/13.000000/7.000000/15.000000/10.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0,box=14.000000/12.000000/9.000000:16.000000/15.000000/13.000000:d/0/14.000000/9.000000/16.000000/13.000000:w/0/13.000000/1.000000/15.000000/4.000000:e/0/13.000000/1.000000/15.000000/4.000000:u/0/14.000000/9.000000/16.000000/13.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mangrove_fence_gate,state=facing:east/in_wall:false/open:false,box=0.000000/5.000000/7.000000:2.000000/16.000000/9.000000:n/0/0.000000/0.000000/2.000000/11.000000:d/0/0.000000/7.000000/2.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/0.000000/0.000000/2.000000/11.000000:u/0/0.000000/7.000000/2.000000/9.000000:R/0/270/0,box=14.000000/5.000000/7.000000:16.000000/16.000000/9.000000:n/0/14.000000/0.000000/16.000000/11.000000:d/0/14.000000/7.000000/16.000000/9.000000:w/0/7.000000/0.000000/9.000000/11.000000:e/0/7.000000/0.000000/9.000000/11.000000:s/0/14.000000/0.000000/16.000000/11.000000:u/0/14.000000/7.000000/16.000000/9.000000:R/0/270/0,box=6.000000/6.000000/7.000000:8.000000/15.000000/9.000000:n/0/6.000000/1.000000/8.000000/10.000000:d/0/6.000000/7.000000/8.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/6.000000/1.000000/8.000000/10.000000:u/0/6.000000/7.000000/8.000000/9.000000:R/0/270/0,box=8.000000/6.000000/7.000000:10.000000/15.000000/9.000000:n/0/8.000000/1.000000/10.000000/10.000000:d/0/8.000000/7.000000/10.000000/9.000000:w/0/7.000000/1.000000/9.000000/10.000000:e/0/7.000000/1.000000/9.000000/10.000000:s/0/8.000000/1.000000/10.000000/10.000000:u/0/8.000000/7.000000/10.000000/9.000000:R/0/270/0,box=2.000000/6.000000/7.000000:6.000000/9.000000/9.000000:n/0/2.000000/7.000000/6.000000/10.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/7.000000/6.000000/10.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=2.000000/12.000000/7.000000:6.000000/15.000000/9.000000:n/0/2.000000/1.000000/6.000000/4.000000:d/0/2.000000/7.000000/6.000000/9.000000:s/0/2.000000/1.000000/6.000000/4.000000:u/0/2.000000/7.000000/6.000000/9.000000:R/0/270/0,box=10.000000/6.000000/7.000000:14.000000/9.000000/9.000000:n/0/10.000000/7.000000/14.000000/10.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/7.000000/14.000000/10.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0,box=10.000000/12.000000/7.000000:14.000000/15.000000/9.000000:n/0/10.000000/1.000000/14.000000/4.000000:d/0/10.000000/7.000000/14.000000/9.000000:s/0/10.000000/1.000000/14.000000/4.000000:u/0/10.000000/7.000000/14.000000/9.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mangrove_fence,state=west:true/east:true/south:true/north:true,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mangrove_fence,state=west:false/east:true/south:true/north:true,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mangrove_fence,state=west:true/east:true/south:false/north:true,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mangrove_fence,state=west:false/east:true/south:false/north:true,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%mangrove_fence,state=west:true/east:true/south:true/north:false,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mangrove_fence,state=west:false/east:true/south:true/north:false,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mangrove_fence,state=west:true/east:true/south:false/north:false,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mangrove_fence,state=west:false/east:true/south:false/north:false,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%mangrove_fence,state=west:true/east:false/south:true/north:true,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mangrove_fence,state=west:false/east:false/south:true/north:true,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mangrove_fence,state=west:true/east:false/south:false/north:true,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mangrove_fence,state=west:false/east:false/south:false/north:true,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000
|
||||
[1.19-]modellist:id=%mangrove_fence,state=west:true/east:false/south:true/north:false,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mangrove_fence,state=west:false/east:false/south:true/north:false,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mangrove_fence,state=west:true/east:false/south:false/north:false,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000,box=7.000000/12.000000/0.000000:9.000000/15.000000/9.000000:n/0/7.000000/1.000000/9.000000/4.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/1.000000/9.000000/4.000000:e/0/0.000000/1.000000/9.000000/4.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0,box=7.000000/6.000000/0.000000:9.000000/9.000000/9.000000:n/0/7.000000/7.000000/9.000000/10.000000:d/0/7.000000/0.000000/9.000000/9.000000:w/0/0.000000/7.000000/9.000000/10.000000:e/0/0.000000/7.000000/9.000000/10.000000:u/0/7.000000/0.000000/9.000000/9.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mangrove_fence,state=west:false/east:false/south:false/north:false,box=6.000000/0.000000/6.000000:10.000000/16.000000/10.000000:n/0/6.000000/0.000000/10.000000/16.000000:d/0/6.000000/6.000000/10.000000/10.000000:w/0/6.000000/0.000000/10.000000/16.000000:e/0/6.000000/0.000000/10.000000/16.000000:s/0/6.000000/0.000000/10.000000/16.000000:u/0/6.000000/6.000000/10.000000/10.000000
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:north/hinge:left/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u270/0/0.000000/3.000000/16.000000/0.000000
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:north/hinge:left/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u90/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:north/hinge:right/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u90/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:north/hinge:right/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u270/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:north/hinge:left/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d90/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:north/hinge:left/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d90/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:north/hinge:right/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d90/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:north/hinge:right/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d90/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:south/hinge:left/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u270/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:south/hinge:left/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u90/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:south/hinge:right/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u90/0/0.000000/0.000000/16.000000/3.000000
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:south/hinge:right/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u270/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:south/hinge:left/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d90/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:south/hinge:left/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d90/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:south/hinge:right/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d90/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:south/hinge:right/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d90/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:west/hinge:left/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u270/0/0.000000/3.000000/16.000000/0.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:west/hinge:left/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u90/0/0.000000/3.000000/16.000000/0.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:west/hinge:right/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u90/0/0.000000/0.000000/16.000000/3.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:west/hinge:right/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u270/0/0.000000/0.000000/16.000000/3.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:west/hinge:left/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d90/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:west/hinge:left/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d90/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:west/hinge:right/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d90/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:west/hinge:right/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d90/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:east/hinge:left/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u270/0/0.000000/3.000000/16.000000/0.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:east/hinge:left/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u90/0/0.000000/3.000000/16.000000/0.000000
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:east/hinge:right/half:upper/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:u90/0/0.000000/0.000000/16.000000/3.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:east/hinge:right/half:upper/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:u270/0/0.000000/0.000000/16.000000/3.000000
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:east/hinge:left/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/0.000000/0.000000/3.000000/16.000000:d90/0/0.000000/16.000000/16.000000/13.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:east/hinge:left/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d90/0/16.000000/13.000000/0.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:east/hinge:right/half:lower/open:true,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d90/0/16.000000/16.000000/0.000000/13.000000:w/0/0.000000/0.000000/16.000000/16.000000:e/0/16.000000/0.000000/0.000000/16.000000:s/0/3.000000/0.000000/0.000000/16.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mangrove_door,state=facing:east/hinge:right/half:lower/open:false,box=0.000000/0.000000/0.000000:3.000000/16.000000/16.000000:n/0/3.000000/0.000000/0.000000/16.000000:d90/0/0.000000/13.000000/16.000000/16.000000:w/0/16.000000/0.000000/0.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/3.000000/16.000000
|
||||
[1.19-]modellist:id=%stripped_mangrove_wood,state=axis:x,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/0:w/0:e/0:s/0:u/0:R/90/90/0
|
||||
[1.19-]modellist:id=%stripped_mangrove_wood,state=axis:z,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/0:w/0:e/0:s/0:u/0:R/90/0/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:north/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:north/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:north/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:north/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:north/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:north/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:north/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:north/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:north/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:north/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:south/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:south/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:south/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:south/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:south/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:south/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:south/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:south/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:south/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:south/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:west/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:west/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/180/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:west/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/270/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:west/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/180/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:west/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/270/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:west/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:west/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:west/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:west/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:west/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:east/half:top/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:east/half:top/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/0/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/0/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:east/half:top/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/180/90/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/180/90/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:east/half:top/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/0/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/0/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:east/half:top/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/180/90/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/180/90/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:east/half:bottom/shape:straight,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:east/half:bottom/shape:inner_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:east/half:bottom/shape:inner_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/0.000000/16.000000/16.000000,box=0.000000/8.000000/8.000000:8.000000/16.000000/16.000000:n/0/8.000000/0.000000/16.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/8.000000/8.000000:u/0/0.000000/8.000000/8.000000/16.000000
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:east/half:bottom/shape:outer_left,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_stairs,state=facing:east/half:bottom/shape:outer_right,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000,box=8.000000/8.000000/8.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/8.000000/8.000000:w/0/8.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/8.000000/8.000000:s/0/8.000000/0.000000/16.000000/8.000000:u/0/8.000000/8.000000/16.000000/16.000000
|
||||
[1.19-]modellist:id=%mud_brick_slab,state=type:top,box=0.000000/8.000000/0.000000:16.000000/16.000000/16.000000:n/0/0.000000/0.000000/16.000000/8.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/8.000000:e/0/0.000000/0.000000/16.000000/8.000000:s/0/0.000000/0.000000/16.000000/8.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
||||
[1.19-]modellist:id=%mud_brick_slab,state=type:bottom,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/0/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:true/south:none/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:true/south:none/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:true/south:none/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:false/south:none/north:none
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:false/south:none/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:false/south:none/north:none,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:true/south:low/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:true/south:low/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:true/south:low/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:false/south:low/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:false/south:low/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:false/south:low/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:true/south:tall/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:true/south:tall/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:true/south:tall/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:false/south:tall/north:none,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:false/south:tall/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:false/south:tall/north:none,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:true/south:none/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:true/south:none/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:true/south:none/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:false/south:none/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:false/south:none/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:false/south:none/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:true/south:low/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:true/south:low/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:true/south:low/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:false/south:low/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:false/south:low/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:false/south:low/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:true/south:tall/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:true/south:tall/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:true/south:tall/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:false/south:tall/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:false/south:tall/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:false/south:tall/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:true/south:none/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:true/south:none/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:true/south:none/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:false/south:none/north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:false/south:none/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:false/south:none/north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:true/south:low/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:true/south:low/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:true/south:low/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:false/south:low/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:false/south:low/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:false/south:low/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:true/south:tall/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:true/south:tall/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:true/south:tall/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:none/up:false/south:tall/north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:none/up:false/south:tall/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:none/up:false/south:tall/north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:true/south:none/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:true/south:none/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:true/south:none/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:false/south:none/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:false/south:none/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:false/south:none/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:true/south:low/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:true/south:low/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:true/south:low/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:false/south:low/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:false/south:low/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:false/south:low/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:true/south:tall/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:true/south:tall/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:true/south:tall/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:false/south:tall/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:false/south:tall/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:false/south:tall/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:true/south:none/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:true/south:none/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:true/south:none/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:false/south:none/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:false/south:none/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:false/south:none/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:true/south:low/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:true/south:low/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:true/south:low/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:false/south:low/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:false/south:low/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:false/south:low/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:true/south:tall/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:true/south:tall/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:true/south:tall/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:false/south:tall/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:false/south:tall/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:false/south:tall/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:true/south:none/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:true/south:none/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:true/south:none/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:false/south:none/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:false/south:none/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:false/south:none/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:true/south:low/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:true/south:low/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:true/south:low/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:false/south:low/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:false/south:low/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:false/south:low/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:true/south:tall/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:true/south:tall/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:true/south:tall/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:low/up:false/south:tall/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:low/up:false/south:tall/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:low/up:false/south:tall/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:true/south:none/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:true/south:none/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:true/south:none/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:false/south:none/north:none,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:false/south:none/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:false/south:none/north:none,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:true/south:low/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:true/south:low/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:true/south:low/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:false/south:low/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:false/south:low/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:false/south:low/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:true/south:tall/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:true/south:tall/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:true/south:tall/north:none,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:false/south:tall/north:none,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:false/south:tall/north:none,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:false/south:tall/north:none,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:true/south:none/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:true/south:none/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:true/south:none/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:false/south:none/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:false/south:none/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:false/south:none/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:true/south:low/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:true/south:low/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:true/south:low/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:false/south:low/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:false/south:low/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:false/south:low/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:true/south:tall/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:true/south:tall/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:true/south:tall/north:low,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:false/south:tall/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:false/south:tall/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:false/south:tall/north:low,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:true/south:none/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:true/south:none/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:true/south:none/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:false/south:none/north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:false/south:none/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:false/south:none/north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:true/south:low/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:true/south:low/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:true/south:low/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:false/south:low/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:false/south:low/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:false/south:low/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:true/south:tall/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:true/south:tall/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:true/south:tall/north:tall,box=4.000000/0.000000/4.000000:12.000000/16.000000/12.000000:n/0:d/0:w/0:e/0:s/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:none/east:tall/up:false/south:tall/north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:low/east:tall/up:false/south:tall/north:tall,box=5.000000/0.000000/0.000000:11.000000/14.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0
|
||||
[1.19-]modellist:id=%mud_brick_wall,state=west:tall/east:tall/up:false/south:tall/north:tall,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/90/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/180/0,box=5.000000/0.000000/0.000000:11.000000/16.000000/8.000000:n/0:d/0:w/0:e/0:u/0:R/0/270/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:true/west:true/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:true/west:false/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:true/west:true/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:true/west:false/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:true/west:true/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:true/west:false/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:true/west:true/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:true/west:false/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:false/west:true/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:false/west:false/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:false/west:true/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:false/west:false/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:false/west:true/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:false/west:false/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:false/west:true/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:false/west:false/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:true/west:true/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:true/west:false/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:true/west:true/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:true/west:false/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:true/west:true/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:true/west:false/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:true/west:true/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:true/west:false/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:false/west:true/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:false/west:false/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:false/west:true/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:false/west:false/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:false/west:true/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:false/west:false/up:true/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:false/west:true/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:false/west:false/up:false/down:true,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:true/west:true/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:true/west:false/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:true/west:true/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:true/west:false/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:true/west:true/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:true/west:false/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:true/west:true/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:true/west:false/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:false/west:true/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:false/west:false/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:false/west:true/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:true/north:false/west:false/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:false/west:true/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:false/west:false/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:false/west:true/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:true/south:false/north:false/west:false/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:true/west:true/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:true/west:false/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:true/west:true/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:true/west:false/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:true/west:true/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:true/west:false/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:true/west:true/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:true/west:false/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:false/west:true/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:false/west:false/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:false/west:true/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:true/north:false/west:false/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:false/west:true/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:false/west:false/up:true/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:false/west:true/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0
|
||||
[1.19-]modellist:id=%sculk_vein,state=east:false/south:false/north:false/west:false/up:false/down:false,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/270/0/0,box=0.000000/0.000000/0.100000:16.000000/16.000000/0.100000:n/0/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%sculk_shrieker,state=can_summon:true,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=1.000000/8.000000/1.000000:15.000000/15.000000/15.000000:n/0/1.000000/1.000000/15.000000/8.000000:w/0/1.000000/1.000000/15.000000/8.000000:e/0/1.000000/1.000000/15.000000/8.000000:s/0/1.000000/1.000000/15.000000/8.000000:u/3/1.000000/1.000000/15.000000/15.000000,box=1.000000/14.980000/1.000000:15.000000/14.980000/15.000000:d/3/1.000000/1.000000/15.000000/15.000000,box=1.000000/8.000000/14.980000:15.000000/15.000000/14.980000:n/0/1.000000/1.000000/15.000000/8.000000,box=1.000000/8.000000/1.020000:15.000000/15.000000/1.020000:s/0/1.000000/1.000000/15.000000/8.000000,box=14.980000/8.000000/1.000000:14.980000/15.000000/15.000000:w/0/1.000000/1.000000/15.000000/8.000000,box=1.020000/8.000000/1.000000:1.020000/15.000000/15.000000:e/0/1.000000/1.000000/15.000000/8.000000
|
||||
[1.19-]modellist:id=%sculk_shrieker,state=can_summon:false,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/0/0.000000/8.000000/16.000000/16.000000:d/2/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/8.000000/16.000000/16.000000:e/0/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:u/1/0.000000/0.000000/16.000000/16.000000,box=1.000000/8.000000/1.000000:15.000000/15.000000/15.000000:n/0/1.000000/1.000000/15.000000/8.000000:w/0/1.000000/1.000000/15.000000/8.000000:e/0/1.000000/1.000000/15.000000/8.000000:s/0/1.000000/1.000000/15.000000/8.000000:u/3/1.000000/1.000000/15.000000/15.000000,box=1.000000/14.980000/1.000000:15.000000/14.980000/15.000000:d/3/1.000000/1.000000/15.000000/15.000000,box=1.000000/8.000000/14.980000:15.000000/15.000000/14.980000:n/0/1.000000/1.000000/15.000000/8.000000,box=1.000000/8.000000/1.020000:15.000000/15.000000/1.020000:s/0/1.000000/1.000000/15.000000/8.000000,box=14.980000/8.000000/1.000000:14.980000/15.000000/15.000000:w/0/1.000000/1.000000/15.000000/8.000000,box=1.020000/8.000000/1.000000:1.020000/15.000000/15.000000:e/0/1.000000/1.000000/15.000000/8.000000
|
||||
[1.19-]modellist:id=%ochre_froglight,state=axis:x,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/1:w/0:e/0:s/0:u180/1:R/90/90/0
|
||||
[1.19-]modellist:id=%ochre_froglight,state=axis:z,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/1:w/0:e/0:s/0:u180/1:R/90/0/0
|
||||
[1.19-]modellist:id=%verdant_froglight,state=axis:x,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/1:w/0:e/0:s/0:u180/1:R/90/90/0
|
||||
[1.19-]modellist:id=%verdant_froglight,state=axis:z,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/1:w/0:e/0:s/0:u180/1:R/90/0/0
|
||||
[1.19-]modellist:id=%pearlescent_froglight,state=axis:x,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/1:w/0:e/0:s/0:u180/1:R/90/90/0
|
||||
[1.19-]modellist:id=%pearlescent_froglight,state=axis:z,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:n/0:d/1:w/0:e/0:s/0:u180/1:R/90/0/0
|
||||
[1.19-]modellist:id=%frogspawn,box=0.000000/0.250000/0.000000:16.000000/0.250000/16.000000:d/0/0.000000/16.000000/16.000000/0.000000:u/0/0.000000/0.000000/16.000000/16.000000
|
||||
[1.19-]modellist:id=%potted_mangrove_propagule,box=4.500000/9.000000/8.000000:11.500000/15.000000/8.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:n/0/11.000000/1.000000/4.000000/7.000000:s/0/4.000000/1.000000/11.000000/7.000000,box=8.000000/9.000000/4.500000:8.000000/15.000000/11.500000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:w/0/4.000000/1.000000/11.000000/7.000000:e/0/11.000000/1.000000/4.000000/7.000000,box=8.000000/0.000000/7.000000:8.000000/9.000000/9.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:w/0/7.000000/7.000000/9.000000/16.000000:e/0/7.000000/7.000000/9.000000/16.000000,box=7.000000/0.000000/8.000000:9.000000/9.000000/8.000000/0.000000/45.000000/0.000000/8.000000/0.000000/8.000000:n/0/7.000000/7.000000/9.000000/16.000000:s/0/7.000000/7.000000/9.000000/16.000000,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/1/10.000000/10.000000/11.000000/16.000000:d/1/5.000000/5.000000/6.000000/11.000000:w/1/5.000000/10.000000/11.000000/16.000000:e/1/5.000000/10.000000/11.000000/16.000000:s/1/5.000000/10.000000/6.000000/16.000000:u/1/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/1/5.000000/10.000000/6.000000/16.000000:d/1/10.000000/5.000000/11.000000/11.000000:w/1/5.000000/10.000000/11.000000/16.000000:e/1/5.000000/10.000000/11.000000/16.000000:s/1/10.000000/10.000000/11.000000/16.000000:u/1/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/1/6.000000/10.000000/10.000000/16.000000:d/1/6.000000/10.000000/10.000000/11.000000:s/1/6.000000/10.000000/10.000000/16.000000:u/1/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/1/6.000000/10.000000/10.000000/16.000000:d/1/6.000000/5.000000/10.000000/6.000000:s/1/6.000000/10.000000/10.000000/16.000000:u/1/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/1/6.000000/12.000000/10.000000/16.000000:u/2/6.000000/6.000000/10.000000/10.000000
|
||||
[1.19-]modellist:id=%potted_azalea_bush,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/1/6.000000/6.000000/10.000000/10.000000,box=4.000000/15.900000/4.000000:12.000000/16.000000/12.000000:d/2/4.000000/12.000000/12.000000/4.000000:u/2/4.000000/4.000000/12.000000/12.000000,box=4.000000/8.000000/4.000000:12.000000/16.000000/4.000000:n/3/4.000000/5.000000/12.000000/13.000000:s/3/12.000000/5.000000/4.000000/13.000000,box=4.000000/8.000000/12.000000:12.000000/16.000000/12.000000:n/3/12.000000/5.000000/4.000000/13.000000:s/3/4.000000/5.000000/12.000000/13.000000,box=4.000000/8.000000/4.000000:4.000000/16.000000/12.000000:w/3/4.000000/5.000000/12.000000/13.000000:e/3/12.000000/5.000000/4.000000/13.000000,box=12.000000/8.000000/4.000000:12.000000/16.000000/12.000000:w/3/12.000000/5.000000/4.000000/13.000000:e/3/4.000000/5.000000/12.000000/13.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:n/4/0.000000/4.000000/16.000000/16.000000:s/4/0.000000/4.000000/16.000000/16.000000,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/4/0.000000/4.000000/16.000000/16.000000:e/4/0.000000/4.000000/16.000000/16.000000
|
||||
[1.19-]modellist:id=%potted_flowering_azalea_bush,box=5.000000/0.000000/5.000000:6.000000/6.000000/11.000000:n/0/10.000000/10.000000/11.000000/16.000000:d/0/5.000000/5.000000/6.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/5.000000/10.000000/6.000000/16.000000:u/0/5.000000/5.000000/6.000000/11.000000,box=10.000000/0.000000/5.000000:11.000000/6.000000/11.000000:n/0/5.000000/10.000000/6.000000/16.000000:d/0/10.000000/5.000000/11.000000/11.000000:w/0/5.000000/10.000000/11.000000/16.000000:e/0/5.000000/10.000000/11.000000/16.000000:s/0/10.000000/10.000000/11.000000/16.000000:u/0/10.000000/5.000000/11.000000/11.000000,box=6.000000/0.000000/5.000000:10.000000/6.000000/6.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/10.000000/10.000000/11.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/5.000000/10.000000/6.000000,box=6.000000/0.000000/10.000000:10.000000/6.000000/11.000000:n/0/6.000000/10.000000/10.000000/16.000000:d/0/6.000000/5.000000/10.000000/6.000000:s/0/6.000000/10.000000/10.000000/16.000000:u/0/6.000000/10.000000/10.000000/11.000000,box=6.000000/0.000000/6.000000:10.000000/4.000000/10.000000:d/0/6.000000/12.000000/10.000000/16.000000:u/1/6.000000/6.000000/10.000000/10.000000,box=4.000000/15.900000/4.000000:12.000000/16.000000/12.000000:d/2/4.000000/12.000000/12.000000/4.000000:u/2/4.000000/4.000000/12.000000/12.000000,box=4.000000/8.000000/4.000000:12.000000/16.000000/4.000000:n/3/4.000000/5.000000/12.000000/13.000000:s/3/12.000000/5.000000/4.000000/13.000000,box=4.000000/8.000000/12.000000:12.000000/16.000000/12.000000:n/3/12.000000/5.000000/4.000000/13.000000:s/3/4.000000/5.000000/12.000000/13.000000,box=4.000000/8.000000/4.000000:4.000000/16.000000/12.000000:w/3/4.000000/5.000000/12.000000/13.000000:e/3/12.000000/5.000000/4.000000/13.000000,box=12.000000/8.000000/4.000000:12.000000/16.000000/12.000000:w/3/12.000000/5.000000/4.000000/13.000000:e/3/4.000000/5.000000/12.000000/13.000000,box=2.600000/4.000000/8.000000:13.400000/16.000000/8.000000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:n/4/0.000000/4.000000/16.000000/16.000000:s/4/0.000000/4.000000/16.000000/16.000000,box=8.000000/4.000000/2.600000:8.000000/16.000000/13.400000/0.000000/45.000000/0.000000/8.000000/8.000000/8.000000:w/4/0.000000/4.000000/16.000000/16.000000:e/4/0.000000/4.000000/16.000000/16.000000
|
||||
[1.19-]modellist:id=%lightning_rod,state=powered:true/facing:north,box=6.000000/12.000000/6.000000/false:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/0/0,box=7.000000/0.000000/7.000000/false:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/16.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%lightning_rod,state=powered:false/facing:north,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/0/0
|
||||
[1.19-]modellist:id=%lightning_rod,state=powered:true/facing:east,box=6.000000/12.000000/6.000000/false:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/90/0,box=7.000000/0.000000/7.000000/false:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/16.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/90/0
|
||||
[1.19-]modellist:id=%lightning_rod,state=powered:false/facing:east,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/90/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/90/0
|
||||
[1.19-]modellist:id=%lightning_rod,state=powered:true/facing:south,box=6.000000/12.000000/6.000000/false:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/180/0,box=7.000000/0.000000/7.000000/false:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/16.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/180/0
|
||||
[1.19-]modellist:id=%lightning_rod,state=powered:false/facing:south,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/180/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/180/0
|
||||
[1.19-]modellist:id=%lightning_rod,state=powered:true/facing:west,box=6.000000/12.000000/6.000000/false:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/270/0,box=7.000000/0.000000/7.000000/false:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/16.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/270/0
|
||||
[1.19-]modellist:id=%lightning_rod,state=powered:false/facing:west,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/90/270/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/90/270/0
|
||||
[1.19-]modellist:id=%lightning_rod,state=powered:true/facing:up,box=6.000000/12.000000/6.000000/false:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000,box=7.000000/0.000000/7.000000/false:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/16.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000
|
||||
[1.19-]modellist:id=%lightning_rod,state=powered:false/facing:up,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000
|
||||
[1.19-]modellist:id=%lightning_rod,state=powered:true/facing:down,box=6.000000/12.000000/6.000000/false:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/180/0/0,box=7.000000/0.000000/7.000000/false:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/16.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/180/0/0
|
||||
[1.19-]modellist:id=%lightning_rod,state=powered:false/facing:down,box=6.000000/12.000000/6.000000:10.000000/16.000000/10.000000:n/0/0.000000/0.000000/4.000000/4.000000:d/0/0.000000/0.000000/4.000000/4.000000:w/0/0.000000/0.000000/4.000000/4.000000:e/0/0.000000/0.000000/4.000000/4.000000:s/0/0.000000/0.000000/4.000000/4.000000:u/0/4.000000/4.000000/0.000000/0.000000:R/180/0/0,box=7.000000/0.000000/7.000000:9.000000/12.000000/9.000000:n/0/0.000000/4.000000/2.000000/16.000000:d/0/0.000000/4.000000/2.000000/6.000000:w/0/0.000000/4.000000/2.000000/16.000000:e/0/0.000000/4.000000/2.000000/16.000000:s/0/0.000000/4.000000/2.000000/16.000000:R/180/0/0
|
||||
|
|
|
|||
|
|
@ -3201,8 +3201,6 @@ block:id=%attached_melon_stem,patch0=0:melon_stem,patch1=0:attached_melon_stem,b
|
|||
block:id=%pumpkin_stem,patch0=0:pumpkin_stem,blockcolor=foliagebiome,transparency=TRANSPARENT,stdrot=true
|
||||
# Melon stem
|
||||
block:id=%melon_stem,patch0=0:melon_stem,blockcolor=foliagebiome,transparency=TRANSPARENT,stdrot=true
|
||||
<<<<<<< HEAD
|
||||
=======
|
||||
|
||||
[1.19-]texture:id=mangrove_planks,filename=assets/minecraft/textures/block/mangrove_planks.png,xcount=1,ycount=1
|
||||
[1.19-]texture:id=mangrove_propagule_hanging,filename=assets/minecraft/textures/block/mangrove_propagule_hanging.png,xcount=1,ycount=1
|
||||
|
|
@ -3735,4 +3733,3 @@ block:id=%melon_stem,patch0=0:melon_stem,blockcolor=foliagebiome,transparency=TR
|
|||
[1.19-]block:id=%lightning_rod,state=powered:false/facing:up,patch0=0:lightning_rod,transparency=SEMITRANSPARENT,stdrot=true
|
||||
[1.19-]block:id=%lightning_rod,state=powered:true/facing:down,patch0=0:lightning_rod_on,transparency=SEMITRANSPARENT,stdrot=true
|
||||
[1.19-]block:id=%lightning_rod,state=powered:false/facing:down,patch0=0:lightning_rod,transparency=SEMITRANSPARENT,stdrot=true
|
||||
>>>>>>> aae2146b (fixed mud_bricks sides so it is no longer transparent. thanks BlargCraft on Reddit.)
|
||||
|
|
|
|||
|
After Width: | Height: | Size: 157 B |
|
After Width: | Height: | Size: 278 B |
|
After Width: | Height: | Size: 273 B |
|
After Width: | Height: | Size: 279 B |
|
After Width: | Height: | Size: 242 B |
|
After Width: | Height: | Size: 285 B |
|
After Width: | Height: | Size: 266 B |
|
After Width: | Height: | Size: 160 B |
|
After Width: | Height: | Size: 258 B |
|
After Width: | Height: | Size: 250 B |
|
After Width: | Height: | Size: 266 B |
|
After Width: | Height: | Size: 261 B |
|
After Width: | Height: | Size: 283 B |
|
After Width: | Height: | Size: 209 B |
|
After Width: | Height: | Size: 330 B |
|
After Width: | Height: | Size: 336 B |
|
After Width: | Height: | Size: 260 B |
|
After Width: | Height: | Size: 205 B |
|
After Width: | Height: | Size: 265 B |
|
After Width: | Height: | Size: 257 B |
|
After Width: | Height: | Size: 204 B |
|
After Width: | Height: | Size: 273 B |
|
After Width: | Height: | Size: 321 B |
|
After Width: | Height: | Size: 299 B |
|
After Width: | Height: | Size: 370 B |
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"animation": {
|
||||
"frametime": 20,
|
||||
"interpolate": true
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 274 B |
|
After Width: | Height: | Size: 314 B |
|
After Width: | Height: | Size: 465 B |
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"animation": {
|
||||
"frametime": 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 245 B |
|
After Width: | Height: | Size: 806 B |
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"animation": {
|
||||
"frametime": 1
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 240 B |
|
After Width: | Height: | Size: 724 B |
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"animation": {
|
||||
"frametime": 3,
|
||||
"interpolate": true
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 729 B |
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"animation": {
|
||||
"frametime": 6,
|
||||
"interpolate": true
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 309 B |
|
After Width: | Height: | Size: 125 B |
|
After Width: | Height: | Size: 423 B |
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"animation": {
|
||||
"frametime": 20,
|
||||
"interpolate": true
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 253 B |
|
After Width: | Height: | Size: 261 B |
|
After Width: | Height: | Size: 258 B |
|
After Width: | Height: | Size: 205 B |
|
After Width: | Height: | Size: 506 B |