diff --git a/__pycache__/generate_dataset.cpython-312.pyc b/__pycache__/generate_dataset.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d79f64a7b78c4762cd468f648ecea433480b41da Binary files /dev/null and b/__pycache__/generate_dataset.cpython-312.pyc differ diff --git a/app.py b/app.py new file mode 100644 index 0000000000000000000000000000000000000000..243b0dd5d30ae4542c424a18f95f585a5e6c2521 --- /dev/null +++ b/app.py @@ -0,0 +1,63 @@ +from flask import Flask, render_template, request +import io +import base64 +from PIL import Image +import numpy as np +import random +# Import procedural generators +from generate_dataset import generate_wood, generate_marble, generate_fabric, generate_brick, generate_noise + +app = Flask(__name__) + +# Configuration +TEXTURE_TYPES = ["wood", "marble", "fabric", "brick", "noise"] + +# Map types to generator functions +GENERATORS = { + "wood": generate_wood, + "marble": generate_marble, + "fabric": generate_fabric, + "brick": generate_brick, + "noise": generate_noise, +} + +@app.route('/') +def index(): + return render_template('index.html', texture_types=TEXTURE_TYPES) + +@app.route('/generate', methods=['POST']) +def generate(): + try: + texture_type = request.form.get('texture_type') + seed = int(request.form.get('seed', 0)) + # Creativity affects randomness parameters + creativity = float(request.form.get('creativity', 1.0)) + + if texture_type not in GENERATORS: + return {"error": f"Unknown texture type: {texture_type}"}, 400 + + # Set seed for reproducibility + random.seed(seed) + np.random.seed(seed) + + # Call the procedural generator + # Note: 'creativity' parameter is not supported by current generate_dataset functions directly, + # but we can simulate it by just using the seed variation or updating generate_dataset. + # For now, we rely on the seed. + + img_pil = GENERATORS[texture_type](size=256) # Generate larger image for UI + + # Convert to base64 + buf = io.BytesIO() + img_pil.save(buf, format='PNG') + buf.seek(0) + img_b64 = base64.b64encode(buf.getvalue()).decode('utf-8') + + return {"image": f"data:image/png;base64,{img_b64}"} + + except Exception as e: + print(f"Error generating image: {e}") + return {"error": str(e)}, 500 + +if __name__ == '__main__': + app.run(debug=True, port=5000) diff --git a/data/textures/brick/brick_0000.png b/data/textures/brick/brick_0000.png new file mode 100644 index 0000000000000000000000000000000000000000..4bb49ea8c23264a1bdd50ef33653e2ebe9c77a9e Binary files /dev/null and b/data/textures/brick/brick_0000.png differ diff --git a/data/textures/brick/brick_0001.png b/data/textures/brick/brick_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..e01111e56028d02d5a96ba3df75538db86911e01 Binary files /dev/null and b/data/textures/brick/brick_0001.png differ diff --git a/data/textures/brick/brick_0002.png b/data/textures/brick/brick_0002.png new file mode 100644 index 0000000000000000000000000000000000000000..7aecb94949dcef91be3b9ff2aec7da4e152842d2 Binary files /dev/null and b/data/textures/brick/brick_0002.png differ diff --git a/data/textures/brick/brick_0003.png b/data/textures/brick/brick_0003.png new file mode 100644 index 0000000000000000000000000000000000000000..c16ea7913bf12c44c0ebd877a14de5cba89f6d06 Binary files /dev/null and b/data/textures/brick/brick_0003.png differ diff --git a/data/textures/brick/brick_0004.png b/data/textures/brick/brick_0004.png new file mode 100644 index 0000000000000000000000000000000000000000..cef7885411bafe4eb1b839b5dea89c4b65dd4d97 Binary files /dev/null and b/data/textures/brick/brick_0004.png differ diff --git a/data/textures/brick/brick_0005.png b/data/textures/brick/brick_0005.png new file mode 100644 index 0000000000000000000000000000000000000000..23c0ab082149f9268b22a238455933e62c758c96 Binary files /dev/null and b/data/textures/brick/brick_0005.png differ diff --git a/data/textures/brick/brick_0006.png b/data/textures/brick/brick_0006.png new file mode 100644 index 0000000000000000000000000000000000000000..ee46f2203aeacd26118a6e9bc74f0cc6fa34f69f Binary files /dev/null and b/data/textures/brick/brick_0006.png differ diff --git a/data/textures/brick/brick_0007.png b/data/textures/brick/brick_0007.png new file mode 100644 index 0000000000000000000000000000000000000000..ba44208139cad01603eaf154fdcca91fa64dc1aa Binary files /dev/null and b/data/textures/brick/brick_0007.png differ diff --git a/data/textures/brick/brick_0008.png b/data/textures/brick/brick_0008.png new file mode 100644 index 0000000000000000000000000000000000000000..59b3c26c4adfb1a2458202ce13925eae8a50edd3 Binary files /dev/null and b/data/textures/brick/brick_0008.png differ diff --git a/data/textures/brick/brick_0009.png b/data/textures/brick/brick_0009.png new file mode 100644 index 0000000000000000000000000000000000000000..9989e0cc0120ede651073c344a59d1604ca74aca Binary files /dev/null and b/data/textures/brick/brick_0009.png differ diff --git a/data/textures/brick/brick_0010.png b/data/textures/brick/brick_0010.png new file mode 100644 index 0000000000000000000000000000000000000000..f020e27e2b957e13876fadbeb741818ef599b0f1 Binary files /dev/null and b/data/textures/brick/brick_0010.png differ diff --git a/data/textures/brick/brick_0011.png b/data/textures/brick/brick_0011.png new file mode 100644 index 0000000000000000000000000000000000000000..7a9cddad6950baf437d115e756859faddf1bcc98 Binary files /dev/null and b/data/textures/brick/brick_0011.png differ diff --git a/data/textures/brick/brick_0012.png b/data/textures/brick/brick_0012.png new file mode 100644 index 0000000000000000000000000000000000000000..376daf613ddae254abc01cc6f285a18e0f6b8dee Binary files /dev/null and b/data/textures/brick/brick_0012.png differ diff --git a/data/textures/brick/brick_0013.png b/data/textures/brick/brick_0013.png new file mode 100644 index 0000000000000000000000000000000000000000..411e29cf4552cd355484af7d1630913ee2b04409 Binary files /dev/null and b/data/textures/brick/brick_0013.png differ diff --git a/data/textures/brick/brick_0014.png b/data/textures/brick/brick_0014.png new file mode 100644 index 0000000000000000000000000000000000000000..5c5988798a6e563cdbb48bd8115233a3bb612a7d Binary files /dev/null and b/data/textures/brick/brick_0014.png differ diff --git a/data/textures/brick/brick_0015.png b/data/textures/brick/brick_0015.png new file mode 100644 index 0000000000000000000000000000000000000000..dbde59dd4a265eb9882bf5c2bc663a60d6f628dd Binary files /dev/null and b/data/textures/brick/brick_0015.png differ diff --git a/data/textures/brick/brick_0016.png b/data/textures/brick/brick_0016.png new file mode 100644 index 0000000000000000000000000000000000000000..62ae87d67bb0684203006d5acc8b49ddd8875520 Binary files /dev/null and b/data/textures/brick/brick_0016.png differ diff --git a/data/textures/brick/brick_0017.png b/data/textures/brick/brick_0017.png new file mode 100644 index 0000000000000000000000000000000000000000..22c9fcc28092f2bf59ae29d0ce5d59f39530c77d Binary files /dev/null and b/data/textures/brick/brick_0017.png differ diff --git a/data/textures/brick/brick_0018.png b/data/textures/brick/brick_0018.png new file mode 100644 index 0000000000000000000000000000000000000000..687113e2d2b7c1ee8523383ac94a55891d7bbb01 Binary files /dev/null and b/data/textures/brick/brick_0018.png differ diff --git a/data/textures/brick/brick_0019.png b/data/textures/brick/brick_0019.png new file mode 100644 index 0000000000000000000000000000000000000000..2f84a194afab83deed429e10b8bb1bd56fa7ac60 Binary files /dev/null and b/data/textures/brick/brick_0019.png differ diff --git a/data/textures/brick/brick_0020.png b/data/textures/brick/brick_0020.png new file mode 100644 index 0000000000000000000000000000000000000000..237498cf7573c95f7f2a4543668feb3e37c5aed8 Binary files /dev/null and b/data/textures/brick/brick_0020.png differ diff --git a/data/textures/brick/brick_0021.png b/data/textures/brick/brick_0021.png new file mode 100644 index 0000000000000000000000000000000000000000..6bca0b6c3ff4bf008dedd038b30453ae01f29d91 Binary files /dev/null and b/data/textures/brick/brick_0021.png differ diff --git a/data/textures/brick/brick_0022.png b/data/textures/brick/brick_0022.png new file mode 100644 index 0000000000000000000000000000000000000000..56cf98e4d16d4eeba8987ab146182de696372011 Binary files /dev/null and b/data/textures/brick/brick_0022.png differ diff --git a/data/textures/brick/brick_0023.png b/data/textures/brick/brick_0023.png new file mode 100644 index 0000000000000000000000000000000000000000..8c4d8044578cfd6c9bd0adc35a53846905c53776 Binary files /dev/null and b/data/textures/brick/brick_0023.png differ diff --git a/data/textures/brick/brick_0024.png b/data/textures/brick/brick_0024.png new file mode 100644 index 0000000000000000000000000000000000000000..bd03af13ce0e2afe1da197e9ca5adc285027c998 Binary files /dev/null and b/data/textures/brick/brick_0024.png differ diff --git a/data/textures/brick/brick_0025.png b/data/textures/brick/brick_0025.png new file mode 100644 index 0000000000000000000000000000000000000000..5da13148ad0e2a8d8f9cd2e893b74e599490eaa0 Binary files /dev/null and b/data/textures/brick/brick_0025.png differ diff --git a/data/textures/brick/brick_0026.png b/data/textures/brick/brick_0026.png new file mode 100644 index 0000000000000000000000000000000000000000..d120d5b9ad5a9fc9aa0bc304f44b1bb858f4a2ca Binary files /dev/null and b/data/textures/brick/brick_0026.png differ diff --git a/data/textures/brick/brick_0027.png b/data/textures/brick/brick_0027.png new file mode 100644 index 0000000000000000000000000000000000000000..f8c2c7dab294e9e22217c06ea52fcc8b2367f5d8 Binary files /dev/null and b/data/textures/brick/brick_0027.png differ diff --git a/data/textures/brick/brick_0028.png b/data/textures/brick/brick_0028.png new file mode 100644 index 0000000000000000000000000000000000000000..037276fdc5341b230c32a3441d26939687eaf9e9 Binary files /dev/null and b/data/textures/brick/brick_0028.png differ diff --git a/data/textures/brick/brick_0029.png b/data/textures/brick/brick_0029.png new file mode 100644 index 0000000000000000000000000000000000000000..cb88bd3ac74dda1806e3f583d163a65d9fa23a1e Binary files /dev/null and b/data/textures/brick/brick_0029.png differ diff --git a/data/textures/brick/brick_0030.png b/data/textures/brick/brick_0030.png new file mode 100644 index 0000000000000000000000000000000000000000..3eee6ef362a6564026f1b3fef9d9c8ec330af0f6 Binary files /dev/null and b/data/textures/brick/brick_0030.png differ diff --git a/data/textures/brick/brick_0031.png b/data/textures/brick/brick_0031.png new file mode 100644 index 0000000000000000000000000000000000000000..0fba493a1035ad2a853cfa4f60f151097368236c Binary files /dev/null and b/data/textures/brick/brick_0031.png differ diff --git a/data/textures/brick/brick_0032.png b/data/textures/brick/brick_0032.png new file mode 100644 index 0000000000000000000000000000000000000000..0b92980b01d1ae99f4dd8cabe087fcf6f8f3b29a Binary files /dev/null and b/data/textures/brick/brick_0032.png differ diff --git a/data/textures/brick/brick_0033.png b/data/textures/brick/brick_0033.png new file mode 100644 index 0000000000000000000000000000000000000000..553000bec65d053b00e7ac9c4c3998b4686251db Binary files /dev/null and b/data/textures/brick/brick_0033.png differ diff --git a/data/textures/brick/brick_0034.png b/data/textures/brick/brick_0034.png new file mode 100644 index 0000000000000000000000000000000000000000..bc89f60efe54228749c853ed1ac6eddc7c98f604 Binary files /dev/null and b/data/textures/brick/brick_0034.png differ diff --git a/data/textures/brick/brick_0035.png b/data/textures/brick/brick_0035.png new file mode 100644 index 0000000000000000000000000000000000000000..63d03360b4d4be9d7523bb1f8a09ee1d37640758 Binary files /dev/null and b/data/textures/brick/brick_0035.png differ diff --git a/data/textures/brick/brick_0036.png b/data/textures/brick/brick_0036.png new file mode 100644 index 0000000000000000000000000000000000000000..eef73ae5f839350077abf566b620ade1170d7929 Binary files /dev/null and b/data/textures/brick/brick_0036.png differ diff --git a/data/textures/brick/brick_0037.png b/data/textures/brick/brick_0037.png new file mode 100644 index 0000000000000000000000000000000000000000..36dc1366ac2d413062a2f934114b28c83cfce88d Binary files /dev/null and b/data/textures/brick/brick_0037.png differ diff --git a/data/textures/brick/brick_0038.png b/data/textures/brick/brick_0038.png new file mode 100644 index 0000000000000000000000000000000000000000..5ef08628b123ec7962018c559314f3fda2e69933 Binary files /dev/null and b/data/textures/brick/brick_0038.png differ diff --git a/data/textures/brick/brick_0039.png b/data/textures/brick/brick_0039.png new file mode 100644 index 0000000000000000000000000000000000000000..6a2c310c30e88dd8b907b5ff2680360c5fae3707 Binary files /dev/null and b/data/textures/brick/brick_0039.png differ diff --git a/data/textures/brick/brick_0040.png b/data/textures/brick/brick_0040.png new file mode 100644 index 0000000000000000000000000000000000000000..ef0b94c77af376378e04fd75120073b757ab7ed0 Binary files /dev/null and b/data/textures/brick/brick_0040.png differ diff --git a/data/textures/brick/brick_0041.png b/data/textures/brick/brick_0041.png new file mode 100644 index 0000000000000000000000000000000000000000..df1e63942f5fce3e4f12e63b436b3acb5f2cba1a Binary files /dev/null and b/data/textures/brick/brick_0041.png differ diff --git a/data/textures/brick/brick_0042.png b/data/textures/brick/brick_0042.png new file mode 100644 index 0000000000000000000000000000000000000000..254e9976612256e017f2f69440995290430b7ee0 Binary files /dev/null and b/data/textures/brick/brick_0042.png differ diff --git a/data/textures/brick/brick_0043.png b/data/textures/brick/brick_0043.png new file mode 100644 index 0000000000000000000000000000000000000000..3ad9d198979353ba4bfae70d4acabffb4defab7d Binary files /dev/null and b/data/textures/brick/brick_0043.png differ diff --git a/data/textures/brick/brick_0044.png b/data/textures/brick/brick_0044.png new file mode 100644 index 0000000000000000000000000000000000000000..7f13162668413fa3c05871178f5a89733964cb4b Binary files /dev/null and b/data/textures/brick/brick_0044.png differ diff --git a/data/textures/brick/brick_0045.png b/data/textures/brick/brick_0045.png new file mode 100644 index 0000000000000000000000000000000000000000..a4916f7e43ece2dea16b3a52c1695244e510c2d8 Binary files /dev/null and b/data/textures/brick/brick_0045.png differ diff --git a/data/textures/brick/brick_0046.png b/data/textures/brick/brick_0046.png new file mode 100644 index 0000000000000000000000000000000000000000..359aa56e1c1f8354a396292a638d1c031019a750 Binary files /dev/null and b/data/textures/brick/brick_0046.png differ diff --git a/data/textures/brick/brick_0047.png b/data/textures/brick/brick_0047.png new file mode 100644 index 0000000000000000000000000000000000000000..e34068b7a34b0c86db22038ff87dcf19f41f3525 Binary files /dev/null and b/data/textures/brick/brick_0047.png differ diff --git a/data/textures/brick/brick_0048.png b/data/textures/brick/brick_0048.png new file mode 100644 index 0000000000000000000000000000000000000000..6e089010e25243491e628c06b19447fa9938e605 Binary files /dev/null and b/data/textures/brick/brick_0048.png differ diff --git a/data/textures/brick/brick_0049.png b/data/textures/brick/brick_0049.png new file mode 100644 index 0000000000000000000000000000000000000000..54f45049f69b44b309642a996c560f549a32a509 Binary files /dev/null and b/data/textures/brick/brick_0049.png differ diff --git a/data/textures/brick/brick_0050.png b/data/textures/brick/brick_0050.png new file mode 100644 index 0000000000000000000000000000000000000000..f6c186177c6f4a50fa54bff8fc632fba77acd5b3 Binary files /dev/null and b/data/textures/brick/brick_0050.png differ diff --git a/data/textures/brick/brick_0051.png b/data/textures/brick/brick_0051.png new file mode 100644 index 0000000000000000000000000000000000000000..c4c9881e90393f692002d3da817d1cd6a7b252ab Binary files /dev/null and b/data/textures/brick/brick_0051.png differ diff --git a/data/textures/brick/brick_0052.png b/data/textures/brick/brick_0052.png new file mode 100644 index 0000000000000000000000000000000000000000..1a9990125cb3bb0489e6acdea96257110f863ece Binary files /dev/null and b/data/textures/brick/brick_0052.png differ diff --git a/data/textures/brick/brick_0053.png b/data/textures/brick/brick_0053.png new file mode 100644 index 0000000000000000000000000000000000000000..f47f1ec90c44815cdbf4fbf1196784b80acdc936 Binary files /dev/null and b/data/textures/brick/brick_0053.png differ diff --git a/data/textures/brick/brick_0054.png b/data/textures/brick/brick_0054.png new file mode 100644 index 0000000000000000000000000000000000000000..c2885d840b9e7ad667751c64053b22cb6f15b83a Binary files /dev/null and b/data/textures/brick/brick_0054.png differ diff --git a/data/textures/brick/brick_0055.png b/data/textures/brick/brick_0055.png new file mode 100644 index 0000000000000000000000000000000000000000..adcef61dfdd6d419c8f74b3180c14423f05f8873 Binary files /dev/null and b/data/textures/brick/brick_0055.png differ diff --git a/data/textures/brick/brick_0056.png b/data/textures/brick/brick_0056.png new file mode 100644 index 0000000000000000000000000000000000000000..88d360b772a71e0cea06fd4804d3a802bddf8331 Binary files /dev/null and b/data/textures/brick/brick_0056.png differ diff --git a/data/textures/brick/brick_0057.png b/data/textures/brick/brick_0057.png new file mode 100644 index 0000000000000000000000000000000000000000..66b02635f3c41d7c8b48c9bbbe77496d7b93a1d8 Binary files /dev/null and b/data/textures/brick/brick_0057.png differ diff --git a/data/textures/brick/brick_0058.png b/data/textures/brick/brick_0058.png new file mode 100644 index 0000000000000000000000000000000000000000..059b27d7ceae8c8199cc7f274dff72ff68848b3f Binary files /dev/null and b/data/textures/brick/brick_0058.png differ diff --git a/data/textures/brick/brick_0059.png b/data/textures/brick/brick_0059.png new file mode 100644 index 0000000000000000000000000000000000000000..f1800532be34daa668e8d2711bc815cb0cb8422d Binary files /dev/null and b/data/textures/brick/brick_0059.png differ diff --git a/data/textures/brick/brick_0060.png b/data/textures/brick/brick_0060.png new file mode 100644 index 0000000000000000000000000000000000000000..6246119af07c29646fad592539c282cac7a8fc10 Binary files /dev/null and b/data/textures/brick/brick_0060.png differ diff --git a/data/textures/brick/brick_0061.png b/data/textures/brick/brick_0061.png new file mode 100644 index 0000000000000000000000000000000000000000..a6316df5ba771f4a0b94cb7b2cb54a6fcb777a2d Binary files /dev/null and b/data/textures/brick/brick_0061.png differ diff --git a/data/textures/brick/brick_0062.png b/data/textures/brick/brick_0062.png new file mode 100644 index 0000000000000000000000000000000000000000..248d372ddf006fc98204566497636d81c088bb26 Binary files /dev/null and b/data/textures/brick/brick_0062.png differ diff --git a/data/textures/brick/brick_0063.png b/data/textures/brick/brick_0063.png new file mode 100644 index 0000000000000000000000000000000000000000..be133f0a08f78f3ac4c837707bffc14b5a5b098f Binary files /dev/null and b/data/textures/brick/brick_0063.png differ diff --git a/data/textures/brick/brick_0064.png b/data/textures/brick/brick_0064.png new file mode 100644 index 0000000000000000000000000000000000000000..a54cb8174d957a604d49bb2ed092a0729a770a48 Binary files /dev/null and b/data/textures/brick/brick_0064.png differ diff --git a/data/textures/brick/brick_0065.png b/data/textures/brick/brick_0065.png new file mode 100644 index 0000000000000000000000000000000000000000..95424aa9784383d11b59d20a6fcc38fc4cb17587 Binary files /dev/null and b/data/textures/brick/brick_0065.png differ diff --git a/data/textures/brick/brick_0066.png b/data/textures/brick/brick_0066.png new file mode 100644 index 0000000000000000000000000000000000000000..4d065c955106e0fbe95d4914c96f75687b14c622 Binary files /dev/null and b/data/textures/brick/brick_0066.png differ diff --git a/data/textures/brick/brick_0067.png b/data/textures/brick/brick_0067.png new file mode 100644 index 0000000000000000000000000000000000000000..21c7d0a090fa2458a87c7192c7f1d25085eae816 Binary files /dev/null and b/data/textures/brick/brick_0067.png differ diff --git a/data/textures/brick/brick_0068.png b/data/textures/brick/brick_0068.png new file mode 100644 index 0000000000000000000000000000000000000000..99aa59aa65069972a932fc12f26cede49cd0f999 Binary files /dev/null and b/data/textures/brick/brick_0068.png differ diff --git a/data/textures/brick/brick_0069.png b/data/textures/brick/brick_0069.png new file mode 100644 index 0000000000000000000000000000000000000000..56632db57ad3143291b856aa375c0024c4aac173 Binary files /dev/null and b/data/textures/brick/brick_0069.png differ diff --git a/data/textures/brick/brick_0070.png b/data/textures/brick/brick_0070.png new file mode 100644 index 0000000000000000000000000000000000000000..364510a864bf9c5190937355d9bb0c61ceb6c435 Binary files /dev/null and b/data/textures/brick/brick_0070.png differ diff --git a/data/textures/brick/brick_0071.png b/data/textures/brick/brick_0071.png new file mode 100644 index 0000000000000000000000000000000000000000..750455fccdd71a64764e0b2f5888b472d6aa44c4 Binary files /dev/null and b/data/textures/brick/brick_0071.png differ diff --git a/data/textures/brick/brick_0072.png b/data/textures/brick/brick_0072.png new file mode 100644 index 0000000000000000000000000000000000000000..f4434ab84cc9a8a3e8a76b6db3857d31b0e6f974 Binary files /dev/null and b/data/textures/brick/brick_0072.png differ diff --git a/data/textures/brick/brick_0073.png b/data/textures/brick/brick_0073.png new file mode 100644 index 0000000000000000000000000000000000000000..1249fde6cfa628b6785d9842f9e17dcf7cb6a32b Binary files /dev/null and b/data/textures/brick/brick_0073.png differ diff --git a/data/textures/brick/brick_0074.png b/data/textures/brick/brick_0074.png new file mode 100644 index 0000000000000000000000000000000000000000..cb9c02bf857a3943a6b3476c1537e326f7ccbeec Binary files /dev/null and b/data/textures/brick/brick_0074.png differ diff --git a/data/textures/brick/brick_0075.png b/data/textures/brick/brick_0075.png new file mode 100644 index 0000000000000000000000000000000000000000..a902bde2509c8f0ea35b6b2abe834bdebd4e9a42 Binary files /dev/null and b/data/textures/brick/brick_0075.png differ diff --git a/data/textures/brick/brick_0076.png b/data/textures/brick/brick_0076.png new file mode 100644 index 0000000000000000000000000000000000000000..4abdb101c6043b39374ee69ca049879bd62743ff Binary files /dev/null and b/data/textures/brick/brick_0076.png differ diff --git a/data/textures/brick/brick_0077.png b/data/textures/brick/brick_0077.png new file mode 100644 index 0000000000000000000000000000000000000000..f311179a88b1d00dea87fab098d18c8f678d2429 Binary files /dev/null and b/data/textures/brick/brick_0077.png differ diff --git a/data/textures/brick/brick_0078.png b/data/textures/brick/brick_0078.png new file mode 100644 index 0000000000000000000000000000000000000000..21e71a7fc1d676d850bf84596fe1fab3df0219bc Binary files /dev/null and b/data/textures/brick/brick_0078.png differ diff --git a/data/textures/brick/brick_0079.png b/data/textures/brick/brick_0079.png new file mode 100644 index 0000000000000000000000000000000000000000..db8b23deffc14e43a0b15b7cd45ea50ef4315312 Binary files /dev/null and b/data/textures/brick/brick_0079.png differ diff --git a/data/textures/brick/brick_0080.png b/data/textures/brick/brick_0080.png new file mode 100644 index 0000000000000000000000000000000000000000..eb23a6ec959ddb2c65676076f6c78ef934f92a10 Binary files /dev/null and b/data/textures/brick/brick_0080.png differ diff --git a/data/textures/brick/brick_0081.png b/data/textures/brick/brick_0081.png new file mode 100644 index 0000000000000000000000000000000000000000..88caa5b5203d0f2743bc357fcfd4d713f96ea857 Binary files /dev/null and b/data/textures/brick/brick_0081.png differ diff --git a/data/textures/brick/brick_0082.png b/data/textures/brick/brick_0082.png new file mode 100644 index 0000000000000000000000000000000000000000..59dc2a6dce92f5e10449f5a0a8627bbca2fbef43 Binary files /dev/null and b/data/textures/brick/brick_0082.png differ diff --git a/data/textures/brick/brick_0083.png b/data/textures/brick/brick_0083.png new file mode 100644 index 0000000000000000000000000000000000000000..03d826eb4bae60fe99d518c32a32159033f362fa Binary files /dev/null and b/data/textures/brick/brick_0083.png differ diff --git a/data/textures/brick/brick_0084.png b/data/textures/brick/brick_0084.png new file mode 100644 index 0000000000000000000000000000000000000000..8092676d384eb76bd355362c697db20f8ce1fba3 Binary files /dev/null and b/data/textures/brick/brick_0084.png differ diff --git a/data/textures/brick/brick_0085.png b/data/textures/brick/brick_0085.png new file mode 100644 index 0000000000000000000000000000000000000000..32faf4aaebcac5a4676d4cbbd78dab679f33a81c Binary files /dev/null and b/data/textures/brick/brick_0085.png differ diff --git a/data/textures/brick/brick_0086.png b/data/textures/brick/brick_0086.png new file mode 100644 index 0000000000000000000000000000000000000000..c9998f1c119fd224c60e90090a8727abd0bac1b0 Binary files /dev/null and b/data/textures/brick/brick_0086.png differ diff --git a/data/textures/brick/brick_0087.png b/data/textures/brick/brick_0087.png new file mode 100644 index 0000000000000000000000000000000000000000..bd8fa5d0568620419d2259233098c9f88daa2ba7 Binary files /dev/null and b/data/textures/brick/brick_0087.png differ diff --git a/data/textures/brick/brick_0088.png b/data/textures/brick/brick_0088.png new file mode 100644 index 0000000000000000000000000000000000000000..f29d4a32422b7870b6299d137c9d28b4ff1e5d5d Binary files /dev/null and b/data/textures/brick/brick_0088.png differ diff --git a/data/textures/brick/brick_0089.png b/data/textures/brick/brick_0089.png new file mode 100644 index 0000000000000000000000000000000000000000..3eaf05c51be152f4282cb925f097bf7efe1bd5b5 Binary files /dev/null and b/data/textures/brick/brick_0089.png differ diff --git a/data/textures/brick/brick_0090.png b/data/textures/brick/brick_0090.png new file mode 100644 index 0000000000000000000000000000000000000000..5419f2edcbe83e12309eb5c1c2ade0e41a7b01b2 Binary files /dev/null and b/data/textures/brick/brick_0090.png differ diff --git a/data/textures/brick/brick_0091.png b/data/textures/brick/brick_0091.png new file mode 100644 index 0000000000000000000000000000000000000000..075c286ea1783eaf933c05b9ebffad171d715d17 Binary files /dev/null and b/data/textures/brick/brick_0091.png differ diff --git a/data/textures/brick/brick_0092.png b/data/textures/brick/brick_0092.png new file mode 100644 index 0000000000000000000000000000000000000000..16c3cec51ecaead7e010e385908e93f3878ece5c Binary files /dev/null and b/data/textures/brick/brick_0092.png differ diff --git a/data/textures/brick/brick_0093.png b/data/textures/brick/brick_0093.png new file mode 100644 index 0000000000000000000000000000000000000000..c9c3f50d3c1b1525f80cfe115ee485d3797f2511 Binary files /dev/null and b/data/textures/brick/brick_0093.png differ diff --git a/data/textures/brick/brick_0094.png b/data/textures/brick/brick_0094.png new file mode 100644 index 0000000000000000000000000000000000000000..f5bd61c535bb36b0788e894509f551929926f932 Binary files /dev/null and b/data/textures/brick/brick_0094.png differ diff --git a/data/textures/brick/brick_0095.png b/data/textures/brick/brick_0095.png new file mode 100644 index 0000000000000000000000000000000000000000..371fc013048bd0388406e98befb8e4e768e830b1 Binary files /dev/null and b/data/textures/brick/brick_0095.png differ diff --git a/data/textures/brick/brick_0096.png b/data/textures/brick/brick_0096.png new file mode 100644 index 0000000000000000000000000000000000000000..ffd1da33e386e4947ae8a173e5cc15ba4ea64096 Binary files /dev/null and b/data/textures/brick/brick_0096.png differ diff --git a/data/textures/brick/brick_0097.png b/data/textures/brick/brick_0097.png new file mode 100644 index 0000000000000000000000000000000000000000..d4a6b14c23a81372370ed07b59ba7802dd12dcae Binary files /dev/null and b/data/textures/brick/brick_0097.png differ diff --git a/data/textures/brick/brick_0098.png b/data/textures/brick/brick_0098.png new file mode 100644 index 0000000000000000000000000000000000000000..2b70fd7c5f1d5caa0b6e6d354b5122997fa94830 Binary files /dev/null and b/data/textures/brick/brick_0098.png differ diff --git a/data/textures/brick/brick_0099.png b/data/textures/brick/brick_0099.png new file mode 100644 index 0000000000000000000000000000000000000000..25aa43d4246c7f4c874be714ca51f0fa898ea3c4 Binary files /dev/null and b/data/textures/brick/brick_0099.png differ diff --git a/data/textures/brick/brick_0100.png b/data/textures/brick/brick_0100.png new file mode 100644 index 0000000000000000000000000000000000000000..7e94b688b9d0f68b5b56973f7a677adc3a7df100 Binary files /dev/null and b/data/textures/brick/brick_0100.png differ diff --git a/data/textures/brick/brick_0101.png b/data/textures/brick/brick_0101.png new file mode 100644 index 0000000000000000000000000000000000000000..a1a4d9f68e1a02202053f9234eafc63a51df7513 Binary files /dev/null and b/data/textures/brick/brick_0101.png differ diff --git a/data/textures/brick/brick_0102.png b/data/textures/brick/brick_0102.png new file mode 100644 index 0000000000000000000000000000000000000000..40d70a84f87e46e374d7716ccd70571c9107a866 Binary files /dev/null and b/data/textures/brick/brick_0102.png differ diff --git a/data/textures/brick/brick_0103.png b/data/textures/brick/brick_0103.png new file mode 100644 index 0000000000000000000000000000000000000000..287f1ef157ab0d592ab0c998f69259ece84c896f Binary files /dev/null and b/data/textures/brick/brick_0103.png differ diff --git a/data/textures/brick/brick_0104.png b/data/textures/brick/brick_0104.png new file mode 100644 index 0000000000000000000000000000000000000000..c80b22a06ae56caa46052378f5278d6b77c60b7a Binary files /dev/null and b/data/textures/brick/brick_0104.png differ diff --git a/data/textures/brick/brick_0105.png b/data/textures/brick/brick_0105.png new file mode 100644 index 0000000000000000000000000000000000000000..1da1760df06a8351235faaef81c9f4c22c459d29 Binary files /dev/null and b/data/textures/brick/brick_0105.png differ diff --git a/data/textures/brick/brick_0106.png b/data/textures/brick/brick_0106.png new file mode 100644 index 0000000000000000000000000000000000000000..52c92392913b0d6e8b94345757307086a36cee4f Binary files /dev/null and b/data/textures/brick/brick_0106.png differ diff --git a/data/textures/brick/brick_0107.png b/data/textures/brick/brick_0107.png new file mode 100644 index 0000000000000000000000000000000000000000..686c6f07fcbf6c7cc4cd334de0a3c578ddc53e2e Binary files /dev/null and b/data/textures/brick/brick_0107.png differ diff --git a/data/textures/brick/brick_0108.png b/data/textures/brick/brick_0108.png new file mode 100644 index 0000000000000000000000000000000000000000..9507ca6930e597b911a35f56d315f12fa3258691 Binary files /dev/null and b/data/textures/brick/brick_0108.png differ diff --git a/data/textures/brick/brick_0109.png b/data/textures/brick/brick_0109.png new file mode 100644 index 0000000000000000000000000000000000000000..604dee5f63a95b46e053344daae714b305ec50e0 Binary files /dev/null and b/data/textures/brick/brick_0109.png differ diff --git a/data/textures/brick/brick_0110.png b/data/textures/brick/brick_0110.png new file mode 100644 index 0000000000000000000000000000000000000000..04edaab1e9ba262ff76eea71e0dd20685c915ef1 Binary files /dev/null and b/data/textures/brick/brick_0110.png differ diff --git a/data/textures/brick/brick_0111.png b/data/textures/brick/brick_0111.png new file mode 100644 index 0000000000000000000000000000000000000000..e3f6a85e59e64cfbf0fe072f2c6f85b37184c603 Binary files /dev/null and b/data/textures/brick/brick_0111.png differ diff --git a/data/textures/brick/brick_0112.png b/data/textures/brick/brick_0112.png new file mode 100644 index 0000000000000000000000000000000000000000..b65ad97585cea8b2e5512eb441b268effa2321a0 Binary files /dev/null and b/data/textures/brick/brick_0112.png differ diff --git a/data/textures/brick/brick_0113.png b/data/textures/brick/brick_0113.png new file mode 100644 index 0000000000000000000000000000000000000000..4202c2e084bd1a805cfcf22267fbc176a41651d7 Binary files /dev/null and b/data/textures/brick/brick_0113.png differ diff --git a/data/textures/brick/brick_0114.png b/data/textures/brick/brick_0114.png new file mode 100644 index 0000000000000000000000000000000000000000..a921d2d82827861ea7628de62bcc96309d6ea4bb Binary files /dev/null and b/data/textures/brick/brick_0114.png differ diff --git a/data/textures/brick/brick_0115.png b/data/textures/brick/brick_0115.png new file mode 100644 index 0000000000000000000000000000000000000000..0f2b5b89b7f0140afe5dfbf4ffd941e440eed289 Binary files /dev/null and b/data/textures/brick/brick_0115.png differ diff --git a/data/textures/brick/brick_0116.png b/data/textures/brick/brick_0116.png new file mode 100644 index 0000000000000000000000000000000000000000..b15399ac12c501c12d459a89b607f8c249904c15 Binary files /dev/null and b/data/textures/brick/brick_0116.png differ diff --git a/data/textures/brick/brick_0117.png b/data/textures/brick/brick_0117.png new file mode 100644 index 0000000000000000000000000000000000000000..0205bd1e3e069b96a91ba65e5263cf4174414ba6 Binary files /dev/null and b/data/textures/brick/brick_0117.png differ diff --git a/data/textures/brick/brick_0118.png b/data/textures/brick/brick_0118.png new file mode 100644 index 0000000000000000000000000000000000000000..46be94702e11a725ddc5d0804493ab5cf32e80f4 Binary files /dev/null and b/data/textures/brick/brick_0118.png differ diff --git a/data/textures/brick/brick_0119.png b/data/textures/brick/brick_0119.png new file mode 100644 index 0000000000000000000000000000000000000000..8848ffc50e72dc14d3a54a21057010f791f28acb Binary files /dev/null and b/data/textures/brick/brick_0119.png differ diff --git a/data/textures/brick/brick_0120.png b/data/textures/brick/brick_0120.png new file mode 100644 index 0000000000000000000000000000000000000000..2affd0f780203b855bbfa170ff41e55db17c9045 Binary files /dev/null and b/data/textures/brick/brick_0120.png differ diff --git a/data/textures/brick/brick_0121.png b/data/textures/brick/brick_0121.png new file mode 100644 index 0000000000000000000000000000000000000000..9016a6992f17ad11407ae9d3fafea507c87cf5b6 Binary files /dev/null and b/data/textures/brick/brick_0121.png differ diff --git a/data/textures/brick/brick_0122.png b/data/textures/brick/brick_0122.png new file mode 100644 index 0000000000000000000000000000000000000000..55a445abc84192c3389816072bc0b420d8ec03bf Binary files /dev/null and b/data/textures/brick/brick_0122.png differ diff --git a/data/textures/brick/brick_0123.png b/data/textures/brick/brick_0123.png new file mode 100644 index 0000000000000000000000000000000000000000..5ad83ff7876627ee5ede2de635a6fa99a1b93135 Binary files /dev/null and b/data/textures/brick/brick_0123.png differ diff --git a/data/textures/brick/brick_0124.png b/data/textures/brick/brick_0124.png new file mode 100644 index 0000000000000000000000000000000000000000..a72c388549b13e4bf5b2f7a1a6969bf63d2c563e Binary files /dev/null and b/data/textures/brick/brick_0124.png differ diff --git a/data/textures/brick/brick_0125.png b/data/textures/brick/brick_0125.png new file mode 100644 index 0000000000000000000000000000000000000000..d4a180511c74b1a51de8e1d87c35eebd857da223 Binary files /dev/null and b/data/textures/brick/brick_0125.png differ diff --git a/data/textures/brick/brick_0126.png b/data/textures/brick/brick_0126.png new file mode 100644 index 0000000000000000000000000000000000000000..c0e059895a5f958df6251d4f3cda4a644570ae37 Binary files /dev/null and b/data/textures/brick/brick_0126.png differ diff --git a/data/textures/brick/brick_0127.png b/data/textures/brick/brick_0127.png new file mode 100644 index 0000000000000000000000000000000000000000..4d4a6e5af8e394f754e844a6d40cdcc6ff25c967 Binary files /dev/null and b/data/textures/brick/brick_0127.png differ diff --git a/data/textures/brick/brick_0128.png b/data/textures/brick/brick_0128.png new file mode 100644 index 0000000000000000000000000000000000000000..43da5b291f648681a45771d4f087789e2f6ac342 Binary files /dev/null and b/data/textures/brick/brick_0128.png differ diff --git a/data/textures/brick/brick_0129.png b/data/textures/brick/brick_0129.png new file mode 100644 index 0000000000000000000000000000000000000000..02031eb25778dadb6d70f27089f2c30c7e32d2d7 Binary files /dev/null and b/data/textures/brick/brick_0129.png differ diff --git a/data/textures/brick/brick_0130.png b/data/textures/brick/brick_0130.png new file mode 100644 index 0000000000000000000000000000000000000000..3893c9e14999e36e0c47d245038afce227b838ef Binary files /dev/null and b/data/textures/brick/brick_0130.png differ diff --git a/data/textures/brick/brick_0131.png b/data/textures/brick/brick_0131.png new file mode 100644 index 0000000000000000000000000000000000000000..fff45fce1cc77ffd14741d726129d9788cc2c2c1 Binary files /dev/null and b/data/textures/brick/brick_0131.png differ diff --git a/data/textures/brick/brick_0132.png b/data/textures/brick/brick_0132.png new file mode 100644 index 0000000000000000000000000000000000000000..8f3f22808f031eca06a29fe2bc7f5bb1d9093e20 Binary files /dev/null and b/data/textures/brick/brick_0132.png differ diff --git a/data/textures/brick/brick_0133.png b/data/textures/brick/brick_0133.png new file mode 100644 index 0000000000000000000000000000000000000000..4cfe0342bd5cd41b85367c6fee0fd5e227a49538 Binary files /dev/null and b/data/textures/brick/brick_0133.png differ diff --git a/data/textures/brick/brick_0134.png b/data/textures/brick/brick_0134.png new file mode 100644 index 0000000000000000000000000000000000000000..cb7d6e5a422264a520e710fba1ec017e3ba42ba5 Binary files /dev/null and b/data/textures/brick/brick_0134.png differ diff --git a/data/textures/brick/brick_0135.png b/data/textures/brick/brick_0135.png new file mode 100644 index 0000000000000000000000000000000000000000..b83ad0ed5ca6ad7b587713e2e4a762bfa278411a Binary files /dev/null and b/data/textures/brick/brick_0135.png differ diff --git a/data/textures/brick/brick_0136.png b/data/textures/brick/brick_0136.png new file mode 100644 index 0000000000000000000000000000000000000000..7f05987485155e77a34fdf3c9277f0e7d60ce766 Binary files /dev/null and b/data/textures/brick/brick_0136.png differ diff --git a/data/textures/brick/brick_0137.png b/data/textures/brick/brick_0137.png new file mode 100644 index 0000000000000000000000000000000000000000..0166d2cf61b92ef80f8e43014153fb00b81b2a06 Binary files /dev/null and b/data/textures/brick/brick_0137.png differ diff --git a/data/textures/brick/brick_0138.png b/data/textures/brick/brick_0138.png new file mode 100644 index 0000000000000000000000000000000000000000..2c37149c92a439ce3b818e95c051787103c99c82 Binary files /dev/null and b/data/textures/brick/brick_0138.png differ diff --git a/data/textures/brick/brick_0139.png b/data/textures/brick/brick_0139.png new file mode 100644 index 0000000000000000000000000000000000000000..ac499c61a28aa54b27733dc1e3aa8b979a2eea28 Binary files /dev/null and b/data/textures/brick/brick_0139.png differ diff --git a/data/textures/brick/brick_0140.png b/data/textures/brick/brick_0140.png new file mode 100644 index 0000000000000000000000000000000000000000..fc8e4a160bfd8b63d4c4b3d1dab8c72643dba3a9 Binary files /dev/null and b/data/textures/brick/brick_0140.png differ diff --git a/data/textures/brick/brick_0141.png b/data/textures/brick/brick_0141.png new file mode 100644 index 0000000000000000000000000000000000000000..9414ac78f8a37d7931b8d3ad4c83fa808f628ea1 Binary files /dev/null and b/data/textures/brick/brick_0141.png differ diff --git a/data/textures/brick/brick_0142.png b/data/textures/brick/brick_0142.png new file mode 100644 index 0000000000000000000000000000000000000000..d4bef3e0f169ff44099cc26192ec48a9e680df85 Binary files /dev/null and b/data/textures/brick/brick_0142.png differ diff --git a/data/textures/brick/brick_0143.png b/data/textures/brick/brick_0143.png new file mode 100644 index 0000000000000000000000000000000000000000..a3c92914793137499df01c4656d47aac881b2a20 Binary files /dev/null and b/data/textures/brick/brick_0143.png differ diff --git a/data/textures/brick/brick_0144.png b/data/textures/brick/brick_0144.png new file mode 100644 index 0000000000000000000000000000000000000000..e923ebb3a8dd8125c96da1eb0ae30fbccd9330a2 Binary files /dev/null and b/data/textures/brick/brick_0144.png differ diff --git a/data/textures/brick/brick_0145.png b/data/textures/brick/brick_0145.png new file mode 100644 index 0000000000000000000000000000000000000000..e77c965847593b63f2ad6bb64930078fb184cb6b Binary files /dev/null and b/data/textures/brick/brick_0145.png differ diff --git a/data/textures/brick/brick_0146.png b/data/textures/brick/brick_0146.png new file mode 100644 index 0000000000000000000000000000000000000000..3451d0dc6e9a3ee13e662feb56091bab9fd9f816 Binary files /dev/null and b/data/textures/brick/brick_0146.png differ diff --git a/data/textures/brick/brick_0147.png b/data/textures/brick/brick_0147.png new file mode 100644 index 0000000000000000000000000000000000000000..0dcf81f07897b534b120341ab8887ed2260a46a7 Binary files /dev/null and b/data/textures/brick/brick_0147.png differ diff --git a/data/textures/brick/brick_0148.png b/data/textures/brick/brick_0148.png new file mode 100644 index 0000000000000000000000000000000000000000..09ad50b72a4bd9dd5eee3593fd595e64138c2199 Binary files /dev/null and b/data/textures/brick/brick_0148.png differ diff --git a/data/textures/brick/brick_0149.png b/data/textures/brick/brick_0149.png new file mode 100644 index 0000000000000000000000000000000000000000..74404181c7d714da49f99b081099101b86ae2c83 Binary files /dev/null and b/data/textures/brick/brick_0149.png differ diff --git a/data/textures/brick/brick_0150.png b/data/textures/brick/brick_0150.png new file mode 100644 index 0000000000000000000000000000000000000000..bcda2018a90c3841b45d9c7f61c8ce970c1f4466 Binary files /dev/null and b/data/textures/brick/brick_0150.png differ diff --git a/data/textures/brick/brick_0151.png b/data/textures/brick/brick_0151.png new file mode 100644 index 0000000000000000000000000000000000000000..5da9f52ca170eefec5941b4a3f767f45578036c9 Binary files /dev/null and b/data/textures/brick/brick_0151.png differ diff --git a/data/textures/brick/brick_0152.png b/data/textures/brick/brick_0152.png new file mode 100644 index 0000000000000000000000000000000000000000..8c0b4aa09182d707f07d2ce99d99915ab5b6b645 Binary files /dev/null and b/data/textures/brick/brick_0152.png differ diff --git a/data/textures/brick/brick_0153.png b/data/textures/brick/brick_0153.png new file mode 100644 index 0000000000000000000000000000000000000000..b7514a6d5a68e1c7d4b9cb40c844e02e82b510d6 Binary files /dev/null and b/data/textures/brick/brick_0153.png differ diff --git a/data/textures/brick/brick_0154.png b/data/textures/brick/brick_0154.png new file mode 100644 index 0000000000000000000000000000000000000000..fcdc5e6f148ca31498ebc54f6a73e83ed6518b35 Binary files /dev/null and b/data/textures/brick/brick_0154.png differ diff --git a/data/textures/brick/brick_0155.png b/data/textures/brick/brick_0155.png new file mode 100644 index 0000000000000000000000000000000000000000..746b308a5156fca52052bc6854f82d20d8aec8f7 Binary files /dev/null and b/data/textures/brick/brick_0155.png differ diff --git a/data/textures/brick/brick_0156.png b/data/textures/brick/brick_0156.png new file mode 100644 index 0000000000000000000000000000000000000000..2838b0dfaa1a8cdf70f51a5c94ba425a83dcdce5 Binary files /dev/null and b/data/textures/brick/brick_0156.png differ diff --git a/data/textures/brick/brick_0157.png b/data/textures/brick/brick_0157.png new file mode 100644 index 0000000000000000000000000000000000000000..f2363c4194a2c7508300fd1778c43369e5b3a690 Binary files /dev/null and b/data/textures/brick/brick_0157.png differ diff --git a/data/textures/brick/brick_0158.png b/data/textures/brick/brick_0158.png new file mode 100644 index 0000000000000000000000000000000000000000..6248c6274b0dcdcacbf293064538c459af9bfb0a Binary files /dev/null and b/data/textures/brick/brick_0158.png differ diff --git a/data/textures/brick/brick_0159.png b/data/textures/brick/brick_0159.png new file mode 100644 index 0000000000000000000000000000000000000000..1b79e3fd33e0a2394083f554f6a40b1a0a48679b Binary files /dev/null and b/data/textures/brick/brick_0159.png differ diff --git a/data/textures/brick/brick_0160.png b/data/textures/brick/brick_0160.png new file mode 100644 index 0000000000000000000000000000000000000000..7465a51778cdd2f6fde71af4e9dcfebce9162758 Binary files /dev/null and b/data/textures/brick/brick_0160.png differ diff --git a/data/textures/brick/brick_0161.png b/data/textures/brick/brick_0161.png new file mode 100644 index 0000000000000000000000000000000000000000..4ef8c04610f3336880d65077e3b04dcfcd762642 Binary files /dev/null and b/data/textures/brick/brick_0161.png differ diff --git a/data/textures/brick/brick_0162.png b/data/textures/brick/brick_0162.png new file mode 100644 index 0000000000000000000000000000000000000000..0c00e06c23e59779863759e8c1c87f0852e0dd45 Binary files /dev/null and b/data/textures/brick/brick_0162.png differ diff --git a/data/textures/brick/brick_0163.png b/data/textures/brick/brick_0163.png new file mode 100644 index 0000000000000000000000000000000000000000..df00b361d555b493ee927e28b81c6ff0a6f92256 Binary files /dev/null and b/data/textures/brick/brick_0163.png differ diff --git a/data/textures/brick/brick_0164.png b/data/textures/brick/brick_0164.png new file mode 100644 index 0000000000000000000000000000000000000000..98dfa325106cbd61dce67be609edd3bd9a0cc7c8 Binary files /dev/null and b/data/textures/brick/brick_0164.png differ diff --git a/data/textures/brick/brick_0165.png b/data/textures/brick/brick_0165.png new file mode 100644 index 0000000000000000000000000000000000000000..25da3d83833cdbb38c6d251d2cd59744b6f2fe5f Binary files /dev/null and b/data/textures/brick/brick_0165.png differ diff --git a/data/textures/brick/brick_0166.png b/data/textures/brick/brick_0166.png new file mode 100644 index 0000000000000000000000000000000000000000..355c45897e8bed98ea3e55a623bb8dd0c1112bf0 Binary files /dev/null and b/data/textures/brick/brick_0166.png differ diff --git a/data/textures/brick/brick_0167.png b/data/textures/brick/brick_0167.png new file mode 100644 index 0000000000000000000000000000000000000000..096ccde99f071ea06ecb20f0236a94fbfa1d5e0e Binary files /dev/null and b/data/textures/brick/brick_0167.png differ diff --git a/data/textures/brick/brick_0168.png b/data/textures/brick/brick_0168.png new file mode 100644 index 0000000000000000000000000000000000000000..b8f8ce61587155623e37bb69d96b407fd2d452e7 Binary files /dev/null and b/data/textures/brick/brick_0168.png differ diff --git a/data/textures/brick/brick_0169.png b/data/textures/brick/brick_0169.png new file mode 100644 index 0000000000000000000000000000000000000000..2f4651ef495af8bf8a08e2ca3dbce0e9ca87221c Binary files /dev/null and b/data/textures/brick/brick_0169.png differ diff --git a/data/textures/brick/brick_0170.png b/data/textures/brick/brick_0170.png new file mode 100644 index 0000000000000000000000000000000000000000..7a58f39978186d9d88b3f8c3ce8f09c17bcbc01b Binary files /dev/null and b/data/textures/brick/brick_0170.png differ diff --git a/data/textures/brick/brick_0171.png b/data/textures/brick/brick_0171.png new file mode 100644 index 0000000000000000000000000000000000000000..0dd772d8b34f6f80ec4275c688274ed905d84ff3 Binary files /dev/null and b/data/textures/brick/brick_0171.png differ diff --git a/data/textures/brick/brick_0172.png b/data/textures/brick/brick_0172.png new file mode 100644 index 0000000000000000000000000000000000000000..4edb6565b62cc35567b0e5122b7b87525341fe3f Binary files /dev/null and b/data/textures/brick/brick_0172.png differ diff --git a/data/textures/brick/brick_0173.png b/data/textures/brick/brick_0173.png new file mode 100644 index 0000000000000000000000000000000000000000..ba57678896fc3a514a3ecfd53070b1674ccbda9c Binary files /dev/null and b/data/textures/brick/brick_0173.png differ diff --git a/data/textures/brick/brick_0174.png b/data/textures/brick/brick_0174.png new file mode 100644 index 0000000000000000000000000000000000000000..a7288e0091951db8832c0033021b9f02180d6e0f Binary files /dev/null and b/data/textures/brick/brick_0174.png differ diff --git a/data/textures/brick/brick_0175.png b/data/textures/brick/brick_0175.png new file mode 100644 index 0000000000000000000000000000000000000000..1a293f9c6c53c466bc44796f5121ac6da27258f1 Binary files /dev/null and b/data/textures/brick/brick_0175.png differ diff --git a/data/textures/brick/brick_0176.png b/data/textures/brick/brick_0176.png new file mode 100644 index 0000000000000000000000000000000000000000..d730a378d0bc99585d0c57e54df7a2de84fbb770 Binary files /dev/null and b/data/textures/brick/brick_0176.png differ diff --git a/data/textures/brick/brick_0177.png b/data/textures/brick/brick_0177.png new file mode 100644 index 0000000000000000000000000000000000000000..ce18386198da34317604ffcf87599df168856787 Binary files /dev/null and b/data/textures/brick/brick_0177.png differ diff --git a/data/textures/brick/brick_0178.png b/data/textures/brick/brick_0178.png new file mode 100644 index 0000000000000000000000000000000000000000..074b6dfd70d0d62f811f16fb780357560d37af60 Binary files /dev/null and b/data/textures/brick/brick_0178.png differ diff --git a/data/textures/brick/brick_0179.png b/data/textures/brick/brick_0179.png new file mode 100644 index 0000000000000000000000000000000000000000..952b5329cbfd74928f59b447a25e77e1e9cbfb7a Binary files /dev/null and b/data/textures/brick/brick_0179.png differ diff --git a/data/textures/brick/brick_0180.png b/data/textures/brick/brick_0180.png new file mode 100644 index 0000000000000000000000000000000000000000..693087c73595e1554afed357114d41b2fd2e9e73 Binary files /dev/null and b/data/textures/brick/brick_0180.png differ diff --git a/data/textures/brick/brick_0181.png b/data/textures/brick/brick_0181.png new file mode 100644 index 0000000000000000000000000000000000000000..97c94308a2d7b97dcbc68de293847459b6f4f58e Binary files /dev/null and b/data/textures/brick/brick_0181.png differ diff --git a/data/textures/brick/brick_0182.png b/data/textures/brick/brick_0182.png new file mode 100644 index 0000000000000000000000000000000000000000..c3d79e978b2d081b40a1d5e6efeada71b2b408c9 Binary files /dev/null and b/data/textures/brick/brick_0182.png differ diff --git a/data/textures/brick/brick_0183.png b/data/textures/brick/brick_0183.png new file mode 100644 index 0000000000000000000000000000000000000000..72cc7d29f245050dbea021aac76814cfff1222a6 Binary files /dev/null and b/data/textures/brick/brick_0183.png differ diff --git a/data/textures/brick/brick_0184.png b/data/textures/brick/brick_0184.png new file mode 100644 index 0000000000000000000000000000000000000000..8b4bbf8a73467c5231bb7e75e93835aee6035c6f Binary files /dev/null and b/data/textures/brick/brick_0184.png differ diff --git a/data/textures/brick/brick_0185.png b/data/textures/brick/brick_0185.png new file mode 100644 index 0000000000000000000000000000000000000000..b4260f2592d8d189a3bd8bc1157308ad8b07d842 Binary files /dev/null and b/data/textures/brick/brick_0185.png differ diff --git a/data/textures/brick/brick_0186.png b/data/textures/brick/brick_0186.png new file mode 100644 index 0000000000000000000000000000000000000000..9277df322b3e492d843508bc78073bebec7d76fb Binary files /dev/null and b/data/textures/brick/brick_0186.png differ diff --git a/data/textures/brick/brick_0187.png b/data/textures/brick/brick_0187.png new file mode 100644 index 0000000000000000000000000000000000000000..12311ee56d8428d3c63b478d0ed93f1cf125149a Binary files /dev/null and b/data/textures/brick/brick_0187.png differ diff --git a/data/textures/brick/brick_0188.png b/data/textures/brick/brick_0188.png new file mode 100644 index 0000000000000000000000000000000000000000..649ec99b4ecd0ac0bfbc576153bb7760c06e8112 Binary files /dev/null and b/data/textures/brick/brick_0188.png differ diff --git a/data/textures/brick/brick_0189.png b/data/textures/brick/brick_0189.png new file mode 100644 index 0000000000000000000000000000000000000000..44c5b3111238383fcec6c7e8bb2cfb011a602f8b Binary files /dev/null and b/data/textures/brick/brick_0189.png differ diff --git a/data/textures/brick/brick_0190.png b/data/textures/brick/brick_0190.png new file mode 100644 index 0000000000000000000000000000000000000000..8c470a2cdd0fbbd5220f2d71ad198c00b9c60793 Binary files /dev/null and b/data/textures/brick/brick_0190.png differ diff --git a/data/textures/brick/brick_0191.png b/data/textures/brick/brick_0191.png new file mode 100644 index 0000000000000000000000000000000000000000..c39edaa3a75ea7ff220f7a8eabe477098587cbb9 Binary files /dev/null and b/data/textures/brick/brick_0191.png differ diff --git a/data/textures/brick/brick_0192.png b/data/textures/brick/brick_0192.png new file mode 100644 index 0000000000000000000000000000000000000000..7309cd6d694833b7712819ff92fba42af0b372d0 Binary files /dev/null and b/data/textures/brick/brick_0192.png differ diff --git a/data/textures/brick/brick_0193.png b/data/textures/brick/brick_0193.png new file mode 100644 index 0000000000000000000000000000000000000000..cd094f0e2e0078e66f4020014fa09a3f6d638a62 Binary files /dev/null and b/data/textures/brick/brick_0193.png differ diff --git a/data/textures/brick/brick_0194.png b/data/textures/brick/brick_0194.png new file mode 100644 index 0000000000000000000000000000000000000000..c9608ec09e6d86a4437ce4de87525751742c656e Binary files /dev/null and b/data/textures/brick/brick_0194.png differ diff --git a/data/textures/brick/brick_0195.png b/data/textures/brick/brick_0195.png new file mode 100644 index 0000000000000000000000000000000000000000..396400325161ced878437a853a95bf6a45f7e07b Binary files /dev/null and b/data/textures/brick/brick_0195.png differ diff --git a/data/textures/brick/brick_0196.png b/data/textures/brick/brick_0196.png new file mode 100644 index 0000000000000000000000000000000000000000..1680c5ab99a6298cb29d44afb12035adbdbc06ca Binary files /dev/null and b/data/textures/brick/brick_0196.png differ diff --git a/data/textures/brick/brick_0197.png b/data/textures/brick/brick_0197.png new file mode 100644 index 0000000000000000000000000000000000000000..af90aa645215b2754bd8cf5ce0bf91b87d0e578e Binary files /dev/null and b/data/textures/brick/brick_0197.png differ diff --git a/data/textures/brick/brick_0198.png b/data/textures/brick/brick_0198.png new file mode 100644 index 0000000000000000000000000000000000000000..c48e81832971b21856b8f608170a09884c603247 Binary files /dev/null and b/data/textures/brick/brick_0198.png differ diff --git a/data/textures/brick/brick_0199.png b/data/textures/brick/brick_0199.png new file mode 100644 index 0000000000000000000000000000000000000000..33d2af5458fa096693aa950f962deb4a6caf2adc Binary files /dev/null and b/data/textures/brick/brick_0199.png differ diff --git a/data/textures/fabric/fabric_0000.png b/data/textures/fabric/fabric_0000.png new file mode 100644 index 0000000000000000000000000000000000000000..1089b1b5854c0278ac009bc50125125e98226ba5 Binary files /dev/null and b/data/textures/fabric/fabric_0000.png differ diff --git a/data/textures/fabric/fabric_0001.png b/data/textures/fabric/fabric_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..00b658e9062439de4ce294bee87c3357608e51b1 Binary files /dev/null and b/data/textures/fabric/fabric_0001.png differ diff --git a/data/textures/fabric/fabric_0002.png b/data/textures/fabric/fabric_0002.png new file mode 100644 index 0000000000000000000000000000000000000000..b5cc8201288cb47f4d8a48cd2efb2683ac80626f Binary files /dev/null and b/data/textures/fabric/fabric_0002.png differ diff --git a/data/textures/fabric/fabric_0003.png b/data/textures/fabric/fabric_0003.png new file mode 100644 index 0000000000000000000000000000000000000000..895b11d77bb654eb316bc153aaad41e28691ad07 Binary files /dev/null and b/data/textures/fabric/fabric_0003.png differ diff --git a/data/textures/fabric/fabric_0004.png b/data/textures/fabric/fabric_0004.png new file mode 100644 index 0000000000000000000000000000000000000000..e0fd267886d6e95c9abb3e5146eab74c2c19132c Binary files /dev/null and b/data/textures/fabric/fabric_0004.png differ diff --git a/data/textures/fabric/fabric_0005.png b/data/textures/fabric/fabric_0005.png new file mode 100644 index 0000000000000000000000000000000000000000..5033867f9e4e847ca1bbd591c0ed3ea9057c2079 Binary files /dev/null and b/data/textures/fabric/fabric_0005.png differ diff --git a/data/textures/fabric/fabric_0006.png b/data/textures/fabric/fabric_0006.png new file mode 100644 index 0000000000000000000000000000000000000000..eacbc9c46a9e56ad3f644091c8e1c5a7fdd81d43 Binary files /dev/null and b/data/textures/fabric/fabric_0006.png differ diff --git a/data/textures/fabric/fabric_0007.png b/data/textures/fabric/fabric_0007.png new file mode 100644 index 0000000000000000000000000000000000000000..37ff891ad21e77750766567980374cf26b92eac5 Binary files /dev/null and b/data/textures/fabric/fabric_0007.png differ diff --git a/data/textures/fabric/fabric_0008.png b/data/textures/fabric/fabric_0008.png new file mode 100644 index 0000000000000000000000000000000000000000..50fae5c06442da2ad05b34d35248d6ef05b45857 Binary files /dev/null and b/data/textures/fabric/fabric_0008.png differ diff --git a/data/textures/fabric/fabric_0009.png b/data/textures/fabric/fabric_0009.png new file mode 100644 index 0000000000000000000000000000000000000000..4eb3418b907232700ba8f4e7c017d31b82c58cc0 Binary files /dev/null and b/data/textures/fabric/fabric_0009.png differ diff --git a/data/textures/fabric/fabric_0010.png b/data/textures/fabric/fabric_0010.png new file mode 100644 index 0000000000000000000000000000000000000000..5bc8615dda599d1085a3da6dcfeeeb7702f9fe40 Binary files /dev/null and b/data/textures/fabric/fabric_0010.png differ diff --git a/data/textures/fabric/fabric_0011.png b/data/textures/fabric/fabric_0011.png new file mode 100644 index 0000000000000000000000000000000000000000..11dda688fdf0de43d1ec892c5fd419adfca513b0 Binary files /dev/null and b/data/textures/fabric/fabric_0011.png differ diff --git a/data/textures/fabric/fabric_0012.png b/data/textures/fabric/fabric_0012.png new file mode 100644 index 0000000000000000000000000000000000000000..1c68f052f26a5c6c086c7675b79c52abf52cd6a0 Binary files /dev/null and b/data/textures/fabric/fabric_0012.png differ diff --git a/data/textures/fabric/fabric_0013.png b/data/textures/fabric/fabric_0013.png new file mode 100644 index 0000000000000000000000000000000000000000..4989ab99e6d09519694d7092d778353fcbccd383 Binary files /dev/null and b/data/textures/fabric/fabric_0013.png differ diff --git a/data/textures/fabric/fabric_0014.png b/data/textures/fabric/fabric_0014.png new file mode 100644 index 0000000000000000000000000000000000000000..513730ec297e139c9c8fac2c34d2fe7e8342e381 Binary files /dev/null and b/data/textures/fabric/fabric_0014.png differ diff --git a/data/textures/fabric/fabric_0015.png b/data/textures/fabric/fabric_0015.png new file mode 100644 index 0000000000000000000000000000000000000000..b2da71f4b9ddd29a2cce66756887bab844bfc874 Binary files /dev/null and b/data/textures/fabric/fabric_0015.png differ diff --git a/data/textures/fabric/fabric_0016.png b/data/textures/fabric/fabric_0016.png new file mode 100644 index 0000000000000000000000000000000000000000..7451e86387a6970d91707b8c5e30c503ac4d71ad Binary files /dev/null and b/data/textures/fabric/fabric_0016.png differ diff --git a/data/textures/fabric/fabric_0017.png b/data/textures/fabric/fabric_0017.png new file mode 100644 index 0000000000000000000000000000000000000000..07df27b8a384aa2daf6b06e62849b9fe60f3e8b7 Binary files /dev/null and b/data/textures/fabric/fabric_0017.png differ diff --git a/data/textures/fabric/fabric_0018.png b/data/textures/fabric/fabric_0018.png new file mode 100644 index 0000000000000000000000000000000000000000..dac5e6b9638ef91114391dae458a51b2f4e9d44b Binary files /dev/null and b/data/textures/fabric/fabric_0018.png differ diff --git a/data/textures/fabric/fabric_0019.png b/data/textures/fabric/fabric_0019.png new file mode 100644 index 0000000000000000000000000000000000000000..5fb8cdbdcb7599c35688e4b53d8d07641baa5d84 Binary files /dev/null and b/data/textures/fabric/fabric_0019.png differ diff --git a/data/textures/fabric/fabric_0020.png b/data/textures/fabric/fabric_0020.png new file mode 100644 index 0000000000000000000000000000000000000000..79156ac3ec01336b0cdd493e7883c2ceea368370 Binary files /dev/null and b/data/textures/fabric/fabric_0020.png differ diff --git a/data/textures/fabric/fabric_0021.png b/data/textures/fabric/fabric_0021.png new file mode 100644 index 0000000000000000000000000000000000000000..e1554abe222e0e384e162f57e3414c4f83d74072 Binary files /dev/null and b/data/textures/fabric/fabric_0021.png differ diff --git a/data/textures/fabric/fabric_0022.png b/data/textures/fabric/fabric_0022.png new file mode 100644 index 0000000000000000000000000000000000000000..5d6ed22618a6230a7c54d7fb63198564e910eb11 Binary files /dev/null and b/data/textures/fabric/fabric_0022.png differ diff --git a/data/textures/fabric/fabric_0023.png b/data/textures/fabric/fabric_0023.png new file mode 100644 index 0000000000000000000000000000000000000000..129a35ca23e7201b7d56a4efcffeaf2802b623e6 Binary files /dev/null and b/data/textures/fabric/fabric_0023.png differ diff --git a/data/textures/fabric/fabric_0024.png b/data/textures/fabric/fabric_0024.png new file mode 100644 index 0000000000000000000000000000000000000000..b18e757d93061c315fdfa6f7298748b27f5ce173 Binary files /dev/null and b/data/textures/fabric/fabric_0024.png differ diff --git a/data/textures/fabric/fabric_0025.png b/data/textures/fabric/fabric_0025.png new file mode 100644 index 0000000000000000000000000000000000000000..542cea89185c9bac52a076ca780356e36cec353d Binary files /dev/null and b/data/textures/fabric/fabric_0025.png differ diff --git a/data/textures/fabric/fabric_0026.png b/data/textures/fabric/fabric_0026.png new file mode 100644 index 0000000000000000000000000000000000000000..b474b37da7313e62740e436f839e2d8a36af1fc4 Binary files /dev/null and b/data/textures/fabric/fabric_0026.png differ diff --git a/data/textures/fabric/fabric_0027.png b/data/textures/fabric/fabric_0027.png new file mode 100644 index 0000000000000000000000000000000000000000..67eb920b21d6f2a75059451578f17e94956a3bce Binary files /dev/null and b/data/textures/fabric/fabric_0027.png differ diff --git a/data/textures/fabric/fabric_0028.png b/data/textures/fabric/fabric_0028.png new file mode 100644 index 0000000000000000000000000000000000000000..6dfff238218955ea994c5f1019389ec936391935 Binary files /dev/null and b/data/textures/fabric/fabric_0028.png differ diff --git a/data/textures/fabric/fabric_0029.png b/data/textures/fabric/fabric_0029.png new file mode 100644 index 0000000000000000000000000000000000000000..0b9853de9ea2c42b9967766f56f7e07c009e394e Binary files /dev/null and b/data/textures/fabric/fabric_0029.png differ diff --git a/data/textures/fabric/fabric_0030.png b/data/textures/fabric/fabric_0030.png new file mode 100644 index 0000000000000000000000000000000000000000..2c0d3c4c73860911c4bfd10855b2b1462f2e6571 Binary files /dev/null and b/data/textures/fabric/fabric_0030.png differ diff --git a/data/textures/fabric/fabric_0031.png b/data/textures/fabric/fabric_0031.png new file mode 100644 index 0000000000000000000000000000000000000000..c9aef245c0d8e0efbc09e4239650c35abe843d39 Binary files /dev/null and b/data/textures/fabric/fabric_0031.png differ diff --git a/data/textures/fabric/fabric_0032.png b/data/textures/fabric/fabric_0032.png new file mode 100644 index 0000000000000000000000000000000000000000..0ab1b0622f488dcd97f575fc0b1e301298840eef Binary files /dev/null and b/data/textures/fabric/fabric_0032.png differ diff --git a/data/textures/fabric/fabric_0033.png b/data/textures/fabric/fabric_0033.png new file mode 100644 index 0000000000000000000000000000000000000000..344b3ae51f2426bb9801cfa8efea5f0e1b46470e Binary files /dev/null and b/data/textures/fabric/fabric_0033.png differ diff --git a/data/textures/fabric/fabric_0034.png b/data/textures/fabric/fabric_0034.png new file mode 100644 index 0000000000000000000000000000000000000000..3c9232b0fb8ec22a49d25839108cef1ba53f2072 Binary files /dev/null and b/data/textures/fabric/fabric_0034.png differ diff --git a/data/textures/fabric/fabric_0035.png b/data/textures/fabric/fabric_0035.png new file mode 100644 index 0000000000000000000000000000000000000000..e7ec4692183710fef767b675893f8b9392ee0f75 Binary files /dev/null and b/data/textures/fabric/fabric_0035.png differ diff --git a/data/textures/fabric/fabric_0036.png b/data/textures/fabric/fabric_0036.png new file mode 100644 index 0000000000000000000000000000000000000000..9651d73fb25686b8ad12b5aa65df2b3879100c87 Binary files /dev/null and b/data/textures/fabric/fabric_0036.png differ diff --git a/data/textures/fabric/fabric_0037.png b/data/textures/fabric/fabric_0037.png new file mode 100644 index 0000000000000000000000000000000000000000..159b500d5cca86edd3d5c68c06c0eb55fac2ad1c Binary files /dev/null and b/data/textures/fabric/fabric_0037.png differ diff --git a/data/textures/fabric/fabric_0038.png b/data/textures/fabric/fabric_0038.png new file mode 100644 index 0000000000000000000000000000000000000000..414eb0ea53fa48e04f13fae7089b4352ad606b2f Binary files /dev/null and b/data/textures/fabric/fabric_0038.png differ diff --git a/data/textures/fabric/fabric_0039.png b/data/textures/fabric/fabric_0039.png new file mode 100644 index 0000000000000000000000000000000000000000..05dc93c0a1733dbeae15fc41d0ef903ed3c4dd8f Binary files /dev/null and b/data/textures/fabric/fabric_0039.png differ diff --git a/data/textures/fabric/fabric_0040.png b/data/textures/fabric/fabric_0040.png new file mode 100644 index 0000000000000000000000000000000000000000..f5c3fc22234bfacfc753859658d4f9586aa937a9 Binary files /dev/null and b/data/textures/fabric/fabric_0040.png differ diff --git a/data/textures/fabric/fabric_0041.png b/data/textures/fabric/fabric_0041.png new file mode 100644 index 0000000000000000000000000000000000000000..b2e160c26f0b5915306f2d7fe89e43ed21779876 Binary files /dev/null and b/data/textures/fabric/fabric_0041.png differ diff --git a/data/textures/fabric/fabric_0042.png b/data/textures/fabric/fabric_0042.png new file mode 100644 index 0000000000000000000000000000000000000000..0f937908a785323208b082dab7c3595f8a8834bf Binary files /dev/null and b/data/textures/fabric/fabric_0042.png differ diff --git a/data/textures/fabric/fabric_0043.png b/data/textures/fabric/fabric_0043.png new file mode 100644 index 0000000000000000000000000000000000000000..517c38e025e5f84fd822d69b8927123c4d1ef3d5 Binary files /dev/null and b/data/textures/fabric/fabric_0043.png differ diff --git a/data/textures/fabric/fabric_0044.png b/data/textures/fabric/fabric_0044.png new file mode 100644 index 0000000000000000000000000000000000000000..98d47daae1515f739563f69304edb419bfdcb0e2 Binary files /dev/null and b/data/textures/fabric/fabric_0044.png differ diff --git a/data/textures/fabric/fabric_0045.png b/data/textures/fabric/fabric_0045.png new file mode 100644 index 0000000000000000000000000000000000000000..98bd67fd16a01da13fe70eddd611aa04e48caed1 Binary files /dev/null and b/data/textures/fabric/fabric_0045.png differ diff --git a/data/textures/fabric/fabric_0046.png b/data/textures/fabric/fabric_0046.png new file mode 100644 index 0000000000000000000000000000000000000000..1bb59138067714fd2a1f39bc55814d25f5577a1d Binary files /dev/null and b/data/textures/fabric/fabric_0046.png differ diff --git a/data/textures/fabric/fabric_0047.png b/data/textures/fabric/fabric_0047.png new file mode 100644 index 0000000000000000000000000000000000000000..b03d7ef43027951b39bfdf0222aa01236980df7e Binary files /dev/null and b/data/textures/fabric/fabric_0047.png differ diff --git a/data/textures/fabric/fabric_0048.png b/data/textures/fabric/fabric_0048.png new file mode 100644 index 0000000000000000000000000000000000000000..78f1e944019a67d2f2bb13b773067615484a3c73 Binary files /dev/null and b/data/textures/fabric/fabric_0048.png differ diff --git a/data/textures/fabric/fabric_0049.png b/data/textures/fabric/fabric_0049.png new file mode 100644 index 0000000000000000000000000000000000000000..83865133fbcf5be7ef2fe25ab79989a5de6daf0c Binary files /dev/null and b/data/textures/fabric/fabric_0049.png differ diff --git a/data/textures/fabric/fabric_0050.png b/data/textures/fabric/fabric_0050.png new file mode 100644 index 0000000000000000000000000000000000000000..3ee2bd4777cb0750037d873eb440cda4b4b95a59 Binary files /dev/null and b/data/textures/fabric/fabric_0050.png differ diff --git a/data/textures/fabric/fabric_0051.png b/data/textures/fabric/fabric_0051.png new file mode 100644 index 0000000000000000000000000000000000000000..13815a7332e85ecb7ab897dd1f95ca9a1a7e81d9 Binary files /dev/null and b/data/textures/fabric/fabric_0051.png differ diff --git a/data/textures/fabric/fabric_0052.png b/data/textures/fabric/fabric_0052.png new file mode 100644 index 0000000000000000000000000000000000000000..49d6cd05fabe85f8b21a180fdaf89bf550c4ef78 Binary files /dev/null and b/data/textures/fabric/fabric_0052.png differ diff --git a/data/textures/fabric/fabric_0053.png b/data/textures/fabric/fabric_0053.png new file mode 100644 index 0000000000000000000000000000000000000000..3eb4c2eeec91834f25a94cdbf11507f55ca1ccaf Binary files /dev/null and b/data/textures/fabric/fabric_0053.png differ diff --git a/data/textures/fabric/fabric_0054.png b/data/textures/fabric/fabric_0054.png new file mode 100644 index 0000000000000000000000000000000000000000..d71c646751e00a35bd1a35f53b761e979fd3a20f Binary files /dev/null and b/data/textures/fabric/fabric_0054.png differ diff --git a/data/textures/fabric/fabric_0055.png b/data/textures/fabric/fabric_0055.png new file mode 100644 index 0000000000000000000000000000000000000000..3f7e15635a7d47b6ba4704edc85461fa477dd459 Binary files /dev/null and b/data/textures/fabric/fabric_0055.png differ diff --git a/data/textures/fabric/fabric_0056.png b/data/textures/fabric/fabric_0056.png new file mode 100644 index 0000000000000000000000000000000000000000..a702a458e660dbb96de616e3adf80f3afc527065 Binary files /dev/null and b/data/textures/fabric/fabric_0056.png differ diff --git a/data/textures/fabric/fabric_0057.png b/data/textures/fabric/fabric_0057.png new file mode 100644 index 0000000000000000000000000000000000000000..1b4dcc01d88969fd9ac15948b4e14cc70f1b9a5d Binary files /dev/null and b/data/textures/fabric/fabric_0057.png differ diff --git a/data/textures/fabric/fabric_0058.png b/data/textures/fabric/fabric_0058.png new file mode 100644 index 0000000000000000000000000000000000000000..047ebded3ff8b21eeea56dadf13a69554d638faf Binary files /dev/null and b/data/textures/fabric/fabric_0058.png differ diff --git a/data/textures/fabric/fabric_0059.png b/data/textures/fabric/fabric_0059.png new file mode 100644 index 0000000000000000000000000000000000000000..66d1e6cf3cefd516829945ad1c6654637492e43d Binary files /dev/null and b/data/textures/fabric/fabric_0059.png differ diff --git a/data/textures/fabric/fabric_0060.png b/data/textures/fabric/fabric_0060.png new file mode 100644 index 0000000000000000000000000000000000000000..4ca23148b41347b1396346d512772b030057f5f1 Binary files /dev/null and b/data/textures/fabric/fabric_0060.png differ diff --git a/data/textures/fabric/fabric_0061.png b/data/textures/fabric/fabric_0061.png new file mode 100644 index 0000000000000000000000000000000000000000..919db848b7bf9b3f16836fe3a435dd59886c1796 Binary files /dev/null and b/data/textures/fabric/fabric_0061.png differ diff --git a/data/textures/fabric/fabric_0062.png b/data/textures/fabric/fabric_0062.png new file mode 100644 index 0000000000000000000000000000000000000000..cd38862c38d905288c4a729cb1c1d4a974922dff Binary files /dev/null and b/data/textures/fabric/fabric_0062.png differ diff --git a/data/textures/fabric/fabric_0063.png b/data/textures/fabric/fabric_0063.png new file mode 100644 index 0000000000000000000000000000000000000000..1a63e3b3f3619ac404dc6d69015291a6a37c650b Binary files /dev/null and b/data/textures/fabric/fabric_0063.png differ diff --git a/data/textures/fabric/fabric_0064.png b/data/textures/fabric/fabric_0064.png new file mode 100644 index 0000000000000000000000000000000000000000..4e959c6e53e3480f8575053510c52c86baedd627 Binary files /dev/null and b/data/textures/fabric/fabric_0064.png differ diff --git a/data/textures/fabric/fabric_0065.png b/data/textures/fabric/fabric_0065.png new file mode 100644 index 0000000000000000000000000000000000000000..8a12d84787fcedd4545c9507b46b47b0e61ba5cf Binary files /dev/null and b/data/textures/fabric/fabric_0065.png differ diff --git a/data/textures/fabric/fabric_0066.png b/data/textures/fabric/fabric_0066.png new file mode 100644 index 0000000000000000000000000000000000000000..193fd4fc2823aba1cbba40ca8d945f194d7fac22 Binary files /dev/null and b/data/textures/fabric/fabric_0066.png differ diff --git a/data/textures/fabric/fabric_0067.png b/data/textures/fabric/fabric_0067.png new file mode 100644 index 0000000000000000000000000000000000000000..6d9c51772f26a444cce4b9ba1cec6e43c26438a4 Binary files /dev/null and b/data/textures/fabric/fabric_0067.png differ diff --git a/data/textures/fabric/fabric_0068.png b/data/textures/fabric/fabric_0068.png new file mode 100644 index 0000000000000000000000000000000000000000..d6c41b462f5a0cc3e4151f92000391d2648073ce Binary files /dev/null and b/data/textures/fabric/fabric_0068.png differ diff --git a/data/textures/fabric/fabric_0069.png b/data/textures/fabric/fabric_0069.png new file mode 100644 index 0000000000000000000000000000000000000000..5deba5a0c942a82b66dc105174dc0906b5295687 Binary files /dev/null and b/data/textures/fabric/fabric_0069.png differ diff --git a/data/textures/fabric/fabric_0070.png b/data/textures/fabric/fabric_0070.png new file mode 100644 index 0000000000000000000000000000000000000000..259653c62fc3d8e7d799c07df965508e12f72352 Binary files /dev/null and b/data/textures/fabric/fabric_0070.png differ diff --git a/data/textures/fabric/fabric_0071.png b/data/textures/fabric/fabric_0071.png new file mode 100644 index 0000000000000000000000000000000000000000..cfc36423581bad75d499974e3b68a44d6622e38d Binary files /dev/null and b/data/textures/fabric/fabric_0071.png differ diff --git a/data/textures/fabric/fabric_0072.png b/data/textures/fabric/fabric_0072.png new file mode 100644 index 0000000000000000000000000000000000000000..a5dcf36b678b96589315b691ac0ebe0178631414 Binary files /dev/null and b/data/textures/fabric/fabric_0072.png differ diff --git a/data/textures/fabric/fabric_0073.png b/data/textures/fabric/fabric_0073.png new file mode 100644 index 0000000000000000000000000000000000000000..453dc9448f245e62f342d211949ba681f2a0dd60 Binary files /dev/null and b/data/textures/fabric/fabric_0073.png differ diff --git a/data/textures/fabric/fabric_0074.png b/data/textures/fabric/fabric_0074.png new file mode 100644 index 0000000000000000000000000000000000000000..1676ffbd2444f119d03994a7240538686fd985cf Binary files /dev/null and b/data/textures/fabric/fabric_0074.png differ diff --git a/data/textures/fabric/fabric_0075.png b/data/textures/fabric/fabric_0075.png new file mode 100644 index 0000000000000000000000000000000000000000..1e265add4ed1076b1e5d08d55de165a671bc4bc1 Binary files /dev/null and b/data/textures/fabric/fabric_0075.png differ diff --git a/data/textures/fabric/fabric_0076.png b/data/textures/fabric/fabric_0076.png new file mode 100644 index 0000000000000000000000000000000000000000..8ddc6a5d0315ae330f7c9848096af6d715fc7d17 Binary files /dev/null and b/data/textures/fabric/fabric_0076.png differ diff --git a/data/textures/fabric/fabric_0077.png b/data/textures/fabric/fabric_0077.png new file mode 100644 index 0000000000000000000000000000000000000000..3efdc846f240f89044ab0644ceb9e005c983be73 Binary files /dev/null and b/data/textures/fabric/fabric_0077.png differ diff --git a/data/textures/fabric/fabric_0078.png b/data/textures/fabric/fabric_0078.png new file mode 100644 index 0000000000000000000000000000000000000000..a4bf6f59b651a189d10fd538f4d241176014c50d Binary files /dev/null and b/data/textures/fabric/fabric_0078.png differ diff --git a/data/textures/fabric/fabric_0079.png b/data/textures/fabric/fabric_0079.png new file mode 100644 index 0000000000000000000000000000000000000000..4184a0f0a1008e5170593a8d90771ca64ae137c9 Binary files /dev/null and b/data/textures/fabric/fabric_0079.png differ diff --git a/data/textures/fabric/fabric_0080.png b/data/textures/fabric/fabric_0080.png new file mode 100644 index 0000000000000000000000000000000000000000..b6f2f76815d39276ec0f14f38b457008300030f8 Binary files /dev/null and b/data/textures/fabric/fabric_0080.png differ diff --git a/data/textures/fabric/fabric_0081.png b/data/textures/fabric/fabric_0081.png new file mode 100644 index 0000000000000000000000000000000000000000..890584d9d758d9110059adc65b1495a0c2b1dc8f Binary files /dev/null and b/data/textures/fabric/fabric_0081.png differ diff --git a/data/textures/fabric/fabric_0082.png b/data/textures/fabric/fabric_0082.png new file mode 100644 index 0000000000000000000000000000000000000000..f26d5450c16f6b9d6cfad33ba554e7847f2d9eee Binary files /dev/null and b/data/textures/fabric/fabric_0082.png differ diff --git a/data/textures/fabric/fabric_0083.png b/data/textures/fabric/fabric_0083.png new file mode 100644 index 0000000000000000000000000000000000000000..046b891d8e3ebe2fff68e083067686c25509e6d0 Binary files /dev/null and b/data/textures/fabric/fabric_0083.png differ diff --git a/data/textures/fabric/fabric_0084.png b/data/textures/fabric/fabric_0084.png new file mode 100644 index 0000000000000000000000000000000000000000..ba5b42741a55e929ca5b3fce82b913625459e711 Binary files /dev/null and b/data/textures/fabric/fabric_0084.png differ diff --git a/data/textures/fabric/fabric_0085.png b/data/textures/fabric/fabric_0085.png new file mode 100644 index 0000000000000000000000000000000000000000..231c40993c098ef8f2e227df5e5839c9d4e07a04 Binary files /dev/null and b/data/textures/fabric/fabric_0085.png differ diff --git a/data/textures/fabric/fabric_0086.png b/data/textures/fabric/fabric_0086.png new file mode 100644 index 0000000000000000000000000000000000000000..ef4a9d630961d414af7243ea6792a172e74cda2c Binary files /dev/null and b/data/textures/fabric/fabric_0086.png differ diff --git a/data/textures/fabric/fabric_0087.png b/data/textures/fabric/fabric_0087.png new file mode 100644 index 0000000000000000000000000000000000000000..803d6f2b2373db917563369b5b569eee5ccfddcd Binary files /dev/null and b/data/textures/fabric/fabric_0087.png differ diff --git a/data/textures/fabric/fabric_0088.png b/data/textures/fabric/fabric_0088.png new file mode 100644 index 0000000000000000000000000000000000000000..0e07aa32db0e98edb932c5d5af905318a660dca3 Binary files /dev/null and b/data/textures/fabric/fabric_0088.png differ diff --git a/data/textures/fabric/fabric_0089.png b/data/textures/fabric/fabric_0089.png new file mode 100644 index 0000000000000000000000000000000000000000..ab1d8c3ae9b1b2a5ae965ad462d1506451c5f8fc Binary files /dev/null and b/data/textures/fabric/fabric_0089.png differ diff --git a/data/textures/fabric/fabric_0090.png b/data/textures/fabric/fabric_0090.png new file mode 100644 index 0000000000000000000000000000000000000000..a1e6b6d7be2e0ad6e5e94622441e769d6f9d1ba5 Binary files /dev/null and b/data/textures/fabric/fabric_0090.png differ diff --git a/data/textures/fabric/fabric_0091.png b/data/textures/fabric/fabric_0091.png new file mode 100644 index 0000000000000000000000000000000000000000..0846825abe03019448c9744f84728d82f77d4184 Binary files /dev/null and b/data/textures/fabric/fabric_0091.png differ diff --git a/data/textures/fabric/fabric_0092.png b/data/textures/fabric/fabric_0092.png new file mode 100644 index 0000000000000000000000000000000000000000..e23bd290aa27ebd0c17f6cfc31330ed5e1d0442d Binary files /dev/null and b/data/textures/fabric/fabric_0092.png differ diff --git a/data/textures/fabric/fabric_0093.png b/data/textures/fabric/fabric_0093.png new file mode 100644 index 0000000000000000000000000000000000000000..946adb6f6576760f286bee809d1c132b38032a0d Binary files /dev/null and b/data/textures/fabric/fabric_0093.png differ diff --git a/data/textures/fabric/fabric_0094.png b/data/textures/fabric/fabric_0094.png new file mode 100644 index 0000000000000000000000000000000000000000..fedc5c38924a6903e4a6753d25485473c11e9f44 Binary files /dev/null and b/data/textures/fabric/fabric_0094.png differ diff --git a/data/textures/fabric/fabric_0095.png b/data/textures/fabric/fabric_0095.png new file mode 100644 index 0000000000000000000000000000000000000000..87d056c055a03241ec16b6afeda2934fc5b51344 Binary files /dev/null and b/data/textures/fabric/fabric_0095.png differ diff --git a/data/textures/fabric/fabric_0096.png b/data/textures/fabric/fabric_0096.png new file mode 100644 index 0000000000000000000000000000000000000000..6f640b27eb6e79b004e5c72068cc3db5a57f9d41 Binary files /dev/null and b/data/textures/fabric/fabric_0096.png differ diff --git a/data/textures/fabric/fabric_0097.png b/data/textures/fabric/fabric_0097.png new file mode 100644 index 0000000000000000000000000000000000000000..b5d1313d275dd387beb069adde959735cbf6e3b6 Binary files /dev/null and b/data/textures/fabric/fabric_0097.png differ diff --git a/data/textures/fabric/fabric_0098.png b/data/textures/fabric/fabric_0098.png new file mode 100644 index 0000000000000000000000000000000000000000..c6148c362802675a7ef894a06118686f8e1ab04d Binary files /dev/null and b/data/textures/fabric/fabric_0098.png differ diff --git a/data/textures/fabric/fabric_0099.png b/data/textures/fabric/fabric_0099.png new file mode 100644 index 0000000000000000000000000000000000000000..4f89661d9a15682c3b7b6bd0dc1fe70822eeff33 Binary files /dev/null and b/data/textures/fabric/fabric_0099.png differ diff --git a/data/textures/fabric/fabric_0100.png b/data/textures/fabric/fabric_0100.png new file mode 100644 index 0000000000000000000000000000000000000000..d8e00852449ac43ecedbb78f3fd05013c5b0613d Binary files /dev/null and b/data/textures/fabric/fabric_0100.png differ diff --git a/data/textures/fabric/fabric_0101.png b/data/textures/fabric/fabric_0101.png new file mode 100644 index 0000000000000000000000000000000000000000..a8e12b72175ee13e68fff0b372c0dec439b98a55 Binary files /dev/null and b/data/textures/fabric/fabric_0101.png differ diff --git a/data/textures/fabric/fabric_0102.png b/data/textures/fabric/fabric_0102.png new file mode 100644 index 0000000000000000000000000000000000000000..8d4fd4b37e7b6c63b67f47706d2951f8b0e4f355 Binary files /dev/null and b/data/textures/fabric/fabric_0102.png differ diff --git a/data/textures/fabric/fabric_0103.png b/data/textures/fabric/fabric_0103.png new file mode 100644 index 0000000000000000000000000000000000000000..000ad15573f3c4e891df6f637b3d444c6b623d93 Binary files /dev/null and b/data/textures/fabric/fabric_0103.png differ diff --git a/data/textures/fabric/fabric_0104.png b/data/textures/fabric/fabric_0104.png new file mode 100644 index 0000000000000000000000000000000000000000..c823bacdcf2af21a32a4cc264a8a4b1cbaa8cb3c Binary files /dev/null and b/data/textures/fabric/fabric_0104.png differ diff --git a/data/textures/fabric/fabric_0105.png b/data/textures/fabric/fabric_0105.png new file mode 100644 index 0000000000000000000000000000000000000000..9c4401723b6b13bd26632b31a6de2a8e5d52a23f Binary files /dev/null and b/data/textures/fabric/fabric_0105.png differ diff --git a/data/textures/fabric/fabric_0106.png b/data/textures/fabric/fabric_0106.png new file mode 100644 index 0000000000000000000000000000000000000000..6395cff8b9fd3d490f90a554f4d7819d3dde8836 Binary files /dev/null and b/data/textures/fabric/fabric_0106.png differ diff --git a/data/textures/fabric/fabric_0107.png b/data/textures/fabric/fabric_0107.png new file mode 100644 index 0000000000000000000000000000000000000000..7b09b9eb2d6e281114f911ab12b5562dd5709037 Binary files /dev/null and b/data/textures/fabric/fabric_0107.png differ diff --git a/data/textures/fabric/fabric_0108.png b/data/textures/fabric/fabric_0108.png new file mode 100644 index 0000000000000000000000000000000000000000..f11e85e55896a7b989ccc3e54ad1df700162f561 Binary files /dev/null and b/data/textures/fabric/fabric_0108.png differ diff --git a/data/textures/fabric/fabric_0109.png b/data/textures/fabric/fabric_0109.png new file mode 100644 index 0000000000000000000000000000000000000000..fbbe8ed2f59b683929dd4bbc25953a608ddec332 Binary files /dev/null and b/data/textures/fabric/fabric_0109.png differ diff --git a/data/textures/fabric/fabric_0110.png b/data/textures/fabric/fabric_0110.png new file mode 100644 index 0000000000000000000000000000000000000000..c05c640d8b49afd6f25852cd86f1df2a5efbb285 Binary files /dev/null and b/data/textures/fabric/fabric_0110.png differ diff --git a/data/textures/fabric/fabric_0111.png b/data/textures/fabric/fabric_0111.png new file mode 100644 index 0000000000000000000000000000000000000000..45123906cde7174788b19a8d27d267767dd4ebc2 Binary files /dev/null and b/data/textures/fabric/fabric_0111.png differ diff --git a/data/textures/fabric/fabric_0112.png b/data/textures/fabric/fabric_0112.png new file mode 100644 index 0000000000000000000000000000000000000000..33034be035be4c54874917650c091fc9e43bacc8 Binary files /dev/null and b/data/textures/fabric/fabric_0112.png differ diff --git a/data/textures/fabric/fabric_0113.png b/data/textures/fabric/fabric_0113.png new file mode 100644 index 0000000000000000000000000000000000000000..9c26e2479d87a70c75c10749c4a8bf896a352efb Binary files /dev/null and b/data/textures/fabric/fabric_0113.png differ diff --git a/data/textures/fabric/fabric_0114.png b/data/textures/fabric/fabric_0114.png new file mode 100644 index 0000000000000000000000000000000000000000..f68b032f6e3ebe228cbc8d7be545d19386ad56b7 Binary files /dev/null and b/data/textures/fabric/fabric_0114.png differ diff --git a/data/textures/fabric/fabric_0115.png b/data/textures/fabric/fabric_0115.png new file mode 100644 index 0000000000000000000000000000000000000000..b5a90135d00764cd4d84ba0687fc396cf43eabdb Binary files /dev/null and b/data/textures/fabric/fabric_0115.png differ diff --git a/data/textures/fabric/fabric_0116.png b/data/textures/fabric/fabric_0116.png new file mode 100644 index 0000000000000000000000000000000000000000..c674f17bcb5cc33ab3a0a8f9303a0d149599596d Binary files /dev/null and b/data/textures/fabric/fabric_0116.png differ diff --git a/data/textures/fabric/fabric_0117.png b/data/textures/fabric/fabric_0117.png new file mode 100644 index 0000000000000000000000000000000000000000..be06f06bc0718ea6d09a51e42ff097bee735531e Binary files /dev/null and b/data/textures/fabric/fabric_0117.png differ diff --git a/data/textures/fabric/fabric_0118.png b/data/textures/fabric/fabric_0118.png new file mode 100644 index 0000000000000000000000000000000000000000..e412e869d73222af51a570cba218411f4cd51336 Binary files /dev/null and b/data/textures/fabric/fabric_0118.png differ diff --git a/data/textures/fabric/fabric_0119.png b/data/textures/fabric/fabric_0119.png new file mode 100644 index 0000000000000000000000000000000000000000..616c4b034e21e1de4ac4bbd402e129e136e4b875 Binary files /dev/null and b/data/textures/fabric/fabric_0119.png differ diff --git a/data/textures/fabric/fabric_0120.png b/data/textures/fabric/fabric_0120.png new file mode 100644 index 0000000000000000000000000000000000000000..8308e2f7f644adfdcef21ab5df1dc2bc5940f3da Binary files /dev/null and b/data/textures/fabric/fabric_0120.png differ diff --git a/data/textures/fabric/fabric_0121.png b/data/textures/fabric/fabric_0121.png new file mode 100644 index 0000000000000000000000000000000000000000..fe3e350dd3dffb3a31d16ea3312bb520f83e6f91 Binary files /dev/null and b/data/textures/fabric/fabric_0121.png differ diff --git a/data/textures/fabric/fabric_0122.png b/data/textures/fabric/fabric_0122.png new file mode 100644 index 0000000000000000000000000000000000000000..07ef23f9f7a6a1b2ed77d4a4ded1545b651feb83 Binary files /dev/null and b/data/textures/fabric/fabric_0122.png differ diff --git a/data/textures/fabric/fabric_0123.png b/data/textures/fabric/fabric_0123.png new file mode 100644 index 0000000000000000000000000000000000000000..0a4f2e1047e6121127410288b5813e847b19958f Binary files /dev/null and b/data/textures/fabric/fabric_0123.png differ diff --git a/data/textures/fabric/fabric_0124.png b/data/textures/fabric/fabric_0124.png new file mode 100644 index 0000000000000000000000000000000000000000..5aa09f6f57678dc6a2fb3bb6b30d0a16ea4030ae Binary files /dev/null and b/data/textures/fabric/fabric_0124.png differ diff --git a/data/textures/fabric/fabric_0125.png b/data/textures/fabric/fabric_0125.png new file mode 100644 index 0000000000000000000000000000000000000000..8820ef5726be23185b0c291686efd357185da024 Binary files /dev/null and b/data/textures/fabric/fabric_0125.png differ diff --git a/data/textures/fabric/fabric_0126.png b/data/textures/fabric/fabric_0126.png new file mode 100644 index 0000000000000000000000000000000000000000..25000748b748abf9fe92c804cd736a7426cb633d Binary files /dev/null and b/data/textures/fabric/fabric_0126.png differ diff --git a/data/textures/fabric/fabric_0127.png b/data/textures/fabric/fabric_0127.png new file mode 100644 index 0000000000000000000000000000000000000000..ab068d110f2908eff7ff425ca1cd5476b83c7134 Binary files /dev/null and b/data/textures/fabric/fabric_0127.png differ diff --git a/data/textures/fabric/fabric_0128.png b/data/textures/fabric/fabric_0128.png new file mode 100644 index 0000000000000000000000000000000000000000..ba4c1b2e3ac9219017fd58e2c51ef1a04b4f252e Binary files /dev/null and b/data/textures/fabric/fabric_0128.png differ diff --git a/data/textures/fabric/fabric_0129.png b/data/textures/fabric/fabric_0129.png new file mode 100644 index 0000000000000000000000000000000000000000..630a3c6a1ca2965f79a71495eb124883df930112 Binary files /dev/null and b/data/textures/fabric/fabric_0129.png differ diff --git a/data/textures/fabric/fabric_0130.png b/data/textures/fabric/fabric_0130.png new file mode 100644 index 0000000000000000000000000000000000000000..f881d5eee6a92eeac10715118162e0c3c283a7c7 Binary files /dev/null and b/data/textures/fabric/fabric_0130.png differ diff --git a/data/textures/fabric/fabric_0131.png b/data/textures/fabric/fabric_0131.png new file mode 100644 index 0000000000000000000000000000000000000000..689271107d0052904942805172b5c7ec98fea00c Binary files /dev/null and b/data/textures/fabric/fabric_0131.png differ diff --git a/data/textures/fabric/fabric_0132.png b/data/textures/fabric/fabric_0132.png new file mode 100644 index 0000000000000000000000000000000000000000..4be34da72d3266ac606159d2dcf91f5c4a167e1f Binary files /dev/null and b/data/textures/fabric/fabric_0132.png differ diff --git a/data/textures/fabric/fabric_0133.png b/data/textures/fabric/fabric_0133.png new file mode 100644 index 0000000000000000000000000000000000000000..00be5286704bf6f82dbbe657e4b6f867875a9aad Binary files /dev/null and b/data/textures/fabric/fabric_0133.png differ diff --git a/data/textures/fabric/fabric_0134.png b/data/textures/fabric/fabric_0134.png new file mode 100644 index 0000000000000000000000000000000000000000..b08139c4d8c5bb5c70875849f4760fd9bce0210a Binary files /dev/null and b/data/textures/fabric/fabric_0134.png differ diff --git a/data/textures/fabric/fabric_0135.png b/data/textures/fabric/fabric_0135.png new file mode 100644 index 0000000000000000000000000000000000000000..9cfc44ab359938886002bf13ce846a6ee0a5e240 Binary files /dev/null and b/data/textures/fabric/fabric_0135.png differ diff --git a/data/textures/fabric/fabric_0136.png b/data/textures/fabric/fabric_0136.png new file mode 100644 index 0000000000000000000000000000000000000000..38651ca83a979ae1edc171c238e8d54409b96902 Binary files /dev/null and b/data/textures/fabric/fabric_0136.png differ diff --git a/data/textures/fabric/fabric_0137.png b/data/textures/fabric/fabric_0137.png new file mode 100644 index 0000000000000000000000000000000000000000..f16934ffe9fdc23651d2fdb39e6159b0c3c0c5db Binary files /dev/null and b/data/textures/fabric/fabric_0137.png differ diff --git a/data/textures/fabric/fabric_0138.png b/data/textures/fabric/fabric_0138.png new file mode 100644 index 0000000000000000000000000000000000000000..723e28f7ac393a84b4f067d92a3fa2e451d61282 Binary files /dev/null and b/data/textures/fabric/fabric_0138.png differ diff --git a/data/textures/fabric/fabric_0139.png b/data/textures/fabric/fabric_0139.png new file mode 100644 index 0000000000000000000000000000000000000000..7a3528d6857757b582b90c6e68cbad0586bec613 Binary files /dev/null and b/data/textures/fabric/fabric_0139.png differ diff --git a/data/textures/fabric/fabric_0140.png b/data/textures/fabric/fabric_0140.png new file mode 100644 index 0000000000000000000000000000000000000000..1e2863bda6b580029af4b3cb634fc3e151e17c9a Binary files /dev/null and b/data/textures/fabric/fabric_0140.png differ diff --git a/data/textures/fabric/fabric_0141.png b/data/textures/fabric/fabric_0141.png new file mode 100644 index 0000000000000000000000000000000000000000..27e78664aa6378dc75910f6518a0b0428e9fd34b Binary files /dev/null and b/data/textures/fabric/fabric_0141.png differ diff --git a/data/textures/fabric/fabric_0142.png b/data/textures/fabric/fabric_0142.png new file mode 100644 index 0000000000000000000000000000000000000000..f6bcd146f89de755344c3bbe625a233d5bf6e491 Binary files /dev/null and b/data/textures/fabric/fabric_0142.png differ diff --git a/data/textures/fabric/fabric_0143.png b/data/textures/fabric/fabric_0143.png new file mode 100644 index 0000000000000000000000000000000000000000..0c84f455eda89d24f42836fbe97317c579f0e9e0 Binary files /dev/null and b/data/textures/fabric/fabric_0143.png differ diff --git a/data/textures/fabric/fabric_0144.png b/data/textures/fabric/fabric_0144.png new file mode 100644 index 0000000000000000000000000000000000000000..7ecafea3dce5828d848b63ce71e39ab22e5a1bc0 Binary files /dev/null and b/data/textures/fabric/fabric_0144.png differ diff --git a/data/textures/fabric/fabric_0145.png b/data/textures/fabric/fabric_0145.png new file mode 100644 index 0000000000000000000000000000000000000000..fdcbe338ecff0b14c85b1a63323d40d14e8cb118 Binary files /dev/null and b/data/textures/fabric/fabric_0145.png differ diff --git a/data/textures/fabric/fabric_0146.png b/data/textures/fabric/fabric_0146.png new file mode 100644 index 0000000000000000000000000000000000000000..140f0ecda1b457fc4471cd825b866af97ce9b3a4 Binary files /dev/null and b/data/textures/fabric/fabric_0146.png differ diff --git a/data/textures/fabric/fabric_0147.png b/data/textures/fabric/fabric_0147.png new file mode 100644 index 0000000000000000000000000000000000000000..e73f77562df2c097abf9e66480c4ea17aae9689d Binary files /dev/null and b/data/textures/fabric/fabric_0147.png differ diff --git a/data/textures/fabric/fabric_0148.png b/data/textures/fabric/fabric_0148.png new file mode 100644 index 0000000000000000000000000000000000000000..a38a4754499e67de30bf67932a5215c47afda48a Binary files /dev/null and b/data/textures/fabric/fabric_0148.png differ diff --git a/data/textures/fabric/fabric_0149.png b/data/textures/fabric/fabric_0149.png new file mode 100644 index 0000000000000000000000000000000000000000..067aa0f3fda0e405ba2c97d3daaff02d30debaee Binary files /dev/null and b/data/textures/fabric/fabric_0149.png differ diff --git a/data/textures/fabric/fabric_0150.png b/data/textures/fabric/fabric_0150.png new file mode 100644 index 0000000000000000000000000000000000000000..c0e65a883bffe04de215f2f577011f8784b463b5 Binary files /dev/null and b/data/textures/fabric/fabric_0150.png differ diff --git a/data/textures/fabric/fabric_0151.png b/data/textures/fabric/fabric_0151.png new file mode 100644 index 0000000000000000000000000000000000000000..8b138389fe9cbc7721027efd630495bfbd405895 Binary files /dev/null and b/data/textures/fabric/fabric_0151.png differ diff --git a/data/textures/fabric/fabric_0152.png b/data/textures/fabric/fabric_0152.png new file mode 100644 index 0000000000000000000000000000000000000000..a5a99515292f12ba39baeca42bd36dbde9bab9d9 Binary files /dev/null and b/data/textures/fabric/fabric_0152.png differ diff --git a/data/textures/fabric/fabric_0153.png b/data/textures/fabric/fabric_0153.png new file mode 100644 index 0000000000000000000000000000000000000000..a93d620080c63e3fd44a44b2be4a04fde0575009 Binary files /dev/null and b/data/textures/fabric/fabric_0153.png differ diff --git a/data/textures/fabric/fabric_0154.png b/data/textures/fabric/fabric_0154.png new file mode 100644 index 0000000000000000000000000000000000000000..c64de28a6d2a5caba34c9680d44e4998c98e8c8d Binary files /dev/null and b/data/textures/fabric/fabric_0154.png differ diff --git a/data/textures/fabric/fabric_0155.png b/data/textures/fabric/fabric_0155.png new file mode 100644 index 0000000000000000000000000000000000000000..95aa90ecba18de62e7b62d852442ee97914ba6e1 Binary files /dev/null and b/data/textures/fabric/fabric_0155.png differ diff --git a/data/textures/fabric/fabric_0156.png b/data/textures/fabric/fabric_0156.png new file mode 100644 index 0000000000000000000000000000000000000000..bcfe278a29ea1cc9152ed15ba86ad09b422496d1 Binary files /dev/null and b/data/textures/fabric/fabric_0156.png differ diff --git a/data/textures/fabric/fabric_0157.png b/data/textures/fabric/fabric_0157.png new file mode 100644 index 0000000000000000000000000000000000000000..f6600b8a30c5a18c91817a54085a6c0f1bb39049 Binary files /dev/null and b/data/textures/fabric/fabric_0157.png differ diff --git a/data/textures/fabric/fabric_0158.png b/data/textures/fabric/fabric_0158.png new file mode 100644 index 0000000000000000000000000000000000000000..8518ad18f3981ca6f80966e908c25060bf6c2752 Binary files /dev/null and b/data/textures/fabric/fabric_0158.png differ diff --git a/data/textures/fabric/fabric_0159.png b/data/textures/fabric/fabric_0159.png new file mode 100644 index 0000000000000000000000000000000000000000..b7fb03e5292ffb661023c498598feff45bdb5ced Binary files /dev/null and b/data/textures/fabric/fabric_0159.png differ diff --git a/data/textures/fabric/fabric_0160.png b/data/textures/fabric/fabric_0160.png new file mode 100644 index 0000000000000000000000000000000000000000..fa3666ae3180ffa6ede88da783f3b9d6cb801ce2 Binary files /dev/null and b/data/textures/fabric/fabric_0160.png differ diff --git a/data/textures/fabric/fabric_0161.png b/data/textures/fabric/fabric_0161.png new file mode 100644 index 0000000000000000000000000000000000000000..acd79be68ca0a3630ef6fce1d0afe66c2b5acb92 Binary files /dev/null and b/data/textures/fabric/fabric_0161.png differ diff --git a/data/textures/fabric/fabric_0162.png b/data/textures/fabric/fabric_0162.png new file mode 100644 index 0000000000000000000000000000000000000000..f20d3fb89e30d502f762a016b62b832b9bae453f Binary files /dev/null and b/data/textures/fabric/fabric_0162.png differ diff --git a/data/textures/fabric/fabric_0163.png b/data/textures/fabric/fabric_0163.png new file mode 100644 index 0000000000000000000000000000000000000000..f638e9f34c27f329a8df94f849f64cd5a3504444 Binary files /dev/null and b/data/textures/fabric/fabric_0163.png differ diff --git a/data/textures/fabric/fabric_0164.png b/data/textures/fabric/fabric_0164.png new file mode 100644 index 0000000000000000000000000000000000000000..dd6ef79b15e860dd28009aef8513f1b7a22702d8 Binary files /dev/null and b/data/textures/fabric/fabric_0164.png differ diff --git a/data/textures/fabric/fabric_0165.png b/data/textures/fabric/fabric_0165.png new file mode 100644 index 0000000000000000000000000000000000000000..63ffc822d21b3c8cddfd7c3174b74212469bb5c1 Binary files /dev/null and b/data/textures/fabric/fabric_0165.png differ diff --git a/data/textures/fabric/fabric_0166.png b/data/textures/fabric/fabric_0166.png new file mode 100644 index 0000000000000000000000000000000000000000..9baae87d91c291eb35148a625dff1a2b53a4a4cb Binary files /dev/null and b/data/textures/fabric/fabric_0166.png differ diff --git a/data/textures/fabric/fabric_0167.png b/data/textures/fabric/fabric_0167.png new file mode 100644 index 0000000000000000000000000000000000000000..86cbec1656ab726f3a22de600cd58509f521f56d Binary files /dev/null and b/data/textures/fabric/fabric_0167.png differ diff --git a/data/textures/fabric/fabric_0168.png b/data/textures/fabric/fabric_0168.png new file mode 100644 index 0000000000000000000000000000000000000000..4e049a9911468f07de8749eb0f672705d0e1faae Binary files /dev/null and b/data/textures/fabric/fabric_0168.png differ diff --git a/data/textures/fabric/fabric_0169.png b/data/textures/fabric/fabric_0169.png new file mode 100644 index 0000000000000000000000000000000000000000..549bac93e6bfbbfac01f59520cd12f5e60d728a8 Binary files /dev/null and b/data/textures/fabric/fabric_0169.png differ diff --git a/data/textures/fabric/fabric_0170.png b/data/textures/fabric/fabric_0170.png new file mode 100644 index 0000000000000000000000000000000000000000..2425a907d09503f377322794455249b4b1f6f070 Binary files /dev/null and b/data/textures/fabric/fabric_0170.png differ diff --git a/data/textures/fabric/fabric_0171.png b/data/textures/fabric/fabric_0171.png new file mode 100644 index 0000000000000000000000000000000000000000..b96f9f4bab9bfe3c477064e63c424563e67baf34 Binary files /dev/null and b/data/textures/fabric/fabric_0171.png differ diff --git a/data/textures/fabric/fabric_0172.png b/data/textures/fabric/fabric_0172.png new file mode 100644 index 0000000000000000000000000000000000000000..5cf376595c57ce57873f5b88c45019274a9f80b1 Binary files /dev/null and b/data/textures/fabric/fabric_0172.png differ diff --git a/data/textures/fabric/fabric_0173.png b/data/textures/fabric/fabric_0173.png new file mode 100644 index 0000000000000000000000000000000000000000..5d492644ba4de72e6da8efaa3ac0df8085eda4be Binary files /dev/null and b/data/textures/fabric/fabric_0173.png differ diff --git a/data/textures/fabric/fabric_0174.png b/data/textures/fabric/fabric_0174.png new file mode 100644 index 0000000000000000000000000000000000000000..73ae69b24fbbcf4eb5c73522593ee82115a312ac Binary files /dev/null and b/data/textures/fabric/fabric_0174.png differ diff --git a/data/textures/fabric/fabric_0175.png b/data/textures/fabric/fabric_0175.png new file mode 100644 index 0000000000000000000000000000000000000000..2867d630cfd6ab46a073b0f0a26ef58aec81656c Binary files /dev/null and b/data/textures/fabric/fabric_0175.png differ diff --git a/data/textures/fabric/fabric_0176.png b/data/textures/fabric/fabric_0176.png new file mode 100644 index 0000000000000000000000000000000000000000..a081c0a8e0c7f4f0b33a559c00eb93317bd50fd8 Binary files /dev/null and b/data/textures/fabric/fabric_0176.png differ diff --git a/data/textures/fabric/fabric_0177.png b/data/textures/fabric/fabric_0177.png new file mode 100644 index 0000000000000000000000000000000000000000..1ae8cb83d9fe20b49ac305bd0c8f95d34fe24eac Binary files /dev/null and b/data/textures/fabric/fabric_0177.png differ diff --git a/data/textures/fabric/fabric_0178.png b/data/textures/fabric/fabric_0178.png new file mode 100644 index 0000000000000000000000000000000000000000..ae9b453fe3760f9bfbcb3b892886334093096019 Binary files /dev/null and b/data/textures/fabric/fabric_0178.png differ diff --git a/data/textures/fabric/fabric_0179.png b/data/textures/fabric/fabric_0179.png new file mode 100644 index 0000000000000000000000000000000000000000..bcfebb60dbf49b8de0c3bdf3e353df02a08bbf90 Binary files /dev/null and b/data/textures/fabric/fabric_0179.png differ diff --git a/data/textures/fabric/fabric_0180.png b/data/textures/fabric/fabric_0180.png new file mode 100644 index 0000000000000000000000000000000000000000..bc8141d9bf0297fafcf75d44ecffeea9a1ea6c9f Binary files /dev/null and b/data/textures/fabric/fabric_0180.png differ diff --git a/data/textures/fabric/fabric_0181.png b/data/textures/fabric/fabric_0181.png new file mode 100644 index 0000000000000000000000000000000000000000..92bb855cf9807097fceaf2d001ce30da4eec5fd0 Binary files /dev/null and b/data/textures/fabric/fabric_0181.png differ diff --git a/data/textures/fabric/fabric_0182.png b/data/textures/fabric/fabric_0182.png new file mode 100644 index 0000000000000000000000000000000000000000..24e11f5fe1b8352e6272db40f825d3382fe72ca1 Binary files /dev/null and b/data/textures/fabric/fabric_0182.png differ diff --git a/data/textures/fabric/fabric_0183.png b/data/textures/fabric/fabric_0183.png new file mode 100644 index 0000000000000000000000000000000000000000..f83844177c3c643072b0b0f6c007a114b81c08e8 Binary files /dev/null and b/data/textures/fabric/fabric_0183.png differ diff --git a/data/textures/fabric/fabric_0184.png b/data/textures/fabric/fabric_0184.png new file mode 100644 index 0000000000000000000000000000000000000000..07ca03adfe78f6b946e0ca8f175b8aa089681625 Binary files /dev/null and b/data/textures/fabric/fabric_0184.png differ diff --git a/data/textures/fabric/fabric_0185.png b/data/textures/fabric/fabric_0185.png new file mode 100644 index 0000000000000000000000000000000000000000..e206160b9bc79a0f51fbf2c1ad8367ed0f44e9a9 Binary files /dev/null and b/data/textures/fabric/fabric_0185.png differ diff --git a/data/textures/fabric/fabric_0186.png b/data/textures/fabric/fabric_0186.png new file mode 100644 index 0000000000000000000000000000000000000000..668b50be063dd09cfbd0f734585f4f16f748b6f0 Binary files /dev/null and b/data/textures/fabric/fabric_0186.png differ diff --git a/data/textures/fabric/fabric_0187.png b/data/textures/fabric/fabric_0187.png new file mode 100644 index 0000000000000000000000000000000000000000..cce1cc49bc8a11a2b0f4d160379cd64c17c9d40a Binary files /dev/null and b/data/textures/fabric/fabric_0187.png differ diff --git a/data/textures/fabric/fabric_0188.png b/data/textures/fabric/fabric_0188.png new file mode 100644 index 0000000000000000000000000000000000000000..1d6a01555887eecd30baec9ad8a2f69daa602bcb Binary files /dev/null and b/data/textures/fabric/fabric_0188.png differ diff --git a/data/textures/fabric/fabric_0189.png b/data/textures/fabric/fabric_0189.png new file mode 100644 index 0000000000000000000000000000000000000000..e43f6573efa9430f2863d9213a417d8639ddeccc Binary files /dev/null and b/data/textures/fabric/fabric_0189.png differ diff --git a/data/textures/fabric/fabric_0190.png b/data/textures/fabric/fabric_0190.png new file mode 100644 index 0000000000000000000000000000000000000000..2e1683c770715735c979b773c3a441f75061e12a Binary files /dev/null and b/data/textures/fabric/fabric_0190.png differ diff --git a/data/textures/fabric/fabric_0191.png b/data/textures/fabric/fabric_0191.png new file mode 100644 index 0000000000000000000000000000000000000000..aa4a7ba7d8b752597c0a1bf55350ad06b6d01952 Binary files /dev/null and b/data/textures/fabric/fabric_0191.png differ diff --git a/data/textures/fabric/fabric_0192.png b/data/textures/fabric/fabric_0192.png new file mode 100644 index 0000000000000000000000000000000000000000..4c775719130b264cd59ee37e729b6258f825231e Binary files /dev/null and b/data/textures/fabric/fabric_0192.png differ diff --git a/data/textures/fabric/fabric_0193.png b/data/textures/fabric/fabric_0193.png new file mode 100644 index 0000000000000000000000000000000000000000..809e18b510ed244e6059d72b1eef8eff08190157 Binary files /dev/null and b/data/textures/fabric/fabric_0193.png differ diff --git a/data/textures/fabric/fabric_0194.png b/data/textures/fabric/fabric_0194.png new file mode 100644 index 0000000000000000000000000000000000000000..ded1f991c88f1a88a3a07e95df17eb686bcefbff Binary files /dev/null and b/data/textures/fabric/fabric_0194.png differ diff --git a/data/textures/fabric/fabric_0195.png b/data/textures/fabric/fabric_0195.png new file mode 100644 index 0000000000000000000000000000000000000000..f0193fbb43fc0a08d387f8f3c7fc2d0c26377b7c Binary files /dev/null and b/data/textures/fabric/fabric_0195.png differ diff --git a/data/textures/fabric/fabric_0196.png b/data/textures/fabric/fabric_0196.png new file mode 100644 index 0000000000000000000000000000000000000000..c1996890e2131988930ef8d31e4080f65c4a4e81 Binary files /dev/null and b/data/textures/fabric/fabric_0196.png differ diff --git a/data/textures/fabric/fabric_0197.png b/data/textures/fabric/fabric_0197.png new file mode 100644 index 0000000000000000000000000000000000000000..d397aaee41e72d818a5102897f2da1eb4ded6e5c Binary files /dev/null and b/data/textures/fabric/fabric_0197.png differ diff --git a/data/textures/fabric/fabric_0198.png b/data/textures/fabric/fabric_0198.png new file mode 100644 index 0000000000000000000000000000000000000000..a494e674294d73b0de1cbfbd7c21df3e9ad5b49b Binary files /dev/null and b/data/textures/fabric/fabric_0198.png differ diff --git a/data/textures/fabric/fabric_0199.png b/data/textures/fabric/fabric_0199.png new file mode 100644 index 0000000000000000000000000000000000000000..2ea8eb093f9d11309a6cbee7336940fa5cc31cc6 Binary files /dev/null and b/data/textures/fabric/fabric_0199.png differ diff --git a/data/textures/marble/marble_0000.png b/data/textures/marble/marble_0000.png new file mode 100644 index 0000000000000000000000000000000000000000..46630ccb67de8a84f3cfc7af308fa8520671c0d2 Binary files /dev/null and b/data/textures/marble/marble_0000.png differ diff --git a/data/textures/marble/marble_0001.png b/data/textures/marble/marble_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..d998ee9084681ce3fd572a4bf575288371d79a83 Binary files /dev/null and b/data/textures/marble/marble_0001.png differ diff --git a/data/textures/marble/marble_0002.png b/data/textures/marble/marble_0002.png new file mode 100644 index 0000000000000000000000000000000000000000..531acc6fd79991f72bd9878ab3db908b56920018 Binary files /dev/null and b/data/textures/marble/marble_0002.png differ diff --git a/data/textures/marble/marble_0003.png b/data/textures/marble/marble_0003.png new file mode 100644 index 0000000000000000000000000000000000000000..c9c2401ffba94d94c678d360048c6e80b68adb35 Binary files /dev/null and b/data/textures/marble/marble_0003.png differ diff --git a/data/textures/marble/marble_0004.png b/data/textures/marble/marble_0004.png new file mode 100644 index 0000000000000000000000000000000000000000..a73b2a0cc55ec56835a6b6e7a4acd7fec664a89c Binary files /dev/null and b/data/textures/marble/marble_0004.png differ diff --git a/data/textures/marble/marble_0005.png b/data/textures/marble/marble_0005.png new file mode 100644 index 0000000000000000000000000000000000000000..88ed8cc0e56ad2467abcabc00746f6c7d3bf57fd Binary files /dev/null and b/data/textures/marble/marble_0005.png differ diff --git a/data/textures/marble/marble_0006.png b/data/textures/marble/marble_0006.png new file mode 100644 index 0000000000000000000000000000000000000000..98d23d9f3f519a2e8c2d39b0a99363f01776efbf Binary files /dev/null and b/data/textures/marble/marble_0006.png differ diff --git a/data/textures/marble/marble_0007.png b/data/textures/marble/marble_0007.png new file mode 100644 index 0000000000000000000000000000000000000000..ae66682da0dbd260dbcd31f6b349bf6a21409dae Binary files /dev/null and b/data/textures/marble/marble_0007.png differ diff --git a/data/textures/marble/marble_0008.png b/data/textures/marble/marble_0008.png new file mode 100644 index 0000000000000000000000000000000000000000..6013df7c5c619769d548157d9edac560819ee5c7 Binary files /dev/null and b/data/textures/marble/marble_0008.png differ diff --git a/data/textures/marble/marble_0009.png b/data/textures/marble/marble_0009.png new file mode 100644 index 0000000000000000000000000000000000000000..c07f71bbfe6192e57e93d95b61acbd9bbb86a234 Binary files /dev/null and b/data/textures/marble/marble_0009.png differ diff --git a/data/textures/marble/marble_0010.png b/data/textures/marble/marble_0010.png new file mode 100644 index 0000000000000000000000000000000000000000..74446c6aef0a8a00094426d473cf15be2f66f903 Binary files /dev/null and b/data/textures/marble/marble_0010.png differ diff --git a/data/textures/marble/marble_0011.png b/data/textures/marble/marble_0011.png new file mode 100644 index 0000000000000000000000000000000000000000..7b30d076dfd83e52027ae1745dc8abfb5cebcee5 Binary files /dev/null and b/data/textures/marble/marble_0011.png differ diff --git a/data/textures/marble/marble_0012.png b/data/textures/marble/marble_0012.png new file mode 100644 index 0000000000000000000000000000000000000000..a8697efe7d9fdec9e9edecbce71e0a14f81065e1 Binary files /dev/null and b/data/textures/marble/marble_0012.png differ diff --git a/data/textures/marble/marble_0013.png b/data/textures/marble/marble_0013.png new file mode 100644 index 0000000000000000000000000000000000000000..9a432a1556d8d598d356b1365f980e5f986f7bbf Binary files /dev/null and b/data/textures/marble/marble_0013.png differ diff --git a/data/textures/marble/marble_0014.png b/data/textures/marble/marble_0014.png new file mode 100644 index 0000000000000000000000000000000000000000..86a593c518b230c84ba19bd2a865ee2e9f10f25b Binary files /dev/null and b/data/textures/marble/marble_0014.png differ diff --git a/data/textures/marble/marble_0015.png b/data/textures/marble/marble_0015.png new file mode 100644 index 0000000000000000000000000000000000000000..970fe45adcd43f8a46393dd28264d0499aaba8a1 Binary files /dev/null and b/data/textures/marble/marble_0015.png differ diff --git a/data/textures/marble/marble_0016.png b/data/textures/marble/marble_0016.png new file mode 100644 index 0000000000000000000000000000000000000000..de219cdd06e6ae461d8ab8734861715fa978671b Binary files /dev/null and b/data/textures/marble/marble_0016.png differ diff --git a/data/textures/marble/marble_0017.png b/data/textures/marble/marble_0017.png new file mode 100644 index 0000000000000000000000000000000000000000..47919a600d9edf53f7f09a94676f903f4aeff912 Binary files /dev/null and b/data/textures/marble/marble_0017.png differ diff --git a/data/textures/marble/marble_0018.png b/data/textures/marble/marble_0018.png new file mode 100644 index 0000000000000000000000000000000000000000..9e2bae7c9ecce79190447f8d8336617d4febfe09 Binary files /dev/null and b/data/textures/marble/marble_0018.png differ diff --git a/data/textures/marble/marble_0019.png b/data/textures/marble/marble_0019.png new file mode 100644 index 0000000000000000000000000000000000000000..0fae6524ac27fbdd291376916bb9a1cb3095d437 Binary files /dev/null and b/data/textures/marble/marble_0019.png differ diff --git a/data/textures/marble/marble_0020.png b/data/textures/marble/marble_0020.png new file mode 100644 index 0000000000000000000000000000000000000000..66dc22a5becea0f9fdf15175774471b7e8e63360 Binary files /dev/null and b/data/textures/marble/marble_0020.png differ diff --git a/data/textures/marble/marble_0021.png b/data/textures/marble/marble_0021.png new file mode 100644 index 0000000000000000000000000000000000000000..20c7bdc002f3c3bc1866ee783d38ec13321d1de6 Binary files /dev/null and b/data/textures/marble/marble_0021.png differ diff --git a/data/textures/marble/marble_0022.png b/data/textures/marble/marble_0022.png new file mode 100644 index 0000000000000000000000000000000000000000..13f3512a70a6b01df4c7bdc19a0f84d6d033f263 Binary files /dev/null and b/data/textures/marble/marble_0022.png differ diff --git a/data/textures/marble/marble_0023.png b/data/textures/marble/marble_0023.png new file mode 100644 index 0000000000000000000000000000000000000000..9facd243856f8df798765570cc481b2fc561b49f Binary files /dev/null and b/data/textures/marble/marble_0023.png differ diff --git a/data/textures/marble/marble_0024.png b/data/textures/marble/marble_0024.png new file mode 100644 index 0000000000000000000000000000000000000000..180086d4a1f7edf57ec983b85dc12059b1274f27 Binary files /dev/null and b/data/textures/marble/marble_0024.png differ diff --git a/data/textures/marble/marble_0025.png b/data/textures/marble/marble_0025.png new file mode 100644 index 0000000000000000000000000000000000000000..2625a96e3398e520ce905484b5cd55085691789a Binary files /dev/null and b/data/textures/marble/marble_0025.png differ diff --git a/data/textures/marble/marble_0026.png b/data/textures/marble/marble_0026.png new file mode 100644 index 0000000000000000000000000000000000000000..c536cdb8e382828051acc51694dc948ef5cdbdb1 Binary files /dev/null and b/data/textures/marble/marble_0026.png differ diff --git a/data/textures/marble/marble_0027.png b/data/textures/marble/marble_0027.png new file mode 100644 index 0000000000000000000000000000000000000000..e02a1407e0ca5bc77ccafb6ea19afb8edaeeff30 Binary files /dev/null and b/data/textures/marble/marble_0027.png differ diff --git a/data/textures/marble/marble_0028.png b/data/textures/marble/marble_0028.png new file mode 100644 index 0000000000000000000000000000000000000000..d1ae485a452f997108afdc479191d31ab0e78ac0 Binary files /dev/null and b/data/textures/marble/marble_0028.png differ diff --git a/data/textures/marble/marble_0029.png b/data/textures/marble/marble_0029.png new file mode 100644 index 0000000000000000000000000000000000000000..dd2ea4bae39748dc1db8197e41e84dcf4ac95e41 Binary files /dev/null and b/data/textures/marble/marble_0029.png differ diff --git a/data/textures/marble/marble_0030.png b/data/textures/marble/marble_0030.png new file mode 100644 index 0000000000000000000000000000000000000000..40a4be3c5d7b5d9122177e75d5ad66a8746ed4c9 Binary files /dev/null and b/data/textures/marble/marble_0030.png differ diff --git a/data/textures/marble/marble_0031.png b/data/textures/marble/marble_0031.png new file mode 100644 index 0000000000000000000000000000000000000000..c7811818f914d7ee1ae3fc00ca741fbdca08c6ff Binary files /dev/null and b/data/textures/marble/marble_0031.png differ diff --git a/data/textures/marble/marble_0032.png b/data/textures/marble/marble_0032.png new file mode 100644 index 0000000000000000000000000000000000000000..23a87dd4fad25dd5b9bfb1a2fea3ea833f68031a Binary files /dev/null and b/data/textures/marble/marble_0032.png differ diff --git a/data/textures/marble/marble_0033.png b/data/textures/marble/marble_0033.png new file mode 100644 index 0000000000000000000000000000000000000000..ac68adcc9530d26b74543b227b013c48bc97ae9b Binary files /dev/null and b/data/textures/marble/marble_0033.png differ diff --git a/data/textures/marble/marble_0034.png b/data/textures/marble/marble_0034.png new file mode 100644 index 0000000000000000000000000000000000000000..6c605dd78c887ee84fc88cb529da9c39ae43d453 Binary files /dev/null and b/data/textures/marble/marble_0034.png differ diff --git a/data/textures/marble/marble_0035.png b/data/textures/marble/marble_0035.png new file mode 100644 index 0000000000000000000000000000000000000000..0c2445b1b2ebeecd287569ab9990143dd4ba3a8d Binary files /dev/null and b/data/textures/marble/marble_0035.png differ diff --git a/data/textures/marble/marble_0036.png b/data/textures/marble/marble_0036.png new file mode 100644 index 0000000000000000000000000000000000000000..1d6f589ed44d8b24bf2a31527f33bbdc9c94b384 Binary files /dev/null and b/data/textures/marble/marble_0036.png differ diff --git a/data/textures/marble/marble_0037.png b/data/textures/marble/marble_0037.png new file mode 100644 index 0000000000000000000000000000000000000000..0e49cf65239793fec38fe7a01a067d4e48578ce4 Binary files /dev/null and b/data/textures/marble/marble_0037.png differ diff --git a/data/textures/marble/marble_0038.png b/data/textures/marble/marble_0038.png new file mode 100644 index 0000000000000000000000000000000000000000..aed2cb9b14369cf339c0a9f053585e7d238250d1 Binary files /dev/null and b/data/textures/marble/marble_0038.png differ diff --git a/data/textures/marble/marble_0039.png b/data/textures/marble/marble_0039.png new file mode 100644 index 0000000000000000000000000000000000000000..9603a7b6e08260bb28bae42b43fce0ed6f94bd28 Binary files /dev/null and b/data/textures/marble/marble_0039.png differ diff --git a/data/textures/marble/marble_0040.png b/data/textures/marble/marble_0040.png new file mode 100644 index 0000000000000000000000000000000000000000..83e46305f4318b5f1dbfd3b235897520621e5d88 Binary files /dev/null and b/data/textures/marble/marble_0040.png differ diff --git a/data/textures/marble/marble_0041.png b/data/textures/marble/marble_0041.png new file mode 100644 index 0000000000000000000000000000000000000000..be3e4021a048bed592ca79a7c8d61b1187fc8f7c Binary files /dev/null and b/data/textures/marble/marble_0041.png differ diff --git a/data/textures/marble/marble_0042.png b/data/textures/marble/marble_0042.png new file mode 100644 index 0000000000000000000000000000000000000000..2fe111633daafdf04dd57655b8a5590300db93fa Binary files /dev/null and b/data/textures/marble/marble_0042.png differ diff --git a/data/textures/marble/marble_0043.png b/data/textures/marble/marble_0043.png new file mode 100644 index 0000000000000000000000000000000000000000..2c5c5ebcae8280d1767ca393d2785607352cbd8e Binary files /dev/null and b/data/textures/marble/marble_0043.png differ diff --git a/data/textures/marble/marble_0044.png b/data/textures/marble/marble_0044.png new file mode 100644 index 0000000000000000000000000000000000000000..7e9f9b1d50b4b273a8be641255f4b300e90569e9 Binary files /dev/null and b/data/textures/marble/marble_0044.png differ diff --git a/data/textures/marble/marble_0045.png b/data/textures/marble/marble_0045.png new file mode 100644 index 0000000000000000000000000000000000000000..8a5be0d3e5a7dbfb10428a48a49a20b0fd94f359 Binary files /dev/null and b/data/textures/marble/marble_0045.png differ diff --git a/data/textures/marble/marble_0046.png b/data/textures/marble/marble_0046.png new file mode 100644 index 0000000000000000000000000000000000000000..664aa3552263d0ce032ff36a05f7fc502d7e832a Binary files /dev/null and b/data/textures/marble/marble_0046.png differ diff --git a/data/textures/marble/marble_0047.png b/data/textures/marble/marble_0047.png new file mode 100644 index 0000000000000000000000000000000000000000..1cfc0291822d2b0e3da5daa41fc82cb926bff6fc Binary files /dev/null and b/data/textures/marble/marble_0047.png differ diff --git a/data/textures/marble/marble_0048.png b/data/textures/marble/marble_0048.png new file mode 100644 index 0000000000000000000000000000000000000000..96a0f70ecf02463a6cade061b800ee32bbb4dbdd Binary files /dev/null and b/data/textures/marble/marble_0048.png differ diff --git a/data/textures/marble/marble_0049.png b/data/textures/marble/marble_0049.png new file mode 100644 index 0000000000000000000000000000000000000000..564c3795a498a09865bd38308f008ca13e4d6df3 Binary files /dev/null and b/data/textures/marble/marble_0049.png differ diff --git a/data/textures/marble/marble_0050.png b/data/textures/marble/marble_0050.png new file mode 100644 index 0000000000000000000000000000000000000000..a948452a52ee7073d57d6dcac30ae6fb5bbef08e Binary files /dev/null and b/data/textures/marble/marble_0050.png differ diff --git a/data/textures/marble/marble_0051.png b/data/textures/marble/marble_0051.png new file mode 100644 index 0000000000000000000000000000000000000000..564f5337e75f1422515d117140fb17efd8d44061 Binary files /dev/null and b/data/textures/marble/marble_0051.png differ diff --git a/data/textures/marble/marble_0052.png b/data/textures/marble/marble_0052.png new file mode 100644 index 0000000000000000000000000000000000000000..844ca429509eeb50d2b802c09edbe1278abe41e0 Binary files /dev/null and b/data/textures/marble/marble_0052.png differ diff --git a/data/textures/marble/marble_0053.png b/data/textures/marble/marble_0053.png new file mode 100644 index 0000000000000000000000000000000000000000..0aa2c9cdb167883de5d24a86affa01a0d30957e0 Binary files /dev/null and b/data/textures/marble/marble_0053.png differ diff --git a/data/textures/marble/marble_0054.png b/data/textures/marble/marble_0054.png new file mode 100644 index 0000000000000000000000000000000000000000..05aca29ea56ce1a77cd821cc19efeb755b2f59bc Binary files /dev/null and b/data/textures/marble/marble_0054.png differ diff --git a/data/textures/marble/marble_0055.png b/data/textures/marble/marble_0055.png new file mode 100644 index 0000000000000000000000000000000000000000..ceafc86732b07a2919f6c38d1f31289e8a51bcab Binary files /dev/null and b/data/textures/marble/marble_0055.png differ diff --git a/data/textures/marble/marble_0056.png b/data/textures/marble/marble_0056.png new file mode 100644 index 0000000000000000000000000000000000000000..1ac4a01228931f23f2281d04fe2cfad5dde7a242 Binary files /dev/null and b/data/textures/marble/marble_0056.png differ diff --git a/data/textures/marble/marble_0057.png b/data/textures/marble/marble_0057.png new file mode 100644 index 0000000000000000000000000000000000000000..c03e02f1a28b06e953860ee6a2415e0d3d6bc5b2 Binary files /dev/null and b/data/textures/marble/marble_0057.png differ diff --git a/data/textures/marble/marble_0058.png b/data/textures/marble/marble_0058.png new file mode 100644 index 0000000000000000000000000000000000000000..984df95a74f40d7a4d68f257477ee732ba00ecca Binary files /dev/null and b/data/textures/marble/marble_0058.png differ diff --git a/data/textures/marble/marble_0059.png b/data/textures/marble/marble_0059.png new file mode 100644 index 0000000000000000000000000000000000000000..6214299030098bc48bd0893faccaf6b39c573e15 Binary files /dev/null and b/data/textures/marble/marble_0059.png differ diff --git a/data/textures/marble/marble_0060.png b/data/textures/marble/marble_0060.png new file mode 100644 index 0000000000000000000000000000000000000000..9565ebcf4b091d90b9322e3aae7f0295dbd0b3c7 Binary files /dev/null and b/data/textures/marble/marble_0060.png differ diff --git a/data/textures/marble/marble_0061.png b/data/textures/marble/marble_0061.png new file mode 100644 index 0000000000000000000000000000000000000000..4e00498be67c506406508147a360b4389989826d Binary files /dev/null and b/data/textures/marble/marble_0061.png differ diff --git a/data/textures/marble/marble_0062.png b/data/textures/marble/marble_0062.png new file mode 100644 index 0000000000000000000000000000000000000000..21f6bd7d3cb961aec874ad2838dd18232afebcca Binary files /dev/null and b/data/textures/marble/marble_0062.png differ diff --git a/data/textures/marble/marble_0063.png b/data/textures/marble/marble_0063.png new file mode 100644 index 0000000000000000000000000000000000000000..16013c33213368eab900c8ecd2ce7ddd86174a10 Binary files /dev/null and b/data/textures/marble/marble_0063.png differ diff --git a/data/textures/marble/marble_0064.png b/data/textures/marble/marble_0064.png new file mode 100644 index 0000000000000000000000000000000000000000..c4138c0f7b081be6902cd8550b9b608bb8d46071 Binary files /dev/null and b/data/textures/marble/marble_0064.png differ diff --git a/data/textures/marble/marble_0065.png b/data/textures/marble/marble_0065.png new file mode 100644 index 0000000000000000000000000000000000000000..8118598c20b4b30d6294775658e6301cd45951a9 Binary files /dev/null and b/data/textures/marble/marble_0065.png differ diff --git a/data/textures/marble/marble_0066.png b/data/textures/marble/marble_0066.png new file mode 100644 index 0000000000000000000000000000000000000000..ac03edb16a9fe0c680be7a6bb843b09ed15dedad Binary files /dev/null and b/data/textures/marble/marble_0066.png differ diff --git a/data/textures/marble/marble_0067.png b/data/textures/marble/marble_0067.png new file mode 100644 index 0000000000000000000000000000000000000000..76cc0e727d31382f0d2d0b6280768b897303f31c Binary files /dev/null and b/data/textures/marble/marble_0067.png differ diff --git a/data/textures/marble/marble_0068.png b/data/textures/marble/marble_0068.png new file mode 100644 index 0000000000000000000000000000000000000000..a4d04711ec0055fc774b7da641906453419fb98c Binary files /dev/null and b/data/textures/marble/marble_0068.png differ diff --git a/data/textures/marble/marble_0069.png b/data/textures/marble/marble_0069.png new file mode 100644 index 0000000000000000000000000000000000000000..a0feac3d378fe190944d2f123c33ec9d853958eb Binary files /dev/null and b/data/textures/marble/marble_0069.png differ diff --git a/data/textures/marble/marble_0070.png b/data/textures/marble/marble_0070.png new file mode 100644 index 0000000000000000000000000000000000000000..643ebb137a3be5411cb1a29fc01b0ab80b43f83a Binary files /dev/null and b/data/textures/marble/marble_0070.png differ diff --git a/data/textures/marble/marble_0071.png b/data/textures/marble/marble_0071.png new file mode 100644 index 0000000000000000000000000000000000000000..734113836d30d3968ef690ab3d37f7aefdd88285 Binary files /dev/null and b/data/textures/marble/marble_0071.png differ diff --git a/data/textures/marble/marble_0072.png b/data/textures/marble/marble_0072.png new file mode 100644 index 0000000000000000000000000000000000000000..c190b6f813db64be497e7d57c8f2c4e2ff7e1bfc Binary files /dev/null and b/data/textures/marble/marble_0072.png differ diff --git a/data/textures/marble/marble_0073.png b/data/textures/marble/marble_0073.png new file mode 100644 index 0000000000000000000000000000000000000000..4f892b70495d22feaa4c100af4a648bf1c685488 Binary files /dev/null and b/data/textures/marble/marble_0073.png differ diff --git a/data/textures/marble/marble_0074.png b/data/textures/marble/marble_0074.png new file mode 100644 index 0000000000000000000000000000000000000000..b9200790e60e9e489b5a52a894d8f2eb6c1629eb Binary files /dev/null and b/data/textures/marble/marble_0074.png differ diff --git a/data/textures/marble/marble_0075.png b/data/textures/marble/marble_0075.png new file mode 100644 index 0000000000000000000000000000000000000000..a39a239817ccb5a913ceeb689c223314c1a45f1b Binary files /dev/null and b/data/textures/marble/marble_0075.png differ diff --git a/data/textures/marble/marble_0076.png b/data/textures/marble/marble_0076.png new file mode 100644 index 0000000000000000000000000000000000000000..c18db6e959347eeb909530d691df21fc4b556ba8 Binary files /dev/null and b/data/textures/marble/marble_0076.png differ diff --git a/data/textures/marble/marble_0077.png b/data/textures/marble/marble_0077.png new file mode 100644 index 0000000000000000000000000000000000000000..2ff3df571e01735ee92ccac3d77a0e2716c6ded5 Binary files /dev/null and b/data/textures/marble/marble_0077.png differ diff --git a/data/textures/marble/marble_0078.png b/data/textures/marble/marble_0078.png new file mode 100644 index 0000000000000000000000000000000000000000..0ed563a0d4695c27d2dee49dfa8b14cfbed62875 Binary files /dev/null and b/data/textures/marble/marble_0078.png differ diff --git a/data/textures/marble/marble_0079.png b/data/textures/marble/marble_0079.png new file mode 100644 index 0000000000000000000000000000000000000000..f695d8b78584f842058225ecb2187a526f9c09fa Binary files /dev/null and b/data/textures/marble/marble_0079.png differ diff --git a/data/textures/marble/marble_0080.png b/data/textures/marble/marble_0080.png new file mode 100644 index 0000000000000000000000000000000000000000..2d5f84a5db3c3e9fa8dbdac4b3ebf293abb4f168 Binary files /dev/null and b/data/textures/marble/marble_0080.png differ diff --git a/data/textures/marble/marble_0081.png b/data/textures/marble/marble_0081.png new file mode 100644 index 0000000000000000000000000000000000000000..9e6f8913d8b59695585417e9be642ec10ac6cebb Binary files /dev/null and b/data/textures/marble/marble_0081.png differ diff --git a/data/textures/marble/marble_0082.png b/data/textures/marble/marble_0082.png new file mode 100644 index 0000000000000000000000000000000000000000..63dae235c0c37dc0ee0594f4f6615b2eb77696f6 Binary files /dev/null and b/data/textures/marble/marble_0082.png differ diff --git a/data/textures/marble/marble_0083.png b/data/textures/marble/marble_0083.png new file mode 100644 index 0000000000000000000000000000000000000000..41fd8ff8a61edda69188052149c753b3ee204e3f Binary files /dev/null and b/data/textures/marble/marble_0083.png differ diff --git a/data/textures/marble/marble_0084.png b/data/textures/marble/marble_0084.png new file mode 100644 index 0000000000000000000000000000000000000000..0acbd901c24ee418314dbbad83c1b964853cfec9 Binary files /dev/null and b/data/textures/marble/marble_0084.png differ diff --git a/data/textures/marble/marble_0085.png b/data/textures/marble/marble_0085.png new file mode 100644 index 0000000000000000000000000000000000000000..8d341febb10728c36425be4ebb66eb8f07492abb Binary files /dev/null and b/data/textures/marble/marble_0085.png differ diff --git a/data/textures/marble/marble_0086.png b/data/textures/marble/marble_0086.png new file mode 100644 index 0000000000000000000000000000000000000000..827d07b743dc1fce9c4f9e9e36f920fcc9bc7ba8 Binary files /dev/null and b/data/textures/marble/marble_0086.png differ diff --git a/data/textures/marble/marble_0087.png b/data/textures/marble/marble_0087.png new file mode 100644 index 0000000000000000000000000000000000000000..f0ac4e33ecafe7503d115687d9efe048a23c4151 Binary files /dev/null and b/data/textures/marble/marble_0087.png differ diff --git a/data/textures/marble/marble_0088.png b/data/textures/marble/marble_0088.png new file mode 100644 index 0000000000000000000000000000000000000000..c61ad2c6716874b159b7986f75ce94a1ac34618e Binary files /dev/null and b/data/textures/marble/marble_0088.png differ diff --git a/data/textures/marble/marble_0089.png b/data/textures/marble/marble_0089.png new file mode 100644 index 0000000000000000000000000000000000000000..2abe574edfff71ab683c29e4839173a56c88cbea Binary files /dev/null and b/data/textures/marble/marble_0089.png differ diff --git a/data/textures/marble/marble_0090.png b/data/textures/marble/marble_0090.png new file mode 100644 index 0000000000000000000000000000000000000000..73e8409c561975f682e74e7defadeef3d306889d Binary files /dev/null and b/data/textures/marble/marble_0090.png differ diff --git a/data/textures/marble/marble_0091.png b/data/textures/marble/marble_0091.png new file mode 100644 index 0000000000000000000000000000000000000000..7ff419945fa87c65873335f1eee795308411e5b7 Binary files /dev/null and b/data/textures/marble/marble_0091.png differ diff --git a/data/textures/marble/marble_0092.png b/data/textures/marble/marble_0092.png new file mode 100644 index 0000000000000000000000000000000000000000..4d771cf6bede2ea7c0bd5bef596af446138bda8c Binary files /dev/null and b/data/textures/marble/marble_0092.png differ diff --git a/data/textures/marble/marble_0093.png b/data/textures/marble/marble_0093.png new file mode 100644 index 0000000000000000000000000000000000000000..97ccba2ac9f307db04b948e88a65f0d5b312d365 Binary files /dev/null and b/data/textures/marble/marble_0093.png differ diff --git a/data/textures/marble/marble_0094.png b/data/textures/marble/marble_0094.png new file mode 100644 index 0000000000000000000000000000000000000000..88419b394d7fb8dd28fd6df19b1a98fa18ad29a8 Binary files /dev/null and b/data/textures/marble/marble_0094.png differ diff --git a/data/textures/marble/marble_0095.png b/data/textures/marble/marble_0095.png new file mode 100644 index 0000000000000000000000000000000000000000..f074f3683ae901d44dbf4fd1380dc7c0cafb8ce9 Binary files /dev/null and b/data/textures/marble/marble_0095.png differ diff --git a/data/textures/marble/marble_0096.png b/data/textures/marble/marble_0096.png new file mode 100644 index 0000000000000000000000000000000000000000..7b2bedec78ac99a3209ec82c947e9d6841443f07 Binary files /dev/null and b/data/textures/marble/marble_0096.png differ diff --git a/data/textures/marble/marble_0097.png b/data/textures/marble/marble_0097.png new file mode 100644 index 0000000000000000000000000000000000000000..c09b80caab550d8dd618fcc0744c81d6b751bee3 Binary files /dev/null and b/data/textures/marble/marble_0097.png differ diff --git a/data/textures/marble/marble_0098.png b/data/textures/marble/marble_0098.png new file mode 100644 index 0000000000000000000000000000000000000000..23c787d2bebd4046a85b1631fd150be91d396f79 Binary files /dev/null and b/data/textures/marble/marble_0098.png differ diff --git a/data/textures/marble/marble_0099.png b/data/textures/marble/marble_0099.png new file mode 100644 index 0000000000000000000000000000000000000000..929e08a8200e483d4b3641a65bf66849893dd08f Binary files /dev/null and b/data/textures/marble/marble_0099.png differ diff --git a/data/textures/marble/marble_0100.png b/data/textures/marble/marble_0100.png new file mode 100644 index 0000000000000000000000000000000000000000..58d06fb4a49e25aa850753b215a3ed823276e607 Binary files /dev/null and b/data/textures/marble/marble_0100.png differ diff --git a/data/textures/marble/marble_0101.png b/data/textures/marble/marble_0101.png new file mode 100644 index 0000000000000000000000000000000000000000..7d8c9a6ba501e6320b7733fc2398a6ddee2aee09 Binary files /dev/null and b/data/textures/marble/marble_0101.png differ diff --git a/data/textures/marble/marble_0102.png b/data/textures/marble/marble_0102.png new file mode 100644 index 0000000000000000000000000000000000000000..3e3b6d674f3cecde75caea11e8857deb884f571a Binary files /dev/null and b/data/textures/marble/marble_0102.png differ diff --git a/data/textures/marble/marble_0103.png b/data/textures/marble/marble_0103.png new file mode 100644 index 0000000000000000000000000000000000000000..079613e2899b320c2c26690513f98a6388888a60 Binary files /dev/null and b/data/textures/marble/marble_0103.png differ diff --git a/data/textures/marble/marble_0104.png b/data/textures/marble/marble_0104.png new file mode 100644 index 0000000000000000000000000000000000000000..0d84f92aeed9bcbae060006f93d052d686c3815c Binary files /dev/null and b/data/textures/marble/marble_0104.png differ diff --git a/data/textures/marble/marble_0105.png b/data/textures/marble/marble_0105.png new file mode 100644 index 0000000000000000000000000000000000000000..36177945787291986f968a3dbed9f0fc06a09dbe Binary files /dev/null and b/data/textures/marble/marble_0105.png differ diff --git a/data/textures/marble/marble_0106.png b/data/textures/marble/marble_0106.png new file mode 100644 index 0000000000000000000000000000000000000000..33a8b6e4d22a3cc01c8de497f5d17ce9714539dc Binary files /dev/null and b/data/textures/marble/marble_0106.png differ diff --git a/data/textures/marble/marble_0107.png b/data/textures/marble/marble_0107.png new file mode 100644 index 0000000000000000000000000000000000000000..7f2a736779d5d5aadc7352c336f1dea81f7f0e16 Binary files /dev/null and b/data/textures/marble/marble_0107.png differ diff --git a/data/textures/marble/marble_0108.png b/data/textures/marble/marble_0108.png new file mode 100644 index 0000000000000000000000000000000000000000..72dcb86c46c7c2899c4193b4b913a118f245b8f6 Binary files /dev/null and b/data/textures/marble/marble_0108.png differ diff --git a/data/textures/marble/marble_0109.png b/data/textures/marble/marble_0109.png new file mode 100644 index 0000000000000000000000000000000000000000..534798371ff7aaaf53992919a2f78046f2a85472 Binary files /dev/null and b/data/textures/marble/marble_0109.png differ diff --git a/data/textures/marble/marble_0110.png b/data/textures/marble/marble_0110.png new file mode 100644 index 0000000000000000000000000000000000000000..5dac3ff00c0dec57d35c84f4131e5fad7c1889de Binary files /dev/null and b/data/textures/marble/marble_0110.png differ diff --git a/data/textures/marble/marble_0111.png b/data/textures/marble/marble_0111.png new file mode 100644 index 0000000000000000000000000000000000000000..711b376060fbaf8eef410005758d90c33569689a Binary files /dev/null and b/data/textures/marble/marble_0111.png differ diff --git a/data/textures/marble/marble_0112.png b/data/textures/marble/marble_0112.png new file mode 100644 index 0000000000000000000000000000000000000000..e1281dd2dcbf286cdb307b3f9d382da1f989f3af Binary files /dev/null and b/data/textures/marble/marble_0112.png differ diff --git a/data/textures/marble/marble_0113.png b/data/textures/marble/marble_0113.png new file mode 100644 index 0000000000000000000000000000000000000000..50629b1fd5fbdba94a1b7088fe4129023af457f5 Binary files /dev/null and b/data/textures/marble/marble_0113.png differ diff --git a/data/textures/marble/marble_0114.png b/data/textures/marble/marble_0114.png new file mode 100644 index 0000000000000000000000000000000000000000..993444d6992c6f5ee7a119c5b904f93698381a75 Binary files /dev/null and b/data/textures/marble/marble_0114.png differ diff --git a/data/textures/marble/marble_0115.png b/data/textures/marble/marble_0115.png new file mode 100644 index 0000000000000000000000000000000000000000..0b93b07953fd16fb98e54b7a107f41329df346f3 Binary files /dev/null and b/data/textures/marble/marble_0115.png differ diff --git a/data/textures/marble/marble_0116.png b/data/textures/marble/marble_0116.png new file mode 100644 index 0000000000000000000000000000000000000000..2d2345f86d37fe0831193069a93d24a349771c17 Binary files /dev/null and b/data/textures/marble/marble_0116.png differ diff --git a/data/textures/marble/marble_0117.png b/data/textures/marble/marble_0117.png new file mode 100644 index 0000000000000000000000000000000000000000..8700fb0376554c032de4d119d14a84f5e85f60e4 Binary files /dev/null and b/data/textures/marble/marble_0117.png differ diff --git a/data/textures/marble/marble_0118.png b/data/textures/marble/marble_0118.png new file mode 100644 index 0000000000000000000000000000000000000000..1c466c2f61a605b5df4a5c846fae3d2493b7090d Binary files /dev/null and b/data/textures/marble/marble_0118.png differ diff --git a/data/textures/marble/marble_0119.png b/data/textures/marble/marble_0119.png new file mode 100644 index 0000000000000000000000000000000000000000..a7daf61485285292559ff0628a3acf936e4ef183 Binary files /dev/null and b/data/textures/marble/marble_0119.png differ diff --git a/data/textures/marble/marble_0120.png b/data/textures/marble/marble_0120.png new file mode 100644 index 0000000000000000000000000000000000000000..c64d6b810aa13472bd0e563a3a2dcb4d16cabd93 Binary files /dev/null and b/data/textures/marble/marble_0120.png differ diff --git a/data/textures/marble/marble_0121.png b/data/textures/marble/marble_0121.png new file mode 100644 index 0000000000000000000000000000000000000000..563e46c2f28ede8112c2d2f9c38a1494bd2a90ef Binary files /dev/null and b/data/textures/marble/marble_0121.png differ diff --git a/data/textures/marble/marble_0122.png b/data/textures/marble/marble_0122.png new file mode 100644 index 0000000000000000000000000000000000000000..d70472454bf74435b6de55c4f03922987c6a6b53 Binary files /dev/null and b/data/textures/marble/marble_0122.png differ diff --git a/data/textures/marble/marble_0123.png b/data/textures/marble/marble_0123.png new file mode 100644 index 0000000000000000000000000000000000000000..93cf7e1a25871137131e442a4fc5674160e754c3 Binary files /dev/null and b/data/textures/marble/marble_0123.png differ diff --git a/data/textures/marble/marble_0124.png b/data/textures/marble/marble_0124.png new file mode 100644 index 0000000000000000000000000000000000000000..e56c9752f9e3654c9287eedef8118e6c5c85b8bd Binary files /dev/null and b/data/textures/marble/marble_0124.png differ diff --git a/data/textures/marble/marble_0125.png b/data/textures/marble/marble_0125.png new file mode 100644 index 0000000000000000000000000000000000000000..3a5dff4464edf1aae8e4f6f14d45661e4f0e9d4f Binary files /dev/null and b/data/textures/marble/marble_0125.png differ diff --git a/data/textures/marble/marble_0126.png b/data/textures/marble/marble_0126.png new file mode 100644 index 0000000000000000000000000000000000000000..9cc2caef635495c1ba18562e63974ee2151cfd40 Binary files /dev/null and b/data/textures/marble/marble_0126.png differ diff --git a/data/textures/marble/marble_0127.png b/data/textures/marble/marble_0127.png new file mode 100644 index 0000000000000000000000000000000000000000..fb5f634eb6b38d973ffda5a5757434d64241df13 Binary files /dev/null and b/data/textures/marble/marble_0127.png differ diff --git a/data/textures/marble/marble_0128.png b/data/textures/marble/marble_0128.png new file mode 100644 index 0000000000000000000000000000000000000000..813b0de49555ada05caf84bb3b36d7c19d83e79b Binary files /dev/null and b/data/textures/marble/marble_0128.png differ diff --git a/data/textures/marble/marble_0129.png b/data/textures/marble/marble_0129.png new file mode 100644 index 0000000000000000000000000000000000000000..9f5e28e83347de2a58e43f33cfcd1bb5c5d42ad0 Binary files /dev/null and b/data/textures/marble/marble_0129.png differ diff --git a/data/textures/marble/marble_0130.png b/data/textures/marble/marble_0130.png new file mode 100644 index 0000000000000000000000000000000000000000..87ab9bec21541234b6c11591d19f3148cade69ec Binary files /dev/null and b/data/textures/marble/marble_0130.png differ diff --git a/data/textures/marble/marble_0131.png b/data/textures/marble/marble_0131.png new file mode 100644 index 0000000000000000000000000000000000000000..001afb426e35203248d476238a033b17b2c2346a Binary files /dev/null and b/data/textures/marble/marble_0131.png differ diff --git a/data/textures/marble/marble_0132.png b/data/textures/marble/marble_0132.png new file mode 100644 index 0000000000000000000000000000000000000000..ee7320b890b0bc1a2b9776fe245cf9b504f45389 Binary files /dev/null and b/data/textures/marble/marble_0132.png differ diff --git a/data/textures/marble/marble_0133.png b/data/textures/marble/marble_0133.png new file mode 100644 index 0000000000000000000000000000000000000000..7b4a58e783a9b01a051accc3c2b8ad20aa95c80d Binary files /dev/null and b/data/textures/marble/marble_0133.png differ diff --git a/data/textures/marble/marble_0134.png b/data/textures/marble/marble_0134.png new file mode 100644 index 0000000000000000000000000000000000000000..52bdb9845be30714651c9d9d8559565a017c2b7d Binary files /dev/null and b/data/textures/marble/marble_0134.png differ diff --git a/data/textures/marble/marble_0135.png b/data/textures/marble/marble_0135.png new file mode 100644 index 0000000000000000000000000000000000000000..bff34a39dbdf1dc68965b5ba07579f9ca6b1c63b Binary files /dev/null and b/data/textures/marble/marble_0135.png differ diff --git a/data/textures/marble/marble_0136.png b/data/textures/marble/marble_0136.png new file mode 100644 index 0000000000000000000000000000000000000000..982bafd8e8c48ce26c90345f64a6a9ae6d22a34f Binary files /dev/null and b/data/textures/marble/marble_0136.png differ diff --git a/data/textures/marble/marble_0137.png b/data/textures/marble/marble_0137.png new file mode 100644 index 0000000000000000000000000000000000000000..29583151901eae602910f2f0b77d5257a7c52a0e Binary files /dev/null and b/data/textures/marble/marble_0137.png differ diff --git a/data/textures/marble/marble_0138.png b/data/textures/marble/marble_0138.png new file mode 100644 index 0000000000000000000000000000000000000000..366dc6c3bde36b6dea5a13e6b59f6cb078083142 Binary files /dev/null and b/data/textures/marble/marble_0138.png differ diff --git a/data/textures/marble/marble_0139.png b/data/textures/marble/marble_0139.png new file mode 100644 index 0000000000000000000000000000000000000000..20012374f37d2c5d00ff9188511947695ab02516 Binary files /dev/null and b/data/textures/marble/marble_0139.png differ diff --git a/data/textures/marble/marble_0140.png b/data/textures/marble/marble_0140.png new file mode 100644 index 0000000000000000000000000000000000000000..607395faf200f66b54a601d4cd843340b8f75d8f Binary files /dev/null and b/data/textures/marble/marble_0140.png differ diff --git a/data/textures/marble/marble_0141.png b/data/textures/marble/marble_0141.png new file mode 100644 index 0000000000000000000000000000000000000000..ad0c4ea7f369c3710174d88112a6c7ed216525cc Binary files /dev/null and b/data/textures/marble/marble_0141.png differ diff --git a/data/textures/marble/marble_0142.png b/data/textures/marble/marble_0142.png new file mode 100644 index 0000000000000000000000000000000000000000..d7a72b77d2a4b4211bf462b029422443393506b2 Binary files /dev/null and b/data/textures/marble/marble_0142.png differ diff --git a/data/textures/marble/marble_0143.png b/data/textures/marble/marble_0143.png new file mode 100644 index 0000000000000000000000000000000000000000..7c00e2e1f27582029a8e3d9e6f66b8020715e1f3 Binary files /dev/null and b/data/textures/marble/marble_0143.png differ diff --git a/data/textures/marble/marble_0144.png b/data/textures/marble/marble_0144.png new file mode 100644 index 0000000000000000000000000000000000000000..45594ea554df8ffa8ea1db2a9b580c376b08961c Binary files /dev/null and b/data/textures/marble/marble_0144.png differ diff --git a/data/textures/marble/marble_0145.png b/data/textures/marble/marble_0145.png new file mode 100644 index 0000000000000000000000000000000000000000..5c163cfc86df7d88cf42334df78dbd845fd7dd53 Binary files /dev/null and b/data/textures/marble/marble_0145.png differ diff --git a/data/textures/marble/marble_0146.png b/data/textures/marble/marble_0146.png new file mode 100644 index 0000000000000000000000000000000000000000..ca58d904197f0aa7f30a4d87dea337e90a92b4e0 Binary files /dev/null and b/data/textures/marble/marble_0146.png differ diff --git a/data/textures/marble/marble_0147.png b/data/textures/marble/marble_0147.png new file mode 100644 index 0000000000000000000000000000000000000000..ebdc53a595bec7985ab949fd214d24a5a9766b3c Binary files /dev/null and b/data/textures/marble/marble_0147.png differ diff --git a/data/textures/marble/marble_0148.png b/data/textures/marble/marble_0148.png new file mode 100644 index 0000000000000000000000000000000000000000..e5567f480a44453fda78069cf990c205fa9a1273 Binary files /dev/null and b/data/textures/marble/marble_0148.png differ diff --git a/data/textures/marble/marble_0149.png b/data/textures/marble/marble_0149.png new file mode 100644 index 0000000000000000000000000000000000000000..92866370af14be780907539cd54a7f9acf658553 Binary files /dev/null and b/data/textures/marble/marble_0149.png differ diff --git a/data/textures/marble/marble_0150.png b/data/textures/marble/marble_0150.png new file mode 100644 index 0000000000000000000000000000000000000000..c57d8b2bbc23e96266aab7f4e9669d0e3c6ff223 Binary files /dev/null and b/data/textures/marble/marble_0150.png differ diff --git a/data/textures/marble/marble_0151.png b/data/textures/marble/marble_0151.png new file mode 100644 index 0000000000000000000000000000000000000000..94186a30d9f57e1de3a75229c06ad106353404e4 Binary files /dev/null and b/data/textures/marble/marble_0151.png differ diff --git a/data/textures/marble/marble_0152.png b/data/textures/marble/marble_0152.png new file mode 100644 index 0000000000000000000000000000000000000000..f6aa13fd22c5e4281d3024d312c34f2d29dabc6c Binary files /dev/null and b/data/textures/marble/marble_0152.png differ diff --git a/data/textures/marble/marble_0153.png b/data/textures/marble/marble_0153.png new file mode 100644 index 0000000000000000000000000000000000000000..d4a2e4123b3bbf1996a582c9952d9039805acd4c Binary files /dev/null and b/data/textures/marble/marble_0153.png differ diff --git a/data/textures/marble/marble_0154.png b/data/textures/marble/marble_0154.png new file mode 100644 index 0000000000000000000000000000000000000000..18f7f535f5dcb241896fea151e844a722da56e6d Binary files /dev/null and b/data/textures/marble/marble_0154.png differ diff --git a/data/textures/marble/marble_0155.png b/data/textures/marble/marble_0155.png new file mode 100644 index 0000000000000000000000000000000000000000..71650c77243157dee983d1c40872dc9d644b5f62 Binary files /dev/null and b/data/textures/marble/marble_0155.png differ diff --git a/data/textures/marble/marble_0156.png b/data/textures/marble/marble_0156.png new file mode 100644 index 0000000000000000000000000000000000000000..8631f2f7dfaac29014298be6d6c29d5ce26af7bb Binary files /dev/null and b/data/textures/marble/marble_0156.png differ diff --git a/data/textures/marble/marble_0157.png b/data/textures/marble/marble_0157.png new file mode 100644 index 0000000000000000000000000000000000000000..7ee8aeefd1ff14400ae762f0452dae884a7a05e5 Binary files /dev/null and b/data/textures/marble/marble_0157.png differ diff --git a/data/textures/marble/marble_0158.png b/data/textures/marble/marble_0158.png new file mode 100644 index 0000000000000000000000000000000000000000..b848262a13d34a884d547f0fb3eec6e6d32779c5 Binary files /dev/null and b/data/textures/marble/marble_0158.png differ diff --git a/data/textures/marble/marble_0159.png b/data/textures/marble/marble_0159.png new file mode 100644 index 0000000000000000000000000000000000000000..eb7505926f26f43e0a363a41cb543d6e0e40485e Binary files /dev/null and b/data/textures/marble/marble_0159.png differ diff --git a/data/textures/marble/marble_0160.png b/data/textures/marble/marble_0160.png new file mode 100644 index 0000000000000000000000000000000000000000..95311ad651ff040c867633f23dff17a2bd87920e Binary files /dev/null and b/data/textures/marble/marble_0160.png differ diff --git a/data/textures/marble/marble_0161.png b/data/textures/marble/marble_0161.png new file mode 100644 index 0000000000000000000000000000000000000000..aedcb4e44e24eb341059b2383aa8c77b54950d31 Binary files /dev/null and b/data/textures/marble/marble_0161.png differ diff --git a/data/textures/marble/marble_0162.png b/data/textures/marble/marble_0162.png new file mode 100644 index 0000000000000000000000000000000000000000..7165a0efcc577068ed8495f76b05e2f66ba38a81 Binary files /dev/null and b/data/textures/marble/marble_0162.png differ diff --git a/data/textures/marble/marble_0163.png b/data/textures/marble/marble_0163.png new file mode 100644 index 0000000000000000000000000000000000000000..d769992f27e69348d8af6bea07375d2fb78912ba Binary files /dev/null and b/data/textures/marble/marble_0163.png differ diff --git a/data/textures/marble/marble_0164.png b/data/textures/marble/marble_0164.png new file mode 100644 index 0000000000000000000000000000000000000000..6efc3381c1291bbfab6957da9002fa004e90cf9c Binary files /dev/null and b/data/textures/marble/marble_0164.png differ diff --git a/data/textures/marble/marble_0165.png b/data/textures/marble/marble_0165.png new file mode 100644 index 0000000000000000000000000000000000000000..81035cd4f968c3cd0562d8f2706854cde0b26485 Binary files /dev/null and b/data/textures/marble/marble_0165.png differ diff --git a/data/textures/marble/marble_0166.png b/data/textures/marble/marble_0166.png new file mode 100644 index 0000000000000000000000000000000000000000..f62d29b28568f93af253cc44c210fd157ee558b8 Binary files /dev/null and b/data/textures/marble/marble_0166.png differ diff --git a/data/textures/marble/marble_0167.png b/data/textures/marble/marble_0167.png new file mode 100644 index 0000000000000000000000000000000000000000..14c710ea511d2638a9ccc4f2ab838cc63c1470fd Binary files /dev/null and b/data/textures/marble/marble_0167.png differ diff --git a/data/textures/marble/marble_0168.png b/data/textures/marble/marble_0168.png new file mode 100644 index 0000000000000000000000000000000000000000..e0cc41c48ccefd03de6f73b8afce6a11f5d0855f Binary files /dev/null and b/data/textures/marble/marble_0168.png differ diff --git a/data/textures/marble/marble_0169.png b/data/textures/marble/marble_0169.png new file mode 100644 index 0000000000000000000000000000000000000000..68abb40cf3fed279b8d3e0290f6be3fcf7e9b3f7 Binary files /dev/null and b/data/textures/marble/marble_0169.png differ diff --git a/data/textures/marble/marble_0170.png b/data/textures/marble/marble_0170.png new file mode 100644 index 0000000000000000000000000000000000000000..0f45bf2c8aa56211a6df3926d5a1126728c353fd Binary files /dev/null and b/data/textures/marble/marble_0170.png differ diff --git a/data/textures/marble/marble_0171.png b/data/textures/marble/marble_0171.png new file mode 100644 index 0000000000000000000000000000000000000000..b164024a2bbffa676d4f1b2385a10c4991b0598f Binary files /dev/null and b/data/textures/marble/marble_0171.png differ diff --git a/data/textures/marble/marble_0172.png b/data/textures/marble/marble_0172.png new file mode 100644 index 0000000000000000000000000000000000000000..bbc4f240679bb9cabcc4517af232bdcb22da024d Binary files /dev/null and b/data/textures/marble/marble_0172.png differ diff --git a/data/textures/marble/marble_0173.png b/data/textures/marble/marble_0173.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0b4810f8d2c7e209a25081eac32b6ab4526334 Binary files /dev/null and b/data/textures/marble/marble_0173.png differ diff --git a/data/textures/marble/marble_0174.png b/data/textures/marble/marble_0174.png new file mode 100644 index 0000000000000000000000000000000000000000..4c607e8626c4d102d6b74f08609ad31e724c4b0d Binary files /dev/null and b/data/textures/marble/marble_0174.png differ diff --git a/data/textures/marble/marble_0175.png b/data/textures/marble/marble_0175.png new file mode 100644 index 0000000000000000000000000000000000000000..8d0c301a4f5f3b3e87c21bf199856878d402ee91 Binary files /dev/null and b/data/textures/marble/marble_0175.png differ diff --git a/data/textures/marble/marble_0176.png b/data/textures/marble/marble_0176.png new file mode 100644 index 0000000000000000000000000000000000000000..9173e53d69f59c2f290e67d3ec16d0c4cd1121af Binary files /dev/null and b/data/textures/marble/marble_0176.png differ diff --git a/data/textures/marble/marble_0177.png b/data/textures/marble/marble_0177.png new file mode 100644 index 0000000000000000000000000000000000000000..c01161b3e50829e60fdd83aa41a9d339eeb736a4 Binary files /dev/null and b/data/textures/marble/marble_0177.png differ diff --git a/data/textures/marble/marble_0178.png b/data/textures/marble/marble_0178.png new file mode 100644 index 0000000000000000000000000000000000000000..5ce9b93e002390db3d261c621ee42431a34fc12b Binary files /dev/null and b/data/textures/marble/marble_0178.png differ diff --git a/data/textures/marble/marble_0179.png b/data/textures/marble/marble_0179.png new file mode 100644 index 0000000000000000000000000000000000000000..b7b1f9f687234df64b9075c4e1d98a6679d31b6e Binary files /dev/null and b/data/textures/marble/marble_0179.png differ diff --git a/data/textures/marble/marble_0180.png b/data/textures/marble/marble_0180.png new file mode 100644 index 0000000000000000000000000000000000000000..117ba3a59bc3388e50960f3834f47b12b2df2678 Binary files /dev/null and b/data/textures/marble/marble_0180.png differ diff --git a/data/textures/marble/marble_0181.png b/data/textures/marble/marble_0181.png new file mode 100644 index 0000000000000000000000000000000000000000..3c035e3bbd30112327700b6b985a33af16d433dc Binary files /dev/null and b/data/textures/marble/marble_0181.png differ diff --git a/data/textures/marble/marble_0182.png b/data/textures/marble/marble_0182.png new file mode 100644 index 0000000000000000000000000000000000000000..8c4482072a49740d0042b04778754052d2881701 Binary files /dev/null and b/data/textures/marble/marble_0182.png differ diff --git a/data/textures/marble/marble_0183.png b/data/textures/marble/marble_0183.png new file mode 100644 index 0000000000000000000000000000000000000000..e98c3829fe8d9bf02fdffcde7813334ab6d310e5 Binary files /dev/null and b/data/textures/marble/marble_0183.png differ diff --git a/data/textures/marble/marble_0184.png b/data/textures/marble/marble_0184.png new file mode 100644 index 0000000000000000000000000000000000000000..3a872ee595c357513837053224e4a0dbd6bc8e71 Binary files /dev/null and b/data/textures/marble/marble_0184.png differ diff --git a/data/textures/marble/marble_0185.png b/data/textures/marble/marble_0185.png new file mode 100644 index 0000000000000000000000000000000000000000..2b3444c19cb7a30ff8757598aea6bccce0dd7b24 Binary files /dev/null and b/data/textures/marble/marble_0185.png differ diff --git a/data/textures/marble/marble_0186.png b/data/textures/marble/marble_0186.png new file mode 100644 index 0000000000000000000000000000000000000000..12ae12b4d52d8d351c28fdac0a0f7951a0883128 Binary files /dev/null and b/data/textures/marble/marble_0186.png differ diff --git a/data/textures/marble/marble_0187.png b/data/textures/marble/marble_0187.png new file mode 100644 index 0000000000000000000000000000000000000000..6ea1b5bd8cf463339aa346d785cb30b75e47e835 Binary files /dev/null and b/data/textures/marble/marble_0187.png differ diff --git a/data/textures/marble/marble_0188.png b/data/textures/marble/marble_0188.png new file mode 100644 index 0000000000000000000000000000000000000000..7d5a3c37c625bca5a2ab8775c80d75ebac44a134 Binary files /dev/null and b/data/textures/marble/marble_0188.png differ diff --git a/data/textures/marble/marble_0189.png b/data/textures/marble/marble_0189.png new file mode 100644 index 0000000000000000000000000000000000000000..7065842b04d187be530dfbe7b768f369e68af698 Binary files /dev/null and b/data/textures/marble/marble_0189.png differ diff --git a/data/textures/marble/marble_0190.png b/data/textures/marble/marble_0190.png new file mode 100644 index 0000000000000000000000000000000000000000..e8bbcde772d9c88132e03202acfde3c146d0b933 Binary files /dev/null and b/data/textures/marble/marble_0190.png differ diff --git a/data/textures/marble/marble_0191.png b/data/textures/marble/marble_0191.png new file mode 100644 index 0000000000000000000000000000000000000000..2877c8a2708bd70020659e28c61cd1173f03193c Binary files /dev/null and b/data/textures/marble/marble_0191.png differ diff --git a/data/textures/marble/marble_0192.png b/data/textures/marble/marble_0192.png new file mode 100644 index 0000000000000000000000000000000000000000..99ebd1e7f27fc872b80f7a4953e7fc4e7831d5b9 Binary files /dev/null and b/data/textures/marble/marble_0192.png differ diff --git a/data/textures/marble/marble_0193.png b/data/textures/marble/marble_0193.png new file mode 100644 index 0000000000000000000000000000000000000000..9d4ec20ff9f1c6a3a902c2481dfdb4217716b31e Binary files /dev/null and b/data/textures/marble/marble_0193.png differ diff --git a/data/textures/marble/marble_0194.png b/data/textures/marble/marble_0194.png new file mode 100644 index 0000000000000000000000000000000000000000..8f4cc6228f2ab3e6acf2f7666687e3d5db1dc378 Binary files /dev/null and b/data/textures/marble/marble_0194.png differ diff --git a/data/textures/marble/marble_0195.png b/data/textures/marble/marble_0195.png new file mode 100644 index 0000000000000000000000000000000000000000..22eb34a0b33491399d5232f614e90cb75bbebce4 Binary files /dev/null and b/data/textures/marble/marble_0195.png differ diff --git a/data/textures/marble/marble_0196.png b/data/textures/marble/marble_0196.png new file mode 100644 index 0000000000000000000000000000000000000000..121a27dacd8426550b6a353aae7d249f749dac71 Binary files /dev/null and b/data/textures/marble/marble_0196.png differ diff --git a/data/textures/marble/marble_0197.png b/data/textures/marble/marble_0197.png new file mode 100644 index 0000000000000000000000000000000000000000..ca97b017587f23e897b289322a95e4f5e683836a Binary files /dev/null and b/data/textures/marble/marble_0197.png differ diff --git a/data/textures/marble/marble_0198.png b/data/textures/marble/marble_0198.png new file mode 100644 index 0000000000000000000000000000000000000000..5a1f16084acc81270a37651be2abb0979ccf83b7 Binary files /dev/null and b/data/textures/marble/marble_0198.png differ diff --git a/data/textures/marble/marble_0199.png b/data/textures/marble/marble_0199.png new file mode 100644 index 0000000000000000000000000000000000000000..f541ed507f76893eb46f524ac7196b94fe40e528 Binary files /dev/null and b/data/textures/marble/marble_0199.png differ diff --git a/data/textures/noise/noise_0000.png b/data/textures/noise/noise_0000.png new file mode 100644 index 0000000000000000000000000000000000000000..70d3678faad0c24ba360a2ffa50952a1d4e7cd38 Binary files /dev/null and b/data/textures/noise/noise_0000.png differ diff --git a/data/textures/noise/noise_0001.png b/data/textures/noise/noise_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..1700ebbbd3b93f3a371a3a9e69d3dd9ae03701b4 Binary files /dev/null and b/data/textures/noise/noise_0001.png differ diff --git a/data/textures/noise/noise_0002.png b/data/textures/noise/noise_0002.png new file mode 100644 index 0000000000000000000000000000000000000000..c2548be9f6e210666512b1c67c1c645bb41ca4f7 Binary files /dev/null and b/data/textures/noise/noise_0002.png differ diff --git a/data/textures/noise/noise_0003.png b/data/textures/noise/noise_0003.png new file mode 100644 index 0000000000000000000000000000000000000000..12a24ae081ca2b3acf7fd140e1eb28560d5b4827 Binary files /dev/null and b/data/textures/noise/noise_0003.png differ diff --git a/data/textures/noise/noise_0004.png b/data/textures/noise/noise_0004.png new file mode 100644 index 0000000000000000000000000000000000000000..e673fc2e13b2e1143b5c5cdbe1e026f503cf8137 Binary files /dev/null and b/data/textures/noise/noise_0004.png differ diff --git a/data/textures/noise/noise_0005.png b/data/textures/noise/noise_0005.png new file mode 100644 index 0000000000000000000000000000000000000000..5f13d4b0d9c8126a062bb3a46464d4febe32a261 Binary files /dev/null and b/data/textures/noise/noise_0005.png differ diff --git a/data/textures/noise/noise_0006.png b/data/textures/noise/noise_0006.png new file mode 100644 index 0000000000000000000000000000000000000000..7deccf6fe23926b8aa48096f204e6271a614e321 Binary files /dev/null and b/data/textures/noise/noise_0006.png differ diff --git a/data/textures/noise/noise_0007.png b/data/textures/noise/noise_0007.png new file mode 100644 index 0000000000000000000000000000000000000000..ddb4d5d886b75001c6a7fcfd29b9454bc32236ff Binary files /dev/null and b/data/textures/noise/noise_0007.png differ diff --git a/data/textures/noise/noise_0008.png b/data/textures/noise/noise_0008.png new file mode 100644 index 0000000000000000000000000000000000000000..e5ff0acf2bd738defff28cb31fa160cc500c4805 Binary files /dev/null and b/data/textures/noise/noise_0008.png differ diff --git a/data/textures/noise/noise_0009.png b/data/textures/noise/noise_0009.png new file mode 100644 index 0000000000000000000000000000000000000000..53484407ee6f189a74ce32d2882f8caab950562c Binary files /dev/null and b/data/textures/noise/noise_0009.png differ diff --git a/data/textures/noise/noise_0010.png b/data/textures/noise/noise_0010.png new file mode 100644 index 0000000000000000000000000000000000000000..3445147d06577d289955b9ebf5c8444c78bea40a Binary files /dev/null and b/data/textures/noise/noise_0010.png differ diff --git a/data/textures/noise/noise_0011.png b/data/textures/noise/noise_0011.png new file mode 100644 index 0000000000000000000000000000000000000000..6a2449c9ea0228df5cc23146bc528d8f472339df Binary files /dev/null and b/data/textures/noise/noise_0011.png differ diff --git a/data/textures/noise/noise_0012.png b/data/textures/noise/noise_0012.png new file mode 100644 index 0000000000000000000000000000000000000000..96743014dd74416fb7ff12aeebcf7ab11641155f Binary files /dev/null and b/data/textures/noise/noise_0012.png differ diff --git a/data/textures/noise/noise_0013.png b/data/textures/noise/noise_0013.png new file mode 100644 index 0000000000000000000000000000000000000000..f056feca7ebe6c3a4eeeebe1d4322feabad975fb Binary files /dev/null and b/data/textures/noise/noise_0013.png differ diff --git a/data/textures/noise/noise_0014.png b/data/textures/noise/noise_0014.png new file mode 100644 index 0000000000000000000000000000000000000000..0e9c8bed3747da41c1d17e5a69c9653f0969c175 Binary files /dev/null and b/data/textures/noise/noise_0014.png differ diff --git a/data/textures/noise/noise_0015.png b/data/textures/noise/noise_0015.png new file mode 100644 index 0000000000000000000000000000000000000000..80821b7a6a0c24c8b0ecbc3b75041ff597a8e62e Binary files /dev/null and b/data/textures/noise/noise_0015.png differ diff --git a/data/textures/noise/noise_0016.png b/data/textures/noise/noise_0016.png new file mode 100644 index 0000000000000000000000000000000000000000..b22c800b75f25388b9db0a16a494fd0b6a6f6e87 Binary files /dev/null and b/data/textures/noise/noise_0016.png differ diff --git a/data/textures/noise/noise_0017.png b/data/textures/noise/noise_0017.png new file mode 100644 index 0000000000000000000000000000000000000000..5b477ef7437c129006c00bdc098a06ef1560cfee Binary files /dev/null and b/data/textures/noise/noise_0017.png differ diff --git a/data/textures/noise/noise_0018.png b/data/textures/noise/noise_0018.png new file mode 100644 index 0000000000000000000000000000000000000000..cdf3e41b21cf69ed42c5ddb8f937dc3658f6f92c Binary files /dev/null and b/data/textures/noise/noise_0018.png differ diff --git a/data/textures/noise/noise_0019.png b/data/textures/noise/noise_0019.png new file mode 100644 index 0000000000000000000000000000000000000000..32d684a2a2fffb8cc4ca26f8e8217d34f21f753d Binary files /dev/null and b/data/textures/noise/noise_0019.png differ diff --git a/data/textures/noise/noise_0020.png b/data/textures/noise/noise_0020.png new file mode 100644 index 0000000000000000000000000000000000000000..e42ea978e267ba071dd1623ee3af1a0cc59e71e7 Binary files /dev/null and b/data/textures/noise/noise_0020.png differ diff --git a/data/textures/noise/noise_0021.png b/data/textures/noise/noise_0021.png new file mode 100644 index 0000000000000000000000000000000000000000..d757e942ee796cb33832d5ab4ae74528572b6bc6 Binary files /dev/null and b/data/textures/noise/noise_0021.png differ diff --git a/data/textures/noise/noise_0022.png b/data/textures/noise/noise_0022.png new file mode 100644 index 0000000000000000000000000000000000000000..7a3af37ea98753a724cccb48961456367f738e89 Binary files /dev/null and b/data/textures/noise/noise_0022.png differ diff --git a/data/textures/noise/noise_0023.png b/data/textures/noise/noise_0023.png new file mode 100644 index 0000000000000000000000000000000000000000..a450011287db8aedb7480d3daf14d94bc17b1ec4 Binary files /dev/null and b/data/textures/noise/noise_0023.png differ diff --git a/data/textures/noise/noise_0024.png b/data/textures/noise/noise_0024.png new file mode 100644 index 0000000000000000000000000000000000000000..f1aaee9da7a1443cdbf2608f0aa960315f2dfef2 Binary files /dev/null and b/data/textures/noise/noise_0024.png differ diff --git a/data/textures/noise/noise_0025.png b/data/textures/noise/noise_0025.png new file mode 100644 index 0000000000000000000000000000000000000000..50e7586f2e41302a172f1d628f92ec02d17ca297 Binary files /dev/null and b/data/textures/noise/noise_0025.png differ diff --git a/data/textures/noise/noise_0026.png b/data/textures/noise/noise_0026.png new file mode 100644 index 0000000000000000000000000000000000000000..cf7284527681f357c210ac72db082287da1b2cc4 Binary files /dev/null and b/data/textures/noise/noise_0026.png differ diff --git a/data/textures/noise/noise_0027.png b/data/textures/noise/noise_0027.png new file mode 100644 index 0000000000000000000000000000000000000000..e3ae9dcd7e53648aa9bf52bbf4800bf615981867 Binary files /dev/null and b/data/textures/noise/noise_0027.png differ diff --git a/data/textures/noise/noise_0028.png b/data/textures/noise/noise_0028.png new file mode 100644 index 0000000000000000000000000000000000000000..e4f3f80fae66790454d4281bd906a0ac3159224c Binary files /dev/null and b/data/textures/noise/noise_0028.png differ diff --git a/data/textures/noise/noise_0029.png b/data/textures/noise/noise_0029.png new file mode 100644 index 0000000000000000000000000000000000000000..8ae24a9bfd5966d5a986413193b9389df576216c Binary files /dev/null and b/data/textures/noise/noise_0029.png differ diff --git a/data/textures/noise/noise_0030.png b/data/textures/noise/noise_0030.png new file mode 100644 index 0000000000000000000000000000000000000000..961ea8b4795eac457030ebdc24066fa3ee3d0811 Binary files /dev/null and b/data/textures/noise/noise_0030.png differ diff --git a/data/textures/noise/noise_0031.png b/data/textures/noise/noise_0031.png new file mode 100644 index 0000000000000000000000000000000000000000..f1fcc85340c729e833f9380dfa23d45a24aaff75 Binary files /dev/null and b/data/textures/noise/noise_0031.png differ diff --git a/data/textures/noise/noise_0032.png b/data/textures/noise/noise_0032.png new file mode 100644 index 0000000000000000000000000000000000000000..4de4cb91ffbb7d6dad626a6a22b14c6e5c69010d Binary files /dev/null and b/data/textures/noise/noise_0032.png differ diff --git a/data/textures/noise/noise_0033.png b/data/textures/noise/noise_0033.png new file mode 100644 index 0000000000000000000000000000000000000000..1f5d4edb20761f5bcf5a68875e4e577cd6ac190c Binary files /dev/null and b/data/textures/noise/noise_0033.png differ diff --git a/data/textures/noise/noise_0034.png b/data/textures/noise/noise_0034.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68cda3fde7ddd808e16b55f6949ca0833feadc Binary files /dev/null and b/data/textures/noise/noise_0034.png differ diff --git a/data/textures/noise/noise_0035.png b/data/textures/noise/noise_0035.png new file mode 100644 index 0000000000000000000000000000000000000000..4c4f3a77d36a00e0e6ef2f908f5ac1b981af487d Binary files /dev/null and b/data/textures/noise/noise_0035.png differ diff --git a/data/textures/noise/noise_0036.png b/data/textures/noise/noise_0036.png new file mode 100644 index 0000000000000000000000000000000000000000..185ecc63ae3cde54669fe09bdfdda46effbc9a3e Binary files /dev/null and b/data/textures/noise/noise_0036.png differ diff --git a/data/textures/noise/noise_0037.png b/data/textures/noise/noise_0037.png new file mode 100644 index 0000000000000000000000000000000000000000..41e8a5817147eb87815c45eec051b2ec56d1519c Binary files /dev/null and b/data/textures/noise/noise_0037.png differ diff --git a/data/textures/noise/noise_0038.png b/data/textures/noise/noise_0038.png new file mode 100644 index 0000000000000000000000000000000000000000..4e0db3297a8c0149e2fe2165e18bac21ca889ceb Binary files /dev/null and b/data/textures/noise/noise_0038.png differ diff --git a/data/textures/noise/noise_0039.png b/data/textures/noise/noise_0039.png new file mode 100644 index 0000000000000000000000000000000000000000..b7b4668a0ea649df0b38dcde25ea532ad6217e29 Binary files /dev/null and b/data/textures/noise/noise_0039.png differ diff --git a/data/textures/noise/noise_0040.png b/data/textures/noise/noise_0040.png new file mode 100644 index 0000000000000000000000000000000000000000..77e9cecc394bd6bc3993f4be93be0f40259c6d60 Binary files /dev/null and b/data/textures/noise/noise_0040.png differ diff --git a/data/textures/noise/noise_0041.png b/data/textures/noise/noise_0041.png new file mode 100644 index 0000000000000000000000000000000000000000..07c864985e616e402fdc39bab600d0ff5f5979e5 Binary files /dev/null and b/data/textures/noise/noise_0041.png differ diff --git a/data/textures/noise/noise_0042.png b/data/textures/noise/noise_0042.png new file mode 100644 index 0000000000000000000000000000000000000000..a9963972452e14e9009078e6f4d168038b923b90 Binary files /dev/null and b/data/textures/noise/noise_0042.png differ diff --git a/data/textures/noise/noise_0043.png b/data/textures/noise/noise_0043.png new file mode 100644 index 0000000000000000000000000000000000000000..710d6d344ae1385419d6d4754678517195a03200 Binary files /dev/null and b/data/textures/noise/noise_0043.png differ diff --git a/data/textures/noise/noise_0044.png b/data/textures/noise/noise_0044.png new file mode 100644 index 0000000000000000000000000000000000000000..f5237dee89c5083cdeb1aecd89d9e8ce859b9b4a Binary files /dev/null and b/data/textures/noise/noise_0044.png differ diff --git a/data/textures/noise/noise_0045.png b/data/textures/noise/noise_0045.png new file mode 100644 index 0000000000000000000000000000000000000000..aac79809a0ae192d6178795d280c6a1bb5d376ac Binary files /dev/null and b/data/textures/noise/noise_0045.png differ diff --git a/data/textures/noise/noise_0046.png b/data/textures/noise/noise_0046.png new file mode 100644 index 0000000000000000000000000000000000000000..63f9bee61faa0365cdbee844b0d1e1921423c900 Binary files /dev/null and b/data/textures/noise/noise_0046.png differ diff --git a/data/textures/noise/noise_0047.png b/data/textures/noise/noise_0047.png new file mode 100644 index 0000000000000000000000000000000000000000..1b8eb66210a081a1fe87356cb11c9e422b0743a7 Binary files /dev/null and b/data/textures/noise/noise_0047.png differ diff --git a/data/textures/noise/noise_0048.png b/data/textures/noise/noise_0048.png new file mode 100644 index 0000000000000000000000000000000000000000..331f6eb1c1a90964b36fbbec719a381a3642bc95 Binary files /dev/null and b/data/textures/noise/noise_0048.png differ diff --git a/data/textures/noise/noise_0049.png b/data/textures/noise/noise_0049.png new file mode 100644 index 0000000000000000000000000000000000000000..ba998b10c1c2cb13e4d91625c2454feb4014a3cb Binary files /dev/null and b/data/textures/noise/noise_0049.png differ diff --git a/data/textures/noise/noise_0050.png b/data/textures/noise/noise_0050.png new file mode 100644 index 0000000000000000000000000000000000000000..802a9fe9ab2d750bf589f5939d22e34d1f36267b Binary files /dev/null and b/data/textures/noise/noise_0050.png differ diff --git a/data/textures/noise/noise_0051.png b/data/textures/noise/noise_0051.png new file mode 100644 index 0000000000000000000000000000000000000000..70d350a6b3514a8ef3ab85ed4cd70f34972026c2 Binary files /dev/null and b/data/textures/noise/noise_0051.png differ diff --git a/data/textures/noise/noise_0052.png b/data/textures/noise/noise_0052.png new file mode 100644 index 0000000000000000000000000000000000000000..3a4045befb11197fda5e9aa8200d3e2007937d11 Binary files /dev/null and b/data/textures/noise/noise_0052.png differ diff --git a/data/textures/noise/noise_0053.png b/data/textures/noise/noise_0053.png new file mode 100644 index 0000000000000000000000000000000000000000..12198c47f1f56c0a924cec7d93f0fb7573f85138 Binary files /dev/null and b/data/textures/noise/noise_0053.png differ diff --git a/data/textures/noise/noise_0054.png b/data/textures/noise/noise_0054.png new file mode 100644 index 0000000000000000000000000000000000000000..46feb5e7841e52b6a837cb1a37f12708ad4cdd6b Binary files /dev/null and b/data/textures/noise/noise_0054.png differ diff --git a/data/textures/noise/noise_0055.png b/data/textures/noise/noise_0055.png new file mode 100644 index 0000000000000000000000000000000000000000..f517eb0b0b324639bf1fe8b52f4cf01e7b970eef Binary files /dev/null and b/data/textures/noise/noise_0055.png differ diff --git a/data/textures/noise/noise_0056.png b/data/textures/noise/noise_0056.png new file mode 100644 index 0000000000000000000000000000000000000000..fe2cffabfa14e075c0245c35f612a4093a5a5a1e Binary files /dev/null and b/data/textures/noise/noise_0056.png differ diff --git a/data/textures/noise/noise_0057.png b/data/textures/noise/noise_0057.png new file mode 100644 index 0000000000000000000000000000000000000000..7e1c9e8e0e7192f40297d56b4a75dce7d9266734 Binary files /dev/null and b/data/textures/noise/noise_0057.png differ diff --git a/data/textures/noise/noise_0058.png b/data/textures/noise/noise_0058.png new file mode 100644 index 0000000000000000000000000000000000000000..4b74757a18fcb98c13583514b0ebca26c75a16dd Binary files /dev/null and b/data/textures/noise/noise_0058.png differ diff --git a/data/textures/noise/noise_0059.png b/data/textures/noise/noise_0059.png new file mode 100644 index 0000000000000000000000000000000000000000..7af0bb0eb6cbf7025c36d3fab955fb89ea6cf5db Binary files /dev/null and b/data/textures/noise/noise_0059.png differ diff --git a/data/textures/noise/noise_0060.png b/data/textures/noise/noise_0060.png new file mode 100644 index 0000000000000000000000000000000000000000..886a02a4a5ce22f1c62491ed94ca1d25d1a96bde Binary files /dev/null and b/data/textures/noise/noise_0060.png differ diff --git a/data/textures/noise/noise_0061.png b/data/textures/noise/noise_0061.png new file mode 100644 index 0000000000000000000000000000000000000000..ad64c28b2987b3ef367eba053c085e75e6ab6c81 Binary files /dev/null and b/data/textures/noise/noise_0061.png differ diff --git a/data/textures/noise/noise_0062.png b/data/textures/noise/noise_0062.png new file mode 100644 index 0000000000000000000000000000000000000000..bfead96ee74ddf4fe90b7914e5bc1afc792893d3 Binary files /dev/null and b/data/textures/noise/noise_0062.png differ diff --git a/data/textures/noise/noise_0063.png b/data/textures/noise/noise_0063.png new file mode 100644 index 0000000000000000000000000000000000000000..9de15c1d078e8225af06272de091c7fb22e60661 Binary files /dev/null and b/data/textures/noise/noise_0063.png differ diff --git a/data/textures/noise/noise_0064.png b/data/textures/noise/noise_0064.png new file mode 100644 index 0000000000000000000000000000000000000000..bc6bc62145a8176d6c8ba35799488b0da11b9901 Binary files /dev/null and b/data/textures/noise/noise_0064.png differ diff --git a/data/textures/noise/noise_0065.png b/data/textures/noise/noise_0065.png new file mode 100644 index 0000000000000000000000000000000000000000..2eb0571172f05ab9da360102355058d295105cb1 Binary files /dev/null and b/data/textures/noise/noise_0065.png differ diff --git a/data/textures/noise/noise_0066.png b/data/textures/noise/noise_0066.png new file mode 100644 index 0000000000000000000000000000000000000000..1ac0e884b3200856c63e703a4aee8c6f2c6bc2c7 Binary files /dev/null and b/data/textures/noise/noise_0066.png differ diff --git a/data/textures/noise/noise_0067.png b/data/textures/noise/noise_0067.png new file mode 100644 index 0000000000000000000000000000000000000000..6160ad0350d603d3be40d4b19e44d6ebc0c74909 Binary files /dev/null and b/data/textures/noise/noise_0067.png differ diff --git a/data/textures/noise/noise_0068.png b/data/textures/noise/noise_0068.png new file mode 100644 index 0000000000000000000000000000000000000000..032a2137a092bfd14bfeb790606afb09721c4c87 Binary files /dev/null and b/data/textures/noise/noise_0068.png differ diff --git a/data/textures/noise/noise_0069.png b/data/textures/noise/noise_0069.png new file mode 100644 index 0000000000000000000000000000000000000000..fc5b8c3f71e7113d2d7c9ddd95a029b8d47d5893 Binary files /dev/null and b/data/textures/noise/noise_0069.png differ diff --git a/data/textures/noise/noise_0070.png b/data/textures/noise/noise_0070.png new file mode 100644 index 0000000000000000000000000000000000000000..4545c79b43991429d8a21c8587d24a1775d5aed1 Binary files /dev/null and b/data/textures/noise/noise_0070.png differ diff --git a/data/textures/noise/noise_0071.png b/data/textures/noise/noise_0071.png new file mode 100644 index 0000000000000000000000000000000000000000..7d53539d4c5ca489905f4eb7eecd01fe598f45f5 Binary files /dev/null and b/data/textures/noise/noise_0071.png differ diff --git a/data/textures/noise/noise_0072.png b/data/textures/noise/noise_0072.png new file mode 100644 index 0000000000000000000000000000000000000000..dcfa1fbb8f22b01c2a53a87139a4ca1fb667e506 Binary files /dev/null and b/data/textures/noise/noise_0072.png differ diff --git a/data/textures/noise/noise_0073.png b/data/textures/noise/noise_0073.png new file mode 100644 index 0000000000000000000000000000000000000000..04d4ad7824221770d2c97a818ae21853fe45c817 Binary files /dev/null and b/data/textures/noise/noise_0073.png differ diff --git a/data/textures/noise/noise_0074.png b/data/textures/noise/noise_0074.png new file mode 100644 index 0000000000000000000000000000000000000000..d783e24e134a60f6b0215882bc444f3dd2bc8ebc Binary files /dev/null and b/data/textures/noise/noise_0074.png differ diff --git a/data/textures/noise/noise_0075.png b/data/textures/noise/noise_0075.png new file mode 100644 index 0000000000000000000000000000000000000000..f8ae1cb0b7b8cd3b454a8935dfeec8f115828ad0 Binary files /dev/null and b/data/textures/noise/noise_0075.png differ diff --git a/data/textures/noise/noise_0076.png b/data/textures/noise/noise_0076.png new file mode 100644 index 0000000000000000000000000000000000000000..2bcfe2b50198c375af041ca2abd6c95b867b18d8 Binary files /dev/null and b/data/textures/noise/noise_0076.png differ diff --git a/data/textures/noise/noise_0077.png b/data/textures/noise/noise_0077.png new file mode 100644 index 0000000000000000000000000000000000000000..14722ab225d436feade7a64c9fae1aa8598d2f76 Binary files /dev/null and b/data/textures/noise/noise_0077.png differ diff --git a/data/textures/noise/noise_0078.png b/data/textures/noise/noise_0078.png new file mode 100644 index 0000000000000000000000000000000000000000..67e23cc0d82b9e609f601df73bb7333755049da4 Binary files /dev/null and b/data/textures/noise/noise_0078.png differ diff --git a/data/textures/noise/noise_0079.png b/data/textures/noise/noise_0079.png new file mode 100644 index 0000000000000000000000000000000000000000..3a6c109f7bfafdb13618aacdb22bc6994dbdcddc Binary files /dev/null and b/data/textures/noise/noise_0079.png differ diff --git a/data/textures/noise/noise_0080.png b/data/textures/noise/noise_0080.png new file mode 100644 index 0000000000000000000000000000000000000000..70c25e447cb7336d87e84f2389ee01a03e0a0fdd Binary files /dev/null and b/data/textures/noise/noise_0080.png differ diff --git a/data/textures/noise/noise_0081.png b/data/textures/noise/noise_0081.png new file mode 100644 index 0000000000000000000000000000000000000000..e27c7406fd635a12655a991906e00f54567a1b6f Binary files /dev/null and b/data/textures/noise/noise_0081.png differ diff --git a/data/textures/noise/noise_0082.png b/data/textures/noise/noise_0082.png new file mode 100644 index 0000000000000000000000000000000000000000..2f1de5698f8f8738bcf25e78f5eb7a08a7b78614 Binary files /dev/null and b/data/textures/noise/noise_0082.png differ diff --git a/data/textures/noise/noise_0083.png b/data/textures/noise/noise_0083.png new file mode 100644 index 0000000000000000000000000000000000000000..00ff9a4c05d3561164fb4d8eb755fc360582dc82 Binary files /dev/null and b/data/textures/noise/noise_0083.png differ diff --git a/data/textures/noise/noise_0084.png b/data/textures/noise/noise_0084.png new file mode 100644 index 0000000000000000000000000000000000000000..3d80f47b208bed1ddb36d227b085105e6562f6cf Binary files /dev/null and b/data/textures/noise/noise_0084.png differ diff --git a/data/textures/noise/noise_0085.png b/data/textures/noise/noise_0085.png new file mode 100644 index 0000000000000000000000000000000000000000..db7266b4b7226da3ee807e1eef49487fe0963581 Binary files /dev/null and b/data/textures/noise/noise_0085.png differ diff --git a/data/textures/noise/noise_0086.png b/data/textures/noise/noise_0086.png new file mode 100644 index 0000000000000000000000000000000000000000..45debcef97dae5f4c4d857a53a1a0220c208c24a Binary files /dev/null and b/data/textures/noise/noise_0086.png differ diff --git a/data/textures/noise/noise_0087.png b/data/textures/noise/noise_0087.png new file mode 100644 index 0000000000000000000000000000000000000000..d8ab5d46e0ada68c546cb70abe714e3fd812fc63 Binary files /dev/null and b/data/textures/noise/noise_0087.png differ diff --git a/data/textures/noise/noise_0088.png b/data/textures/noise/noise_0088.png new file mode 100644 index 0000000000000000000000000000000000000000..9c98613f3815a13709cd414c3b9c55819102ad1b Binary files /dev/null and b/data/textures/noise/noise_0088.png differ diff --git a/data/textures/noise/noise_0089.png b/data/textures/noise/noise_0089.png new file mode 100644 index 0000000000000000000000000000000000000000..d0902a921abf93aac33ae9778a9250405d3c1a89 Binary files /dev/null and b/data/textures/noise/noise_0089.png differ diff --git a/data/textures/noise/noise_0090.png b/data/textures/noise/noise_0090.png new file mode 100644 index 0000000000000000000000000000000000000000..52f6025a45688e3be0403e4d1668ed9bc21da8f5 Binary files /dev/null and b/data/textures/noise/noise_0090.png differ diff --git a/data/textures/noise/noise_0091.png b/data/textures/noise/noise_0091.png new file mode 100644 index 0000000000000000000000000000000000000000..06e436a44f9da7fe46aa6d6e7c465d11d1d27b54 Binary files /dev/null and b/data/textures/noise/noise_0091.png differ diff --git a/data/textures/noise/noise_0092.png b/data/textures/noise/noise_0092.png new file mode 100644 index 0000000000000000000000000000000000000000..c93ceac30d785b742da436430b12139b8a61cbc8 Binary files /dev/null and b/data/textures/noise/noise_0092.png differ diff --git a/data/textures/noise/noise_0093.png b/data/textures/noise/noise_0093.png new file mode 100644 index 0000000000000000000000000000000000000000..0523514896a105b3f5743fb51ac7c4ca8d54667e Binary files /dev/null and b/data/textures/noise/noise_0093.png differ diff --git a/data/textures/noise/noise_0094.png b/data/textures/noise/noise_0094.png new file mode 100644 index 0000000000000000000000000000000000000000..59971021d49c3bacd5590c1b082d2901a98cd2ff Binary files /dev/null and b/data/textures/noise/noise_0094.png differ diff --git a/data/textures/noise/noise_0095.png b/data/textures/noise/noise_0095.png new file mode 100644 index 0000000000000000000000000000000000000000..671e7f682fe80fc1930f2e99c3c47d982ad618ae Binary files /dev/null and b/data/textures/noise/noise_0095.png differ diff --git a/data/textures/noise/noise_0096.png b/data/textures/noise/noise_0096.png new file mode 100644 index 0000000000000000000000000000000000000000..304e13bb33dcd71aff451540feeb199ddd2abb5d Binary files /dev/null and b/data/textures/noise/noise_0096.png differ diff --git a/data/textures/noise/noise_0097.png b/data/textures/noise/noise_0097.png new file mode 100644 index 0000000000000000000000000000000000000000..8aed3bdd4f34a8e897d8314af3ef70e43bd0df35 Binary files /dev/null and b/data/textures/noise/noise_0097.png differ diff --git a/data/textures/noise/noise_0098.png b/data/textures/noise/noise_0098.png new file mode 100644 index 0000000000000000000000000000000000000000..64e5fb66a7206a1aef7e3552c6189cd6cf8ccb31 Binary files /dev/null and b/data/textures/noise/noise_0098.png differ diff --git a/data/textures/noise/noise_0099.png b/data/textures/noise/noise_0099.png new file mode 100644 index 0000000000000000000000000000000000000000..271a39d5b3ae288cd98a9852ca6521abc661943c Binary files /dev/null and b/data/textures/noise/noise_0099.png differ diff --git a/data/textures/noise/noise_0100.png b/data/textures/noise/noise_0100.png new file mode 100644 index 0000000000000000000000000000000000000000..b28416b4965731abd1425967f4639ce533edc40c Binary files /dev/null and b/data/textures/noise/noise_0100.png differ diff --git a/data/textures/noise/noise_0101.png b/data/textures/noise/noise_0101.png new file mode 100644 index 0000000000000000000000000000000000000000..8b2bd2cda81e7f40a8df472eddfa7789b0e2f00e Binary files /dev/null and b/data/textures/noise/noise_0101.png differ diff --git a/data/textures/noise/noise_0102.png b/data/textures/noise/noise_0102.png new file mode 100644 index 0000000000000000000000000000000000000000..05f49e1323b4e7d06d7854098c7640e3274b1f67 Binary files /dev/null and b/data/textures/noise/noise_0102.png differ diff --git a/data/textures/noise/noise_0103.png b/data/textures/noise/noise_0103.png new file mode 100644 index 0000000000000000000000000000000000000000..a358638114ae45a527dc8947b6179fd78f3b5f2d Binary files /dev/null and b/data/textures/noise/noise_0103.png differ diff --git a/data/textures/noise/noise_0104.png b/data/textures/noise/noise_0104.png new file mode 100644 index 0000000000000000000000000000000000000000..ab024ce4501bee7c0b45107ba9f738372555a52c Binary files /dev/null and b/data/textures/noise/noise_0104.png differ diff --git a/data/textures/noise/noise_0105.png b/data/textures/noise/noise_0105.png new file mode 100644 index 0000000000000000000000000000000000000000..f2d266220b3d3d058837472deab491cd1bfaa213 Binary files /dev/null and b/data/textures/noise/noise_0105.png differ diff --git a/data/textures/noise/noise_0106.png b/data/textures/noise/noise_0106.png new file mode 100644 index 0000000000000000000000000000000000000000..d51c5fd109877af76688406f4878c8dc50f3249c Binary files /dev/null and b/data/textures/noise/noise_0106.png differ diff --git a/data/textures/noise/noise_0107.png b/data/textures/noise/noise_0107.png new file mode 100644 index 0000000000000000000000000000000000000000..28e820203a344e022ba1799b1b85ac65129b88f2 Binary files /dev/null and b/data/textures/noise/noise_0107.png differ diff --git a/data/textures/noise/noise_0108.png b/data/textures/noise/noise_0108.png new file mode 100644 index 0000000000000000000000000000000000000000..6865da24708a7f72eab9b33b33d89fac65aa62b0 Binary files /dev/null and b/data/textures/noise/noise_0108.png differ diff --git a/data/textures/noise/noise_0109.png b/data/textures/noise/noise_0109.png new file mode 100644 index 0000000000000000000000000000000000000000..c7e6ec700353d4c5fb4343c0f4810fc6e6751221 Binary files /dev/null and b/data/textures/noise/noise_0109.png differ diff --git a/data/textures/noise/noise_0110.png b/data/textures/noise/noise_0110.png new file mode 100644 index 0000000000000000000000000000000000000000..cb10501d7ebc9665a0d635fa9b54c6127b2c93ac Binary files /dev/null and b/data/textures/noise/noise_0110.png differ diff --git a/data/textures/noise/noise_0111.png b/data/textures/noise/noise_0111.png new file mode 100644 index 0000000000000000000000000000000000000000..d4926cf911a1a33dd0f4203728745efa75ab2b8c Binary files /dev/null and b/data/textures/noise/noise_0111.png differ diff --git a/data/textures/noise/noise_0112.png b/data/textures/noise/noise_0112.png new file mode 100644 index 0000000000000000000000000000000000000000..ce96e642b760447b6b17009f7853a21d3c988f92 Binary files /dev/null and b/data/textures/noise/noise_0112.png differ diff --git a/data/textures/noise/noise_0113.png b/data/textures/noise/noise_0113.png new file mode 100644 index 0000000000000000000000000000000000000000..12c5f83ba509e1ce1714db9d86084717a66660b5 Binary files /dev/null and b/data/textures/noise/noise_0113.png differ diff --git a/data/textures/noise/noise_0114.png b/data/textures/noise/noise_0114.png new file mode 100644 index 0000000000000000000000000000000000000000..8e4a01737b221a2c11a7e5cb1fa907cd7854c243 Binary files /dev/null and b/data/textures/noise/noise_0114.png differ diff --git a/data/textures/noise/noise_0115.png b/data/textures/noise/noise_0115.png new file mode 100644 index 0000000000000000000000000000000000000000..9bff1d006ad9b6168cfc0c5edc7fbb341f6d3753 Binary files /dev/null and b/data/textures/noise/noise_0115.png differ diff --git a/data/textures/noise/noise_0116.png b/data/textures/noise/noise_0116.png new file mode 100644 index 0000000000000000000000000000000000000000..62c567ac7b202b2e84d405f8ba7eb43a57dd32b3 Binary files /dev/null and b/data/textures/noise/noise_0116.png differ diff --git a/data/textures/noise/noise_0117.png b/data/textures/noise/noise_0117.png new file mode 100644 index 0000000000000000000000000000000000000000..5b74a114504be3368ea91f9ff9f4390a046c34eb Binary files /dev/null and b/data/textures/noise/noise_0117.png differ diff --git a/data/textures/noise/noise_0118.png b/data/textures/noise/noise_0118.png new file mode 100644 index 0000000000000000000000000000000000000000..3918cdc9f8adb74b21ac1e5fc8b29a60bcee8958 Binary files /dev/null and b/data/textures/noise/noise_0118.png differ diff --git a/data/textures/noise/noise_0119.png b/data/textures/noise/noise_0119.png new file mode 100644 index 0000000000000000000000000000000000000000..236a4d721902cadc0077585e47115c6f4ad18d16 Binary files /dev/null and b/data/textures/noise/noise_0119.png differ diff --git a/data/textures/noise/noise_0120.png b/data/textures/noise/noise_0120.png new file mode 100644 index 0000000000000000000000000000000000000000..54a5e67aa3de63cb1b2a10197aa8e33fd91ec75a Binary files /dev/null and b/data/textures/noise/noise_0120.png differ diff --git a/data/textures/noise/noise_0121.png b/data/textures/noise/noise_0121.png new file mode 100644 index 0000000000000000000000000000000000000000..5966d5934bb1c010dcec53bdc6e6ba444b999c3f Binary files /dev/null and b/data/textures/noise/noise_0121.png differ diff --git a/data/textures/noise/noise_0122.png b/data/textures/noise/noise_0122.png new file mode 100644 index 0000000000000000000000000000000000000000..30948e8d214355898266cc4ebd701b4c2fd6ab75 Binary files /dev/null and b/data/textures/noise/noise_0122.png differ diff --git a/data/textures/noise/noise_0123.png b/data/textures/noise/noise_0123.png new file mode 100644 index 0000000000000000000000000000000000000000..788ea63a66b3b8b6f3513c8ba6ed82ddd5f7de32 Binary files /dev/null and b/data/textures/noise/noise_0123.png differ diff --git a/data/textures/noise/noise_0124.png b/data/textures/noise/noise_0124.png new file mode 100644 index 0000000000000000000000000000000000000000..15cb892477ea236f5aa89dad79915efc4deb9399 Binary files /dev/null and b/data/textures/noise/noise_0124.png differ diff --git a/data/textures/noise/noise_0125.png b/data/textures/noise/noise_0125.png new file mode 100644 index 0000000000000000000000000000000000000000..68d06c836d33207c6cdd0f7abdefe63b17ac4c89 Binary files /dev/null and b/data/textures/noise/noise_0125.png differ diff --git a/data/textures/noise/noise_0126.png b/data/textures/noise/noise_0126.png new file mode 100644 index 0000000000000000000000000000000000000000..e296f8b5d944e9c62364d918083c4c59875c61c8 Binary files /dev/null and b/data/textures/noise/noise_0126.png differ diff --git a/data/textures/noise/noise_0127.png b/data/textures/noise/noise_0127.png new file mode 100644 index 0000000000000000000000000000000000000000..9de79d19c79a5d1e9d25eed5e3c9dc84ef3e4f18 Binary files /dev/null and b/data/textures/noise/noise_0127.png differ diff --git a/data/textures/noise/noise_0128.png b/data/textures/noise/noise_0128.png new file mode 100644 index 0000000000000000000000000000000000000000..b5c38e7b13b260de1002a81fb76565dd2a3a4b37 Binary files /dev/null and b/data/textures/noise/noise_0128.png differ diff --git a/data/textures/noise/noise_0129.png b/data/textures/noise/noise_0129.png new file mode 100644 index 0000000000000000000000000000000000000000..6d0ed020d72af79a56d3fca8a57175c804602c7f Binary files /dev/null and b/data/textures/noise/noise_0129.png differ diff --git a/data/textures/noise/noise_0130.png b/data/textures/noise/noise_0130.png new file mode 100644 index 0000000000000000000000000000000000000000..71aaff2a87abf5eebe9b2158861f3d51ef8a1f37 Binary files /dev/null and b/data/textures/noise/noise_0130.png differ diff --git a/data/textures/noise/noise_0131.png b/data/textures/noise/noise_0131.png new file mode 100644 index 0000000000000000000000000000000000000000..4218e47ffb719475c8b19f2dee9942e336156d90 Binary files /dev/null and b/data/textures/noise/noise_0131.png differ diff --git a/data/textures/noise/noise_0132.png b/data/textures/noise/noise_0132.png new file mode 100644 index 0000000000000000000000000000000000000000..f5805c6af834edae82d8526abc1f2b3793799afe Binary files /dev/null and b/data/textures/noise/noise_0132.png differ diff --git a/data/textures/noise/noise_0133.png b/data/textures/noise/noise_0133.png new file mode 100644 index 0000000000000000000000000000000000000000..cc1a18daed74ea59657ace12f74e6b4fb5af6232 Binary files /dev/null and b/data/textures/noise/noise_0133.png differ diff --git a/data/textures/noise/noise_0134.png b/data/textures/noise/noise_0134.png new file mode 100644 index 0000000000000000000000000000000000000000..2de763ba0b089bf8d1852e532ace91442d38cce9 Binary files /dev/null and b/data/textures/noise/noise_0134.png differ diff --git a/data/textures/noise/noise_0135.png b/data/textures/noise/noise_0135.png new file mode 100644 index 0000000000000000000000000000000000000000..cf0558f46241ef2fd9c7111419e45857aff5e59a Binary files /dev/null and b/data/textures/noise/noise_0135.png differ diff --git a/data/textures/noise/noise_0136.png b/data/textures/noise/noise_0136.png new file mode 100644 index 0000000000000000000000000000000000000000..5ed1a553fe06ea838c7153721dc2c5b0b556e1ad Binary files /dev/null and b/data/textures/noise/noise_0136.png differ diff --git a/data/textures/noise/noise_0137.png b/data/textures/noise/noise_0137.png new file mode 100644 index 0000000000000000000000000000000000000000..4f3a0c22bb032d03bb9e4502a5263fd2a1305b34 Binary files /dev/null and b/data/textures/noise/noise_0137.png differ diff --git a/data/textures/noise/noise_0138.png b/data/textures/noise/noise_0138.png new file mode 100644 index 0000000000000000000000000000000000000000..c2bfdce33f0795441fe39d52241b4a1597d66640 Binary files /dev/null and b/data/textures/noise/noise_0138.png differ diff --git a/data/textures/noise/noise_0139.png b/data/textures/noise/noise_0139.png new file mode 100644 index 0000000000000000000000000000000000000000..14aad38180eb7414e4703d93fe9830b8947aeb52 Binary files /dev/null and b/data/textures/noise/noise_0139.png differ diff --git a/data/textures/noise/noise_0140.png b/data/textures/noise/noise_0140.png new file mode 100644 index 0000000000000000000000000000000000000000..55754a42d06b71e77445b734c0c6937a6e0c7dc7 Binary files /dev/null and b/data/textures/noise/noise_0140.png differ diff --git a/data/textures/noise/noise_0141.png b/data/textures/noise/noise_0141.png new file mode 100644 index 0000000000000000000000000000000000000000..11c108d5d74046a30ea8b145ef21bccb6eb88c00 Binary files /dev/null and b/data/textures/noise/noise_0141.png differ diff --git a/data/textures/noise/noise_0142.png b/data/textures/noise/noise_0142.png new file mode 100644 index 0000000000000000000000000000000000000000..99333046f52a4d427f2d67b243f8b3dffc58fdfe Binary files /dev/null and b/data/textures/noise/noise_0142.png differ diff --git a/data/textures/noise/noise_0143.png b/data/textures/noise/noise_0143.png new file mode 100644 index 0000000000000000000000000000000000000000..f78128164dd4f1f609f5c34616a667aec515b619 Binary files /dev/null and b/data/textures/noise/noise_0143.png differ diff --git a/data/textures/noise/noise_0144.png b/data/textures/noise/noise_0144.png new file mode 100644 index 0000000000000000000000000000000000000000..41e4b3ef40704dc8b45eaf0b4f0102725d2c0d7a Binary files /dev/null and b/data/textures/noise/noise_0144.png differ diff --git a/data/textures/noise/noise_0145.png b/data/textures/noise/noise_0145.png new file mode 100644 index 0000000000000000000000000000000000000000..fc69e4dd6e62dcdc81b1b0286cafe1176739d4c1 Binary files /dev/null and b/data/textures/noise/noise_0145.png differ diff --git a/data/textures/noise/noise_0146.png b/data/textures/noise/noise_0146.png new file mode 100644 index 0000000000000000000000000000000000000000..207309b90367a15d7699727d93e1aedbaee3ee3f Binary files /dev/null and b/data/textures/noise/noise_0146.png differ diff --git a/data/textures/noise/noise_0147.png b/data/textures/noise/noise_0147.png new file mode 100644 index 0000000000000000000000000000000000000000..38e7ee6928dd7d80e290ab3a492545859667de5e Binary files /dev/null and b/data/textures/noise/noise_0147.png differ diff --git a/data/textures/noise/noise_0148.png b/data/textures/noise/noise_0148.png new file mode 100644 index 0000000000000000000000000000000000000000..99eea1e69063536fea730f39dbd28ff089dfd275 Binary files /dev/null and b/data/textures/noise/noise_0148.png differ diff --git a/data/textures/noise/noise_0149.png b/data/textures/noise/noise_0149.png new file mode 100644 index 0000000000000000000000000000000000000000..d90610af03d49a347a26aae270dde6036019a953 Binary files /dev/null and b/data/textures/noise/noise_0149.png differ diff --git a/data/textures/noise/noise_0150.png b/data/textures/noise/noise_0150.png new file mode 100644 index 0000000000000000000000000000000000000000..a60ab79b93c0e37b978841b04cfbb5bfb4515ba8 Binary files /dev/null and b/data/textures/noise/noise_0150.png differ diff --git a/data/textures/noise/noise_0151.png b/data/textures/noise/noise_0151.png new file mode 100644 index 0000000000000000000000000000000000000000..34856f98352a30f2bd14965cc831f742e18286be Binary files /dev/null and b/data/textures/noise/noise_0151.png differ diff --git a/data/textures/noise/noise_0152.png b/data/textures/noise/noise_0152.png new file mode 100644 index 0000000000000000000000000000000000000000..4831c3345c3321609819f30824b010cf2d08b4de Binary files /dev/null and b/data/textures/noise/noise_0152.png differ diff --git a/data/textures/noise/noise_0153.png b/data/textures/noise/noise_0153.png new file mode 100644 index 0000000000000000000000000000000000000000..2b1846f1c53b7de238ce752fc0268e6f74ff74c8 Binary files /dev/null and b/data/textures/noise/noise_0153.png differ diff --git a/data/textures/noise/noise_0154.png b/data/textures/noise/noise_0154.png new file mode 100644 index 0000000000000000000000000000000000000000..d94284ca87b7a73f4a4390302eb1662649764f05 Binary files /dev/null and b/data/textures/noise/noise_0154.png differ diff --git a/data/textures/noise/noise_0155.png b/data/textures/noise/noise_0155.png new file mode 100644 index 0000000000000000000000000000000000000000..e15e82843b054a998bd5b82d8facbe2d8b189822 Binary files /dev/null and b/data/textures/noise/noise_0155.png differ diff --git a/data/textures/noise/noise_0156.png b/data/textures/noise/noise_0156.png new file mode 100644 index 0000000000000000000000000000000000000000..73aabf0cbdb4c9133c110e74bb1ed8a63e974e3e Binary files /dev/null and b/data/textures/noise/noise_0156.png differ diff --git a/data/textures/noise/noise_0157.png b/data/textures/noise/noise_0157.png new file mode 100644 index 0000000000000000000000000000000000000000..6bedbfd069af9674b820dc5070c44f5f734ef6d7 Binary files /dev/null and b/data/textures/noise/noise_0157.png differ diff --git a/data/textures/noise/noise_0158.png b/data/textures/noise/noise_0158.png new file mode 100644 index 0000000000000000000000000000000000000000..5a6af7a5e0cf801ce14f52ea1e64cc606a4ef9f9 Binary files /dev/null and b/data/textures/noise/noise_0158.png differ diff --git a/data/textures/noise/noise_0159.png b/data/textures/noise/noise_0159.png new file mode 100644 index 0000000000000000000000000000000000000000..1c81e7b3afa66e5e6398c9ac810ac191398fa760 Binary files /dev/null and b/data/textures/noise/noise_0159.png differ diff --git a/data/textures/noise/noise_0160.png b/data/textures/noise/noise_0160.png new file mode 100644 index 0000000000000000000000000000000000000000..c7d1f08ae730b7e0f648f72be363c094dd6bcac9 Binary files /dev/null and b/data/textures/noise/noise_0160.png differ diff --git a/data/textures/noise/noise_0161.png b/data/textures/noise/noise_0161.png new file mode 100644 index 0000000000000000000000000000000000000000..c9e5fb0d581dbbcf17efc5baaf417bcc7459bbeb Binary files /dev/null and b/data/textures/noise/noise_0161.png differ diff --git a/data/textures/noise/noise_0162.png b/data/textures/noise/noise_0162.png new file mode 100644 index 0000000000000000000000000000000000000000..1de171fd5b11164d2553d3cc36efd16dc8a21da1 Binary files /dev/null and b/data/textures/noise/noise_0162.png differ diff --git a/data/textures/noise/noise_0163.png b/data/textures/noise/noise_0163.png new file mode 100644 index 0000000000000000000000000000000000000000..0f319ae23b09c856e2892788cbddb09079e01f80 Binary files /dev/null and b/data/textures/noise/noise_0163.png differ diff --git a/data/textures/noise/noise_0164.png b/data/textures/noise/noise_0164.png new file mode 100644 index 0000000000000000000000000000000000000000..f79cc28d479ebb7fe11893fb240e5897dbd9de55 Binary files /dev/null and b/data/textures/noise/noise_0164.png differ diff --git a/data/textures/noise/noise_0165.png b/data/textures/noise/noise_0165.png new file mode 100644 index 0000000000000000000000000000000000000000..b29fcc617fc655f056865e09de2ad028579ba471 Binary files /dev/null and b/data/textures/noise/noise_0165.png differ diff --git a/data/textures/noise/noise_0166.png b/data/textures/noise/noise_0166.png new file mode 100644 index 0000000000000000000000000000000000000000..75f66a34518111e9e441ff798f204c0611a8742b Binary files /dev/null and b/data/textures/noise/noise_0166.png differ diff --git a/data/textures/noise/noise_0167.png b/data/textures/noise/noise_0167.png new file mode 100644 index 0000000000000000000000000000000000000000..13504eea8e884850b11ec3074beee1bf020f6509 Binary files /dev/null and b/data/textures/noise/noise_0167.png differ diff --git a/data/textures/noise/noise_0168.png b/data/textures/noise/noise_0168.png new file mode 100644 index 0000000000000000000000000000000000000000..fcb66a9cd390c739cab8f7de3b08986c1e127781 Binary files /dev/null and b/data/textures/noise/noise_0168.png differ diff --git a/data/textures/noise/noise_0169.png b/data/textures/noise/noise_0169.png new file mode 100644 index 0000000000000000000000000000000000000000..9391e66fa06fb9934caf5710a7dd14e31d7cbc7b Binary files /dev/null and b/data/textures/noise/noise_0169.png differ diff --git a/data/textures/noise/noise_0170.png b/data/textures/noise/noise_0170.png new file mode 100644 index 0000000000000000000000000000000000000000..cfa8fffa0ab3f5141eeeb13fbd8e5dad2dc973e2 Binary files /dev/null and b/data/textures/noise/noise_0170.png differ diff --git a/data/textures/noise/noise_0171.png b/data/textures/noise/noise_0171.png new file mode 100644 index 0000000000000000000000000000000000000000..477e832353cf61b14bddd9b6f2fc2e31f0e096f1 Binary files /dev/null and b/data/textures/noise/noise_0171.png differ diff --git a/data/textures/noise/noise_0172.png b/data/textures/noise/noise_0172.png new file mode 100644 index 0000000000000000000000000000000000000000..f1300a6d15239132adfc0bd3dc4b1c9616d20d98 Binary files /dev/null and b/data/textures/noise/noise_0172.png differ diff --git a/data/textures/noise/noise_0173.png b/data/textures/noise/noise_0173.png new file mode 100644 index 0000000000000000000000000000000000000000..b7ade4e79a7fce25c6ad7c7d83b7798a82c49797 Binary files /dev/null and b/data/textures/noise/noise_0173.png differ diff --git a/data/textures/noise/noise_0174.png b/data/textures/noise/noise_0174.png new file mode 100644 index 0000000000000000000000000000000000000000..19d6d97e46f01eb5c3c4955e2637f24c2090af6f Binary files /dev/null and b/data/textures/noise/noise_0174.png differ diff --git a/data/textures/noise/noise_0175.png b/data/textures/noise/noise_0175.png new file mode 100644 index 0000000000000000000000000000000000000000..5b3dc90f202ae85af19aa4b93deeceb0aefabf56 Binary files /dev/null and b/data/textures/noise/noise_0175.png differ diff --git a/data/textures/noise/noise_0176.png b/data/textures/noise/noise_0176.png new file mode 100644 index 0000000000000000000000000000000000000000..f88260557833d28e651324222fb916a2f7fd0149 Binary files /dev/null and b/data/textures/noise/noise_0176.png differ diff --git a/data/textures/noise/noise_0177.png b/data/textures/noise/noise_0177.png new file mode 100644 index 0000000000000000000000000000000000000000..2b1572fd642d54559d9f9b77fd07e4ce38734d96 Binary files /dev/null and b/data/textures/noise/noise_0177.png differ diff --git a/data/textures/noise/noise_0178.png b/data/textures/noise/noise_0178.png new file mode 100644 index 0000000000000000000000000000000000000000..600409784e097d629e1b9955cfeb498505ab026c Binary files /dev/null and b/data/textures/noise/noise_0178.png differ diff --git a/data/textures/noise/noise_0179.png b/data/textures/noise/noise_0179.png new file mode 100644 index 0000000000000000000000000000000000000000..964a0730170071532e11ce4c4629a521ee0fbe78 Binary files /dev/null and b/data/textures/noise/noise_0179.png differ diff --git a/data/textures/noise/noise_0180.png b/data/textures/noise/noise_0180.png new file mode 100644 index 0000000000000000000000000000000000000000..43319f9dfe6f0b2986b64a6b972f2f95a0b3c7f9 Binary files /dev/null and b/data/textures/noise/noise_0180.png differ diff --git a/data/textures/noise/noise_0181.png b/data/textures/noise/noise_0181.png new file mode 100644 index 0000000000000000000000000000000000000000..d9ca056371595524859ed401f3f58f98af416336 Binary files /dev/null and b/data/textures/noise/noise_0181.png differ diff --git a/data/textures/noise/noise_0182.png b/data/textures/noise/noise_0182.png new file mode 100644 index 0000000000000000000000000000000000000000..6aba23c1c43e85c9d03a82b2c7e790fc3e86a7b7 Binary files /dev/null and b/data/textures/noise/noise_0182.png differ diff --git a/data/textures/noise/noise_0183.png b/data/textures/noise/noise_0183.png new file mode 100644 index 0000000000000000000000000000000000000000..1284a1f0011827714bbb65bc877e332c28e30ca1 Binary files /dev/null and b/data/textures/noise/noise_0183.png differ diff --git a/data/textures/noise/noise_0184.png b/data/textures/noise/noise_0184.png new file mode 100644 index 0000000000000000000000000000000000000000..fd443ff5721dd4dcf7a9fc9317a6df721eb5bd48 Binary files /dev/null and b/data/textures/noise/noise_0184.png differ diff --git a/data/textures/noise/noise_0185.png b/data/textures/noise/noise_0185.png new file mode 100644 index 0000000000000000000000000000000000000000..ed083c2c80e605e4089449069520274848d7d9cd Binary files /dev/null and b/data/textures/noise/noise_0185.png differ diff --git a/data/textures/noise/noise_0186.png b/data/textures/noise/noise_0186.png new file mode 100644 index 0000000000000000000000000000000000000000..a1ba62e8131618b93da75a8ddd9d012672899bbd Binary files /dev/null and b/data/textures/noise/noise_0186.png differ diff --git a/data/textures/noise/noise_0187.png b/data/textures/noise/noise_0187.png new file mode 100644 index 0000000000000000000000000000000000000000..8717f08f01775937be956fbfa262f13ac4e11a59 Binary files /dev/null and b/data/textures/noise/noise_0187.png differ diff --git a/data/textures/noise/noise_0188.png b/data/textures/noise/noise_0188.png new file mode 100644 index 0000000000000000000000000000000000000000..4434529ddd4af93d3b039097fa8762bf06c37b1b Binary files /dev/null and b/data/textures/noise/noise_0188.png differ diff --git a/data/textures/noise/noise_0189.png b/data/textures/noise/noise_0189.png new file mode 100644 index 0000000000000000000000000000000000000000..0abaee2b8678a5239f13c56b6dba81a42ec6d884 Binary files /dev/null and b/data/textures/noise/noise_0189.png differ diff --git a/data/textures/noise/noise_0190.png b/data/textures/noise/noise_0190.png new file mode 100644 index 0000000000000000000000000000000000000000..7e3555cf996ab292f789b3f8cf441c4cedec89b2 Binary files /dev/null and b/data/textures/noise/noise_0190.png differ diff --git a/data/textures/noise/noise_0191.png b/data/textures/noise/noise_0191.png new file mode 100644 index 0000000000000000000000000000000000000000..f923da3decb7bcbf582c8d254aaaa727b331e2d9 Binary files /dev/null and b/data/textures/noise/noise_0191.png differ diff --git a/data/textures/noise/noise_0192.png b/data/textures/noise/noise_0192.png new file mode 100644 index 0000000000000000000000000000000000000000..e934a12a8b8bba5b387f0704b52f998758dca910 Binary files /dev/null and b/data/textures/noise/noise_0192.png differ diff --git a/data/textures/noise/noise_0193.png b/data/textures/noise/noise_0193.png new file mode 100644 index 0000000000000000000000000000000000000000..7976abc1b0ffc3daed5b1838a9657321e4c16bae Binary files /dev/null and b/data/textures/noise/noise_0193.png differ diff --git a/data/textures/noise/noise_0194.png b/data/textures/noise/noise_0194.png new file mode 100644 index 0000000000000000000000000000000000000000..640f9a21c40280d241ec6c410e24235b0d6ef253 Binary files /dev/null and b/data/textures/noise/noise_0194.png differ diff --git a/data/textures/noise/noise_0195.png b/data/textures/noise/noise_0195.png new file mode 100644 index 0000000000000000000000000000000000000000..6c8342bd3f45235a20733f691214511f35951b5e Binary files /dev/null and b/data/textures/noise/noise_0195.png differ diff --git a/data/textures/noise/noise_0196.png b/data/textures/noise/noise_0196.png new file mode 100644 index 0000000000000000000000000000000000000000..e54a676f265d941dc56e200156d3376ab13e53fb Binary files /dev/null and b/data/textures/noise/noise_0196.png differ diff --git a/data/textures/noise/noise_0197.png b/data/textures/noise/noise_0197.png new file mode 100644 index 0000000000000000000000000000000000000000..aa6d1a442a4874b5f702169d4109a46156b9134a Binary files /dev/null and b/data/textures/noise/noise_0197.png differ diff --git a/data/textures/noise/noise_0198.png b/data/textures/noise/noise_0198.png new file mode 100644 index 0000000000000000000000000000000000000000..ed2dcfd3978728fdbfc65709fd41222b3a5459dc Binary files /dev/null and b/data/textures/noise/noise_0198.png differ diff --git a/data/textures/noise/noise_0199.png b/data/textures/noise/noise_0199.png new file mode 100644 index 0000000000000000000000000000000000000000..fa4cfa547bbd0ae506be9095ae7e752af34810a4 Binary files /dev/null and b/data/textures/noise/noise_0199.png differ diff --git a/data/textures/wood/wood_0000.png b/data/textures/wood/wood_0000.png new file mode 100644 index 0000000000000000000000000000000000000000..5a9fab7f5a4169c43575441c7eefc3ae6577901d Binary files /dev/null and b/data/textures/wood/wood_0000.png differ diff --git a/data/textures/wood/wood_0001.png b/data/textures/wood/wood_0001.png new file mode 100644 index 0000000000000000000000000000000000000000..e5116d1ee83a78ff1bae9d4ef29518edeccf9fbb Binary files /dev/null and b/data/textures/wood/wood_0001.png differ diff --git a/data/textures/wood/wood_0002.png b/data/textures/wood/wood_0002.png new file mode 100644 index 0000000000000000000000000000000000000000..f79aa8a8822a130b4f4df28a76d8320aa232fd69 Binary files /dev/null and b/data/textures/wood/wood_0002.png differ diff --git a/data/textures/wood/wood_0003.png b/data/textures/wood/wood_0003.png new file mode 100644 index 0000000000000000000000000000000000000000..0770ea10408006ee5c114369a7443f79b7ac918e Binary files /dev/null and b/data/textures/wood/wood_0003.png differ diff --git a/data/textures/wood/wood_0004.png b/data/textures/wood/wood_0004.png new file mode 100644 index 0000000000000000000000000000000000000000..ad6f8eefb9d569799cbf4e9522d777fb8b9131a6 Binary files /dev/null and b/data/textures/wood/wood_0004.png differ diff --git a/data/textures/wood/wood_0005.png b/data/textures/wood/wood_0005.png new file mode 100644 index 0000000000000000000000000000000000000000..bbc609a63f0035f2a409fa4fb64a7bdb868f4d25 Binary files /dev/null and b/data/textures/wood/wood_0005.png differ diff --git a/data/textures/wood/wood_0006.png b/data/textures/wood/wood_0006.png new file mode 100644 index 0000000000000000000000000000000000000000..494f19433d8cade1ebeea7dabd4c594fc191dbd6 Binary files /dev/null and b/data/textures/wood/wood_0006.png differ diff --git a/data/textures/wood/wood_0007.png b/data/textures/wood/wood_0007.png new file mode 100644 index 0000000000000000000000000000000000000000..d6f2d498977cf82afcfa2fd730772a9c7752b9ef Binary files /dev/null and b/data/textures/wood/wood_0007.png differ diff --git a/data/textures/wood/wood_0008.png b/data/textures/wood/wood_0008.png new file mode 100644 index 0000000000000000000000000000000000000000..dd7040b2e9d1d71b5ca545af9a2b57ce84940b34 Binary files /dev/null and b/data/textures/wood/wood_0008.png differ diff --git a/data/textures/wood/wood_0009.png b/data/textures/wood/wood_0009.png new file mode 100644 index 0000000000000000000000000000000000000000..7b247dbef51a1c1ef16083fc77328abd59e34a0a Binary files /dev/null and b/data/textures/wood/wood_0009.png differ diff --git a/data/textures/wood/wood_0010.png b/data/textures/wood/wood_0010.png new file mode 100644 index 0000000000000000000000000000000000000000..a02565494f21a4caae44ee769a2e06cb05a956f4 Binary files /dev/null and b/data/textures/wood/wood_0010.png differ diff --git a/data/textures/wood/wood_0011.png b/data/textures/wood/wood_0011.png new file mode 100644 index 0000000000000000000000000000000000000000..df5181b74c6a3a2f015f96d1b5723bf4f5891edb Binary files /dev/null and b/data/textures/wood/wood_0011.png differ diff --git a/data/textures/wood/wood_0012.png b/data/textures/wood/wood_0012.png new file mode 100644 index 0000000000000000000000000000000000000000..cc324502e6bda5ea3053075683ef27ec787cb1ff Binary files /dev/null and b/data/textures/wood/wood_0012.png differ diff --git a/data/textures/wood/wood_0013.png b/data/textures/wood/wood_0013.png new file mode 100644 index 0000000000000000000000000000000000000000..6911f154ec6b43b7ee190370f7f4a32109eab7fd Binary files /dev/null and b/data/textures/wood/wood_0013.png differ diff --git a/data/textures/wood/wood_0014.png b/data/textures/wood/wood_0014.png new file mode 100644 index 0000000000000000000000000000000000000000..0af08562f7e3e02d1a4b980a0dadb3223e7ce66e Binary files /dev/null and b/data/textures/wood/wood_0014.png differ diff --git a/data/textures/wood/wood_0015.png b/data/textures/wood/wood_0015.png new file mode 100644 index 0000000000000000000000000000000000000000..c10ec69e37388c5fa0d6608d1981aa70a450b922 Binary files /dev/null and b/data/textures/wood/wood_0015.png differ diff --git a/data/textures/wood/wood_0016.png b/data/textures/wood/wood_0016.png new file mode 100644 index 0000000000000000000000000000000000000000..2c7481559f1e34aa4d9f69e1a86e8b34fdaba905 Binary files /dev/null and b/data/textures/wood/wood_0016.png differ diff --git a/data/textures/wood/wood_0017.png b/data/textures/wood/wood_0017.png new file mode 100644 index 0000000000000000000000000000000000000000..06cdc96f05d8d879861206cf9bf7b3a4f885dacd Binary files /dev/null and b/data/textures/wood/wood_0017.png differ diff --git a/data/textures/wood/wood_0018.png b/data/textures/wood/wood_0018.png new file mode 100644 index 0000000000000000000000000000000000000000..ab2942186bbaaa19a93b2602005ab188aea0585f Binary files /dev/null and b/data/textures/wood/wood_0018.png differ diff --git a/data/textures/wood/wood_0019.png b/data/textures/wood/wood_0019.png new file mode 100644 index 0000000000000000000000000000000000000000..e0e562585d3ce680a7784063010ee4cae3b126ea Binary files /dev/null and b/data/textures/wood/wood_0019.png differ diff --git a/data/textures/wood/wood_0020.png b/data/textures/wood/wood_0020.png new file mode 100644 index 0000000000000000000000000000000000000000..9118e881110e90a4c723be5e2fccab618aecb46d Binary files /dev/null and b/data/textures/wood/wood_0020.png differ diff --git a/data/textures/wood/wood_0021.png b/data/textures/wood/wood_0021.png new file mode 100644 index 0000000000000000000000000000000000000000..872d58074b7be8135c7a5d5bbe0936a182484ec1 Binary files /dev/null and b/data/textures/wood/wood_0021.png differ diff --git a/data/textures/wood/wood_0022.png b/data/textures/wood/wood_0022.png new file mode 100644 index 0000000000000000000000000000000000000000..6dc099efb3d9e568f93eeca39f42f186d7d0a21f Binary files /dev/null and b/data/textures/wood/wood_0022.png differ diff --git a/data/textures/wood/wood_0023.png b/data/textures/wood/wood_0023.png new file mode 100644 index 0000000000000000000000000000000000000000..58b674744838e03c0473792a82c38b7ee973778b Binary files /dev/null and b/data/textures/wood/wood_0023.png differ diff --git a/data/textures/wood/wood_0024.png b/data/textures/wood/wood_0024.png new file mode 100644 index 0000000000000000000000000000000000000000..5835c437671465b1721a472859179025ad9e96cc Binary files /dev/null and b/data/textures/wood/wood_0024.png differ diff --git a/data/textures/wood/wood_0025.png b/data/textures/wood/wood_0025.png new file mode 100644 index 0000000000000000000000000000000000000000..3366eb6909474f4b08d0e7791f2527d23a789a9d Binary files /dev/null and b/data/textures/wood/wood_0025.png differ diff --git a/data/textures/wood/wood_0026.png b/data/textures/wood/wood_0026.png new file mode 100644 index 0000000000000000000000000000000000000000..ba088d83e5910dffc5c44c55e521bf015f12622d Binary files /dev/null and b/data/textures/wood/wood_0026.png differ diff --git a/data/textures/wood/wood_0027.png b/data/textures/wood/wood_0027.png new file mode 100644 index 0000000000000000000000000000000000000000..2f80a22b0c7bc7ece7fe8563270d5788dc46d41a Binary files /dev/null and b/data/textures/wood/wood_0027.png differ diff --git a/data/textures/wood/wood_0028.png b/data/textures/wood/wood_0028.png new file mode 100644 index 0000000000000000000000000000000000000000..491f7ed18a5ec56a6efaaf41c856093797cef6c1 Binary files /dev/null and b/data/textures/wood/wood_0028.png differ diff --git a/data/textures/wood/wood_0029.png b/data/textures/wood/wood_0029.png new file mode 100644 index 0000000000000000000000000000000000000000..f4bd8c2a1e78887eeb3ad44cae6114d034997a2a Binary files /dev/null and b/data/textures/wood/wood_0029.png differ diff --git a/data/textures/wood/wood_0030.png b/data/textures/wood/wood_0030.png new file mode 100644 index 0000000000000000000000000000000000000000..7feadb185ef3fa1356f6810b977bd57b2cb990c9 Binary files /dev/null and b/data/textures/wood/wood_0030.png differ diff --git a/data/textures/wood/wood_0031.png b/data/textures/wood/wood_0031.png new file mode 100644 index 0000000000000000000000000000000000000000..90caf4b754ad1984bdfeba58b5eb556e525c241a Binary files /dev/null and b/data/textures/wood/wood_0031.png differ diff --git a/data/textures/wood/wood_0032.png b/data/textures/wood/wood_0032.png new file mode 100644 index 0000000000000000000000000000000000000000..32840d007f50996e94714fd859bc1406eeabcce1 Binary files /dev/null and b/data/textures/wood/wood_0032.png differ diff --git a/data/textures/wood/wood_0033.png b/data/textures/wood/wood_0033.png new file mode 100644 index 0000000000000000000000000000000000000000..715b3d09b73f095e989d452eeaf8dcd40b2f7fb1 Binary files /dev/null and b/data/textures/wood/wood_0033.png differ diff --git a/data/textures/wood/wood_0034.png b/data/textures/wood/wood_0034.png new file mode 100644 index 0000000000000000000000000000000000000000..2998816a6a96ba12141023ba4a0fb4faf64f8005 Binary files /dev/null and b/data/textures/wood/wood_0034.png differ diff --git a/data/textures/wood/wood_0035.png b/data/textures/wood/wood_0035.png new file mode 100644 index 0000000000000000000000000000000000000000..bd8a0e7b9081a01581023de8f7ee3d1873194e5b Binary files /dev/null and b/data/textures/wood/wood_0035.png differ diff --git a/data/textures/wood/wood_0036.png b/data/textures/wood/wood_0036.png new file mode 100644 index 0000000000000000000000000000000000000000..fe48a23e4c56efabe69b9d22b1a2c91eabefad60 Binary files /dev/null and b/data/textures/wood/wood_0036.png differ diff --git a/data/textures/wood/wood_0037.png b/data/textures/wood/wood_0037.png new file mode 100644 index 0000000000000000000000000000000000000000..6e2a1bd3f40aca9df9f98cbcb841388b10ac7dae Binary files /dev/null and b/data/textures/wood/wood_0037.png differ diff --git a/data/textures/wood/wood_0038.png b/data/textures/wood/wood_0038.png new file mode 100644 index 0000000000000000000000000000000000000000..c8e9b579fd89d8af53da85f9bb24967b3ff6f983 Binary files /dev/null and b/data/textures/wood/wood_0038.png differ diff --git a/data/textures/wood/wood_0039.png b/data/textures/wood/wood_0039.png new file mode 100644 index 0000000000000000000000000000000000000000..eb4a9e90f5061e6a2d613f7b94f1afd39c9f83ec Binary files /dev/null and b/data/textures/wood/wood_0039.png differ diff --git a/data/textures/wood/wood_0040.png b/data/textures/wood/wood_0040.png new file mode 100644 index 0000000000000000000000000000000000000000..a659b73f049820bf4185bdf8d2a879610380b57e Binary files /dev/null and b/data/textures/wood/wood_0040.png differ diff --git a/data/textures/wood/wood_0041.png b/data/textures/wood/wood_0041.png new file mode 100644 index 0000000000000000000000000000000000000000..a11fcd3d3a6a67c66bababad2894729cf0c13acf Binary files /dev/null and b/data/textures/wood/wood_0041.png differ diff --git a/data/textures/wood/wood_0042.png b/data/textures/wood/wood_0042.png new file mode 100644 index 0000000000000000000000000000000000000000..bb7d8f9cba401c892bca9ef1202ccf0e80954210 Binary files /dev/null and b/data/textures/wood/wood_0042.png differ diff --git a/data/textures/wood/wood_0043.png b/data/textures/wood/wood_0043.png new file mode 100644 index 0000000000000000000000000000000000000000..2fd5dc9eb7e394e7fbee692f4d579694c5904626 Binary files /dev/null and b/data/textures/wood/wood_0043.png differ diff --git a/data/textures/wood/wood_0044.png b/data/textures/wood/wood_0044.png new file mode 100644 index 0000000000000000000000000000000000000000..0233a5cb0f42037e0cffba62c6b1d0980d761e61 Binary files /dev/null and b/data/textures/wood/wood_0044.png differ diff --git a/data/textures/wood/wood_0045.png b/data/textures/wood/wood_0045.png new file mode 100644 index 0000000000000000000000000000000000000000..2b35f8658f76a562a319602e1da419409db0108b Binary files /dev/null and b/data/textures/wood/wood_0045.png differ diff --git a/data/textures/wood/wood_0046.png b/data/textures/wood/wood_0046.png new file mode 100644 index 0000000000000000000000000000000000000000..95adbb78186416660c3504445670edf619af6eb4 Binary files /dev/null and b/data/textures/wood/wood_0046.png differ diff --git a/data/textures/wood/wood_0047.png b/data/textures/wood/wood_0047.png new file mode 100644 index 0000000000000000000000000000000000000000..626289d07b2b173b4ff3b086a82ed15d799e6fd8 Binary files /dev/null and b/data/textures/wood/wood_0047.png differ diff --git a/data/textures/wood/wood_0048.png b/data/textures/wood/wood_0048.png new file mode 100644 index 0000000000000000000000000000000000000000..c7f323c10ff7cb439b245164f9f071cbc7e90d65 Binary files /dev/null and b/data/textures/wood/wood_0048.png differ diff --git a/data/textures/wood/wood_0049.png b/data/textures/wood/wood_0049.png new file mode 100644 index 0000000000000000000000000000000000000000..3a51855066b3ba8d30eea2d7eb3144c7cce1d2be Binary files /dev/null and b/data/textures/wood/wood_0049.png differ diff --git a/data/textures/wood/wood_0050.png b/data/textures/wood/wood_0050.png new file mode 100644 index 0000000000000000000000000000000000000000..b8087d98d2f1480a9cade029e6714a304767a73d Binary files /dev/null and b/data/textures/wood/wood_0050.png differ diff --git a/data/textures/wood/wood_0051.png b/data/textures/wood/wood_0051.png new file mode 100644 index 0000000000000000000000000000000000000000..291552eac5b332a312301c723afd14a1112609f9 Binary files /dev/null and b/data/textures/wood/wood_0051.png differ diff --git a/data/textures/wood/wood_0052.png b/data/textures/wood/wood_0052.png new file mode 100644 index 0000000000000000000000000000000000000000..fa9911012fecda2cd55301177a8db8ad450f06fc Binary files /dev/null and b/data/textures/wood/wood_0052.png differ diff --git a/data/textures/wood/wood_0053.png b/data/textures/wood/wood_0053.png new file mode 100644 index 0000000000000000000000000000000000000000..14bbcda46144134beb1fef9c31af202481a7e3fb Binary files /dev/null and b/data/textures/wood/wood_0053.png differ diff --git a/data/textures/wood/wood_0054.png b/data/textures/wood/wood_0054.png new file mode 100644 index 0000000000000000000000000000000000000000..76cdf1f0241284d471fbff29af176f6827324684 Binary files /dev/null and b/data/textures/wood/wood_0054.png differ diff --git a/data/textures/wood/wood_0055.png b/data/textures/wood/wood_0055.png new file mode 100644 index 0000000000000000000000000000000000000000..9fc32e74751fc1bcd9aeebc158501e4d6b6f1e5f Binary files /dev/null and b/data/textures/wood/wood_0055.png differ diff --git a/data/textures/wood/wood_0056.png b/data/textures/wood/wood_0056.png new file mode 100644 index 0000000000000000000000000000000000000000..dc1e6a531f78b1f2098f2b711e11fb0268753b79 Binary files /dev/null and b/data/textures/wood/wood_0056.png differ diff --git a/data/textures/wood/wood_0057.png b/data/textures/wood/wood_0057.png new file mode 100644 index 0000000000000000000000000000000000000000..190fe23c09076628f264a5bcd1a09996debaeb80 Binary files /dev/null and b/data/textures/wood/wood_0057.png differ diff --git a/data/textures/wood/wood_0058.png b/data/textures/wood/wood_0058.png new file mode 100644 index 0000000000000000000000000000000000000000..4757ead08f77dde1093c5f2d1cc71742c54d87a1 Binary files /dev/null and b/data/textures/wood/wood_0058.png differ diff --git a/data/textures/wood/wood_0059.png b/data/textures/wood/wood_0059.png new file mode 100644 index 0000000000000000000000000000000000000000..5c42408061fd8223fec4a823d38dd792d05a358f Binary files /dev/null and b/data/textures/wood/wood_0059.png differ diff --git a/data/textures/wood/wood_0060.png b/data/textures/wood/wood_0060.png new file mode 100644 index 0000000000000000000000000000000000000000..ee1be069fd671b39f2efcfb91f29aa2f796e0ef7 Binary files /dev/null and b/data/textures/wood/wood_0060.png differ diff --git a/data/textures/wood/wood_0061.png b/data/textures/wood/wood_0061.png new file mode 100644 index 0000000000000000000000000000000000000000..f85a4937f1ce6adf29d90df7e4bdde44016ef4cf Binary files /dev/null and b/data/textures/wood/wood_0061.png differ diff --git a/data/textures/wood/wood_0062.png b/data/textures/wood/wood_0062.png new file mode 100644 index 0000000000000000000000000000000000000000..306df59a6180d88cecbc872df8252a4c02dd3e1c Binary files /dev/null and b/data/textures/wood/wood_0062.png differ diff --git a/data/textures/wood/wood_0063.png b/data/textures/wood/wood_0063.png new file mode 100644 index 0000000000000000000000000000000000000000..3a213a8a7680adce7c5178ca218efb2a371fd2f8 Binary files /dev/null and b/data/textures/wood/wood_0063.png differ diff --git a/data/textures/wood/wood_0064.png b/data/textures/wood/wood_0064.png new file mode 100644 index 0000000000000000000000000000000000000000..43943840400685e8d2d2227ab5cbcab38fde8050 Binary files /dev/null and b/data/textures/wood/wood_0064.png differ diff --git a/data/textures/wood/wood_0065.png b/data/textures/wood/wood_0065.png new file mode 100644 index 0000000000000000000000000000000000000000..954e42fcf621601594b32433649cba005b3d4856 Binary files /dev/null and b/data/textures/wood/wood_0065.png differ diff --git a/data/textures/wood/wood_0066.png b/data/textures/wood/wood_0066.png new file mode 100644 index 0000000000000000000000000000000000000000..0d5744eef305c7924399224b52b9ba9a6d1b5413 Binary files /dev/null and b/data/textures/wood/wood_0066.png differ diff --git a/data/textures/wood/wood_0067.png b/data/textures/wood/wood_0067.png new file mode 100644 index 0000000000000000000000000000000000000000..aa1513bebcf5e6a151027c97aaeb750aec4202fe Binary files /dev/null and b/data/textures/wood/wood_0067.png differ diff --git a/data/textures/wood/wood_0068.png b/data/textures/wood/wood_0068.png new file mode 100644 index 0000000000000000000000000000000000000000..48a1743d116d961c3fd9bfb1191005a5d49854f6 Binary files /dev/null and b/data/textures/wood/wood_0068.png differ diff --git a/data/textures/wood/wood_0069.png b/data/textures/wood/wood_0069.png new file mode 100644 index 0000000000000000000000000000000000000000..6262427053ae95dbb738971951d3ac6163aa374c Binary files /dev/null and b/data/textures/wood/wood_0069.png differ diff --git a/data/textures/wood/wood_0070.png b/data/textures/wood/wood_0070.png new file mode 100644 index 0000000000000000000000000000000000000000..ba4a9ff1d7edaef064fda32cf95441ac4dc833cb Binary files /dev/null and b/data/textures/wood/wood_0070.png differ diff --git a/data/textures/wood/wood_0071.png b/data/textures/wood/wood_0071.png new file mode 100644 index 0000000000000000000000000000000000000000..9382752835b1e319606ab95e4e4fe80df9034a46 Binary files /dev/null and b/data/textures/wood/wood_0071.png differ diff --git a/data/textures/wood/wood_0072.png b/data/textures/wood/wood_0072.png new file mode 100644 index 0000000000000000000000000000000000000000..414ee7ffceece0d00bebcfa41d370604c387e154 Binary files /dev/null and b/data/textures/wood/wood_0072.png differ diff --git a/data/textures/wood/wood_0073.png b/data/textures/wood/wood_0073.png new file mode 100644 index 0000000000000000000000000000000000000000..29dce4d07369423b0a9eee237f949632899c6997 Binary files /dev/null and b/data/textures/wood/wood_0073.png differ diff --git a/data/textures/wood/wood_0074.png b/data/textures/wood/wood_0074.png new file mode 100644 index 0000000000000000000000000000000000000000..c8c02ed6657deb66d58f1d988c97b4647653c63f Binary files /dev/null and b/data/textures/wood/wood_0074.png differ diff --git a/data/textures/wood/wood_0075.png b/data/textures/wood/wood_0075.png new file mode 100644 index 0000000000000000000000000000000000000000..10346f5b678f97daed8cca215331fd5d26f8b139 Binary files /dev/null and b/data/textures/wood/wood_0075.png differ diff --git a/data/textures/wood/wood_0076.png b/data/textures/wood/wood_0076.png new file mode 100644 index 0000000000000000000000000000000000000000..5e89adc34c055476efd8624192273c6acab4ee4f Binary files /dev/null and b/data/textures/wood/wood_0076.png differ diff --git a/data/textures/wood/wood_0077.png b/data/textures/wood/wood_0077.png new file mode 100644 index 0000000000000000000000000000000000000000..c85c4b73451216d08a62fb5a36d9c5fb59e4ef63 Binary files /dev/null and b/data/textures/wood/wood_0077.png differ diff --git a/data/textures/wood/wood_0078.png b/data/textures/wood/wood_0078.png new file mode 100644 index 0000000000000000000000000000000000000000..17f1685466e7fe96ee3644b75f72cdf5f183a415 Binary files /dev/null and b/data/textures/wood/wood_0078.png differ diff --git a/data/textures/wood/wood_0079.png b/data/textures/wood/wood_0079.png new file mode 100644 index 0000000000000000000000000000000000000000..cc226ea4672da6b8dfdc251ae54dc567032e879c Binary files /dev/null and b/data/textures/wood/wood_0079.png differ diff --git a/data/textures/wood/wood_0080.png b/data/textures/wood/wood_0080.png new file mode 100644 index 0000000000000000000000000000000000000000..70d90641c12b04cebc95f436015916e5c109e7e9 Binary files /dev/null and b/data/textures/wood/wood_0080.png differ diff --git a/data/textures/wood/wood_0081.png b/data/textures/wood/wood_0081.png new file mode 100644 index 0000000000000000000000000000000000000000..e4c8abb610ad6e387126049075d4dbf2e148e61d Binary files /dev/null and b/data/textures/wood/wood_0081.png differ diff --git a/data/textures/wood/wood_0082.png b/data/textures/wood/wood_0082.png new file mode 100644 index 0000000000000000000000000000000000000000..4d87d4f0251b0d461407fbde224bb3c1cbcbde2b Binary files /dev/null and b/data/textures/wood/wood_0082.png differ diff --git a/data/textures/wood/wood_0083.png b/data/textures/wood/wood_0083.png new file mode 100644 index 0000000000000000000000000000000000000000..cf7eedff72b72688c707ccc9a139d8695b09b188 Binary files /dev/null and b/data/textures/wood/wood_0083.png differ diff --git a/data/textures/wood/wood_0084.png b/data/textures/wood/wood_0084.png new file mode 100644 index 0000000000000000000000000000000000000000..a36e174e64a683860075ddab846eaef9a027b519 Binary files /dev/null and b/data/textures/wood/wood_0084.png differ diff --git a/data/textures/wood/wood_0085.png b/data/textures/wood/wood_0085.png new file mode 100644 index 0000000000000000000000000000000000000000..3411624b3c42eaaeafc70b34d69b6ff3421df832 Binary files /dev/null and b/data/textures/wood/wood_0085.png differ diff --git a/data/textures/wood/wood_0086.png b/data/textures/wood/wood_0086.png new file mode 100644 index 0000000000000000000000000000000000000000..ba351bd692301d8fad66ae9b56394233162c3a92 Binary files /dev/null and b/data/textures/wood/wood_0086.png differ diff --git a/data/textures/wood/wood_0087.png b/data/textures/wood/wood_0087.png new file mode 100644 index 0000000000000000000000000000000000000000..4f945df1355572a6b6df23abca80f63ceb42ff4b Binary files /dev/null and b/data/textures/wood/wood_0087.png differ diff --git a/data/textures/wood/wood_0088.png b/data/textures/wood/wood_0088.png new file mode 100644 index 0000000000000000000000000000000000000000..11408fa7c428081f0e0dbe9e757a5e46826d12ea Binary files /dev/null and b/data/textures/wood/wood_0088.png differ diff --git a/data/textures/wood/wood_0089.png b/data/textures/wood/wood_0089.png new file mode 100644 index 0000000000000000000000000000000000000000..40ac6c4b4e56bf72b42d3262832cfb69f898b735 Binary files /dev/null and b/data/textures/wood/wood_0089.png differ diff --git a/data/textures/wood/wood_0090.png b/data/textures/wood/wood_0090.png new file mode 100644 index 0000000000000000000000000000000000000000..aa7354885a3c7086c0323da85862be39fc6ce9f1 Binary files /dev/null and b/data/textures/wood/wood_0090.png differ diff --git a/data/textures/wood/wood_0091.png b/data/textures/wood/wood_0091.png new file mode 100644 index 0000000000000000000000000000000000000000..fac1093e29f1f7ef6b7670912ed62d9c274c644f Binary files /dev/null and b/data/textures/wood/wood_0091.png differ diff --git a/data/textures/wood/wood_0092.png b/data/textures/wood/wood_0092.png new file mode 100644 index 0000000000000000000000000000000000000000..c456b647511f4946c5e260fe81cee488842b2c32 Binary files /dev/null and b/data/textures/wood/wood_0092.png differ diff --git a/data/textures/wood/wood_0093.png b/data/textures/wood/wood_0093.png new file mode 100644 index 0000000000000000000000000000000000000000..a6987d5f37ce5d2af3b4df9bd54ca220fd8f783f Binary files /dev/null and b/data/textures/wood/wood_0093.png differ diff --git a/data/textures/wood/wood_0094.png b/data/textures/wood/wood_0094.png new file mode 100644 index 0000000000000000000000000000000000000000..08a5c3a90d3802c9130b8a66a47bfd0f30e46544 Binary files /dev/null and b/data/textures/wood/wood_0094.png differ diff --git a/data/textures/wood/wood_0095.png b/data/textures/wood/wood_0095.png new file mode 100644 index 0000000000000000000000000000000000000000..42200413f644f03dde4cafe15108f574632a26ee Binary files /dev/null and b/data/textures/wood/wood_0095.png differ diff --git a/data/textures/wood/wood_0096.png b/data/textures/wood/wood_0096.png new file mode 100644 index 0000000000000000000000000000000000000000..847650cdb14fa51ac64311458e25130d0ae0f87a Binary files /dev/null and b/data/textures/wood/wood_0096.png differ diff --git a/data/textures/wood/wood_0097.png b/data/textures/wood/wood_0097.png new file mode 100644 index 0000000000000000000000000000000000000000..a25991cb4901f4fabc0cabe836b391aedfaa3c48 Binary files /dev/null and b/data/textures/wood/wood_0097.png differ diff --git a/data/textures/wood/wood_0098.png b/data/textures/wood/wood_0098.png new file mode 100644 index 0000000000000000000000000000000000000000..e16ad9dd4d404f9726244dfc079537189891f589 Binary files /dev/null and b/data/textures/wood/wood_0098.png differ diff --git a/data/textures/wood/wood_0099.png b/data/textures/wood/wood_0099.png new file mode 100644 index 0000000000000000000000000000000000000000..e46c221bd6bd2a523b6e74940e25b178b9bc1487 Binary files /dev/null and b/data/textures/wood/wood_0099.png differ diff --git a/data/textures/wood/wood_0100.png b/data/textures/wood/wood_0100.png new file mode 100644 index 0000000000000000000000000000000000000000..52fd97bf3e0bb2a70322f157503dc579e19e937a Binary files /dev/null and b/data/textures/wood/wood_0100.png differ diff --git a/data/textures/wood/wood_0101.png b/data/textures/wood/wood_0101.png new file mode 100644 index 0000000000000000000000000000000000000000..4d092a961e13c4f4773f3ac3b32c330373b04af4 Binary files /dev/null and b/data/textures/wood/wood_0101.png differ diff --git a/data/textures/wood/wood_0102.png b/data/textures/wood/wood_0102.png new file mode 100644 index 0000000000000000000000000000000000000000..58dc5dc946dab0af71ad7c3823d8ae6649e1256d Binary files /dev/null and b/data/textures/wood/wood_0102.png differ diff --git a/data/textures/wood/wood_0103.png b/data/textures/wood/wood_0103.png new file mode 100644 index 0000000000000000000000000000000000000000..3107ba60afa3186a3dc74f40639f9b2daf71e9be Binary files /dev/null and b/data/textures/wood/wood_0103.png differ diff --git a/data/textures/wood/wood_0104.png b/data/textures/wood/wood_0104.png new file mode 100644 index 0000000000000000000000000000000000000000..ef28e6643783996f7d8fac59065bc248efe829cb Binary files /dev/null and b/data/textures/wood/wood_0104.png differ diff --git a/data/textures/wood/wood_0105.png b/data/textures/wood/wood_0105.png new file mode 100644 index 0000000000000000000000000000000000000000..1b687c1b0eb2fc105b54a0f156557c827f6c904e Binary files /dev/null and b/data/textures/wood/wood_0105.png differ diff --git a/data/textures/wood/wood_0106.png b/data/textures/wood/wood_0106.png new file mode 100644 index 0000000000000000000000000000000000000000..5a542ecef365f994cbe2c31bcca82c7f5a51886e Binary files /dev/null and b/data/textures/wood/wood_0106.png differ diff --git a/data/textures/wood/wood_0107.png b/data/textures/wood/wood_0107.png new file mode 100644 index 0000000000000000000000000000000000000000..2f163051bcecc0209d9bfec3a3c7fa4c43064f2d Binary files /dev/null and b/data/textures/wood/wood_0107.png differ diff --git a/data/textures/wood/wood_0108.png b/data/textures/wood/wood_0108.png new file mode 100644 index 0000000000000000000000000000000000000000..8110ffe95dd3bc8bac9f2c7bf10863333e482f0d Binary files /dev/null and b/data/textures/wood/wood_0108.png differ diff --git a/data/textures/wood/wood_0109.png b/data/textures/wood/wood_0109.png new file mode 100644 index 0000000000000000000000000000000000000000..aa8885bbbd1c18e2bb6dac71a74eb39cb7df3812 Binary files /dev/null and b/data/textures/wood/wood_0109.png differ diff --git a/data/textures/wood/wood_0110.png b/data/textures/wood/wood_0110.png new file mode 100644 index 0000000000000000000000000000000000000000..5ad4566af33b4e97dcb4707866b9a76f3b8d03c2 Binary files /dev/null and b/data/textures/wood/wood_0110.png differ diff --git a/data/textures/wood/wood_0111.png b/data/textures/wood/wood_0111.png new file mode 100644 index 0000000000000000000000000000000000000000..71cd992481964974ee42b06ee3d35269e836ce45 Binary files /dev/null and b/data/textures/wood/wood_0111.png differ diff --git a/data/textures/wood/wood_0112.png b/data/textures/wood/wood_0112.png new file mode 100644 index 0000000000000000000000000000000000000000..bea43b54a0cd0d5d4cda32358e526e79aaefbc9f Binary files /dev/null and b/data/textures/wood/wood_0112.png differ diff --git a/data/textures/wood/wood_0113.png b/data/textures/wood/wood_0113.png new file mode 100644 index 0000000000000000000000000000000000000000..44ecf0ba63b690380a65e82ea7739b3a37b077d6 Binary files /dev/null and b/data/textures/wood/wood_0113.png differ diff --git a/data/textures/wood/wood_0114.png b/data/textures/wood/wood_0114.png new file mode 100644 index 0000000000000000000000000000000000000000..51c0e0b643f929070406bd501f42870919570a54 Binary files /dev/null and b/data/textures/wood/wood_0114.png differ diff --git a/data/textures/wood/wood_0115.png b/data/textures/wood/wood_0115.png new file mode 100644 index 0000000000000000000000000000000000000000..58e9c525f9adaf8ef537fdd0f8363c4dbd552155 Binary files /dev/null and b/data/textures/wood/wood_0115.png differ diff --git a/data/textures/wood/wood_0116.png b/data/textures/wood/wood_0116.png new file mode 100644 index 0000000000000000000000000000000000000000..6660dc3cbaf811635f4688267a8706059037f077 Binary files /dev/null and b/data/textures/wood/wood_0116.png differ diff --git a/data/textures/wood/wood_0117.png b/data/textures/wood/wood_0117.png new file mode 100644 index 0000000000000000000000000000000000000000..b336f71f4da3d8866d52d5e1284031a525b837b1 Binary files /dev/null and b/data/textures/wood/wood_0117.png differ diff --git a/data/textures/wood/wood_0118.png b/data/textures/wood/wood_0118.png new file mode 100644 index 0000000000000000000000000000000000000000..aab5f806b2f6ce415f526a1395f75d645ff22d7a Binary files /dev/null and b/data/textures/wood/wood_0118.png differ diff --git a/data/textures/wood/wood_0119.png b/data/textures/wood/wood_0119.png new file mode 100644 index 0000000000000000000000000000000000000000..b86af51185eacc24c13a6110f9c06a2c79421cb6 Binary files /dev/null and b/data/textures/wood/wood_0119.png differ diff --git a/data/textures/wood/wood_0120.png b/data/textures/wood/wood_0120.png new file mode 100644 index 0000000000000000000000000000000000000000..411eb847dafa5ff00db194309bef0c02b641d716 Binary files /dev/null and b/data/textures/wood/wood_0120.png differ diff --git a/data/textures/wood/wood_0121.png b/data/textures/wood/wood_0121.png new file mode 100644 index 0000000000000000000000000000000000000000..8414674742a777579794b5e115ed918ee615bf7e Binary files /dev/null and b/data/textures/wood/wood_0121.png differ diff --git a/data/textures/wood/wood_0122.png b/data/textures/wood/wood_0122.png new file mode 100644 index 0000000000000000000000000000000000000000..afbd952b7c3de0fafa10e02936f0b21aec27ea21 Binary files /dev/null and b/data/textures/wood/wood_0122.png differ diff --git a/data/textures/wood/wood_0123.png b/data/textures/wood/wood_0123.png new file mode 100644 index 0000000000000000000000000000000000000000..a15286798d0664b427438eb775623ba5f2e533ee Binary files /dev/null and b/data/textures/wood/wood_0123.png differ diff --git a/data/textures/wood/wood_0124.png b/data/textures/wood/wood_0124.png new file mode 100644 index 0000000000000000000000000000000000000000..361cc79a09ccdd614c6798fbf34d64f3cb2fd3c0 Binary files /dev/null and b/data/textures/wood/wood_0124.png differ diff --git a/data/textures/wood/wood_0125.png b/data/textures/wood/wood_0125.png new file mode 100644 index 0000000000000000000000000000000000000000..5b1163b468303994db7726d5f9ae86e6dd385a49 Binary files /dev/null and b/data/textures/wood/wood_0125.png differ diff --git a/data/textures/wood/wood_0126.png b/data/textures/wood/wood_0126.png new file mode 100644 index 0000000000000000000000000000000000000000..a79d151f353d4da6dc420accc50cc082f1f3eb12 Binary files /dev/null and b/data/textures/wood/wood_0126.png differ diff --git a/data/textures/wood/wood_0127.png b/data/textures/wood/wood_0127.png new file mode 100644 index 0000000000000000000000000000000000000000..c8cea1a3be83cd4e0e568b6d69882c44a2472bf0 Binary files /dev/null and b/data/textures/wood/wood_0127.png differ diff --git a/data/textures/wood/wood_0128.png b/data/textures/wood/wood_0128.png new file mode 100644 index 0000000000000000000000000000000000000000..24bdf9cb705ed07636f84ad1e2f04b6799a27d7d Binary files /dev/null and b/data/textures/wood/wood_0128.png differ diff --git a/data/textures/wood/wood_0129.png b/data/textures/wood/wood_0129.png new file mode 100644 index 0000000000000000000000000000000000000000..0f8cb2c41e67807a780939e59a4b2703313ba6b8 Binary files /dev/null and b/data/textures/wood/wood_0129.png differ diff --git a/data/textures/wood/wood_0130.png b/data/textures/wood/wood_0130.png new file mode 100644 index 0000000000000000000000000000000000000000..d57164365e0a4216548d1974a39140df2f2a9b95 Binary files /dev/null and b/data/textures/wood/wood_0130.png differ diff --git a/data/textures/wood/wood_0131.png b/data/textures/wood/wood_0131.png new file mode 100644 index 0000000000000000000000000000000000000000..b06ca818f673f571dc3570bf71dbb748b88d1bc5 Binary files /dev/null and b/data/textures/wood/wood_0131.png differ diff --git a/data/textures/wood/wood_0132.png b/data/textures/wood/wood_0132.png new file mode 100644 index 0000000000000000000000000000000000000000..619557a84049d35c87da3231969b0daa80ec7959 Binary files /dev/null and b/data/textures/wood/wood_0132.png differ diff --git a/data/textures/wood/wood_0133.png b/data/textures/wood/wood_0133.png new file mode 100644 index 0000000000000000000000000000000000000000..26bf9219188e3138b38cdd74512992d1d4dbec77 Binary files /dev/null and b/data/textures/wood/wood_0133.png differ diff --git a/data/textures/wood/wood_0134.png b/data/textures/wood/wood_0134.png new file mode 100644 index 0000000000000000000000000000000000000000..d945dec8287f21723494167a0cc3d72da67b99e6 Binary files /dev/null and b/data/textures/wood/wood_0134.png differ diff --git a/data/textures/wood/wood_0135.png b/data/textures/wood/wood_0135.png new file mode 100644 index 0000000000000000000000000000000000000000..c826585c02e0330efe2806194ea37d644eba4b2f Binary files /dev/null and b/data/textures/wood/wood_0135.png differ diff --git a/data/textures/wood/wood_0136.png b/data/textures/wood/wood_0136.png new file mode 100644 index 0000000000000000000000000000000000000000..99d95a24966af453a9172e66aed1037ef86f4786 Binary files /dev/null and b/data/textures/wood/wood_0136.png differ diff --git a/data/textures/wood/wood_0137.png b/data/textures/wood/wood_0137.png new file mode 100644 index 0000000000000000000000000000000000000000..aff9c01b633431887d393296a162054c03e2771c Binary files /dev/null and b/data/textures/wood/wood_0137.png differ diff --git a/data/textures/wood/wood_0138.png b/data/textures/wood/wood_0138.png new file mode 100644 index 0000000000000000000000000000000000000000..77b0ce7fdd2eb57484dfa13743e9f2b7aada8e1c Binary files /dev/null and b/data/textures/wood/wood_0138.png differ diff --git a/data/textures/wood/wood_0139.png b/data/textures/wood/wood_0139.png new file mode 100644 index 0000000000000000000000000000000000000000..07bade08da8436fd4f31b440e14b569d461739a2 Binary files /dev/null and b/data/textures/wood/wood_0139.png differ diff --git a/data/textures/wood/wood_0140.png b/data/textures/wood/wood_0140.png new file mode 100644 index 0000000000000000000000000000000000000000..9716de28d5ec226223ec02b607d5c5b8a347e008 Binary files /dev/null and b/data/textures/wood/wood_0140.png differ diff --git a/data/textures/wood/wood_0141.png b/data/textures/wood/wood_0141.png new file mode 100644 index 0000000000000000000000000000000000000000..6739d7faf4d926a3059d2307dd70b02e72f3fdfa Binary files /dev/null and b/data/textures/wood/wood_0141.png differ diff --git a/data/textures/wood/wood_0142.png b/data/textures/wood/wood_0142.png new file mode 100644 index 0000000000000000000000000000000000000000..d99f0a4eef76c99923c0c220a4f1dd7a36e521a7 Binary files /dev/null and b/data/textures/wood/wood_0142.png differ diff --git a/data/textures/wood/wood_0143.png b/data/textures/wood/wood_0143.png new file mode 100644 index 0000000000000000000000000000000000000000..b2c17627a9be88531d576e8aa99cd02c1bab35df Binary files /dev/null and b/data/textures/wood/wood_0143.png differ diff --git a/data/textures/wood/wood_0144.png b/data/textures/wood/wood_0144.png new file mode 100644 index 0000000000000000000000000000000000000000..ac779d77125f418f4376d339f93515df8006afd6 Binary files /dev/null and b/data/textures/wood/wood_0144.png differ diff --git a/data/textures/wood/wood_0145.png b/data/textures/wood/wood_0145.png new file mode 100644 index 0000000000000000000000000000000000000000..e476b2107cdd680347aa55560776efdc715614d3 Binary files /dev/null and b/data/textures/wood/wood_0145.png differ diff --git a/data/textures/wood/wood_0146.png b/data/textures/wood/wood_0146.png new file mode 100644 index 0000000000000000000000000000000000000000..b72ae088327a68b4c940c70d288b6fa46bc4db53 Binary files /dev/null and b/data/textures/wood/wood_0146.png differ diff --git a/data/textures/wood/wood_0147.png b/data/textures/wood/wood_0147.png new file mode 100644 index 0000000000000000000000000000000000000000..6b6bf45971ad5b2de96c2512fbb188253489a4e0 Binary files /dev/null and b/data/textures/wood/wood_0147.png differ diff --git a/data/textures/wood/wood_0148.png b/data/textures/wood/wood_0148.png new file mode 100644 index 0000000000000000000000000000000000000000..ae48197b28a2923a7e4b6cd6e5cf5964c3a52335 Binary files /dev/null and b/data/textures/wood/wood_0148.png differ diff --git a/data/textures/wood/wood_0149.png b/data/textures/wood/wood_0149.png new file mode 100644 index 0000000000000000000000000000000000000000..bf06c406f53f6a31cd64c79e3d0b26c7d7bab4e0 Binary files /dev/null and b/data/textures/wood/wood_0149.png differ diff --git a/data/textures/wood/wood_0150.png b/data/textures/wood/wood_0150.png new file mode 100644 index 0000000000000000000000000000000000000000..fe711d4268799ddcec21d2890b744fd2bd6793c2 Binary files /dev/null and b/data/textures/wood/wood_0150.png differ diff --git a/data/textures/wood/wood_0151.png b/data/textures/wood/wood_0151.png new file mode 100644 index 0000000000000000000000000000000000000000..31748adb546c88965211270577bcbe799f686edc Binary files /dev/null and b/data/textures/wood/wood_0151.png differ diff --git a/data/textures/wood/wood_0152.png b/data/textures/wood/wood_0152.png new file mode 100644 index 0000000000000000000000000000000000000000..6a2dd0085df4cdeff87dcf78d17c6ac55ab4b8a9 Binary files /dev/null and b/data/textures/wood/wood_0152.png differ diff --git a/data/textures/wood/wood_0153.png b/data/textures/wood/wood_0153.png new file mode 100644 index 0000000000000000000000000000000000000000..3cd0a53bdd8ef8ec406458ed230722279101e59a Binary files /dev/null and b/data/textures/wood/wood_0153.png differ diff --git a/data/textures/wood/wood_0154.png b/data/textures/wood/wood_0154.png new file mode 100644 index 0000000000000000000000000000000000000000..e5d470e7ed4579fdeb0c63ddaeca440b36e64de1 Binary files /dev/null and b/data/textures/wood/wood_0154.png differ diff --git a/data/textures/wood/wood_0155.png b/data/textures/wood/wood_0155.png new file mode 100644 index 0000000000000000000000000000000000000000..e597cb9580b4186495a8c00d2b543d2cbd210a46 Binary files /dev/null and b/data/textures/wood/wood_0155.png differ diff --git a/data/textures/wood/wood_0156.png b/data/textures/wood/wood_0156.png new file mode 100644 index 0000000000000000000000000000000000000000..fbfb910a6dcf15e19ea005b0744bee90401acab5 Binary files /dev/null and b/data/textures/wood/wood_0156.png differ diff --git a/data/textures/wood/wood_0157.png b/data/textures/wood/wood_0157.png new file mode 100644 index 0000000000000000000000000000000000000000..6a550d014dadb39c4e396974479e45bd41a26954 Binary files /dev/null and b/data/textures/wood/wood_0157.png differ diff --git a/data/textures/wood/wood_0158.png b/data/textures/wood/wood_0158.png new file mode 100644 index 0000000000000000000000000000000000000000..b9a6ac8d409df0964fd47f0dcf3a930ab1f4078b Binary files /dev/null and b/data/textures/wood/wood_0158.png differ diff --git a/data/textures/wood/wood_0159.png b/data/textures/wood/wood_0159.png new file mode 100644 index 0000000000000000000000000000000000000000..1ecf987ee4b349347d72803b96ad065060ec3518 Binary files /dev/null and b/data/textures/wood/wood_0159.png differ diff --git a/data/textures/wood/wood_0160.png b/data/textures/wood/wood_0160.png new file mode 100644 index 0000000000000000000000000000000000000000..a5a7f456bd1a04feb281defaf3f73062230a7ebb Binary files /dev/null and b/data/textures/wood/wood_0160.png differ diff --git a/data/textures/wood/wood_0161.png b/data/textures/wood/wood_0161.png new file mode 100644 index 0000000000000000000000000000000000000000..b5ed6bfa92af7b50b57e2c35a2e5daeeae7ee37c Binary files /dev/null and b/data/textures/wood/wood_0161.png differ diff --git a/data/textures/wood/wood_0162.png b/data/textures/wood/wood_0162.png new file mode 100644 index 0000000000000000000000000000000000000000..a0a19ed9576cdd3454a29c79cad9935777613a76 Binary files /dev/null and b/data/textures/wood/wood_0162.png differ diff --git a/data/textures/wood/wood_0163.png b/data/textures/wood/wood_0163.png new file mode 100644 index 0000000000000000000000000000000000000000..5db96644d19909447fe95a05075f14f010cadcca Binary files /dev/null and b/data/textures/wood/wood_0163.png differ diff --git a/data/textures/wood/wood_0164.png b/data/textures/wood/wood_0164.png new file mode 100644 index 0000000000000000000000000000000000000000..3d578e9a2f80427e1292f4a89bf81ac162e59048 Binary files /dev/null and b/data/textures/wood/wood_0164.png differ diff --git a/data/textures/wood/wood_0165.png b/data/textures/wood/wood_0165.png new file mode 100644 index 0000000000000000000000000000000000000000..000f6e830eb5b66ea1e5087308b5051937c3424f Binary files /dev/null and b/data/textures/wood/wood_0165.png differ diff --git a/data/textures/wood/wood_0166.png b/data/textures/wood/wood_0166.png new file mode 100644 index 0000000000000000000000000000000000000000..3730b1f4f71c54e3ff02df24fe66be24861eaa47 Binary files /dev/null and b/data/textures/wood/wood_0166.png differ diff --git a/data/textures/wood/wood_0167.png b/data/textures/wood/wood_0167.png new file mode 100644 index 0000000000000000000000000000000000000000..ef099d1917661694cbb92ec26114d03585277df5 Binary files /dev/null and b/data/textures/wood/wood_0167.png differ diff --git a/data/textures/wood/wood_0168.png b/data/textures/wood/wood_0168.png new file mode 100644 index 0000000000000000000000000000000000000000..ccd5bb75bf4db1480aa71c5fe26b7410c1b4697c Binary files /dev/null and b/data/textures/wood/wood_0168.png differ diff --git a/data/textures/wood/wood_0169.png b/data/textures/wood/wood_0169.png new file mode 100644 index 0000000000000000000000000000000000000000..c4c93da73d6f12aaedf965cdad3d2ddfe3a5e03c Binary files /dev/null and b/data/textures/wood/wood_0169.png differ diff --git a/data/textures/wood/wood_0170.png b/data/textures/wood/wood_0170.png new file mode 100644 index 0000000000000000000000000000000000000000..6dee4278bb9024351f452b363acf01b5587b1323 Binary files /dev/null and b/data/textures/wood/wood_0170.png differ diff --git a/data/textures/wood/wood_0171.png b/data/textures/wood/wood_0171.png new file mode 100644 index 0000000000000000000000000000000000000000..98e2c35542f2a549e5d0eba1a84e24f887e003b8 Binary files /dev/null and b/data/textures/wood/wood_0171.png differ diff --git a/data/textures/wood/wood_0172.png b/data/textures/wood/wood_0172.png new file mode 100644 index 0000000000000000000000000000000000000000..628abccab9a404521f187614bf435ebc664b11b8 Binary files /dev/null and b/data/textures/wood/wood_0172.png differ diff --git a/data/textures/wood/wood_0173.png b/data/textures/wood/wood_0173.png new file mode 100644 index 0000000000000000000000000000000000000000..bc88991bece88605715615c7087823fc0febde88 Binary files /dev/null and b/data/textures/wood/wood_0173.png differ diff --git a/data/textures/wood/wood_0174.png b/data/textures/wood/wood_0174.png new file mode 100644 index 0000000000000000000000000000000000000000..8004d65eb39066ca1a45ee110d65646bf2cbce3d Binary files /dev/null and b/data/textures/wood/wood_0174.png differ diff --git a/data/textures/wood/wood_0175.png b/data/textures/wood/wood_0175.png new file mode 100644 index 0000000000000000000000000000000000000000..d9a03612cfe98f71192db012b0fe5c03c23478f3 Binary files /dev/null and b/data/textures/wood/wood_0175.png differ diff --git a/data/textures/wood/wood_0176.png b/data/textures/wood/wood_0176.png new file mode 100644 index 0000000000000000000000000000000000000000..253b9bc29925c3cf4b31a72ae3b4b77a61c1f7eb Binary files /dev/null and b/data/textures/wood/wood_0176.png differ diff --git a/data/textures/wood/wood_0177.png b/data/textures/wood/wood_0177.png new file mode 100644 index 0000000000000000000000000000000000000000..04e490984ba17f88a43c21543cfc024179e0f2ed Binary files /dev/null and b/data/textures/wood/wood_0177.png differ diff --git a/data/textures/wood/wood_0178.png b/data/textures/wood/wood_0178.png new file mode 100644 index 0000000000000000000000000000000000000000..86b2c40e6175b87c81fe1699323b3b4efa3b5319 Binary files /dev/null and b/data/textures/wood/wood_0178.png differ diff --git a/data/textures/wood/wood_0179.png b/data/textures/wood/wood_0179.png new file mode 100644 index 0000000000000000000000000000000000000000..db70d2076ad4779422cf37dfbc68eadfa05cc350 Binary files /dev/null and b/data/textures/wood/wood_0179.png differ diff --git a/data/textures/wood/wood_0180.png b/data/textures/wood/wood_0180.png new file mode 100644 index 0000000000000000000000000000000000000000..9334487aa0573a7b846d3ef023603edbfec35f84 Binary files /dev/null and b/data/textures/wood/wood_0180.png differ diff --git a/data/textures/wood/wood_0181.png b/data/textures/wood/wood_0181.png new file mode 100644 index 0000000000000000000000000000000000000000..803d8bf59075c1226bbbcd1bba1761d4bffc3738 Binary files /dev/null and b/data/textures/wood/wood_0181.png differ diff --git a/data/textures/wood/wood_0182.png b/data/textures/wood/wood_0182.png new file mode 100644 index 0000000000000000000000000000000000000000..fb220c2ea538ec14e96857e626d65d594241ff46 Binary files /dev/null and b/data/textures/wood/wood_0182.png differ diff --git a/data/textures/wood/wood_0183.png b/data/textures/wood/wood_0183.png new file mode 100644 index 0000000000000000000000000000000000000000..d93945e009e4a344dda31e385fae27c28328e814 Binary files /dev/null and b/data/textures/wood/wood_0183.png differ diff --git a/data/textures/wood/wood_0184.png b/data/textures/wood/wood_0184.png new file mode 100644 index 0000000000000000000000000000000000000000..b11cdd58ad1bf26384ed5f98e0b147b7eda1cefc Binary files /dev/null and b/data/textures/wood/wood_0184.png differ diff --git a/data/textures/wood/wood_0185.png b/data/textures/wood/wood_0185.png new file mode 100644 index 0000000000000000000000000000000000000000..0d46155c9cc7d9ce2c13c53b48b6aeddd60dc93b Binary files /dev/null and b/data/textures/wood/wood_0185.png differ diff --git a/data/textures/wood/wood_0186.png b/data/textures/wood/wood_0186.png new file mode 100644 index 0000000000000000000000000000000000000000..1c4393cee25b60d5680ab72f4a5db1da7c0f8280 Binary files /dev/null and b/data/textures/wood/wood_0186.png differ diff --git a/data/textures/wood/wood_0187.png b/data/textures/wood/wood_0187.png new file mode 100644 index 0000000000000000000000000000000000000000..e615918f81fef92780b1db4466469d47c9dd4c75 Binary files /dev/null and b/data/textures/wood/wood_0187.png differ diff --git a/data/textures/wood/wood_0188.png b/data/textures/wood/wood_0188.png new file mode 100644 index 0000000000000000000000000000000000000000..cd7fe57c7f6fe2b68014ca59aec07558c66c2181 Binary files /dev/null and b/data/textures/wood/wood_0188.png differ diff --git a/data/textures/wood/wood_0189.png b/data/textures/wood/wood_0189.png new file mode 100644 index 0000000000000000000000000000000000000000..2712df69e4d012faea9d02578051cf5c3cac429a Binary files /dev/null and b/data/textures/wood/wood_0189.png differ diff --git a/data/textures/wood/wood_0190.png b/data/textures/wood/wood_0190.png new file mode 100644 index 0000000000000000000000000000000000000000..1105c157dde7fb3efa4b3973430a721df6274f18 Binary files /dev/null and b/data/textures/wood/wood_0190.png differ diff --git a/data/textures/wood/wood_0191.png b/data/textures/wood/wood_0191.png new file mode 100644 index 0000000000000000000000000000000000000000..bb045d809ad71098c4209d79f3780217989382cc Binary files /dev/null and b/data/textures/wood/wood_0191.png differ diff --git a/data/textures/wood/wood_0192.png b/data/textures/wood/wood_0192.png new file mode 100644 index 0000000000000000000000000000000000000000..7d549c2d3423e813ea6fb8088eb2233dd8d209ad Binary files /dev/null and b/data/textures/wood/wood_0192.png differ diff --git a/data/textures/wood/wood_0193.png b/data/textures/wood/wood_0193.png new file mode 100644 index 0000000000000000000000000000000000000000..786ff6a11168722bdbe47b03c1699098b2a8558d Binary files /dev/null and b/data/textures/wood/wood_0193.png differ diff --git a/data/textures/wood/wood_0194.png b/data/textures/wood/wood_0194.png new file mode 100644 index 0000000000000000000000000000000000000000..f0694a2080e1d9bd6b702df37e6bf7d2fb8f0cb9 Binary files /dev/null and b/data/textures/wood/wood_0194.png differ diff --git a/data/textures/wood/wood_0195.png b/data/textures/wood/wood_0195.png new file mode 100644 index 0000000000000000000000000000000000000000..0b332d44ddc3d2a56afbdeef9511c88612076015 Binary files /dev/null and b/data/textures/wood/wood_0195.png differ diff --git a/data/textures/wood/wood_0196.png b/data/textures/wood/wood_0196.png new file mode 100644 index 0000000000000000000000000000000000000000..a32a00547c5f5270a25c33f62d8125161f55b6cf Binary files /dev/null and b/data/textures/wood/wood_0196.png differ diff --git a/data/textures/wood/wood_0197.png b/data/textures/wood/wood_0197.png new file mode 100644 index 0000000000000000000000000000000000000000..e5504b584b9e03f3d7985cbb6663945774696e35 Binary files /dev/null and b/data/textures/wood/wood_0197.png differ diff --git a/data/textures/wood/wood_0198.png b/data/textures/wood/wood_0198.png new file mode 100644 index 0000000000000000000000000000000000000000..21720348700eb8a32fba76e7b62da381c7c4a0e1 Binary files /dev/null and b/data/textures/wood/wood_0198.png differ diff --git a/data/textures/wood/wood_0199.png b/data/textures/wood/wood_0199.png new file mode 100644 index 0000000000000000000000000000000000000000..b0ae679ae74a9fb610b79aae77deca8f6f5f15e8 Binary files /dev/null and b/data/textures/wood/wood_0199.png differ diff --git a/generate_dataset.py b/generate_dataset.py new file mode 100644 index 0000000000000000000000000000000000000000..ec0cc88f8d3daac88bf683bf3fe98280e326739a --- /dev/null +++ b/generate_dataset.py @@ -0,0 +1,152 @@ +""" +Procedurally generate a synthetic texture dataset for DCGAN training. +Generates 5 texture types: wood, marble, fabric, brick, noise. +Each type produces 200 images → 1000 total, saved to data/textures//. +""" +import os +import random +import numpy as np +from PIL import Image, ImageFilter, ImageDraw + +IMG_SIZE = 64 +NUM_PER_CLASS = 200 +OUTPUT_DIR = os.path.join("data", "textures") + +TEXTURE_TYPES = ["wood", "marble", "fabric", "brick", "noise"] + + +def generate_wood(size=IMG_SIZE): + """Simulate wood grain using sine waves + noise.""" + arr = np.zeros((size, size, 3), dtype=np.uint8) + freq = random.uniform(3, 8) + phase = random.uniform(0, np.pi * 2) + for y in range(size): + for x in range(size): + grain = np.sin(freq * y / size * np.pi * 2 + phase + random.gauss(0, 0.05)) + r = int(np.clip(120 + 60 * grain + random.randint(-10, 10), 80, 200)) + g = int(np.clip(70 + 30 * grain + random.randint(-10, 10), 40, 130)) + b = int(np.clip(30 + 10 * grain + random.randint(-5, 5), 10, 70)) + arr[y, x] = [r, g, b] + img = Image.fromarray(arr) + img = img.filter(ImageFilter.GaussianBlur(radius=0.5)) + return img + + +def generate_marble(size=IMG_SIZE): + """Simulate marble veins using Perlin-like noise.""" + arr = np.zeros((size, size, 3), dtype=np.uint8) + scale = random.uniform(0.05, 0.15) + for y in range(size): + for x in range(size): + val = np.sin(x * scale + y * scale * 0.5 + random.gauss(0, 0.3)) * 0.5 + 0.5 + base = int(200 + 40 * val) + r = int(np.clip(base + random.randint(-5, 5), 150, 255)) + g = int(np.clip(base - 10 + random.randint(-5, 5), 140, 245)) + b = int(np.clip(base - 5 + random.randint(-5, 5), 145, 250)) + arr[y, x] = [r, g, b] + img = Image.fromarray(arr) + img = img.filter(ImageFilter.GaussianBlur(radius=0.3)) + return img + + +def generate_fabric(size=IMG_SIZE): + """Simulate woven fabric using a grid pattern.""" + arr = np.zeros((size, size, 3), dtype=np.uint8) + thread_size = random.randint(3, 6) + hue_r = random.randint(50, 200) + hue_g = random.randint(50, 200) + hue_b = random.randint(50, 200) + for y in range(size): + for x in range(size): + is_warp = (x // thread_size) % 2 == 0 + is_weft = (y // thread_size) % 2 == 0 + if is_warp and not is_weft: + factor = 1.2 + elif not is_warp and is_weft: + factor = 0.8 + else: + factor = 1.0 + r = int(np.clip(hue_r * factor + random.randint(-5, 5), 0, 255)) + g = int(np.clip(hue_g * factor + random.randint(-5, 5), 0, 255)) + b = int(np.clip(hue_b * factor + random.randint(-5, 5), 0, 255)) + arr[y, x] = [r, g, b] + return Image.fromarray(arr) + + +def generate_brick(size=IMG_SIZE): + """Simulate brick wall pattern.""" + img = Image.new("RGB", (size, size), color=(180, 80, 50)) + draw = ImageDraw.Draw(img) + brick_h = random.randint(8, 12) + brick_w = random.randint(16, 24) + mortar_color = (200, 190, 180) + for row in range(size // brick_h + 1): + y = row * brick_h + offset = (brick_w // 2) if row % 2 else 0 + # Horizontal mortar line + draw.line([(0, y), (size, y)], fill=mortar_color, width=1) + # Vertical mortar lines + for col in range(-1, size // brick_w + 2): + x = col * brick_w + offset + draw.line([(x, y), (x, y + brick_h)], fill=mortar_color, width=1) + # Add slight noise + arr = np.array(img) + noise = np.random.randint(-15, 15, arr.shape, dtype=np.int16) + arr = np.clip(arr.astype(np.int16) + noise, 0, 255).astype(np.uint8) + return Image.fromarray(arr) + + +def generate_noise(size=IMG_SIZE): + """Generate colorful noise texture.""" + mode = random.choice(["perlin_like", "color_bands", "static"]) + if mode == "static": + arr = np.random.randint(0, 255, (size, size, 3), dtype=np.uint8) + elif mode == "color_bands": + arr = np.zeros((size, size, 3), dtype=np.uint8) + for y in range(size): + r = int((np.sin(y * 0.3) * 0.5 + 0.5) * 255) + g = int((np.cos(y * 0.2) * 0.5 + 0.5) * 255) + b = int((np.sin(y * 0.5 + 1) * 0.5 + 0.5) * 255) + arr[y, :] = [r, g, b] + noise = np.random.randint(-30, 30, arr.shape, dtype=np.int16) + arr = np.clip(arr.astype(np.int16) + noise, 0, 255).astype(np.uint8) + else: + arr = np.zeros((size, size, 3), dtype=np.uint8) + scale = random.uniform(0.1, 0.3) + for y in range(size): + for x in range(size): + v = int((np.sin(x * scale) * np.cos(y * scale) * 0.5 + 0.5) * 255) + arr[y, x] = [v, int(v * 0.7), int(v * 0.4)] + img = Image.fromarray(arr) + img = img.filter(ImageFilter.GaussianBlur(radius=0.5)) + return img + + +GENERATORS = { + "wood": generate_wood, + "marble": generate_marble, + "fabric": generate_fabric, + "brick": generate_brick, + "noise": generate_noise, +} + + +def main(): + total = 0 + for texture_type in TEXTURE_TYPES: + out_dir = os.path.join(OUTPUT_DIR, texture_type) + os.makedirs(out_dir, exist_ok=True) + gen_fn = GENERATORS[texture_type] + print(f"Generating {NUM_PER_CLASS} '{texture_type}' textures...") + for i in range(NUM_PER_CLASS): + img = gen_fn(IMG_SIZE) + img.save(os.path.join(out_dir, f"{texture_type}_{i:04d}.png")) + total += 1 + print(f" OK Saved {NUM_PER_CLASS} images to {out_dir}") + + print(f"\n Dataset generation complete! Total images: {total}") + print(f" Saved to: {os.path.abspath(OUTPUT_DIR)}") + + +if __name__ == "__main__": + main() diff --git a/model.py b/model.py new file mode 100644 index 0000000000000000000000000000000000000000..7ac4ff998d4d7961315efb13e3198f6f6ae8dfb2 --- /dev/null +++ b/model.py @@ -0,0 +1,100 @@ +""" +DCGAN Generator and Discriminator for 64x64 texture image generation. +""" +import torch +import torch.nn as nn + + +# Latent vector size +LATENT_DIM = 100 +# Number of feature maps in generator +NGF = 64 +# Number of feature maps in discriminator +NDF = 64 +# Number of color channels +NC = 3 + + +class Generator(nn.Module): + """ + DCGAN Generator: maps a latent vector (100-dim) to a 64x64 RGB image. + Architecture: Linear -> Reshape -> TransposedConv blocks -> Tanh + """ + def __init__(self, latent_dim=LATENT_DIM, ngf=NGF, nc=NC): + super(Generator, self).__init__() + self.main = nn.Sequential( + # Input: latent_dim x 1 x 1 + nn.ConvTranspose2d(latent_dim, ngf * 8, 4, 1, 0, bias=False), + nn.BatchNorm2d(ngf * 8), + nn.ReLU(True), + # State: (ngf*8) x 4 x 4 + + nn.ConvTranspose2d(ngf * 8, ngf * 4, 4, 2, 1, bias=False), + nn.BatchNorm2d(ngf * 4), + nn.ReLU(True), + # State: (ngf*4) x 8 x 8 + + nn.ConvTranspose2d(ngf * 4, ngf * 2, 4, 2, 1, bias=False), + nn.BatchNorm2d(ngf * 2), + nn.ReLU(True), + # State: (ngf*2) x 16 x 16 + + nn.ConvTranspose2d(ngf * 2, ngf, 4, 2, 1, bias=False), + nn.BatchNorm2d(ngf), + nn.ReLU(True), + # State: (ngf) x 32 x 32 + + nn.ConvTranspose2d(ngf, nc, 4, 2, 1, bias=False), + nn.Tanh() + # Output: nc x 64 x 64 + ) + + def forward(self, x): + return self.main(x) + + +class Discriminator(nn.Module): + """ + DCGAN Discriminator: classifies 64x64 RGB images as real or fake. + Architecture: Conv blocks -> Sigmoid + """ + def __init__(self, ndf=NDF, nc=NC): + super(Discriminator, self).__init__() + self.main = nn.Sequential( + # Input: nc x 64 x 64 + nn.Conv2d(nc, ndf, 4, 2, 1, bias=False), + nn.LeakyReLU(0.2, inplace=True), + # State: ndf x 32 x 32 + + nn.Conv2d(ndf, ndf * 2, 4, 2, 1, bias=False), + nn.BatchNorm2d(ndf * 2), + nn.LeakyReLU(0.2, inplace=True), + # State: (ndf*2) x 16 x 16 + + nn.Conv2d(ndf * 2, ndf * 4, 4, 2, 1, bias=False), + nn.BatchNorm2d(ndf * 4), + nn.LeakyReLU(0.2, inplace=True), + # State: (ndf*4) x 8 x 8 + + nn.Conv2d(ndf * 4, ndf * 8, 4, 2, 1, bias=False), + nn.BatchNorm2d(ndf * 8), + nn.LeakyReLU(0.2, inplace=True), + # State: (ndf*8) x 4 x 4 + + nn.Conv2d(ndf * 8, 1, 4, 1, 0, bias=False), + nn.Sigmoid() + # Output: 1 x 1 x 1 + ) + + def forward(self, x): + return self.main(x).view(-1, 1).squeeze(1) + + +def weights_init(m): + """Initialize weights from a normal distribution (DCGAN paper recommendation).""" + classname = m.__class__.__name__ + if classname.find('Conv') != -1: + nn.init.normal_(m.weight.data, 0.0, 0.02) + elif classname.find('BatchNorm') != -1: + nn.init.normal_(m.weight.data, 1.0, 0.02) + nn.init.constant_(m.bias.data, 0) diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..9058ad1dc975d7dab63f595773899d4b316f8636 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +torch +torchvision +flask +Pillow +numpy diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000000000000000000000000000000000000..e585e905784006d7b00d1b87705bc950713de5e0 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,334 @@ + + + + + + AI Texture Generator + + + + + + +
+ +
+ +
+
+

