Compare commits

..

No commits in common. "v3.0" and "v3.7-beta-2" have entirely different histories.

1167 changed files with 1176 additions and 4516 deletions

View File

@ -59,4 +59,3 @@ ForgeGradle
Kosma
Kosma's
DEV
Modrinth

View File

@ -19,13 +19,11 @@ dependencies {
implementation 'org.yaml:snakeyaml:1.23' // DON'T UPDATE - NEWER ONE TRIPS ON WINDOWS ENCODED FILES
implementation 'com.googlecode.owasp-java-html-sanitizer:owasp-java-html-sanitizer:20180219.1'
implementation 'org.postgresql:postgresql:42.2.18'
implementation 'io.github.linktosriram.s3lite:core:0.0.2-SNAPSHOT'
implementation 'io.github.linktosriram.s3lite:api:0.0.2-SNAPSHOT'
implementation 'io.github.linktosriram.s3lite:http-client-url-connection:0.0.2-SNAPSHOT'
implementation 'io.github.linktosriram.s3lite:http-client-spi:0.0.2-SNAPSHOT'
implementation 'io.github.linktosriram.s3lite:util:0.0.2-SNAPSHOT'
implementation 'jakarta.xml.bind:jakarta.xml.bind-api:3.0.1'
implementation 'com.sun.xml.bind:jaxb-impl:3.0.0'
implementation 'io.github.linktosriram:s3-lite-core:0.2.0'
implementation 'io.github.linktosriram:s3-lite-api:0.2.0'
implementation 'io.github.linktosriram:s3-lite-http-client-url-connection:0.2.0'
implementation 'io.github.linktosriram:s3-lite-http-client-spi:0.2.0'
implementation 'io.github.linktosriram:s3-lite-util:0.2.0'
}
processResources {
@ -48,7 +46,7 @@ processResources {
}
jar {
archiveClassifier = 'unshaded'
classifier = 'unshaded'
}
shadowJar {
@ -60,13 +58,11 @@ shadowJar {
include(dependency('org.eclipse.jetty::'))
include(dependency('org.eclipse.jetty.orbit:javax.servlet:'))
include(dependency('org.postgresql:postgresql:'))
include(dependency('io.github.linktosriram.s3lite:core:'))
include(dependency('io.github.linktosriram.s3lite:api:'))
include(dependency('io.github.linktosriram.s3lite:http-client-url-connection:'))
include(dependency('io.github.linktosriram.s3lite:http-client-spi:'))
include(dependency('io.github.linktosriram.s3lite:util:'))
include(dependency('jakarta.xml.bind::'))
include(dependency('com.sun.xml.bind::'))
include(dependency('io.github.linktosriram:s3-lite-core:'))
include(dependency('io.github.linktosriram:s3-lite-api:'))
include(dependency('io.github.linktosriram:s3-lite-http-client-url-connection:'))
include(dependency('io.github.linktosriram:s3-lite-http-client-spi:'))
include(dependency('io.github.linktosriram:s3-lite-util:'))
include(dependency(':DynmapCoreAPI'))
exclude("META-INF/maven/**")
exclude("META-INF/services/**")
@ -79,8 +75,8 @@ shadowJar {
relocate('org.postgresql', 'org.dynmap.org.postgresql')
relocate('io.github.linktosriram.s3lite', 'org.dynmap.s3lite')
destinationDirectory = file '../target'
archiveClassifier = ''
destinationDir = file '../target'
classifier = ''
}
artifacts {

View File

@ -12,7 +12,6 @@ public class ClientUpdateComponent extends Component {
private int hideifshadow;
private int hideifunder;
private boolean hideifsneaking;
private boolean hideifspectator;
private boolean hideifinvisiblepotion;
private boolean is_protected;
public static boolean usePlayerColors;
@ -25,7 +24,6 @@ public class ClientUpdateComponent extends Component {
hideifshadow = configuration.getInteger("hideifshadow", 15);
hideifunder = configuration.getInteger("hideifundercover", 15);
hideifsneaking = configuration.getBoolean("hideifsneaking", false);
hideifspectator = configuration.getBoolean("hideifspectator", false);
hideifinvisiblepotion = configuration.getBoolean("hide-if-invisiblity-potion", true);
is_protected = configuration.getBoolean("protected-player-info", false);
usePlayerColors = configuration.getBoolean("use-name-colors", false);
@ -102,9 +100,6 @@ public class ClientUpdateComponent extends Component {
if((!hide) && hideifsneaking && p.isSneaking()) {
hide = true;
}
if((!hide) && hideifspectator && p.isSpectator()) {
hide = true;
}
if((!hide) && is_protected && (!see_all)) {
if(e.user != null) {
hide = !core.testIfPlayerVisibleToPlayer(e.user, p.getName());

View File

@ -31,7 +31,6 @@ public class MarkersComponent extends ClientComponent {
private MarkerSet spawnbedset;
private MarkerIcon spawnbedicon;
private String spawnbedformat;
private boolean removebedonplayerleave;
private long maxofflineage;
private boolean showSpawn;
private boolean showBorder;
@ -181,7 +180,7 @@ public class MarkersComponent extends ClientComponent {
spawnbedicon = api.getMarkerIcon(configuration.getString("spawnbedicon", "bed"));
spawnbedformat = configuration.getString("spawnbedformat", "%name%'s bed");
removebedonplayerleave = configuration.getBoolean("spawnbedremoveonplayerleave", true);
/* Add listener for players coming and going */
core.listenerManager.addListener(EventType.PLAYER_JOIN, new PlayerEventListener() {
@Override
@ -189,7 +188,6 @@ public class MarkersComponent extends ClientComponent {
updatePlayer(p);
}
});
if (removebedonplayerleave) {
core.listenerManager.addListener(EventType.PLAYER_QUIT, new PlayerEventListener() {
@Override
public void playerEvent(DynmapPlayer p) {
@ -199,7 +197,6 @@ public class MarkersComponent extends ClientComponent {
}
}
});
}
core.listenerManager.addListener(EventType.PLAYER_BED_LEAVE, new PlayerEventListener() {
@Override
public void playerEvent(final DynmapPlayer p) {

View File

@ -44,12 +44,6 @@ public interface DynmapPlayer extends DynmapCommandSender {
* @return true if sneaking
*/
public boolean isSneaking();
/**
* get spectator gamemode
* @return true if gamemode spectator
*/
public boolean isSpectator();
/**
* Get health
* @return health points

View File

@ -34,7 +34,7 @@ public class ChunkVersionHDShader implements HDShader {
}
};
// Mapping from https://minecraft.wiki/w/Data_version
// Mapping from https://minecraft.fandom.com/wiki/Data_version
final static DataVersionMap[] versionmap = {
new DataVersionMap(0, "unknown", 0x202020),
new DataVersionMap(1519, "1.13.0", 0xF9E79F),
@ -64,13 +64,6 @@ public class ChunkVersionHDShader implements HDShader {
new DataVersionMap(3120, "1.19.2", 0xe7aeb8),
new DataVersionMap(3218, "1.19.3", 0xf8c0c8),
new DataVersionMap(3337, "1.19.4", 0xffb6c1),
new DataVersionMap(3465, "1.20.1", 0xe7aeb10),
new DataVersionMap(3578, "1.20.2", 0xe196a7),
new DataVersionMap(3698, "1.20.3", 0xe7aeb11),
new DataVersionMap(3700, "1.20.4", 0xe196a8),
new DataVersionMap(3837, "1.20.5", 0xe7aeb12),
new DataVersionMap(3839, "1.20.6", 0xe196a9),
new DataVersionMap(3953, "1.21.0", 0xe7aeb13),
};
final static Color unknown_color = new Color(255, 255, 255);

View File

@ -364,7 +364,7 @@ public class HDBlockModels {
if ((line.length() > 0) && (line.charAt(0) == '[')) { // If version constrained like
int end = line.indexOf(']'); // Find end
if (end < 0) {
Log.severe("Format error - line " + lineNum + ": bad version limit of file: " + fname);
Log.severe("Format error - line " + lineNum + " of " + fname + ": bad version limit");
return;
}
String vertst = line.substring(1, end);
@ -414,12 +414,12 @@ public class HDBlockModels {
cnt++;
}
else {
Log.severe("Invalid model block name " + bblk.blockName + " at line " + lineNum + " of file: " + fname);
Log.severe("Invalid model block name " + bblk.blockName + " at line " + lineNum);
}
}
}
else {
Log.severe("Block model missing required parameters = line " + lineNum + " of file: " + fname);
Log.severe("Block model missing required parameters = line " + lineNum + " of " + fname);
}
layerbits = 0;
}
@ -444,7 +444,7 @@ public class HDBlockModels {
}
bsprslt = bsp.getMatchingStates();
if (bsprslt.size() != 1) {
Log.severe("Missing rotate source on line " + lineNum + " of file: " + fname);
Log.severe("Missing rotate source on line " + lineNum);
continue;
}
DynmapBlockState basebs = bsprslt.keySet().iterator().next();
@ -452,7 +452,7 @@ public class HDBlockModels {
/* get old model to be rotated */
DynmapBlockState bs = basebs.getState(bits.nextSetBit(0));
if (bs.isAir()) {
Log.severe("Invalid rotate ID: " + bs + " on line " + lineNum + " of file: " + fname);
Log.severe("Invalid rotate ID: " + bs + " on line " + lineNum);
continue;
}
HDBlockModel mod = models_by_id_data.get(bs.globalStateIndex);
@ -491,7 +491,7 @@ public class HDBlockModels {
}
}
else {
Log.severe("Invalid rotate error - line " + lineNum + " of file: " + fname);
Log.severe("Invalid rotate error - line " + lineNum + " of " + fname);
continue;
}
}
@ -513,7 +513,7 @@ public class HDBlockModels {
}
bsprslt = bsp.getMatchingStates();
if (bsprslt.size() != 1) {
Log.severe("Missing rotate source on line " + lineNum + " of file: " + fname);
Log.severe("Missing rotate source on line " + lineNum);
continue;
}
DynmapBlockState basebs = bsprslt.keySet().iterator().next();
@ -521,7 +521,7 @@ public class HDBlockModels {
/* get old model to be rotated */
DynmapBlockState bs = basebs.getState(bits.nextSetBit(0));
if (bs.isAir()) {
Log.severe("Invalid patchrotate ID: " + bs + " on line " + lineNum + "of file: " + fname);
Log.severe("Invalid patchrotate ID: " + bs + " on line " + lineNum);
continue;
}
HDBlockModel mod = models_by_id_data.get(bs.globalStateIndex);
@ -541,7 +541,7 @@ public class HDBlockModels {
}
}
else {
Log.severe("Invalid rotate error - line " + lineNum + " of file: " + fname);
Log.severe("Invalid rotate error - line " + lineNum + " of " + fname);
return;
}
}
@ -560,7 +560,7 @@ public class HDBlockModels {
}
}
else {
Log.severe("Invalid update ignore block name " + bbs + " at line " + lineNum + " of file: " + fname);
Log.severe("Invalid update ignore block name " + bbs + " at line " + lineNum);
}
}
}
@ -584,7 +584,7 @@ public class HDBlockModels {
for(int i = 0; i < args.length; i++) {
String[] v = args[i].split("=");
if(v.length < 2) {
Log.severe("Format error - line " + lineNum + " of file: " + fname);
Log.severe("Format error - line " + lineNum + " of " + fname);
return;
}
try {
@ -592,7 +592,7 @@ public class HDBlockModels {
int parmval = config.getInteger(v[0], val); /* Read value, with applied default */
varvals.put(v[0], parmval); /* And save value */
} catch (NumberFormatException nfx) {
Log.severe("Format error - line " + lineNum + " of file: " + fname);
Log.severe("Format error - line " + lineNum + " of " + fname);
return;
}
}
@ -668,7 +668,7 @@ public class HDBlockModels {
p_vmax = Double.parseDouble(av[1]);
}
else if(av[0].equals("UplusVmax")) {
Log.warning("UplusVmax deprecated - use VmaxAtUMax - line " + lineNum + " of file: " + fname);
Log.warning("UplusVmax deprecated - use VmaxAtUMax - line " + lineNum + " of " + fname);
p_uplusvmax = Double.parseDouble(av[1]);
}
else if(av[0].equals("VmaxAtUMax")) {
@ -737,11 +737,11 @@ public class HDBlockModels {
patchnum1 = Integer.parseInt(ids2[1]);
}
if (patchnum0 < 0) {
Log.severe("Invalid patch index " + patchnum0 + " - line " + lineNum + " of file: " + fname);
Log.severe("Invalid patch index " + patchnum0 + " - line " + lineNum + " of " + fname);
return;
}
if (patchnum1 < patchnum0) {
Log.severe("Invalid patch index " + patchnum1 + " - line " + lineNum + " of file: " + fname);
Log.severe("Invalid patch index " + patchnum1 + " - line " + lineNum + " of " + fname);
return;
}
String patchid = av[1];
@ -749,7 +749,7 @@ public class HDBlockModels {
for (int i = patchnum0; i <= patchnum1; i++) {
PatchDefinition pd = pdf.getPatchByName(patchid, i);
if (pd == null) {
Log.severe("Invalid patch ID " + patchid + " - line " + lineNum + " of file: " + fname);
Log.severe("Invalid patch ID " + patchid + " - line " + lineNum + " of " + fname);
return;
}
patches.add(i, pd);
@ -769,12 +769,12 @@ public class HDBlockModels {
cnt++;
}
else {
Log.severe("Invalid patchmodel block name " + bs + " at line " + lineNum + " of file: " + fname);
Log.severe("Invalid patchmodel block name " + bs + " at line " + lineNum);
}
}
}
else {
Log.severe("Patch block model missing required parameters = line " + lineNum + " of file: " + fname);
Log.severe("Patch block model missing required parameters = line " + lineNum + " of " + fname);
}
}
// Shortcut for defining a patchblock that is a simple rectangular prism, with sidex corresponding to full block sides
@ -832,12 +832,12 @@ public class HDBlockModels {
cnt++;
}
else {
Log.severe("Invalid boxmodel block name " + bs + " at line " + lineNum + " of file: " + fname);
Log.severe("Invalid boxmodel block name " + bs + " at line " + lineNum);
}
}
}
else {
Log.severe("Box block model missing required parameters = line " + lineNum + " of file: " + fname);
Log.severe("Box block model missing required parameters = line " + lineNum + " of " + fname);
}
}
// Shortcut for defining a patchblock that is a simple rectangular prism, with sidex corresponding to full block sides
@ -898,12 +898,12 @@ public class HDBlockModels {
cnt++;
}
else {
Log.severe("Invalid boxlist block name " + bs + " at line " + lineNum + " of file: " + fname);
Log.severe("Invalid boxlist block name " + bs + " at line " + lineNum);
}
}
}
else {
Log.severe("Box list block model missing required parameters = line " + lineNum + " of file: " + fname);
Log.severe("Box list block model missing required parameters = line " + lineNum + " of " + fname);
}
}
// Shortcur for building JSON model style
@ -932,7 +932,7 @@ public class HDBlockModels {
}
}
else {
Log.severe("Invalid modellist FROM value (" + prms[0] + " at line " + lineNum + " of file: " + fname);
Log.severe("Invalid modellist FROM value (" + prms[0] + " at line " + lineNum);
}
}
if (prms.length > 1) { // Handle to (to-x/y/z or to-x/y/z/rotx/roty/rotz) or to-x/y/z/rotx/roty/rotz/rorigx/rorigy/rorigz
@ -953,7 +953,7 @@ public class HDBlockModels {
}
}
else {
Log.severe("Invalid modellist TO value (" + prms[1] + " at line " + lineNum + " of file: " + fname);
Log.severe("Invalid modellist TO value (" + prms[1] + " at line " + lineNum);
}
}
// Rest are faces (<side - upnsew>/<txtidx>/umin/vmin/umax/vmax> or <<side - upnsew>/<txtidx>)
@ -971,14 +971,14 @@ public class HDBlockModels {
ModelBoxSide side = new ModelBoxSide();
side.rot = null;
if ((flds.length != 2) && (flds.length != 6)) {
Log.severe("Invalid modellist face '" + v + "' at line " + lineNum + " of file: " + fname);
Log.severe("Invalid modellist face '" + v + "' at line " + lineNum);
continue;
}
if (flds.length > 0) {
String face = flds[0];
side.side = toBlockSide.get(face.substring(0, 1));
if (side.side == null) {
Log.severe("Invalid modellist side value (" + face + ") in '" + v + "' at line " + lineNum + " of file: " + fname);
Log.severe("Invalid modellist side value (" + face + ") in '" + v + "' at line " + lineNum);
continue;
}
if (flds[0].length() > 1) {
@ -1037,7 +1037,7 @@ public class HDBlockModels {
pd.add(patch);
}
else {
Log.severe(String.format("Invalid modellist patch for box %.02f/%.02f/%.02f:%.02f/%.02f/%.02f side %s at line %d of file: %s", bl.from[0], bl.from[1], bl.from[2], bl.to[0], bl.to[1], bl.to[2], side.side, lineNum, fname));
Log.severe(String.format("Invalid modellist patch for box %.02f/%.02f/%.02f:%.02f/%.02f/%.02f side %s at line %d", bl.from[0], bl.from[1], bl.from[2], bl.to[0], bl.to[1], bl.to[2], side.side, lineNum));
Log.verboseinfo(String.format("line = %s:%s", typeid, line));
}
}
@ -1054,12 +1054,12 @@ public class HDBlockModels {
cnt++;
}
else {
Log.severe("Invalid modellist block name " + bs + " at line " + lineNum + " of file: " + fname);
Log.severe("Invalid modellist block name " + bs + " at line " + lineNum);
}
}
}
else {
Log.severe("Model list block model missing required parameters = line " + lineNum + " of file: " + fname);
Log.severe("Model list block model missing required parameters = line " + lineNum + " of " + fname);
}
}
else if (typeid.equals("customblock")) {
@ -1094,7 +1094,7 @@ public class HDBlockModels {
if (bs.isNotAir()) {
CustomBlockModel cbm = new CustomBlockModel(bs, bsprslt.get(bs), cls, custargs, blockset);
if(cbm.render == null) {
Log.severe("Custom block model failed to initialize = line " + lineNum + " of file: " + fname);
Log.severe("Custom block model failed to initialize = line " + lineNum + " of " + fname);
}
else {
/* Update maximum texture count */
@ -1106,12 +1106,12 @@ public class HDBlockModels {
cnt++;
}
else {
Log.severe("Invalid custommodel block name " + bs + " at line " + lineNum + " of file: " + fname);
Log.severe("Invalid custommodel block name " + bs + " at line " + lineNum);
}
}
}
else {
Log.severe("Custom block model missing required parameters = line " + lineNum + " of file: " + fname);
Log.severe("Custom block model missing required parameters = line " + lineNum + " of " + fname);
}
}
else if (typeid.equals("modname")) {
@ -1177,7 +1177,7 @@ public class HDBlockModels {
} catch (IOException iox) {
Log.severe("Error reading models.txt - " + iox.toString());
} catch (NumberFormatException nfx) {
Log.severe("Format error - line " + rdr.getLineNumber() + " of file: " + fname + ": " + nfx.getMessage());
Log.severe("Format error - line " + rdr.getLineNumber() + " of " + fname + ": " + nfx.getMessage());
} finally {
if(rdr != null) {
try {

View File

@ -1273,17 +1273,7 @@ public class TexturePack {
imgs[idx].width = img.getWidth();
imgs[idx].height = img.getHeight();
imgs[idx].argb = new int[imgs[idx].width * imgs[idx].height];
if (img.getType() == BufferedImage.TYPE_BYTE_GRAY) { // We don't want alpha correction, apparently
float[] buffer = new float[imgs[idx].width * imgs[idx].height];
img.getData().getPixels(0, 0, imgs[idx].width, imgs[idx].height, buffer);
for (int i = 0; i < imgs[idx].argb.length; i++) {
int v = (int) buffer[i];
imgs[idx].argb[i] = 0xFF000000 | (v << 16) | (v << 8) | v;
}
}
else {
img.getRGB(0, 0, imgs[idx].width, imgs[idx].height, imgs[idx].argb, 0, imgs[idx].width);
}
img.flush();
imgs[idx].isLoaded = true;
}

View File

@ -1,7 +1,6 @@
package org.dynmap.storage.aws_s3;
import java.io.IOException;
import java.net.URI;
import java.nio.charset.StandardCharsets;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
@ -140,7 +139,7 @@ public class AWSS3MapStorage extends MapStorage {
else {
PutObjectRequest req = PutObjectRequest.builder().bucketName(bucketname).key(baseKey).contentType(map.getImageFormat().getEncoding().getContentType())
.addMetadata("x-dynmap-hash", Long.toHexString(hash)).addMetadata("x-dynmap-ts", Long.toString(timestamp)).build();
s3.putObject(req, RequestBody.fromBytes(encImage.buf));
s3.putObject(req, RequestBody.fromBytes(encImage.buf, encImage.len));
}
done = true;
} catch (S3Exception x) {
@ -222,7 +221,7 @@ public class AWSS3MapStorage extends MapStorage {
}
private String bucketname;
private Region region;
private String region;
private String access_key_id;
private String secret_access_key;
private String prefix;
@ -249,20 +248,10 @@ public class AWSS3MapStorage extends MapStorage {
}
// Get our settings
bucketname = core.configuration.getString("storage/bucketname", "dynmap");
region = core.configuration.getString("storage/region", "us-east-1");
access_key_id = core.configuration.getString("storage/aws_access_key_id", System.getenv("AWS_ACCESS_KEY_ID"));
secret_access_key = core.configuration.getString("storage/aws_secret_access_key", System.getenv("AWS_SECRET_ACCESS_KEY"));
prefix = core.configuration.getString("storage/prefix", "");
// Either use a custom region, or one of the default AWS regions
String region_name = core.configuration.getString("storage/region", "us-east-1");
String region_endpoint = core.configuration.getString("storage/override_endpoint", "");
if (region_endpoint.length() > 0) {
region = Region.of(region_name, URI.create(region_endpoint));
} else {
region = Region.fromString(region_name);
}
if ((prefix.length() > 0) && (prefix.charAt(prefix.length()-1) != '/')) {
prefix += '/';
}
@ -529,7 +518,7 @@ public class AWSS3MapStorage extends MapStorage {
}
else {
PutObjectRequest req = PutObjectRequest.builder().bucketName(bucketname).key(baseKey).contentType("image/png").build();
s3.putObject(req, RequestBody.fromBytes(encImage.buf));
s3.putObject(req, RequestBody.fromBytes(encImage.buf, encImage.len));
}
done = true;
} catch (S3Exception x) {
@ -582,7 +571,7 @@ public class AWSS3MapStorage extends MapStorage {
}
else {
PutObjectRequest req = PutObjectRequest.builder().bucketName(bucketname).key(baseKey).contentType("image/png").build();
s3.putObject(req, RequestBody.fromBytes(encImage.buf));
s3.putObject(req, RequestBody.fromBytes(encImage.buf, encImage.len));
}
done = true;
} catch (S3Exception x) {
@ -745,7 +734,7 @@ public class AWSS3MapStorage extends MapStorage {
ct = "application/x-javascript";
}
PutObjectRequest req = PutObjectRequest.builder().bucketName(bucketname).key(baseKey).contentType(ct).build();
s3.putObject(req, RequestBody.fromBytes(content.buf));
s3.putObject(req, RequestBody.fromBytes(content.buf, content.len));
standalone_cache.put(fileid, digest);
}
done = true;
@ -774,7 +763,7 @@ public class AWSS3MapStorage extends MapStorage {
if (cpoolCount < POOLSIZE) { // Still more we can have
c = new DefaultS3ClientBuilder()
.credentialsProvider(() -> AwsBasicCredentials.create(access_key_id, secret_access_key))
.region(region)
.region(Region.fromString(region))
.httpClient(URLConnectionSdkHttpClient.create())
.build();
if (c == null) {

View File

@ -533,7 +533,6 @@ public class SQLiteMapStorage extends MapStorage {
private static Connection configureConnection(Connection conn) throws SQLException {
final Statement statement = conn.createStatement();
statement.execute("PRAGMA auto_vacuum = FULL;");
statement.execute("PRAGMA journal_mode = WAL;");
statement.close();
return conn;

View File

@ -570,14 +570,6 @@
transition: all 0.6s ease-in-out 0s;
}
/* do not animate player movements when zooming */
.dynmap .leaflet-zoom-anim .leaflet-zoom-animated.playerMarker {
-moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
-o-transition: transform 0.25s cubic-bezier(0,0,0.25,1);
transition: transform 0.25s cubic-bezier(0,0,0.25,1);
}
.dynmap .playerIcon {
margin-top: -16px;
margin-left: -16px;

View File

@ -856,13 +856,7 @@ modellist:id=%iron_bars,state=west:false/east:false/south:false/north:false,box=
# Fern
# Dead shrub
# Tall grass
patchblock:id=fern,patch0=VertX1Z0ToX0Z1,patch1=VertX1Z0ToX0Z1@90
[-1.20.2]patchblock:id=grass,patch0=VertX1Z0ToX0Z1,patch1=VertX1Z0ToX0Z1@90
[1.20.3-]patchblock:id=short_grass,patch0=VertX1Z0ToX0Z1,patch1=VertX1Z0ToX0Z1@90
patchblock:id=cobweb,patch0=VertX1Z0ToX0Z1,patch1=VertX1Z0ToX0Z1@90
patchblock:id=tall_grass,patch0=VertX1Z0ToX0Z1,patch1=VertX1Z0ToX0Z1@90
patchblock:id=dead_bush,patch0=VertX1Z0ToX0Z1,patch1=VertX1Z0ToX0Z1@90
patchblock:id=sugar_cane,patch0=VertX1Z0ToX0Z1,patch1=VertX1Z0ToX0Z1@90
patchblock:id=fern,id=grass,id=cobweb,id=tall_grass,id=dead_bush,id=sugar_cane,patch0=VertX1Z0ToX0Z1,patch1=VertX1Z0ToX0Z1@90
# Seagrass
# Tall seagrass
@ -3441,116 +3435,3 @@ modellist:id=%dropper,state=facing:down,box=0.000000/0.000000/0.000000:16.000000
[1.20-]modellist:id=%calibrated_sculk_sensor,state=facing:east/sculk_sensor_phase:inactive,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/2/0.000000/8.000000/16.000000/16.000000:w/2/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/8.000000/16.000000/16.000000:u/3/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=-1.000000/8.000000/3.000000:7.000000/16.000000/3.000000/0.000000/45.000000/0.000000/3.000000/12.000000/3.000000:n/4/4.000000/8.000000/12.000000/16.000000:s/4/12.000000/8.000000/4.000000/16.000000:R/0/90/0,box=9.000000/8.000000/3.000000:17.000000/16.000000/3.000000/0.000000/-45.000000/0.000000/13.000000/12.000000/3.000000:n/4/12.000000/8.000000/4.000000/16.000000:s/4/4.000000/8.000000/12.000000/16.000000:R/0/90/0,box=9.000000/8.000000/13.000000:17.000000/16.000000/13.000000/0.000000/45.000000/0.000000/13.000000/12.000000/13.000000:n/4/12.000000/8.000000/4.000000/16.000000:s/4/4.000000/8.000000/12.000000/16.000000:R/0/90/0,box=-1.000000/8.000000/13.000000:7.000000/16.000000/13.000000/0.000000/-45.000000/0.000000/3.000000/12.000000/13.000000:n/4/4.000000/8.000000/12.000000/16.000000:s/4/12.000000/8.000000/4.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000/false:8.000000/20.000000/16.000000/0.000000/45.000000/0.000000/8.000000/9.000000/8.000000:w/5/0.000000/4.000000/16.000000/16.000000:e/5/0.000000/4.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000/false:16.000000/20.000000/8.000000/0.000000/45.000000/0.000000/8.000000/9.000000/8.000000:n/5/0.000000/4.000000/16.000000/16.000000:s/5/0.000000/4.000000/16.000000/16.000000:R/0/90/0
[1.20-]modellist:id=%calibrated_sculk_sensor,state=facing:east/sculk_sensor_phase:active,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/2/0.000000/8.000000/16.000000/16.000000:w/2/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/8.000000/16.000000/16.000000:u/3/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=-1.000000/8.000000/3.000000:7.000000/16.000000/3.000000/0.000000/45.000000/0.000000/3.000000/12.000000/3.000000:n/4/4.000000/8.000000/12.000000/16.000000:s/4/12.000000/8.000000/4.000000/16.000000:R/0/90/0,box=9.000000/8.000000/3.000000:17.000000/16.000000/3.000000/0.000000/-45.000000/0.000000/13.000000/12.000000/3.000000:n/4/12.000000/8.000000/4.000000/16.000000:s/4/4.000000/8.000000/12.000000/16.000000:R/0/90/0,box=9.000000/8.000000/13.000000:17.000000/16.000000/13.000000/0.000000/45.000000/0.000000/13.000000/12.000000/13.000000:n/4/12.000000/8.000000/4.000000/16.000000:s/4/4.000000/8.000000/12.000000/16.000000:R/0/90/0,box=-1.000000/8.000000/13.000000:7.000000/16.000000/13.000000/0.000000/-45.000000/0.000000/3.000000/12.000000/13.000000:n/4/4.000000/8.000000/12.000000/16.000000:s/4/12.000000/8.000000/4.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000/false:8.000000/20.000000/16.000000/0.000000/45.000000/0.000000/8.000000/9.000000/8.000000:w/5/0.000000/4.000000/16.000000/16.000000:e/5/0.000000/4.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000/false:16.000000/20.000000/8.000000/0.000000/45.000000/0.000000/8.000000/9.000000/8.000000:n/5/0.000000/4.000000/16.000000/16.000000:s/5/0.000000/4.000000/16.000000/16.000000:R/0/90/0
[1.20-]modellist:id=%calibrated_sculk_sensor,state=facing:east/sculk_sensor_phase:cooldown,box=0.000000/0.000000/0.000000:16.000000/8.000000/16.000000:n/2/0.000000/8.000000/16.000000/16.000000:w/2/0.000000/8.000000/16.000000/16.000000:s/0/0.000000/8.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/8.000000/16.000000/16.000000:u/3/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=-1.000000/8.000000/3.000000:7.000000/16.000000/3.000000/0.000000/45.000000/0.000000/3.000000/12.000000/3.000000:n/4/4.000000/8.000000/12.000000/16.000000:s/4/12.000000/8.000000/4.000000/16.000000:R/0/90/0,box=9.000000/8.000000/3.000000:17.000000/16.000000/3.000000/0.000000/-45.000000/0.000000/13.000000/12.000000/3.000000:n/4/12.000000/8.000000/4.000000/16.000000:s/4/4.000000/8.000000/12.000000/16.000000:R/0/90/0,box=9.000000/8.000000/13.000000:17.000000/16.000000/13.000000/0.000000/45.000000/0.000000/13.000000/12.000000/13.000000:n/4/12.000000/8.000000/4.000000/16.000000:s/4/4.000000/8.000000/12.000000/16.000000:R/0/90/0,box=-1.000000/8.000000/13.000000:7.000000/16.000000/13.000000/0.000000/-45.000000/0.000000/3.000000/12.000000/13.000000:n/4/4.000000/8.000000/12.000000/16.000000:s/4/12.000000/8.000000/4.000000/16.000000:R/0/90/0,box=8.000000/8.000000/0.000000/false:8.000000/20.000000/16.000000/0.000000/45.000000/0.000000/8.000000/9.000000/8.000000:w/5/0.000000/4.000000/16.000000/16.000000:e/5/0.000000/4.000000/16.000000/16.000000:R/0/90/0,box=0.000000/8.000000/8.000000/false:16.000000/20.000000/8.000000/0.000000/45.000000/0.000000/8.000000/9.000000/8.000000:n/5/0.000000/4.000000/16.000000/16.000000:s/5/0.000000/4.000000/16.000000/16.000000:R/0/90/0
# 1.20.3
[1.20.3-]modellist:id=%tuff_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: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:d/0/0.000000/0.000000/16.000000/16.000000
[1.20.3-]modellist:id=%tuff_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: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:d/0/0.000000/0.000000/16.000000/16.000000
[1.20.3-]customblock:id=%tuff_stairs,class=org.dynmap.hdmap.renderer.StairStateRenderer
[1.20.3-]customblock:id=%tuff_wall,class=org.dynmap.hdmap.renderer.FenceWallBlockStateRenderer,type=tallwall
[1.20.3-]modellist:id=%polished_tuff_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: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:d/0/0.000000/0.000000/16.000000/16.000000
[1.20.3-]modellist:id=%polished_tuff_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: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:d/0/0.000000/0.000000/16.000000/16.000000
[1.20.3-]customblock:id=%polished_tuff_stairs,class=org.dynmap.hdmap.renderer.StairStateRenderer
[1.20.3-]customblock:id=%polished_tuff_wall,class=org.dynmap.hdmap.renderer.FenceWallBlockStateRenderer,type=tallwall
[1.20.3-]customblock:id=%polished_tuff_stairs,class=org.dynmap.hdmap.renderer.StairStateRenderer
[1.20.3-]customblock:id=%polished_tuff_wall,class=org.dynmap.hdmap.renderer.FenceWallBlockStateRenderer,type=tallwall
[1.20.3-]customblock:id=%copper_door,id=%exposed_copper_door,id=%oxidized_copper_door,id=%weathered_copper_door,class=org.dynmap.hdmap.renderer.DoorStateRenderer
[1.20.3-]customblock:id=%waxed_copper_door,id=%waxed_exposed_copper_door,id=%waxed_oxidized_copper_door,id=%waxed_weathered_copper_door,class=org.dynmap.hdmap.renderer.DoorStateRenderer
[1.20.3-]boxblock:id=%copper_trapdoor,id=%waxed_copper_trapdoor,id=%exposed_copper_trapdoor,id=%waxed_exposed_copper_trapdoor,id=%oxidized_copper_trapdoor,id=%waxed_oxidized_copper_trapdoor,id=%weathered_copper_trapdoor,id=%waxed_weathered_copper_trapdoor,data=12-15,data=28-31,data=44-47,data=60-63,ymax=0.1875
[1.20.3-]boxblock:id=%copper_trapdoor,id=%waxed_copper_trapdoor,id=%exposed_copper_trapdoor,id=%waxed_exposed_copper_trapdoor,id=%oxidized_copper_trapdoor,id=%waxed_oxidized_copper_trapdoor,id=%weathered_copper_trapdoor,id=%waxed_weathered_copper_trapdoor,data=32-35,data=40-44,xmin=0.8125
[1.20.3-]boxblock:id=%copper_trapdoor,id=%waxed_copper_trapdoor,id=%exposed_copper_trapdoor,id=%waxed_exposed_copper_trapdoor,id=%oxidized_copper_trapdoor,id=%waxed_oxidized_copper_trapdoor,id=%weathered_copper_trapdoor,id=%waxed_weathered_copper_trapdoor,data=48-51,data=56-59,xmax=0.1875
[1.20.3-]boxblock:id=%copper_trapdoor,id=%waxed_copper_trapdoor,id=%exposed_copper_trapdoor,id=%waxed_exposed_copper_trapdoor,id=%oxidized_copper_trapdoor,id=%waxed_oxidized_copper_trapdoor,id=%weathered_copper_trapdoor,id=%waxed_weathered_copper_trapdoor,data=16-19,data=24-27,zmax=0.1875
[1.20.3-]boxblock:id=%copper_trapdoor,id=%waxed_copper_trapdoor,id=%exposed_copper_trapdoor,id=%waxed_exposed_copper_trapdoor,id=%oxidized_copper_trapdoor,id=%waxed_oxidized_copper_trapdoor,id=%weathered_copper_trapdoor,id=%waxed_weathered_copper_trapdoor,data=0-3,data=8-11,zmin=0.8125
[1.20.3-]boxblock:id=%copper_trapdoor,id=%waxed_copper_trapdoor,id=%exposed_copper_trapdoor,id=%waxed_exposed_copper_trapdoor,id=%oxidized_copper_trapdoor,id=%waxed_oxidized_copper_trapdoor,id=%weathered_copper_trapdoor,id=%waxed_weathered_copper_trapdoor,data=4-7,data=20-23,data=36-39,data=52-55,ymin=0.8125
# 1.20.5
[1.20.5-]modellist:id=%vault,state=facing:north/ominous:true/vault_state:inactive,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000
[1.20.5-]modellist:id=%vault,state=facing:north/ominous:true/vault_state:active,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000
[1.20.5-]modellist:id=%vault,state=facing:north/ominous:true/vault_state:unlocking,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000
[1.20.5-]modellist:id=%vault,state=facing:north/ominous:true/vault_state:ejecting,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000
[1.20.5-]modellist:id=%vault,state=facing:north/ominous:false/vault_state:inactive,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000
[1.20.5-]modellist:id=%vault,state=facing:north/ominous:false/vault_state:active,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000
[1.20.5-]modellist:id=%vault,state=facing:north/ominous:false/vault_state:unlocking,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000
[1.20.5-]modellist:id=%vault,state=facing:north/ominous:false/vault_state:ejecting,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000
[1.20.5-]modellist:id=%vault,state=facing:south/ominous:true/vault_state:inactive,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000:R/0/180/0
[1.20.5-]modellist:id=%vault,state=facing:south/ominous:true/vault_state:active,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000:R/0/180/0
[1.20.5-]modellist:id=%vault,state=facing:south/ominous:true/vault_state:unlocking,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000:R/0/180/0
[1.20.5-]modellist:id=%vault,state=facing:south/ominous:true/vault_state:ejecting,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000:R/0/180/0
[1.20.5-]modellist:id=%vault,state=facing:south/ominous:false/vault_state:inactive,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000:R/0/180/0
[1.20.5-]modellist:id=%vault,state=facing:south/ominous:false/vault_state:active,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000:R/0/180/0
[1.20.5-]modellist:id=%vault,state=facing:south/ominous:false/vault_state:unlocking,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000:R/0/180/0
[1.20.5-]modellist:id=%vault,state=facing:south/ominous:false/vault_state:ejecting,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:R/0/180/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000:R/0/180/0
[1.20.5-]modellist:id=%vault,state=facing:west/ominous:true/vault_state:inactive,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000:R/0/270/0
[1.20.5-]modellist:id=%vault,state=facing:west/ominous:true/vault_state:active,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000:R/0/270/0
[1.20.5-]modellist:id=%vault,state=facing:west/ominous:true/vault_state:unlocking,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000:R/0/270/0
[1.20.5-]modellist:id=%vault,state=facing:west/ominous:true/vault_state:ejecting,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000:R/0/270/0
[1.20.5-]modellist:id=%vault,state=facing:west/ominous:false/vault_state:inactive,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000:R/0/270/0
[1.20.5-]modellist:id=%vault,state=facing:west/ominous:false/vault_state:active,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000:R/0/270/0
[1.20.5-]modellist:id=%vault,state=facing:west/ominous:false/vault_state:unlocking,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000:R/0/270/0
[1.20.5-]modellist:id=%vault,state=facing:west/ominous:false/vault_state:ejecting,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:R/0/270/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000:R/0/270/0
[1.20.5-]modellist:id=%vault,state=facing:east/ominous:true/vault_state:inactive,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000:R/0/90/0
[1.20.5-]modellist:id=%vault,state=facing:east/ominous:true/vault_state:active,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000:R/0/90/0
[1.20.5-]modellist:id=%vault,state=facing:east/ominous:true/vault_state:unlocking,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000:R/0/90/0
[1.20.5-]modellist:id=%vault,state=facing:east/ominous:true/vault_state:ejecting,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000:R/0/90/0
[1.20.5-]modellist:id=%vault,state=facing:east/ominous:false/vault_state:inactive,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000:R/0/90/0
[1.20.5-]modellist:id=%vault,state=facing:east/ominous:false/vault_state:active,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000:R/0/90/0
[1.20.5-]modellist:id=%vault,state=facing:east/ominous:false/vault_state:unlocking,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000:R/0/90/0
[1.20.5-]modellist:id=%vault,state=facing:east/ominous:false/vault_state:ejecting,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:e/0/0.000000/0.000000/16.000000/16.000000:u/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/0.000000/0.000000/16.000000/16.000000:n/3/0.000000/0.000000/16.000000/16.000000:w/0/0.000000/0.000000/16.000000/16.000000:R/0/90/0,box=15.998000/3.002000/0.002000:0.002000/15.998000/15.998000:e/0/16.000000/0.000000/0.000000/13.000000:u/2/16.000000/0.000000/0.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:s/0/16.000000/0.000000/0.000000/13.000000:n/3/16.000000/0.000000/0.000000/13.000000:w/0/16.000000/0.000000/0.000000/13.000000:R/0/90/0
[1.20.5-]modellist:id=%heavy_core,box=4.000000/0.000000/4.000000:12.000000/8.000000/12.000000:e/0/0.000000/8.000000/8.000000/16.000000:u/0/0.000000/0.000000/8.000000/8.000000:d/0/8.000000/0.000000/16.000000/8.000000:s/0/0.000000/8.000000/8.000000/16.000000:n/0/0.000000/8.000000/8.000000/16.000000:w/0/0.000000/8.000000/8.000000/16.000000
# 1.21
[1.21-]modellist:id=%crafter,state=crafting:true/orientation:down_east/triggered:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/90/90/0
[1.21-]modellist:id=%crafter,state=crafting:true/orientation:down_east/triggered:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/90/90/0
[1.21-]modellist:id=%crafter,state=crafting:true/orientation:down_north/triggered:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/90/0/0
[1.21-]modellist:id=%crafter,state=crafting:true/orientation:down_north/triggered:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/90/0/0
[1.21-]modellist:id=%crafter,state=crafting:true/orientation:down_south/triggered:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/90/180/0
[1.21-]modellist:id=%crafter,state=crafting:true/orientation:down_south/triggered:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/90/180/0
[1.21-]modellist:id=%crafter,state=crafting:true/orientation:down_west/triggered:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/90/270/0
[1.21-]modellist:id=%crafter,state=crafting:true/orientation:down_west/triggered:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/90/270/0
[1.21-]modellist:id=%crafter,state=crafting:true/orientation:up_east/triggered:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/270/270/0
[1.21-]modellist:id=%crafter,state=crafting:true/orientation:up_east/triggered:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/270/270/0
[1.21-]modellist:id=%crafter,state=crafting:true/orientation:up_north/triggered:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/270/180/0
[1.21-]modellist:id=%crafter,state=crafting:true/orientation:up_north/triggered:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/270/180/0
[1.21-]modellist:id=%crafter,state=crafting:true/orientation:up_south/triggered:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/270/0/0
[1.21-]modellist:id=%crafter,state=crafting:true/orientation:up_south/triggered:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/270/0/0
[1.21-]modellist:id=%crafter,state=crafting:true/orientation:up_west/triggered:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/270/90/0
[1.21-]modellist:id=%crafter,state=crafting:true/orientation:up_west/triggered:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/270/90/0
[1.21-]modellist:id=%crafter,state=crafting:true/orientation:west_up/triggered:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/0/270/0
[1.21-]modellist:id=%crafter,state=crafting:true/orientation:west_up/triggered:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/0/270/0
[1.21-]modellist:id=%crafter,state=crafting:true/orientation:east_up/triggered:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/0/90/0
[1.21-]modellist:id=%crafter,state=crafting:true/orientation:east_up/triggered:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/0/90/0
[1.21-]modellist:id=%crafter,state=crafting:true/orientation:south_up/triggered:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/0/180/0
[1.21-]modellist:id=%crafter,state=crafting:true/orientation:south_up/triggered:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/0/180/0
[1.21-]modellist:id=%crafter,state=crafting:false/orientation:down_east/triggered:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/90/90/0
[1.21-]modellist:id=%crafter,state=crafting:false/orientation:down_east/triggered:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/90/90/0
[1.21-]modellist:id=%crafter,state=crafting:false/orientation:down_north/triggered:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/90/0/0
[1.21-]modellist:id=%crafter,state=crafting:false/orientation:down_north/triggered:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/90/0/0
[1.21-]modellist:id=%crafter,state=crafting:false/orientation:down_south/triggered:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/90/180/0
[1.21-]modellist:id=%crafter,state=crafting:false/orientation:down_south/triggered:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/90/180/0
[1.21-]modellist:id=%crafter,state=crafting:false/orientation:down_west/triggered:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/90/270/0
[1.21-]modellist:id=%crafter,state=crafting:false/orientation:down_west/triggered:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/90/270/0
[1.21-]modellist:id=%crafter,state=crafting:false/orientation:up_east/triggered:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/270/270/0
[1.21-]modellist:id=%crafter,state=crafting:false/orientation:up_east/triggered:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/270/270/0
[1.21-]modellist:id=%crafter,state=crafting:false/orientation:up_north/triggered:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/270/180/0
[1.21-]modellist:id=%crafter,state=crafting:false/orientation:up_north/triggered:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/270/180/0
[1.21-]modellist:id=%crafter,state=crafting:false/orientation:up_south/triggered:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/270/0/0
[1.21-]modellist:id=%crafter,state=crafting:false/orientation:up_south/triggered:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/270/0/0
[1.21-]modellist:id=%crafter,state=crafting:false/orientation:up_west/triggered:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/270/90/0
[1.21-]modellist:id=%crafter,state=crafting:false/orientation:up_west/triggered:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/270/90/0
[1.21-]modellist:id=%crafter,state=crafting:false/orientation:west_up/triggered:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/0/270/0
[1.21-]modellist:id=%crafter,state=crafting:false/orientation:west_up/triggered:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/0/270/0
[1.21-]modellist:id=%crafter,state=crafting:false/orientation:east_up/triggered:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/0/90/0
[1.21-]modellist:id=%crafter,state=crafting:false/orientation:east_up/triggered:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/0/90/0
[1.21-]modellist:id=%crafter,state=crafting:false/orientation:south_up/triggered:true,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/0/180/0
[1.21-]modellist:id=%crafter,state=crafting:false/orientation:south_up/triggered:false,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u180/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/3/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/5/0.000000/0.000000/16.000000/16.000000:w/4/0.000000/0.000000/16.000000/16.000000:R/0/180/0
[1.21-]modellist:id=%trial_spawner,state=ominous:true/trial_spawner_state:inactive,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/2/0.000000/0.000000/16.000000/16.000000:w/2/0.000000/0.000000/16.000000/16.000000,box=15.998000/0.002000/0.002000:0.002000/15.998000/15.998000:u/0/16.000000/0.000000/0.000000/16.000000:e/2/16.000000/0.000000/0.000000/16.000000:s/2/16.000000/0.000000/0.000000/16.000000:d/1/16.000000/0.000000/0.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:w/2/16.000000/0.000000/0.000000/16.000000
[1.21-]modellist:id=%trial_spawner,state=ominous:true/trial_spawner_state:waiting_for_players,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/2/0.000000/0.000000/16.000000/16.000000:w/2/0.000000/0.000000/16.000000/16.000000,box=15.998000/0.002000/0.002000:0.002000/15.998000/15.998000:u/0/16.000000/0.000000/0.000000/16.000000:e/2/16.000000/0.000000/0.000000/16.000000:s/2/16.000000/0.000000/0.000000/16.000000:d/1/16.000000/0.000000/0.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:w/2/16.000000/0.000000/0.000000/16.000000
[1.21-]modellist:id=%trial_spawner,state=ominous:true/trial_spawner_state:active,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/2/0.000000/0.000000/16.000000/16.000000:w/2/0.000000/0.000000/16.000000/16.000000,box=15.998000/0.002000/0.002000:0.002000/15.998000/15.998000:u/0/16.000000/0.000000/0.000000/16.000000:e/2/16.000000/0.000000/0.000000/16.000000:s/2/16.000000/0.000000/0.000000/16.000000:d/1/16.000000/0.000000/0.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:w/2/16.000000/0.000000/0.000000/16.000000
[1.21-]modellist:id=%trial_spawner,state=ominous:true/trial_spawner_state:waiting_for_reward_ejection,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/2/0.000000/0.000000/16.000000/16.000000:w/2/0.000000/0.000000/16.000000/16.000000,box=15.998000/0.002000/0.002000:0.002000/15.998000/15.998000:u/0/16.000000/0.000000/0.000000/16.000000:e/2/16.000000/0.000000/0.000000/16.000000:s/2/16.000000/0.000000/0.000000/16.000000:d/1/16.000000/0.000000/0.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:w/2/16.000000/0.000000/0.000000/16.000000
[1.21-]modellist:id=%trial_spawner,state=ominous:true/trial_spawner_state:ejecting_reward,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/2/0.000000/0.000000/16.000000/16.000000:w/2/0.000000/0.000000/16.000000/16.000000,box=15.998000/0.002000/0.002000:0.002000/15.998000/15.998000:u/0/16.000000/0.000000/0.000000/16.000000:e/2/16.000000/0.000000/0.000000/16.000000:s/2/16.000000/0.000000/0.000000/16.000000:d/1/16.000000/0.000000/0.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:w/2/16.000000/0.000000/0.000000/16.000000
[1.21-]modellist:id=%trial_spawner,state=ominous:true/trial_spawner_state:cooldown,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/2/0.000000/0.000000/16.000000/16.000000:w/2/0.000000/0.000000/16.000000/16.000000,box=15.998000/0.002000/0.002000:0.002000/15.998000/15.998000:u/0/16.000000/0.000000/0.000000/16.000000:e/2/16.000000/0.000000/0.000000/16.000000:s/2/16.000000/0.000000/0.000000/16.000000:d/1/16.000000/0.000000/0.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:w/2/16.000000/0.000000/0.000000/16.000000
[1.21-]modellist:id=%trial_spawner,state=ominous:false/trial_spawner_state:inactive,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/2/0.000000/0.000000/16.000000/16.000000:w/2/0.000000/0.000000/16.000000/16.000000,box=15.998000/0.002000/0.002000:0.002000/15.998000/15.998000:u/0/16.000000/0.000000/0.000000/16.000000:e/2/16.000000/0.000000/0.000000/16.000000:s/2/16.000000/0.000000/0.000000/16.000000:d/1/16.000000/0.000000/0.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:w/2/16.000000/0.000000/0.000000/16.000000
[1.21-]modellist:id=%trial_spawner,state=ominous:false/trial_spawner_state:waiting_for_players,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/2/0.000000/0.000000/16.000000/16.000000:w/2/0.000000/0.000000/16.000000/16.000000,box=15.998000/0.002000/0.002000:0.002000/15.998000/15.998000:u/0/16.000000/0.000000/0.000000/16.000000:e/2/16.000000/0.000000/0.000000/16.000000:s/2/16.000000/0.000000/0.000000/16.000000:d/1/16.000000/0.000000/0.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:w/2/16.000000/0.000000/0.000000/16.000000
[1.21-]modellist:id=%trial_spawner,state=ominous:false/trial_spawner_state:active,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/2/0.000000/0.000000/16.000000/16.000000:w/2/0.000000/0.000000/16.000000/16.000000,box=15.998000/0.002000/0.002000:0.002000/15.998000/15.998000:u/0/16.000000/0.000000/0.000000/16.000000:e/2/16.000000/0.000000/0.000000/16.000000:s/2/16.000000/0.000000/0.000000/16.000000:d/1/16.000000/0.000000/0.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:w/2/16.000000/0.000000/0.000000/16.000000
[1.21-]modellist:id=%trial_spawner,state=ominous:false/trial_spawner_state:waiting_for_reward_ejection,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/2/0.000000/0.000000/16.000000/16.000000:w/2/0.000000/0.000000/16.000000/16.000000,box=15.998000/0.002000/0.002000:0.002000/15.998000/15.998000:u/0/16.000000/0.000000/0.000000/16.000000:e/2/16.000000/0.000000/0.000000/16.000000:s/2/16.000000/0.000000/0.000000/16.000000:d/1/16.000000/0.000000/0.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:w/2/16.000000/0.000000/0.000000/16.000000
[1.21-]modellist:id=%trial_spawner,state=ominous:false/trial_spawner_state:ejecting_reward,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/2/0.000000/0.000000/16.000000/16.000000:w/2/0.000000/0.000000/16.000000/16.000000,box=15.998000/0.002000/0.002000:0.002000/15.998000/15.998000:u/0/16.000000/0.000000/0.000000/16.000000:e/2/16.000000/0.000000/0.000000/16.000000:s/2/16.000000/0.000000/0.000000/16.000000:d/1/16.000000/0.000000/0.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:w/2/16.000000/0.000000/0.000000/16.000000
[1.21-]modellist:id=%trial_spawner,state=ominous:false/trial_spawner_state:cooldown,box=0.000000/0.000000/0.000000:16.000000/16.000000/16.000000:u/0/0.000000/0.000000/16.000000/16.000000:e/2/0.000000/0.000000/16.000000/16.000000:s/2/0.000000/0.000000/16.000000/16.000000:d/1/0.000000/0.000000/16.000000/16.000000:n/2/0.000000/0.000000/16.000000/16.000000:w/2/0.000000/0.000000/16.000000/16.000000,box=15.998000/0.002000/0.002000:0.002000/15.998000/15.998000:u/0/16.000000/0.000000/0.000000/16.000000:e/2/16.000000/0.000000/0.000000/16.000000:s/2/16.000000/0.000000/0.000000/16.000000:d/1/16.000000/0.000000/0.000000/16.000000:n/2/16.000000/0.000000/0.000000/16.000000:w/2/16.000000/0.000000/0.000000/16.000000

View File

@ -814,8 +814,7 @@ block:id=detector_rail,state=powered:false,patch0=0:detector_rail,transparency=T
# Web
block:id=cobweb,patch0-1=0:cobweb,transparency=TRANSPARENT
# Grass
[-1.20.2]block:id=grass,patch0-1=1000:grass,transparency=TRANSPARENT
[1.20.3-]block:id=short_grass,patch0-1=1000:grass,transparency=TRANSPARENT
block:id=grass,patch0-1=1000:grass,transparency=TRANSPARENT
# Fern
block:id=fern,patch0-1=1000:fern,transparency=TRANSPARENT
# Dead shrub
@ -4514,276 +4513,3 @@ block:id=%melon_stem,patch0=0:melon_stem,blockcolor=foliagebiome,transparency=TR
[1.20-]block:id=%calibrated_sculk_sensor,state=facing:east/sculk_sensor_phase:inactive,patch0=0:calibrated_sculk_sensor_input_side,patch1=0:sculk_sensor_bottom,patch2=0:sculk_sensor_side,patch3=0:calibrated_sculk_sensor_top,patch4=0:sculk_sensor_tendril_inactive,patch5=0:calibrated_sculk_sensor_amethyst,transparency=SEMITRANSPARENT,stdrot=true
[1.20-]block:id=%calibrated_sculk_sensor,state=facing:east/sculk_sensor_phase:active,patch0=0:calibrated_sculk_sensor_input_side,patch1=0:sculk_sensor_bottom,patch2=0:sculk_sensor_side,patch3=0:calibrated_sculk_sensor_top,patch4=0:sculk_sensor_tendril_active,patch5=0:calibrated_sculk_sensor_amethyst,transparency=SEMITRANSPARENT,stdrot=true
[1.20-]block:id=%calibrated_sculk_sensor,state=facing:east/sculk_sensor_phase:cooldown,patch0=0:calibrated_sculk_sensor_input_side,patch1=0:sculk_sensor_bottom,patch2=0:sculk_sensor_side,patch3=0:calibrated_sculk_sensor_top,patch4=0:sculk_sensor_tendril_active,patch5=0:calibrated_sculk_sensor_amethyst,transparency=SEMITRANSPARENT,stdrot=true
# 1.20.3
[1.20.3-]texture:id=suspicious_gravel_0,filename=assets/minecraft/textures/block/suspicious_gravel_0.png,xcount=1,ycount=1
[1.20.3-]texture:id=suspicious_gravel_1,filename=assets/minecraft/textures/block/suspicious_gravel_1.png,xcount=1,ycount=1
[1.20.3-]texture:id=suspicious_gravel_2,filename=assets/minecraft/textures/block/suspicious_gravel_2.png,xcount=1,ycount=1
[1.20.3-]texture:id=suspicious_gravel_3,filename=assets/minecraft/textures/block/suspicious_gravel_3.png,xcount=1,ycount=1
[1.20.3-]texture:id=tuff,filename=assets/minecraft/textures/block/tuff.png,xcount=1,ycount=1
[1.20.3-]texture:id=polished_tuff,filename=assets/minecraft/textures/block/polished_tuff.png,xcount=1,ycount=1
[1.20.3-]texture:id=chiseled_tuff,filename=assets/minecraft/textures/block/chiseled_tuff.png,xcount=1,ycount=1
[1.20.3-]texture:id=chiseled_tuff_top,filename=assets/minecraft/textures/block/chiseled_tuff_top.png,xcount=1,ycount=1
[1.20.3-]texture:id=tuff_bricks,filename=assets/minecraft/textures/block/tuff_bricks.png,xcount=1,ycount=1
[1.20.3-]texture:id=chiseled_tuff_bricks,filename=assets/minecraft/textures/block/chiseled_tuff_bricks.png,xcount=1,ycount=1
[1.20.3-]texture:id=chiseled_tuff_bricks_top,filename=assets/minecraft/textures/block/chiseled_tuff_bricks_top.png,xcount=1,ycount=1
[1.20.3-]texture:id=oxidized_chiseled_copper,filename=assets/minecraft/textures/block/oxidized_chiseled_copper.png,xcount=1,ycount=1
[1.20.3-]texture:id=weathered_chiseled_copper,filename=assets/minecraft/textures/block/weathered_chiseled_copper.png,xcount=1,ycount=1
[1.20.3-]texture:id=exposed_chiseled_copper,filename=assets/minecraft/textures/block/exposed_chiseled_copper.png,xcount=1,ycount=1
[1.20.3-]texture:id=chiseled_copper,filename=assets/minecraft/textures/block/chiseled_copper.png,xcount=1,ycount=1
[1.20.3-]texture:id=copper_door_top,filename=assets/minecraft/textures/block/copper_door_top.png,xcount=1,ycount=1
[1.20.3-]texture:id=copper_door_bottom,filename=assets/minecraft/textures/block/copper_door_bottom.png,xcount=1,ycount=1
[1.20.3-]texture:id=exposed_copper_door_top,filename=assets/minecraft/textures/block/exposed_copper_door_top.png,xcount=1,ycount=1
[1.20.3-]texture:id=exposed_copper_door_bottom,filename=assets/minecraft/textures/block/exposed_copper_door_bottom.png,xcount=1,ycount=1
[1.20.3-]texture:id=oxidized_copper_door_top,filename=assets/minecraft/textures/block/oxidized_copper_door_top.png,xcount=1,ycount=1
[1.20.3-]texture:id=oxidized_copper_door_bottom,filename=assets/minecraft/textures/block/oxidized_copper_door_bottom.png,xcount=1,ycount=1
[1.20.3-]texture:id=weathered_copper_door_top,filename=assets/minecraft/textures/block/weathered_copper_door_top.png,xcount=1,ycount=1
[1.20.3-]texture:id=weathered_copper_door_bottom,filename=assets/minecraft/textures/block/weathered_copper_door_bottom.png,xcount=1,ycount=1
[1.20.3-]texture:id=copper_trapdoor,filename=assets/minecraft/textures/block/copper_trapdoor.png,xcount=1,ycount=1
[1.20.3-]texture:id=exposed_copper_trapdoor,filename=assets/minecraft/textures/block/exposed_copper_trapdoor.png,xcount=1,ycount=1
[1.20.3-]texture:id=oxidized_copper_trapdoor,filename=assets/minecraft/textures/block/oxidized_copper_trapdoor.png,xcount=1,ycount=1
[1.20.3-]texture:id=weathered_copper_trapdoor,filename=assets/minecraft/textures/block/weathered_copper_trapdoor.png,xcount=1,ycount=1
[1.20.3-]texture:id=copper_grate,filename=assets/minecraft/textures/block/copper_grate.png,xcount=1,ycount=1
[1.20.3-]texture:id=exposed_copper_grate,filename=assets/minecraft/textures/block/exposed_copper_grate.png,xcount=1,ycount=1
[1.20.3-]texture:id=weathered_copper_grate,filename=assets/minecraft/textures/block/weathered_copper_grate.png,xcount=1,ycount=1
[1.20.3-]texture:id=oxidized_copper_grate,filename=assets/minecraft/textures/block/oxidized_copper_grate.png,xcount=1,ycount=1
[1.20.3-]block:id=%suspicious_gravel,state=dusted:0,patch0=0:suspicious_gravel_0,patch1=0:suspicious_gravel_0,patch2=0:suspicious_gravel_0,patch3=0:suspicious_gravel_0,patch4=0:suspicious_gravel_0,patch5=0:suspicious_gravel_0,stdrot=true
[1.20.3-]block:id=%suspicious_gravel,state=dusted:1,patch0=0:suspicious_gravel_1,patch1=0:suspicious_gravel_1,patch2=0:suspicious_gravel_1,patch3=0:suspicious_gravel_1,patch4=0:suspicious_gravel_1,patch5=0:suspicious_gravel_1,stdrot=true
[1.20.3-]block:id=%suspicious_gravel,state=dusted:2,patch0=0:suspicious_gravel_2,patch1=0:suspicious_gravel_2,patch2=0:suspicious_gravel_2,patch3=0:suspicious_gravel_2,patch4=0:suspicious_gravel_2,patch5=0:suspicious_gravel_2,stdrot=true
[1.20.3-]block:id=%suspicious_gravel,state=dusted:3,patch0=0:suspicious_gravel_3,patch1=0:suspicious_gravel_3,patch2=0:suspicious_gravel_3,patch3=0:suspicious_gravel_3,patch4=0:suspicious_gravel_3,patch5=0:suspicious_gravel_3,stdrot=true
[1.20.3-]block:id=%tuff,patch0-5=0:tuff,stdrot=true
[1.20.3-]block:id=%tuff_slab,state=type:top,patch0=0:tuff,transparency=SEMITRANSPARENT,stdrot=true
[1.20.3-]block:id=%tuff_slab,state=type:bottom,patch0=0:tuff,transparency=SEMITRANSPARENT,stdrot=true
[1.20.3-]block:id=%tuff_slab,state=type:double,patch0-5=0:tuff,transparency=SEMITRANSPARENT,stdrot=true
[1.20.3-]block:id=%tuff_stairs,patch0-2=0:tuff,transparency=SEMITRANSPARENT,stdrot=true
[1.20.3-]block:id=%tuff_wall,patch0-2=0:tuff,transparency=SEMITRANSPARENT,stdrot=true
[1.20.3-]block:id=%polished_tuff,patch0-5=0:polished_tuff,stdrot=true
[1.20.3-]block:id=%polished_tuff_slab,state=type:top,patch0=0:polished_tuff,transparency=SEMITRANSPARENT,stdrot=true
[1.20.3-]block:id=%polished_tuff_slab,state=type:bottom,patch0=0:polished_tuff,transparency=SEMITRANSPARENT,stdrot=true
[1.20.3-]block:id=%polished_tuff_slab,state=type:double,patch0-5=0:polished_tuff,transparency=SEMITRANSPARENT,stdrot=true
[1.20.3-]block:id=%polished_tuff_stairs,patch0-2=0:polished_tuff,transparency=SEMITRANSPARENT,stdrot=true
[1.20.3-]block:id=%polished_tuff_wall,patch0-2=0:polished_tuff,transparency=SEMITRANSPARENT,stdrot=true
[1.20.3-]block:id=%chiseled_tuff,patch0=0:chiseled_tuff,patch1=0:chiseled_tuff_top,patch2=0:chiseled_tuff,patch3=0:chiseled_tuff,patch4=0:chiseled_tuff_top,patch5=0:chiseled_tuff,stdrot=true
[1.20.3-]block:id=%tuff_bricks,patch0-5=0:tuff_bricks,stdrot=true
[1.20.3-]block:id=%tuff_brick_slab,state=type:top,patch0=0:tuff_bricks,transparency=SEMITRANSPARENT,stdrot=true
[1.20.3-]block:id=%tuff_brick_slab,state=type:bottom,patch0=0:tuff_bricks,transparency=SEMITRANSPARENT,stdrot=true
[1.20.3-]block:id=%tuff_brick_slab,state=type:double,patch0-5=0:tuff_bricks,transparency=SEMITRANSPARENT,stdrot=true
[1.20.3-]block:id=%tuff_brick_stairs,patch0-2=0:tuff_bricks,transparency=SEMITRANSPARENT,stdrot=true
[1.20.3-]block:id=%tuff_brick_wall,patch0-2=0:tuff_bricks,transparency=SEMITRANSPARENT,stdrot=true
[1.20.3-]block:id=%chiseled_tuff_bricks,patch0-5=0:chiseled_tuff_bricks,stdrot=true
[1.20.3-]block:id=%oxidized_chiseled_copper,patch0-5=0:oxidized_chiseled_copper,stdrot=true
[1.20.3-]block:id=%weathered_chiseled_copper,patch0-5=0:weathered_chiseled_copper,stdrot=true
[1.20.3-]block:id=%exposed_chiseled_copper,patch0-5=0:exposed_chiseled_copper,stdrot=true
[1.20.3-]block:id=%chiseled_copper,patch0-5=0:chiseled_copper,stdrot=true
[1.20.3-]block:id=%waxed_oxidized_chiseled_copper,patch0-5=0:oxidized_chiseled_copper,stdrot=true
[1.20.3-]block:id=%waxed_weathered_chiseled_copper,patch0-5=0:weathered_chiseled_copper,stdrot=true
[1.20.3-]block:id=%waxed_exposed_chiseled_copper,patch0-5=0:exposed_chiseled_copper,stdrot=true
[1.20.3-]block:id=%waxed_chiseled_copper,patch0-5=0:chiseled_copper,stdrot=true
[1.20.3-]block:id=%copper_door,data=*,patch0=0:copper_door_top,patch1=0:copper_door_bottom,transparency=TRANSPARENT
[1.20.3-]block:id=%exposed_copper_door,data=*,patch0=0:exposed_copper_door_top,patch1=0:exposed_copper_door_bottom,transparency=TRANSPARENT
[1.20.3-]block:id=%oxidized_copper_door,data=*,patch0=0:oxidized_copper_door_top,patch1=0:oxidized_copper_door_bottom,transparency=TRANSPARENT
[1.20.3-]block:id=%weathered_copper_door,data=*,patch0=0:weathered_copper_door_top,patch1=0:weathered_copper_door_bottom,transparency=TRANSPARENT
[1.20.3-]block:id=%waxed_copper_door,data=*,patch0=0:copper_door_top,patch1=0:copper_door_bottom,transparency=TRANSPARENT
[1.20.3-]block:id=%waxed_exposed_copper_door,data=*,patch0=0:exposed_copper_door_top,patch1=0:exposed_copper_door_bottom,transparency=TRANSPARENT
[1.20.3-]block:id=%waxed_oxidized_copper_door,data=*,patch0=0:oxidized_copper_door_top,patch1=0:oxidized_copper_door_bottom,transparency=TRANSPARENT
[1.20.3-]block:id=%waxed_weathered_copper_door,data=*,patch0=0:weathered_copper_door_top,patch1=0:weathered_copper_door_bottom,transparency=TRANSPARENT
[1.20.3-]block:id=%copper_trapdoor,id=%waxed_copper_trapdoor,allfaces=0:copper_trapdoor,stdrot=true,transparency=TRANSPARENT
[1.20.3-]block:id=%exposed_copper_trapdoor,id=%waxed_exposed_copper_trapdoor,allfaces=0:exposed_copper_trapdoor,stdrot=true,transparency=TRANSPARENT
[1.20.3-]block:id=%oxidized_copper_trapdoor,id=%waxed_oxidized_copper_trapdoor,allfaces=0:oxidized_copper_trapdoor,stdrot=true,transparency=TRANSPARENT
[1.20.3-]block:id=%weathered_copper_trapdoor,id=%waxed_weathered_copper_trapdoor,allfaces=0:weathered_copper_trapdoor,stdrot=true,transparency=TRANSPARENT
[1.20.3-]block:id=%copper_grate,patch0-5=0:copper_grate,transparency=TRANSPARENT,stdrot=true
[1.20.3-]block:id=%exposed_copper_grate,patch0-5=0:exposed_copper_grate,transparency=TRANSPARENT,stdrot=true
[1.20.3-]block:id=%weathered_copper_grate,patch0-5=0:weathered_copper_grate,transparency=TRANSPARENT,stdrot=true
[1.20.3-]block:id=%oxidized_copper_grate,patch0-5=0:oxidized_copper_grate,transparency=TRANSPARENT,stdrot=true
[1.20.3-]block:id=%waxed_copper_grate,patch0-5=0:copper_grate,transparency=TRANSPARENT,stdrot=true
[1.20.3-]block:id=%waxed_exposed_copper_grate,patch0-5=0:exposed_copper_grate,transparency=TRANSPARENT,stdrot=true
[1.20.3-]block:id=%waxed_weathered_copper_grate,patch0-5=0:weathered_copper_grate,transparency=TRANSPARENT,stdrot=true
[1.20.3-]block:id=%waxed_oxidized_copper_grate,patch0-5=0:oxidized_copper_grate,transparency=TRANSPARENT,stdrot=true
# 1.20.5
[1.20.5-]texture:id=vault_side_off_ominous,filename=assets/minecraft/textures/block/vault_side_off_ominous.png,xcount=1,ycount=1
[1.20.5-]texture:id=vault_bottom_ominous,filename=assets/minecraft/textures/block/vault_bottom_ominous.png,xcount=1,ycount=1
[1.20.5-]texture:id=vault_top_ominous,filename=assets/minecraft/textures/block/vault_top_ominous.png,xcount=1,ycount=1
[1.20.5-]texture:id=vault_front_off_ominous,filename=assets/minecraft/textures/block/vault_front_off_ominous.png,xcount=1,ycount=1
[1.20.5-]texture:id=vault_side_on_ominous,filename=assets/minecraft/textures/block/vault_side_on_ominous.png,xcount=1,ycount=1
[1.20.5-]texture:id=vault_front_on_ominous,filename=assets/minecraft/textures/block/vault_front_on_ominous.png,xcount=1,ycount=1
[1.20.5-]texture:id=vault_front_ejecting_ominous,filename=assets/minecraft/textures/block/vault_front_ejecting_ominous.png,xcount=1,ycount=1
[1.20.5-]texture:id=vault_top_ejecting_ominous,filename=assets/minecraft/textures/block/vault_top_ejecting_ominous.png,xcount=1,ycount=1
[1.20.5-]texture:id=vault_side_off,filename=assets/minecraft/textures/block/vault_side_off.png,xcount=1,ycount=1
[1.20.5-]texture:id=vault_bottom,filename=assets/minecraft/textures/block/vault_bottom.png,xcount=1,ycount=1
[1.20.5-]texture:id=vault_top,filename=assets/minecraft/textures/block/vault_top.png,xcount=1,ycount=1
[1.20.5-]texture:id=vault_front_off,filename=assets/minecraft/textures/block/vault_front_off.png,xcount=1,ycount=1
[1.20.5-]texture:id=vault_side_on,filename=assets/minecraft/textures/block/vault_side_on.png,xcount=1,ycount=1
[1.20.5-]texture:id=vault_front_on,filename=assets/minecraft/textures/block/vault_front_on.png,xcount=1,ycount=1
[1.20.5-]texture:id=vault_front_ejecting,filename=assets/minecraft/textures/block/vault_front_ejecting.png,xcount=1,ycount=1
[1.20.5-]texture:id=vault_top_ejecting,filename=assets/minecraft/textures/block/vault_top_ejecting.png,xcount=1,ycount=1
[1.20.5-]texture:id=minecraft:all,filename=assets/minecraft/textures/all.png,xcount=1,ycount=1
[1.20.5-]block:id=%vault,state=facing:north/ominous:true/vault_state:inactive,patch0=0:vault_side_off_ominous,patch1=0:vault_bottom_ominous,patch2=0:vault_top_ominous,patch3=0:vault_front_off_ominous,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:north/ominous:true/vault_state:active,patch0=0:vault_side_on_ominous,patch1=0:vault_bottom_ominous,patch2=0:vault_top_ominous,patch3=0:vault_front_on_ominous,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:north/ominous:true/vault_state:unlocking,patch0=0:vault_side_on_ominous,patch1=0:vault_bottom_ominous,patch2=0:vault_top_ominous,patch3=0:vault_front_ejecting_ominous,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:north/ominous:true/vault_state:ejecting,patch0=0:vault_side_on_ominous,patch1=0:vault_bottom_ominous,patch2=0:vault_top_ejecting_ominous,patch3=0:vault_front_ejecting_ominous,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:north/ominous:false/vault_state:inactive,patch0=0:vault_side_off,patch1=0:vault_bottom,patch2=0:vault_top,patch3=0:vault_front_off,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:north/ominous:false/vault_state:active,patch0=0:vault_side_on,patch1=0:vault_bottom,patch2=0:vault_top,patch3=0:vault_front_on,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:north/ominous:false/vault_state:unlocking,patch0=0:vault_side_on,patch1=0:vault_bottom,patch2=0:vault_top,patch3=0:vault_front_ejecting,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:north/ominous:false/vault_state:ejecting,patch0=0:vault_side_on,patch1=0:vault_bottom,patch2=0:vault_top_ejecting,patch3=0:vault_front_ejecting,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:south/ominous:true/vault_state:inactive,patch0=0:vault_side_off_ominous,patch1=0:vault_bottom_ominous,patch2=0:vault_top_ominous,patch3=0:vault_front_off_ominous,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:south/ominous:true/vault_state:active,patch0=0:vault_side_on_ominous,patch1=0:vault_bottom_ominous,patch2=0:vault_top_ominous,patch3=0:vault_front_on_ominous,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:south/ominous:true/vault_state:unlocking,patch0=0:vault_side_on_ominous,patch1=0:vault_bottom_ominous,patch2=0:vault_top_ominous,patch3=0:vault_front_ejecting_ominous,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:south/ominous:true/vault_state:ejecting,patch0=0:vault_side_on_ominous,patch1=0:vault_bottom_ominous,patch2=0:vault_top_ejecting_ominous,patch3=0:vault_front_ejecting_ominous,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:south/ominous:false/vault_state:inactive,patch0=0:vault_side_off,patch1=0:vault_bottom,patch2=0:vault_top,patch3=0:vault_front_off,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:south/ominous:false/vault_state:active,patch0=0:vault_side_on,patch1=0:vault_bottom,patch2=0:vault_top,patch3=0:vault_front_on,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:south/ominous:false/vault_state:unlocking,patch0=0:vault_side_on,patch1=0:vault_bottom,patch2=0:vault_top,patch3=0:vault_front_ejecting,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:south/ominous:false/vault_state:ejecting,patch0=0:vault_side_on,patch1=0:vault_bottom,patch2=0:vault_top_ejecting,patch3=0:vault_front_ejecting,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:west/ominous:true/vault_state:inactive,patch0=0:vault_side_off_ominous,patch1=0:vault_bottom_ominous,patch2=0:vault_top_ominous,patch3=0:vault_front_off_ominous,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:west/ominous:true/vault_state:active,patch0=0:vault_side_on_ominous,patch1=0:vault_bottom_ominous,patch2=0:vault_top_ominous,patch3=0:vault_front_on_ominous,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:west/ominous:true/vault_state:unlocking,patch0=0:vault_side_on_ominous,patch1=0:vault_bottom_ominous,patch2=0:vault_top_ominous,patch3=0:vault_front_ejecting_ominous,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:west/ominous:true/vault_state:ejecting,patch0=0:vault_side_on_ominous,patch1=0:vault_bottom_ominous,patch2=0:vault_top_ejecting_ominous,patch3=0:vault_front_ejecting_ominous,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:west/ominous:false/vault_state:inactive,patch0=0:vault_side_off,patch1=0:vault_bottom,patch2=0:vault_top,patch3=0:vault_front_off,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:west/ominous:false/vault_state:active,patch0=0:vault_side_on,patch1=0:vault_bottom,patch2=0:vault_top,patch3=0:vault_front_on,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:west/ominous:false/vault_state:unlocking,patch0=0:vault_side_on,patch1=0:vault_bottom,patch2=0:vault_top,patch3=0:vault_front_ejecting,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:west/ominous:false/vault_state:ejecting,patch0=0:vault_side_on,patch1=0:vault_bottom,patch2=0:vault_top_ejecting,patch3=0:vault_front_ejecting,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:east/ominous:true/vault_state:inactive,patch0=0:vault_side_off_ominous,patch1=0:vault_bottom_ominous,patch2=0:vault_top_ominous,patch3=0:vault_front_off_ominous,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:east/ominous:true/vault_state:active,patch0=0:vault_side_on_ominous,patch1=0:vault_bottom_ominous,patch2=0:vault_top_ominous,patch3=0:vault_front_on_ominous,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:east/ominous:true/vault_state:unlocking,patch0=0:vault_side_on_ominous,patch1=0:vault_bottom_ominous,patch2=0:vault_top_ominous,patch3=0:vault_front_ejecting_ominous,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:east/ominous:true/vault_state:ejecting,patch0=0:vault_side_on_ominous,patch1=0:vault_bottom_ominous,patch2=0:vault_top_ejecting_ominous,patch3=0:vault_front_ejecting_ominous,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:east/ominous:false/vault_state:inactive,patch0=0:vault_side_off,patch1=0:vault_bottom,patch2=0:vault_top,patch3=0:vault_front_off,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:east/ominous:false/vault_state:active,patch0=0:vault_side_on,patch1=0:vault_bottom,patch2=0:vault_top,patch3=0:vault_front_on,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:east/ominous:false/vault_state:unlocking,patch0=0:vault_side_on,patch1=0:vault_bottom,patch2=0:vault_top,patch3=0:vault_front_ejecting,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%vault,state=facing:east/ominous:false/vault_state:ejecting,patch0=0:vault_side_on,patch1=0:vault_bottom,patch2=0:vault_top_ejecting,patch3=0:vault_front_ejecting,transparency=SEMITRANSPARENT,stdrot=true
[1.20.5-]block:id=%heavy_core,patch0=0:minecraft:all,transparency=SEMITRANSPARENT,stdrot=true
# 1.21
[1.21-]texture:id=copper_bulb_lit_powered,filename=assets/minecraft/textures/block/copper_bulb_lit_powered.png,xcount=1,ycount=1
[1.21-]texture:id=copper_bulb_lit,filename=assets/minecraft/textures/block/copper_bulb_lit.png,xcount=1,ycount=1
[1.21-]texture:id=copper_bulb_powered,filename=assets/minecraft/textures/block/copper_bulb_powered.png,xcount=1,ycount=1
[1.21-]texture:id=copper_bulb,filename=assets/minecraft/textures/block/copper_bulb.png,xcount=1,ycount=1
[1.21-]texture:id=exposed_copper_bulb_lit_powered,filename=assets/minecraft/textures/block/exposed_copper_bulb_lit_powered.png,xcount=1,ycount=1
[1.21-]texture:id=exposed_copper_bulb_lit,filename=assets/minecraft/textures/block/exposed_copper_bulb_lit.png,xcount=1,ycount=1
[1.21-]texture:id=exposed_copper_bulb_powered,filename=assets/minecraft/textures/block/exposed_copper_bulb_powered.png,xcount=1,ycount=1
[1.21-]texture:id=exposed_copper_bulb,filename=assets/minecraft/textures/block/exposed_copper_bulb.png,xcount=1,ycount=1
[1.21-]texture:id=weathered_copper_bulb_lit_powered,filename=assets/minecraft/textures/block/weathered_copper_bulb_lit_powered.png,xcount=1,ycount=1
[1.21-]texture:id=weathered_copper_bulb_lit,filename=assets/minecraft/textures/block/weathered_copper_bulb_lit.png,xcount=1,ycount=1
[1.21-]texture:id=weathered_copper_bulb_powered,filename=assets/minecraft/textures/block/weathered_copper_bulb_powered.png,xcount=1,ycount=1
[1.21-]texture:id=weathered_copper_bulb,filename=assets/minecraft/textures/block/weathered_copper_bulb.png,xcount=1,ycount=1
[1.21-]texture:id=oxidized_copper_bulb_lit_powered,filename=assets/minecraft/textures/block/oxidized_copper_bulb_lit_powered.png,xcount=1,ycount=1
[1.21-]texture:id=oxidized_copper_bulb_lit,filename=assets/minecraft/textures/block/oxidized_copper_bulb_lit.png,xcount=1,ycount=1
[1.21-]texture:id=oxidized_copper_bulb_powered,filename=assets/minecraft/textures/block/oxidized_copper_bulb_powered.png,xcount=1,ycount=1
[1.21-]texture:id=oxidized_copper_bulb,filename=assets/minecraft/textures/block/oxidized_copper_bulb.png,xcount=1,ycount=1
[1.21-]texture:id=crafter_top_crafting,filename=assets/minecraft/textures/block/crafter_top_crafting.png,xcount=1,ycount=1
[1.21-]texture:id=crafter_bottom,filename=assets/minecraft/textures/block/crafter_bottom.png,xcount=1,ycount=1
[1.21-]texture:id=crafter_east_crafting,filename=assets/minecraft/textures/block/crafter_east_crafting.png,xcount=1,ycount=1
[1.21-]texture:id=crafter_south_triggered,filename=assets/minecraft/textures/block/crafter_south_triggered.png,xcount=1,ycount=1
[1.21-]texture:id=crafter_west_crafting,filename=assets/minecraft/textures/block/crafter_west_crafting.png,xcount=1,ycount=1
[1.21-]texture:id=crafter_north_crafting,filename=assets/minecraft/textures/block/crafter_north_crafting.png,xcount=1,ycount=1
[1.21-]texture:id=crafter_top_triggered,filename=assets/minecraft/textures/block/crafter_top_triggered.png,xcount=1,ycount=1
[1.21-]texture:id=crafter_east_triggered,filename=assets/minecraft/textures/block/crafter_east_triggered.png,xcount=1,ycount=1
[1.21-]texture:id=crafter_west_triggered,filename=assets/minecraft/textures/block/crafter_west_triggered.png,xcount=1,ycount=1
[1.21-]texture:id=crafter_north,filename=assets/minecraft/textures/block/crafter_north.png,xcount=1,ycount=1
[1.21-]texture:id=crafter_top,filename=assets/minecraft/textures/block/crafter_top.png,xcount=1,ycount=1
[1.21-]texture:id=crafter_east,filename=assets/minecraft/textures/block/crafter_east.png,xcount=1,ycount=1
[1.21-]texture:id=crafter_south,filename=assets/minecraft/textures/block/crafter_south.png,xcount=1,ycount=1
[1.21-]texture:id=crafter_west,filename=assets/minecraft/textures/block/crafter_west.png,xcount=1,ycount=1
[1.21-]texture:id=trial_spawner_top_inactive_ominous,filename=assets/minecraft/textures/block/trial_spawner_top_inactive_ominous.png,xcount=1,ycount=1
[1.21-]texture:id=trial_spawner_bottom,filename=assets/minecraft/textures/block/trial_spawner_bottom.png,xcount=1,ycount=1
[1.21-]texture:id=trial_spawner_side_inactive_ominous,filename=assets/minecraft/textures/block/trial_spawner_side_inactive_ominous.png,xcount=1,ycount=1
[1.21-]texture:id=trial_spawner_top_active_ominous,filename=assets/minecraft/textures/block/trial_spawner_top_active_ominous.png,xcount=1,ycount=1
[1.21-]texture:id=trial_spawner_side_active_ominous,filename=assets/minecraft/textures/block/trial_spawner_side_active_ominous.png,xcount=1,ycount=1
[1.21-]texture:id=trial_spawner_top_ejecting_reward_ominous,filename=assets/minecraft/textures/block/trial_spawner_top_ejecting_reward_ominous.png,xcount=1,ycount=1
[1.21-]texture:id=trial_spawner_top_inactive,filename=assets/minecraft/textures/block/trial_spawner_top_inactive.png,xcount=1,ycount=1
[1.21-]texture:id=trial_spawner_side_inactive,filename=assets/minecraft/textures/block/trial_spawner_side_inactive.png,xcount=1,ycount=1
[1.21-]texture:id=trial_spawner_top_active,filename=assets/minecraft/textures/block/trial_spawner_top_active.png,xcount=1,ycount=1
[1.21-]texture:id=trial_spawner_side_active,filename=assets/minecraft/textures/block/trial_spawner_side_active.png,xcount=1,ycount=1
[1.21-]texture:id=trial_spawner_top_ejecting_reward,filename=assets/minecraft/textures/block/trial_spawner_top_ejecting_reward.png,xcount=1,ycount=1
[1.21-]block:id=%crafter,state=crafting:true/orientation:down_east/triggered:true,patch0=0:crafter_top_crafting,patch1=0:crafter_bottom,patch2=0:crafter_east_crafting,patch3=0:crafter_south_triggered,patch4=0:crafter_west_crafting,patch5=0:crafter_north_crafting,stdrot=true
[1.21-]block:id=%crafter,state=crafting:true/orientation:down_east/triggered:false,patch0=0:crafter_top_crafting,patch1=0:crafter_bottom,patch2=0:crafter_east_crafting,patch3=0:crafter_south_triggered,patch4=0:crafter_west_crafting,patch5=0:crafter_north_crafting,stdrot=true
[1.21-]block:id=%crafter,state=crafting:true/orientation:down_north/triggered:true,patch0=0:crafter_top_crafting,patch1=0:crafter_bottom,patch2=0:crafter_east_crafting,patch3=0:crafter_south_triggered,patch4=0:crafter_west_crafting,patch5=0:crafter_north_crafting,stdrot=true
[1.21-]block:id=%crafter,state=crafting:true/orientation:down_north/triggered:false,patch0=0:crafter_top_crafting,patch1=0:crafter_bottom,patch2=0:crafter_east_crafting,patch3=0:crafter_south_triggered,patch4=0:crafter_west_crafting,patch5=0:crafter_north_crafting,stdrot=true
[1.21-]block:id=%crafter,state=crafting:true/orientation:down_south/triggered:true,patch0=0:crafter_top_crafting,patch1=0:crafter_bottom,patch2=0:crafter_east_crafting,patch3=0:crafter_south_triggered,patch4=0:crafter_west_crafting,patch5=0:crafter_north_crafting,stdrot=true
[1.21-]block:id=%crafter,state=crafting:true/orientation:down_south/triggered:false,patch0=0:crafter_top_crafting,patch1=0:crafter_bottom,patch2=0:crafter_east_crafting,patch3=0:crafter_south_triggered,patch4=0:crafter_west_crafting,patch5=0:crafter_north_crafting,stdrot=true
[1.21-]block:id=%crafter,state=crafting:true/orientation:down_west/triggered:true,patch0=0:crafter_top_crafting,patch1=0:crafter_bottom,patch2=0:crafter_east_crafting,patch3=0:crafter_south_triggered,patch4=0:crafter_west_crafting,patch5=0:crafter_north_crafting,stdrot=true
[1.21-]block:id=%crafter,state=crafting:true/orientation:down_west/triggered:false,patch0=0:crafter_top_crafting,patch1=0:crafter_bottom,patch2=0:crafter_east_crafting,patch3=0:crafter_south_triggered,patch4=0:crafter_west_crafting,patch5=0:crafter_north_crafting,stdrot=true
[1.21-]block:id=%crafter,state=crafting:true/orientation:up_east/triggered:true,patch0=0:crafter_top_crafting,patch1=0:crafter_bottom,patch2=0:crafter_east_crafting,patch3=0:crafter_south_triggered,patch4=0:crafter_west_crafting,patch5=0:crafter_north_crafting,stdrot=true
[1.21-]block:id=%crafter,state=crafting:true/orientation:up_east/triggered:false,patch0=0:crafter_top_crafting,patch1=0:crafter_bottom,patch2=0:crafter_east_crafting,patch3=0:crafter_south_triggered,patch4=0:crafter_west_crafting,patch5=0:crafter_north_crafting,stdrot=true
[1.21-]block:id=%crafter,state=crafting:true/orientation:up_north/triggered:true,patch0=0:crafter_top_crafting,patch1=0:crafter_bottom,patch2=0:crafter_east_crafting,patch3=0:crafter_south_triggered,patch4=0:crafter_west_crafting,patch5=0:crafter_north_crafting,stdrot=true
[1.21-]block:id=%crafter,state=crafting:true/orientation:up_north/triggered:false,patch0=0:crafter_top_crafting,patch1=0:crafter_bottom,patch2=0:crafter_east_crafting,patch3=0:crafter_south_triggered,patch4=0:crafter_west_crafting,patch5=0:crafter_north_crafting,stdrot=true
[1.21-]block:id=%crafter,state=crafting:true/orientation:up_south/triggered:true,patch0=0:crafter_top_crafting,patch1=0:crafter_bottom,patch2=0:crafter_east_crafting,patch3=0:crafter_south_triggered,patch4=0:crafter_west_crafting,patch5=0:crafter_north_crafting,stdrot=true
[1.21-]block:id=%crafter,state=crafting:true/orientation:up_south/triggered:false,patch0=0:crafter_top_crafting,patch1=0:crafter_bottom,patch2=0:crafter_east_crafting,patch3=0:crafter_south_triggered,patch4=0:crafter_west_crafting,patch5=0:crafter_north_crafting,stdrot=true
[1.21-]block:id=%crafter,state=crafting:true/orientation:up_west/triggered:true,patch0=0:crafter_top_crafting,patch1=0:crafter_bottom,patch2=0:crafter_east_crafting,patch3=0:crafter_south_triggered,patch4=0:crafter_west_crafting,patch5=0:crafter_north_crafting,stdrot=true
[1.21-]block:id=%crafter,state=crafting:true/orientation:up_west/triggered:false,patch0=0:crafter_top_crafting,patch1=0:crafter_bottom,patch2=0:crafter_east_crafting,patch3=0:crafter_south_triggered,patch4=0:crafter_west_crafting,patch5=0:crafter_north_crafting,stdrot=true
[1.21-]block:id=%crafter,state=crafting:true/orientation:west_up/triggered:true,patch0=0:crafter_top_crafting,patch1=0:crafter_bottom,patch2=0:crafter_east_crafting,patch3=0:crafter_south_triggered,patch4=0:crafter_west_crafting,patch5=0:crafter_north_crafting,stdrot=true
[1.21-]block:id=%crafter,state=crafting:true/orientation:west_up/triggered:false,patch0=0:crafter_top_crafting,patch1=0:crafter_bottom,patch2=0:crafter_east_crafting,patch3=0:crafter_south_triggered,patch4=0:crafter_west_crafting,patch5=0:crafter_north_crafting,stdrot=true
[1.21-]block:id=%crafter,state=crafting:true/orientation:east_up/triggered:true,patch0=0:crafter_top_crafting,patch1=0:crafter_bottom,patch2=0:crafter_east_crafting,patch3=0:crafter_south_triggered,patch4=0:crafter_west_crafting,patch5=0:crafter_north_crafting,stdrot=true
[1.21-]block:id=%crafter,state=crafting:true/orientation:east_up/triggered:false,patch0=0:crafter_top_crafting,patch1=0:crafter_bottom,patch2=0:crafter_east_crafting,patch3=0:crafter_south_triggered,patch4=0:crafter_west_crafting,patch5=0:crafter_north_crafting,stdrot=true
[1.21-]block:id=%crafter,state=crafting:true/orientation:north_up/triggered:true,patch0=0:crafter_west_crafting,patch1=0:crafter_bottom,patch2=0:crafter_north_crafting,patch3=0:crafter_east_crafting,patch4=5000:crafter_top_crafting,patch5=0:crafter_south_triggered,stdrot=true
[1.21-]block:id=%crafter,state=crafting:true/orientation:north_up/triggered:false,patch0=0:crafter_west_crafting,patch1=0:crafter_bottom,patch2=0:crafter_north_crafting,patch3=0:crafter_east_crafting,patch4=5000:crafter_top_crafting,patch5=0:crafter_south_triggered,stdrot=true
[1.21-]block:id=%crafter,state=crafting:true/orientation:south_up/triggered:true,patch0=0:crafter_top_crafting,patch1=0:crafter_bottom,patch2=0:crafter_east_crafting,patch3=0:crafter_south_triggered,patch4=0:crafter_west_crafting,patch5=0:crafter_north_crafting,stdrot=true
[1.21-]block:id=%crafter,state=crafting:true/orientation:south_up/triggered:false,patch0=0:crafter_top_crafting,patch1=0:crafter_bottom,patch2=0:crafter_east_crafting,patch3=0:crafter_south_triggered,patch4=0:crafter_west_crafting,patch5=0:crafter_north_crafting,stdrot=true
[1.21-]block:id=%crafter,state=crafting:false/orientation:down_east/triggered:true,patch0=0:crafter_top_triggered,patch1=0:crafter_bottom,patch2=0:crafter_east_triggered,patch3=0:crafter_south_triggered,patch4=0:crafter_west_triggered,patch5=0:crafter_north,stdrot=true
[1.21-]block:id=%crafter,state=crafting:false/orientation:down_east/triggered:false,patch0=0:crafter_top,patch1=0:crafter_bottom,patch2=0:crafter_east,patch3=0:crafter_south,patch4=0:crafter_west,patch5=0:crafter_north,stdrot=true
[1.21-]block:id=%crafter,state=crafting:false/orientation:down_north/triggered:true,patch0=0:crafter_top_triggered,patch1=0:crafter_bottom,patch2=0:crafter_east_triggered,patch3=0:crafter_south_triggered,patch4=0:crafter_west_triggered,patch5=0:crafter_north,stdrot=true
[1.21-]block:id=%crafter,state=crafting:false/orientation:down_north/triggered:false,patch0=0:crafter_top,patch1=0:crafter_bottom,patch2=0:crafter_east,patch3=0:crafter_south,patch4=0:crafter_west,patch5=0:crafter_north,stdrot=true
[1.21-]block:id=%crafter,state=crafting:false/orientation:down_south/triggered:true,patch0=0:crafter_top_triggered,patch1=0:crafter_bottom,patch2=0:crafter_east_triggered,patch3=0:crafter_south_triggered,patch4=0:crafter_west_triggered,patch5=0:crafter_north,stdrot=true
[1.21-]block:id=%crafter,state=crafting:false/orientation:down_south/triggered:false,patch0=0:crafter_top,patch1=0:crafter_bottom,patch2=0:crafter_east,patch3=0:crafter_south,patch4=0:crafter_west,patch5=0:crafter_north,stdrot=true
[1.21-]block:id=%crafter,state=crafting:false/orientation:down_west/triggered:true,patch0=0:crafter_top_triggered,patch1=0:crafter_bottom,patch2=0:crafter_east_triggered,patch3=0:crafter_south_triggered,patch4=0:crafter_west_triggered,patch5=0:crafter_north,stdrot=true
[1.21-]block:id=%crafter,state=crafting:false/orientation:down_west/triggered:false,patch0=0:crafter_top,patch1=0:crafter_bottom,patch2=0:crafter_east,patch3=0:crafter_south,patch4=0:crafter_west,patch5=0:crafter_north,stdrot=true
[1.21-]block:id=%crafter,state=crafting:false/orientation:up_east/triggered:true,patch0=0:crafter_top_triggered,patch1=0:crafter_bottom,patch2=0:crafter_east_triggered,patch3=0:crafter_south_triggered,patch4=0:crafter_west_triggered,patch5=0:crafter_north,stdrot=true
[1.21-]block:id=%crafter,state=crafting:false/orientation:up_east/triggered:false,patch0=0:crafter_top,patch1=0:crafter_bottom,patch2=0:crafter_east,patch3=0:crafter_south,patch4=0:crafter_west,patch5=0:crafter_north,stdrot=true
[1.21-]block:id=%crafter,state=crafting:false/orientation:up_north/triggered:true,patch0=0:crafter_top_triggered,patch1=0:crafter_bottom,patch2=0:crafter_east_triggered,patch3=0:crafter_south_triggered,patch4=0:crafter_west_triggered,patch5=0:crafter_north,stdrot=true
[1.21-]block:id=%crafter,state=crafting:false/orientation:up_north/triggered:false,patch0=0:crafter_top,patch1=0:crafter_bottom,patch2=0:crafter_east,patch3=0:crafter_south,patch4=0:crafter_west,patch5=0:crafter_north,stdrot=true
[1.21-]block:id=%crafter,state=crafting:false/orientation:up_south/triggered:true,patch0=0:crafter_top_triggered,patch1=0:crafter_bottom,patch2=0:crafter_east_triggered,patch3=0:crafter_south_triggered,patch4=0:crafter_west_triggered,patch5=0:crafter_north,stdrot=true
[1.21-]block:id=%crafter,state=crafting:false/orientation:up_south/triggered:false,patch0=0:crafter_top,patch1=0:crafter_bottom,patch2=0:crafter_east,patch3=0:crafter_south,patch4=0:crafter_west,patch5=0:crafter_north,stdrot=true
[1.21-]block:id=%crafter,state=crafting:false/orientation:up_west/triggered:true,patch0=0:crafter_top_triggered,patch1=0:crafter_bottom,patch2=0:crafter_east_triggered,patch3=0:crafter_south_triggered,patch4=0:crafter_west_triggered,patch5=0:crafter_north,stdrot=true
[1.21-]block:id=%crafter,state=crafting:false/orientation:up_west/triggered:false,patch0=0:crafter_top,patch1=0:crafter_bottom,patch2=0:crafter_east,patch3=0:crafter_south,patch4=0:crafter_west,patch5=0:crafter_north,stdrot=true
[1.21-]block:id=%crafter,state=crafting:false/orientation:west_up/triggered:true,patch0=0:crafter_top_triggered,patch1=0:crafter_bottom,patch2=0:crafter_east_triggered,patch3=0:crafter_south_triggered,patch4=0:crafter_west_triggered,patch5=0:crafter_north,stdrot=true
[1.21-]block:id=%crafter,state=crafting:false/orientation:west_up/triggered:false,patch0=0:crafter_top,patch1=0:crafter_bottom,patch2=0:crafter_east,patch3=0:crafter_south,patch4=0:crafter_west,patch5=0:crafter_north,stdrot=true
[1.21-]block:id=%crafter,state=crafting:false/orientation:east_up/triggered:true,patch0=0:crafter_top_triggered,patch1=0:crafter_bottom,patch2=0:crafter_east_triggered,patch3=0:crafter_south_triggered,patch4=0:crafter_west_triggered,patch5=0:crafter_north,stdrot=true
[1.21-]block:id=%crafter,state=crafting:false/orientation:east_up/triggered:false,patch0=0:crafter_top,patch1=0:crafter_bottom,patch2=0:crafter_east,patch3=0:crafter_south,patch4=0:crafter_west,patch5=0:crafter_north,stdrot=true
[1.21-]block:id=%crafter,state=crafting:false/orientation:north_up/triggered:true,patch0=0:crafter_west_triggered,patch1=0:crafter_bottom,patch2=0:crafter_north,patch3=0:crafter_east_triggered,patch4=5000:crafter_top_triggered,patch5=0:crafter_south_triggered,stdrot=true
[1.21-]block:id=%crafter,state=crafting:false/orientation:north_up/triggered:false,patch0=0:crafter_west,patch1=0:crafter_bottom,patch2=0:crafter_north,patch3=0:crafter_east,patch4=5000:crafter_top,patch5=0:crafter_south,stdrot=true
[1.21-]block:id=%crafter,state=crafting:false/orientation:south_up/triggered:true,patch0=0:crafter_top_triggered,patch1=0:crafter_bottom,patch2=0:crafter_east_triggered,patch3=0:crafter_south_triggered,patch4=0:crafter_west_triggered,patch5=0:crafter_north,stdrot=true
[1.21-]block:id=%crafter,state=crafting:false/orientation:south_up/triggered:false,patch0=0:crafter_top,patch1=0:crafter_bottom,patch2=0:crafter_east,patch3=0:crafter_south,patch4=0:crafter_west,patch5=0:crafter_north,stdrot=true
[1.21-]block:id=%trial_spawner,state=ominous:true/trial_spawner_state:inactive,patch0=0:trial_spawner_top_inactive_ominous,patch1=0:trial_spawner_bottom,patch2=0:trial_spawner_side_inactive_ominous,transparency=SEMITRANSPARENT,stdrot=true
[1.21-]block:id=%trial_spawner,state=ominous:true/trial_spawner_state:waiting_for_players,patch0=0:trial_spawner_top_active_ominous,patch1=0:trial_spawner_bottom,patch2=0:trial_spawner_side_active_ominous,transparency=SEMITRANSPARENT,stdrot=true
[1.21-]block:id=%trial_spawner,state=ominous:true/trial_spawner_state:active,patch0=0:trial_spawner_top_active_ominous,patch1=0:trial_spawner_bottom,patch2=0:trial_spawner_side_active_ominous,transparency=SEMITRANSPARENT,stdrot=true
[1.21-]block:id=%trial_spawner,state=ominous:true/trial_spawner_state:waiting_for_reward_ejection,patch0=0:trial_spawner_top_active_ominous,patch1=0:trial_spawner_bottom,patch2=0:trial_spawner_side_active_ominous,transparency=SEMITRANSPARENT,stdrot=true
[1.21-]block:id=%trial_spawner,state=ominous:true/trial_spawner_state:ejecting_reward,patch0=0:trial_spawner_top_ejecting_reward_ominous,patch1=0:trial_spawner_bottom,patch2=0:trial_spawner_side_active_ominous,transparency=SEMITRANSPARENT,stdrot=true
[1.21-]block:id=%trial_spawner,state=ominous:true/trial_spawner_state:cooldown,patch0=0:trial_spawner_top_inactive_ominous,patch1=0:trial_spawner_bottom,patch2=0:trial_spawner_side_inactive_ominous,transparency=SEMITRANSPARENT,stdrot=true
[1.21-]block:id=%trial_spawner,state=ominous:false/trial_spawner_state:inactive,patch0=0:trial_spawner_top_inactive,patch1=0:trial_spawner_bottom,patch2=0:trial_spawner_side_inactive,transparency=SEMITRANSPARENT,stdrot=true
[1.21-]block:id=%trial_spawner,state=ominous:false/trial_spawner_state:waiting_for_players,patch0=0:trial_spawner_top_active,patch1=0:trial_spawner_bottom,patch2=0:trial_spawner_side_active,transparency=SEMITRANSPARENT,stdrot=true
[1.21-]block:id=%trial_spawner,state=ominous:false/trial_spawner_state:active,patch0=0:trial_spawner_top_active,patch1=0:trial_spawner_bottom,patch2=0:trial_spawner_side_active,transparency=SEMITRANSPARENT,stdrot=true
[1.21-]block:id=%trial_spawner,state=ominous:false/trial_spawner_state:waiting_for_reward_ejection,patch0=0:trial_spawner_top_active,patch1=0:trial_spawner_bottom,patch2=0:trial_spawner_side_active,transparency=SEMITRANSPARENT,stdrot=true
[1.21-]block:id=%trial_spawner,state=ominous:false/trial_spawner_state:ejecting_reward,patch0=0:trial_spawner_top_ejecting_reward,patch1=0:trial_spawner_bottom,patch2=0:trial_spawner_side_active,transparency=SEMITRANSPARENT,stdrot=true
[1.21-]block:id=%trial_spawner,state=ominous:false/trial_spawner_state:cooldown,patch0=0:trial_spawner_top_inactive,patch1=0:trial_spawner_bottom,patch2=0:trial_spawner_side_inactive,transparency=SEMITRANSPARENT,stdrot=true
[1.21-]block:id=%copper_bulb,state=powered:true/lit:true,patch0=0:copper_bulb_lit_powered,patch1=0:copper_bulb_lit_powered,patch2=0:copper_bulb_lit_powered,patch3=0:copper_bulb_lit_powered,patch4=0:copper_bulb_lit_powered,patch5=0:copper_bulb_lit_powered,stdrot=true
[1.21-]block:id=%copper_bulb,state=powered:false/lit:true,patch0=0:copper_bulb_lit,patch1=0:copper_bulb_lit,patch2=0:copper_bulb_lit,patch3=0:copper_bulb_lit,patch4=0:copper_bulb_lit,patch5=0:copper_bulb_lit,stdrot=true
[1.21-]block:id=%copper_bulb,state=powered:true/lit:false,patch0=0:copper_bulb_powered,patch1=0:copper_bulb_powered,patch2=0:copper_bulb_powered,patch3=0:copper_bulb_powered,patch4=0:copper_bulb_powered,patch5=0:copper_bulb_powered,stdrot=true
[1.21-]block:id=%copper_bulb,state=powered:false/lit:false,patch0=0:copper_bulb,patch1=0:copper_bulb,patch2=0:copper_bulb,patch3=0:copper_bulb,patch4=0:copper_bulb,patch5=0:copper_bulb,stdrot=true
[1.21-]block:id=%exposed_copper_bulb,state=powered:true/lit:true,patch0=0:exposed_copper_bulb_lit_powered,patch1=0:exposed_copper_bulb_lit_powered,patch2=0:exposed_copper_bulb_lit_powered,patch3=0:exposed_copper_bulb_lit_powered,patch4=0:exposed_copper_bulb_lit_powered,patch5=0:exposed_copper_bulb_lit_powered,stdrot=true
[1.21-]block:id=%exposed_copper_bulb,state=powered:false/lit:true,patch0=0:exposed_copper_bulb_lit,patch1=0:exposed_copper_bulb_lit,patch2=0:exposed_copper_bulb_lit,patch3=0:exposed_copper_bulb_lit,patch4=0:exposed_copper_bulb_lit,patch5=0:exposed_copper_bulb_lit,stdrot=true
[1.21-]block:id=%exposed_copper_bulb,state=powered:true/lit:false,patch0=0:exposed_copper_bulb_powered,patch1=0:exposed_copper_bulb_powered,patch2=0:exposed_copper_bulb_powered,patch3=0:exposed_copper_bulb_powered,patch4=0:exposed_copper_bulb_powered,patch5=0:exposed_copper_bulb_powered,stdrot=true
[1.21-]block:id=%exposed_copper_bulb,state=powered:false/lit:false,patch0=0:exposed_copper_bulb,patch1=0:exposed_copper_bulb,patch2=0:exposed_copper_bulb,patch3=0:exposed_copper_bulb,patch4=0:exposed_copper_bulb,patch5=0:exposed_copper_bulb,stdrot=true
[1.21-]block:id=%weathered_copper_bulb,state=powered:true/lit:true,patch0=0:weathered_copper_bulb_lit_powered,patch1=0:weathered_copper_bulb_lit_powered,patch2=0:weathered_copper_bulb_lit_powered,patch3=0:weathered_copper_bulb_lit_powered,patch4=0:weathered_copper_bulb_lit_powered,patch5=0:weathered_copper_bulb_lit_powered,stdrot=true
[1.21-]block:id=%weathered_copper_bulb,state=powered:false/lit:true,patch0=0:weathered_copper_bulb_lit,patch1=0:weathered_copper_bulb_lit,patch2=0:weathered_copper_bulb_lit,patch3=0:weathered_copper_bulb_lit,patch4=0:weathered_copper_bulb_lit,patch5=0:weathered_copper_bulb_lit,stdrot=true
[1.21-]block:id=%weathered_copper_bulb,state=powered:true/lit:false,patch0=0:weathered_copper_bulb_powered,patch1=0:weathered_copper_bulb_powered,patch2=0:weathered_copper_bulb_powered,patch3=0:weathered_copper_bulb_powered,patch4=0:weathered_copper_bulb_powered,patch5=0:weathered_copper_bulb_powered,stdrot=true
[1.21-]block:id=%weathered_copper_bulb,state=powered:false/lit:false,patch0=0:weathered_copper_bulb,patch1=0:weathered_copper_bulb,patch2=0:weathered_copper_bulb,patch3=0:weathered_copper_bulb,patch4=0:weathered_copper_bulb,patch5=0:weathered_copper_bulb,stdrot=true
[1.21-]block:id=%oxidized_copper_bulb,state=powered:true/lit:true,patch0=0:oxidized_copper_bulb_lit_powered,patch1=0:oxidized_copper_bulb_lit_powered,patch2=0:oxidized_copper_bulb_lit_powered,patch3=0:oxidized_copper_bulb_lit_powered,patch4=0:oxidized_copper_bulb_lit_powered,patch5=0:oxidized_copper_bulb_lit_powered,stdrot=true
[1.21-]block:id=%oxidized_copper_bulb,state=powered:false/lit:true,patch0=0:oxidized_copper_bulb_lit,patch1=0:oxidized_copper_bulb_lit,patch2=0:oxidized_copper_bulb_lit,patch3=0:oxidized_copper_bulb_lit,patch4=0:oxidized_copper_bulb_lit,patch5=0:oxidized_copper_bulb_lit,stdrot=true
[1.21-]block:id=%oxidized_copper_bulb,state=powered:true/lit:false,patch0=0:oxidized_copper_bulb_powered,patch1=0:oxidized_copper_bulb_powered,patch2=0:oxidized_copper_bulb_powered,patch3=0:oxidized_copper_bulb_powered,patch4=0:oxidized_copper_bulb_powered,patch5=0:oxidized_copper_bulb_powered,stdrot=true
[1.21-]block:id=%oxidized_copper_bulb,state=powered:false/lit:false,patch0=0:oxidized_copper_bulb,patch1=0:oxidized_copper_bulb,patch2=0:oxidized_copper_bulb,patch3=0:oxidized_copper_bulb,patch4=0:oxidized_copper_bulb,patch5=0:oxidized_copper_bulb,stdrot=true
[1.21-]block:id=%waxed_copper_bulb,state=powered:true/lit:true,patch0=0:copper_bulb_lit_powered,patch1=0:copper_bulb_lit_powered,patch2=0:copper_bulb_lit_powered,patch3=0:copper_bulb_lit_powered,patch4=0:copper_bulb_lit_powered,patch5=0:copper_bulb_lit_powered,stdrot=true
[1.21-]block:id=%waxed_copper_bulb,state=powered:false/lit:true,patch0=0:copper_bulb_lit,patch1=0:copper_bulb_lit,patch2=0:copper_bulb_lit,patch3=0:copper_bulb_lit,patch4=0:copper_bulb_lit,patch5=0:copper_bulb_lit,stdrot=true
[1.21-]block:id=%waxed_copper_bulb,state=powered:true/lit:false,patch0=0:copper_bulb_powered,patch1=0:copper_bulb_powered,patch2=0:copper_bulb_powered,patch3=0:copper_bulb_powered,patch4=0:copper_bulb_powered,patch5=0:copper_bulb_powered,stdrot=true
[1.21-]block:id=%waxed_copper_bulb,state=powered:false/lit:false,patch0=0:copper_bulb,patch1=0:copper_bulb,patch2=0:copper_bulb,patch3=0:copper_bulb,patch4=0:copper_bulb,patch5=0:copper_bulb,stdrot=true
[1.21-]block:id=%waxed_exposed_copper_bulb,state=powered:true/lit:true,patch0=0:exposed_copper_bulb_lit_powered,patch1=0:exposed_copper_bulb_lit_powered,patch2=0:exposed_copper_bulb_lit_powered,patch3=0:exposed_copper_bulb_lit_powered,patch4=0:exposed_copper_bulb_lit_powered,patch5=0:exposed_copper_bulb_lit_powered,stdrot=true
[1.21-]block:id=%waxed_exposed_copper_bulb,state=powered:false/lit:true,patch0=0:exposed_copper_bulb_lit,patch1=0:exposed_copper_bulb_lit,patch2=0:exposed_copper_bulb_lit,patch3=0:exposed_copper_bulb_lit,patch4=0:exposed_copper_bulb_lit,patch5=0:exposed_copper_bulb_lit,stdrot=true
[1.21-]block:id=%waxed_exposed_copper_bulb,state=powered:true/lit:false,patch0=0:exposed_copper_bulb_powered,patch1=0:exposed_copper_bulb_powered,patch2=0:exposed_copper_bulb_powered,patch3=0:exposed_copper_bulb_powered,patch4=0:exposed_copper_bulb_powered,patch5=0:exposed_copper_bulb_powered,stdrot=true
[1.21-]block:id=%waxed_exposed_copper_bulb,state=powered:false/lit:false,patch0=0:exposed_copper_bulb,patch1=0:exposed_copper_bulb,patch2=0:exposed_copper_bulb,patch3=0:exposed_copper_bulb,patch4=0:exposed_copper_bulb,patch5=0:exposed_copper_bulb,stdrot=true
[1.21-]block:id=%waxed_weathered_copper_bulb,state=powered:true/lit:true,patch0=0:weathered_copper_bulb_lit_powered,patch1=0:weathered_copper_bulb_lit_powered,patch2=0:weathered_copper_bulb_lit_powered,patch3=0:weathered_copper_bulb_lit_powered,patch4=0:weathered_copper_bulb_lit_powered,patch5=0:weathered_copper_bulb_lit_powered,stdrot=true
[1.21-]block:id=%waxed_weathered_copper_bulb,state=powered:false/lit:true,patch0=0:weathered_copper_bulb_lit,patch1=0:weathered_copper_bulb_lit,patch2=0:weathered_copper_bulb_lit,patch3=0:weathered_copper_bulb_lit,patch4=0:weathered_copper_bulb_lit,patch5=0:weathered_copper_bulb_lit,stdrot=true
[1.21-]block:id=%waxed_weathered_copper_bulb,state=powered:true/lit:false,patch0=0:weathered_copper_bulb_powered,patch1=0:weathered_copper_bulb_powered,patch2=0:weathered_copper_bulb_powered,patch3=0:weathered_copper_bulb_powered,patch4=0:weathered_copper_bulb_powered,patch5=0:weathered_copper_bulb_powered,stdrot=true
[1.21-]block:id=%waxed_weathered_copper_bulb,state=powered:false/lit:false,patch0=0:weathered_copper_bulb,patch1=0:weathered_copper_bulb,patch2=0:weathered_copper_bulb,patch3=0:weathered_copper_bulb,patch4=0:weathered_copper_bulb,patch5=0:weathered_copper_bulb,stdrot=true
[1.21-]block:id=%waxed_oxidized_copper_bulb,state=powered:true/lit:true,patch0=0:oxidized_copper_bulb_lit_powered,patch1=0:oxidized_copper_bulb_lit_powered,patch2=0:oxidized_copper_bulb_lit_powered,patch3=0:oxidized_copper_bulb_lit_powered,patch4=0:oxidized_copper_bulb_lit_powered,patch5=0:oxidized_copper_bulb_lit_powered,stdrot=true
[1.21-]block:id=%waxed_oxidized_copper_bulb,state=powered:false/lit:true,patch0=0:oxidized_copper_bulb_lit,patch1=0:oxidized_copper_bulb_lit,patch2=0:oxidized_copper_bulb_lit,patch3=0:oxidized_copper_bulb_lit,patch4=0:oxidized_copper_bulb_lit,patch5=0:oxidized_copper_bulb_lit,stdrot=true
[1.21-]block:id=%waxed_oxidized_copper_bulb,state=powered:true/lit:false,patch0=0:oxidized_copper_bulb_powered,patch1=0:oxidized_copper_bulb_powered,patch2=0:oxidized_copper_bulb_powered,patch3=0:oxidized_copper_bulb_powered,patch4=0:oxidized_copper_bulb_powered,patch5=0:oxidized_copper_bulb_powered,stdrot=true
[1.21-]block:id=%waxed_oxidized_copper_bulb,state=powered:false/lit:false,patch0=0:oxidized_copper_bulb,patch1=0:oxidized_copper_bulb,patch2=0:oxidized_copper_bulb,patch3=0:oxidized_copper_bulb,patch4=0:oxidized_copper_bulb,patch5=0:oxidized_copper_bulb,stdrot=true

Binary file not shown.

Before

Width:  |  Height:  |  Size: 219 B

After

Width:  |  Height:  |  Size: 252 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 233 B

After

Width:  |  Height:  |  Size: 264 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 210 B

After

Width:  |  Height:  |  Size: 249 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 193 B

After

Width:  |  Height:  |  Size: 259 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 243 B

After

Width:  |  Height:  |  Size: 301 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 202 B

After

Width:  |  Height:  |  Size: 269 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 204 B

After

Width:  |  Height:  |  Size: 232 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 242 B

After

Width:  |  Height:  |  Size: 294 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 243 B

After

Width:  |  Height:  |  Size: 295 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 212 B

After

Width:  |  Height:  |  Size: 284 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 215 B

After

Width:  |  Height:  |  Size: 249 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 207 B

After

Width:  |  Height:  |  Size: 276 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 222 B

After

Width:  |  Height:  |  Size: 298 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 198 B

After

Width:  |  Height:  |  Size: 260 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 170 B

After

Width:  |  Height:  |  Size: 236 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 192 B

After

Width:  |  Height:  |  Size: 201 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 144 B

After

Width:  |  Height:  |  Size: 146 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 209 B

After

Width:  |  Height:  |  Size: 265 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 248 B

After

Width:  |  Height:  |  Size: 287 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 201 B

After

Width:  |  Height:  |  Size: 235 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 184 B

After

Width:  |  Height:  |  Size: 251 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 219 B

After

Width:  |  Height:  |  Size: 299 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 166 B

After

Width:  |  Height:  |  Size: 198 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 244 B

After

Width:  |  Height:  |  Size: 327 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 253 B

After

Width:  |  Height:  |  Size: 304 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 249 B

After

Width:  |  Height:  |  Size: 295 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 214 B

After

Width:  |  Height:  |  Size: 289 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 153 B

After

Width:  |  Height:  |  Size: 213 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 153 B

After

Width:  |  Height:  |  Size: 213 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 255 B

After

Width:  |  Height:  |  Size: 290 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 230 B

After

Width:  |  Height:  |  Size: 303 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 225 B

After

Width:  |  Height:  |  Size: 274 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 232 B

After

Width:  |  Height:  |  Size: 255 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 241 B

After

Width:  |  Height:  |  Size: 246 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 203 B

After

Width:  |  Height:  |  Size: 279 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 261 B

After

Width:  |  Height:  |  Size: 323 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 214 B

After

Width:  |  Height:  |  Size: 270 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 205 B

After

Width:  |  Height:  |  Size: 258 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 203 B

After

Width:  |  Height:  |  Size: 243 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 193 B

After

Width:  |  Height:  |  Size: 223 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 187 B

After

Width:  |  Height:  |  Size: 256 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 211 B

After

Width:  |  Height:  |  Size: 279 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 198 B

After

Width:  |  Height:  |  Size: 211 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 169 B

After

Width:  |  Height:  |  Size: 247 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 185 B

After

Width:  |  Height:  |  Size: 220 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 237 B

After

Width:  |  Height:  |  Size: 286 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 249 B

After

Width:  |  Height:  |  Size: 315 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 208 B

After

Width:  |  Height:  |  Size: 243 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 185 B

After

Width:  |  Height:  |  Size: 220 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 181 B

After

Width:  |  Height:  |  Size: 216 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 207 B

After

Width:  |  Height:  |  Size: 250 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 243 B

After

Width:  |  Height:  |  Size: 291 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 207 B

After

Width:  |  Height:  |  Size: 247 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 180 B

After

Width:  |  Height:  |  Size: 198 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 200 B

After

Width:  |  Height:  |  Size: 219 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 182 B

After

Width:  |  Height:  |  Size: 195 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 214 B

After

Width:  |  Height:  |  Size: 245 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 234 B

After

Width:  |  Height:  |  Size: 297 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 230 B

After

Width:  |  Height:  |  Size: 274 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 198 B

After

Width:  |  Height:  |  Size: 231 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 208 B

After

Width:  |  Height:  |  Size: 266 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 239 B

After

Width:  |  Height:  |  Size: 298 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 202 B

After

Width:  |  Height:  |  Size: 268 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 196 B

After

Width:  |  Height:  |  Size: 223 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 248 B

After

Width:  |  Height:  |  Size: 310 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 172 B

After

Width:  |  Height:  |  Size: 228 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 285 B

After

Width:  |  Height:  |  Size: 349 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 256 B

After

Width:  |  Height:  |  Size: 266 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 334 B

After

Width:  |  Height:  |  Size: 350 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 364 B

After

Width:  |  Height:  |  Size: 417 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 204 B

After

Width:  |  Height:  |  Size: 290 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 195 B

After

Width:  |  Height:  |  Size: 288 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 266 B

After

Width:  |  Height:  |  Size: 314 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 286 B

After

Width:  |  Height:  |  Size: 369 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 256 B

After

Width:  |  Height:  |  Size: 294 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 204 B

After

Width:  |  Height:  |  Size: 247 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 172 B

After

Width:  |  Height:  |  Size: 205 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 202 B

After

Width:  |  Height:  |  Size: 257 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 189 B

After

Width:  |  Height:  |  Size: 248 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 179 B

After

Width:  |  Height:  |  Size: 186 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 277 B

After

Width:  |  Height:  |  Size: 317 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 382 B

After

Width:  |  Height:  |  Size: 463 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 139 B

After

Width:  |  Height:  |  Size: 167 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 194 B

After

Width:  |  Height:  |  Size: 242 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 319 B

After

Width:  |  Height:  |  Size: 413 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 206 B

After

Width:  |  Height:  |  Size: 255 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 210 B

After

Width:  |  Height:  |  Size: 284 B

Some files were not shown because too many files have changed in this diff Show More