From f04a353ab6b4f2804fdd68c1fcbf7f3104368228 Mon Sep 17 00:00:00 2001 From: GearShocky Date: Wed, 18 Aug 2021 03:00:57 +0700 Subject: [PATCH] Added "halted" and "inactive" versions of machines. Added new models/textures for following machines: Matter replicator, Matter scanner, Matter panel, Matter decomposer. --- .../blockstates/matter_decomposer.json | 19 ++ .../blockstates/matter_replicator.json | 19 ++ .../blockstates/matter_scanner.json | 19 ++ .../models/block/matter_decomposer.json | 82 ++++++ .../models/block/matter_replicator.json | 274 ++++++++++++++++++ .../models/block/matter_scanner.json | 227 +++++++++++++++ .../models/item/matter_decomposer.json | 3 + .../models/item/matter_panel.json | 22 ++ .../models/item/matter_replicator.json | 3 + .../models/item/matter_scanner.json | 3 + .../models/item/pattern_drive_creative.json | 6 + .../textures/block/matter_decomposer.png | Bin 0 -> 465 bytes .../block/matter_decomposer_offline.png | Bin 0 -> 456 bytes .../textures/block/matter_panel.png | Bin 0 -> 326 bytes .../textures/block/matter_replicator.png | Bin 0 -> 523 bytes .../block/matter_replicator_halted.png | Bin 0 -> 509 bytes .../block/matter_replicator_offline.png | Bin 0 -> 490 bytes .../textures/block/matter_scanner.png | Bin 0 -> 462 bytes .../textures/block/matter_scanner_halted.png | Bin 0 -> 461 bytes .../textures/block/matter_scanner_offline.png | Bin 0 -> 452 bytes 20 files changed, 677 insertions(+) create mode 100644 src/main/resources/assets/overdrive_that_matters/blockstates/matter_decomposer.json create mode 100644 src/main/resources/assets/overdrive_that_matters/blockstates/matter_replicator.json create mode 100644 src/main/resources/assets/overdrive_that_matters/blockstates/matter_scanner.json create mode 100644 src/main/resources/assets/overdrive_that_matters/models/block/matter_decomposer.json create mode 100644 src/main/resources/assets/overdrive_that_matters/models/block/matter_replicator.json create mode 100644 src/main/resources/assets/overdrive_that_matters/models/block/matter_scanner.json create mode 100644 src/main/resources/assets/overdrive_that_matters/models/item/matter_decomposer.json create mode 100644 src/main/resources/assets/overdrive_that_matters/models/item/matter_panel.json create mode 100644 src/main/resources/assets/overdrive_that_matters/models/item/matter_replicator.json create mode 100644 src/main/resources/assets/overdrive_that_matters/models/item/matter_scanner.json create mode 100644 src/main/resources/assets/overdrive_that_matters/models/item/pattern_drive_creative.json create mode 100644 src/main/resources/assets/overdrive_that_matters/textures/block/matter_decomposer.png create mode 100644 src/main/resources/assets/overdrive_that_matters/textures/block/matter_decomposer_offline.png create mode 100644 src/main/resources/assets/overdrive_that_matters/textures/block/matter_panel.png create mode 100644 src/main/resources/assets/overdrive_that_matters/textures/block/matter_replicator.png create mode 100644 src/main/resources/assets/overdrive_that_matters/textures/block/matter_replicator_halted.png create mode 100644 src/main/resources/assets/overdrive_that_matters/textures/block/matter_replicator_offline.png create mode 100644 src/main/resources/assets/overdrive_that_matters/textures/block/matter_scanner.png create mode 100644 src/main/resources/assets/overdrive_that_matters/textures/block/matter_scanner_halted.png create mode 100644 src/main/resources/assets/overdrive_that_matters/textures/block/matter_scanner_offline.png diff --git a/src/main/resources/assets/overdrive_that_matters/blockstates/matter_decomposer.json b/src/main/resources/assets/overdrive_that_matters/blockstates/matter_decomposer.json new file mode 100644 index 000000000..4a38faebe --- /dev/null +++ b/src/main/resources/assets/overdrive_that_matters/blockstates/matter_decomposer.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=south": { + "model": "overdrive_that_matters:block/matter_decomposer", + "y": 180 + }, + "facing=west": { + "model": "overdrive_that_matters:block/matter_decomposer", + "y": 270 + }, + "facing=north": { + "model": "overdrive_that_matters:block/matter_decomposer" + }, + "facing=east": { + "model": "overdrive_that_matters:block/matter_decomposer", + "y": 90 + } + } +} diff --git a/src/main/resources/assets/overdrive_that_matters/blockstates/matter_replicator.json b/src/main/resources/assets/overdrive_that_matters/blockstates/matter_replicator.json new file mode 100644 index 000000000..2748f475a --- /dev/null +++ b/src/main/resources/assets/overdrive_that_matters/blockstates/matter_replicator.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=south": { + "model": "overdrive_that_matters:block/matter_replicator", + "y": 180 + }, + "facing=west": { + "model": "overdrive_that_matters:block/matter_replicator", + "y": 270 + }, + "facing=north": { + "model": "overdrive_that_matters:block/matter_replicator" + }, + "facing=east": { + "model": "overdrive_that_matters:block/matter_replicator", + "y": 90 + } + } +} diff --git a/src/main/resources/assets/overdrive_that_matters/blockstates/matter_scanner.json b/src/main/resources/assets/overdrive_that_matters/blockstates/matter_scanner.json new file mode 100644 index 000000000..a6c4efb01 --- /dev/null +++ b/src/main/resources/assets/overdrive_that_matters/blockstates/matter_scanner.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=south": { + "model": "overdrive_that_matters:block/matter_scanner", + "y": 180 + }, + "facing=west": { + "model": "overdrive_that_matters:block/matter_scanner", + "y": 270 + }, + "facing=north": { + "model": "overdrive_that_matters:block/matter_scanner" + }, + "facing=east": { + "model": "overdrive_that_matters:block/matter_scanner", + "y": 90 + } + } +} diff --git a/src/main/resources/assets/overdrive_that_matters/models/block/matter_decomposer.json b/src/main/resources/assets/overdrive_that_matters/models/block/matter_decomposer.json new file mode 100644 index 000000000..9052c1821 --- /dev/null +++ b/src/main/resources/assets/overdrive_that_matters/models/block/matter_decomposer.json @@ -0,0 +1,82 @@ +{ + "parent": "block/block", + "texture_size": [64, 64], + "textures": { + "0": "overdrive_that_matters:block/matter_decomposer", + "particle": "overdrive_that_matters:block/matter_decomposer" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [16, 3, 16], + "faces": { + "north": {"uv": [0, 11.25, 4, 12], "texture": "#0"}, + "east": {"uv": [0, 11.25, 4, 12], "texture": "#0"}, + "south": {"uv": [0, 11.25, 4, 12], "texture": "#0"}, + "west": {"uv": [0, 11.25, 4, 12], "texture": "#0"}, + "up": {"uv": [0, 7.25, 4, 11.25], "texture": "#0"}, + "down": {"uv": [0, 12, 4, 16], "texture": "#0"} + } + }, + { + "from": [8, 3, 0], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [4, 7.25, 6, 10.5], "texture": "#0"}, + "east": {"uv": [4, 10.5, 8, 13.75], "texture": "#0"}, + "south": {"uv": [6, 7.25, 8, 10.5], "texture": "#0"}, + "west": {"uv": [8, 10.5, 12, 13.75], "texture": "#0"}, + "up": {"uv": [4, 13.75, 8, 15.25], "rotation": 90, "texture": "#0"}, + "down": {"uv": [0, 7.25, 2, 11.25], "texture": "#0"} + } + }, + { + "from": [1, 3, 1], + "to": [7, 14, 7], + "faces": { + "north": {"uv": [0, 4.5, 1.5, 7.25], "texture": "#0"}, + "east": {"uv": [0, 4.5, 1.5, 7.25], "texture": "#0"}, + "south": {"uv": [0, 4.5, 1.5, 7.25], "texture": "#0"}, + "west": {"uv": [0, 4.5, 1.5, 7.25], "texture": "#0"}, + "up": {"uv": [0, 3, 1.5, 4.5], "texture": "#0"}, + "down": {"uv": [0, 3, 1.5, 4.5], "texture": "#0"} + } + }, + { + "from": [1, 3, 9], + "to": [7, 14, 15], + "faces": { + "north": {"uv": [0, 4.5, 1.5, 7.25], "texture": "#0"}, + "east": {"uv": [0, 4.5, 1.5, 7.25], "texture": "#0"}, + "south": {"uv": [0, 4.5, 1.5, 7.25], "texture": "#0"}, + "west": {"uv": [0, 4.5, 1.5, 7.25], "texture": "#0"}, + "up": {"uv": [0, 3, 1.5, 4.5], "texture": "#0"}, + "down": {"uv": [0, 3, 1.5, 4.5], "texture": "#0"} + } + }, + { + "from": [3, 13, 11], + "to": [8, 15, 13], + "faces": { + "north": {"uv": [1.75, 6, 2.25, 7.25], "rotation": 270, "texture": "#0"}, + "east": {"uv": [0.5, 3.5, 1, 3.75], "texture": "#0"}, + "south": {"uv": [1.75, 6, 2.25, 7.25], "rotation": 90, "texture": "#0"}, + "west": {"uv": [1.75, 6.75, 2.25, 7.25], "rotation": 90, "texture": "#0"}, + "up": {"uv": [2.25, 6, 2.75, 7.25], "rotation": 90, "texture": "#0"}, + "down": {"uv": [1.5, 5.25, 1.75, 7.25], "texture": "#0"} + } + }, + { + "from": [3, 13, 3], + "to": [8, 15, 5], + "faces": { + "north": {"uv": [1.75, 6, 2.25, 7.25], "rotation": 270, "texture": "#0"}, + "east": {"uv": [0.5, 3.5, 1, 3.75], "texture": "#0"}, + "south": {"uv": [1.75, 6, 2.25, 7.25], "rotation": 90, "texture": "#0"}, + "west": {"uv": [1.75, 6.75, 2.25, 7.25], "rotation": 90, "texture": "#0"}, + "up": {"uv": [2.25, 6, 2.75, 7.25], "rotation": 90, "texture": "#0"}, + "down": {"uv": [1.5, 5.25, 1.75, 7.25], "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/overdrive_that_matters/models/block/matter_replicator.json b/src/main/resources/assets/overdrive_that_matters/models/block/matter_replicator.json new file mode 100644 index 000000000..5237b2829 --- /dev/null +++ b/src/main/resources/assets/overdrive_that_matters/models/block/matter_replicator.json @@ -0,0 +1,274 @@ +{ + "parent": "block/block", + "texture_size": [32, 64], + "textures": { + "particle": "overdrive_that_matters:block/matter_replicator", + "texture": "overdrive_that_matters:block/matter_replicator" + }, + "elements": [ + { + "name": "body", + "from": [15, 0, 0], + "to": [16, 11, 16], + "faces": { + "north": {"uv": [0, 1.25, 0.5, 4], "texture": "#texture"}, + "east": {"uv": [0, 5.25, 8, 8], "texture": "#texture"}, + "south": {"uv": [15.5, 1.25, 16, 4], "texture": "#texture"}, + "west": {"uv": [8, 9, 16, 11.75], "texture": "#texture"}, + "up": {"uv": [0, 8, 0.5, 12], "rotation": 180, "texture": "#texture"}, + "down": {"uv": [8, 8, 8.5, 12], "texture": "#texture"} + } + }, + { + "name": "body", + "from": [0, 0, 0], + "to": [1, 11, 16], + "faces": { + "north": {"uv": [7.5, 1.25, 8, 4], "texture": "#texture"}, + "east": {"uv": [8, 9, 16, 11.75], "texture": "#texture"}, + "south": {"uv": [8, 1.25, 8.5, 4], "texture": "#texture"}, + "west": {"uv": [8, 5.25, 16, 8], "texture": "#texture"}, + "up": {"uv": [7.5, 8, 8, 12], "rotation": 180, "texture": "#texture"}, + "down": {"uv": [15.5, 8, 16, 12], "texture": "#texture"} + } + }, + { + "name": "controlpanel", + "from": [0, 11, 1], + "to": [8, 16, 6], + "faces": { + "north": {"uv": [4, 13.25, 8, 14.5], "texture": "#texture"}, + "east": {"uv": [0, 0, 5, 5], "texture": "#missing"}, + "south": {"uv": [4, 12, 8, 13.25], "texture": "#texture"}, + "west": {"uv": [8.5, 4, 11, 5.25], "texture": "#texture"}, + "up": {"uv": [4, 12, 8, 13.25], "texture": "#texture"}, + "down": {"uv": [0, 0, 8, 5], "texture": "#missing"} + } + }, + { + "name": "computer", + "from": [8, 11, 0], + "to": [16, 16, 6], + "faces": { + "north": {"uv": [0, 0, 4, 1.25], "texture": "#texture"}, + "east": {"uv": [5, 4, 8, 5.25], "texture": "#texture"}, + "south": {"uv": [0, 12.25, 4, 13.5], "texture": "#texture"}, + "west": {"uv": [0, 12, 4, 13.5], "texture": "#texture"}, + "up": {"uv": [0, 12, 4, 13.5], "texture": "#texture"}, + "down": {"uv": [0, 0, 8, 6], "texture": "#missing"} + } + }, + { + "name": "canister", + "from": [3, 11, 11], + "to": [15, 15, 15], + "faces": { + "north": {"uv": [10, 12, 16, 13], "rotation": 180, "texture": "#texture"}, + "east": {"uv": [8, 12, 10, 13], "texture": "#texture"}, + "south": {"uv": [10, 12, 16, 13], "texture": "#texture"}, + "west": {"uv": [8, 12, 10, 13], "texture": "#texture"}, + "up": {"uv": [10, 12, 16, 13], "texture": "#texture"}, + "down": {"uv": [0, 0, 6, 1], "texture": "#missing"} + } + }, + { + "name": "canister", + "from": [3, 11, 6], + "to": [15, 15, 10], + "faces": { + "north": {"uv": [0, 0, 6, 1], "texture": "#missing"}, + "east": {"uv": [8, 12, 10, 13], "texture": "#texture"}, + "south": {"uv": [10, 12, 16, 13], "texture": "#texture"}, + "west": {"uv": [8, 12, 10, 13], "texture": "#texture"}, + "up": {"uv": [10, 12, 16, 13], "texture": "#texture"}, + "down": {"uv": [0, 0, 6, 1], "texture": "#missing"} + } + }, + { + "name": "pipe", + "from": [1, 11, 7], + "to": [3, 14, 9], + "faces": { + "north": {"uv": [0, 14, 1, 14.75], "texture": "#texture"}, + "east": {"uv": [0, 0, 1, 0.75], "texture": "#missing"}, + "south": {"uv": [0, 14, 1, 14.75], "texture": "#texture"}, + "west": {"uv": [0, 14, 1, 14.75], "texture": "#texture"}, + "up": {"uv": [0, 13.5, 1, 14], "texture": "#texture"}, + "down": {"uv": [0, 0, 1, 0.5], "texture": "#missing"} + } + }, + { + "name": "pipe", + "from": [1, 11, 12], + "to": [3, 14, 14], + "faces": { + "north": {"uv": [0, 14, 1, 14.75], "texture": "#texture"}, + "east": {"uv": [0, 0, 1, 0.75], "texture": "#missing"}, + "south": {"uv": [0, 14, 1, 14.75], "texture": "#texture"}, + "west": {"uv": [0, 14, 1, 14.75], "texture": "#texture"}, + "up": {"uv": [0, 13.5, 1, 14], "texture": "#texture"}, + "down": {"uv": [0, 0, 1, 0.5], "texture": "#missing"} + } + }, + { + "name": "frame", + "from": [0, 11, 15], + "to": [0, 16, 16], + "faces": { + "north": {"uv": [0, 0, 0, 5], "texture": "#missing"}, + "east": {"uv": [14.5, 0, 16, 0.75], "texture": "#texture"}, + "south": {"uv": [0, 0, 0, 5], "texture": "#missing"}, + "west": {"uv": [14.5, 0, 16, 0.75], "texture": "#texture"}, + "up": {"uv": [0, 0, 0, 1], "texture": "#missing"}, + "down": {"uv": [0, 0, 0, 1], "texture": "#missing"} + } + }, + { + "name": "frame", + "from": [16, 11, 15], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [0, 0, 0, 5], "texture": "#missing"}, + "east": {"uv": [14.5, 0, 16, 0.75], "texture": "#texture"}, + "south": {"uv": [0, 0, 0, 5], "texture": "#missing"}, + "west": {"uv": [14.5, 0, 16, 0.75], "texture": "#texture"}, + "up": {"uv": [0, 0, 0, 1], "texture": "#missing"}, + "down": {"uv": [0, 0, 0, 1], "texture": "#missing"} + } + }, + { + "name": "frame", + "from": [16, 15, 6], + "to": [16, 16, 15], + "faces": { + "north": {"uv": [0, 0, 0, 1], "texture": "#missing"}, + "east": {"uv": [14.5, 0, 16, 0.75], "texture": "#texture"}, + "south": {"uv": [0, 0, 0, 1], "texture": "#missing"}, + "west": {"uv": [14.5, 0, 16, 0.75], "texture": "#texture"}, + "up": {"uv": [0, 0, 0, 9], "texture": "#missing"}, + "down": {"uv": [0, 0, 0, 9], "texture": "#missing"} + } + }, + { + "name": "frame", + "from": [0, 15, 6], + "to": [0, 16, 15], + "faces": { + "north": {"uv": [0, 0, 0, 1], "texture": "#missing"}, + "east": {"uv": [14.5, 0, 16, 0.75], "texture": "#texture"}, + "south": {"uv": [0, 0, 0, 1], "texture": "#missing"}, + "west": {"uv": [14.5, 0, 16, 0.75], "texture": "#texture"}, + "up": {"uv": [14.5, 0, 16, 0.75], "texture": "#texture"}, + "down": {"uv": [0, 0, 0, 9], "texture": "#missing"} + } + }, + { + "from": [1, 0, 0], + "to": [15, 1, 16], + "faces": { + "north": {"uv": [0.5, 3.75, 7.5, 4], "texture": "#texture"}, + "east": {"uv": [0, 0, 8, 0.25], "texture": "#missing"}, + "south": {"uv": [8.5, 3.75, 15.5, 4], "texture": "#texture"}, + "west": {"uv": [0, 0, 8, 0.25], "texture": "#missing"}, + "up": {"uv": [0.5, 8, 7.5, 12], "rotation": 180, "texture": "#texture"}, + "down": {"uv": [8.5, 8, 15.5, 12], "texture": "#texture"} + } + }, + { + "from": [8, 7, 0], + "to": [15, 11, 1], + "faces": { + "north": {"uv": [0.5, 1.25, 4, 2.25], "texture": "#texture"}, + "east": {"uv": [0, 0, 0.5, 0.75], "texture": "#missing"}, + "south": {"uv": [0, 0, 3.5, 1], "texture": "#texture"}, + "west": {"uv": [3.5, 1.25, 4, 2], "texture": "#texture"}, + "up": {"uv": [0, 0, 3.5, 0.25], "texture": "#missing"}, + "down": {"uv": [0.5, 2, 4, 2.25], "texture": "#texture"} + } + }, + { + "from": [1, 9, 0], + "to": [8, 11, 1], + "faces": { + "north": {"uv": [4, 1.25, 7.5, 1.75], "texture": "#texture"}, + "east": {"uv": [0, 0, 0.5, 0.5], "texture": "#missing"}, + "south": {"uv": [4, 1.25, 7, 1.75], "texture": "#texture"}, + "west": {"uv": [0, 0, 0.5, 0.5], "texture": "#missing"}, + "up": {"uv": [4, 11.75, 7.5, 12], "texture": "#texture"}, + "down": {"uv": [1.5, 3.5, 5, 3.75], "texture": "#texture"} + } + }, + { + "from": [1, 1, 0], + "to": [2, 9, 1], + "faces": { + "north": {"uv": [7, 1.75, 7.5, 3.75], "texture": "#texture"}, + "east": {"uv": [7, 1.75, 7.5, 3.75], "texture": "#texture"}, + "south": {"uv": [7, 1.75, 7.5, 3.75], "texture": "#texture"}, + "west": {"uv": [0, 0, 0.5, 2], "texture": "#missing"}, + "up": {"uv": [0, 0, 0.5, 0.25], "texture": "#missing"}, + "down": {"uv": [0, 0, 0.5, 0.25], "texture": "#missing"} + } + }, + { + "from": [14, 1, 0], + "to": [15, 7, 1], + "faces": { + "north": {"uv": [0.5, 2.25, 1, 3.75], "texture": "#texture"}, + "east": {"uv": [0, 0, 0.5, 1.75], "texture": "#missing"}, + "south": {"uv": [0.5, 2.25, 1, 3.75], "texture": "#texture"}, + "west": {"uv": [0.5, 2.25, 1, 3.75], "texture": "#texture"}, + "up": {"uv": [0.5, 3.25, 1, 3.5], "texture": "#texture"}, + "down": {"uv": [0, 0, 0.5, 0.25], "texture": "#missing"} + } + }, + { + "from": [2, 1, 0], + "to": [14, 2, 1], + "faces": { + "north": {"uv": [1, 3.5, 7, 3.75], "texture": "#texture"}, + "east": {"uv": [0, 0, 0.5, 0.25], "texture": "#missing"}, + "south": {"uv": [1, 3.5, 7, 3.75], "texture": "#texture"}, + "west": {"uv": [0, 0, 0.5, 0.25], "texture": "#missing"}, + "up": {"uv": [1, 3.5, 7, 3.75], "texture": "#texture"}, + "down": {"uv": [0, 0, 6, 0.25], "texture": "#missing"} + } + }, + { + "from": [1, 10, 1], + "to": [15, 11, 15], + "faces": { + "north": {"uv": [0, 0, 7, 0.25], "texture": "#missing"}, + "east": {"uv": [0, 0, 7, 0.25], "texture": "#missing"}, + "south": {"uv": [0, 0, 7, 0.25], "texture": "#missing"}, + "west": {"uv": [0, 0, 7, 0.25], "texture": "#missing"}, + "up": {"uv": [0.5, 8.25, 7.5, 11.75], "rotation": 180, "texture": "#texture"}, + "down": {"uv": [8.5, 8.25, 15.5, 11.75], "texture": "#texture"} + } + }, + { + "from": [1, 1, 15], + "to": [15, 11, 16], + "faces": { + "north": {"uv": [8.5, 9, 15.5, 11.5], "texture": "#texture"}, + "east": {"uv": [0, 0, 0.5, 2.5], "texture": "#missing"}, + "south": {"uv": [8.5, 1.25, 15.5, 3.75], "texture": "#texture"}, + "west": {"uv": [0, 0, 0.5, 2.5], "texture": "#missing"}, + "up": {"uv": [0.5, 8, 7.5, 8.25], "texture": "#texture"}, + "down": {"uv": [0, 0, 7, 0.25], "texture": "#missing"} + } + }, + { + "from": [3, 1, 3], + "to": [13, 2, 13], + "faces": { + "north": {"uv": [10.5, 13, 16, 13.25], "texture": "#texture"}, + "east": {"uv": [10.5, 13, 16, 13.25], "texture": "#texture"}, + "south": {"uv": [10.5, 13, 16, 13.25], "texture": "#texture"}, + "west": {"uv": [10.5, 13, 16, 13.25], "texture": "#texture"}, + "up": {"uv": [10.5, 13, 16, 15.75], "texture": "#texture"}, + "down": {"uv": [0, 0, 0.5, 0.25], "texture": "#missing"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/overdrive_that_matters/models/block/matter_scanner.json b/src/main/resources/assets/overdrive_that_matters/models/block/matter_scanner.json new file mode 100644 index 000000000..122b412d2 --- /dev/null +++ b/src/main/resources/assets/overdrive_that_matters/models/block/matter_scanner.json @@ -0,0 +1,227 @@ +{ + "parent": "block/block", + "texture_size": [32, 64], + "textures": { + "texture": "overdrive_that_matters:block/matter_scanner", + "particle": "overdrive_that_matters:block/matter_scanner" + }, + "elements": [ + { + "name": "platform", + "from": [0, 4, 0], + "to": [16, 8, 16], + "faces": { + "north": {"uv": [0, 4, 8, 5], "texture": "#texture"}, + "east": {"uv": [0, 4, 8, 5], "texture": "#texture"}, + "south": {"uv": [0, 4, 8, 5], "texture": "#texture"}, + "west": {"uv": [0, 4, 8, 5], "texture": "#texture"}, + "up": {"uv": [0, 0, 8, 4], "texture": "#texture"}, + "down": {"uv": [0, 5, 8, 9], "texture": "#texture"} + } + }, + { + "name": "base", + "from": [0, 0, 0], + "to": [16, 2, 16], + "faces": { + "north": {"uv": [0, 9, 8, 9.5], "texture": "#texture"}, + "east": {"uv": [0, 9, 8, 9.5], "texture": "#texture"}, + "south": {"uv": [0, 9, 8, 9.5], "texture": "#texture"}, + "west": {"uv": [0, 9, 8, 9.5], "texture": "#texture"}, + "up": {"uv": [8, 5, 16, 9], "texture": "#texture"}, + "down": {"uv": [0, 9.5, 8, 13.5], "texture": "#texture"} + } + }, + { + "name": "pane", + "from": [1, 2, 1], + "to": [15, 4, 15], + "faces": { + "north": {"uv": [8.5, 4.5, 15.5, 5], "texture": "#texture"}, + "east": {"uv": [8.5, 4.5, 15.5, 5], "texture": "#texture"}, + "south": {"uv": [8.5, 4.5, 15.5, 5], "texture": "#texture"}, + "west": {"uv": [8.5, 4.5, 15.5, 5], "texture": "#texture"}, + "up": {"uv": [0, 0, 14, 14], "texture": "#missing"}, + "down": {"uv": [0, 0, 14, 14], "texture": "#missing"} + } + }, + { + "name": "frame", + "from": [0, 14, 1], + "to": [1, 15, 15], + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#missing"}, + "east": {"uv": [11, 0, 11.5, 3.5], "rotation": 90, "texture": "#texture"}, + "south": {"uv": [0, 0, 1, 1], "texture": "#missing"}, + "west": {"uv": [11, 0, 11.5, 3.5], "rotation": 90, "texture": "#texture"}, + "up": {"uv": [11, 0, 11.5, 3.5], "texture": "#texture"}, + "down": {"uv": [11, 0, 11.5, 3.5], "texture": "#texture"} + } + }, + { + "name": "frame", + "from": [15, 8, 0], + "to": [16, 16, 1], + "faces": { + "north": {"uv": [10, 0, 10.5, 2], "texture": "#texture"}, + "east": {"uv": [10, 0, 10.5, 2], "texture": "#texture"}, + "south": {"uv": [10, 0, 10.5, 2], "texture": "#texture"}, + "west": {"uv": [10, 0, 10.5, 2], "texture": "#texture"}, + "up": {"uv": [10, 0.5, 10.5, 0.75], "texture": "#texture"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#missing"} + } + }, + { + "name": "frame", + "from": [0, 8, 0], + "to": [1, 16, 1], + "faces": { + "north": {"uv": [10, 0, 10.5, 2], "texture": "#texture"}, + "east": {"uv": [10, 0, 10.5, 2], "texture": "#texture"}, + "south": {"uv": [10, 0, 10.5, 2], "texture": "#texture"}, + "west": {"uv": [10, 0, 10.5, 2], "texture": "#texture"}, + "up": {"uv": [10, 0.5, 10.5, 0.75], "texture": "#texture"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#missing"} + } + }, + { + "name": "frame", + "from": [0, 8, 15], + "to": [1, 16, 16], + "faces": { + "north": {"uv": [10, 0, 10.5, 2], "texture": "#texture"}, + "east": {"uv": [10, 0, 10.5, 2], "texture": "#texture"}, + "south": {"uv": [10, 0, 10.5, 2], "texture": "#texture"}, + "west": {"uv": [10, 0, 10.5, 2], "texture": "#texture"}, + "up": {"uv": [10, 0.5, 10.5, 0.75], "texture": "#texture"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#missing"} + } + }, + { + "name": "frame", + "from": [15, 8, 15], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [10, 0, 10.5, 2], "texture": "#texture"}, + "east": {"uv": [10, 0, 10.5, 2], "texture": "#texture"}, + "south": {"uv": [10, 0, 10.5, 2], "texture": "#texture"}, + "west": {"uv": [10, 0, 10.5, 2], "texture": "#texture"}, + "up": {"uv": [10, 0.5, 10.5, 0.75], "texture": "#texture"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#missing"} + } + }, + { + "name": "frame", + "from": [15, 14, 1], + "to": [16, 15, 15], + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#missing"}, + "east": {"uv": [11, 0, 11.5, 3.5], "rotation": 90, "texture": "#texture"}, + "south": {"uv": [0, 0, 1, 1], "texture": "#missing"}, + "west": {"uv": [11, 0, 11.5, 3.5], "rotation": 90, "texture": "#texture"}, + "up": {"uv": [11, 0, 11.5, 3.5], "texture": "#texture"}, + "down": {"uv": [11, 0, 11.5, 3.5], "texture": "#texture"} + } + }, + { + "name": "panel", + "from": [10, 5, -4], + "to": [14, 9, -3], + "rotation": {"angle": 22.5, "axis": "x", "origin": [0, 0, 0]}, + "faces": { + "north": {"uv": [8, 0, 10, 1], "texture": "#texture"}, + "east": {"uv": [8, 1, 10, 1.25], "rotation": 90, "texture": "#texture"}, + "south": {"uv": [8, 1.25, 10, 2.25], "texture": "#texture"}, + "west": {"uv": [8, 1, 10, 1.25], "rotation": 270, "texture": "#texture"}, + "up": {"uv": [8, 1, 10, 1.25], "texture": "#texture"}, + "down": {"uv": [8, 1, 10, 1.25], "rotation": 180, "texture": "#texture"} + } + }, + { + "name": "railholder", + "from": [0, 13, 11], + "to": [2, 14, 13], + "faces": { + "north": {"uv": [8, 9.75, 9, 10], "texture": "#texture"}, + "east": {"uv": [8, 9.75, 9, 10], "texture": "#texture"}, + "south": {"uv": [8, 9.75, 9, 10], "texture": "#texture"}, + "west": {"uv": [8, 10, 9, 10.25], "texture": "#texture"}, + "up": {"uv": [8, 9, 9, 9.5], "texture": "#texture"}, + "down": {"uv": [8, 10, 9, 10.5], "texture": "#texture"} + } + }, + { + "name": "railholder", + "from": [1, 14, 11], + "to": [2, 15, 13], + "faces": { + "north": {"uv": [8, 9.25, 8.5, 9.5], "texture": "#texture"}, + "east": {"uv": [8, 9.5, 9, 9.75], "texture": "#texture"}, + "south": {"uv": [8, 9.5, 8.5, 9.75], "texture": "#texture"}, + "west": {"uv": [8, 9.5, 9, 9.75], "texture": "#texture"}, + "up": {"uv": [8, 9, 9, 9.25], "texture": "#texture"}, + "down": {"uv": [0, 0, 0.5, 0.5], "texture": "#missing"} + } + }, + { + "name": "railholder", + "from": [14, 14, 11], + "to": [15, 15, 13], + "faces": { + "north": {"uv": [8, 9.25, 8.5, 9.5], "texture": "#texture"}, + "east": {"uv": [8, 9.25, 9, 9.5], "texture": "#texture"}, + "south": {"uv": [8, 9.5, 8.5, 9.75], "texture": "#texture"}, + "west": {"uv": [8, 9.5, 9, 9.75], "texture": "#texture"}, + "up": {"uv": [8, 9, 9, 9.25], "texture": "#texture"}, + "down": {"uv": [0, 0, 0.5, 0.5], "texture": "#missing"} + } + }, + { + "name": "railholder", + "from": [14, 13, 11], + "to": [16, 14, 13], + "faces": { + "north": {"uv": [8, 9.75, 9, 10], "texture": "#texture"}, + "east": {"uv": [8, 9.75, 9, 10], "texture": "#texture"}, + "south": {"uv": [8, 9.75, 9, 10], "texture": "#texture"}, + "west": {"uv": [8, 10, 9, 10.25], "texture": "#texture"}, + "up": {"uv": [8, 9, 9, 9.5], "texture": "#texture"}, + "down": {"uv": [8, 10, 9, 10.5], "texture": "#texture"} + } + }, + { + "name": "rail", + "from": [2, 14, 11], + "to": [14, 14, 13], + "faces": { + "north": {"uv": [0, 0, 12, 0], "texture": "#missing"}, + "east": {"uv": [0, 0, 2, 0], "texture": "#missing"}, + "south": {"uv": [0, 0, 12, 0], "texture": "#missing"}, + "west": {"uv": [0, 0, 2, 0], "texture": "#missing"}, + "up": {"uv": [10, 9, 16, 9.5], "texture": "#texture"}, + "down": {"uv": [10, 9, 16, 9.5], "texture": "#texture"} + } + }, + { + "name": "scanner", + "from": [3, 13, 9], + "to": [6, 15, 14], + "faces": { + "north": {"uv": [8, 12.25, 9.5, 12.75], "texture": "#texture"}, + "east": {"uv": [9.5, 11, 10.5, 12.25], "rotation": 90, "texture": "#texture"}, + "south": {"uv": [8, 12.25, 9.5, 12.75], "texture": "#texture"}, + "west": {"uv": [9.5, 11, 10.5, 12.25], "rotation": 90, "texture": "#texture"}, + "up": {"uv": [8, 11, 9.5, 12.25], "texture": "#texture"}, + "down": {"uv": [10.5, 11, 12, 12.25], "texture": "#texture"} + } + } + ], + "groups": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, + { + "name": "rail", + "origin": [0, 0, 0], + "color": 0, + "children": [10, 11, 12, 13, 14, 15] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/overdrive_that_matters/models/item/matter_decomposer.json b/src/main/resources/assets/overdrive_that_matters/models/item/matter_decomposer.json new file mode 100644 index 000000000..499c31fca --- /dev/null +++ b/src/main/resources/assets/overdrive_that_matters/models/item/matter_decomposer.json @@ -0,0 +1,3 @@ +{ + "parent": "overdrive_that_matters:block/matter_decomposer" +} \ No newline at end of file diff --git a/src/main/resources/assets/overdrive_that_matters/models/item/matter_panel.json b/src/main/resources/assets/overdrive_that_matters/models/item/matter_panel.json new file mode 100644 index 000000000..3643118e4 --- /dev/null +++ b/src/main/resources/assets/overdrive_that_matters/models/item/matter_panel.json @@ -0,0 +1,22 @@ +{ + "parent": "block/block", + "texture_size": [32, 32], + "textures": { + "texture": "overdrive_that_matters:block/matter_panel", + "particle": "overdrive_that_matters:block/matter_panel" + }, +"elements": [ + { + "from": [ 0, 0, 10 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": {"uv": [ 8, 0, 16, 3 ], "rotation": 180, "texture": "#texture" }, + "up": {"uv": [ 8, 0, 16, 3 ], "texture": "#texture" }, + "south": {"uv": [ 0, 8, 8, 16 ], "texture": "#texture" }, + "north": {"uv": [ 0, 0, 8, 8 ], "texture": "#texture" }, + "west": {"uv": [ 8, 0, 16, 3 ], "rotation": 270, "texture": "#texture" }, + "east": {"uv": [ 8, 0, 16, 3 ], "rotation": 90, "texture": "#texture" } + } + } + ] +} diff --git a/src/main/resources/assets/overdrive_that_matters/models/item/matter_replicator.json b/src/main/resources/assets/overdrive_that_matters/models/item/matter_replicator.json new file mode 100644 index 000000000..a4126b4b4 --- /dev/null +++ b/src/main/resources/assets/overdrive_that_matters/models/item/matter_replicator.json @@ -0,0 +1,3 @@ +{ + "parent": "overdrive_that_matters:block/matter_replicator" +} \ No newline at end of file diff --git a/src/main/resources/assets/overdrive_that_matters/models/item/matter_scanner.json b/src/main/resources/assets/overdrive_that_matters/models/item/matter_scanner.json new file mode 100644 index 000000000..ec4f4c960 --- /dev/null +++ b/src/main/resources/assets/overdrive_that_matters/models/item/matter_scanner.json @@ -0,0 +1,3 @@ +{ + "parent": "overdrive_that_matters:block/matter_scanner" +} \ No newline at end of file diff --git a/src/main/resources/assets/overdrive_that_matters/models/item/pattern_drive_creative.json b/src/main/resources/assets/overdrive_that_matters/models/item/pattern_drive_creative.json new file mode 100644 index 000000000..dbf9348e4 --- /dev/null +++ b/src/main/resources/assets/overdrive_that_matters/models/item/pattern_drive_creative.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "overdrive_that_matters:item/pattern_drive_creative" + } +} diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/matter_decomposer.png b/src/main/resources/assets/overdrive_that_matters/textures/block/matter_decomposer.png new file mode 100644 index 0000000000000000000000000000000000000000..16b0fbd75eac54eadd85e7f685fc1182fca3a6ea GIT binary patch literal 465 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`1k1^9%x*4NjYnwlmgBzQ#scMN(iCMK3Qb8AA|y#N3I1C?+KmIweTu96_X zV4w&DFl;)ba~>$lS>O>_%)r2R7=#&*=dVZsTBzpf;usR){&rg9x@H9)SH{wF|NlRn zTExg2xuI0gaNhLR<2n9%3MbDjdLn4UbY7O_SVXpn)ZPO|GdM4B|J%==)tGD`oWRCr z%$Sy9Al$$*`G?L#2gMzZO$Su!BtIyvWIgxOv?7jmMRwAiBMa`{+R0Gro8`#SQr3AO z-fyv>MZH#*<2|k`rk0Kk$2_8%Qr9~yxbGs9T+Z|^o|7x!`Vyf%+yU30{9!4nf7E+R z_Tuy#-U7)jhB;YFyh381Z%Vv3=d-wDirbO~4+FlR>zxyFyxn3tcK)>LxabJ(K-1vr6azU+T7|S4E|&9$!>CrmOX>$lj!0(D(ar$1XK{ y&jn&Jdsyl%IA=Zhou_dys^Cxiq@WEt@_$wHmu_CU^8qjz89ZJ6T-G@yGywp|Yq|UY literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/matter_decomposer_offline.png b/src/main/resources/assets/overdrive_that_matters/textures/block/matter_decomposer_offline.png new file mode 100644 index 0000000000000000000000000000000000000000..ee8551a2f52320f836fae92fa083d3c7ecd8a995 GIT binary patch literal 456 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`1k1^9%x*4NjYnwlmgBzQ#scMN(iCMK3Qb8AA|y#N3I1C?+KmIweTu96_X zV4w&DFl;)ba~>$lS>O>_%)r2R2!t6$HM|;t7Rq|MIEF;Hzn#X&cSwQ9m2qzI_x&4k ze{SGyOI&+y#~W3)!lzG}vlq?oiD~jaFvs!1obTrrY~W6BLYA#Ix=3NOR=a!~QI=VV9a757V@2d$9%UJas!7H^eAE zcvd3j_#oPl``KcL*vb4H8w@6He{giQzzu%E>o?{)T+?S^U6CEcIS)vF`pI&|e&u2_ z_cf<;R6PtIN${Hns;;`VGsa-uyPv%ZhDt$CI2yly{`d2>Jl6^?e$H8M_OaTWJR!ZI zMd+d6&rqgY64oz_zo*rgWlnII;!hjrf^ p9^Vhu=2H?hZ~S*ZsWD@j_*8}blSOuK=K@2I!PC{xWt~$(69Ar6wK4zz literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/matter_panel.png b/src/main/resources/assets/overdrive_that_matters/textures/block/matter_panel.png new file mode 100644 index 0000000000000000000000000000000000000000..d99470f3f01954545b71008927ba239bb2f4a62a GIT binary patch literal 326 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCil&0(?ST6A}_kO-&053jPDZ1J8uEdG+=6|8FpeiHQM~e7KVP0!VR{1o;Jn z6o3K4rZYO{fufuR9+AZi419+`m{C;2s{trD+tbA{#KM2;#73dR0z7S>XJ_sG&#kXi z6q1&k|6A`)CqJX$!shnN7CZuR%nB_x1RHW2T1Cp;cG;@Mcc`|sD$L$sAbPVe!}^J^ zt3VX*EOVa~Kb&G?W@*p4=lGe8n|a;>^CUY?&CDH4t)I+HBNWa`U;dtTZ->H*DMs7} zE;2qB+b{U)r?z9*de$02mq^ZAwtAO-bRTd#fA{^lpS;ga#P#1izZ?#9CWEJ|pUXO@ GgeCwf19~d} literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/matter_replicator.png b/src/main/resources/assets/overdrive_that_matters/textures/block/matter_replicator.png new file mode 100644 index 0000000000000000000000000000000000000000..1be28a16064a3925d6d830fac40e8cd02a9aec7c GIT binary patch literal 523 zcmeAS@N?(olHy`uVBq!ia0vp^3P9|@!3-pQ0$S$)DaPU;cPEB*=VV?2IV|apzK#qG z8~eHcB(eheDgizrt_cYV_4V~)Vq*VqF#LbuX=-Yk&^FI8=($Jqf7iq!H8nM$!V?#t zZ~!Tuk|4j}{|LY!bpPBrpg3oNM`SSr1K(i~W;~w1A_Zu1gr|#Rh==#tsc$D8Qs8mT zjNSFO;{W%%)swkd4wjaGX?H(9>B$5w15?p;lBYMV_%msPR59a{lHIj`^;S4tYi_exvyikvG!W3 z0GHQO*7vGck4OBr4!B$CSy9DZtr1|P7JsQV_M+dxAaU{5?i9zFoqmoUHKGS!87#U` z`k_jlgL{#{{EVsfoL*m##4il-k6~Y0^~g)>Ys2ebjO-!08!Zi^*?|Gi;OXk;vd$@? F2>>M{*%tr+ literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/matter_replicator_halted.png b/src/main/resources/assets/overdrive_that_matters/textures/block/matter_replicator_halted.png new file mode 100644 index 0000000000000000000000000000000000000000..1f71ab8af6057ce3fd7f0dda1eac16b55cce7e69 GIT binary patch literal 509 zcmeAS@N?(olHy`uVBq!ia0vp^3P9|@!3-pQ0$S$)DaPU;cPEB*=VV?2IV|apzK#qG z8~eHcB(eheDgizrt_cYV_4V~)Vq#kv82&Rbn3|dCBeIx*f$uN~Gak=hkpi^X%hSa%#KZgS)Z0bP20W~} zO%2oj|G)prMj;V{@J9;!d*v`PQsq*y2nUNE!7p5fE9of5KbNZWEx6{>Tb-ZC* z!|d#Q-7#h1S{;ERxo-!u)nyVrE4dYOYIu&NzS$q@#P`53=g^7Xh!6i%mUPZI+3>(d zB`s0vWJ8S2WX8ZoY42x$);~WOo;Rm`p0Sj;=!fHm4?QZjGA@*{Ie4s5`RuwyoGka& ztT+&sKI=f$b5>y$|Aa~g#RA1WhqwQ*bJX1?;``2=+c{@`<;)f~@1U=-r;n@0KfcfS z`&{s$x5{ta87CEfRE&+7xmI9JNmAejk7--1OM?Ws;(RyklM3_@-ZP&i$y4N!e$?}L sChwU)bR$k3DNWE64xhAC-r~Ie?EBi^Up8#$00uRKr>mdKI;Vst0F5iv!~g&Q literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/matter_replicator_offline.png b/src/main/resources/assets/overdrive_that_matters/textures/block/matter_replicator_offline.png new file mode 100644 index 0000000000000000000000000000000000000000..12abf74c4e0ddb653aa98346ed6be7b5c90b4f55 GIT binary patch literal 490 zcmeAS@N?(olHy`uVBq!ia0vp^3P9|@!3-pQ0$S$)DaPU;cPEB*=VV?2IV|apzK#qG z8~eHcB(eheasfUet_cYV_4V~)Vq&JIrU`BHToa4b)YLqp|2qaf2P*lXxBWVh;wlO9 z3;quS44cmAoCk_>7I;J!GcfQS24TkI`72U@7TSBdIEHw5pPhPfQnLb&>%kSV|NpmF zPmWQDd~sv$J7@p7UXzkT5^i1E5q2di@}I|zo~;b`#E;~uG&I*O+90j<;{<1u`5o_r zh8&Ipe}r6FZ|;4vAYJT9oJQn~{6c-1HInQ})oD!*PdHxK6l5gGxtQHb2v$6v$ZJ!+ zQrV|*y}+SE#}8Wce%j&bM_?@?lit^ z6r2KnT(SBo^(aVMd9rniX}|@X9Qm9IL&iz z;XKwUtvW3aSgt%*T_V0Vp8Hf#0P9y5KG6mKyTyWbMJ`$*FM6z3>*egVdM{@mcDgsA z{Z+qoWwLJ0?SDtNDdu0ORtU`Tb+-~<)ZaASp(WYDI@2SW-Kn6Y)RgbqOD!F{Lp>7w zoT;|FT^EjpPSC!;D&eu(2Ze+jC%==Stycd&3SGP6I+=~-vEstVPd2bEd#qOJ*yFL~ z{jZxQeyxA@AJeHZ=6qc3`!iC@Xa>uao}~?YK2|&0%lR&h)#kFCHsv=JawoQ&h}%@zM0wR*nuiUZslr9Dfqr0+r7hTeMdR z1&B?0uva)he)@#CEp>Vt!H%L=lr2LV?B2$7d`#+`voG|8xz=+1ZC1&Ulj`niCi|W*V%-rzD=5Q&$Mk<@*H@T%} tHe5X+eK=7u{|xJ&d7s3MgcXm8r*AY_ak%ty6ENr)JYD@<);T3K0RXQtw-f*X literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/matter_scanner_offline.png b/src/main/resources/assets/overdrive_that_matters/textures/block/matter_scanner_offline.png new file mode 100644 index 0000000000000000000000000000000000000000..970b08009b533cfe5c569ad681572404e103aa37 GIT binary patch literal 452 zcmeAS@N?(olHy`uVBq!ia0vp^3P9|@!3-pQ0$S$)DaPU;cPEB*=VV?2IV|apzK#qG z8~eHcB(eheiUB?$t_cYVrlzL#_4Q(6Vrpt?w{PG6|NnnN+r0lb7+e#JfU0!-LwkV~ zcS(?6Fi;8#7`*%$KLLd~3p^r=85sEXgD|57Yp@E?Qc+JA#}E(iw^J@oYF6NJ6<)FK z(|`Fr<^`OhA-5#I=brB|Q(5lJ65ra;_s%%@fcn){r=HQKr4I9cM)Ok&|8LRwWn0IU*f28X}<1+^;JTyK>2DF&1 zV_H|Ux~YHmg1HAaa$B~p<|_U3QRLng*U5aW&lMjYIGI+;bGvuF5W7Oxn$>&FdV>}J zuQ%j+&*N0T?(OE|S_cvYB8rwVeLnZSX|K(+l)qjb_4;?d9|%em*ziq9v~6kHJxR0f m%5=RC-zU{CG!P8>#k!+h^P{PCw;nLm7(8A5T-G@yGywobX1Nsr literal 0 HcmV?d00001