Jump to content

[1.9.4] Particle Effects on Block Place | Blocks wo boundingbox | Water Source


Recommended Posts

Posted

Hi there, three questions today.

 

1. I want to add a block that creates particle affects upon placement. I tried adding code to Block#onBlockAdded but it appears that the world object given to that method is the server world and as such it doesn't appear to create particles (I don't need the particles to be synced across clients). How would I go about making the block display particles upon placement?

 

2. I have a 2 different blocks that have no bounding box. That is to say I can collide with the block, but cannot click it, and such cannot destroy it... I really need this fixed and need some help. I'll provide relevant code but im at a loss as what I did wrong or how to fix it. One block is an overly complicated spherical model, while the other is a simple rectangle..

 

Rectangle:

 

package com.darkhawx.planck.main.blocks;

import com.darkhawx.planck.main.init.ModDamageSources;
import net.minecraft.block.BlockAir;
import net.minecraft.block.SoundType;
import net.minecraft.block.material.MapColor;
import net.minecraft.block.material.Material;
import net.minecraft.block.properties.IProperty;
import net.minecraft.block.properties.PropertyEnum;
import net.minecraft.block.state.BlockStateContainer;
import net.minecraft.block.state.IBlockState;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.init.Blocks;
import net.minecraft.init.SoundEvents;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.util.*;
import net.minecraft.util.math.AxisAlignedBB;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;

import javax.annotation.Nullable;
import java.util.List;
import java.util.Random;

public class BlockRune extends BlockBasic {

    public static final PropertyEnum RUNE_TYPE = PropertyEnum.create("runetype", BlockRune.EnumRuneType.class);
    protected static final AxisAlignedBB AABB = new AxisAlignedBB(0.0D, 0.0D, 0.0D, 1.0D, 0.125D, 1.0D);

    public BlockRune(String blockName) {
        super(Material.AIR, MapColor.AIR, blockName);
        this.setDefaultState(this.blockState.getBaseState().withProperty(RUNE_TYPE, EnumRuneType.WATER));
        this.setHardness(0.0F);
        setSoundType(SoundType.GLASS);
    }

    /**
     * Normal BlockState methods
     */
    public IBlockState onBlockPlaced(World worldIn, BlockPos pos, EnumFacing facing, float hitX, float hitY, float hitZ, int meta, EntityLivingBase placer)
    {
        return this.getDefaultState().withProperty(RUNE_TYPE, EnumRuneType.byMetadata(meta));
    }

    public IBlockState getStateFromMeta(int meta)
    {
        return this.getDefaultState().withProperty(RUNE_TYPE, EnumRuneType.byMetadata(meta));
    }

    public int getMetaFromState(IBlockState state)
    {
        int i = 0;
        i = ((EnumRuneType)state.getValue(RUNE_TYPE)).getMetadata();
        return i;
    }

    protected BlockStateContainer createBlockState()
    {
        return new BlockStateContainer(this, RUNE_TYPE);
    }

    /**
     * Block Rendering methods
     */
    public boolean isFullCube(IBlockState state) {return false;}
    public boolean isOpaqueCube(IBlockState state) {return false;}
    @SideOnly(Side.CLIENT)
    public BlockRenderLayer getBlockLayer()
    {
        return BlockRenderLayer.TRANSLUCENT;
    }

    /**
     * Block breaking methods
     */
    public int quantityDropped(Random random)
    {
        return 0;
    }
    public Item getItemDropped(IBlockState state, Random rand, int fortune)
    {
        return null;
    }

    /**
     * Block collision
     */
    public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos) {
        return AABB;
    }

    @Nullable
    public AxisAlignedBB getCollisionBoundingBox(IBlockState blockState, World worldIn, BlockPos pos)
    {
        return AABB;
    }

    public boolean canSpawnInBlock()
    {
        return true;
    }

    /**
     * Block Subtypes
     */
    /**
     * returns a list of blocks with the same meta, but different meta (eg: wood returns 4 blocks)
     */
    @Override
    public void getSubBlocks(Item itemIn, CreativeTabs tab, List<ItemStack> list)
    {
        for (EnumRuneType enumRuneType : EnumRuneType.values())
        {
            list.add(new ItemStack(itemIn, 1, enumRuneType.getMetadata()));
        }
    }
}

 

Model:

 

{"parent": "block/block",
"__comment": "Designed by Darkhawx with BDcraft Cubik PRO 0.96 Beta - http://bdcraft.net",
"textures": {
    "particle": "planck:blocks/rune_air",
    "texture": "planck:blocks/rune_air"
},
"elements": [ 
{
    "from": [ 0, 0, 0 ],
    "to": [ 16, 0.0625, 16 ],
    "faces": {
        "up":    { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }
    }
}
]
}

 

 

Sphere:

 

package com.darkhawx.planck.main.blocks;

import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.block.state.IBlockState;
import net.minecraft.util.EnumBlockRenderType;
import net.minecraft.util.math.AxisAlignedBB;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.IBlockAccess;

public class BlockBloodSphere extends Block {
    public BlockBloodSphere(String blockName) {
        super(Material.AIR);
        setHardness(1.0F);
        setBlockName(this, blockName);
        //setCreativeTab(PlanckMod.cTab);
    }

    public boolean isFullCube(IBlockState state) {return false;}
    public EnumBlockRenderType getRenderType(IBlockState state) {return EnumBlockRenderType.MODEL;}
    public boolean isOpaqueCube(IBlockState state) {return false;}


    private void setBlockName(Block block, String blockName) {
        block.setRegistryName(blockName);
        block.setUnlocalizedName(block.getRegistryName().toString());
    }
}

 

Model (warning, huge. 4000 lines huge)

 

