From 0f9d8a5e25a3d44ed386e186aee3fedd49932177 Mon Sep 17 00:00:00 2001 From: 17146 <1714673995@qq.com> Date: Fri, 20 Dec 2024 00:20:54 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0fumo25=E5=BA=95=E5=BA=A7?= =?UTF-8?q?=E6=A8=A1=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../f93f628a3b0902e77de76541bcff68d1e5e3578f | 3 +- .../superbwarfare/blockstates/fumo_25.json | 7 + .../superbwarfare/block/FuMO25Block.java | 10 + .../datagen/ModBlockStateProvider.java | 2 + .../superbwarfare/models/block/fumo_25.json | 1569 +++++++++++++++++ .../superbwarfare/textures/block/fumo_25.png | Bin 0 -> 2769 bytes 6 files changed, 1590 insertions(+), 1 deletion(-) create mode 100644 src/generated/resources/assets/superbwarfare/blockstates/fumo_25.json create mode 100644 src/main/resources/assets/superbwarfare/models/block/fumo_25.json create mode 100644 src/main/resources/assets/superbwarfare/textures/block/fumo_25.png diff --git a/src/generated/resources/.cache/f93f628a3b0902e77de76541bcff68d1e5e3578f b/src/generated/resources/.cache/f93f628a3b0902e77de76541bcff68d1e5e3578f index fa5e8b4b8..c0c31e441 100644 --- a/src/generated/resources/.cache/f93f628a3b0902e77de76541bcff68d1e5e3578f +++ b/src/generated/resources/.cache/f93f628a3b0902e77de76541bcff68d1e5e3578f @@ -1,4 +1,4 @@ -// 1.20.1 2024-12-06T23:36:40.4869712 Block States: superbwarfare +// 1.20.1 2024-12-20T00:15:37.2171993 Block States: superbwarfare f3b778ca36ca78c3d80f1b778078897f59bdb0c5 assets/superbwarfare/blockstates/barbed_wire.json 0cfad4f53a8047c402edf978d0c8cf6269f063cb assets/superbwarfare/blockstates/cemented_carbide_block.json 13e5bd940f02c3719459d17722b79619e98194e5 assets/superbwarfare/blockstates/charging_station.json @@ -6,6 +6,7 @@ f3b778ca36ca78c3d80f1b778078897f59bdb0c5 assets/superbwarfare/blockstates/barbed 62fb0464ca59ac21693639c406e08730427d87b3 assets/superbwarfare/blockstates/deepslate_galena_ore.json b8b7cdea6c8626c74d652d0b300b3afe19c60674 assets/superbwarfare/blockstates/deepslate_scheelite_ore.json 2b24b703de4821bebe71ba53043e6a1a23d71c17 assets/superbwarfare/blockstates/deepslate_silver_ore.json +97e139f7c7111d135e0732c46134192cecbf8620 assets/superbwarfare/blockstates/fumo_25.json d8a6ec32752f10b1f363f6c78ed2da6dc895d545 assets/superbwarfare/blockstates/galena_ore.json 37d592516f2b685940e46f7d5c524407a200eeac assets/superbwarfare/blockstates/jump_pad.json 3b464a0684d05c28c8485f764c7ad7e86ae48c06 assets/superbwarfare/blockstates/lead_block.json diff --git a/src/generated/resources/assets/superbwarfare/blockstates/fumo_25.json b/src/generated/resources/assets/superbwarfare/blockstates/fumo_25.json new file mode 100644 index 000000000..9b098613f --- /dev/null +++ b/src/generated/resources/assets/superbwarfare/blockstates/fumo_25.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "superbwarfare:block/fumo_25" + } + } +} \ No newline at end of file diff --git a/src/main/java/com/atsuishio/superbwarfare/block/FuMO25Block.java b/src/main/java/com/atsuishio/superbwarfare/block/FuMO25Block.java index 42f9b5aff..09ecd1c24 100644 --- a/src/main/java/com/atsuishio/superbwarfare/block/FuMO25Block.java +++ b/src/main/java/com/atsuishio/superbwarfare/block/FuMO25Block.java @@ -3,6 +3,7 @@ package com.atsuishio.superbwarfare.block; import com.atsuishio.superbwarfare.block.entity.FuMO25BlockEntity; import com.atsuishio.superbwarfare.init.ModBlockEntities; import net.minecraft.core.BlockPos; +import net.minecraft.world.level.BlockGetter; import net.minecraft.world.level.Level; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.EntityBlock; @@ -12,14 +13,23 @@ import net.minecraft.world.level.block.entity.BlockEntityTicker; import net.minecraft.world.level.block.entity.BlockEntityType; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.phys.shapes.CollisionContext; +import net.minecraft.world.phys.shapes.Shapes; +import net.minecraft.world.phys.shapes.VoxelShape; import org.jetbrains.annotations.Nullable; +@SuppressWarnings("deprecation") public class FuMO25Block extends Block implements EntityBlock { public FuMO25Block() { super(BlockBehaviour.Properties.of().sound(SoundType.METAL).strength(3.0f).requiresCorrectToolForDrops()); } + @Override + public VoxelShape getShape(BlockState pState, BlockGetter pLevel, BlockPos pPos, CollisionContext pContext) { + return Shapes.or(box(1, 0, 1, 15, 1, 15), box(7, 1, 7, 9, 16, 9)); + } + @Nullable @Override public BlockEntity newBlockEntity(BlockPos pPos, BlockState pState) { diff --git a/src/main/java/com/atsuishio/superbwarfare/datagen/ModBlockStateProvider.java b/src/main/java/com/atsuishio/superbwarfare/datagen/ModBlockStateProvider.java index 529be68a4..e7b28613a 100644 --- a/src/main/java/com/atsuishio/superbwarfare/datagen/ModBlockStateProvider.java +++ b/src/main/java/com/atsuishio/superbwarfare/datagen/ModBlockStateProvider.java @@ -37,6 +37,8 @@ public class ModBlockStateProvider extends BlockStateProvider { blockWithItem(ModBlocks.SILVER_ORE); blockWithItem(ModBlocks.DEEPSLATE_SILVER_ORE); blockWithItem(ModBlocks.SILVER_BLOCK); + + simpleBlock(ModBlocks.FUMO_25.get(), new ModelFile.UncheckedModelFile(modLoc("block/fumo_25"))); } private String name(Block block) { diff --git a/src/main/resources/assets/superbwarfare/models/block/fumo_25.json b/src/main/resources/assets/superbwarfare/models/block/fumo_25.json new file mode 100644 index 000000000..d7c304a4c --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/block/fumo_25.json @@ -0,0 +1,1569 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [64, 64], + "textures": { + "0": "superbwarfare:block/fumo_25", + "particle": "superbwarfare:block/fumo_25" + }, + "elements": [ + { + "from": [7.80018, 1, 8.95], + "to": [8.19982, 11, 9], + "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 1, 8]}, + "faces": { + "north": {"uv": [2.25, 2.5, 2.5, 5], "texture": "#0"}, + "east": {"uv": [2.5, 2.5, 2.75, 5], "texture": "#0"}, + "south": {"uv": [2.75, 0, 3, 2.5], "texture": "#0"}, + "west": {"uv": [2.75, 2.5, 3, 5], "texture": "#0"}, + "up": {"uv": [11.5, 3.75, 11.25, 3.5], "texture": "#0"}, + "down": {"uv": [11.5, 3.75, 11.25, 4], "texture": "#0"} + } + }, + { + "from": [7.80018, 1, 8.95], + "to": [8.19982, 11, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 8]}, + "faces": { + "north": {"uv": [3, 0, 3.25, 2.5], "texture": "#0"}, + "east": {"uv": [3, 2.5, 3.25, 5], "texture": "#0"}, + "south": {"uv": [3.25, 0, 3.5, 2.5], "texture": "#0"}, + "west": {"uv": [3.25, 2.5, 3.5, 5], "texture": "#0"}, + "up": {"uv": [11.5, 4.25, 11.25, 4], "texture": "#0"}, + "down": {"uv": [11.5, 4.25, 11.25, 4.5], "texture": "#0"} + } + }, + { + "from": [7.80018, 1, 8.95], + "to": [8.19982, 11, 9], + "rotation": {"angle": -22.5, "axis": "y", "origin": [8, 1, 8]}, + "faces": { + "north": {"uv": [3.5, 0, 3.75, 2.5], "texture": "#0"}, + "east": {"uv": [3.5, 2.5, 3.75, 5], "texture": "#0"}, + "south": {"uv": [3.75, 0, 4, 2.5], "texture": "#0"}, + "west": {"uv": [3.75, 2.5, 4, 5], "texture": "#0"}, + "up": {"uv": [11.5, 4.75, 11.25, 4.5], "texture": "#0"}, + "down": {"uv": [11.5, 5, 11.25, 5.25], "texture": "#0"} + } + }, + { + "from": [7, 1, 7.80018], + "to": [7.05, 11, 8.19982], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 1, 8]}, + "faces": { + "north": {"uv": [2, 0, 2.25, 2.5], "texture": "#0"}, + "east": {"uv": [2.25, 0, 2.5, 2.5], "texture": "#0"}, + "south": {"uv": [0, 2.5, 0.25, 5], "texture": "#0"}, + "west": {"uv": [2.5, 0, 2.75, 2.5], "texture": "#0"}, + "up": {"uv": [11.5, 2.25, 11.25, 2], "texture": "#0"}, + "down": {"uv": [11.5, 2.25, 11.25, 2.5], "texture": "#0"} + } + }, + { + "from": [7, 1, 7.80018], + "to": [7.05, 11, 8.19982], + "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 1, 8]}, + "faces": { + "north": {"uv": [1, 0, 1.25, 2.5], "texture": "#0"}, + "east": {"uv": [1.25, 0, 1.5, 2.5], "texture": "#0"}, + "south": {"uv": [1.5, 0, 1.75, 2.5], "texture": "#0"}, + "west": {"uv": [1.75, 0, 2, 2.5], "texture": "#0"}, + "up": {"uv": [1.5, 11.5, 1.25, 11.25], "texture": "#0"}, + "down": {"uv": [11.5, 1.75, 11.25, 2], "texture": "#0"} + } + }, + { + "from": [7, 1, 7.80018], + "to": [7.05, 11, 8.19982], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 8]}, + "faces": { + "north": {"uv": [0, 0, 0.25, 2.5], "texture": "#0"}, + "east": {"uv": [0.25, 0, 0.5, 2.5], "texture": "#0"}, + "south": {"uv": [0.5, 0, 0.75, 2.5], "texture": "#0"}, + "west": {"uv": [0.75, 0, 1, 2.5], "texture": "#0"}, + "up": {"uv": [5.25, 9.75, 5, 9.5], "texture": "#0"}, + "down": {"uv": [11.5, 1, 11.25, 1.25], "texture": "#0"} + } + }, + { + "from": [7, 1, 7.80018], + "to": [7.05, 11, 8.19982], + "rotation": {"angle": -22.5, "axis": "y", "origin": [8, 1, 8]}, + "faces": { + "north": {"uv": [0.25, 2.5, 0.5, 5], "texture": "#0"}, + "east": {"uv": [0.5, 2.5, 0.75, 5], "texture": "#0"}, + "south": {"uv": [0.75, 2.5, 1, 5], "texture": "#0"}, + "west": {"uv": [1, 2.5, 1.25, 5], "texture": "#0"}, + "up": {"uv": [11.5, 2.75, 11.25, 2.5], "texture": "#0"}, + "down": {"uv": [11.5, 2.75, 11.25, 3], "texture": "#0"} + } + }, + { + "from": [7.80018, 1, 8.95], + "to": [8.19982, 11, 9], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 1, 8]}, + "faces": { + "north": {"uv": [1.25, 2.5, 1.5, 5], "texture": "#0"}, + "east": {"uv": [1.5, 2.5, 1.75, 5], "texture": "#0"}, + "south": {"uv": [1.75, 2.5, 2, 5], "texture": "#0"}, + "west": {"uv": [2, 2.5, 2.25, 5], "texture": "#0"}, + "up": {"uv": [11.5, 3.25, 11.25, 3], "texture": "#0"}, + "down": {"uv": [11.5, 3.25, 11.25, 3.5], "texture": "#0"} + } + }, + { + "from": [7.80018, 1, 7], + "to": [8.19982, 11, 7.05], + "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 1, 8]}, + "faces": { + "north": {"uv": [4.5, 5, 4.75, 7.5], "texture": "#0"}, + "east": {"uv": [4.75, 5, 5, 7.5], "texture": "#0"}, + "south": {"uv": [5, 5, 5.25, 7.5], "texture": "#0"}, + "west": {"uv": [5.25, 0, 5.5, 2.5], "texture": "#0"}, + "up": {"uv": [8.5, 11.5, 8.25, 11.25], "texture": "#0"}, + "down": {"uv": [9, 11.25, 8.75, 11.5], "texture": "#0"} + } + }, + { + "from": [7.80018, 1, 7], + "to": [8.19982, 11, 7.05], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 8]}, + "faces": { + "north": {"uv": [3.5, 5, 3.75, 7.5], "texture": "#0"}, + "east": {"uv": [3.75, 5, 4, 7.5], "texture": "#0"}, + "south": {"uv": [4, 5, 4.25, 7.5], "texture": "#0"}, + "west": {"uv": [4.25, 5, 4.5, 7.5], "texture": "#0"}, + "up": {"uv": [11.5, 8, 11.25, 7.75], "texture": "#0"}, + "down": {"uv": [8.25, 11.25, 8, 11.5], "texture": "#0"} + } + }, + { + "from": [7.80018, 1, 7], + "to": [8.19982, 11, 7.05], + "rotation": {"angle": -22.5, "axis": "y", "origin": [8, 1, 8]}, + "faces": { + "north": {"uv": [5, 2.5, 5.25, 5], "texture": "#0"}, + "east": {"uv": [2.75, 5, 3, 7.5], "texture": "#0"}, + "south": {"uv": [3, 5, 3.25, 7.5], "texture": "#0"}, + "west": {"uv": [3.25, 5, 3.5, 7.5], "texture": "#0"}, + "up": {"uv": [7.75, 11.5, 7.5, 11.25], "texture": "#0"}, + "down": {"uv": [11.5, 7.5, 11.25, 7.75], "texture": "#0"} + } + }, + { + "from": [8.95, 1, 7.80018], + "to": [9, 11, 8.19982], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 1, 8]}, + "faces": { + "north": {"uv": [1.75, 5, 2, 7.5], "texture": "#0"}, + "east": {"uv": [2, 5, 2.25, 7.5], "texture": "#0"}, + "south": {"uv": [2.25, 5, 2.5, 7.5], "texture": "#0"}, + "west": {"uv": [2.5, 5, 2.75, 7.5], "texture": "#0"}, + "up": {"uv": [7.5, 11.5, 7.25, 11.25], "texture": "#0"}, + "down": {"uv": [11.5, 7.25, 11.25, 7.5], "texture": "#0"} + } + }, + { + "from": [8.95, 1, 7.80018], + "to": [9, 11, 8.19982], + "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 1, 8]}, + "faces": { + "north": {"uv": [0.75, 5, 1, 7.5], "texture": "#0"}, + "east": {"uv": [1, 5, 1.25, 7.5], "texture": "#0"}, + "south": {"uv": [1.25, 5, 1.5, 7.5], "texture": "#0"}, + "west": {"uv": [1.5, 5, 1.75, 7.5], "texture": "#0"}, + "up": {"uv": [11.5, 7, 11.25, 6.75], "texture": "#0"}, + "down": {"uv": [11.5, 7, 11.25, 7.25], "texture": "#0"} + } + }, + { + "from": [8.95, 1, 7.80018], + "to": [9, 11, 8.19982], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 8]}, + "faces": { + "north": {"uv": [0, 5, 0.25, 7.5], "texture": "#0"}, + "east": {"uv": [5, 0, 5.25, 2.5], "texture": "#0"}, + "south": {"uv": [0.25, 5, 0.5, 7.5], "texture": "#0"}, + "west": {"uv": [0.5, 5, 0.75, 7.5], "texture": "#0"}, + "up": {"uv": [11.5, 6.5, 11.25, 6.25], "texture": "#0"}, + "down": {"uv": [11.5, 6.5, 11.25, 6.75], "texture": "#0"} + } + }, + { + "from": [8.95, 1, 7.80018], + "to": [9, 11, 8.19982], + "rotation": {"angle": -22.5, "axis": "y", "origin": [8, 1, 8]}, + "faces": { + "north": {"uv": [4.5, 0, 4.75, 2.5], "texture": "#0"}, + "east": {"uv": [4.5, 2.5, 4.75, 5], "texture": "#0"}, + "south": {"uv": [4.75, 0, 5, 2.5], "texture": "#0"}, + "west": {"uv": [4.75, 2.5, 5, 5], "texture": "#0"}, + "up": {"uv": [11.5, 6, 11.25, 5.75], "texture": "#0"}, + "down": {"uv": [11.5, 6, 11.25, 6.25], "texture": "#0"} + } + }, + { + "from": [7.80018, 1, 7], + "to": [8.19982, 11, 7.05], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 1, 8]}, + "faces": { + "north": {"uv": [4, 0, 4.25, 2.5], "texture": "#0"}, + "east": {"uv": [4, 2.5, 4.25, 5], "texture": "#0"}, + "south": {"uv": [4.25, 0, 4.5, 2.5], "texture": "#0"}, + "west": {"uv": [4.25, 2.5, 4.5, 5], "texture": "#0"}, + "up": {"uv": [11.5, 5.5, 11.25, 5.25], "texture": "#0"}, + "down": {"uv": [11.5, 5.5, 11.25, 5.75], "texture": "#0"} + } + }, + { + "from": [7.20072, 0, 8], + "to": [8.79928, 1, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [5.5, 2.25, 6, 2.5], "texture": "#0"}, + "east": {"uv": [3.5, 9.5, 4.5, 9.75], "texture": "#0"}, + "south": {"uv": [4.25, 10.25, 4.75, 10.5], "texture": "#0"}, + "west": {"uv": [9.5, 5.5, 10.5, 5.75], "texture": "#0"}, + "up": {"uv": [8, 9, 7.5, 8], "texture": "#0"}, + "down": {"uv": [8.5, 8, 8, 9], "texture": "#0"} + } + }, + { + "from": [8, 0, 7.20072], + "to": [12, 1, 8.79928], + "rotation": {"angle": -22.5, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [9.5, 6.75, 10.5, 7], "texture": "#0"}, + "east": {"uv": [5.75, 10.25, 6.25, 10.5], "texture": "#0"}, + "south": {"uv": [9.5, 7, 10.5, 7.25], "texture": "#0"}, + "west": {"uv": [6.25, 10.25, 6.75, 10.5], "texture": "#0"}, + "up": {"uv": [9.25, 4.5, 8.25, 4], "texture": "#0"}, + "down": {"uv": [9.25, 4.5, 8.25, 5], "texture": "#0"} + } + }, + { + "from": [7.20072, 0, 8], + "to": [8.79928, 1, 12], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [5.25, 10.25, 5.75, 10.5], "texture": "#0"}, + "east": {"uv": [9.5, 6.25, 10.5, 6.5], "texture": "#0"}, + "south": {"uv": [10.25, 5.25, 10.75, 5.5], "texture": "#0"}, + "west": {"uv": [9.5, 6.5, 10.5, 6.75], "texture": "#0"}, + "up": {"uv": [8.75, 3, 8.25, 2], "texture": "#0"}, + "down": {"uv": [8.75, 3, 8.25, 4], "texture": "#0"} + } + }, + { + "from": [7.20072, 0, 8], + "to": [8.79928, 1, 12], + "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [4.75, 10.25, 5.25, 10.5], "texture": "#0"}, + "east": {"uv": [9.5, 5.75, 10.5, 6], "texture": "#0"}, + "south": {"uv": [10.25, 5, 10.75, 5.25], "texture": "#0"}, + "west": {"uv": [9.5, 6, 10.5, 6.25], "texture": "#0"}, + "up": {"uv": [8.75, 1, 8.25, 0], "texture": "#0"}, + "down": {"uv": [8.75, 1, 8.25, 2], "texture": "#0"} + } + }, + { + "from": [8, 0, 7.20072], + "to": [12, 1, 8.79928], + "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [8.5, 9.5, 9.5, 9.75], "texture": "#0"}, + "east": {"uv": [9.75, 10.25, 10.25, 10.5], "texture": "#0"}, + "south": {"uv": [9.5, 8.5, 10.5, 8.75], "texture": "#0"}, + "west": {"uv": [10.25, 10.25, 10.75, 10.5], "texture": "#0"}, + "up": {"uv": [9.5, 9, 8.5, 8.5], "texture": "#0"}, + "down": {"uv": [9.75, 0, 8.75, 0.5], "texture": "#0"} + } + }, + { + "from": [8, 0, 7.20072], + "to": [12, 1, 8.79928], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [9.5, 8, 10.5, 8.25], "texture": "#0"}, + "east": {"uv": [8.75, 10.25, 9.25, 10.5], "texture": "#0"}, + "south": {"uv": [9.5, 8.25, 10.5, 8.5], "texture": "#0"}, + "west": {"uv": [9.25, 10.25, 9.75, 10.5], "texture": "#0"}, + "up": {"uv": [9.25, 8, 8.25, 7.5], "texture": "#0"}, + "down": {"uv": [9.5, 8, 8.5, 8.5], "texture": "#0"} + } + }, + { + "from": [7.20072, 0, 4], + "to": [8.79928, 1, 8], + "rotation": {"angle": -22.5, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [7.75, 10.25, 8.25, 10.5], "texture": "#0"}, + "east": {"uv": [9.5, 7.5, 10.5, 7.75], "texture": "#0"}, + "south": {"uv": [8.25, 10.25, 8.75, 10.5], "texture": "#0"}, + "west": {"uv": [9.5, 7.75, 10.5, 8], "texture": "#0"}, + "up": {"uv": [8.75, 6.5, 8.25, 5.5], "texture": "#0"}, + "down": {"uv": [8.75, 6.5, 8.25, 7.5], "texture": "#0"} + } + }, + { + "from": [8, 0, 7.20072], + "to": [12, 1, 8.79928], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [9.5, 7.25, 10.5, 7.5], "texture": "#0"}, + "east": {"uv": [6.75, 10.25, 7.25, 10.5], "texture": "#0"}, + "south": {"uv": [7.5, 9.5, 8.5, 9.75], "texture": "#0"}, + "west": {"uv": [7.25, 10.25, 7.75, 10.5], "texture": "#0"}, + "up": {"uv": [9.25, 5.5, 8.25, 5], "texture": "#0"}, + "down": {"uv": [6.25, 8.25, 5.25, 8.75], "texture": "#0"} + } + }, + { + "from": [4, 0, 7.20072], + "to": [8, 1, 8.79928], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [3.5, 9.75, 4.5, 10], "texture": "#0"}, + "east": {"uv": [6.75, 10.5, 7.25, 10.75], "texture": "#0"}, + "south": {"uv": [9.75, 3.5, 10.75, 3.75], "texture": "#0"}, + "west": {"uv": [10.5, 6.75, 11, 7], "texture": "#0"}, + "up": {"uv": [10.25, 2.5, 9.25, 2], "texture": "#0"}, + "down": {"uv": [10.25, 5, 9.25, 5.5], "texture": "#0"} + } + }, + { + "from": [7.20072, 0, 8], + "to": [8.79928, 1, 12], + "rotation": {"angle": -22.5, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [10.5, 6.25, 11, 6.5], "texture": "#0"}, + "east": {"uv": [9.75, 3, 10.75, 3.25], "texture": "#0"}, + "south": {"uv": [10.5, 6.5, 11, 6.75], "texture": "#0"}, + "west": {"uv": [9.75, 3.25, 10.75, 3.5], "texture": "#0"}, + "up": {"uv": [9.75, 2, 9.25, 1], "texture": "#0"}, + "down": {"uv": [9.75, 4, 9.25, 5], "texture": "#0"} + } + }, + { + "from": [4, 0, 7.20072], + "to": [8, 1, 8.79928], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [9.75, 2.5, 10.75, 2.75], "texture": "#0"}, + "east": {"uv": [10.5, 6, 11, 6.25], "texture": "#0"}, + "south": {"uv": [9.75, 2.75, 10.75, 3], "texture": "#0"}, + "west": {"uv": [6.25, 10.5, 6.75, 10.75], "texture": "#0"}, + "up": {"uv": [9.5, 9.5, 8.5, 9], "texture": "#0"}, + "down": {"uv": [10.25, 0.5, 9.25, 1], "texture": "#0"} + } + }, + { + "from": [4, 0, 7.20072], + "to": [8, 1, 8.79928], + "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [9.75, 1.5, 10.75, 1.75], "texture": "#0"}, + "east": {"uv": [5.75, 10.5, 6.25, 10.75], "texture": "#0"}, + "south": {"uv": [9.75, 1.75, 10.75, 2], "texture": "#0"}, + "west": {"uv": [10.5, 5.75, 11, 6], "texture": "#0"}, + "up": {"uv": [9.75, 4, 8.75, 3.5], "texture": "#0"}, + "down": {"uv": [8.5, 9, 7.5, 9.5], "texture": "#0"} + } + }, + { + "from": [7.20072, 0, 4], + "to": [8.79928, 1, 8], + "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [5.25, 10.5, 5.75, 10.75], "texture": "#0"}, + "east": {"uv": [9.75, 1, 10.75, 1.25], "texture": "#0"}, + "south": {"uv": [10.5, 5.5, 11, 5.75], "texture": "#0"}, + "west": {"uv": [9.75, 1.25, 10.75, 1.5], "texture": "#0"}, + "up": {"uv": [6.25, 9.75, 5.75, 8.75], "texture": "#0"}, + "down": {"uv": [9.25, 6.5, 8.75, 7.5], "texture": "#0"} + } + }, + { + "from": [7.20072, 0, 4], + "to": [8.79928, 1, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [4.75, 10.5, 5.25, 10.75], "texture": "#0"}, + "east": {"uv": [9.75, 0, 10.75, 0.25], "texture": "#0"}, + "south": {"uv": [10.5, 4.75, 11, 5], "texture": "#0"}, + "west": {"uv": [9.75, 0.25, 10.75, 0.5], "texture": "#0"}, + "up": {"uv": [5.75, 9.75, 5.25, 8.75], "texture": "#0"}, + "down": {"uv": [9.25, 5.5, 8.75, 6.5], "texture": "#0"} + } + }, + { + "from": [4, 0, 7.20072], + "to": [8, 1, 8.79928], + "rotation": {"angle": -22.5, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [9.5, 9.25, 10.5, 9.5], "texture": "#0"}, + "east": {"uv": [10.5, 4.25, 11, 4.5], "texture": "#0"}, + "south": {"uv": [9.5, 9.5, 10.5, 9.75], "texture": "#0"}, + "west": {"uv": [10.5, 4.5, 11, 4.75], "texture": "#0"}, + "up": {"uv": [9.75, 3, 8.75, 2.5], "texture": "#0"}, + "down": {"uv": [9.75, 3, 8.75, 3.5], "texture": "#0"} + } + }, + { + "from": [7.20072, 0, 4], + "to": [8.79928, 1, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [10.5, 4, 11, 4.25], "texture": "#0"}, + "east": {"uv": [9.5, 8.75, 10.5, 9], "texture": "#0"}, + "south": {"uv": [4.25, 10.5, 4.75, 10.75], "texture": "#0"}, + "west": {"uv": [9.5, 9, 10.5, 9.25], "texture": "#0"}, + "up": {"uv": [9.25, 1.5, 8.75, 0.5], "texture": "#0"}, + "down": {"uv": [9.25, 1.5, 8.75, 2.5], "texture": "#0"} + } + }, + { + "from": [7.8, 0.13463, 6.15224], + "to": [8.2, 2.33463, 7.35224], + "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 1.7, 8]}, + "faces": { + "north": {"uv": [2.25, 11, 2.5, 11.5], "texture": "#0"}, + "east": {"uv": [2.5, 11, 2.75, 11.5], "texture": "#0"}, + "south": {"uv": [2.75, 11, 3, 11.5], "texture": "#0"}, + "west": {"uv": [3, 11, 3.25, 11.5], "texture": "#0"}, + "up": {"uv": [12, 7.5, 11.75, 7.25], "texture": "#0"}, + "down": {"uv": [7.75, 11.75, 7.5, 12], "texture": "#0"} + } + }, + { + "from": [7.8, 2.4, 6.4], + "to": [8.2, 7.4, 7.4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 1.7, 8]}, + "faces": { + "north": {"uv": [9.25, 5.5, 9.5, 6.75], "texture": "#0"}, + "east": {"uv": [9.25, 6.75, 9.5, 8], "texture": "#0"}, + "south": {"uv": [0, 9.5, 0.25, 10.75], "texture": "#0"}, + "west": {"uv": [0.25, 9.5, 0.5, 10.75], "texture": "#0"}, + "up": {"uv": [12, 7.25, 11.75, 7], "texture": "#0"}, + "down": {"uv": [7.5, 11.75, 7.25, 12], "texture": "#0"} + } + }, + { + "from": [7.8, 6.33463, 4.35224], + "to": [8.2, 8.33463, 5.35224], + "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 1.7, 8]}, + "faces": { + "north": {"uv": [1.5, 11, 1.75, 11.5], "texture": "#0"}, + "east": {"uv": [1.75, 11, 2, 11.5], "texture": "#0"}, + "south": {"uv": [2, 11, 2.25, 11.5], "texture": "#0"}, + "west": {"uv": [11, 2, 11.25, 2.5], "texture": "#0"}, + "up": {"uv": [12, 7, 11.75, 6.75], "texture": "#0"}, + "down": {"uv": [7.25, 11.75, 7, 12], "texture": "#0"} + } + }, + { + "from": [7.8, 0.13463, 8.64776], + "to": [8.2, 2.33463, 9.84776], + "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 1.7, 8]}, + "faces": { + "north": {"uv": [4, 11, 4.25, 11.5], "texture": "#0"}, + "east": {"uv": [4.25, 11, 4.5, 11.5], "texture": "#0"}, + "south": {"uv": [11, 4.25, 11.25, 4.75], "texture": "#0"}, + "west": {"uv": [4.5, 11, 4.75, 11.5], "texture": "#0"}, + "up": {"uv": [12, 8.25, 11.75, 8], "texture": "#0"}, + "down": {"uv": [8.5, 11.75, 8.25, 12], "texture": "#0"} + } + }, + { + "from": [7.8, 2.4, 8.6], + "to": [8.2, 7.4, 9.6], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 1.7, 8]}, + "faces": { + "north": {"uv": [0.5, 9.5, 0.75, 10.75], "texture": "#0"}, + "east": {"uv": [0.75, 9.5, 1, 10.75], "texture": "#0"}, + "south": {"uv": [1, 9.5, 1.25, 10.75], "texture": "#0"}, + "west": {"uv": [1.25, 9.5, 1.5, 10.75], "texture": "#0"}, + "up": {"uv": [12, 8, 11.75, 7.75], "texture": "#0"}, + "down": {"uv": [8.25, 11.75, 8, 12], "texture": "#0"} + } + }, + { + "from": [7.8, 6.33463, 10.64776], + "to": [8.2, 8.33463, 11.64776], + "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 1.7, 8]}, + "faces": { + "north": {"uv": [3.25, 11, 3.5, 11.5], "texture": "#0"}, + "east": {"uv": [3.5, 11, 3.75, 11.5], "texture": "#0"}, + "south": {"uv": [3.75, 11, 4, 11.5], "texture": "#0"}, + "west": {"uv": [11, 3.75, 11.25, 4.25], "texture": "#0"}, + "up": {"uv": [12, 7.75, 11.75, 7.5], "texture": "#0"}, + "down": {"uv": [8, 11.75, 7.75, 12], "texture": "#0"} + } + }, + { + "from": [8.73087, 0.14755, 7.8], + "to": [9.93087, 2.34755, 8.2], + "rotation": {"angle": 22.5, "axis": "z", "origin": [8, 1.54755, 8]}, + "faces": { + "north": {"uv": [11, 5.5, 11.25, 6], "texture": "#0"}, + "east": {"uv": [5.75, 11, 6, 11.5], "texture": "#0"}, + "south": {"uv": [6, 11, 6.25, 11.5], "texture": "#0"}, + "west": {"uv": [11, 6, 11.25, 6.5], "texture": "#0"}, + "up": {"uv": [12, 9, 11.75, 8.75], "texture": "#0"}, + "down": {"uv": [9.25, 11.75, 9, 12], "texture": "#0"} + } + }, + { + "from": [8.6, 2.4, 7.8], + "to": [9.6, 7.4, 8.2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 4.7, 8]}, + "faces": { + "north": {"uv": [1.5, 9.5, 1.75, 10.75], "texture": "#0"}, + "east": {"uv": [1.75, 9.5, 2, 10.75], "texture": "#0"}, + "south": {"uv": [2, 9.5, 2.25, 10.75], "texture": "#0"}, + "west": {"uv": [2.25, 9.5, 2.5, 10.75], "texture": "#0"}, + "up": {"uv": [12, 8.75, 11.75, 8.5], "texture": "#0"}, + "down": {"uv": [9, 11.75, 8.75, 12], "texture": "#0"} + } + }, + { + "from": [8.27, 6.81032, 7.8], + "to": [9.27, 8.81032, 8.2], + "rotation": {"angle": 22.5, "axis": "z", "origin": [8, 7.91032, 8]}, + "faces": { + "north": {"uv": [4.75, 11, 5, 11.5], "texture": "#0"}, + "east": {"uv": [5, 11, 5.25, 11.5], "texture": "#0"}, + "south": {"uv": [5.25, 11, 5.5, 11.5], "texture": "#0"}, + "west": {"uv": [5.5, 11, 5.75, 11.5], "texture": "#0"}, + "up": {"uv": [12, 8.5, 11.75, 8.25], "texture": "#0"}, + "down": {"uv": [8.75, 11.75, 8.5, 12], "texture": "#0"} + } + }, + { + "from": [6.06913, 0.14755, 7.8], + "to": [7.26913, 2.34755, 8.2], + "rotation": {"angle": -22.5, "axis": "z", "origin": [8, 1.54755, 8]}, + "faces": { + "north": {"uv": [7, 11, 7.25, 11.5], "texture": "#0"}, + "east": {"uv": [11, 7, 11.25, 7.5], "texture": "#0"}, + "south": {"uv": [11, 7.5, 11.25, 8], "texture": "#0"}, + "west": {"uv": [7.75, 11, 8, 11.5], "texture": "#0"}, + "up": {"uv": [12, 9.75, 11.75, 9.5], "texture": "#0"}, + "down": {"uv": [10, 11.75, 9.75, 12], "texture": "#0"} + } + }, + { + "from": [6.4, 2.4, 7.8], + "to": [7.4, 7.4, 8.2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 4.7, 8]}, + "faces": { + "north": {"uv": [2.5, 9.5, 2.75, 10.75], "texture": "#0"}, + "east": {"uv": [2.75, 9.5, 3, 10.75], "texture": "#0"}, + "south": {"uv": [3, 9.5, 3.25, 10.75], "texture": "#0"}, + "west": {"uv": [3.25, 9.5, 3.5, 10.75], "texture": "#0"}, + "up": {"uv": [12, 9.5, 11.75, 9.25], "texture": "#0"}, + "down": {"uv": [9.75, 11.75, 9.5, 12], "texture": "#0"} + } + }, + { + "from": [6.73, 6.81032, 7.8], + "to": [7.73, 8.81032, 8.2], + "rotation": {"angle": -22.5, "axis": "z", "origin": [8, 7.91032, 8]}, + "faces": { + "north": {"uv": [6.25, 11, 6.5, 11.5], "texture": "#0"}, + "east": {"uv": [6.5, 11, 6.75, 11.5], "texture": "#0"}, + "south": {"uv": [11, 6.5, 11.25, 7], "texture": "#0"}, + "west": {"uv": [6.75, 11, 7, 11.5], "texture": "#0"}, + "up": {"uv": [12, 9.25, 11.75, 9], "texture": "#0"}, + "down": {"uv": [9.5, 11.75, 9.25, 12], "texture": "#0"} + } + }, + { + "from": [7.70027, 11, 9.425], + "to": [8.29973, 19, 9.5], + "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [6, 2.25, 6.25, 4.25], "texture": "#0"}, + "east": {"uv": [6, 4.25, 6.25, 6.25], "texture": "#0"}, + "south": {"uv": [6.25, 0, 6.5, 2], "texture": "#0"}, + "west": {"uv": [6.25, 2, 6.5, 4], "texture": "#0"}, + "up": {"uv": [11.5, 9, 11.25, 8.75], "texture": "#0"}, + "down": {"uv": [9.25, 11.25, 9, 11.5], "texture": "#0"} + } + }, + { + "from": [7.70027, 11, 9.425], + "to": [8.29973, 19, 9.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [6.25, 4, 6.5, 6], "texture": "#0"}, + "east": {"uv": [5.25, 6.25, 5.5, 8.25], "texture": "#0"}, + "south": {"uv": [5.5, 6.25, 5.75, 8.25], "texture": "#0"}, + "west": {"uv": [5.75, 6.25, 6, 8.25], "texture": "#0"}, + "up": {"uv": [11.5, 9.25, 11.25, 9], "texture": "#0"}, + "down": {"uv": [9.5, 11.25, 9.25, 11.5], "texture": "#0"} + } + }, + { + "from": [7.70027, 11, 9.425], + "to": [8.29973, 19, 9.5], + "rotation": {"angle": -22.5, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [6, 6.25, 6.25, 8.25], "texture": "#0"}, + "east": {"uv": [6.25, 6, 6.5, 8], "texture": "#0"}, + "south": {"uv": [6.5, 0, 6.75, 2], "texture": "#0"}, + "west": {"uv": [6.5, 2, 6.75, 4], "texture": "#0"}, + "up": {"uv": [11.5, 9.5, 11.25, 9.25], "texture": "#0"}, + "down": {"uv": [9.75, 11.25, 9.5, 11.5], "texture": "#0"} + } + }, + { + "from": [6.5, 11, 7.70027], + "to": [6.575, 19, 8.29973], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [6.5, 4, 6.75, 6], "texture": "#0"}, + "east": {"uv": [6.5, 6, 6.75, 8], "texture": "#0"}, + "south": {"uv": [6.75, 0, 7, 2], "texture": "#0"}, + "west": {"uv": [6.75, 2, 7, 4], "texture": "#0"}, + "up": {"uv": [11.5, 9.75, 11.25, 9.5], "texture": "#0"}, + "down": {"uv": [10.25, 11.25, 10, 11.5], "texture": "#0"} + } + }, + { + "from": [6.5, 11, 7.70027], + "to": [6.575, 19, 8.29973], + "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [6.75, 4, 7, 6], "texture": "#0"}, + "east": {"uv": [6.75, 6, 7, 8], "texture": "#0"}, + "south": {"uv": [7, 0, 7.25, 2], "texture": "#0"}, + "west": {"uv": [7, 2, 7.25, 4], "texture": "#0"}, + "up": {"uv": [11.5, 10.25, 11.25, 10], "texture": "#0"}, + "down": {"uv": [10.5, 11.25, 10.25, 11.5], "texture": "#0"} + } + }, + { + "from": [6.5, 11, 7.70027], + "to": [6.575, 19, 8.29973], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [7, 4, 7.25, 6], "texture": "#0"}, + "east": {"uv": [7, 6, 7.25, 8], "texture": "#0"}, + "south": {"uv": [7.25, 0, 7.5, 2], "texture": "#0"}, + "west": {"uv": [7.25, 2, 7.5, 4], "texture": "#0"}, + "up": {"uv": [11.5, 10.5, 11.25, 10.25], "texture": "#0"}, + "down": {"uv": [11.5, 10.5, 11.25, 10.75], "texture": "#0"} + } + }, + { + "from": [6.5, 11, 7.70027], + "to": [6.575, 19, 8.29973], + "rotation": {"angle": -22.5, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [7.25, 4, 7.5, 6], "texture": "#0"}, + "east": {"uv": [7.25, 6, 7.5, 8], "texture": "#0"}, + "south": {"uv": [0, 7.5, 0.25, 9.5], "texture": "#0"}, + "west": {"uv": [7.5, 0, 7.75, 2], "texture": "#0"}, + "up": {"uv": [11, 11.5, 10.75, 11.25], "texture": "#0"}, + "down": {"uv": [11.25, 11.25, 11, 11.5], "texture": "#0"} + } + }, + { + "from": [7.70027, 11, 9.425], + "to": [8.29973, 19, 9.5], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [0.25, 7.5, 0.5, 9.5], "texture": "#0"}, + "east": {"uv": [0.5, 7.5, 0.75, 9.5], "texture": "#0"}, + "south": {"uv": [0.75, 7.5, 1, 9.5], "texture": "#0"}, + "west": {"uv": [1, 7.5, 1.25, 9.5], "texture": "#0"}, + "up": {"uv": [11.5, 11.5, 11.25, 11.25], "texture": "#0"}, + "down": {"uv": [0.5, 11.5, 0.25, 11.75], "texture": "#0"} + } + }, + { + "from": [7.70027, 11, 6.5], + "to": [8.29973, 19, 6.575], + "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [1.25, 7.5, 1.5, 9.5], "texture": "#0"}, + "east": {"uv": [1.5, 7.5, 1.75, 9.5], "texture": "#0"}, + "south": {"uv": [1.75, 7.5, 2, 9.5], "texture": "#0"}, + "west": {"uv": [2, 7.5, 2.25, 9.5], "texture": "#0"}, + "up": {"uv": [0.75, 11.75, 0.5, 11.5], "texture": "#0"}, + "down": {"uv": [11.75, 0.5, 11.5, 0.75], "texture": "#0"} + } + }, + { + "from": [7.70027, 11, 6.5], + "to": [8.29973, 19, 6.575], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [7.5, 2, 7.75, 4], "texture": "#0"}, + "east": {"uv": [2.25, 7.5, 2.5, 9.5], "texture": "#0"}, + "south": {"uv": [2.5, 7.5, 2.75, 9.5], "texture": "#0"}, + "west": {"uv": [2.75, 7.5, 3, 9.5], "texture": "#0"}, + "up": {"uv": [1, 11.75, 0.75, 11.5], "texture": "#0"}, + "down": {"uv": [11.75, 0.75, 11.5, 1], "texture": "#0"} + } + }, + { + "from": [7.70027, 11, 6.5], + "to": [8.29973, 19, 6.575], + "rotation": {"angle": -22.5, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [3, 7.5, 3.25, 9.5], "texture": "#0"}, + "east": {"uv": [3.25, 7.5, 3.5, 9.5], "texture": "#0"}, + "south": {"uv": [3.5, 7.5, 3.75, 9.5], "texture": "#0"}, + "west": {"uv": [3.75, 7.5, 4, 9.5], "texture": "#0"}, + "up": {"uv": [1.25, 11.75, 1, 11.5], "texture": "#0"}, + "down": {"uv": [11.75, 1, 11.5, 1.25], "texture": "#0"} + } + }, + { + "from": [9.425, 11, 7.70027], + "to": [9.5, 19, 8.29973], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [4, 7.5, 4.25, 9.5], "texture": "#0"}, + "east": {"uv": [7.5, 4, 7.75, 6], "texture": "#0"}, + "south": {"uv": [4.25, 7.5, 4.5, 9.5], "texture": "#0"}, + "west": {"uv": [4.5, 7.5, 4.75, 9.5], "texture": "#0"}, + "up": {"uv": [1.5, 11.75, 1.25, 11.5], "texture": "#0"}, + "down": {"uv": [11.75, 1.25, 11.5, 1.5], "texture": "#0"} + } + }, + { + "from": [9.425, 11, 7.70027], + "to": [9.5, 19, 8.29973], + "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [4.75, 7.5, 5, 9.5], "texture": "#0"}, + "east": {"uv": [5, 7.5, 5.25, 9.5], "texture": "#0"}, + "south": {"uv": [7.5, 6, 7.75, 8], "texture": "#0"}, + "west": {"uv": [7.75, 0, 8, 2], "texture": "#0"}, + "up": {"uv": [1.75, 11.75, 1.5, 11.5], "texture": "#0"}, + "down": {"uv": [11.75, 1.5, 11.5, 1.75], "texture": "#0"} + } + }, + { + "from": [9.425, 11, 7.70027], + "to": [9.5, 19, 8.29973], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [7.75, 2, 8, 4], "texture": "#0"}, + "east": {"uv": [7.75, 4, 8, 6], "texture": "#0"}, + "south": {"uv": [7.75, 6, 8, 8], "texture": "#0"}, + "west": {"uv": [8, 0, 8.25, 2], "texture": "#0"}, + "up": {"uv": [2, 11.75, 1.75, 11.5], "texture": "#0"}, + "down": {"uv": [11.75, 1.75, 11.5, 2], "texture": "#0"} + } + }, + { + "from": [9.425, 11, 7.70027], + "to": [9.5, 19, 8.29973], + "rotation": {"angle": -22.5, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [8, 2, 8.25, 4], "texture": "#0"}, + "east": {"uv": [8, 4, 8.25, 6], "texture": "#0"}, + "south": {"uv": [8, 6, 8.25, 8], "texture": "#0"}, + "west": {"uv": [6.25, 8, 6.5, 10], "texture": "#0"}, + "up": {"uv": [2.25, 11.75, 2, 11.5], "texture": "#0"}, + "down": {"uv": [11.75, 2, 11.5, 2.25], "texture": "#0"} + } + }, + { + "from": [7.70027, 11, 6.5], + "to": [8.29973, 19, 6.575], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [6.5, 8, 6.75, 10], "texture": "#0"}, + "east": {"uv": [6.75, 8, 7, 10], "texture": "#0"}, + "south": {"uv": [7, 8, 7.25, 10], "texture": "#0"}, + "west": {"uv": [7.25, 8, 7.5, 10], "texture": "#0"}, + "up": {"uv": [2.5, 11.75, 2.25, 11.5], "texture": "#0"}, + "down": {"uv": [11.75, 2.25, 11.5, 2.5], "texture": "#0"} + } + }, + { + "from": [7.70027, 11, 8.75], + "to": [8.29973, 11.05, 9.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [2.5, 11.5, 2.75, 11.75], "texture": "#0"}, + "east": {"uv": [11.5, 2.5, 11.75, 2.75], "texture": "#0"}, + "south": {"uv": [2.75, 11.5, 3, 11.75], "texture": "#0"}, + "west": {"uv": [11.5, 2.75, 11.75, 3], "texture": "#0"}, + "up": {"uv": [3.25, 11.75, 3, 11.5], "texture": "#0"}, + "down": {"uv": [11.75, 3, 11.5, 3.25], "texture": "#0"} + } + }, + { + "from": [7.70027, 11, 8.75], + "to": [8.29973, 11.05, 9.5], + "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [3.25, 11.5, 3.5, 11.75], "texture": "#0"}, + "east": {"uv": [11.5, 3.25, 11.75, 3.5], "texture": "#0"}, + "south": {"uv": [3.5, 11.5, 3.75, 11.75], "texture": "#0"}, + "west": {"uv": [11.5, 3.5, 11.75, 3.75], "texture": "#0"}, + "up": {"uv": [4, 11.75, 3.75, 11.5], "texture": "#0"}, + "down": {"uv": [11.75, 3.75, 11.5, 4], "texture": "#0"} + } + }, + { + "from": [7.70027, 11, 8.75], + "to": [8.29973, 11.05, 9.5], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [4, 11.5, 4.25, 11.75], "texture": "#0"}, + "east": {"uv": [11.5, 4, 11.75, 4.25], "texture": "#0"}, + "south": {"uv": [4.25, 11.5, 4.5, 11.75], "texture": "#0"}, + "west": {"uv": [11.5, 4.25, 11.75, 4.5], "texture": "#0"}, + "up": {"uv": [4.75, 11.75, 4.5, 11.5], "texture": "#0"}, + "down": {"uv": [11.75, 4.5, 11.5, 4.75], "texture": "#0"} + } + }, + { + "from": [8.75, 11, 7.70027], + "to": [9.5, 11.05, 8.29973], + "rotation": {"angle": -22.5, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [4.75, 11.5, 5, 11.75], "texture": "#0"}, + "east": {"uv": [11.5, 4.75, 11.75, 5], "texture": "#0"}, + "south": {"uv": [5, 11.5, 5.25, 11.75], "texture": "#0"}, + "west": {"uv": [11.5, 5, 11.75, 5.25], "texture": "#0"}, + "up": {"uv": [5.5, 11.75, 5.25, 11.5], "texture": "#0"}, + "down": {"uv": [11.75, 5.25, 11.5, 5.5], "texture": "#0"} + } + }, + { + "from": [8.75, 11, 7.70027], + "to": [9.5, 11.05, 8.29973], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [5.5, 11.5, 5.75, 11.75], "texture": "#0"}, + "east": {"uv": [11.5, 5.5, 11.75, 5.75], "texture": "#0"}, + "south": {"uv": [5.75, 11.5, 6, 11.75], "texture": "#0"}, + "west": {"uv": [11.5, 5.75, 11.75, 6], "texture": "#0"}, + "up": {"uv": [6.25, 11.75, 6, 11.5], "texture": "#0"}, + "down": {"uv": [11.75, 6, 11.5, 6.25], "texture": "#0"} + } + }, + { + "from": [8.75, 11, 7.70027], + "to": [9.5, 11.05, 8.29973], + "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [6.25, 11.5, 6.5, 11.75], "texture": "#0"}, + "east": {"uv": [11.5, 6.25, 11.75, 6.5], "texture": "#0"}, + "south": {"uv": [6.5, 11.5, 6.75, 11.75], "texture": "#0"}, + "west": {"uv": [11.5, 6.5, 11.75, 6.75], "texture": "#0"}, + "up": {"uv": [7, 11.75, 6.75, 11.5], "texture": "#0"}, + "down": {"uv": [11.75, 6.75, 11.5, 7], "texture": "#0"} + } + }, + { + "from": [8.75, 11, 7.70027], + "to": [9.5, 11.05, 8.29973], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [7, 11.5, 7.25, 11.75], "texture": "#0"}, + "east": {"uv": [11.5, 7, 11.75, 7.25], "texture": "#0"}, + "south": {"uv": [7.25, 11.5, 7.5, 11.75], "texture": "#0"}, + "west": {"uv": [11.5, 7.25, 11.75, 7.5], "texture": "#0"}, + "up": {"uv": [7.75, 11.75, 7.5, 11.5], "texture": "#0"}, + "down": {"uv": [11.75, 7.5, 11.5, 7.75], "texture": "#0"} + } + }, + { + "from": [7.70027, 11, 6.5], + "to": [8.29973, 11.05, 7.25], + "rotation": {"angle": -22.5, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [7.75, 11.5, 8, 11.75], "texture": "#0"}, + "east": {"uv": [11.5, 7.75, 11.75, 8], "texture": "#0"}, + "south": {"uv": [8, 11.5, 8.25, 11.75], "texture": "#0"}, + "west": {"uv": [11.5, 8, 11.75, 8.25], "texture": "#0"}, + "up": {"uv": [8.5, 11.75, 8.25, 11.5], "texture": "#0"}, + "down": {"uv": [11.75, 8.25, 11.5, 8.5], "texture": "#0"} + } + }, + { + "from": [7.70027, 11, 6.5], + "to": [8.29973, 11.05, 7.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [8.5, 11.5, 8.75, 11.75], "texture": "#0"}, + "east": {"uv": [11.5, 8.5, 11.75, 8.75], "texture": "#0"}, + "south": {"uv": [8.75, 11.5, 9, 11.75], "texture": "#0"}, + "west": {"uv": [11.5, 8.75, 11.75, 9], "texture": "#0"}, + "up": {"uv": [9.25, 11.75, 9, 11.5], "texture": "#0"}, + "down": {"uv": [11.75, 9, 11.5, 9.25], "texture": "#0"} + } + }, + { + "from": [7.70027, 11, 6.5], + "to": [8.29973, 11.05, 7.25], + "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [9.25, 11.5, 9.5, 11.75], "texture": "#0"}, + "east": {"uv": [11.5, 9.25, 11.75, 9.5], "texture": "#0"}, + "south": {"uv": [9.5, 11.5, 9.75, 11.75], "texture": "#0"}, + "west": {"uv": [11.5, 9.5, 11.75, 9.75], "texture": "#0"}, + "up": {"uv": [10, 11.75, 9.75, 11.5], "texture": "#0"}, + "down": {"uv": [11.75, 9.75, 11.5, 10], "texture": "#0"} + } + }, + { + "from": [7.70027, 11, 6.5], + "to": [8.29973, 11.05, 7.25], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [10, 11.5, 10.25, 11.75], "texture": "#0"}, + "east": {"uv": [11.5, 10, 11.75, 10.25], "texture": "#0"}, + "south": {"uv": [10.25, 11.5, 10.5, 11.75], "texture": "#0"}, + "west": {"uv": [11.5, 10.25, 11.75, 10.5], "texture": "#0"}, + "up": {"uv": [10.75, 11.75, 10.5, 11.5], "texture": "#0"}, + "down": {"uv": [11.75, 10.5, 11.5, 10.75], "texture": "#0"} + } + }, + { + "from": [6.5, 11, 7.70027], + "to": [7.25, 11.05, 8.29973], + "rotation": {"angle": -22.5, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [10.75, 11.5, 11, 11.75], "texture": "#0"}, + "east": {"uv": [11.5, 10.75, 11.75, 11], "texture": "#0"}, + "south": {"uv": [11, 11.5, 11.25, 11.75], "texture": "#0"}, + "west": {"uv": [11.5, 11, 11.75, 11.25], "texture": "#0"}, + "up": {"uv": [11.5, 11.75, 11.25, 11.5], "texture": "#0"}, + "down": {"uv": [11.75, 11.25, 11.5, 11.5], "texture": "#0"} + } + }, + { + "from": [6.5, 11, 7.70027], + "to": [7.25, 11.05, 8.29973], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [11.5, 11.5, 11.75, 11.75], "texture": "#0"}, + "east": {"uv": [0, 11.75, 0.25, 12], "texture": "#0"}, + "south": {"uv": [11.75, 0, 12, 0.25], "texture": "#0"}, + "west": {"uv": [0.25, 11.75, 0.5, 12], "texture": "#0"}, + "up": {"uv": [12, 0.5, 11.75, 0.25], "texture": "#0"}, + "down": {"uv": [0.75, 11.75, 0.5, 12], "texture": "#0"} + } + }, + { + "from": [6.5, 11, 7.70027], + "to": [7.25, 11.05, 8.29973], + "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [11.75, 0.5, 12, 0.75], "texture": "#0"}, + "east": {"uv": [0.75, 11.75, 1, 12], "texture": "#0"}, + "south": {"uv": [11.75, 0.75, 12, 1], "texture": "#0"}, + "west": {"uv": [1, 11.75, 1.25, 12], "texture": "#0"}, + "up": {"uv": [12, 1.25, 11.75, 1], "texture": "#0"}, + "down": {"uv": [1.5, 11.75, 1.25, 12], "texture": "#0"} + } + }, + { + "from": [6.5, 11, 7.70027], + "to": [7.25, 11.05, 8.29973], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [11.75, 1.25, 12, 1.5], "texture": "#0"}, + "east": {"uv": [1.5, 11.75, 1.75, 12], "texture": "#0"}, + "south": {"uv": [11.75, 1.5, 12, 1.75], "texture": "#0"}, + "west": {"uv": [1.75, 11.75, 2, 12], "texture": "#0"}, + "up": {"uv": [12, 2, 11.75, 1.75], "texture": "#0"}, + "down": {"uv": [2.25, 11.75, 2, 12], "texture": "#0"} + } + }, + { + "from": [7.70027, 11, 8.75], + "to": [8.29973, 11.05, 9.5], + "rotation": {"angle": -22.5, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [11.75, 2, 12, 2.25], "texture": "#0"}, + "east": {"uv": [2.25, 11.75, 2.5, 12], "texture": "#0"}, + "south": {"uv": [11.75, 2.25, 12, 2.5], "texture": "#0"}, + "west": {"uv": [2.5, 11.75, 2.75, 12], "texture": "#0"}, + "up": {"uv": [12, 2.75, 11.75, 2.5], "texture": "#0"}, + "down": {"uv": [3, 11.75, 2.75, 12], "texture": "#0"} + } + }, + { + "from": [6.5, 18.9, 7.70027], + "to": [8, 19, 8.29973], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [10.5, 7, 11, 7.25], "texture": "#0"}, + "east": {"uv": [11.75, 2.75, 12, 3], "texture": "#0"}, + "south": {"uv": [7.25, 10.5, 7.75, 10.75], "texture": "#0"}, + "west": {"uv": [3, 11.75, 3.25, 12], "texture": "#0"}, + "up": {"uv": [11, 7.5, 10.5, 7.25], "texture": "#0"}, + "down": {"uv": [11, 7.5, 10.5, 7.75], "texture": "#0"} + } + }, + { + "from": [6.5, 18.9, 7.70027], + "to": [8, 19, 8.29973], + "rotation": {"angle": -22.5, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [0.25, 11, 0.75, 11.25], "texture": "#0"}, + "east": {"uv": [11.75, 6.5, 12, 6.75], "texture": "#0"}, + "south": {"uv": [11, 0.5, 11.5, 0.75], "texture": "#0"}, + "west": {"uv": [6.75, 11.75, 7, 12], "texture": "#0"}, + "up": {"uv": [11.5, 1, 11, 0.75], "texture": "#0"}, + "down": {"uv": [11.5, 1.25, 11, 1.5], "texture": "#0"} + } + }, + { + "from": [7.70027, 18.9, 6.5], + "to": [8.29973, 19, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [11.75, 6.25, 12, 6.5], "texture": "#0"}, + "east": {"uv": [10.75, 9.5, 11.25, 9.75], "texture": "#0"}, + "south": {"uv": [6.5, 11.75, 6.75, 12], "texture": "#0"}, + "west": {"uv": [10.75, 10.5, 11.25, 10.75], "texture": "#0"}, + "up": {"uv": [10.5, 11.25, 10.25, 10.75], "texture": "#0"}, + "down": {"uv": [11, 10.75, 10.75, 11.25], "texture": "#0"} + } + }, + { + "from": [7.70027, 18.9, 6.5], + "to": [8.29973, 19, 8], + "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [11.75, 6, 12, 6.25], "texture": "#0"}, + "east": {"uv": [9.25, 10.75, 9.75, 11], "texture": "#0"}, + "south": {"uv": [6.25, 11.75, 6.5, 12], "texture": "#0"}, + "west": {"uv": [10.75, 9.25, 11.25, 9.5], "texture": "#0"}, + "up": {"uv": [10.25, 11.25, 10, 10.75], "texture": "#0"}, + "down": {"uv": [11, 10, 10.75, 10.5], "texture": "#0"} + } + }, + { + "from": [7.70027, 18.9, 6.5], + "to": [8.29973, 19, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [11.75, 5.75, 12, 6], "texture": "#0"}, + "east": {"uv": [7.75, 10.75, 8.25, 11], "texture": "#0"}, + "south": {"uv": [6, 11.75, 6.25, 12], "texture": "#0"}, + "west": {"uv": [8.25, 10.75, 8.75, 11], "texture": "#0"}, + "up": {"uv": [9, 11.25, 8.75, 10.75], "texture": "#0"}, + "down": {"uv": [9.25, 10.75, 9, 11.25], "texture": "#0"} + } + }, + { + "from": [7.70027, 18.9, 6.5], + "to": [8.29973, 19, 8], + "rotation": {"angle": -22.5, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [11.75, 5.5, 12, 5.75], "texture": "#0"}, + "east": {"uv": [6.25, 10.75, 6.75, 11], "texture": "#0"}, + "south": {"uv": [5.75, 11.75, 6, 12], "texture": "#0"}, + "west": {"uv": [6.75, 10.75, 7.25, 11], "texture": "#0"}, + "up": {"uv": [7.5, 11.25, 7.25, 10.75], "texture": "#0"}, + "down": {"uv": [7.75, 10.75, 7.5, 11.25], "texture": "#0"} + } + }, + { + "from": [8, 18.9, 7.70027], + "to": [9.5, 19, 8.29973], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [10.75, 5, 11.25, 5.25], "texture": "#0"}, + "east": {"uv": [11.75, 5.25, 12, 5.5], "texture": "#0"}, + "south": {"uv": [5.25, 10.75, 5.75, 11], "texture": "#0"}, + "west": {"uv": [5.5, 11.75, 5.75, 12], "texture": "#0"}, + "up": {"uv": [11.25, 5.5, 10.75, 5.25], "texture": "#0"}, + "down": {"uv": [6.25, 10.75, 5.75, 11], "texture": "#0"} + } + }, + { + "from": [8, 18.9, 7.70027], + "to": [9.5, 19, 8.29973], + "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [10.75, 3.25, 11.25, 3.5], "texture": "#0"}, + "east": {"uv": [11.75, 5, 12, 5.25], "texture": "#0"}, + "south": {"uv": [10.75, 3.5, 11.25, 3.75], "texture": "#0"}, + "west": {"uv": [5.25, 11.75, 5.5, 12], "texture": "#0"}, + "up": {"uv": [4.75, 11, 4.25, 10.75], "texture": "#0"}, + "down": {"uv": [5.25, 10.75, 4.75, 11], "texture": "#0"} + } + }, + { + "from": [8, 18.9, 7.70027], + "to": [9.5, 19, 8.29973], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [10.75, 2.5, 11.25, 2.75], "texture": "#0"}, + "east": {"uv": [11.75, 4.75, 12, 5], "texture": "#0"}, + "south": {"uv": [10.75, 2.75, 11.25, 3], "texture": "#0"}, + "west": {"uv": [5, 11.75, 5.25, 12], "texture": "#0"}, + "up": {"uv": [3.5, 11, 3, 10.75], "texture": "#0"}, + "down": {"uv": [11.25, 3, 10.75, 3.25], "texture": "#0"} + } + }, + { + "from": [8, 18.9, 7.70027], + "to": [9.5, 19, 8.29973], + "rotation": {"angle": -22.5, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [1.5, 10.75, 2, 11], "texture": "#0"}, + "east": {"uv": [11.75, 4.5, 12, 4.75], "texture": "#0"}, + "south": {"uv": [10.75, 1.75, 11.25, 2], "texture": "#0"}, + "west": {"uv": [4.75, 11.75, 5, 12], "texture": "#0"}, + "up": {"uv": [2.5, 11, 2, 10.75], "texture": "#0"}, + "down": {"uv": [3, 10.75, 2.5, 11], "texture": "#0"} + } + }, + { + "from": [7.70027, 18.9, 8], + "to": [8.29973, 19, 9.5], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [11.75, 4.25, 12, 4.5], "texture": "#0"}, + "east": {"uv": [10.75, 0.25, 11.25, 0.5], "texture": "#0"}, + "south": {"uv": [4.5, 11.75, 4.75, 12], "texture": "#0"}, + "west": {"uv": [10.75, 1, 11.25, 1.25], "texture": "#0"}, + "up": {"uv": [1.5, 11.25, 1.25, 10.75], "texture": "#0"}, + "down": {"uv": [11, 1.25, 10.75, 1.75], "texture": "#0"} + } + }, + { + "from": [7.70027, 18.9, 8], + "to": [8.29973, 19, 9.5], + "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [11.75, 4, 12, 4.25], "texture": "#0"}, + "east": {"uv": [10.75, 0, 11.25, 0.25], "texture": "#0"}, + "south": {"uv": [4.25, 11.75, 4.5, 12], "texture": "#0"}, + "west": {"uv": [0.25, 10.75, 0.75, 11], "texture": "#0"}, + "up": {"uv": [1, 11.25, 0.75, 10.75], "texture": "#0"}, + "down": {"uv": [1.25, 10.75, 1, 11.25], "texture": "#0"} + } + }, + { + "from": [7.70027, 18.9, 8], + "to": [8.29973, 19, 9.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [11.75, 3.75, 12, 4], "texture": "#0"}, + "east": {"uv": [10.5, 9.75, 11, 10], "texture": "#0"}, + "south": {"uv": [4, 11.75, 4.25, 12], "texture": "#0"}, + "west": {"uv": [10, 10.5, 10.5, 10.75], "texture": "#0"}, + "up": {"uv": [10.75, 11, 10.5, 10.5], "texture": "#0"}, + "down": {"uv": [0.25, 10.75, 0, 11.25], "texture": "#0"} + } + }, + { + "from": [7.70027, 18.9, 8], + "to": [8.29973, 19, 9.5], + "rotation": {"angle": -22.5, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [11.75, 3.5, 12, 3.75], "texture": "#0"}, + "east": {"uv": [10.5, 9, 11, 9.25], "texture": "#0"}, + "south": {"uv": [3.75, 11.75, 4, 12], "texture": "#0"}, + "west": {"uv": [9.25, 10.5, 9.75, 10.75], "texture": "#0"}, + "up": {"uv": [10.75, 9.75, 10.5, 9.25], "texture": "#0"}, + "down": {"uv": [10, 10.5, 9.75, 11], "texture": "#0"} + } + }, + { + "from": [6.5, 18.9, 7.70027], + "to": [8, 19, 8.29973], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [10.5, 8.25, 11, 8.5], "texture": "#0"}, + "east": {"uv": [11.75, 3.25, 12, 3.5], "texture": "#0"}, + "south": {"uv": [10.5, 8.5, 11, 8.75], "texture": "#0"}, + "west": {"uv": [3.5, 11.75, 3.75, 12], "texture": "#0"}, + "up": {"uv": [9.25, 10.75, 8.75, 10.5], "texture": "#0"}, + "down": {"uv": [11, 8.75, 10.5, 9], "texture": "#0"} + } + }, + { + "from": [6.5, 18.9, 7.70027], + "to": [8, 19, 8.29973], + "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 11, 8]}, + "faces": { + "north": {"uv": [7.75, 10.5, 8.25, 10.75], "texture": "#0"}, + "east": {"uv": [11.75, 3, 12, 3.25], "texture": "#0"}, + "south": {"uv": [10.5, 7.75, 11, 8], "texture": "#0"}, + "west": {"uv": [3.25, 11.75, 3.5, 12], "texture": "#0"}, + "up": {"uv": [11, 8.25, 10.5, 8], "texture": "#0"}, + "down": {"uv": [8.75, 10.5, 8.25, 10.75], "texture": "#0"} + } + }, + { + "from": [0, 0, 7.20072], + "to": [2, 0.4, 8.79928], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [11, 1.5, 11.5, 1.75], "texture": "#0"}, + "east": {"uv": [11, 4.75, 11.5, 5], "texture": "#0"}, + "south": {"uv": [8, 11, 8.5, 11.25], "texture": "#0"}, + "west": {"uv": [11, 8, 11.5, 8.25], "texture": "#0"}, + "up": {"uv": [5, 10, 4.5, 9.5], "texture": "#0"}, + "down": {"uv": [10.25, 3.75, 9.75, 4.25], "texture": "#0"} + } + }, + { + "from": [-0.43, 3, 7.20072], + "to": [0.67, 3.4, 8.79928], + "rotation": {"angle": 22.5, "axis": "z", "origin": [7.85, 5.5, 8]}, + "faces": { + "north": {"uv": [11.75, 9.75, 12, 10], "texture": "#0"}, + "east": {"uv": [11, 8.25, 11.5, 8.5], "texture": "#0"}, + "south": {"uv": [10, 11.75, 10.25, 12], "texture": "#0"}, + "west": {"uv": [11, 8.5, 11.5, 8.75], "texture": "#0"}, + "up": {"uv": [8.75, 11.5, 8.5, 11], "texture": "#0"}, + "down": {"uv": [11.25, 8.75, 11, 9.25], "texture": "#0"} + } + }, + { + "from": [2.25, 0, 5.25], + "to": [5.25, 0.4, 8.25], + "rotation": {"angle": -22.5, "axis": "y", "origin": [3.75, 0.2, 6.25]}, + "faces": { + "north": {"uv": [9.75, 4.75, 10.5, 5], "texture": "#0"}, + "east": {"uv": [5.5, 9.75, 6.25, 10], "texture": "#0"}, + "south": {"uv": [7.5, 9.75, 8.25, 10], "texture": "#0"}, + "west": {"uv": [8.25, 9.75, 9, 10], "texture": "#0"}, + "up": {"uv": [6, 3.25, 5.25, 2.5], "texture": "#0"}, + "down": {"uv": [6, 3.25, 5.25, 4], "texture": "#0"} + } + }, + { + "from": [2.25, 0, 7.75], + "to": [5.25, 0.4, 10.75], + "rotation": {"angle": 22.5, "axis": "y", "origin": [3.75, 0.2, 9.75]}, + "faces": { + "north": {"uv": [9, 9.75, 9.75, 10], "texture": "#0"}, + "east": {"uv": [9.75, 9.75, 10.5, 10], "texture": "#0"}, + "south": {"uv": [3.5, 10, 4.25, 10.25], "texture": "#0"}, + "west": {"uv": [4.25, 10, 5, 10.25], "texture": "#0"}, + "up": {"uv": [6, 4.75, 5.25, 4], "texture": "#0"}, + "down": {"uv": [6, 4.75, 5.25, 5.5], "texture": "#0"} + } + }, + { + "from": [6, 0, -1.25], + "to": [9, 0.4, 1.75], + "rotation": {"angle": -22.5, "axis": "y", "origin": [1, -0.8, 8]}, + "faces": { + "north": {"uv": [5.5, 10, 6.25, 10.25], "texture": "#0"}, + "east": {"uv": [6.25, 10, 7, 10.25], "texture": "#0"}, + "south": {"uv": [7, 10, 7.75, 10.25], "texture": "#0"}, + "west": {"uv": [7.75, 10, 8.5, 10.25], "texture": "#0"}, + "up": {"uv": [6.25, 0.75, 5.5, 0], "texture": "#0"}, + "down": {"uv": [6.25, 0.75, 5.5, 1.5], "texture": "#0"} + } + }, + { + "from": [9, 0.2, 10.95], + "to": [10.3, 0.6, 12.45], + "rotation": {"angle": 22.5, "axis": "x", "origin": [10.5, 0.4, 11.95]}, + "faces": { + "north": {"uv": [11.75, 10, 12, 10.25], "texture": "#0"}, + "east": {"uv": [9.25, 11, 9.75, 11.25], "texture": "#0"}, + "south": {"uv": [10.25, 11.75, 10.5, 12], "texture": "#0"}, + "west": {"uv": [11, 9.75, 11.5, 10], "texture": "#0"}, + "up": {"uv": [10, 11.5, 9.75, 11], "texture": "#0"}, + "down": {"uv": [11.25, 10, 11, 10.5], "texture": "#0"} + } + }, + { + "from": [9, 0.2, 3.55], + "to": [10.3, 0.6, 5.05], + "rotation": {"angle": -22.5, "axis": "x", "origin": [10.5, 0.4, 4.05]}, + "faces": { + "north": {"uv": [11.75, 10.25, 12, 10.5], "texture": "#0"}, + "east": {"uv": [11, 10.75, 11.5, 11], "texture": "#0"}, + "south": {"uv": [10.5, 11.75, 10.75, 12], "texture": "#0"}, + "west": {"uv": [11, 11, 11.5, 11.25], "texture": "#0"}, + "up": {"uv": [10.75, 11.5, 10.5, 11], "texture": "#0"}, + "down": {"uv": [0.25, 11.25, 0, 11.75], "texture": "#0"} + } + }, + { + "from": [6, 0, 14.25], + "to": [9, 0.4, 17.25], + "rotation": {"angle": 22.5, "axis": "y", "origin": [1, -0.8, 8]}, + "faces": { + "north": {"uv": [8.5, 10, 9.25, 10.25], "texture": "#0"}, + "east": {"uv": [9.25, 10, 10, 10.25], "texture": "#0"}, + "south": {"uv": [10, 10, 10.75, 10.25], "texture": "#0"}, + "west": {"uv": [10.25, 0.5, 11, 0.75], "texture": "#0"}, + "up": {"uv": [6.25, 2.25, 5.5, 1.5], "texture": "#0"}, + "down": {"uv": [6, 5.5, 5.25, 6.25], "texture": "#0"} + } + }, + { + "from": [3.7, 0.6, 6.20072], + "to": [3.8, 0.7, 7.20072], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [11.75, 10.5, 12, 10.75], "texture": "#0"}, + "east": {"uv": [10.75, 11.75, 11, 12], "texture": "#0"}, + "south": {"uv": [11.75, 10.75, 12, 11], "texture": "#0"}, + "west": {"uv": [11, 11.75, 11.25, 12], "texture": "#0"}, + "up": {"uv": [12, 11.25, 11.75, 11], "texture": "#0"}, + "down": {"uv": [11.5, 11.75, 11.25, 12], "texture": "#0"} + } + }, + { + "from": [3.7, 0.5, 6.20072], + "to": [3.8, 0.6, 6.30072], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [0.25, 12, 0.5, 12.25], "texture": "#0"}, + "east": {"uv": [12, 0.25, 12.25, 0.5], "texture": "#0"}, + "south": {"uv": [0.5, 12, 0.75, 12.25], "texture": "#0"}, + "west": {"uv": [12, 0.5, 12.25, 0.75], "texture": "#0"}, + "up": {"uv": [1, 12.25, 0.75, 12], "texture": "#0"}, + "down": {"uv": [12.25, 0.75, 12, 1], "texture": "#0"} + } + }, + { + "from": [3.6, 0.4, 6.10072], + "to": [3.9, 0.5, 6.40072], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [11.75, 11.25, 12, 11.5], "texture": "#0"}, + "east": {"uv": [11.5, 11.75, 11.75, 12], "texture": "#0"}, + "south": {"uv": [11.75, 11.5, 12, 11.75], "texture": "#0"}, + "west": {"uv": [11.75, 11.75, 12, 12], "texture": "#0"}, + "up": {"uv": [0.25, 12.25, 0, 12], "texture": "#0"}, + "down": {"uv": [12.25, 0, 12, 0.25], "texture": "#0"} + } + }, + { + "from": [3.1, 0.4, 6.10072], + "to": [3.4, 0.5, 6.40072], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [2.5, 12, 2.75, 12.25], "texture": "#0"}, + "east": {"uv": [12, 2.5, 12.25, 2.75], "texture": "#0"}, + "south": {"uv": [2.75, 12, 3, 12.25], "texture": "#0"}, + "west": {"uv": [12, 2.75, 12.25, 3], "texture": "#0"}, + "up": {"uv": [3.25, 12.25, 3, 12], "texture": "#0"}, + "down": {"uv": [12.25, 3, 12, 3.25], "texture": "#0"} + } + }, + { + "from": [3.2, 0.5, 6.20072], + "to": [3.3, 0.6, 6.30072], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [1.75, 12, 2, 12.25], "texture": "#0"}, + "east": {"uv": [12, 1.75, 12.25, 2], "texture": "#0"}, + "south": {"uv": [2, 12, 2.25, 12.25], "texture": "#0"}, + "west": {"uv": [12, 2, 12.25, 2.25], "texture": "#0"}, + "up": {"uv": [2.5, 12.25, 2.25, 12], "texture": "#0"}, + "down": {"uv": [12.25, 2.25, 12, 2.5], "texture": "#0"} + } + }, + { + "from": [3.2, 0.6, 6.20072], + "to": [3.3, 0.7, 7.20072], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [1, 12, 1.25, 12.25], "texture": "#0"}, + "east": {"uv": [12, 1, 12.25, 1.25], "texture": "#0"}, + "south": {"uv": [1.25, 12, 1.5, 12.25], "texture": "#0"}, + "west": {"uv": [12, 1.25, 12.25, 1.5], "texture": "#0"}, + "up": {"uv": [1.75, 12.25, 1.5, 12], "texture": "#0"}, + "down": {"uv": [12.25, 1.5, 12, 1.75], "texture": "#0"} + } + }, + { + "from": [2.6, 0.4, 6.10072], + "to": [2.9, 0.5, 6.40072], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [4.75, 12, 5, 12.25], "texture": "#0"}, + "east": {"uv": [12, 4.75, 12.25, 5], "texture": "#0"}, + "south": {"uv": [5, 12, 5.25, 12.25], "texture": "#0"}, + "west": {"uv": [12, 5, 12.25, 5.25], "texture": "#0"}, + "up": {"uv": [5.5, 12.25, 5.25, 12], "texture": "#0"}, + "down": {"uv": [12.25, 5.25, 12, 5.5], "texture": "#0"} + } + }, + { + "from": [2.7, 0.5, 6.20072], + "to": [2.8, 0.6, 6.30072], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [4, 12, 4.25, 12.25], "texture": "#0"}, + "east": {"uv": [12, 4, 12.25, 4.25], "texture": "#0"}, + "south": {"uv": [4.25, 12, 4.5, 12.25], "texture": "#0"}, + "west": {"uv": [12, 4.25, 12.25, 4.5], "texture": "#0"}, + "up": {"uv": [4.75, 12.25, 4.5, 12], "texture": "#0"}, + "down": {"uv": [12.25, 4.5, 12, 4.75], "texture": "#0"} + } + }, + { + "from": [2.7, 0.6, 6.20072], + "to": [2.8, 0.7, 7.20072], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [3.25, 12, 3.5, 12.25], "texture": "#0"}, + "east": {"uv": [12, 3.25, 12.25, 3.5], "texture": "#0"}, + "south": {"uv": [3.5, 12, 3.75, 12.25], "texture": "#0"}, + "west": {"uv": [12, 3.5, 12.25, 3.75], "texture": "#0"}, + "up": {"uv": [4, 12.25, 3.75, 12], "texture": "#0"}, + "down": {"uv": [12.25, 3.75, 12, 4], "texture": "#0"} + } + }, + { + "from": [3.5, 0, 9.19928], + "to": [3.8, 0.1, 9.49928], + "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [5.5, 12, 5.75, 12.25], "texture": "#0"}, + "east": {"uv": [12, 5.5, 12.25, 5.75], "texture": "#0"}, + "south": {"uv": [5.75, 12, 6, 12.25], "texture": "#0"}, + "west": {"uv": [12, 5.75, 12.25, 6], "texture": "#0"}, + "up": {"uv": [6.25, 12.25, 6, 12], "texture": "#0"}, + "down": {"uv": [12.25, 6, 12, 6.25], "texture": "#0"} + } + }, + { + "from": [3.6, 0.1, 9.29928], + "to": [3.7, 0.5, 9.39928], + "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [6.25, 12, 6.5, 12.25], "texture": "#0"}, + "east": {"uv": [12, 6.25, 12.25, 6.5], "texture": "#0"}, + "south": {"uv": [6.5, 12, 6.75, 12.25], "texture": "#0"}, + "west": {"uv": [12, 6.5, 12.25, 6.75], "texture": "#0"}, + "up": {"uv": [7, 12.25, 6.75, 12], "texture": "#0"}, + "down": {"uv": [12.25, 6.75, 12, 7], "texture": "#0"} + } + }, + { + "from": [3.6, 0.5, 6.79928], + "to": [3.7, 0.6, 9.39928], + "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [7, 12, 7.25, 12.25], "texture": "#0"}, + "east": {"uv": [10.25, 0.75, 11, 1], "texture": "#0"}, + "south": {"uv": [12, 7, 12.25, 7.25], "texture": "#0"}, + "west": {"uv": [10.25, 2, 11, 2.25], "texture": "#0"}, + "up": {"uv": [3.75, 11, 3.5, 10.25], "texture": "#0"}, + "down": {"uv": [4, 10.25, 3.75, 11], "texture": "#0"} + } + }, + { + "from": [3, 0, 9.19928], + "to": [3.3, 0.1, 9.49928], + "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [7.25, 12, 7.5, 12.25], "texture": "#0"}, + "east": {"uv": [12, 7.25, 12.25, 7.5], "texture": "#0"}, + "south": {"uv": [7.5, 12, 7.75, 12.25], "texture": "#0"}, + "west": {"uv": [12, 7.5, 12.25, 7.75], "texture": "#0"}, + "up": {"uv": [8, 12.25, 7.75, 12], "texture": "#0"}, + "down": {"uv": [12.25, 7.75, 12, 8], "texture": "#0"} + } + }, + { + "from": [3.1, 0.1, 9.29928], + "to": [3.2, 0.5, 9.39928], + "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [8, 12, 8.25, 12.25], "texture": "#0"}, + "east": {"uv": [12, 8, 12.25, 8.25], "texture": "#0"}, + "south": {"uv": [8.25, 12, 8.5, 12.25], "texture": "#0"}, + "west": {"uv": [12, 8.25, 12.25, 8.5], "texture": "#0"}, + "up": {"uv": [8.75, 12.25, 8.5, 12], "texture": "#0"}, + "down": {"uv": [12.25, 8.5, 12, 8.75], "texture": "#0"} + } + }, + { + "from": [3.1, 0.5, 6.79928], + "to": [3.2, 0.6, 9.39928], + "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [8.75, 12, 9, 12.25], "texture": "#0"}, + "east": {"uv": [10.25, 2.25, 11, 2.5], "texture": "#0"}, + "south": {"uv": [12, 8.75, 12.25, 9], "texture": "#0"}, + "west": {"uv": [10.25, 3.75, 11, 4], "texture": "#0"}, + "up": {"uv": [4.25, 11, 4, 10.25], "texture": "#0"}, + "down": {"uv": [10.5, 4, 10.25, 4.75], "texture": "#0"} + } + }, + { + "from": [2, 0, 7.20072], + "to": [4, 0.9, 8.79928], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 5.5, 8]}, + "faces": { + "north": {"uv": [11.25, 0, 11.75, 0.25], "texture": "#0"}, + "east": {"uv": [0.25, 11.25, 0.75, 11.5], "texture": "#0"}, + "south": {"uv": [11.25, 0.25, 11.75, 0.5], "texture": "#0"}, + "west": {"uv": [0.75, 11.25, 1.25, 11.5], "texture": "#0"}, + "up": {"uv": [10.25, 4.75, 9.75, 4.25], "texture": "#0"}, + "down": {"uv": [5.5, 9.75, 5, 10.25], "texture": "#0"} + } + } + ], + "groups": [ + { + "name": "gudingjian", + "origin": [8, 8, 8], + "color": 0, + "children": [ + { + "name": "1zhu", + "origin": [8, 0, 8], + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15] + }, + { + "name": "1zhudimian", + "origin": [8, 11, 8], + "color": 0, + "children": [16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31] + }, + { + "name": "1zhuleiban", + "origin": [8, 8, 8], + "color": 0, + "children": [32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43] + }, + { + "name": "2zhu", + "origin": [8, 0, 8], + "color": 0, + "children": [44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59] + }, + { + "name": "2zhudimian", + "origin": [8, 11, 8], + "color": 0, + "children": [60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75] + }, + { + "name": "2zhudingmian", + "origin": [8, 11, 8], + "color": 0, + "children": [76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91] + } + ] + }, + { + "name": "dizuo", + "origin": [8, 5.5, 8], + "color": 0, + "children": [92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/textures/block/fumo_25.png b/src/main/resources/assets/superbwarfare/textures/block/fumo_25.png new file mode 100644 index 0000000000000000000000000000000000000000..4be21bbc6a3565f9318485691a2ed3418d7031a1 GIT binary patch literal 2769 zcmV;?3NH1DP)y*@041kN-C6!h!{eM8U>><(K~OvkQ=!1%EWkKLR6xE zfQjB|O^iX(P`RiLgc^iUC@rN0N)h_H-Q9UR=RD_myf{0v=WV8EcGl>{es5;ZInUeg z_x#?UM?CYJ-)a`2l|mRs?-3b>Shk(}7IeEfl?v^J1*#Jh6yfl5&(fN`LTze2kN@yT zIIfFfn*HyA-^Fn&0Q}?mBLLJJQ-x#ou>a5j04^Q-GZh;e_kW8czxoMpo}U*(I}U-7 zd{9cIzv@13h@xoey@=;i$#)rqeg~&oC-gf6-EOXJx7}GXn+bb^_NVbE>0s5?&oUC?R6RJ`M^Vs=rlS1+A*GZ>S-qK`zFP5H#$-b$P$)Rht&T?M)lOA2zMTOZ0N*EB86$8!T=qG zRLGC{(E9iK|7Sn_l=&Msxc$yMhmKzsX}QZtKuRJK5@1?Z>i1?)T4QIJWjjmHhGFBm zHd;r7G9vH;4Aa22T>##yJPM08U<#PJ_15wf-UOu;uZUPtLKOf|3Z>Ix?RnK)GwBBi z!@#sn(7Dfr=mzE54Z=_cL{jz%kEG0teAZ|taQgTQ{r@{Z^Av{2s8<0)?MiIWlu%e2 zibnt7<)bJ}wjKO302Qa8(FhpIfG`Y~c3!I#LjW)g!XUtQ@~g;7N7f5Ct~+?*C_)=% z;io$eJ~C{{BV)J>r`(_-2-5N=$PJwo^V;NO z|9!>tsCen1qrP@6^-RCk{5*$$`Evm5N;S;@-^Z-g@O?jK=3*3SI}XBtF!b@<3PBXn zZFQ)wX<%9oZ?WVBvUurau>_VyP6d*|&vL}A7cx85dj6Z%2qDlwAj4FjNGcr1Mi>I6 zNANIXA}0aaXmC`Rrioq2yEp(X1i~<=xGwExv;W?9V#(4PLaDGU2dh4&c`u2vw5zwH zsR3P=-3K2nZ0}X82q7?R8$BMM`*?Vt$D8Npm)(CX1}LR4&9u8Ja*2It9p?yI7rGy< zLqZiHB8`*^uUZ>td8IIxqK&$VT5FV2C{;{c5J+m3DrktpB{#XNd4xUf*bS~UhDyNA zV*R9{>a|r$aq{S4oN67dRLXMOi@}e%n0WP!Y-?c-+jS8F+O0OW>tVY~9>=lZ_}pIX zN}WT?rE~yt5|Fg~H}e8T2Gj4vZfO)NE=&upHIY=vM8r6C<4x{RX91Ypu$fw8lFJ`| zTzcFx80rNA-^Zy`N)6PD1LPtD{O0^%Z;*^IrKCDQ*K3|b6vb`3?Isi$-Eom)fZy%n z)#3$3VOZ3s5Zz9P+QbC2*RQefktc?>RZ*1BD++MpLm$Vh13Or^C5|iBTznb-BDe>h zgcS&cax3T&571b*u3!JlVt#g(HB(D9yk3+zvuiikE}s}WsSqMnQ}DYTOv^+ojYi`* z@qC+heHMV`>=oK`*LdLZ$AEk^I1X;As7Y~6!m`X#?TR202CzS#ZDBiBt|$W#23>?< zbK&%9F1~lR^gLydV?dUWL4{A-O-n`D>JSCSvsSMmOb0M=Y&RG4Pfl;fn^?oOtMjcjx}!@;)l$3@Ntbi3Wub8BIt)Ii;KJM}zH z>B{l)r#+72Qfu6@>@f!+Zv!$$Fn3%w0Dhu;#^U**TR_NiQB)0D3FIW8)oP`lgN#HB zLbhOhs32V_Z0MCii|tBf+5CWqRYr)T!{TGc&0Ue!GoZ&ByrbH*HEik75J5 z?G}#fAfpH&1hPPV?s@P*D2PDEMPVd3?9_MIw@-2276-q$JTR zl=KiOjpr=!KMZ`dj!-C~s9YMp5~oCkiaIQ=FFMrBLg|P|NiZ~eF~-lTl~-|5QC^-L z+s+kQv*^_V#tp|ABmu)1V3nBEHVq6kLW@2Fvi&Tlg6S;T3CA{(Dx}?N((U>;okK1j zto-^fm&Pg)jqC-=GC)jcsM#r zAk%}^ir0^yz;;|t9zEQD|M>^+&$Uf{zh!0zrtRQ27nr;BQQ_D>_~|bI@K5{+0CWF0 zxc<-QM_ywV#c@Csp|mc%4c0pjJOA1-04fs=OxxiS;5QeT*|!~l#)d6ewu=mXUU}g~ znm4Y}zHu!@;Pm#p`u{JVJJtVRn_ADB>D%z?4KAIJ-yeSNS)O?6X-KF+!y4ZU476xk zN|b5#bzUhIA7+FhmgDgCy*;^p$pX(9tjWuif4qCsbJ9UFG+ z!S&+wx6_=b)0$)LhAnK^x`%FSfp%-2wbQo&(4M=_#$9*gO-vT7aAlCYCfCabBc-qt z?x^P(48uSvg;WNXp@nKNwLw~upgzs>f&djWX=)F~|6V$0550DN-cLqaLJMJg-@ z{17H4J%lcwvc7-jG+TEU-}B27|L>13AX{ysMVs{L-+zbaI5fWaz2#AyL0SS9cigh9 zzA@Z-*ImqBxx)3!msvYK&8Dr}5JC{lJc9-rl?v9}9M+d!5e)%#L&r97W z_Sfy XH&SA$R4StO00000NkvXXu0mjfD9=f= literal 0 HcmV?d00001