GenTex AI

+

Procedural Texture Generator

+
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ + +
+ + +
+ Generated Texture +
+
+
+ + +
+
+ + + + diff --git a/test_app.py b/test_app.py new file mode 100644 index 0000000000000000000000000000000000000000..055c81e533c2c52a606a2a6fe166bccba0f202ff --- /dev/null +++ b/test_app.py @@ -0,0 +1,45 @@ +import requests +import base64 +from PIL import Image +import io + +URL = "http://127.0.0.1:5000/generate" + +def test_generation(): + print(f"Testing {URL}...") + try: + # Test Wood Texture + payload = { + "texture_type": "wood", + "seed": 42, + "creativity": 1.0 + } + response = requests.post(URL, data=payload) + + if response.status_code == 200: + data = response.json() + if "image" in data: + print("✅ Request successful. Image data received.") + + # Decode image + img_data = data["image"].split(",")[1] + img_bytes = base64.b64decode(img_data) + img = Image.open(io.BytesIO(img_bytes)) + + img.save("test_output.png") + print(f"✅ Image saved to test_output.png (Size: {img.size})") + return True + else: + print("❌ Response missing 'image' field:", data) + else: + print(f"❌ Request failed with status {response.status_code}: {response.text}") + + except requests.exceptions.ConnectionError: + print("❌ Could not connect to the server. Is app.py running?") + except Exception as e: + print(f"❌ Error: {e}") + + return False + +if __name__ == "__main__": + test_generation() diff --git a/train.py b/train.py new file mode 100644 index 0000000000000000000000000000000000000000..a821817beeff7461cc9e869b1bf24b8a74cfc07f --- /dev/null +++ b/train.py @@ -0,0 +1,130 @@ +import os +import random +import torch +import torch.nn as nn +import torch.optim as optim +import torchvision.datasets as dset +import torchvision.transforms as transforms +import torchvision.utils as vutils +from model import Generator, Discriminator, weights_init + +# Configuration +DATAROOT = "data/textures" +WORKERS = 0 # 0 for Windows compatibility +BATCH_SIZE = 32 +IMAGE_SIZE = 64 +NC = 3 +NZ = 100 +NGF = 64 +NDF = 64 +NUM_EPOCHS = 50 # Quick training for demo +LR = 0.0002 +BETA1 = 0.5 +TEXTURE_TYPES = ["wood", "marble", "fabric", "brick", "noise"] + +def train_model(texture_type): + print(f"\n🚀 Starting training for: {texture_type}") + + # Path to specific texture data + # We need a structure like root/class/img.png for ImageFolder + # But our generate_dataset.py creates data/textures/wood/*.png + # So to train 'wood', we need data/textures_wood/wood/*.png? + # Or just use the 'wood' folder but ImageFolder expects a root with subfolders. + # Hack: We can use a custom Dataset or just point ImageFolder to 'data/textures' and filter? + # Better: Point ImageFolder to 'data/textures' and use 'classes' argument? + # Actually ImageFolder loads ALL classes. + # To train specific models, we need to filter the dataset. + + dataset = dset.ImageFolder(root=DATAROOT, + transform=transforms.Compose([ + transforms.Resize(IMAGE_SIZE), + transforms.CenterCrop(IMAGE_SIZE), + transforms.ToTensor(), + transforms.Normalize((0.5, 0.5, 0.5), (0.5, 0.5, 0.5)), + ])) + + # Filter dataset indices for the current texture type + # ImageFolder.class_to_idx gives {'brick': 0, 'fabric': 1, ...} + target_idx = dataset.class_to_idx[texture_type] + indices = [i for i, (path, label) in enumerate(dataset.samples) if label == target_idx] + + subset = torch.utils.data.Subset(dataset, indices) + dataloader = torch.utils.data.DataLoader(subset, batch_size=BATCH_SIZE, + shuffle=True, num_workers=WORKERS) + + device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu") + print(f" Using device: {device}") + + # Initialize models + netG = Generator(NZ, NGF, NC).to(device) + netG.apply(weights_init) + + netD = Discriminator(NDF, NC).to(device) + netD.apply(weights_init) + + criterion = nn.BCELoss() + + fixed_noise = torch.randn(64, NZ, 1, 1, device=device) + real_label = 1. + fake_label = 0. + + optimizerD = optim.Adam(netD.parameters(), lr=LR, betas=(BETA1, 0.999)) + optimizerG = optim.Adam(netG.parameters(), lr=LR, betas=(BETA1, 0.999)) + + print(f" Training {len(subset)} images...") + + for epoch in range(NUM_EPOCHS): + errorG = 0.0 + errorD = 0.0 + + for i, data in enumerate(dataloader, 0): + ############################ + # (1) Update D network: maximize log(D(x)) + log(1 - D(G(z))) + ########################### + ## Train with all-real batch + netD.zero_grad() + real_cpu = data[0].to(device) + b_size = real_cpu.size(0) + label = torch.full((b_size,), real_label, dtype=torch.float, device=device) + output = netD(real_cpu).view(-1) + errD_real = criterion(output, label) + errD_real.backward() + D_x = output.mean().item() + + ## Train with all-fake batch + noise = torch.randn(b_size, NZ, 1, 1, device=device) + fake = netG(noise) + label.fill_(fake_label) + output = netD(fake.detach()).view(-1) + errD_fake = criterion(output, label) + errD_fake.backward() + D_G_z1 = output.mean().item() + errD = errD_real + errD_fake + optimizerD.step() + + ############################ + # (2) Update G network: maximize log(D(G(z))) + ########################### + netG.zero_grad() + label.fill_(real_label) # fake labels are real for generator cost + output = netD(fake).view(-1) + errG = criterion(output, label) + errG.backward() + D_G_z2 = output.mean().item() + optimizerG.step() + + errorG += errG.item() + errorD += errD.item() + + if epoch % 10 == 0 or epoch == NUM_EPOCHS - 1: + print(f" [{epoch}/{NUM_EPOCHS}] Loss_D: {errorD:.4f} Loss_G: {errorG:.4f}") + + # Save generator + os.makedirs("checkpoints", exist_ok=True) + save_path = f"checkpoints/generator_{texture_type}.pth" + torch.save(netG.state_dict(), save_path) + print(f"✅ Saved model to {save_path}") + +if __name__ == "__main__": + for t_type in TEXTURE_TYPES: + train_model(t_type)