{"parent": "block/block",
"__comment": "Designed by Daalsat with BDcraft Cubik PRO 0.95 Beta - http://bdcraft.net",
"textures": {
    "particle": "planck:blocks/blood_circle",
    "texture": "planck:blocks/blood_circle"
},
"elements": [ 
{
    "__comment": "Sphere",
    "from": [ 0, 6.5, 5.5 ],
    "to": [ 16, 9.5, 10.5 ],
    "faces": {
        "down":  { "uv": [ 16, 10.5, 0, 5.5 ], "texture": "#texture" },
        "up":    { "uv": [ 0, 5.5, 16, 10.5 ], "texture": "#texture" },
        "north": { "uv": [ 0, 6.5, 16, 9.5 ], "texture": "#texture" },
        "south": { "uv": [ 0, 6.5, 16, 9.5 ], "texture": "#texture" },
        "west":  { "uv": [ 5.5, 6.5, 10.5, 9.5 ], "texture": "#texture" },
        "east":  { "uv": [ 5.5, 6.5, 10.5, 9.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 0, 6, 6 ],
    "to": [ 16, 6.5, 10 ],
    "faces": {
        "down":  { "uv": [ 16, 10, 0, 6 ], "texture": "#texture" },
        "north": { "uv": [ 0, 9.5, 16, 10 ], "texture": "#texture" },
        "south": { "uv": [ 0, 9.5, 16, 10 ], "texture": "#texture" },
        "west":  { "uv": [ 6, 9.5, 10, 10 ], "texture": "#texture" },
        "east":  { "uv": [ 6, 9.5, 10, 10 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 0, 9.5, 6 ],
    "to": [ 16, 10, 10 ],
    "faces": {
        "up":    { "uv": [ 0, 6, 16, 10 ], "texture": "#texture" },
        "north": { "uv": [ 0, 6, 16, 6.5 ], "texture": "#texture" },
        "south": { "uv": [ 0, 6, 16, 6.5 ], "texture": "#texture" },
        "west":  { "uv": [ 6, 6, 10, 6.5 ], "texture": "#texture" },
        "east":  { "uv": [ 6, 6, 10, 6.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 0, 5.5, 6.5 ],
    "to": [ 16, 6, 9.5 ],
    "faces": {
        "down":  { "uv": [ 16, 9.5, 0, 6.5 ], "texture": "#texture" },
        "north": { "uv": [ 0, 10, 16, 10.5 ], "texture": "#texture" },
        "south": { "uv": [ 0, 10, 16, 10.5 ], "texture": "#texture" },
        "west":  { "uv": [ 6.5, 10, 9.5, 10.5 ], "texture": "#texture" },
        "east":  { "uv": [ 6.5, 10, 9.5, 10.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 0, 10, 6.5 ],
    "to": [ 16, 10.5, 9.5 ],
    "faces": {
        "up":    { "uv": [ 0, 6.5, 16, 9.5 ], "texture": "#texture" },
        "north": { "uv": [ 0, 5.5, 16, 6 ], "texture": "#texture" },
        "south": { "uv": [ 0, 5.5, 16, 6 ], "texture": "#texture" },
        "west":  { "uv": [ 6.5, 5.5, 9.5, 6 ], "texture": "#texture" },
        "east":  { "uv": [ 6.5, 5.5, 9.5, 6 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 0.5, 7.5, 4 ],
    "to": [ 15.5, 8.5, 5.5 ],
    "faces": {
        "down":  { "uv": [ 15.5, 5.5, 0.5, 4 ], "texture": "#texture" },
        "up":    { "uv": [ 0.5, 4, 15.5, 5.5 ], "texture": "#texture" },
        "north": { "uv": [ 0.5, 7.5, 15.5, 8.5 ], "texture": "#texture" },
        "west":  { "uv": [ 4, 7.5, 5.5, 8.5 ], "texture": "#texture" },
        "east":  { "uv": [ 10.5, 7.5, 12, 8.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 0.5, 6, 4.5 ],
    "to": [ 15.5, 6.5, 6 ],
    "faces": {
        "down":  { "uv": [ 15.5, 6, 0.5, 4.5 ], "texture": "#texture" },
        "up":    { "uv": [ 0.5, 4.5, 15.5, 6 ], "texture": "#texture" },
        "north": { "uv": [ 0.5, 9.5, 15.5, 10 ], "texture": "#texture" },
        "west":  { "uv": [ 4.5, 9.5, 6, 10 ], "texture": "#texture" },
        "east":  { "uv": [ 10, 9.5, 11.5, 10 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 0.5, 6.5, 4.5 ],
    "to": [ 15.5, 7.5, 5.5 ],
    "faces": {
        "north": { "uv": [ 0.5, 8.5, 15.5, 9.5 ], "texture": "#texture" },
        "west":  { "uv": [ 4.5, 8.5, 5.5, 9.5 ], "texture": "#texture" },
        "east":  { "uv": [ 10.5, 8.5, 11.5, 9.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 0.5, 8.5, 4.5 ],
    "to": [ 15.5, 10, 5.5 ],
    "faces": {
        "up":    { "uv": [ 0.5, 4.5, 15.5, 5.5 ], "texture": "#texture" },
        "north": { "uv": [ 0.5, 6, 15.5, 7.5 ], "texture": "#texture" },
        "south": { "uv": [ 0.5, 6, 15.5, 7.5 ], "texture": "#texture" },
        "west":  { "uv": [ 4.5, 6, 5.5, 7.5 ], "texture": "#texture" },
        "east":  { "uv": [ 10.5, 6, 11.5, 7.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 0.5, 5, 5 ],
    "to": [ 15.5, 5.5, 11 ],
    "faces": {
        "down":  { "uv": [ 15.5, 11, 0.5, 5 ], "texture": "#texture" },
        "up":    { "uv": [ 0.5, 5, 15.5, 11 ], "texture": "#texture" },
        "north": { "uv": [ 0.5, 10.5, 15.5, 11 ], "texture": "#texture" },
        "south": { "uv": [ 0.5, 10.5, 15.5, 11 ], "texture": "#texture" },
        "west":  { "uv": [ 5, 10.5, 11, 11 ], "texture": "#texture" },
        "east":  { "uv": [ 5, 10.5, 11, 11 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 0.5, 5.5, 5 ],
    "to": [ 15.5, 6, 6.5 ],
    "faces": {
        "up":    { "uv": [ 0.5, 5, 15.5, 6.5 ], "texture": "#texture" },
        "north": { "uv": [ 0.5, 10, 15.5, 10.5 ], "texture": "#texture" },
        "west":  { "uv": [ 5, 10, 6.5, 10.5 ], "texture": "#texture" },
        "east":  { "uv": [ 9.5, 10, 11, 10.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 0.5, 10, 5 ],
    "to": [ 15.5, 11, 6.5 ],
    "faces": {
        "down":  { "uv": [ 15.5, 6.5, 0.5, 5 ], "texture": "#texture" },
        "up":    { "uv": [ 0.5, 5, 15.5, 6.5 ], "texture": "#texture" },
        "north": { "uv": [ 0.5, 5, 15.5, 6 ], "texture": "#texture" },
        "south": { "uv": [ 0.5, 5, 15.5, 6 ], "texture": "#texture" },
        "west":  { "uv": [ 5, 5, 6.5, 6 ], "texture": "#texture" },
        "east":  { "uv": [ 9.5, 5, 11, 6 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 0.5, 9.5, 5.5 ],
    "to": [ 15.5, 10, 6 ],
    "faces": {
        "west":  { "uv": [ 5.5, 6, 6, 6.5 ], "texture": "#texture" },
        "east":  { "uv": [ 10, 6, 10.5, 6.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 0.5, 4.5, 6 ],
    "to": [ 15.5, 5, 10 ],
    "faces": {
        "down":  { "uv": [ 15.5, 10, 0.5, 6 ], "texture": "#texture" },
        "north": { "uv": [ 0.5, 11, 15.5, 11.5 ], "texture": "#texture" },
        "south": { "uv": [ 0.5, 11, 15.5, 11.5 ], "texture": "#texture" },
        "west":  { "uv": [ 6, 11, 10, 11.5 ], "texture": "#texture" },
        "east":  { "uv": [ 6, 11, 10, 11.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 0.5, 11, 6 ],
    "to": [ 15.5, 11.5, 10 ],
    "faces": {
        "down":  { "uv": [ 15.5, 10, 0.5, 6 ], "texture": "#texture" },
        "up":    { "uv": [ 0.5, 6, 15.5, 10 ], "texture": "#texture" },
        "north": { "uv": [ 0.5, 4.5, 15.5, 5 ], "texture": "#texture" },
        "south": { "uv": [ 0.5, 4.5, 15.5, 5 ], "texture": "#texture" },
        "west":  { "uv": [ 6, 4.5, 10, 5 ], "texture": "#texture" },
        "east":  { "uv": [ 6, 4.5, 10, 5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 0.5, 10.5, 6.5 ],
    "to": [ 15.5, 11, 11 ],
    "faces": {
        "down":  { "uv": [ 15.5, 11, 0.5, 6.5 ], "texture": "#texture" },
        "up":    { "uv": [ 0.5, 6.5, 15.5, 11 ], "texture": "#texture" },
        "south": { "uv": [ 0.5, 5, 15.5, 5.5 ], "texture": "#texture" },
        "west":  { "uv": [ 6.5, 5, 11, 5.5 ], "texture": "#texture" },
        "east":  { "uv": [ 5, 5, 9.5, 5.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 0.5, 4, 7 ],
    "to": [ 15.5, 4.5, 9 ],
    "faces": {
        "down":  { "uv": [ 15.5, 9, 0.5, 7 ], "texture": "#texture" },
        "north": { "uv": [ 0.5, 11.5, 15.5, 12 ], "texture": "#texture" },
        "south": { "uv": [ 0.5, 11.5, 15.5, 12 ], "texture": "#texture" },
        "west":  { "uv": [ 7, 11.5, 9, 12 ], "texture": "#texture" },
        "east":  { "uv": [ 7, 11.5, 9, 12 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 0.5, 11.5, 7 ],
    "to": [ 15.5, 12, 9 ],
    "faces": {
        "up":    { "uv": [ 0.5, 7, 15.5, 9 ], "texture": "#texture" },
        "north": { "uv": [ 0.5, 4, 15.5, 4.5 ], "texture": "#texture" },
        "south": { "uv": [ 0.5, 4, 15.5, 4.5 ], "texture": "#texture" },
        "west":  { "uv": [ 7, 4, 9, 4.5 ], "texture": "#texture" },
        "east":  { "uv": [ 7, 4, 9, 4.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 0.5, 5.5, 9.5 ],
    "to": [ 15.5, 6, 11 ],
    "faces": {
        "up":    { "uv": [ 0.5, 9.5, 15.5, 11 ], "texture": "#texture" },
        "south": { "uv": [ 0.5, 10, 15.5, 10.5 ], "texture": "#texture" },
        "west":  { "uv": [ 9.5, 10, 11, 10.5 ], "texture": "#texture" },
        "east":  { "uv": [ 5, 10, 6.5, 10.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 0.5, 10, 9.5 ],
    "to": [ 15.5, 10.5, 11 ],
    "faces": {
        "down":  { "uv": [ 15.5, 11, 0.5, 9.5 ], "texture": "#texture" },
        "south": { "uv": [ 0.5, 5.5, 15.5, 6 ], "texture": "#texture" },
        "west":  { "uv": [ 9.5, 5.5, 11, 6 ], "texture": "#texture" },
        "east":  { "uv": [ 5, 5.5, 6.5, 6 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 0.5, 6, 10 ],
    "to": [ 15.5, 6.5, 11.5 ],
    "faces": {
        "down":  { "uv": [ 15.5, 11.5, 0.5, 10 ], "texture": "#texture" },
        "up":    { "uv": [ 0.5, 10, 15.5, 11.5 ], "texture": "#texture" },
        "south": { "uv": [ 0.5, 9.5, 15.5, 10 ], "texture": "#texture" },
        "west":  { "uv": [ 10, 9.5, 11.5, 10 ], "texture": "#texture" },
        "east":  { "uv": [ 4.5, 9.5, 6, 10 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 0.5, 9.5, 10 ],
    "to": [ 15.5, 10, 11.5 ],
    "faces": {
        "down":  { "uv": [ 15.5, 11.5, 0.5, 10 ], "texture": "#texture" },
        "up":    { "uv": [ 0.5, 10, 15.5, 11.5 ], "texture": "#texture" },
        "south": { "uv": [ 0.5, 6, 15.5, 6.5 ], "texture": "#texture" },
        "west":  { "uv": [ 10, 6, 11.5, 6.5 ], "texture": "#texture" },
        "east":  { "uv": [ 4.5, 6, 6, 6.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 0.5, 6.5, 10.5 ],
    "to": [ 15.5, 9.5, 11.5 ],
    "faces": {
        "south": { "uv": [ 0.5, 6.5, 15.5, 9.5 ], "texture": "#texture" },
        "west":  { "uv": [ 10.5, 6.5, 11.5, 9.5 ], "texture": "#texture" },
        "east":  { "uv": [ 4.5, 6.5, 5.5, 9.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 0.5, 7.5, 11.5 ],
    "to": [ 15.5, 8.5, 12 ],
    "faces": {
        "down":  { "uv": [ 15.5, 12, 0.5, 11.5 ], "texture": "#texture" },
        "up":    { "uv": [ 0.5, 11.5, 15.5, 12 ], "texture": "#texture" },
        "south": { "uv": [ 0.5, 7.5, 15.5, 8.5 ], "texture": "#texture" },
        "west":  { "uv": [ 11.5, 7.5, 12, 8.5 ], "texture": "#texture" },
        "east":  { "uv": [ 4, 7.5, 4.5, 8.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1, 6, 3.5 ],
    "to": [ 15, 7.5, 4.5 ],
    "faces": {
        "down":  { "uv": [ 15, 4.5, 1, 3.5 ], "texture": "#texture" },
        "up":    { "uv": [ 1, 3.5, 15, 4.5 ], "texture": "#texture" },
        "north": { "uv": [ 1, 8.5, 15, 10 ], "texture": "#texture" },
        "south": { "uv": [ 1, 8.5, 15, 10 ], "texture": "#texture" },
        "west":  { "uv": [ 3.5, 8.5, 4.5, 10 ], "texture": "#texture" },
        "east":  { "uv": [ 11.5, 8.5, 12.5, 10 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1, 7.5, 3.5 ],
    "to": [ 15, 10, 4 ],
    "faces": {
        "up":    { "uv": [ 1, 3.5, 15, 4 ], "texture": "#texture" },
        "north": { "uv": [ 1, 6, 15, 8.5 ], "texture": "#texture" },
        "south": { "uv": [ 1, 6, 15, 8.5 ], "texture": "#texture" },
        "west":  { "uv": [ 3.5, 6, 4, 8.5 ], "texture": "#texture" },
        "east":  { "uv": [ 12, 6, 12.5, 8.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1, 5, 4 ],
    "to": [ 15, 6, 5 ],
    "faces": {
        "down":  { "uv": [ 15, 5, 1, 4 ], "texture": "#texture" },
        "up":    { "uv": [ 1, 4, 15, 5 ], "texture": "#texture" },
        "north": { "uv": [ 1, 10, 15, 11 ], "texture": "#texture" },
        "south": { "uv": [ 1, 10, 15, 11 ], "texture": "#texture" },
        "west":  { "uv": [ 4, 10, 5, 11 ], "texture": "#texture" },
        "east":  { "uv": [ 11, 10, 12, 11 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1, 8.5, 4 ],
    "to": [ 15, 11, 4.5 ],
    "faces": {
        "up":    { "uv": [ 1, 4, 15, 4.5 ], "texture": "#texture" },
        "north": { "uv": [ 1, 5, 15, 7.5 ], "texture": "#texture" },
        "south": { "uv": [ 1, 5, 15, 7.5 ], "texture": "#texture" },
        "west":  { "uv": [ 4, 5, 4.5, 7.5 ], "texture": "#texture" },
        "east":  { "uv": [ 11.5, 5, 12, 7.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1, 4.5, 4.5 ],
    "to": [ 15, 5, 6 ],
    "faces": {
        "down":  { "uv": [ 15, 6, 1, 4.5 ], "texture": "#texture" },
        "up":    { "uv": [ 1, 4.5, 15, 6 ], "texture": "#texture" },
        "north": { "uv": [ 1, 11, 15, 11.5 ], "texture": "#texture" },
        "west":  { "uv": [ 4.5, 11, 6, 11.5 ], "texture": "#texture" },
        "east":  { "uv": [ 10, 11, 11.5, 11.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1, 10, 4.5 ],
    "to": [ 15, 11.5, 5 ],
    "faces": {
        "up":    { "uv": [ 1, 4.5, 15, 5 ], "texture": "#texture" },
        "north": { "uv": [ 1, 4.5, 15, 6 ], "texture": "#texture" },
        "south": { "uv": [ 1, 4.5, 15, 6 ], "texture": "#texture" },
        "west":  { "uv": [ 4.5, 4.5, 5, 6 ], "texture": "#texture" },
        "east":  { "uv": [ 11, 4.5, 11.5, 6 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1, 4, 5 ],
    "to": [ 15, 4.5, 7 ],
    "faces": {
        "down":  { "uv": [ 15, 7, 1, 5 ], "texture": "#texture" },
        "up":    { "uv": [ 1, 5, 15, 7 ], "texture": "#texture" },
        "north": { "uv": [ 1, 11.5, 15, 12 ], "texture": "#texture" },
        "west":  { "uv": [ 5, 11.5, 7, 12 ], "texture": "#texture" },
        "east":  { "uv": [ 9, 11.5, 11, 12 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1, 11, 5 ],
    "to": [ 15, 12, 6 ],
    "faces": {
        "up":    { "uv": [ 1, 5, 15, 6 ], "texture": "#texture" },
        "north": { "uv": [ 1, 4, 15, 5 ], "texture": "#texture" },
        "south": { "uv": [ 1, 4, 15, 5 ], "texture": "#texture" },
        "west":  { "uv": [ 5, 4, 6, 5 ], "texture": "#texture" },
        "east":  { "uv": [ 10, 4, 11, 5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1, 3.5, 6 ],
    "to": [ 15, 4, 10 ],
    "faces": {
        "down":  { "uv": [ 15, 10, 1, 6 ], "texture": "#texture" },
        "up":    { "uv": [ 1, 6, 15, 10 ], "texture": "#texture" },
        "north": { "uv": [ 1, 12, 15, 12.5 ], "texture": "#texture" },
        "south": { "uv": [ 1, 12, 15, 12.5 ], "texture": "#texture" },
        "west":  { "uv": [ 6, 12, 10, 12.5 ], "texture": "#texture" },
        "east":  { "uv": [ 6, 12, 10, 12.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1, 11.5, 6 ],
    "to": [ 15, 12.5, 7 ],
    "faces": {
        "up":    { "uv": [ 1, 6, 15, 7 ], "texture": "#texture" },
        "north": { "uv": [ 1, 3.5, 15, 4.5 ], "texture": "#texture" },
        "south": { "uv": [ 1, 3.5, 15, 4.5 ], "texture": "#texture" },
        "west":  { "uv": [ 6, 3.5, 7, 4.5 ], "texture": "#texture" },
        "east":  { "uv": [ 9, 3.5, 10, 4.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1, 12, 7 ],
    "to": [ 15, 12.5, 10 ],
    "faces": {
        "down":  { "uv": [ 15, 10, 1, 7 ], "texture": "#texture" },
        "up":    { "uv": [ 1, 7, 15, 10 ], "texture": "#texture" },
        "south": { "uv": [ 1, 3.5, 15, 4 ], "texture": "#texture" },
        "west":  { "uv": [ 7, 3.5, 10, 4 ], "texture": "#texture" },
        "east":  { "uv": [ 6, 3.5, 9, 4 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1, 4, 9 ],
    "to": [ 15, 4.5, 11 ],
    "faces": {
        "down":  { "uv": [ 15, 11, 1, 9 ], "texture": "#texture" },
        "up":    { "uv": [ 1, 9, 15, 11 ], "texture": "#texture" },
        "south": { "uv": [ 1, 11.5, 15, 12 ], "texture": "#texture" },
        "west":  { "uv": [ 9, 11.5, 11, 12 ], "texture": "#texture" },
        "east":  { "uv": [ 5, 11.5, 7, 12 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1, 11.5, 9 ],
    "to": [ 15, 12, 11 ],
    "faces": {
        "down":  { "uv": [ 15, 11, 1, 9 ], "texture": "#texture" },
        "up":    { "uv": [ 1, 9, 15, 11 ], "texture": "#texture" },
        "south": { "uv": [ 1, 4, 15, 4.5 ], "texture": "#texture" },
        "west":  { "uv": [ 9, 4, 11, 4.5 ], "texture": "#texture" },
        "east":  { "uv": [ 5, 4, 7, 4.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1, 4.5, 10 ],
    "to": [ 15, 5, 11.5 ],
    "faces": {
        "down":  { "uv": [ 15, 11.5, 1, 10 ], "texture": "#texture" },
        "up":    { "uv": [ 1, 10, 15, 11.5 ], "texture": "#texture" },
        "south": { "uv": [ 1, 11, 15, 11.5 ], "texture": "#texture" },
        "west":  { "uv": [ 10, 11, 11.5, 11.5 ], "texture": "#texture" },
        "east":  { "uv": [ 4.5, 11, 6, 11.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1, 11, 10 ],
    "to": [ 15, 11.5, 11.5 ],
    "faces": {
        "down":  { "uv": [ 15, 11.5, 1, 10 ], "texture": "#texture" },
        "up":    { "uv": [ 1, 10, 15, 11.5 ], "texture": "#texture" },
        "south": { "uv": [ 1, 4.5, 15, 5 ], "texture": "#texture" },
        "west":  { "uv": [ 10, 4.5, 11.5, 5 ], "texture": "#texture" },
        "east":  { "uv": [ 4.5, 4.5, 6, 5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1, 5, 11 ],
    "to": [ 15, 6, 12 ],
    "faces": {
        "down":  { "uv": [ 15, 12, 1, 11 ], "texture": "#texture" },
        "up":    { "uv": [ 1, 11, 15, 12 ], "texture": "#texture" },
        "north": { "uv": [ 1, 10, 15, 11 ], "texture": "#texture" },
        "south": { "uv": [ 1, 10, 15, 11 ], "texture": "#texture" },
        "west":  { "uv": [ 11, 10, 12, 11 ], "texture": "#texture" },
        "east":  { "uv": [ 4, 10, 5, 11 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1, 10, 11 ],
    "to": [ 15, 11, 12 ],
    "faces": {
        "down":  { "uv": [ 15, 12, 1, 11 ], "texture": "#texture" },
        "up":    { "uv": [ 1, 11, 15, 12 ], "texture": "#texture" },
        "north": { "uv": [ 1, 5, 15, 6 ], "texture": "#texture" },
        "south": { "uv": [ 1, 5, 15, 6 ], "texture": "#texture" },
        "west":  { "uv": [ 11, 5, 12, 6 ], "texture": "#texture" },
        "east":  { "uv": [ 4, 5, 5, 6 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1, 6, 11.5 ],
    "to": [ 15, 7.5, 12.5 ],
    "faces": {
        "down":  { "uv": [ 15, 12.5, 1, 11.5 ], "texture": "#texture" },
        "up":    { "uv": [ 1, 11.5, 15, 12.5 ], "texture": "#texture" },
        "north": { "uv": [ 1, 8.5, 15, 10 ], "texture": "#texture" },
        "south": { "uv": [ 1, 8.5, 15, 10 ], "texture": "#texture" },
        "west":  { "uv": [ 11.5, 8.5, 12.5, 10 ], "texture": "#texture" },
        "east":  { "uv": [ 3.5, 8.5, 4.5, 10 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1, 8.5, 11.5 ],
    "to": [ 15, 10, 12.5 ],
    "faces": {
        "down":  { "uv": [ 15, 12.5, 1, 11.5 ], "texture": "#texture" },
        "up":    { "uv": [ 1, 11.5, 15, 12.5 ], "texture": "#texture" },
        "north": { "uv": [ 1, 6, 15, 7.5 ], "texture": "#texture" },
        "south": { "uv": [ 1, 6, 15, 7.5 ], "texture": "#texture" },
        "west":  { "uv": [ 11.5, 6, 12.5, 7.5 ], "texture": "#texture" },
        "east":  { "uv": [ 3.5, 6, 4.5, 7.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1, 7.5, 12 ],
    "to": [ 15, 8.5, 12.5 ],
    "faces": {
        "south": { "uv": [ 1, 7.5, 15, 8.5 ], "texture": "#texture" },
        "west":  { "uv": [ 12, 7.5, 12.5, 8.5 ], "texture": "#texture" },
        "east":  { "uv": [ 3.5, 7.5, 4, 8.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1.5, 7, 2.5 ],
    "to": [ 14.5, 9, 3.5 ],
    "faces": {
        "down":  { "uv": [ 14.5, 3.5, 1.5, 2.5 ], "texture": "#texture" },
        "up":    { "uv": [ 1.5, 2.5, 14.5, 3.5 ], "texture": "#texture" },
        "north": { "uv": [ 1.5, 7, 14.5, 9 ], "texture": "#texture" },
        "south": { "uv": [ 1.5, 7, 14.5, 9 ], "texture": "#texture" },
        "west":  { "uv": [ 2.5, 7, 3.5, 9 ], "texture": "#texture" },
        "east":  { "uv": [ 12.5, 7, 13.5, 9 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1.5, 5.5, 3 ],
    "to": [ 14.5, 6, 4 ],
    "faces": {
        "down":  { "uv": [ 14.5, 4, 1.5, 3 ], "texture": "#texture" },
        "up":    { "uv": [ 1.5, 3, 14.5, 4 ], "texture": "#texture" },
        "north": { "uv": [ 1.5, 10, 14.5, 10.5 ], "texture": "#texture" },
        "west":  { "uv": [ 3, 10, 4, 10.5 ], "texture": "#texture" },
        "east":  { "uv": [ 12, 10, 13, 10.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1.5, 6, 3 ],
    "to": [ 14.5, 7, 3.5 ],
    "faces": {
        "north": { "uv": [ 1.5, 9, 14.5, 10 ], "texture": "#texture" },
        "west":  { "uv": [ 3, 9, 3.5, 10 ], "texture": "#texture" },
        "east":  { "uv": [ 12.5, 9, 13, 10 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1.5, 9, 3 ],
    "to": [ 14.5, 10.5, 3.5 ],
    "faces": {
        "up":    { "uv": [ 1.5, 3, 14.5, 3.5 ], "texture": "#texture" },
        "north": { "uv": [ 1.5, 5.5, 14.5, 7 ], "texture": "#texture" },
        "south": { "uv": [ 1.5, 5.5, 14.5, 7 ], "texture": "#texture" },
        "west":  { "uv": [ 3, 5.5, 3.5, 7 ], "texture": "#texture" },
        "east":  { "uv": [ 12.5, 5.5, 13, 7 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1.5, 4.5, 3.5 ],
    "to": [ 14.5, 5, 4.5 ],
    "faces": {
        "down":  { "uv": [ 14.5, 4.5, 1.5, 3.5 ], "texture": "#texture" },
        "up":    { "uv": [ 1.5, 3.5, 14.5, 4.5 ], "texture": "#texture" },
        "north": { "uv": [ 1.5, 11, 14.5, 11.5 ], "texture": "#texture" },
        "west":  { "uv": [ 3.5, 11, 4.5, 11.5 ], "texture": "#texture" },
        "east":  { "uv": [ 11.5, 11, 12.5, 11.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1.5, 5, 3.5 ],
    "to": [ 14.5, 5.5, 4 ],
    "faces": {
        "north": { "uv": [ 1.5, 10.5, 14.5, 11 ], "texture": "#texture" },
        "west":  { "uv": [ 3.5, 10.5, 4, 11 ], "texture": "#texture" },
        "east":  { "uv": [ 12, 10.5, 12.5, 11 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1.5, 10, 3.5 ],
    "to": [ 14.5, 11.5, 4 ],
    "faces": {
        "up":    { "uv": [ 1.5, 3.5, 14.5, 4 ], "texture": "#texture" },
        "north": { "uv": [ 1.5, 4.5, 14.5, 6 ], "texture": "#texture" },
        "south": { "uv": [ 1.5, 4.5, 14.5, 6 ], "texture": "#texture" },
        "west":  { "uv": [ 3.5, 4.5, 4, 6 ], "texture": "#texture" },
        "east":  { "uv": [ 12, 4.5, 12.5, 6 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1.5, 4, 4 ],
    "to": [ 14.5, 4.5, 5 ],
    "faces": {
        "down":  { "uv": [ 14.5, 5, 1.5, 4 ], "texture": "#texture" },
        "up":    { "uv": [ 1.5, 4, 14.5, 5 ], "texture": "#texture" },
        "north": { "uv": [ 1.5, 11.5, 14.5, 12 ], "texture": "#texture" },
        "west":  { "uv": [ 4, 11.5, 5, 12 ], "texture": "#texture" },
        "east":  { "uv": [ 11, 11.5, 12, 12 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1.5, 11, 4 ],
    "to": [ 14.5, 12, 4.5 ],
    "faces": {
        "up":    { "uv": [ 1.5, 4, 14.5, 4.5 ], "texture": "#texture" },
        "north": { "uv": [ 1.5, 4, 14.5, 5 ], "texture": "#texture" },
        "south": { "uv": [ 1.5, 4, 14.5, 5 ], "texture": "#texture" },
        "west":  { "uv": [ 4, 4, 4.5, 5 ], "texture": "#texture" },
        "east":  { "uv": [ 11.5, 4, 12, 5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1.5, 3.5, 4.5 ],
    "to": [ 14.5, 4, 6 ],
    "faces": {
        "down":  { "uv": [ 14.5, 6, 1.5, 4.5 ], "texture": "#texture" },
        "up":    { "uv": [ 1.5, 4.5, 14.5, 6 ], "texture": "#texture" },
        "north": { "uv": [ 1.5, 12, 14.5, 12.5 ], "texture": "#texture" },
        "west":  { "uv": [ 4.5, 12, 6, 12.5 ], "texture": "#texture" },
        "east":  { "uv": [ 10, 12, 11.5, 12.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1.5, 11.5, 4.5 ],
    "to": [ 14.5, 12.5, 5 ],
    "faces": {
        "up":    { "uv": [ 1.5, 4.5, 14.5, 5 ], "texture": "#texture" },
        "north": { "uv": [ 1.5, 3.5, 14.5, 4.5 ], "texture": "#texture" },
        "south": { "uv": [ 1.5, 3.5, 14.5, 4.5 ], "texture": "#texture" },
        "west":  { "uv": [ 4.5, 3.5, 5, 4.5 ], "texture": "#texture" },
        "east":  { "uv": [ 11, 3.5, 11.5, 4.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1.5, 12, 5 ],
    "to": [ 14.5, 12.5, 6 ],
    "faces": {
        "up":    { "uv": [ 1.5, 5, 14.5, 6 ], "texture": "#texture" },
        "west":  { "uv": [ 5, 3.5, 6, 4 ], "texture": "#texture" },
        "east":  { "uv": [ 10, 3.5, 11, 4 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1.5, 3, 5.5 ],
    "to": [ 14.5, 3.5, 10.5 ],
    "faces": {
        "down":  { "uv": [ 14.5, 10.5, 1.5, 5.5 ], "texture": "#texture" },
        "up":    { "uv": [ 1.5, 5.5, 14.5, 10.5 ], "texture": "#texture" },
        "north": { "uv": [ 1.5, 12.5, 14.5, 13 ], "texture": "#texture" },
        "south": { "uv": [ 1.5, 12.5, 14.5, 13 ], "texture": "#texture" },
        "west":  { "uv": [ 5.5, 12.5, 10.5, 13 ], "texture": "#texture" },
        "east":  { "uv": [ 5.5, 12.5, 10.5, 13 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1.5, 12.5, 5.5 ],
    "to": [ 14.5, 13, 10.5 ],
    "faces": {
        "down":  { "uv": [ 14.5, 10.5, 1.5, 5.5 ], "texture": "#texture" },
        "up":    { "uv": [ 1.5, 5.5, 14.5, 10.5 ], "texture": "#texture" },
        "north": { "uv": [ 1.5, 3, 14.5, 3.5 ], "texture": "#texture" },
        "south": { "uv": [ 1.5, 3, 14.5, 3.5 ], "texture": "#texture" },
        "west":  { "uv": [ 5.5, 3, 10.5, 3.5 ], "texture": "#texture" },
        "east":  { "uv": [ 5.5, 3, 10.5, 3.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1.5, 2.5, 7 ],
    "to": [ 14.5, 3, 9 ],
    "faces": {
        "down":  { "uv": [ 14.5, 9, 1.5, 7 ], "texture": "#texture" },
        "north": { "uv": [ 1.5, 13, 14.5, 13.5 ], "texture": "#texture" },
        "south": { "uv": [ 1.5, 13, 14.5, 13.5 ], "texture": "#texture" },
        "west":  { "uv": [ 7, 13, 9, 13.5 ], "texture": "#texture" },
        "east":  { "uv": [ 7, 13, 9, 13.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1.5, 13, 7 ],
    "to": [ 14.5, 13.5, 9 ],
    "faces": {
        "up":    { "uv": [ 1.5, 7, 14.5, 9 ], "texture": "#texture" },
        "north": { "uv": [ 1.5, 2.5, 14.5, 3 ], "texture": "#texture" },
        "south": { "uv": [ 1.5, 2.5, 14.5, 3 ], "texture": "#texture" },
        "west":  { "uv": [ 7, 2.5, 9, 3 ], "texture": "#texture" },
        "east":  { "uv": [ 7, 2.5, 9, 3 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1.5, 3.5, 10 ],
    "to": [ 14.5, 4, 11.5 ],
    "faces": {
        "down":  { "uv": [ 14.5, 11.5, 1.5, 10 ], "texture": "#texture" },
        "up":    { "uv": [ 1.5, 10, 14.5, 11.5 ], "texture": "#texture" },
        "south": { "uv": [ 1.5, 12, 14.5, 12.5 ], "texture": "#texture" },
        "west":  { "uv": [ 10, 12, 11.5, 12.5 ], "texture": "#texture" },
        "east":  { "uv": [ 4.5, 12, 6, 12.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1.5, 12, 10 ],
    "to": [ 14.5, 12.5, 11.5 ],
    "faces": {
        "down":  { "uv": [ 14.5, 11.5, 1.5, 10 ], "texture": "#texture" },
        "up":    { "uv": [ 1.5, 10, 14.5, 11.5 ], "texture": "#texture" },
        "south": { "uv": [ 1.5, 3.5, 14.5, 4 ], "texture": "#texture" },
        "west":  { "uv": [ 10, 3.5, 11.5, 4 ], "texture": "#texture" },
        "east":  { "uv": [ 4.5, 3.5, 6, 4 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1.5, 4, 11 ],
    "to": [ 14.5, 4.5, 12 ],
    "faces": {
        "down":  { "uv": [ 14.5, 12, 1.5, 11 ], "texture": "#texture" },
        "up":    { "uv": [ 1.5, 11, 14.5, 12 ], "texture": "#texture" },
        "south": { "uv": [ 1.5, 11.5, 14.5, 12 ], "texture": "#texture" },
        "west":  { "uv": [ 11, 11.5, 12, 12 ], "texture": "#texture" },
        "east":  { "uv": [ 4, 11.5, 5, 12 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1.5, 11.5, 11 ],
    "to": [ 14.5, 12, 12 ],
    "faces": {
        "down":  { "uv": [ 14.5, 12, 1.5, 11 ], "texture": "#texture" },
        "up":    { "uv": [ 1.5, 11, 14.5, 12 ], "texture": "#texture" },
        "south": { "uv": [ 1.5, 4, 14.5, 4.5 ], "texture": "#texture" },
        "west":  { "uv": [ 11, 4, 12, 4.5 ], "texture": "#texture" },
        "east":  { "uv": [ 4, 4, 5, 4.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1.5, 4.5, 11.5 ],
    "to": [ 14.5, 5, 12.5 ],
    "faces": {
        "down":  { "uv": [ 14.5, 12.5, 1.5, 11.5 ], "texture": "#texture" },
        "up":    { "uv": [ 1.5, 11.5, 14.5, 12.5 ], "texture": "#texture" },
        "south": { "uv": [ 1.5, 11, 14.5, 11.5 ], "texture": "#texture" },
        "west":  { "uv": [ 11.5, 11, 12.5, 11.5 ], "texture": "#texture" },
        "east":  { "uv": [ 3.5, 11, 4.5, 11.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1.5, 11, 11.5 ],
    "to": [ 14.5, 11.5, 12.5 ],
    "faces": {
        "down":  { "uv": [ 14.5, 12.5, 1.5, 11.5 ], "texture": "#texture" },
        "up":    { "uv": [ 1.5, 11.5, 14.5, 12.5 ], "texture": "#texture" },
        "south": { "uv": [ 1.5, 4.5, 14.5, 5 ], "texture": "#texture" },
        "west":  { "uv": [ 11.5, 4.5, 12.5, 5 ], "texture": "#texture" },
        "east":  { "uv": [ 3.5, 4.5, 4.5, 5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1.5, 5, 12 ],
    "to": [ 14.5, 6, 12.5 ],
    "faces": {
        "south": { "uv": [ 1.5, 10, 14.5, 11 ], "texture": "#texture" },
        "west":  { "uv": [ 12, 10, 12.5, 11 ], "texture": "#texture" },
        "east":  { "uv": [ 3.5, 10, 4, 11 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1.5, 10, 12 ],
    "to": [ 14.5, 10.5, 13 ],
    "faces": {
        "down":  { "uv": [ 14.5, 13, 1.5, 12 ], "texture": "#texture" },
        "up":    { "uv": [ 1.5, 12, 14.5, 13 ], "texture": "#texture" },
        "south": { "uv": [ 1.5, 5.5, 14.5, 6 ], "texture": "#texture" },
        "west":  { "uv": [ 12, 5.5, 13, 6 ], "texture": "#texture" },
        "east":  { "uv": [ 3, 5.5, 4, 6 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1.5, 10.5, 12 ],
    "to": [ 14.5, 11, 12.5 ],
    "faces": {
        "south": { "uv": [ 1.5, 5, 14.5, 5.5 ], "texture": "#texture" },
        "west":  { "uv": [ 12, 5, 12.5, 5.5 ], "texture": "#texture" },
        "east":  { "uv": [ 3.5, 5, 4, 5.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1.5, 5.5, 12.5 ],
    "to": [ 14.5, 10, 13 ],
    "faces": {
        "down":  { "uv": [ 14.5, 13, 1.5, 12.5 ], "texture": "#texture" },
        "north": { "uv": [ 1.5, 6, 14.5, 10.5 ], "texture": "#texture" },
        "south": { "uv": [ 1.5, 6, 14.5, 10.5 ], "texture": "#texture" },
        "west":  { "uv": [ 12.5, 6, 13, 10.5 ], "texture": "#texture" },
        "east":  { "uv": [ 3, 6, 3.5, 10.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 1.5, 7, 13 ],
    "to": [ 14.5, 9, 13.5 ],
    "faces": {
        "down":  { "uv": [ 14.5, 13.5, 1.5, 13 ], "texture": "#texture" },
        "up":    { "uv": [ 1.5, 13, 14.5, 13.5 ], "texture": "#texture" },
        "south": { "uv": [ 1.5, 7, 14.5, 9 ], "texture": "#texture" },
        "west":  { "uv": [ 13, 7, 13.5, 9 ], "texture": "#texture" },
        "east":  { "uv": [ 2.5, 7, 3, 9 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2, 6.5, 2 ],
    "to": [ 14, 7, 3 ],
    "faces": {
        "down":  { "uv": [ 14, 3, 2, 2 ], "texture": "#texture" },
        "up":    { "uv": [ 2, 2, 14, 3 ], "texture": "#texture" },
        "north": { "uv": [ 2, 9, 14, 9.5 ], "texture": "#texture" },
        "west":  { "uv": [ 2, 9, 3, 9.5 ], "texture": "#texture" },
        "east":  { "uv": [ 13, 9, 14, 9.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2, 7, 2 ],
    "to": [ 14, 9.5, 2.5 ],
    "faces": {
        "up":    { "uv": [ 2, 2, 14, 2.5 ], "texture": "#texture" },
        "north": { "uv": [ 2, 6.5, 14, 9 ], "texture": "#texture" },
        "south": { "uv": [ 2, 6.5, 14, 9 ], "texture": "#texture" },
        "west":  { "uv": [ 2, 6.5, 2.5, 9 ], "texture": "#texture" },
        "east":  { "uv": [ 13.5, 6.5, 14, 9 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2, 5.5, 2.5 ],
    "to": [ 14, 6.5, 3 ],
    "faces": {
        "down":  { "uv": [ 14, 3, 2, 2.5 ], "texture": "#texture" },
        "north": { "uv": [ 2, 9.5, 14, 10.5 ], "texture": "#texture" },
        "south": { "uv": [ 2, 9.5, 14, 10.5 ], "texture": "#texture" },
        "west":  { "uv": [ 2.5, 9.5, 3, 10.5 ], "texture": "#texture" },
        "east":  { "uv": [ 13, 9.5, 13.5, 10.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2, 9, 2.5 ],
    "to": [ 14, 10.5, 3 ],
    "faces": {
        "up":    { "uv": [ 2, 2.5, 14, 3 ], "texture": "#texture" },
        "north": { "uv": [ 2, 5.5, 14, 7 ], "texture": "#texture" },
        "west":  { "uv": [ 2.5, 5.5, 3, 7 ], "texture": "#texture" },
        "east":  { "uv": [ 13, 5.5, 13.5, 7 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2, 4.5, 3 ],
    "to": [ 14, 5.5, 3.5 ],
    "faces": {
        "down":  { "uv": [ 14, 3.5, 2, 3 ], "texture": "#texture" },
        "north": { "uv": [ 2, 10.5, 14, 11.5 ], "texture": "#texture" },
        "south": { "uv": [ 2, 10.5, 14, 11.5 ], "texture": "#texture" },
        "west":  { "uv": [ 3, 10.5, 3.5, 11.5 ], "texture": "#texture" },
        "east":  { "uv": [ 12.5, 10.5, 13, 11.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2, 10.5, 3 ],
    "to": [ 14, 11.5, 3.5 ],
    "faces": {
        "up":    { "uv": [ 2, 3, 14, 3.5 ], "texture": "#texture" },
        "north": { "uv": [ 2, 4.5, 14, 5.5 ], "texture": "#texture" },
        "west":  { "uv": [ 3, 4.5, 3.5, 5.5 ], "texture": "#texture" },
        "east":  { "uv": [ 12.5, 4.5, 13, 5.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2, 4, 3.5 ],
    "to": [ 14, 4.5, 4 ],
    "faces": {
        "down":  { "uv": [ 14, 4, 2, 3.5 ], "texture": "#texture" },
        "north": { "uv": [ 2, 11.5, 14, 12 ], "texture": "#texture" },
        "west":  { "uv": [ 3.5, 11.5, 4, 12 ], "texture": "#texture" },
        "east":  { "uv": [ 12, 11.5, 12.5, 12 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2, 11.5, 3.5 ],
    "to": [ 14, 12, 4 ],
    "faces": {
        "up":    { "uv": [ 2, 3.5, 14, 4 ], "texture": "#texture" },
        "north": { "uv": [ 2, 4, 14, 4.5 ], "texture": "#texture" },
        "west":  { "uv": [ 3.5, 4, 4, 4.5 ], "texture": "#texture" },
        "east":  { "uv": [ 12, 4, 12.5, 4.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2, 3.5, 4 ],
    "to": [ 14, 4, 4.5 ],
    "faces": {
        "down":  { "uv": [ 14, 4.5, 2, 4 ], "texture": "#texture" },
        "north": { "uv": [ 2, 12, 14, 12.5 ], "texture": "#texture" },
        "west":  { "uv": [ 4, 12, 4.5, 12.5 ], "texture": "#texture" },
        "east":  { "uv": [ 11.5, 12, 12, 12.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2, 12, 4 ],
    "to": [ 14, 12.5, 4.5 ],
    "faces": {
        "up":    { "uv": [ 2, 4, 14, 4.5 ], "texture": "#texture" },
        "north": { "uv": [ 2, 3.5, 14, 4 ], "texture": "#texture" },
        "west":  { "uv": [ 4, 3.5, 4.5, 4 ], "texture": "#texture" },
        "east":  { "uv": [ 11.5, 3.5, 12, 4 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2, 3, 4.5 ],
    "to": [ 14, 3.5, 5.5 ],
    "faces": {
        "down":  { "uv": [ 14, 5.5, 2, 4.5 ], "texture": "#texture" },
        "north": { "uv": [ 2, 12.5, 14, 13 ], "texture": "#texture" },
        "west":  { "uv": [ 4.5, 12.5, 5.5, 13 ], "texture": "#texture" },
        "east":  { "uv": [ 10.5, 12.5, 11.5, 13 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2, 12.5, 4.5 ],
    "to": [ 14, 13, 5.5 ],
    "faces": {
        "down":  { "uv": [ 14, 5.5, 2, 4.5 ], "texture": "#texture" },
        "up":    { "uv": [ 2, 4.5, 14, 5.5 ], "texture": "#texture" },
        "north": { "uv": [ 2, 3, 14, 3.5 ], "texture": "#texture" },
        "west":  { "uv": [ 4.5, 3, 5.5, 3.5 ], "texture": "#texture" },
        "east":  { "uv": [ 10.5, 3, 11.5, 3.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2, 2.5, 5 ],
    "to": [ 14, 3, 7 ],
    "faces": {
        "down":  { "uv": [ 14, 7, 2, 5 ], "texture": "#texture" },
        "up":    { "uv": [ 2, 5, 14, 7 ], "texture": "#texture" },
        "north": { "uv": [ 2, 13, 14, 13.5 ], "texture": "#texture" },
        "west":  { "uv": [ 5, 13, 7, 13.5 ], "texture": "#texture" },
        "east":  { "uv": [ 9, 13, 11, 13.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2, 13, 5 ],
    "to": [ 14, 13.5, 7 ],
    "faces": {
        "down":  { "uv": [ 14, 7, 2, 5 ], "texture": "#texture" },
        "up":    { "uv": [ 2, 5, 14, 7 ], "texture": "#texture" },
        "north": { "uv": [ 2, 2.5, 14, 3 ], "texture": "#texture" },
        "west":  { "uv": [ 5, 2.5, 7, 3 ], "texture": "#texture" },
        "east":  { "uv": [ 9, 2.5, 11, 3 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2, 2, 6.5 ],
    "to": [ 14, 2.5, 9.5 ],
    "faces": {
        "down":  { "uv": [ 14, 9.5, 2, 6.5 ], "texture": "#texture" },
        "up":    { "uv": [ 2, 6.5, 14, 9.5 ], "texture": "#texture" },
        "north": { "uv": [ 2, 13.5, 14, 14 ], "texture": "#texture" },
        "south": { "uv": [ 2, 13.5, 14, 14 ], "texture": "#texture" },
        "west":  { "uv": [ 6.5, 13.5, 9.5, 14 ], "texture": "#texture" },
        "east":  { "uv": [ 6.5, 13.5, 9.5, 14 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2, 13.5, 6.5 ],
    "to": [ 14, 14, 9.5 ],
    "faces": {
        "down":  { "uv": [ 14, 9.5, 2, 6.5 ], "texture": "#texture" },
        "up":    { "uv": [ 2, 6.5, 14, 9.5 ], "texture": "#texture" },
        "north": { "uv": [ 2, 2, 14, 2.5 ], "texture": "#texture" },
        "south": { "uv": [ 2, 2, 14, 2.5 ], "texture": "#texture" },
        "west":  { "uv": [ 6.5, 2, 9.5, 2.5 ], "texture": "#texture" },
        "east":  { "uv": [ 6.5, 2, 9.5, 2.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2, 2.5, 9 ],
    "to": [ 14, 3, 11 ],
    "faces": {
        "down":  { "uv": [ 14, 11, 2, 9 ], "texture": "#texture" },
        "up":    { "uv": [ 2, 9, 14, 11 ], "texture": "#texture" },
        "south": { "uv": [ 2, 13, 14, 13.5 ], "texture": "#texture" },
        "west":  { "uv": [ 9, 13, 11, 13.5 ], "texture": "#texture" },
        "east":  { "uv": [ 5, 13, 7, 13.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2, 13, 9 ],
    "to": [ 14, 13.5, 11 ],
    "faces": {
        "down":  { "uv": [ 14, 11, 2, 9 ], "texture": "#texture" },
        "up":    { "uv": [ 2, 9, 14, 11 ], "texture": "#texture" },
        "south": { "uv": [ 2, 2.5, 14, 3 ], "texture": "#texture" },
        "west":  { "uv": [ 9, 2.5, 11, 3 ], "texture": "#texture" },
        "east":  { "uv": [ 5, 2.5, 7, 3 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2, 3, 10.5 ],
    "to": [ 14, 3.5, 11.5 ],
    "faces": {
        "down":  { "uv": [ 14, 11.5, 2, 10.5 ], "texture": "#texture" },
        "south": { "uv": [ 2, 12.5, 14, 13 ], "texture": "#texture" },
        "west":  { "uv": [ 10.5, 12.5, 11.5, 13 ], "texture": "#texture" },
        "east":  { "uv": [ 4.5, 12.5, 5.5, 13 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2, 12.5, 10.5 ],
    "to": [ 14, 13, 11.5 ],
    "faces": {
        "up":    { "uv": [ 2, 10.5, 14, 11.5 ], "texture": "#texture" },
        "south": { "uv": [ 2, 3, 14, 3.5 ], "texture": "#texture" },
        "west":  { "uv": [ 10.5, 3, 11.5, 3.5 ], "texture": "#texture" },
        "east":  { "uv": [ 4.5, 3, 5.5, 3.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2, 3.5, 11.5 ],
    "to": [ 14, 4, 12 ],
    "faces": {
        "down":  { "uv": [ 14, 12, 2, 11.5 ], "texture": "#texture" },
        "south": { "uv": [ 2, 12, 14, 12.5 ], "texture": "#texture" },
        "west":  { "uv": [ 11.5, 12, 12, 12.5 ], "texture": "#texture" },
        "east":  { "uv": [ 4, 12, 4.5, 12.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2, 12, 11.5 ],
    "to": [ 14, 12.5, 12 ],
    "faces": {
        "up":    { "uv": [ 2, 11.5, 14, 12 ], "texture": "#texture" },
        "south": { "uv": [ 2, 3.5, 14, 4 ], "texture": "#texture" },
        "west":  { "uv": [ 11.5, 3.5, 12, 4 ], "texture": "#texture" },
        "east":  { "uv": [ 4, 3.5, 4.5, 4 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2, 4, 12 ],
    "to": [ 14, 4.5, 12.5 ],
    "faces": {
        "down":  { "uv": [ 14, 12.5, 2, 12 ], "texture": "#texture" },
        "south": { "uv": [ 2, 11.5, 14, 12 ], "texture": "#texture" },
        "west":  { "uv": [ 12, 11.5, 12.5, 12 ], "texture": "#texture" },
        "east":  { "uv": [ 3.5, 11.5, 4, 12 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2, 11.5, 12 ],
    "to": [ 14, 12, 12.5 ],
    "faces": {
        "up":    { "uv": [ 2, 12, 14, 12.5 ], "texture": "#texture" },
        "south": { "uv": [ 2, 4, 14, 4.5 ], "texture": "#texture" },
        "west":  { "uv": [ 12, 4, 12.5, 4.5 ], "texture": "#texture" },
        "east":  { "uv": [ 3.5, 4, 4, 4.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2, 4.5, 12.5 ],
    "to": [ 14, 5.5, 13 ],
    "faces": {
        "down":  { "uv": [ 14, 13, 2, 12.5 ], "texture": "#texture" },
        "north": { "uv": [ 2, 10.5, 14, 11.5 ], "texture": "#texture" },
        "south": { "uv": [ 2, 10.5, 14, 11.5 ], "texture": "#texture" },
        "west":  { "uv": [ 12.5, 10.5, 13, 11.5 ], "texture": "#texture" },
        "east":  { "uv": [ 3, 10.5, 3.5, 11.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2, 10.5, 12.5 ],
    "to": [ 14, 11.5, 13 ],
    "faces": {
        "up":    { "uv": [ 2, 12.5, 14, 13 ], "texture": "#texture" },
        "north": { "uv": [ 2, 4.5, 14, 5.5 ], "texture": "#texture" },
        "south": { "uv": [ 2, 4.5, 14, 5.5 ], "texture": "#texture" },
        "west":  { "uv": [ 12.5, 4.5, 13, 5.5 ], "texture": "#texture" },
        "east":  { "uv": [ 3, 4.5, 3.5, 5.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2, 5.5, 13 ],
    "to": [ 14, 7, 13.5 ],
    "faces": {
        "down":  { "uv": [ 14, 13.5, 2, 13 ], "texture": "#texture" },
        "south": { "uv": [ 2, 9, 14, 10.5 ], "texture": "#texture" },
        "west":  { "uv": [ 13, 9, 13.5, 10.5 ], "texture": "#texture" },
        "east":  { "uv": [ 2.5, 9, 3, 10.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2, 9, 13 ],
    "to": [ 14, 9.5, 14 ],
    "faces": {
        "down":  { "uv": [ 14, 14, 2, 13 ], "texture": "#texture" },
        "up":    { "uv": [ 2, 13, 14, 14 ], "texture": "#texture" },
        "south": { "uv": [ 2, 6.5, 14, 7 ], "texture": "#texture" },
        "west":  { "uv": [ 13, 6.5, 14, 7 ], "texture": "#texture" },
        "east":  { "uv": [ 2, 6.5, 3, 7 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2, 9.5, 13 ],
    "to": [ 14, 10.5, 13.5 ],
    "faces": {
        "up":    { "uv": [ 2, 13, 14, 13.5 ], "texture": "#texture" },
        "north": { "uv": [ 2, 5.5, 14, 6.5 ], "texture": "#texture" },
        "south": { "uv": [ 2, 5.5, 14, 6.5 ], "texture": "#texture" },
        "west":  { "uv": [ 13, 5.5, 13.5, 6.5 ], "texture": "#texture" },
        "east":  { "uv": [ 2.5, 5.5, 3, 6.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2, 6.5, 13.5 ],
    "to": [ 14, 9, 14 ],
    "faces": {
        "down":  { "uv": [ 14, 14, 2, 13.5 ], "texture": "#texture" },
        "north": { "uv": [ 2, 7, 14, 9.5 ], "texture": "#texture" },
        "south": { "uv": [ 2, 7, 14, 9.5 ], "texture": "#texture" },
        "west":  { "uv": [ 13.5, 7, 14, 9.5 ], "texture": "#texture" },
        "east":  { "uv": [ 2, 7, 2.5, 9.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 7, 1.5 ],
    "to": [ 13.5, 9, 2 ],
    "faces": {
        "down":  { "uv": [ 13.5, 2, 2.5, 1.5 ], "texture": "#texture" },
        "up":    { "uv": [ 2.5, 1.5, 13.5, 2 ], "texture": "#texture" },
        "north": { "uv": [ 2.5, 7, 13.5, 9 ], "texture": "#texture" },
        "west":  { "uv": [ 1.5, 7, 2, 9 ], "texture": "#texture" },
        "east":  { "uv": [ 14, 7, 14.5, 9 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 5.5, 2 ],
    "to": [ 13.5, 6.5, 2.5 ],
    "faces": {
        "down":  { "uv": [ 13.5, 2.5, 2.5, 2 ], "texture": "#texture" },
        "north": { "uv": [ 2.5, 9.5, 13.5, 10.5 ], "texture": "#texture" },
        "west":  { "uv": [ 2, 9.5, 2.5, 10.5 ], "texture": "#texture" },
        "east":  { "uv": [ 13.5, 9.5, 14, 10.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 9.5, 2 ],
    "to": [ 13.5, 10.5, 2.5 ],
    "faces": {
        "up":    { "uv": [ 2.5, 2, 13.5, 2.5 ], "texture": "#texture" },
        "north": { "uv": [ 2.5, 5.5, 13.5, 6.5 ], "texture": "#texture" },
        "west":  { "uv": [ 2, 5.5, 2.5, 6.5 ], "texture": "#texture" },
        "east":  { "uv": [ 13.5, 5.5, 14, 6.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 4.5, 2.5 ],
    "to": [ 13.5, 5.5, 3 ],
    "faces": {
        "down":  { "uv": [ 13.5, 3, 2.5, 2.5 ], "texture": "#texture" },
        "north": { "uv": [ 2.5, 10.5, 13.5, 11.5 ], "texture": "#texture" },
        "west":  { "uv": [ 2.5, 10.5, 3, 11.5 ], "texture": "#texture" },
        "east":  { "uv": [ 13, 10.5, 13.5, 11.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 10.5, 2.5 ],
    "to": [ 13.5, 11.5, 3 ],
    "faces": {
        "up":    { "uv": [ 2.5, 2.5, 13.5, 3 ], "texture": "#texture" },
        "north": { "uv": [ 2.5, 4.5, 13.5, 5.5 ], "texture": "#texture" },
        "west":  { "uv": [ 2.5, 4.5, 3, 5.5 ], "texture": "#texture" },
        "east":  { "uv": [ 13, 4.5, 13.5, 5.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 3.5, 3 ],
    "to": [ 13.5, 4, 4 ],
    "faces": {
        "down":  { "uv": [ 13.5, 4, 2.5, 3 ], "texture": "#texture" },
        "up":    { "uv": [ 2.5, 3, 13.5, 4 ], "texture": "#texture" },
        "north": { "uv": [ 2.5, 12, 13.5, 12.5 ], "texture": "#texture" },
        "west":  { "uv": [ 3, 12, 4, 12.5 ], "texture": "#texture" },
        "east":  { "uv": [ 12, 12, 13, 12.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 4, 3 ],
    "to": [ 13.5, 4.5, 3.5 ],
    "faces": {
        "north": { "uv": [ 2.5, 11.5, 13.5, 12 ], "texture": "#texture" },
        "west":  { "uv": [ 3, 11.5, 3.5, 12 ], "texture": "#texture" },
        "east":  { "uv": [ 12.5, 11.5, 13, 12 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 11.5, 3 ],
    "to": [ 13.5, 12.5, 3.5 ],
    "faces": {
        "up":    { "uv": [ 2.5, 3, 13.5, 3.5 ], "texture": "#texture" },
        "north": { "uv": [ 2.5, 3.5, 13.5, 4.5 ], "texture": "#texture" },
        "south": { "uv": [ 2.5, 3.5, 13.5, 4.5 ], "texture": "#texture" },
        "west":  { "uv": [ 3, 3.5, 3.5, 4.5 ], "texture": "#texture" },
        "east":  { "uv": [ 12.5, 3.5, 13, 4.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 3, 3.5 ],
    "to": [ 13.5, 3.5, 4.5 ],
    "faces": {
        "down":  { "uv": [ 13.5, 4.5, 2.5, 3.5 ], "texture": "#texture" },
        "up":    { "uv": [ 2.5, 3.5, 13.5, 4.5 ], "texture": "#texture" },
        "north": { "uv": [ 2.5, 12.5, 13.5, 13 ], "texture": "#texture" },
        "west":  { "uv": [ 3.5, 12.5, 4.5, 13 ], "texture": "#texture" },
        "east":  { "uv": [ 11.5, 12.5, 12.5, 13 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 12, 3.5 ],
    "to": [ 13.5, 13, 4 ],
    "faces": {
        "up":    { "uv": [ 2.5, 3.5, 13.5, 4 ], "texture": "#texture" },
        "north": { "uv": [ 2.5, 3, 13.5, 4 ], "texture": "#texture" },
        "south": { "uv": [ 2.5, 3, 13.5, 4 ], "texture": "#texture" },
        "west":  { "uv": [ 3.5, 3, 4, 4 ], "texture": "#texture" },
        "east":  { "uv": [ 12, 3, 12.5, 4 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 12.5, 4 ],
    "to": [ 13.5, 13, 4.5 ],
    "faces": {
        "up":    { "uv": [ 2.5, 4, 13.5, 4.5 ], "texture": "#texture" },
        "west":  { "uv": [ 4, 3, 4.5, 3.5 ], "texture": "#texture" },
        "east":  { "uv": [ 11.5, 3, 12, 3.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 2.5, 4.5 ],
    "to": [ 13.5, 3, 5 ],
    "faces": {
        "down":  { "uv": [ 13.5, 5, 2.5, 4.5 ], "texture": "#texture" },
        "north": { "uv": [ 2.5, 13, 13.5, 13.5 ], "texture": "#texture" },
        "west":  { "uv": [ 4.5, 13, 5, 13.5 ], "texture": "#texture" },
        "east":  { "uv": [ 11, 13, 11.5, 13.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 13, 4.5 ],
    "to": [ 13.5, 13.5, 5 ],
    "faces": {
        "up":    { "uv": [ 2.5, 4.5, 13.5, 5 ], "texture": "#texture" },
        "north": { "uv": [ 2.5, 2.5, 13.5, 3 ], "texture": "#texture" },
        "west":  { "uv": [ 4.5, 2.5, 5, 3 ], "texture": "#texture" },
        "east":  { "uv": [ 11, 2.5, 11.5, 3 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 2, 5 ],
    "to": [ 13.5, 2.5, 6.5 ],
    "faces": {
        "down":  { "uv": [ 13.5, 6.5, 2.5, 5 ], "texture": "#texture" },
        "north": { "uv": [ 2.5, 13.5, 13.5, 14 ], "texture": "#texture" },
        "west":  { "uv": [ 5, 13.5, 6.5, 14 ], "texture": "#texture" },
        "east":  { "uv": [ 9.5, 13.5, 11, 14 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 13.5, 5 ],
    "to": [ 13.5, 14, 6.5 ],
    "faces": {
        "up":    { "uv": [ 2.5, 5, 13.5, 6.5 ], "texture": "#texture" },
        "north": { "uv": [ 2.5, 2, 13.5, 2.5 ], "texture": "#texture" },
        "west":  { "uv": [ 5, 2, 6.5, 2.5 ], "texture": "#texture" },
        "east":  { "uv": [ 9.5, 2, 11, 2.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 1.5, 7 ],
    "to": [ 13.5, 2, 9 ],
    "faces": {
        "down":  { "uv": [ 13.5, 9, 2.5, 7 ], "texture": "#texture" },
        "north": { "uv": [ 2.5, 14, 13.5, 14.5 ], "texture": "#texture" },
        "south": { "uv": [ 2.5, 14, 13.5, 14.5 ], "texture": "#texture" },
        "west":  { "uv": [ 7, 14, 9, 14.5 ], "texture": "#texture" },
        "east":  { "uv": [ 7, 14, 9, 14.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 14, 7 ],
    "to": [ 13.5, 14.5, 9 ],
    "faces": {
        "up":    { "uv": [ 2.5, 7, 13.5, 9 ], "texture": "#texture" },
        "north": { "uv": [ 2.5, 1.5, 13.5, 2 ], "texture": "#texture" },
        "south": { "uv": [ 2.5, 1.5, 13.5, 2 ], "texture": "#texture" },
        "west":  { "uv": [ 7, 1.5, 9, 2 ], "texture": "#texture" },
        "east":  { "uv": [ 7, 1.5, 9, 2 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 2, 9.5 ],
    "to": [ 13.5, 2.5, 11 ],
    "faces": {
        "down":  { "uv": [ 13.5, 11, 2.5, 9.5 ], "texture": "#texture" },
        "south": { "uv": [ 2.5, 13.5, 13.5, 14 ], "texture": "#texture" },
        "west":  { "uv": [ 9.5, 13.5, 11, 14 ], "texture": "#texture" },
        "east":  { "uv": [ 5, 13.5, 6.5, 14 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 13.5, 9.5 ],
    "to": [ 13.5, 14, 11 ],
    "faces": {
        "up":    { "uv": [ 2.5, 9.5, 13.5, 11 ], "texture": "#texture" },
        "south": { "uv": [ 2.5, 2, 13.5, 2.5 ], "texture": "#texture" },
        "west":  { "uv": [ 9.5, 2, 11, 2.5 ], "texture": "#texture" },
        "east":  { "uv": [ 5, 2, 6.5, 2.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 2.5, 11 ],
    "to": [ 13.5, 3, 11.5 ],
    "faces": {
        "down":  { "uv": [ 13.5, 11.5, 2.5, 11 ], "texture": "#texture" },
        "south": { "uv": [ 2.5, 13, 13.5, 13.5 ], "texture": "#texture" },
        "west":  { "uv": [ 11, 13, 11.5, 13.5 ], "texture": "#texture" },
        "east":  { "uv": [ 4.5, 13, 5, 13.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 13, 11 ],
    "to": [ 13.5, 13.5, 11.5 ],
    "faces": {
        "up":    { "uv": [ 2.5, 11, 13.5, 11.5 ], "texture": "#texture" },
        "south": { "uv": [ 2.5, 2.5, 13.5, 3 ], "texture": "#texture" },
        "west":  { "uv": [ 11, 2.5, 11.5, 3 ], "texture": "#texture" },
        "east":  { "uv": [ 4.5, 2.5, 5, 3 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 3, 11.5 ],
    "to": [ 13.5, 3.5, 12.5 ],
    "faces": {
        "down":  { "uv": [ 13.5, 12.5, 2.5, 11.5 ], "texture": "#texture" },
        "up":    { "uv": [ 2.5, 11.5, 13.5, 12.5 ], "texture": "#texture" },
        "south": { "uv": [ 2.5, 12.5, 13.5, 13 ], "texture": "#texture" },
        "west":  { "uv": [ 11.5, 12.5, 12.5, 13 ], "texture": "#texture" },
        "east":  { "uv": [ 3.5, 12.5, 4.5, 13 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 12.5, 11.5 ],
    "to": [ 13.5, 13, 12.5 ],
    "faces": {
        "down":  { "uv": [ 13.5, 12.5, 2.5, 11.5 ], "texture": "#texture" },
        "up":    { "uv": [ 2.5, 11.5, 13.5, 12.5 ], "texture": "#texture" },
        "south": { "uv": [ 2.5, 3, 13.5, 3.5 ], "texture": "#texture" },
        "west":  { "uv": [ 11.5, 3, 12.5, 3.5 ], "texture": "#texture" },
        "east":  { "uv": [ 3.5, 3, 4.5, 3.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 3.5, 12 ],
    "to": [ 13.5, 4, 13 ],
    "faces": {
        "down":  { "uv": [ 13.5, 13, 2.5, 12 ], "texture": "#texture" },
        "up":    { "uv": [ 2.5, 12, 13.5, 13 ], "texture": "#texture" },
        "south": { "uv": [ 2.5, 12, 13.5, 12.5 ], "texture": "#texture" },
        "west":  { "uv": [ 12, 12, 13, 12.5 ], "texture": "#texture" },
        "east":  { "uv": [ 3, 12, 4, 12.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 12, 12 ],
    "to": [ 13.5, 12.5, 13 ],
    "faces": {
        "down":  { "uv": [ 13.5, 13, 2.5, 12 ], "texture": "#texture" },
        "up":    { "uv": [ 2.5, 12, 13.5, 13 ], "texture": "#texture" },
        "south": { "uv": [ 2.5, 3.5, 13.5, 4 ], "texture": "#texture" },
        "west":  { "uv": [ 12, 3.5, 13, 4 ], "texture": "#texture" },
        "east":  { "uv": [ 3, 3.5, 4, 4 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 4, 12.5 ],
    "to": [ 13.5, 4.5, 13 ],
    "faces": {
        "south": { "uv": [ 2.5, 11.5, 13.5, 12 ], "texture": "#texture" },
        "west":  { "uv": [ 12.5, 11.5, 13, 12 ], "texture": "#texture" },
        "east":  { "uv": [ 3, 11.5, 3.5, 12 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 11.5, 12.5 ],
    "to": [ 13.5, 12, 13 ],
    "faces": {
        "south": { "uv": [ 2.5, 4, 13.5, 4.5 ], "texture": "#texture" },
        "west":  { "uv": [ 12.5, 4, 13, 4.5 ], "texture": "#texture" },
        "east":  { "uv": [ 3, 4, 3.5, 4.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 4.5, 13 ],
    "to": [ 13.5, 5.5, 13.5 ],
    "faces": {
        "down":  { "uv": [ 13.5, 13.5, 2.5, 13 ], "texture": "#texture" },
        "south": { "uv": [ 2.5, 10.5, 13.5, 11.5 ], "texture": "#texture" },
        "west":  { "uv": [ 13, 10.5, 13.5, 11.5 ], "texture": "#texture" },
        "east":  { "uv": [ 2.5, 10.5, 3, 11.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 10.5, 13 ],
    "to": [ 13.5, 11.5, 13.5 ],
    "faces": {
        "up":    { "uv": [ 2.5, 13, 13.5, 13.5 ], "texture": "#texture" },
        "south": { "uv": [ 2.5, 4.5, 13.5, 5.5 ], "texture": "#texture" },
        "west":  { "uv": [ 13, 4.5, 13.5, 5.5 ], "texture": "#texture" },
        "east":  { "uv": [ 2.5, 4.5, 3, 5.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 5.5, 13.5 ],
    "to": [ 13.5, 6.5, 14 ],
    "faces": {
        "down":  { "uv": [ 13.5, 14, 2.5, 13.5 ], "texture": "#texture" },
        "south": { "uv": [ 2.5, 9.5, 13.5, 10.5 ], "texture": "#texture" },
        "west":  { "uv": [ 13.5, 9.5, 14, 10.5 ], "texture": "#texture" },
        "east":  { "uv": [ 2, 9.5, 2.5, 10.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 9.5, 13.5 ],
    "to": [ 13.5, 10.5, 14 ],
    "faces": {
        "up":    { "uv": [ 2.5, 13.5, 13.5, 14 ], "texture": "#texture" },
        "south": { "uv": [ 2.5, 5.5, 13.5, 6.5 ], "texture": "#texture" },
        "west":  { "uv": [ 13.5, 5.5, 14, 6.5 ], "texture": "#texture" },
        "east":  { "uv": [ 2, 5.5, 2.5, 6.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 2.5, 7, 14 ],
    "to": [ 13.5, 9, 14.5 ],
    "faces": {
        "down":  { "uv": [ 13.5, 14.5, 2.5, 14 ], "texture": "#texture" },
        "up":    { "uv": [ 2.5, 14, 13.5, 14.5 ], "texture": "#texture" },
        "south": { "uv": [ 2.5, 7, 13.5, 9 ], "texture": "#texture" },
        "west":  { "uv": [ 14, 7, 14.5, 9 ], "texture": "#texture" },
        "east":  { "uv": [ 1.5, 7, 2, 9 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3, 5.5, 1.5 ],
    "to": [ 13, 7, 2 ],
    "faces": {
        "down":  { "uv": [ 13, 2, 3, 1.5 ], "texture": "#texture" },
        "north": { "uv": [ 3, 9, 13, 10.5 ], "texture": "#texture" },
        "south": { "uv": [ 3, 9, 13, 10.5 ], "texture": "#texture" },
        "west":  { "uv": [ 1.5, 9, 2, 10.5 ], "texture": "#texture" },
        "east":  { "uv": [ 14, 9, 14.5, 10.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3, 9, 1.5 ],
    "to": [ 13, 10.5, 2 ],
    "faces": {
        "up":    { "uv": [ 3, 1.5, 13, 2 ], "texture": "#texture" },
        "north": { "uv": [ 3, 5.5, 13, 7 ], "texture": "#texture" },
        "south": { "uv": [ 3, 5.5, 13, 7 ], "texture": "#texture" },
        "west":  { "uv": [ 1.5, 5.5, 2, 7 ], "texture": "#texture" },
        "east":  { "uv": [ 14, 5.5, 14.5, 7 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3, 4.5, 2 ],
    "to": [ 13, 5.5, 2.5 ],
    "faces": {
        "down":  { "uv": [ 13, 2.5, 3, 2 ], "texture": "#texture" },
        "north": { "uv": [ 3, 10.5, 13, 11.5 ], "texture": "#texture" },
        "west":  { "uv": [ 2, 10.5, 2.5, 11.5 ], "texture": "#texture" },
        "east":  { "uv": [ 13.5, 10.5, 14, 11.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3, 10.5, 2 ],
    "to": [ 13, 11.5, 2.5 ],
    "faces": {
        "up":    { "uv": [ 3, 2, 13, 2.5 ], "texture": "#texture" },
        "north": { "uv": [ 3, 4.5, 13, 5.5 ], "texture": "#texture" },
        "west":  { "uv": [ 2, 4.5, 2.5, 5.5 ], "texture": "#texture" },
        "east":  { "uv": [ 13.5, 4.5, 14, 5.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3, 3.5, 2.5 ],
    "to": [ 13, 4.5, 3 ],
    "faces": {
        "down":  { "uv": [ 13, 3, 3, 2.5 ], "texture": "#texture" },
        "north": { "uv": [ 3, 11.5, 13, 12.5 ], "texture": "#texture" },
        "south": { "uv": [ 3, 11.5, 13, 12.5 ], "texture": "#texture" },
        "west":  { "uv": [ 2.5, 11.5, 3, 12.5 ], "texture": "#texture" },
        "east":  { "uv": [ 13, 11.5, 13.5, 12.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3, 11.5, 2.5 ],
    "to": [ 13, 12.5, 3 ],
    "faces": {
        "up":    { "uv": [ 3, 2.5, 13, 3 ], "texture": "#texture" },
        "north": { "uv": [ 3, 3.5, 13, 4.5 ], "texture": "#texture" },
        "west":  { "uv": [ 2.5, 3.5, 3, 4.5 ], "texture": "#texture" },
        "east":  { "uv": [ 13, 3.5, 13.5, 4.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3, 3, 3 ],
    "to": [ 13, 3.5, 3.5 ],
    "faces": {
        "down":  { "uv": [ 13, 3.5, 3, 3 ], "texture": "#texture" },
        "north": { "uv": [ 3, 12.5, 13, 13 ], "texture": "#texture" },
        "west":  { "uv": [ 3, 12.5, 3.5, 13 ], "texture": "#texture" },
        "east":  { "uv": [ 12.5, 12.5, 13, 13 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3, 12.5, 3 ],
    "to": [ 13, 13, 3.5 ],
    "faces": {
        "up":    { "uv": [ 3, 3, 13, 3.5 ], "texture": "#texture" },
        "north": { "uv": [ 3, 3, 13, 3.5 ], "texture": "#texture" },
        "west":  { "uv": [ 3, 3, 3.5, 3.5 ], "texture": "#texture" },
        "east":  { "uv": [ 12.5, 3, 13, 3.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3, 2.5, 3.5 ],
    "to": [ 13, 3, 4.5 ],
    "faces": {
        "down":  { "uv": [ 13, 4.5, 3, 3.5 ], "texture": "#texture" },
        "north": { "uv": [ 3, 13, 13, 13.5 ], "texture": "#texture" },
        "west":  { "uv": [ 3.5, 13, 4.5, 13.5 ], "texture": "#texture" },
        "east":  { "uv": [ 11.5, 13, 12.5, 13.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3, 13, 3.5 ],
    "to": [ 13, 13.5, 4.5 ],
    "faces": {
        "down":  { "uv": [ 13, 4.5, 3, 3.5 ], "texture": "#texture" },
        "up":    { "uv": [ 3, 3.5, 13, 4.5 ], "texture": "#texture" },
        "north": { "uv": [ 3, 2.5, 13, 3 ], "texture": "#texture" },
        "west":  { "uv": [ 3.5, 2.5, 4.5, 3 ], "texture": "#texture" },
        "east":  { "uv": [ 11.5, 2.5, 12.5, 3 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3, 2, 4.5 ],
    "to": [ 13, 2.5, 5 ],
    "faces": {
        "down":  { "uv": [ 13, 5, 3, 4.5 ], "texture": "#texture" },
        "north": { "uv": [ 3, 13.5, 13, 14 ], "texture": "#texture" },
        "west":  { "uv": [ 4.5, 13.5, 5, 14 ], "texture": "#texture" },
        "east":  { "uv": [ 11, 13.5, 11.5, 14 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3, 13.5, 4.5 ],
    "to": [ 13, 14, 5 ],
    "faces": {
        "up":    { "uv": [ 3, 4.5, 13, 5 ], "texture": "#texture" },
        "north": { "uv": [ 3, 2, 13, 2.5 ], "texture": "#texture" },
        "west":  { "uv": [ 4.5, 2, 5, 2.5 ], "texture": "#texture" },
        "east":  { "uv": [ 11, 2, 11.5, 2.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3, 1.5, 5.5 ],
    "to": [ 13, 2, 7 ],
    "faces": {
        "down":  { "uv": [ 13, 7, 3, 5.5 ], "texture": "#texture" },
        "up":    { "uv": [ 3, 5.5, 13, 7 ], "texture": "#texture" },
        "north": { "uv": [ 3, 14, 13, 14.5 ], "texture": "#texture" },
        "west":  { "uv": [ 5.5, 14, 7, 14.5 ], "texture": "#texture" },
        "east":  { "uv": [ 9, 14, 10.5, 14.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3, 14, 5.5 ],
    "to": [ 13, 14.5, 7 ],
    "faces": {
        "down":  { "uv": [ 13, 7, 3, 5.5 ], "texture": "#texture" },
        "up":    { "uv": [ 3, 5.5, 13, 7 ], "texture": "#texture" },
        "north": { "uv": [ 3, 1.5, 13, 2 ], "texture": "#texture" },
        "west":  { "uv": [ 5.5, 1.5, 7, 2 ], "texture": "#texture" },
        "east":  { "uv": [ 9, 1.5, 10.5, 2 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3, 1.5, 9 ],
    "to": [ 13, 2, 10.5 ],
    "faces": {
        "down":  { "uv": [ 13, 10.5, 3, 9 ], "texture": "#texture" },
        "up":    { "uv": [ 3, 9, 13, 10.5 ], "texture": "#texture" },
        "south": { "uv": [ 3, 14, 13, 14.5 ], "texture": "#texture" },
        "west":  { "uv": [ 9, 14, 10.5, 14.5 ], "texture": "#texture" },
        "east":  { "uv": [ 5.5, 14, 7, 14.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3, 14, 9 ],
    "to": [ 13, 14.5, 10.5 ],
    "faces": {
        "down":  { "uv": [ 13, 10.5, 3, 9 ], "texture": "#texture" },
        "up":    { "uv": [ 3, 9, 13, 10.5 ], "texture": "#texture" },
        "south": { "uv": [ 3, 1.5, 13, 2 ], "texture": "#texture" },
        "west":  { "uv": [ 9, 1.5, 10.5, 2 ], "texture": "#texture" },
        "east":  { "uv": [ 5.5, 1.5, 7, 2 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3, 2, 11 ],
    "to": [ 13, 2.5, 11.5 ],
    "faces": {
        "down":  { "uv": [ 13, 11.5, 3, 11 ], "texture": "#texture" },
        "south": { "uv": [ 3, 13.5, 13, 14 ], "texture": "#texture" },
        "west":  { "uv": [ 11, 13.5, 11.5, 14 ], "texture": "#texture" },
        "east":  { "uv": [ 4.5, 13.5, 5, 14 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3, 13.5, 11 ],
    "to": [ 13, 14, 11.5 ],
    "faces": {
        "up":    { "uv": [ 3, 11, 13, 11.5 ], "texture": "#texture" },
        "south": { "uv": [ 3, 2, 13, 2.5 ], "texture": "#texture" },
        "west":  { "uv": [ 11, 2, 11.5, 2.5 ], "texture": "#texture" },
        "east":  { "uv": [ 4.5, 2, 5, 2.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3, 2.5, 11.5 ],
    "to": [ 13, 3, 12.5 ],
    "faces": {
        "down":  { "uv": [ 13, 12.5, 3, 11.5 ], "texture": "#texture" },
        "south": { "uv": [ 3, 13, 13, 13.5 ], "texture": "#texture" },
        "west":  { "uv": [ 11.5, 13, 12.5, 13.5 ], "texture": "#texture" },
        "east":  { "uv": [ 3.5, 13, 4.5, 13.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3, 13, 11.5 ],
    "to": [ 13, 13.5, 12.5 ],
    "faces": {
        "up":    { "uv": [ 3, 11.5, 13, 12.5 ], "texture": "#texture" },
        "south": { "uv": [ 3, 2.5, 13, 3 ], "texture": "#texture" },
        "west":  { "uv": [ 11.5, 2.5, 12.5, 3 ], "texture": "#texture" },
        "east":  { "uv": [ 3.5, 2.5, 4.5, 3 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3, 3, 12.5 ],
    "to": [ 13, 3.5, 13 ],
    "faces": {
        "down":  { "uv": [ 13, 13, 3, 12.5 ], "texture": "#texture" },
        "south": { "uv": [ 3, 12.5, 13, 13 ], "texture": "#texture" },
        "west":  { "uv": [ 12.5, 12.5, 13, 13 ], "texture": "#texture" },
        "east":  { "uv": [ 3, 12.5, 3.5, 13 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3, 12.5, 12.5 ],
    "to": [ 13, 13, 13 ],
    "faces": {
        "up":    { "uv": [ 3, 12.5, 13, 13 ], "texture": "#texture" },
        "south": { "uv": [ 3, 3, 13, 3.5 ], "texture": "#texture" },
        "west":  { "uv": [ 12.5, 3, 13, 3.5 ], "texture": "#texture" },
        "east":  { "uv": [ 3, 3, 3.5, 3.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3, 3.5, 13 ],
    "to": [ 13, 4.5, 13.5 ],
    "faces": {
        "down":  { "uv": [ 13, 13.5, 3, 13 ], "texture": "#texture" },
        "north": { "uv": [ 3, 11.5, 13, 12.5 ], "texture": "#texture" },
        "south": { "uv": [ 3, 11.5, 13, 12.5 ], "texture": "#texture" },
        "west":  { "uv": [ 13, 11.5, 13.5, 12.5 ], "texture": "#texture" },
        "east":  { "uv": [ 2.5, 11.5, 3, 12.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3, 11.5, 13 ],
    "to": [ 13, 12.5, 13.5 ],
    "faces": {
        "up":    { "uv": [ 3, 13, 13, 13.5 ], "texture": "#texture" },
        "north": { "uv": [ 3, 3.5, 13, 4.5 ], "texture": "#texture" },
        "south": { "uv": [ 3, 3.5, 13, 4.5 ], "texture": "#texture" },
        "west":  { "uv": [ 13, 3.5, 13.5, 4.5 ], "texture": "#texture" },
        "east":  { "uv": [ 2.5, 3.5, 3, 4.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3, 4.5, 13.5 ],
    "to": [ 13, 5.5, 14 ],
    "faces": {
        "down":  { "uv": [ 13, 14, 3, 13.5 ], "texture": "#texture" },
        "south": { "uv": [ 3, 10.5, 13, 11.5 ], "texture": "#texture" },
        "west":  { "uv": [ 13.5, 10.5, 14, 11.5 ], "texture": "#texture" },
        "east":  { "uv": [ 2, 10.5, 2.5, 11.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3, 10.5, 13.5 ],
    "to": [ 13, 11.5, 14 ],
    "faces": {
        "up":    { "uv": [ 3, 13.5, 13, 14 ], "texture": "#texture" },
        "south": { "uv": [ 3, 4.5, 13, 5.5 ], "texture": "#texture" },
        "west":  { "uv": [ 13.5, 4.5, 14, 5.5 ], "texture": "#texture" },
        "east":  { "uv": [ 2, 4.5, 2.5, 5.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3, 5.5, 14 ],
    "to": [ 13, 7, 14.5 ],
    "faces": {
        "down":  { "uv": [ 13, 14.5, 3, 14 ], "texture": "#texture" },
        "north": { "uv": [ 3, 9, 13, 10.5 ], "texture": "#texture" },
        "south": { "uv": [ 3, 9, 13, 10.5 ], "texture": "#texture" },
        "west":  { "uv": [ 14, 9, 14.5, 10.5 ], "texture": "#texture" },
        "east":  { "uv": [ 1.5, 9, 2, 10.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3, 9, 14 ],
    "to": [ 13, 10.5, 14.5 ],
    "faces": {
        "up":    { "uv": [ 3, 14, 13, 14.5 ], "texture": "#texture" },
        "north": { "uv": [ 3, 5.5, 13, 7 ], "texture": "#texture" },
        "south": { "uv": [ 3, 5.5, 13, 7 ], "texture": "#texture" },
        "west":  { "uv": [ 14, 5.5, 14.5, 7 ], "texture": "#texture" },
        "east":  { "uv": [ 1.5, 5.5, 2, 7 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3.5, 6, 1 ],
    "to": [ 12.5, 10, 1.5 ],
    "faces": {
        "down":  { "uv": [ 12.5, 1.5, 3.5, 1 ], "texture": "#texture" },
        "up":    { "uv": [ 3.5, 1, 12.5, 1.5 ], "texture": "#texture" },
        "north": { "uv": [ 3.5, 6, 12.5, 10 ], "texture": "#texture" },
        "south": { "uv": [ 3.5, 6, 12.5, 10 ], "texture": "#texture" },
        "west":  { "uv": [ 1, 6, 1.5, 10 ], "texture": "#texture" },
        "east":  { "uv": [ 14.5, 6, 15, 10 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3.5, 4.5, 1.5 ],
    "to": [ 12.5, 5.5, 2 ],
    "faces": {
        "down":  { "uv": [ 12.5, 2, 3.5, 1.5 ], "texture": "#texture" },
        "north": { "uv": [ 3.5, 10.5, 12.5, 11.5 ], "texture": "#texture" },
        "west":  { "uv": [ 1.5, 10.5, 2, 11.5 ], "texture": "#texture" },
        "east":  { "uv": [ 14, 10.5, 14.5, 11.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3.5, 10.5, 1.5 ],
    "to": [ 12.5, 11.5, 2 ],
    "faces": {
        "up":    { "uv": [ 3.5, 1.5, 12.5, 2 ], "texture": "#texture" },
        "north": { "uv": [ 3.5, 4.5, 12.5, 5.5 ], "texture": "#texture" },
        "west":  { "uv": [ 1.5, 4.5, 2, 5.5 ], "texture": "#texture" },
        "east":  { "uv": [ 14, 4.5, 14.5, 5.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3.5, 4, 2 ],
    "to": [ 12.5, 4.5, 2.5 ],
    "faces": {
        "down":  { "uv": [ 12.5, 2.5, 3.5, 2 ], "texture": "#texture" },
        "north": { "uv": [ 3.5, 11.5, 12.5, 12 ], "texture": "#texture" },
        "west":  { "uv": [ 2, 11.5, 2.5, 12 ], "texture": "#texture" },
        "east":  { "uv": [ 13.5, 11.5, 14, 12 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3.5, 11.5, 2 ],
    "to": [ 12.5, 12, 2.5 ],
    "faces": {
        "up":    { "uv": [ 3.5, 2, 12.5, 2.5 ], "texture": "#texture" },
        "north": { "uv": [ 3.5, 4, 12.5, 4.5 ], "texture": "#texture" },
        "west":  { "uv": [ 2, 4, 2.5, 4.5 ], "texture": "#texture" },
        "east":  { "uv": [ 13.5, 4, 14, 4.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3.5, 3, 2.5 ],
    "to": [ 12.5, 3.5, 3 ],
    "faces": {
        "down":  { "uv": [ 12.5, 3, 3.5, 2.5 ], "texture": "#texture" },
        "north": { "uv": [ 3.5, 12.5, 12.5, 13 ], "texture": "#texture" },
        "west":  { "uv": [ 2.5, 12.5, 3, 13 ], "texture": "#texture" },
        "east":  { "uv": [ 13, 12.5, 13.5, 13 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3.5, 12.5, 2.5 ],
    "to": [ 12.5, 13, 3 ],
    "faces": {
        "up":    { "uv": [ 3.5, 2.5, 12.5, 3 ], "texture": "#texture" },
        "north": { "uv": [ 3.5, 3, 12.5, 3.5 ], "texture": "#texture" },
        "west":  { "uv": [ 2.5, 3, 3, 3.5 ], "texture": "#texture" },
        "east":  { "uv": [ 13, 3, 13.5, 3.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3.5, 2.5, 3 ],
    "to": [ 12.5, 3, 3.5 ],
    "faces": {
        "down":  { "uv": [ 12.5, 3.5, 3.5, 3 ], "texture": "#texture" },
        "north": { "uv": [ 3.5, 13, 12.5, 13.5 ], "texture": "#texture" },
        "west":  { "uv": [ 3, 13, 3.5, 13.5 ], "texture": "#texture" },
        "east":  { "uv": [ 12.5, 13, 13, 13.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3.5, 13, 3 ],
    "to": [ 12.5, 13.5, 3.5 ],
    "faces": {
        "up":    { "uv": [ 3.5, 3, 12.5, 3.5 ], "texture": "#texture" },
        "north": { "uv": [ 3.5, 2.5, 12.5, 3 ], "texture": "#texture" },
        "west":  { "uv": [ 3, 2.5, 3.5, 3 ], "texture": "#texture" },
        "east":  { "uv": [ 12.5, 2.5, 13, 3 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3.5, 2, 4 ],
    "to": [ 12.5, 2.5, 4.5 ],
    "faces": {
        "down":  { "uv": [ 12.5, 4.5, 3.5, 4 ], "texture": "#texture" },
        "north": { "uv": [ 3.5, 13.5, 12.5, 14 ], "texture": "#texture" },
        "west":  { "uv": [ 4, 13.5, 4.5, 14 ], "texture": "#texture" },
        "east":  { "uv": [ 11.5, 13.5, 12, 14 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3.5, 13.5, 4 ],
    "to": [ 12.5, 14, 4.5 ],
    "faces": {
        "up":    { "uv": [ 3.5, 4, 12.5, 4.5 ], "texture": "#texture" },
        "north": { "uv": [ 3.5, 2, 12.5, 2.5 ], "texture": "#texture" },
        "west":  { "uv": [ 4, 2, 4.5, 2.5 ], "texture": "#texture" },
        "east":  { "uv": [ 11.5, 2, 12, 2.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3.5, 1.5, 4.5 ],
    "to": [ 12.5, 2, 5.5 ],
    "faces": {
        "down":  { "uv": [ 12.5, 5.5, 3.5, 4.5 ], "texture": "#texture" },
        "up":    { "uv": [ 3.5, 4.5, 12.5, 5.5 ], "texture": "#texture" },
        "north": { "uv": [ 3.5, 14, 12.5, 14.5 ], "texture": "#texture" },
        "west":  { "uv": [ 4.5, 14, 5.5, 14.5 ], "texture": "#texture" },
        "east":  { "uv": [ 10.5, 14, 11.5, 14.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3.5, 14, 4.5 ],
    "to": [ 12.5, 14.5, 5.5 ],
    "faces": {
        "down":  { "uv": [ 12.5, 5.5, 3.5, 4.5 ], "texture": "#texture" },
        "up":    { "uv": [ 3.5, 4.5, 12.5, 5.5 ], "texture": "#texture" },
        "north": { "uv": [ 3.5, 1.5, 12.5, 2 ], "texture": "#texture" },
        "west":  { "uv": [ 4.5, 1.5, 5.5, 2 ], "texture": "#texture" },
        "east":  { "uv": [ 10.5, 1.5, 11.5, 2 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3.5, 1, 6 ],
    "to": [ 12.5, 1.5, 10 ],
    "faces": {
        "down":  { "uv": [ 12.5, 10, 3.5, 6 ], "texture": "#texture" },
        "up":    { "uv": [ 3.5, 6, 12.5, 10 ], "texture": "#texture" },
        "north": { "uv": [ 3.5, 14.5, 12.5, 15 ], "texture": "#texture" },
        "south": { "uv": [ 3.5, 14.5, 12.5, 15 ], "texture": "#texture" },
        "west":  { "uv": [ 6, 14.5, 10, 15 ], "texture": "#texture" },
        "east":  { "uv": [ 6, 14.5, 10, 15 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3.5, 14.5, 6 ],
    "to": [ 12.5, 15, 10 ],
    "faces": {
        "down":  { "uv": [ 12.5, 10, 3.5, 6 ], "texture": "#texture" },
        "up":    { "uv": [ 3.5, 6, 12.5, 10 ], "texture": "#texture" },
        "north": { "uv": [ 3.5, 1, 12.5, 1.5 ], "texture": "#texture" },
        "south": { "uv": [ 3.5, 1, 12.5, 1.5 ], "texture": "#texture" },
        "west":  { "uv": [ 6, 1, 10, 1.5 ], "texture": "#texture" },
        "east":  { "uv": [ 6, 1, 10, 1.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3.5, 1.5, 10.5 ],
    "to": [ 12.5, 2, 11.5 ],
    "faces": {
        "down":  { "uv": [ 12.5, 11.5, 3.5, 10.5 ], "texture": "#texture" },
        "up":    { "uv": [ 3.5, 10.5, 12.5, 11.5 ], "texture": "#texture" },
        "south": { "uv": [ 3.5, 14, 12.5, 14.5 ], "texture": "#texture" },
        "west":  { "uv": [ 10.5, 14, 11.5, 14.5 ], "texture": "#texture" },
        "east":  { "uv": [ 4.5, 14, 5.5, 14.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3.5, 14, 10.5 ],
    "to": [ 12.5, 14.5, 11.5 ],
    "faces": {
        "down":  { "uv": [ 12.5, 11.5, 3.5, 10.5 ], "texture": "#texture" },
        "up":    { "uv": [ 3.5, 10.5, 12.5, 11.5 ], "texture": "#texture" },
        "south": { "uv": [ 3.5, 1.5, 12.5, 2 ], "texture": "#texture" },
        "west":  { "uv": [ 10.5, 1.5, 11.5, 2 ], "texture": "#texture" },
        "east":  { "uv": [ 4.5, 1.5, 5.5, 2 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3.5, 2, 11.5 ],
    "to": [ 12.5, 2.5, 12 ],
    "faces": {
        "down":  { "uv": [ 12.5, 12, 3.5, 11.5 ], "texture": "#texture" },
        "south": { "uv": [ 3.5, 13.5, 12.5, 14 ], "texture": "#texture" },
        "west":  { "uv": [ 11.5, 13.5, 12, 14 ], "texture": "#texture" },
        "east":  { "uv": [ 4, 13.5, 4.5, 14 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3.5, 13.5, 11.5 ],
    "to": [ 12.5, 14, 12 ],
    "faces": {
        "up":    { "uv": [ 3.5, 11.5, 12.5, 12 ], "texture": "#texture" },
        "south": { "uv": [ 3.5, 2, 12.5, 2.5 ], "texture": "#texture" },
        "west":  { "uv": [ 11.5, 2, 12, 2.5 ], "texture": "#texture" },
        "east":  { "uv": [ 4, 2, 4.5, 2.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3.5, 2.5, 12.5 ],
    "to": [ 12.5, 3, 13 ],
    "faces": {
        "down":  { "uv": [ 12.5, 13, 3.5, 12.5 ], "texture": "#texture" },
        "south": { "uv": [ 3.5, 13, 12.5, 13.5 ], "texture": "#texture" },
        "west":  { "uv": [ 12.5, 13, 13, 13.5 ], "texture": "#texture" },
        "east":  { "uv": [ 3, 13, 3.5, 13.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3.5, 13, 12.5 ],
    "to": [ 12.5, 13.5, 13 ],
    "faces": {
        "up":    { "uv": [ 3.5, 12.5, 12.5, 13 ], "texture": "#texture" },
        "south": { "uv": [ 3.5, 2.5, 12.5, 3 ], "texture": "#texture" },
        "west":  { "uv": [ 12.5, 2.5, 13, 3 ], "texture": "#texture" },
        "east":  { "uv": [ 3, 2.5, 3.5, 3 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3.5, 3, 13 ],
    "to": [ 12.5, 3.5, 13.5 ],
    "faces": {
        "down":  { "uv": [ 12.5, 13.5, 3.5, 13 ], "texture": "#texture" },
        "south": { "uv": [ 3.5, 12.5, 12.5, 13 ], "texture": "#texture" },
        "west":  { "uv": [ 13, 12.5, 13.5, 13 ], "texture": "#texture" },
        "east":  { "uv": [ 2.5, 12.5, 3, 13 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3.5, 12.5, 13 ],
    "to": [ 12.5, 13, 13.5 ],
    "faces": {
        "up":    { "uv": [ 3.5, 13, 12.5, 13.5 ], "texture": "#texture" },
        "south": { "uv": [ 3.5, 3, 12.5, 3.5 ], "texture": "#texture" },
        "west":  { "uv": [ 13, 3, 13.5, 3.5 ], "texture": "#texture" },
        "east":  { "uv": [ 2.5, 3, 3, 3.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3.5, 4, 13.5 ],
    "to": [ 12.5, 4.5, 14 ],
    "faces": {
        "down":  { "uv": [ 12.5, 14, 3.5, 13.5 ], "texture": "#texture" },
        "south": { "uv": [ 3.5, 11.5, 12.5, 12 ], "texture": "#texture" },
        "west":  { "uv": [ 13.5, 11.5, 14, 12 ], "texture": "#texture" },
        "east":  { "uv": [ 2, 11.5, 2.5, 12 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3.5, 11.5, 13.5 ],
    "to": [ 12.5, 12, 14 ],
    "faces": {
        "up":    { "uv": [ 3.5, 13.5, 12.5, 14 ], "texture": "#texture" },
        "south": { "uv": [ 3.5, 4, 12.5, 4.5 ], "texture": "#texture" },
        "west":  { "uv": [ 13.5, 4, 14, 4.5 ], "texture": "#texture" },
        "east":  { "uv": [ 2, 4, 2.5, 4.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3.5, 4.5, 14 ],
    "to": [ 12.5, 5.5, 14.5 ],
    "faces": {
        "down":  { "uv": [ 12.5, 14.5, 3.5, 14 ], "texture": "#texture" },
        "south": { "uv": [ 3.5, 10.5, 12.5, 11.5 ], "texture": "#texture" },
        "west":  { "uv": [ 14, 10.5, 14.5, 11.5 ], "texture": "#texture" },
        "east":  { "uv": [ 1.5, 10.5, 2, 11.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3.5, 10.5, 14 ],
    "to": [ 12.5, 11.5, 14.5 ],
    "faces": {
        "up":    { "uv": [ 3.5, 14, 12.5, 14.5 ], "texture": "#texture" },
        "south": { "uv": [ 3.5, 4.5, 12.5, 5.5 ], "texture": "#texture" },
        "west":  { "uv": [ 14, 4.5, 14.5, 5.5 ], "texture": "#texture" },
        "east":  { "uv": [ 1.5, 4.5, 2, 5.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 3.5, 6, 14.5 ],
    "to": [ 12.5, 10, 15 ],
    "faces": {
        "down":  { "uv": [ 12.5, 15, 3.5, 14.5 ], "texture": "#texture" },
        "up":    { "uv": [ 3.5, 14.5, 12.5, 15 ], "texture": "#texture" },
        "north": { "uv": [ 3.5, 6, 12.5, 10 ], "texture": "#texture" },
        "south": { "uv": [ 3.5, 6, 12.5, 10 ], "texture": "#texture" },
        "west":  { "uv": [ 14.5, 6, 15, 10 ], "texture": "#texture" },
        "east":  { "uv": [ 1, 6, 1.5, 10 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4, 7.5, 0.5 ],
    "to": [ 12, 8.5, 1 ],
    "faces": {
        "down":  { "uv": [ 12, 1, 4, 0.5 ], "texture": "#texture" },
        "up":    { "uv": [ 4, 0.5, 12, 1 ], "texture": "#texture" },
        "north": { "uv": [ 4, 7.5, 12, 8.5 ], "texture": "#texture" },
        "west":  { "uv": [ 0.5, 7.5, 1, 8.5 ], "texture": "#texture" },
        "east":  { "uv": [ 15, 7.5, 15.5, 8.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4, 5, 1 ],
    "to": [ 12, 6, 1.5 ],
    "faces": {
        "down":  { "uv": [ 12, 1.5, 4, 1 ], "texture": "#texture" },
        "north": { "uv": [ 4, 10, 12, 11 ], "texture": "#texture" },
        "south": { "uv": [ 4, 10, 12, 11 ], "texture": "#texture" },
        "west":  { "uv": [ 1, 10, 1.5, 11 ], "texture": "#texture" },
        "east":  { "uv": [ 14.5, 10, 15, 11 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4, 10, 1 ],
    "to": [ 12, 11, 1.5 ],
    "faces": {
        "up":    { "uv": [ 4, 1, 12, 1.5 ], "texture": "#texture" },
        "north": { "uv": [ 4, 5, 12, 6 ], "texture": "#texture" },
        "south": { "uv": [ 4, 5, 12, 6 ], "texture": "#texture" },
        "west":  { "uv": [ 1, 5, 1.5, 6 ], "texture": "#texture" },
        "east":  { "uv": [ 14.5, 5, 15, 6 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4, 4, 1.5 ],
    "to": [ 12, 4.5, 2 ],
    "faces": {
        "down":  { "uv": [ 12, 2, 4, 1.5 ], "texture": "#texture" },
        "north": { "uv": [ 4, 11.5, 12, 12 ], "texture": "#texture" },
        "west":  { "uv": [ 1.5, 11.5, 2, 12 ], "texture": "#texture" },
        "east":  { "uv": [ 14, 11.5, 14.5, 12 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4, 11.5, 1.5 ],
    "to": [ 12, 12, 2 ],
    "faces": {
        "up":    { "uv": [ 4, 1.5, 12, 2 ], "texture": "#texture" },
        "north": { "uv": [ 4, 4, 12, 4.5 ], "texture": "#texture" },
        "west":  { "uv": [ 1.5, 4, 2, 4.5 ], "texture": "#texture" },
        "east":  { "uv": [ 14, 4, 14.5, 4.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4, 3.5, 2 ],
    "to": [ 12, 4, 2.5 ],
    "faces": {
        "down":  { "uv": [ 12, 2.5, 4, 2 ], "texture": "#texture" },
        "north": { "uv": [ 4, 12, 12, 12.5 ], "texture": "#texture" },
        "west":  { "uv": [ 2, 12, 2.5, 12.5 ], "texture": "#texture" },
        "east":  { "uv": [ 13.5, 12, 14, 12.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4, 12, 2 ],
    "to": [ 12, 12.5, 2.5 ],
    "faces": {
        "up":    { "uv": [ 4, 2, 12, 2.5 ], "texture": "#texture" },
        "north": { "uv": [ 4, 3.5, 12, 4 ], "texture": "#texture" },
        "west":  { "uv": [ 2, 3.5, 2.5, 4 ], "texture": "#texture" },
        "east":  { "uv": [ 13.5, 3.5, 14, 4 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4, 2, 3.5 ],
    "to": [ 12, 2.5, 4 ],
    "faces": {
        "down":  { "uv": [ 12, 4, 4, 3.5 ], "texture": "#texture" },
        "north": { "uv": [ 4, 13.5, 12, 14 ], "texture": "#texture" },
        "west":  { "uv": [ 3.5, 13.5, 4, 14 ], "texture": "#texture" },
        "east":  { "uv": [ 12, 13.5, 12.5, 14 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4, 13.5, 3.5 ],
    "to": [ 12, 14, 4 ],
    "faces": {
        "up":    { "uv": [ 4, 3.5, 12, 4 ], "texture": "#texture" },
        "north": { "uv": [ 4, 2, 12, 2.5 ], "texture": "#texture" },
        "west":  { "uv": [ 3.5, 2, 4, 2.5 ], "texture": "#texture" },
        "east":  { "uv": [ 12, 2, 12.5, 2.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4, 1.5, 4 ],
    "to": [ 12, 2, 4.5 ],
    "faces": {
        "down":  { "uv": [ 12, 4.5, 4, 4 ], "texture": "#texture" },
        "north": { "uv": [ 4, 14, 12, 14.5 ], "texture": "#texture" },
        "west":  { "uv": [ 4, 14, 4.5, 14.5 ], "texture": "#texture" },
        "east":  { "uv": [ 11.5, 14, 12, 14.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4, 14, 4 ],
    "to": [ 12, 14.5, 4.5 ],
    "faces": {
        "up":    { "uv": [ 4, 4, 12, 4.5 ], "texture": "#texture" },
        "north": { "uv": [ 4, 1.5, 12, 2 ], "texture": "#texture" },
        "west":  { "uv": [ 4, 1.5, 4.5, 2 ], "texture": "#texture" },
        "east":  { "uv": [ 11.5, 1.5, 12, 2 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4, 1, 5 ],
    "to": [ 12, 1.5, 6 ],
    "faces": {
        "down":  { "uv": [ 12, 6, 4, 5 ], "texture": "#texture" },
        "up":    { "uv": [ 4, 5, 12, 6 ], "texture": "#texture" },
        "north": { "uv": [ 4, 14.5, 12, 15 ], "texture": "#texture" },
        "west":  { "uv": [ 5, 14.5, 6, 15 ], "texture": "#texture" },
        "east":  { "uv": [ 10, 14.5, 11, 15 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4, 14.5, 5 ],
    "to": [ 12, 15, 6 ],
    "faces": {
        "down":  { "uv": [ 12, 6, 4, 5 ], "texture": "#texture" },
        "up":    { "uv": [ 4, 5, 12, 6 ], "texture": "#texture" },
        "north": { "uv": [ 4, 1, 12, 1.5 ], "texture": "#texture" },
        "west":  { "uv": [ 5, 1, 6, 1.5 ], "texture": "#texture" },
        "east":  { "uv": [ 10, 1, 11, 1.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4, 0.5, 7 ],
    "to": [ 12, 1, 9 ],
    "faces": {
        "down":  { "uv": [ 12, 9, 4, 7 ], "texture": "#texture" },
        "north": { "uv": [ 4, 15, 12, 15.5 ], "texture": "#texture" },
        "south": { "uv": [ 4, 15, 12, 15.5 ], "texture": "#texture" },
        "west":  { "uv": [ 7, 15, 9, 15.5 ], "texture": "#texture" },
        "east":  { "uv": [ 7, 15, 9, 15.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4, 15, 7 ],
    "to": [ 12, 15.5, 9 ],
    "faces": {
        "up":    { "uv": [ 4, 7, 12, 9 ], "texture": "#texture" },
        "north": { "uv": [ 4, 0.5, 12, 1 ], "texture": "#texture" },
        "south": { "uv": [ 4, 0.5, 12, 1 ], "texture": "#texture" },
        "west":  { "uv": [ 7, 0.5, 9, 1 ], "texture": "#texture" },
        "east":  { "uv": [ 7, 0.5, 9, 1 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4, 1, 10 ],
    "to": [ 12, 1.5, 11 ],
    "faces": {
        "down":  { "uv": [ 12, 11, 4, 10 ], "texture": "#texture" },
        "up":    { "uv": [ 4, 10, 12, 11 ], "texture": "#texture" },
        "south": { "uv": [ 4, 14.5, 12, 15 ], "texture": "#texture" },
        "west":  { "uv": [ 10, 14.5, 11, 15 ], "texture": "#texture" },
        "east":  { "uv": [ 5, 14.5, 6, 15 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4, 14.5, 10 ],
    "to": [ 12, 15, 11 ],
    "faces": {
        "down":  { "uv": [ 12, 11, 4, 10 ], "texture": "#texture" },
        "up":    { "uv": [ 4, 10, 12, 11 ], "texture": "#texture" },
        "south": { "uv": [ 4, 1, 12, 1.5 ], "texture": "#texture" },
        "west":  { "uv": [ 10, 1, 11, 1.5 ], "texture": "#texture" },
        "east":  { "uv": [ 5, 1, 6, 1.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4, 1.5, 11.5 ],
    "to": [ 12, 2, 12 ],
    "faces": {
        "down":  { "uv": [ 12, 12, 4, 11.5 ], "texture": "#texture" },
        "south": { "uv": [ 4, 14, 12, 14.5 ], "texture": "#texture" },
        "west":  { "uv": [ 11.5, 14, 12, 14.5 ], "texture": "#texture" },
        "east":  { "uv": [ 4, 14, 4.5, 14.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4, 14, 11.5 ],
    "to": [ 12, 14.5, 12 ],
    "faces": {
        "up":    { "uv": [ 4, 11.5, 12, 12 ], "texture": "#texture" },
        "south": { "uv": [ 4, 1.5, 12, 2 ], "texture": "#texture" },
        "west":  { "uv": [ 11.5, 1.5, 12, 2 ], "texture": "#texture" },
        "east":  { "uv": [ 4, 1.5, 4.5, 2 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4, 2, 12 ],
    "to": [ 12, 2.5, 12.5 ],
    "faces": {
        "down":  { "uv": [ 12, 12.5, 4, 12 ], "texture": "#texture" },
        "south": { "uv": [ 4, 13.5, 12, 14 ], "texture": "#texture" },
        "west":  { "uv": [ 12, 13.5, 12.5, 14 ], "texture": "#texture" },
        "east":  { "uv": [ 3.5, 13.5, 4, 14 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4, 13.5, 12 ],
    "to": [ 12, 14, 12.5 ],
    "faces": {
        "up":    { "uv": [ 4, 12, 12, 12.5 ], "texture": "#texture" },
        "south": { "uv": [ 4, 2, 12, 2.5 ], "texture": "#texture" },
        "west":  { "uv": [ 12, 2, 12.5, 2.5 ], "texture": "#texture" },
        "east":  { "uv": [ 3.5, 2, 4, 2.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4, 3.5, 13.5 ],
    "to": [ 12, 4, 14 ],
    "faces": {
        "down":  { "uv": [ 12, 14, 4, 13.5 ], "texture": "#texture" },
        "south": { "uv": [ 4, 12, 12, 12.5 ], "texture": "#texture" },
        "west":  { "uv": [ 13.5, 12, 14, 12.5 ], "texture": "#texture" },
        "east":  { "uv": [ 2, 12, 2.5, 12.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4, 12, 13.5 ],
    "to": [ 12, 12.5, 14 ],
    "faces": {
        "up":    { "uv": [ 4, 13.5, 12, 14 ], "texture": "#texture" },
        "south": { "uv": [ 4, 3.5, 12, 4 ], "texture": "#texture" },
        "west":  { "uv": [ 13.5, 3.5, 14, 4 ], "texture": "#texture" },
        "east":  { "uv": [ 2, 3.5, 2.5, 4 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4, 4, 14 ],
    "to": [ 12, 4.5, 14.5 ],
    "faces": {
        "down":  { "uv": [ 12, 14.5, 4, 14 ], "texture": "#texture" },
        "south": { "uv": [ 4, 11.5, 12, 12 ], "texture": "#texture" },
        "west":  { "uv": [ 14, 11.5, 14.5, 12 ], "texture": "#texture" },
        "east":  { "uv": [ 1.5, 11.5, 2, 12 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4, 11.5, 14 ],
    "to": [ 12, 12, 14.5 ],
    "faces": {
        "up":    { "uv": [ 4, 14, 12, 14.5 ], "texture": "#texture" },
        "south": { "uv": [ 4, 4, 12, 4.5 ], "texture": "#texture" },
        "west":  { "uv": [ 14, 4, 14.5, 4.5 ], "texture": "#texture" },
        "east":  { "uv": [ 1.5, 4, 2, 4.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4, 5, 14.5 ],
    "to": [ 12, 6, 15 ],
    "faces": {
        "down":  { "uv": [ 12, 15, 4, 14.5 ], "texture": "#texture" },
        "north": { "uv": [ 4, 10, 12, 11 ], "texture": "#texture" },
        "south": { "uv": [ 4, 10, 12, 11 ], "texture": "#texture" },
        "west":  { "uv": [ 14.5, 10, 15, 11 ], "texture": "#texture" },
        "east":  { "uv": [ 1, 10, 1.5, 11 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4, 10, 14.5 ],
    "to": [ 12, 11, 15 ],
    "faces": {
        "up":    { "uv": [ 4, 14.5, 12, 15 ], "texture": "#texture" },
        "north": { "uv": [ 4, 5, 12, 6 ], "texture": "#texture" },
        "south": { "uv": [ 4, 5, 12, 6 ], "texture": "#texture" },
        "west":  { "uv": [ 14.5, 5, 15, 6 ], "texture": "#texture" },
        "east":  { "uv": [ 1, 5, 1.5, 6 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4, 7.5, 15 ],
    "to": [ 12, 8.5, 15.5 ],
    "faces": {
        "down":  { "uv": [ 12, 15.5, 4, 15 ], "texture": "#texture" },
        "up":    { "uv": [ 4, 15, 12, 15.5 ], "texture": "#texture" },
        "south": { "uv": [ 4, 7.5, 12, 8.5 ], "texture": "#texture" },
        "west":  { "uv": [ 15, 7.5, 15.5, 8.5 ], "texture": "#texture" },
        "east":  { "uv": [ 0.5, 7.5, 1, 8.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 6, 0.5 ],
    "to": [ 11.5, 7.5, 1 ],
    "faces": {
        "down":  { "uv": [ 11.5, 1, 4.5, 0.5 ], "texture": "#texture" },
        "north": { "uv": [ 4.5, 8.5, 11.5, 10 ], "texture": "#texture" },
        "west":  { "uv": [ 0.5, 8.5, 1, 10 ], "texture": "#texture" },
        "east":  { "uv": [ 15, 8.5, 15.5, 10 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 8.5, 0.5 ],
    "to": [ 11.5, 10, 1 ],
    "faces": {
        "up":    { "uv": [ 4.5, 0.5, 11.5, 1 ], "texture": "#texture" },
        "north": { "uv": [ 4.5, 6, 11.5, 7.5 ], "texture": "#texture" },
        "west":  { "uv": [ 0.5, 6, 1, 7.5 ], "texture": "#texture" },
        "east":  { "uv": [ 15, 6, 15.5, 7.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 4.5, 1 ],
    "to": [ 11.5, 5, 1.5 ],
    "faces": {
        "down":  { "uv": [ 11.5, 1.5, 4.5, 1 ], "texture": "#texture" },
        "north": { "uv": [ 4.5, 11, 11.5, 11.5 ], "texture": "#texture" },
        "west":  { "uv": [ 1, 11, 1.5, 11.5 ], "texture": "#texture" },
        "east":  { "uv": [ 14.5, 11, 15, 11.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 11, 1 ],
    "to": [ 11.5, 11.5, 1.5 ],
    "faces": {
        "up":    { "uv": [ 4.5, 1, 11.5, 1.5 ], "texture": "#texture" },
        "north": { "uv": [ 4.5, 4.5, 11.5, 5 ], "texture": "#texture" },
        "west":  { "uv": [ 1, 4.5, 1.5, 5 ], "texture": "#texture" },
        "east":  { "uv": [ 14.5, 4.5, 15, 5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 3.5, 1.5 ],
    "to": [ 11.5, 4, 2 ],
    "faces": {
        "down":  { "uv": [ 11.5, 2, 4.5, 1.5 ], "texture": "#texture" },
        "north": { "uv": [ 4.5, 12, 11.5, 12.5 ], "texture": "#texture" },
        "west":  { "uv": [ 1.5, 12, 2, 12.5 ], "texture": "#texture" },
        "east":  { "uv": [ 14, 12, 14.5, 12.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 12, 1.5 ],
    "to": [ 11.5, 12.5, 2 ],
    "faces": {
        "up":    { "uv": [ 4.5, 1.5, 11.5, 2 ], "texture": "#texture" },
        "north": { "uv": [ 4.5, 3.5, 11.5, 4 ], "texture": "#texture" },
        "west":  { "uv": [ 1.5, 3.5, 2, 4 ], "texture": "#texture" },
        "east":  { "uv": [ 14, 3.5, 14.5, 4 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 3, 2 ],
    "to": [ 11.5, 3.5, 2.5 ],
    "faces": {
        "down":  { "uv": [ 11.5, 2.5, 4.5, 2 ], "texture": "#texture" },
        "north": { "uv": [ 4.5, 12.5, 11.5, 13 ], "texture": "#texture" },
        "west":  { "uv": [ 2, 12.5, 2.5, 13 ], "texture": "#texture" },
        "east":  { "uv": [ 13.5, 12.5, 14, 13 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 12.5, 2 ],
    "to": [ 11.5, 13, 2.5 ],
    "faces": {
        "up":    { "uv": [ 4.5, 2, 11.5, 2.5 ], "texture": "#texture" },
        "north": { "uv": [ 4.5, 3, 11.5, 3.5 ], "texture": "#texture" },
        "west":  { "uv": [ 2, 3, 2.5, 3.5 ], "texture": "#texture" },
        "east":  { "uv": [ 13.5, 3, 14, 3.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 2.5, 2.5 ],
    "to": [ 11.5, 3, 3 ],
    "faces": {
        "down":  { "uv": [ 11.5, 3, 4.5, 2.5 ], "texture": "#texture" },
        "north": { "uv": [ 4.5, 13, 11.5, 13.5 ], "texture": "#texture" },
        "west":  { "uv": [ 2.5, 13, 3, 13.5 ], "texture": "#texture" },
        "east":  { "uv": [ 13, 13, 13.5, 13.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 13, 2.5 ],
    "to": [ 11.5, 13.5, 3 ],
    "faces": {
        "up":    { "uv": [ 4.5, 2.5, 11.5, 3 ], "texture": "#texture" },
        "north": { "uv": [ 4.5, 2.5, 11.5, 3 ], "texture": "#texture" },
        "west":  { "uv": [ 2.5, 2.5, 3, 3 ], "texture": "#texture" },
        "east":  { "uv": [ 13, 2.5, 13.5, 3 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 2, 3 ],
    "to": [ 11.5, 2.5, 3.5 ],
    "faces": {
        "down":  { "uv": [ 11.5, 3.5, 4.5, 3 ], "texture": "#texture" },
        "north": { "uv": [ 4.5, 13.5, 11.5, 14 ], "texture": "#texture" },
        "west":  { "uv": [ 3, 13.5, 3.5, 14 ], "texture": "#texture" },
        "east":  { "uv": [ 12.5, 13.5, 13, 14 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 13.5, 3 ],
    "to": [ 11.5, 14, 3.5 ],
    "faces": {
        "up":    { "uv": [ 4.5, 3, 11.5, 3.5 ], "texture": "#texture" },
        "north": { "uv": [ 4.5, 2, 11.5, 2.5 ], "texture": "#texture" },
        "west":  { "uv": [ 3, 2, 3.5, 2.5 ], "texture": "#texture" },
        "east":  { "uv": [ 12.5, 2, 13, 2.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 1.5, 3.5 ],
    "to": [ 11.5, 2, 4 ],
    "faces": {
        "down":  { "uv": [ 11.5, 4, 4.5, 3.5 ], "texture": "#texture" },
        "north": { "uv": [ 4.5, 14, 11.5, 14.5 ], "texture": "#texture" },
        "west":  { "uv": [ 3.5, 14, 4, 14.5 ], "texture": "#texture" },
        "east":  { "uv": [ 12, 14, 12.5, 14.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 14, 3.5 ],
    "to": [ 11.5, 14.5, 4 ],
    "faces": {
        "up":    { "uv": [ 4.5, 3.5, 11.5, 4 ], "texture": "#texture" },
        "north": { "uv": [ 4.5, 1.5, 11.5, 2 ], "texture": "#texture" },
        "west":  { "uv": [ 3.5, 1.5, 4, 2 ], "texture": "#texture" },
        "east":  { "uv": [ 12, 1.5, 12.5, 2 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 1, 4.5 ],
    "to": [ 11.5, 1.5, 5 ],
    "faces": {
        "down":  { "uv": [ 11.5, 5, 4.5, 4.5 ], "texture": "#texture" },
        "north": { "uv": [ 4.5, 14.5, 11.5, 15 ], "texture": "#texture" },
        "west":  { "uv": [ 4.5, 14.5, 5, 15 ], "texture": "#texture" },
        "east":  { "uv": [ 11, 14.5, 11.5, 15 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 14.5, 4.5 ],
    "to": [ 11.5, 15, 5 ],
    "faces": {
        "up":    { "uv": [ 4.5, 4.5, 11.5, 5 ], "texture": "#texture" },
        "north": { "uv": [ 4.5, 1, 11.5, 1.5 ], "texture": "#texture" },
        "west":  { "uv": [ 4.5, 1, 5, 1.5 ], "texture": "#texture" },
        "east":  { "uv": [ 11, 1, 11.5, 1.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 0.5, 6 ],
    "to": [ 11.5, 1, 7 ],
    "faces": {
        "down":  { "uv": [ 11.5, 7, 4.5, 6 ], "texture": "#texture" },
        "north": { "uv": [ 4.5, 15, 11.5, 15.5 ], "texture": "#texture" },
        "west":  { "uv": [ 6, 15, 7, 15.5 ], "texture": "#texture" },
        "east":  { "uv": [ 9, 15, 10, 15.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 15, 6 ],
    "to": [ 11.5, 15.5, 7 ],
    "faces": {
        "up":    { "uv": [ 4.5, 6, 11.5, 7 ], "texture": "#texture" },
        "north": { "uv": [ 4.5, 0.5, 11.5, 1 ], "texture": "#texture" },
        "west":  { "uv": [ 6, 0.5, 7, 1 ], "texture": "#texture" },
        "east":  { "uv": [ 9, 0.5, 10, 1 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 0.5, 9 ],
    "to": [ 11.5, 1, 10 ],
    "faces": {
        "down":  { "uv": [ 11.5, 10, 4.5, 9 ], "texture": "#texture" },
        "south": { "uv": [ 4.5, 15, 11.5, 15.5 ], "texture": "#texture" },
        "west":  { "uv": [ 9, 15, 10, 15.5 ], "texture": "#texture" },
        "east":  { "uv": [ 6, 15, 7, 15.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 15, 9 ],
    "to": [ 11.5, 15.5, 10 ],
    "faces": {
        "up":    { "uv": [ 4.5, 9, 11.5, 10 ], "texture": "#texture" },
        "south": { "uv": [ 4.5, 0.5, 11.5, 1 ], "texture": "#texture" },
        "west":  { "uv": [ 9, 0.5, 10, 1 ], "texture": "#texture" },
        "east":  { "uv": [ 6, 0.5, 7, 1 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 1, 11 ],
    "to": [ 11.5, 1.5, 11.5 ],
    "faces": {
        "down":  { "uv": [ 11.5, 11.5, 4.5, 11 ], "texture": "#texture" },
        "south": { "uv": [ 4.5, 14.5, 11.5, 15 ], "texture": "#texture" },
        "west":  { "uv": [ 11, 14.5, 11.5, 15 ], "texture": "#texture" },
        "east":  { "uv": [ 4.5, 14.5, 5, 15 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 14.5, 11 ],
    "to": [ 11.5, 15, 11.5 ],
    "faces": {
        "up":    { "uv": [ 4.5, 11, 11.5, 11.5 ], "texture": "#texture" },
        "south": { "uv": [ 4.5, 1, 11.5, 1.5 ], "texture": "#texture" },
        "west":  { "uv": [ 11, 1, 11.5, 1.5 ], "texture": "#texture" },
        "east":  { "uv": [ 4.5, 1, 5, 1.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 1.5, 12 ],
    "to": [ 11.5, 2, 12.5 ],
    "faces": {
        "down":  { "uv": [ 11.5, 12.5, 4.5, 12 ], "texture": "#texture" },
        "south": { "uv": [ 4.5, 14, 11.5, 14.5 ], "texture": "#texture" },
        "west":  { "uv": [ 12, 14, 12.5, 14.5 ], "texture": "#texture" },
        "east":  { "uv": [ 3.5, 14, 4, 14.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 14, 12 ],
    "to": [ 11.5, 14.5, 12.5 ],
    "faces": {
        "up":    { "uv": [ 4.5, 12, 11.5, 12.5 ], "texture": "#texture" },
        "south": { "uv": [ 4.5, 1.5, 11.5, 2 ], "texture": "#texture" },
        "west":  { "uv": [ 12, 1.5, 12.5, 2 ], "texture": "#texture" },
        "east":  { "uv": [ 3.5, 1.5, 4, 2 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 2, 12.5 ],
    "to": [ 11.5, 2.5, 13 ],
    "faces": {
        "down":  { "uv": [ 11.5, 13, 4.5, 12.5 ], "texture": "#texture" },
        "south": { "uv": [ 4.5, 13.5, 11.5, 14 ], "texture": "#texture" },
        "west":  { "uv": [ 12.5, 13.5, 13, 14 ], "texture": "#texture" },
        "east":  { "uv": [ 3, 13.5, 3.5, 14 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 13.5, 12.5 ],
    "to": [ 11.5, 14, 13 ],
    "faces": {
        "up":    { "uv": [ 4.5, 12.5, 11.5, 13 ], "texture": "#texture" },
        "south": { "uv": [ 4.5, 2, 11.5, 2.5 ], "texture": "#texture" },
        "west":  { "uv": [ 12.5, 2, 13, 2.5 ], "texture": "#texture" },
        "east":  { "uv": [ 3, 2, 3.5, 2.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 2.5, 13 ],
    "to": [ 11.5, 3, 13.5 ],
    "faces": {
        "down":  { "uv": [ 11.5, 13.5, 4.5, 13 ], "texture": "#texture" },
        "south": { "uv": [ 4.5, 13, 11.5, 13.5 ], "texture": "#texture" },
        "west":  { "uv": [ 13, 13, 13.5, 13.5 ], "texture": "#texture" },
        "east":  { "uv": [ 2.5, 13, 3, 13.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 13, 13 ],
    "to": [ 11.5, 13.5, 13.5 ],
    "faces": {
        "up":    { "uv": [ 4.5, 13, 11.5, 13.5 ], "texture": "#texture" },
        "south": { "uv": [ 4.5, 2.5, 11.5, 3 ], "texture": "#texture" },
        "west":  { "uv": [ 13, 2.5, 13.5, 3 ], "texture": "#texture" },
        "east":  { "uv": [ 2.5, 2.5, 3, 3 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 3, 13.5 ],
    "to": [ 11.5, 3.5, 14 ],
    "faces": {
        "down":  { "uv": [ 11.5, 14, 4.5, 13.5 ], "texture": "#texture" },
        "south": { "uv": [ 4.5, 12.5, 11.5, 13 ], "texture": "#texture" },
        "west":  { "uv": [ 13.5, 12.5, 14, 13 ], "texture": "#texture" },
        "east":  { "uv": [ 2, 12.5, 2.5, 13 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 12.5, 13.5 ],
    "to": [ 11.5, 13, 14 ],
    "faces": {
        "up":    { "uv": [ 4.5, 13.5, 11.5, 14 ], "texture": "#texture" },
        "south": { "uv": [ 4.5, 3, 11.5, 3.5 ], "texture": "#texture" },
        "west":  { "uv": [ 13.5, 3, 14, 3.5 ], "texture": "#texture" },
        "east":  { "uv": [ 2, 3, 2.5, 3.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 3.5, 14 ],
    "to": [ 11.5, 4, 14.5 ],
    "faces": {
        "down":  { "uv": [ 11.5, 14.5, 4.5, 14 ], "texture": "#texture" },
        "south": { "uv": [ 4.5, 12, 11.5, 12.5 ], "texture": "#texture" },
        "west":  { "uv": [ 14, 12, 14.5, 12.5 ], "texture": "#texture" },
        "east":  { "uv": [ 1.5, 12, 2, 12.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 12, 14 ],
    "to": [ 11.5, 12.5, 14.5 ],
    "faces": {
        "up":    { "uv": [ 4.5, 14, 11.5, 14.5 ], "texture": "#texture" },
        "south": { "uv": [ 4.5, 3.5, 11.5, 4 ], "texture": "#texture" },
        "west":  { "uv": [ 14, 3.5, 14.5, 4 ], "texture": "#texture" },
        "east":  { "uv": [ 1.5, 3.5, 2, 4 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 4.5, 14.5 ],
    "to": [ 11.5, 5, 15 ],
    "faces": {
        "down":  { "uv": [ 11.5, 15, 4.5, 14.5 ], "texture": "#texture" },
        "south": { "uv": [ 4.5, 11, 11.5, 11.5 ], "texture": "#texture" },
        "west":  { "uv": [ 14.5, 11, 15, 11.5 ], "texture": "#texture" },
        "east":  { "uv": [ 1, 11, 1.5, 11.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 11, 14.5 ],
    "to": [ 11.5, 11.5, 15 ],
    "faces": {
        "up":    { "uv": [ 4.5, 14.5, 11.5, 15 ], "texture": "#texture" },
        "south": { "uv": [ 4.5, 4.5, 11.5, 5 ], "texture": "#texture" },
        "west":  { "uv": [ 14.5, 4.5, 15, 5 ], "texture": "#texture" },
        "east":  { "uv": [ 1, 4.5, 1.5, 5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 6, 15 ],
    "to": [ 11.5, 7.5, 15.5 ],
    "faces": {
        "down":  { "uv": [ 11.5, 15.5, 4.5, 15 ], "texture": "#texture" },
        "south": { "uv": [ 4.5, 8.5, 11.5, 10 ], "texture": "#texture" },
        "west":  { "uv": [ 15, 8.5, 15.5, 10 ], "texture": "#texture" },
        "east":  { "uv": [ 0.5, 8.5, 1, 10 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 4.5, 8.5, 15 ],
    "to": [ 11.5, 10, 15.5 ],
    "faces": {
        "up":    { "uv": [ 4.5, 15, 11.5, 15.5 ], "texture": "#texture" },
        "south": { "uv": [ 4.5, 6, 11.5, 7.5 ], "texture": "#texture" },
        "west":  { "uv": [ 15, 6, 15.5, 7.5 ], "texture": "#texture" },
        "east":  { "uv": [ 0.5, 6, 1, 7.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5, 5, 0.5 ],
    "to": [ 11, 6, 1 ],
    "faces": {
        "down":  { "uv": [ 11, 1, 5, 0.5 ], "texture": "#texture" },
        "north": { "uv": [ 5, 10, 11, 11 ], "texture": "#texture" },
        "west":  { "uv": [ 0.5, 10, 1, 11 ], "texture": "#texture" },
        "east":  { "uv": [ 15, 10, 15.5, 11 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5, 10, 0.5 ],
    "to": [ 11, 11, 1 ],
    "faces": {
        "up":    { "uv": [ 5, 0.5, 11, 1 ], "texture": "#texture" },
        "north": { "uv": [ 5, 5, 11, 6 ], "texture": "#texture" },
        "west":  { "uv": [ 0.5, 5, 1, 6 ], "texture": "#texture" },
        "east":  { "uv": [ 15, 5, 15.5, 6 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5, 4, 1 ],
    "to": [ 11, 4.5, 1.5 ],
    "faces": {
        "down":  { "uv": [ 11, 1.5, 5, 1 ], "texture": "#texture" },
        "north": { "uv": [ 5, 11.5, 11, 12 ], "texture": "#texture" },
        "west":  { "uv": [ 1, 11.5, 1.5, 12 ], "texture": "#texture" },
        "east":  { "uv": [ 14.5, 11.5, 15, 12 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5, 11.5, 1 ],
    "to": [ 11, 12, 1.5 ],
    "faces": {
        "up":    { "uv": [ 5, 1, 11, 1.5 ], "texture": "#texture" },
        "north": { "uv": [ 5, 4, 11, 4.5 ], "texture": "#texture" },
        "west":  { "uv": [ 1, 4, 1.5, 4.5 ], "texture": "#texture" },
        "east":  { "uv": [ 14.5, 4, 15, 4.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5, 2.5, 2 ],
    "to": [ 11, 3, 2.5 ],
    "faces": {
        "down":  { "uv": [ 11, 2.5, 5, 2 ], "texture": "#texture" },
        "north": { "uv": [ 5, 13, 11, 13.5 ], "texture": "#texture" },
        "west":  { "uv": [ 2, 13, 2.5, 13.5 ], "texture": "#texture" },
        "east":  { "uv": [ 13.5, 13, 14, 13.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5, 13, 2 ],
    "to": [ 11, 13.5, 2.5 ],
    "faces": {
        "up":    { "uv": [ 5, 2, 11, 2.5 ], "texture": "#texture" },
        "north": { "uv": [ 5, 2.5, 11, 3 ], "texture": "#texture" },
        "west":  { "uv": [ 2, 2.5, 2.5, 3 ], "texture": "#texture" },
        "east":  { "uv": [ 13.5, 2.5, 14, 3 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5, 2, 2.5 ],
    "to": [ 11, 2.5, 3 ],
    "faces": {
        "down":  { "uv": [ 11, 3, 5, 2.5 ], "texture": "#texture" },
        "north": { "uv": [ 5, 13.5, 11, 14 ], "texture": "#texture" },
        "west":  { "uv": [ 2.5, 13.5, 3, 14 ], "texture": "#texture" },
        "east":  { "uv": [ 13, 13.5, 13.5, 14 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5, 13.5, 2.5 ],
    "to": [ 11, 14, 3 ],
    "faces": {
        "up":    { "uv": [ 5, 2.5, 11, 3 ], "texture": "#texture" },
        "north": { "uv": [ 5, 2, 11, 2.5 ], "texture": "#texture" },
        "west":  { "uv": [ 2.5, 2, 3, 2.5 ], "texture": "#texture" },
        "east":  { "uv": [ 13, 2, 13.5, 2.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5, 1, 4 ],
    "to": [ 11, 1.5, 4.5 ],
    "faces": {
        "down":  { "uv": [ 11, 4.5, 5, 4 ], "texture": "#texture" },
        "north": { "uv": [ 5, 14.5, 11, 15 ], "texture": "#texture" },
        "west":  { "uv": [ 4, 14.5, 4.5, 15 ], "texture": "#texture" },
        "east":  { "uv": [ 11.5, 14.5, 12, 15 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5, 14.5, 4 ],
    "to": [ 11, 15, 4.5 ],
    "faces": {
        "up":    { "uv": [ 5, 4, 11, 4.5 ], "texture": "#texture" },
        "north": { "uv": [ 5, 1, 11, 1.5 ], "texture": "#texture" },
        "west":  { "uv": [ 4, 1, 4.5, 1.5 ], "texture": "#texture" },
        "east":  { "uv": [ 11.5, 1, 12, 1.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5, 0.5, 5 ],
    "to": [ 11, 1, 6 ],
    "faces": {
        "down":  { "uv": [ 11, 6, 5, 5 ], "texture": "#texture" },
        "north": { "uv": [ 5, 15, 11, 15.5 ], "texture": "#texture" },
        "west":  { "uv": [ 5, 15, 6, 15.5 ], "texture": "#texture" },
        "east":  { "uv": [ 10, 15, 11, 15.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5, 15, 5 ],
    "to": [ 11, 15.5, 6 ],
    "faces": {
        "up":    { "uv": [ 5, 5, 11, 6 ], "texture": "#texture" },
        "north": { "uv": [ 5, 0.5, 11, 1 ], "texture": "#texture" },
        "west":  { "uv": [ 5, 0.5, 6, 1 ], "texture": "#texture" },
        "east":  { "uv": [ 10, 0.5, 11, 1 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5, 0.5, 10 ],
    "to": [ 11, 1, 11 ],
    "faces": {
        "down":  { "uv": [ 11, 11, 5, 10 ], "texture": "#texture" },
        "south": { "uv": [ 5, 15, 11, 15.5 ], "texture": "#texture" },
        "west":  { "uv": [ 10, 15, 11, 15.5 ], "texture": "#texture" },
        "east":  { "uv": [ 5, 15, 6, 15.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5, 15, 10 ],
    "to": [ 11, 15.5, 11 ],
    "faces": {
        "up":    { "uv": [ 5, 10, 11, 11 ], "texture": "#texture" },
        "south": { "uv": [ 5, 0.5, 11, 1 ], "texture": "#texture" },
        "west":  { "uv": [ 10, 0.5, 11, 1 ], "texture": "#texture" },
        "east":  { "uv": [ 5, 0.5, 6, 1 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5, 1, 11.5 ],
    "to": [ 11, 1.5, 12 ],
    "faces": {
        "down":  { "uv": [ 11, 12, 5, 11.5 ], "texture": "#texture" },
        "south": { "uv": [ 5, 14.5, 11, 15 ], "texture": "#texture" },
        "west":  { "uv": [ 11.5, 14.5, 12, 15 ], "texture": "#texture" },
        "east":  { "uv": [ 4, 14.5, 4.5, 15 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5, 14.5, 11.5 ],
    "to": [ 11, 15, 12 ],
    "faces": {
        "up":    { "uv": [ 5, 11.5, 11, 12 ], "texture": "#texture" },
        "south": { "uv": [ 5, 1, 11, 1.5 ], "texture": "#texture" },
        "west":  { "uv": [ 11.5, 1, 12, 1.5 ], "texture": "#texture" },
        "east":  { "uv": [ 4, 1, 4.5, 1.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5, 2, 13 ],
    "to": [ 11, 2.5, 13.5 ],
    "faces": {
        "down":  { "uv": [ 11, 13.5, 5, 13 ], "texture": "#texture" },
        "south": { "uv": [ 5, 13.5, 11, 14 ], "texture": "#texture" },
        "west":  { "uv": [ 13, 13.5, 13.5, 14 ], "texture": "#texture" },
        "east":  { "uv": [ 2.5, 13.5, 3, 14 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5, 13.5, 13 ],
    "to": [ 11, 14, 13.5 ],
    "faces": {
        "up":    { "uv": [ 5, 13, 11, 13.5 ], "texture": "#texture" },
        "south": { "uv": [ 5, 2, 11, 2.5 ], "texture": "#texture" },
        "west":  { "uv": [ 13, 2, 13.5, 2.5 ], "texture": "#texture" },
        "east":  { "uv": [ 2.5, 2, 3, 2.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5, 2.5, 13.5 ],
    "to": [ 11, 3, 14 ],
    "faces": {
        "down":  { "uv": [ 11, 14, 5, 13.5 ], "texture": "#texture" },
        "south": { "uv": [ 5, 13, 11, 13.5 ], "texture": "#texture" },
        "west":  { "uv": [ 13.5, 13, 14, 13.5 ], "texture": "#texture" },
        "east":  { "uv": [ 2, 13, 2.5, 13.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5, 13, 13.5 ],
    "to": [ 11, 13.5, 14 ],
    "faces": {
        "up":    { "uv": [ 5, 13.5, 11, 14 ], "texture": "#texture" },
        "south": { "uv": [ 5, 2.5, 11, 3 ], "texture": "#texture" },
        "west":  { "uv": [ 13.5, 2.5, 14, 3 ], "texture": "#texture" },
        "east":  { "uv": [ 2, 2.5, 2.5, 3 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5, 4, 14.5 ],
    "to": [ 11, 4.5, 15 ],
    "faces": {
        "down":  { "uv": [ 11, 15, 5, 14.5 ], "texture": "#texture" },
        "south": { "uv": [ 5, 11.5, 11, 12 ], "texture": "#texture" },
        "west":  { "uv": [ 14.5, 11.5, 15, 12 ], "texture": "#texture" },
        "east":  { "uv": [ 1, 11.5, 1.5, 12 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5, 11.5, 14.5 ],
    "to": [ 11, 12, 15 ],
    "faces": {
        "up":    { "uv": [ 5, 14.5, 11, 15 ], "texture": "#texture" },
        "south": { "uv": [ 5, 4, 11, 4.5 ], "texture": "#texture" },
        "west":  { "uv": [ 14.5, 4, 15, 4.5 ], "texture": "#texture" },
        "east":  { "uv": [ 1, 4, 1.5, 4.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5, 5, 15 ],
    "to": [ 11, 6, 15.5 ],
    "faces": {
        "down":  { "uv": [ 11, 15.5, 5, 15 ], "texture": "#texture" },
        "south": { "uv": [ 5, 10, 11, 11 ], "texture": "#texture" },
        "west":  { "uv": [ 15, 10, 15.5, 11 ], "texture": "#texture" },
        "east":  { "uv": [ 0.5, 10, 1, 11 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5, 10, 15 ],
    "to": [ 11, 11, 15.5 ],
    "faces": {
        "up":    { "uv": [ 5, 15, 11, 15.5 ], "texture": "#texture" },
        "south": { "uv": [ 5, 5, 11, 6 ], "texture": "#texture" },
        "west":  { "uv": [ 15, 5, 15.5, 6 ], "texture": "#texture" },
        "east":  { "uv": [ 0.5, 5, 1, 6 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5.5, 6.5, 0 ],
    "to": [ 10.5, 9.5, 0.5 ],
    "faces": {
        "down":  { "uv": [ 10.5, 0.5, 5.5, 0 ], "texture": "#texture" },
        "up":    { "uv": [ 5.5, 0, 10.5, 0.5 ], "texture": "#texture" },
        "north": { "uv": [ 5.5, 6.5, 10.5, 9.5 ], "texture": "#texture" },
        "south": { "uv": [ 5.5, 6.5, 10.5, 9.5 ], "texture": "#texture" },
        "west":  { "uv": [ 0, 6.5, 0.5, 9.5 ], "texture": "#texture" },
        "east":  { "uv": [ 15.5, 6.5, 16, 9.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5.5, 3, 1.5 ],
    "to": [ 10.5, 3.5, 2 ],
    "faces": {
        "down":  { "uv": [ 10.5, 2, 5.5, 1.5 ], "texture": "#texture" },
        "north": { "uv": [ 5.5, 12.5, 10.5, 13 ], "texture": "#texture" },
        "west":  { "uv": [ 1.5, 12.5, 2, 13 ], "texture": "#texture" },
        "east":  { "uv": [ 14, 12.5, 14.5, 13 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5.5, 12.5, 1.5 ],
    "to": [ 10.5, 13, 2 ],
    "faces": {
        "up":    { "uv": [ 5.5, 1.5, 10.5, 2 ], "texture": "#texture" },
        "north": { "uv": [ 5.5, 3, 10.5, 3.5 ], "texture": "#texture" },
        "west":  { "uv": [ 1.5, 3, 2, 3.5 ], "texture": "#texture" },
        "east":  { "uv": [ 14, 3, 14.5, 3.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5.5, 1.5, 3 ],
    "to": [ 10.5, 2, 3.5 ],
    "faces": {
        "down":  { "uv": [ 10.5, 3.5, 5.5, 3 ], "texture": "#texture" },
        "north": { "uv": [ 5.5, 14, 10.5, 14.5 ], "texture": "#texture" },
        "west":  { "uv": [ 3, 14, 3.5, 14.5 ], "texture": "#texture" },
        "east":  { "uv": [ 12.5, 14, 13, 14.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5.5, 14, 3 ],
    "to": [ 10.5, 14.5, 3.5 ],
    "faces": {
        "up":    { "uv": [ 5.5, 3, 10.5, 3.5 ], "texture": "#texture" },
        "north": { "uv": [ 5.5, 1.5, 10.5, 2 ], "texture": "#texture" },
        "west":  { "uv": [ 3, 1.5, 3.5, 2 ], "texture": "#texture" },
        "east":  { "uv": [ 12.5, 1.5, 13, 2 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5.5, 0, 6.5 ],
    "to": [ 10.5, 0.5, 9.5 ],
    "faces": {
        "down":  { "uv": [ 10.5, 9.5, 5.5, 6.5 ], "texture": "#texture" },
        "up":    { "uv": [ 5.5, 6.5, 10.5, 9.5 ], "texture": "#texture" },
        "north": { "uv": [ 5.5, 15.5, 10.5, 16 ], "texture": "#texture" },
        "south": { "uv": [ 5.5, 15.5, 10.5, 16 ], "texture": "#texture" },
        "west":  { "uv": [ 6.5, 15.5, 9.5, 16 ], "texture": "#texture" },
        "east":  { "uv": [ 6.5, 15.5, 9.5, 16 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5.5, 15.5, 6.5 ],
    "to": [ 10.5, 16, 9.5 ],
    "faces": {
        "down":  { "uv": [ 10.5, 9.5, 5.5, 6.5 ], "texture": "#texture" },
        "up":    { "uv": [ 5.5, 6.5, 10.5, 9.5 ], "texture": "#texture" },
        "north": { "uv": [ 5.5, 0, 10.5, 0.5 ], "texture": "#texture" },
        "south": { "uv": [ 5.5, 0, 10.5, 0.5 ], "texture": "#texture" },
        "west":  { "uv": [ 6.5, 0, 9.5, 0.5 ], "texture": "#texture" },
        "east":  { "uv": [ 6.5, 0, 9.5, 0.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5.5, 1.5, 12.5 ],
    "to": [ 10.5, 2, 13 ],
    "faces": {
        "down":  { "uv": [ 10.5, 13, 5.5, 12.5 ], "texture": "#texture" },
        "south": { "uv": [ 5.5, 14, 10.5, 14.5 ], "texture": "#texture" },
        "west":  { "uv": [ 12.5, 14, 13, 14.5 ], "texture": "#texture" },
        "east":  { "uv": [ 3, 14, 3.5, 14.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5.5, 14, 12.5 ],
    "to": [ 10.5, 14.5, 13 ],
    "faces": {
        "up":    { "uv": [ 5.5, 12.5, 10.5, 13 ], "texture": "#texture" },
        "south": { "uv": [ 5.5, 1.5, 10.5, 2 ], "texture": "#texture" },
        "west":  { "uv": [ 12.5, 1.5, 13, 2 ], "texture": "#texture" },
        "east":  { "uv": [ 3, 1.5, 3.5, 2 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5.5, 3, 14 ],
    "to": [ 10.5, 3.5, 14.5 ],
    "faces": {
        "down":  { "uv": [ 10.5, 14.5, 5.5, 14 ], "texture": "#texture" },
        "south": { "uv": [ 5.5, 12.5, 10.5, 13 ], "texture": "#texture" },
        "west":  { "uv": [ 14, 12.5, 14.5, 13 ], "texture": "#texture" },
        "east":  { "uv": [ 1.5, 12.5, 2, 13 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5.5, 12.5, 14 ],
    "to": [ 10.5, 13, 14.5 ],
    "faces": {
        "up":    { "uv": [ 5.5, 14, 10.5, 14.5 ], "texture": "#texture" },
        "south": { "uv": [ 5.5, 3, 10.5, 3.5 ], "texture": "#texture" },
        "west":  { "uv": [ 14, 3, 14.5, 3.5 ], "texture": "#texture" },
        "east":  { "uv": [ 1.5, 3, 2, 3.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 5.5, 6.5, 15.5 ],
    "to": [ 10.5, 9.5, 16 ],
    "faces": {
        "down":  { "uv": [ 10.5, 16, 5.5, 15.5 ], "texture": "#texture" },
        "up":    { "uv": [ 5.5, 15.5, 10.5, 16 ], "texture": "#texture" },
        "north": { "uv": [ 5.5, 6.5, 10.5, 9.5 ], "texture": "#texture" },
        "south": { "uv": [ 5.5, 6.5, 10.5, 9.5 ], "texture": "#texture" },
        "west":  { "uv": [ 15.5, 6.5, 16, 9.5 ], "texture": "#texture" },
        "east":  { "uv": [ 0, 6.5, 0.5, 9.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6, 6, 0 ],
    "to": [ 10, 6.5, 0.5 ],
    "faces": {
        "down":  { "uv": [ 10, 0.5, 6, 0 ], "texture": "#texture" },
        "north": { "uv": [ 6, 9.5, 10, 10 ], "texture": "#texture" },
        "west":  { "uv": [ 0, 9.5, 0.5, 10 ], "texture": "#texture" },
        "east":  { "uv": [ 15.5, 9.5, 16, 10 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6, 9.5, 0 ],
    "to": [ 10, 10, 0.5 ],
    "faces": {
        "up":    { "uv": [ 6, 0, 10, 0.5 ], "texture": "#texture" },
        "north": { "uv": [ 6, 6, 10, 6.5 ], "texture": "#texture" },
        "west":  { "uv": [ 0, 6, 0.5, 6.5 ], "texture": "#texture" },
        "east":  { "uv": [ 15.5, 6, 16, 6.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6, 4.5, 0.5 ],
    "to": [ 10, 5, 1 ],
    "faces": {
        "down":  { "uv": [ 10, 1, 6, 0.5 ], "texture": "#texture" },
        "north": { "uv": [ 6, 11, 10, 11.5 ], "texture": "#texture" },
        "west":  { "uv": [ 0.5, 11, 1, 11.5 ], "texture": "#texture" },
        "east":  { "uv": [ 15, 11, 15.5, 11.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6, 11, 0.5 ],
    "to": [ 10, 11.5, 1 ],
    "faces": {
        "up":    { "uv": [ 6, 0.5, 10, 1 ], "texture": "#texture" },
        "north": { "uv": [ 6, 4.5, 10, 5 ], "texture": "#texture" },
        "west":  { "uv": [ 0.5, 4.5, 1, 5 ], "texture": "#texture" },
        "east":  { "uv": [ 15, 4.5, 15.5, 5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6, 3.5, 1 ],
    "to": [ 10, 4, 1.5 ],
    "faces": {
        "down":  { "uv": [ 10, 1.5, 6, 1 ], "texture": "#texture" },
        "north": { "uv": [ 6, 12, 10, 12.5 ], "texture": "#texture" },
        "west":  { "uv": [ 1, 12, 1.5, 12.5 ], "texture": "#texture" },
        "east":  { "uv": [ 14.5, 12, 15, 12.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6, 12, 1 ],
    "to": [ 10, 12.5, 1.5 ],
    "faces": {
        "up":    { "uv": [ 6, 1, 10, 1.5 ], "texture": "#texture" },
        "north": { "uv": [ 6, 3.5, 10, 4 ], "texture": "#texture" },
        "west":  { "uv": [ 1, 3.5, 1.5, 4 ], "texture": "#texture" },
        "east":  { "uv": [ 14.5, 3.5, 15, 4 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6, 1, 3.5 ],
    "to": [ 10, 1.5, 4 ],
    "faces": {
        "down":  { "uv": [ 10, 4, 6, 3.5 ], "texture": "#texture" },
        "north": { "uv": [ 6, 14.5, 10, 15 ], "texture": "#texture" },
        "west":  { "uv": [ 3.5, 14.5, 4, 15 ], "texture": "#texture" },
        "east":  { "uv": [ 12, 14.5, 12.5, 15 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6, 14.5, 3.5 ],
    "to": [ 10, 15, 4 ],
    "faces": {
        "up":    { "uv": [ 6, 3.5, 10, 4 ], "texture": "#texture" },
        "north": { "uv": [ 6, 1, 10, 1.5 ], "texture": "#texture" },
        "west":  { "uv": [ 3.5, 1, 4, 1.5 ], "texture": "#texture" },
        "east":  { "uv": [ 12, 1, 12.5, 1.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6, 0.5, 4.5 ],
    "to": [ 10, 1, 5 ],
    "faces": {
        "down":  { "uv": [ 10, 5, 6, 4.5 ], "texture": "#texture" },
        "north": { "uv": [ 6, 15, 10, 15.5 ], "texture": "#texture" },
        "west":  { "uv": [ 4.5, 15, 5, 15.5 ], "texture": "#texture" },
        "east":  { "uv": [ 11, 15, 11.5, 15.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6, 15, 4.5 ],
    "to": [ 10, 15.5, 5 ],
    "faces": {
        "up":    { "uv": [ 6, 4.5, 10, 5 ], "texture": "#texture" },
        "north": { "uv": [ 6, 0.5, 10, 1 ], "texture": "#texture" },
        "west":  { "uv": [ 4.5, 0.5, 5, 1 ], "texture": "#texture" },
        "east":  { "uv": [ 11, 0.5, 11.5, 1 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6, 0, 6 ],
    "to": [ 10, 0.5, 6.5 ],
    "faces": {
        "down":  { "uv": [ 10, 6.5, 6, 6 ], "texture": "#texture" },
        "north": { "uv": [ 6, 15.5, 10, 16 ], "texture": "#texture" },
        "west":  { "uv": [ 6, 15.5, 6.5, 16 ], "texture": "#texture" },
        "east":  { "uv": [ 9.5, 15.5, 10, 16 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6, 15.5, 6 ],
    "to": [ 10, 16, 6.5 ],
    "faces": {
        "up":    { "uv": [ 6, 6, 10, 6.5 ], "texture": "#texture" },
        "north": { "uv": [ 6, 0, 10, 0.5 ], "texture": "#texture" },
        "west":  { "uv": [ 6, 0, 6.5, 0.5 ], "texture": "#texture" },
        "east":  { "uv": [ 9.5, 0, 10, 0.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6, 0, 9.5 ],
    "to": [ 10, 0.5, 10 ],
    "faces": {
        "down":  { "uv": [ 10, 10, 6, 9.5 ], "texture": "#texture" },
        "south": { "uv": [ 6, 15.5, 10, 16 ], "texture": "#texture" },
        "west":  { "uv": [ 9.5, 15.5, 10, 16 ], "texture": "#texture" },
        "east":  { "uv": [ 6, 15.5, 6.5, 16 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6, 15.5, 9.5 ],
    "to": [ 10, 16, 10 ],
    "faces": {
        "up":    { "uv": [ 6, 9.5, 10, 10 ], "texture": "#texture" },
        "south": { "uv": [ 6, 0, 10, 0.5 ], "texture": "#texture" },
        "west":  { "uv": [ 9.5, 0, 10, 0.5 ], "texture": "#texture" },
        "east":  { "uv": [ 6, 0, 6.5, 0.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6, 0.5, 11 ],
    "to": [ 10, 1, 11.5 ],
    "faces": {
        "down":  { "uv": [ 10, 11.5, 6, 11 ], "texture": "#texture" },
        "south": { "uv": [ 6, 15, 10, 15.5 ], "texture": "#texture" },
        "west":  { "uv": [ 11, 15, 11.5, 15.5 ], "texture": "#texture" },
        "east":  { "uv": [ 4.5, 15, 5, 15.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6, 15, 11 ],
    "to": [ 10, 15.5, 11.5 ],
    "faces": {
        "up":    { "uv": [ 6, 11, 10, 11.5 ], "texture": "#texture" },
        "south": { "uv": [ 6, 0.5, 10, 1 ], "texture": "#texture" },
        "west":  { "uv": [ 11, 0.5, 11.5, 1 ], "texture": "#texture" },
        "east":  { "uv": [ 4.5, 0.5, 5, 1 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6, 1, 12 ],
    "to": [ 10, 1.5, 12.5 ],
    "faces": {
        "down":  { "uv": [ 10, 12.5, 6, 12 ], "texture": "#texture" },
        "south": { "uv": [ 6, 14.5, 10, 15 ], "texture": "#texture" },
        "west":  { "uv": [ 12, 14.5, 12.5, 15 ], "texture": "#texture" },
        "east":  { "uv": [ 3.5, 14.5, 4, 15 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6, 14.5, 12 ],
    "to": [ 10, 15, 12.5 ],
    "faces": {
        "up":    { "uv": [ 6, 12, 10, 12.5 ], "texture": "#texture" },
        "south": { "uv": [ 6, 1, 10, 1.5 ], "texture": "#texture" },
        "west":  { "uv": [ 12, 1, 12.5, 1.5 ], "texture": "#texture" },
        "east":  { "uv": [ 3.5, 1, 4, 1.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6, 3.5, 14.5 ],
    "to": [ 10, 4, 15 ],
    "faces": {
        "down":  { "uv": [ 10, 15, 6, 14.5 ], "texture": "#texture" },
        "south": { "uv": [ 6, 12, 10, 12.5 ], "texture": "#texture" },
        "west":  { "uv": [ 14.5, 12, 15, 12.5 ], "texture": "#texture" },
        "east":  { "uv": [ 1, 12, 1.5, 12.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6, 12, 14.5 ],
    "to": [ 10, 12.5, 15 ],
    "faces": {
        "up":    { "uv": [ 6, 14.5, 10, 15 ], "texture": "#texture" },
        "south": { "uv": [ 6, 3.5, 10, 4 ], "texture": "#texture" },
        "west":  { "uv": [ 14.5, 3.5, 15, 4 ], "texture": "#texture" },
        "east":  { "uv": [ 1, 3.5, 1.5, 4 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6, 4.5, 15 ],
    "to": [ 10, 5, 15.5 ],
    "faces": {
        "down":  { "uv": [ 10, 15.5, 6, 15 ], "texture": "#texture" },
        "south": { "uv": [ 6, 11, 10, 11.5 ], "texture": "#texture" },
        "west":  { "uv": [ 15, 11, 15.5, 11.5 ], "texture": "#texture" },
        "east":  { "uv": [ 0.5, 11, 1, 11.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6, 11, 15 ],
    "to": [ 10, 11.5, 15.5 ],
    "faces": {
        "up":    { "uv": [ 6, 15, 10, 15.5 ], "texture": "#texture" },
        "south": { "uv": [ 6, 4.5, 10, 5 ], "texture": "#texture" },
        "west":  { "uv": [ 15, 4.5, 15.5, 5 ], "texture": "#texture" },
        "east":  { "uv": [ 0.5, 4.5, 1, 5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6, 6, 15.5 ],
    "to": [ 10, 6.5, 16 ],
    "faces": {
        "down":  { "uv": [ 10, 16, 6, 15.5 ], "texture": "#texture" },
        "south": { "uv": [ 6, 9.5, 10, 10 ], "texture": "#texture" },
        "west":  { "uv": [ 15.5, 9.5, 16, 10 ], "texture": "#texture" },
        "east":  { "uv": [ 0, 9.5, 0.5, 10 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6, 9.5, 15.5 ],
    "to": [ 10, 10, 16 ],
    "faces": {
        "up":    { "uv": [ 6, 15.5, 10, 16 ], "texture": "#texture" },
        "south": { "uv": [ 6, 6, 10, 6.5 ], "texture": "#texture" },
        "west":  { "uv": [ 15.5, 6, 16, 6.5 ], "texture": "#texture" },
        "east":  { "uv": [ 0, 6, 0.5, 6.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6.5, 5.5, 0 ],
    "to": [ 9.5, 6, 0.5 ],
    "faces": {
        "down":  { "uv": [ 9.5, 0.5, 6.5, 0 ], "texture": "#texture" },
        "north": { "uv": [ 6.5, 10, 9.5, 10.5 ], "texture": "#texture" },
        "west":  { "uv": [ 0, 10, 0.5, 10.5 ], "texture": "#texture" },
        "east":  { "uv": [ 15.5, 10, 16, 10.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6.5, 10, 0 ],
    "to": [ 9.5, 10.5, 0.5 ],
    "faces": {
        "up":    { "uv": [ 6.5, 0, 9.5, 0.5 ], "texture": "#texture" },
        "north": { "uv": [ 6.5, 5.5, 9.5, 6 ], "texture": "#texture" },
        "west":  { "uv": [ 0, 5.5, 0.5, 6 ], "texture": "#texture" },
        "east":  { "uv": [ 15.5, 5.5, 16, 6 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6.5, 2, 2 ],
    "to": [ 9.5, 2.5, 2.5 ],
    "faces": {
        "down":  { "uv": [ 9.5, 2.5, 6.5, 2 ], "texture": "#texture" },
        "north": { "uv": [ 6.5, 13.5, 9.5, 14 ], "texture": "#texture" },
        "west":  { "uv": [ 2, 13.5, 2.5, 14 ], "texture": "#texture" },
        "east":  { "uv": [ 13.5, 13.5, 14, 14 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6.5, 13.5, 2 ],
    "to": [ 9.5, 14, 2.5 ],
    "faces": {
        "up":    { "uv": [ 6.5, 2, 9.5, 2.5 ], "texture": "#texture" },
        "north": { "uv": [ 6.5, 2, 9.5, 2.5 ], "texture": "#texture" },
        "west":  { "uv": [ 2, 2, 2.5, 2.5 ], "texture": "#texture" },
        "east":  { "uv": [ 13.5, 2, 14, 2.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6.5, 0, 5.5 ],
    "to": [ 9.5, 0.5, 6 ],
    "faces": {
        "down":  { "uv": [ 9.5, 6, 6.5, 5.5 ], "texture": "#texture" },
        "north": { "uv": [ 6.5, 15.5, 9.5, 16 ], "texture": "#texture" },
        "west":  { "uv": [ 5.5, 15.5, 6, 16 ], "texture": "#texture" },
        "east":  { "uv": [ 10, 15.5, 10.5, 16 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6.5, 15.5, 5.5 ],
    "to": [ 9.5, 16, 6 ],
    "faces": {
        "up":    { "uv": [ 6.5, 5.5, 9.5, 6 ], "texture": "#texture" },
        "north": { "uv": [ 6.5, 0, 9.5, 0.5 ], "texture": "#texture" },
        "west":  { "uv": [ 5.5, 0, 6, 0.5 ], "texture": "#texture" },
        "east":  { "uv": [ 10, 0, 10.5, 0.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6.5, 0, 10 ],
    "to": [ 9.5, 0.5, 10.5 ],
    "faces": {
        "down":  { "uv": [ 9.5, 10.5, 6.5, 10 ], "texture": "#texture" },
        "south": { "uv": [ 6.5, 15.5, 9.5, 16 ], "texture": "#texture" },
        "west":  { "uv": [ 10, 15.5, 10.5, 16 ], "texture": "#texture" },
        "east":  { "uv": [ 5.5, 15.5, 6, 16 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6.5, 15.5, 10 ],
    "to": [ 9.5, 16, 10.5 ],
    "faces": {
        "up":    { "uv": [ 6.5, 10, 9.5, 10.5 ], "texture": "#texture" },
        "south": { "uv": [ 6.5, 0, 9.5, 0.5 ], "texture": "#texture" },
        "west":  { "uv": [ 10, 0, 10.5, 0.5 ], "texture": "#texture" },
        "east":  { "uv": [ 5.5, 0, 6, 0.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6.5, 2, 13.5 ],
    "to": [ 9.5, 2.5, 14 ],
    "faces": {
        "down":  { "uv": [ 9.5, 14, 6.5, 13.5 ], "texture": "#texture" },
        "south": { "uv": [ 6.5, 13.5, 9.5, 14 ], "texture": "#texture" },
        "west":  { "uv": [ 13.5, 13.5, 14, 14 ], "texture": "#texture" },
        "east":  { "uv": [ 2, 13.5, 2.5, 14 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6.5, 13.5, 13.5 ],
    "to": [ 9.5, 14, 14 ],
    "faces": {
        "up":    { "uv": [ 6.5, 13.5, 9.5, 14 ], "texture": "#texture" },
        "south": { "uv": [ 6.5, 2, 9.5, 2.5 ], "texture": "#texture" },
        "west":  { "uv": [ 13.5, 2, 14, 2.5 ], "texture": "#texture" },
        "east":  { "uv": [ 2, 2, 2.5, 2.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6.5, 5.5, 15.5 ],
    "to": [ 9.5, 6, 16 ],
    "faces": {
        "down":  { "uv": [ 9.5, 16, 6.5, 15.5 ], "texture": "#texture" },
        "south": { "uv": [ 6.5, 10, 9.5, 10.5 ], "texture": "#texture" },
        "west":  { "uv": [ 15.5, 10, 16, 10.5 ], "texture": "#texture" },
        "east":  { "uv": [ 0, 10, 0.5, 10.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 6.5, 10, 15.5 ],
    "to": [ 9.5, 10.5, 16 ],
    "faces": {
        "up":    { "uv": [ 6.5, 15.5, 9.5, 16 ], "texture": "#texture" },
        "south": { "uv": [ 6.5, 5.5, 9.5, 6 ], "texture": "#texture" },
        "west":  { "uv": [ 15.5, 5.5, 16, 6 ], "texture": "#texture" },
        "east":  { "uv": [ 0, 5.5, 0.5, 6 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 7, 4, 0.5 ],
    "to": [ 9, 4.5, 1 ],
    "faces": {
        "down":  { "uv": [ 9, 1, 7, 0.5 ], "texture": "#texture" },
        "north": { "uv": [ 7, 11.5, 9, 12 ], "texture": "#texture" },
        "west":  { "uv": [ 0.5, 11.5, 1, 12 ], "texture": "#texture" },
        "east":  { "uv": [ 15, 11.5, 15.5, 12 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 7, 11.5, 0.5 ],
    "to": [ 9, 12, 1 ],
    "faces": {
        "up":    { "uv": [ 7, 0.5, 9, 1 ], "texture": "#texture" },
        "north": { "uv": [ 7, 4, 9, 4.5 ], "texture": "#texture" },
        "west":  { "uv": [ 0.5, 4, 1, 4.5 ], "texture": "#texture" },
        "east":  { "uv": [ 15, 4, 15.5, 4.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 7, 2.5, 1.5 ],
    "to": [ 9, 3, 2 ],
    "faces": {
        "down":  { "uv": [ 9, 2, 7, 1.5 ], "texture": "#texture" },
        "north": { "uv": [ 7, 13, 9, 13.5 ], "texture": "#texture" },
        "west":  { "uv": [ 1.5, 13, 2, 13.5 ], "texture": "#texture" },
        "east":  { "uv": [ 14, 13, 14.5, 13.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 7, 13, 1.5 ],
    "to": [ 9, 13.5, 2 ],
    "faces": {
        "up":    { "uv": [ 7, 1.5, 9, 2 ], "texture": "#texture" },
        "north": { "uv": [ 7, 2.5, 9, 3 ], "texture": "#texture" },
        "west":  { "uv": [ 1.5, 2.5, 2, 3 ], "texture": "#texture" },
        "east":  { "uv": [ 14, 2.5, 14.5, 3 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 7, 1.5, 2.5 ],
    "to": [ 9, 2, 3 ],
    "faces": {
        "down":  { "uv": [ 9, 3, 7, 2.5 ], "texture": "#texture" },
        "north": { "uv": [ 7, 14, 9, 14.5 ], "texture": "#texture" },
        "west":  { "uv": [ 2.5, 14, 3, 14.5 ], "texture": "#texture" },
        "east":  { "uv": [ 13, 14, 13.5, 14.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 7, 14, 2.5 ],
    "to": [ 9, 14.5, 3 ],
    "faces": {
        "up":    { "uv": [ 7, 2.5, 9, 3 ], "texture": "#texture" },
        "north": { "uv": [ 7, 1.5, 9, 2 ], "texture": "#texture" },
        "west":  { "uv": [ 2.5, 1.5, 3, 2 ], "texture": "#texture" },
        "east":  { "uv": [ 13, 1.5, 13.5, 2 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 7, 0.5, 4 ],
    "to": [ 9, 1, 4.5 ],
    "faces": {
        "down":  { "uv": [ 9, 4.5, 7, 4 ], "texture": "#texture" },
        "north": { "uv": [ 7, 15, 9, 15.5 ], "texture": "#texture" },
        "west":  { "uv": [ 4, 15, 4.5, 15.5 ], "texture": "#texture" },
        "east":  { "uv": [ 11.5, 15, 12, 15.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 7, 15, 4 ],
    "to": [ 9, 15.5, 4.5 ],
    "faces": {
        "up":    { "uv": [ 7, 4, 9, 4.5 ], "texture": "#texture" },
        "north": { "uv": [ 7, 0.5, 9, 1 ], "texture": "#texture" },
        "west":  { "uv": [ 4, 0.5, 4.5, 1 ], "texture": "#texture" },
        "east":  { "uv": [ 11.5, 0.5, 12, 1 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 7, 0.5, 11.5 ],
    "to": [ 9, 1, 12 ],
    "faces": {
        "down":  { "uv": [ 9, 12, 7, 11.5 ], "texture": "#texture" },
        "south": { "uv": [ 7, 15, 9, 15.5 ], "texture": "#texture" },
        "west":  { "uv": [ 11.5, 15, 12, 15.5 ], "texture": "#texture" },
        "east":  { "uv": [ 4, 15, 4.5, 15.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 7, 15, 11.5 ],
    "to": [ 9, 15.5, 12 ],
    "faces": {
        "up":    { "uv": [ 7, 11.5, 9, 12 ], "texture": "#texture" },
        "south": { "uv": [ 7, 0.5, 9, 1 ], "texture": "#texture" },
        "west":  { "uv": [ 11.5, 0.5, 12, 1 ], "texture": "#texture" },
        "east":  { "uv": [ 4, 0.5, 4.5, 1 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 7, 1.5, 13 ],
    "to": [ 9, 2, 13.5 ],
    "faces": {
        "down":  { "uv": [ 9, 13.5, 7, 13 ], "texture": "#texture" },
        "south": { "uv": [ 7, 14, 9, 14.5 ], "texture": "#texture" },
        "west":  { "uv": [ 13, 14, 13.5, 14.5 ], "texture": "#texture" },
        "east":  { "uv": [ 2.5, 14, 3, 14.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 7, 14, 13 ],
    "to": [ 9, 14.5, 13.5 ],
    "faces": {
        "up":    { "uv": [ 7, 13, 9, 13.5 ], "texture": "#texture" },
        "south": { "uv": [ 7, 1.5, 9, 2 ], "texture": "#texture" },
        "west":  { "uv": [ 13, 1.5, 13.5, 2 ], "texture": "#texture" },
        "east":  { "uv": [ 2.5, 1.5, 3, 2 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 7, 2.5, 14 ],
    "to": [ 9, 3, 14.5 ],
    "faces": {
        "down":  { "uv": [ 9, 14.5, 7, 14 ], "texture": "#texture" },
        "south": { "uv": [ 7, 13, 9, 13.5 ], "texture": "#texture" },
        "west":  { "uv": [ 14, 13, 14.5, 13.5 ], "texture": "#texture" },
        "east":  { "uv": [ 1.5, 13, 2, 13.5 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 7, 13, 14 ],
    "to": [ 9, 13.5, 14.5 ],
    "faces": {
        "up":    { "uv": [ 7, 14, 9, 14.5 ], "texture": "#texture" },
        "south": { "uv": [ 7, 2.5, 9, 3 ], "texture": "#texture" },
        "west":  { "uv": [ 14, 2.5, 14.5, 3 ], "texture": "#texture" },
        "east":  { "uv": [ 1.5, 2.5, 2, 3 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 7, 4, 15 ],
    "to": [ 9, 4.5, 15.5 ],
    "faces": {
        "down":  { "uv": [ 9, 15.5, 7, 15 ], "texture": "#texture" },
        "south": { "uv": [ 7, 11.5, 9, 12 ], "texture": "#texture" },
        "west":  { "uv": [ 15, 11.5, 15.5, 12 ], "texture": "#texture" },
        "east":  { "uv": [ 0.5, 11.5, 1, 12 ], "texture": "#texture" }
    }
},
{
    "__comment": "Sphere",
    "from": [ 7, 11.5, 15 ],
    "to": [ 9, 12, 15.5 ],
    "faces": {
        "up":    { "uv": [ 7, 15, 9, 15.5 ], "texture": "#texture" },
        "south": { "uv": [ 7, 4, 9, 4.5 ], "texture": "#texture" },
        "west":  { "uv": [ 15, 4, 15.5, 4.5 ], "texture": "#texture" },
        "east":  { "uv": [ 0.5, 4, 1, 4.5 ], "texture": "#texture" }
    }
}
]
}

 

 

3. In another block, when activated it changes into a water source block. However this water source block doesn't get updated, and so doesn't spread. I tried looking at the bucket code to see if I could work it out, but all it appears to do is set the block to water using World#setBlockState, and I tried copying that buy still didn't work. Can anyone tell me the correct way of placing a water source block and then updating it so that it flows.

No signature for you!

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Without Network protocol fix mod, I get kicked with a Network Protocol error when on LAN. Also, both of these issues are caused by a Null Pointer Exception/Screen cannot be null in a "Client Bound Player Combat Kill Packet".
    • You need a new "items" folder at  resources/assets/yourmodid/ there you add for every item model a .json file with the exact item/block name and fill it like this if it's an item: { "model": { "type": "minecraft:model", "model": "yourmodid:item/youritem" } } and so if its a block: { "model": { "type": "minecraft:model", "model": "yourmodid:block/youritem" } } There is also a generator for it you can do namy crazy things with it which replaces the previous hard coded Item Properties implementaion method (Bow pulling animation for example). https://misode.github.io/assets/item/
    • Hello! I'm playing a modpack (custom made) with some friends, and we have the server running on BisectHosting. We encountered a bug with an entity from The Box Of Horrors mod, that would crash the game whenever someone nearby it would log in. We tried to fix it by: 1) Editing the player.dat files to change the location of the affected players (something I had done successfully previously) 2) Updating the version of the mod we had (0.0.8.2) to the latest alpha version (0.0.8.3 However, after doing both of those, none of us are able to join the server, and we get the following errors: Server side: https://pastebin.com/J5sc3VQN Client side: Internal Server Error (that's basically all I've gotten) Please help! I've tried restoring the player data to how it was before I made the changes (Bisect allows you to restore deleted files) and deleting all of my player data files and I still get the same error. Deleting Box Of Horrors causes the error: Failed to load datapacks, cannot continue with server load.
    • Hey there! I'm trying to create a simple mod for Forge 1.21.1 that adds a few custom banner patterns that don't require any banner pattern items. To be completely honest, this is my first time modding for Minecraft, so after setting up the project in Intellij, I copied the parts of the source code from this mod on CurseForge that dealt with adding and registering banner patterns, including the lang and banner_pattern .json files. From what I understand, to add a banner pattern that doesn't require a banner pattern item, I only needed to create the registries for each pattern like in here and then register it in the main java class like here on Line 54. Additionally, in the lang/en_us.json file, add in the names for each respective banner color, and in the data/minecraft/tags/banner_pattern/no_items_required.json file, add each banner pattern that does not require a banner pattern item to make a banner. The project is able to compile when loading in Forge which makes me assume that the file structure I have is correct, but on loading a Minecraft world, this error appears in console and the loom is subsequently blank. [Worker-Main-1/ERROR] [minecraft/TagLoader]: Couldn't load tag minecraft:no_item_required as it is missing following references: *lists every added entry in no_item_required.json* The message clearly states something went wrong regarding when trying to load in the registries from the mod, but I have no clue what could be wrong with the code I have. Attached below are screenshots of what I currently have. Java Main Class Banner Registry Class File Structure Error in Console upon loading a Minecraft world What the loom shows without minecraft:no_item_required    The original mod I copied still functions completely, so if anyone can figure out why the registries for the mod I'm making isn't working, that would be greatly appreciated!    
    • Please someone help me to know how can I fix this generation error in the trees! I already uninstalled and reinstalled several mods in my modpack and can't figure out what is causing it.    
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.