diff --git a/build_target_imgs.py b/build_target_imgs.py index f5db93ead3a7497b7870a430b0292654e266feb3..c9417b1d9aec8b3004cec43759b10d3cf78b4f4f 100644 --- a/build_target_imgs.py +++ b/build_target_imgs.py @@ -4,16 +4,16 @@ import sys import subprocess from concurrent.futures import ThreadPoolExecutor -output_dir = 'target_imgs_v92' +output_dir = 'target_imgs_v93' -def process_skin(skin_id, skin_style): - input_path = f'skins/{skin_style}/{skin_id}.png' - output_path = f'{output_dir}/{skin_style}/{skin_id}.png' +def process_skin(skin_id): + input_path = f'skins/{skin_id}.png' + output_path = f'{output_dir}/{skin_id}.png' os.makedirs(os.path.dirname(output_path), exist_ok=True) if not os.path.exists(output_path): - print(f"Starting process for skin: {skin_id}, style: {skin_style}...") + print(f"Starting process for skin: {skin_id}") result = subprocess.run( [ @@ -33,24 +33,19 @@ def process_skin(skin_id, skin_style): print(result.stderr or result.stdout) def main(): os.makedirs(output_dir, exist_ok=True) - for skin_style in os.listdir('skins'): - if skin_style.startswith('.'): - continue - if skin_style != 'lowpoly': - continue - iset = set() - for i in os.listdir(f'skins/{skin_style}'): - if i.endswith('.png') and not i.startswith('.'): - iset.add(i.split('.')[0]) + iset = set() + for id in os.listdir('skins'): + if id.endswith('.png') and not id.startswith('.'): + iset.add(id.split('.')[0]) - # Process skins in parallel using a pool of subprocesses - # Using 4 workers for fast parallel rendering on Mac - max_workers = 4 - print(f"Processing {len(iset)} skins using {max_workers} parallel workers...") - with ThreadPoolExecutor(max_workers=max_workers) as executor: - executor.map( - partial(process_skin, skin_style=skin_style), - sorted(list(iset)) - ) + # Process skins in parallel using a pool of subprocesses + # Using 4 workers for fast parallel rendering on Mac + max_workers = 4 + print(f"Processing {len(iset)} skins using {max_workers} parallel workers...") + with ThreadPoolExecutor(max_workers=max_workers) as executor: + executor.map( + process_skin, + sorted(list(iset)) + ) if __name__ == '__main__': main() diff --git a/control_imgs/.DS_Store b/control_imgs/.DS_Store index ac0ebfb0d8d66caebfe522532153ae78a69895df..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6 100644 Binary files a/control_imgs/.DS_Store and b/control_imgs/.DS_Store differ diff --git a/control_imgs/lowpoly/09e92b94f8035dd6.png b/control_imgs/09e92b94f8035dd6.png similarity index 100% rename from control_imgs/lowpoly/09e92b94f8035dd6.png rename to control_imgs/09e92b94f8035dd6.png diff --git a/control_imgs/lowpoly/0f2c9a15bd13b738.png b/control_imgs/0f2c9a15bd13b738.png similarity index 100% rename from control_imgs/lowpoly/0f2c9a15bd13b738.png rename to control_imgs/0f2c9a15bd13b738.png diff --git a/control_imgs/lowpoly/12.png b/control_imgs/12.png similarity index 100% rename from control_imgs/lowpoly/12.png rename to control_imgs/12.png diff --git a/control_imgs/lowpoly/124203.png b/control_imgs/124203.png similarity index 100% rename from control_imgs/lowpoly/124203.png rename to control_imgs/124203.png diff --git a/control_imgs/lowpoly/198224.png b/control_imgs/198224.png similarity index 100% rename from control_imgs/lowpoly/198224.png rename to control_imgs/198224.png diff --git a/control_imgs/lowpoly/210d44489b54ea5a.png b/control_imgs/210d44489b54ea5a.png similarity index 100% rename from control_imgs/lowpoly/210d44489b54ea5a.png rename to control_imgs/210d44489b54ea5a.png diff --git a/control_imgs/lowpoly/2c35b77ee2cdfd42.png b/control_imgs/2c35b77ee2cdfd42.png similarity index 100% rename from control_imgs/lowpoly/2c35b77ee2cdfd42.png rename to control_imgs/2c35b77ee2cdfd42.png diff --git a/control_imgs/lowpoly/386c002183750df9.png b/control_imgs/386c002183750df9.png similarity index 100% rename from control_imgs/lowpoly/386c002183750df9.png rename to control_imgs/386c002183750df9.png diff --git a/control_imgs/lowpoly/408097.png b/control_imgs/408097.png similarity index 100% rename from control_imgs/lowpoly/408097.png rename to control_imgs/408097.png diff --git a/control_imgs/lowpoly/438299.png b/control_imgs/438299.png similarity index 100% rename from control_imgs/lowpoly/438299.png rename to control_imgs/438299.png diff --git a/control_imgs/lowpoly/5002d28d665fc668.png b/control_imgs/5002d28d665fc668.png similarity index 100% rename from control_imgs/lowpoly/5002d28d665fc668.png rename to control_imgs/5002d28d665fc668.png diff --git a/control_imgs/lowpoly/509dd472891584c0.png b/control_imgs/509dd472891584c0.png similarity index 100% rename from control_imgs/lowpoly/509dd472891584c0.png rename to control_imgs/509dd472891584c0.png diff --git a/control_imgs/lowpoly/517485.png b/control_imgs/517485.png similarity index 100% rename from control_imgs/lowpoly/517485.png rename to control_imgs/517485.png diff --git a/control_imgs/lowpoly/525273.png b/control_imgs/525273.png similarity index 100% rename from control_imgs/lowpoly/525273.png rename to control_imgs/525273.png diff --git a/control_imgs/lowpoly/8880007.png b/control_imgs/8880007.png similarity index 100% rename from control_imgs/lowpoly/8880007.png rename to control_imgs/8880007.png diff --git a/control_imgs/lowpoly/8880010.png b/control_imgs/8880010.png similarity index 100% rename from control_imgs/lowpoly/8880010.png rename to control_imgs/8880010.png diff --git a/control_imgs/lowpoly/8880011.png b/control_imgs/8880011.png similarity index 100% rename from control_imgs/lowpoly/8880011.png rename to control_imgs/8880011.png diff --git a/control_imgs/lowpoly/8880023.png b/control_imgs/8880023.png similarity index 100% rename from control_imgs/lowpoly/8880023.png rename to control_imgs/8880023.png diff --git a/control_imgs/lowpoly/8880023f.png b/control_imgs/8880023f.png similarity index 100% rename from control_imgs/lowpoly/8880023f.png rename to control_imgs/8880023f.png diff --git a/control_imgs/lowpoly/8880102.png b/control_imgs/8880102.png similarity index 100% rename from control_imgs/lowpoly/8880102.png rename to control_imgs/8880102.png diff --git a/control_imgs/lowpoly/8882000.png b/control_imgs/8882000.png similarity index 100% rename from control_imgs/lowpoly/8882000.png rename to control_imgs/8882000.png diff --git a/control_imgs/lowpoly/8882001.png b/control_imgs/8882001.png similarity index 100% rename from control_imgs/lowpoly/8882001.png rename to control_imgs/8882001.png diff --git a/control_imgs/lowpoly/8882002.png b/control_imgs/8882002.png similarity index 100% rename from control_imgs/lowpoly/8882002.png rename to control_imgs/8882002.png diff --git a/control_imgs/lowpoly/8882003.png b/control_imgs/8882003.png similarity index 100% rename from control_imgs/lowpoly/8882003.png rename to control_imgs/8882003.png diff --git a/control_imgs/lowpoly/9874eccccd0dc1c0.png b/control_imgs/9874eccccd0dc1c0.png similarity index 100% rename from control_imgs/lowpoly/9874eccccd0dc1c0.png rename to control_imgs/9874eccccd0dc1c0.png diff --git a/control_imgs/lowpoly/a5c3a615940c35cf.png b/control_imgs/a5c3a615940c35cf.png similarity index 100% rename from control_imgs/lowpoly/a5c3a615940c35cf.png rename to control_imgs/a5c3a615940c35cf.png diff --git a/control_imgs/lowpoly/ac569fdeb36124e8.png b/control_imgs/ac569fdeb36124e8.png similarity index 100% rename from control_imgs/lowpoly/ac569fdeb36124e8.png rename to control_imgs/ac569fdeb36124e8.png diff --git a/control_imgs/lowpoly/anya-forger.png b/control_imgs/anya-forger.png similarity index 100% rename from control_imgs/lowpoly/anya-forger.png rename to control_imgs/anya-forger.png diff --git a/control_imgs/lowpoly/b764a6eefd1b8470.png b/control_imgs/b764a6eefd1b8470.png similarity index 100% rename from control_imgs/lowpoly/b764a6eefd1b8470.png rename to control_imgs/b764a6eefd1b8470.png diff --git a/control_imgs/lowpoly/cba099198414fdf1.png b/control_imgs/cba099198414fdf1.png similarity index 100% rename from control_imgs/lowpoly/cba099198414fdf1.png rename to control_imgs/cba099198414fdf1.png diff --git a/control_imgs/lowpoly/cool-summer.png b/control_imgs/cool-summer.png similarity index 100% rename from control_imgs/lowpoly/cool-summer.png rename to control_imgs/cool-summer.png diff --git a/control_imgs/lowpoly/d2055d41587a47a0.png b/control_imgs/d2055d41587a47a0.png similarity index 100% rename from control_imgs/lowpoly/d2055d41587a47a0.png rename to control_imgs/d2055d41587a47a0.png diff --git a/control_imgs/lowpoly/e3610b319b59154e.png b/control_imgs/e3610b319b59154e.png similarity index 100% rename from control_imgs/lowpoly/e3610b319b59154e.png rename to control_imgs/e3610b319b59154e.png diff --git a/control_imgs/lowpoly/f121310a3339457a.png b/control_imgs/f121310a3339457a.png similarity index 100% rename from control_imgs/lowpoly/f121310a3339457a.png rename to control_imgs/f121310a3339457a.png diff --git a/control_imgs/lowpoly/half_12.png b/control_imgs/half_12.png similarity index 100% rename from control_imgs/lowpoly/half_12.png rename to control_imgs/half_12.png diff --git a/control_imgs/lowpoly/half_124203.png b/control_imgs/half_124203.png similarity index 100% rename from control_imgs/lowpoly/half_124203.png rename to control_imgs/half_124203.png diff --git a/control_imgs/lowpoly/half_198224.png b/control_imgs/half_198224.png similarity index 100% rename from control_imgs/lowpoly/half_198224.png rename to control_imgs/half_198224.png diff --git a/control_imgs/lowpoly/half_408097.png b/control_imgs/half_408097.png similarity index 100% rename from control_imgs/lowpoly/half_408097.png rename to control_imgs/half_408097.png diff --git a/control_imgs/lowpoly/half_438299.png b/control_imgs/half_438299.png similarity index 100% rename from control_imgs/lowpoly/half_438299.png rename to control_imgs/half_438299.png diff --git a/control_imgs/lowpoly/half_517485.png b/control_imgs/half_517485.png similarity index 100% rename from control_imgs/lowpoly/half_517485.png rename to control_imgs/half_517485.png diff --git a/control_imgs/lowpoly/half_525273.png b/control_imgs/half_525273.png similarity index 100% rename from control_imgs/lowpoly/half_525273.png rename to control_imgs/half_525273.png diff --git a/control_imgs/lowpoly/half_8880007.png b/control_imgs/half_8880007.png similarity index 100% rename from control_imgs/lowpoly/half_8880007.png rename to control_imgs/half_8880007.png diff --git a/control_imgs/lowpoly/half_8880010.png b/control_imgs/half_8880010.png similarity index 100% rename from control_imgs/lowpoly/half_8880010.png rename to control_imgs/half_8880010.png diff --git a/control_imgs/lowpoly/half_8880011.png b/control_imgs/half_8880011.png similarity index 100% rename from control_imgs/lowpoly/half_8880011.png rename to control_imgs/half_8880011.png diff --git a/control_imgs/lowpoly/half_8880023.png b/control_imgs/half_8880023.png similarity index 100% rename from control_imgs/lowpoly/half_8880023.png rename to control_imgs/half_8880023.png diff --git a/control_imgs/lowpoly/half_8880023f.png b/control_imgs/half_8880023f.png similarity index 100% rename from control_imgs/lowpoly/half_8880023f.png rename to control_imgs/half_8880023f.png diff --git a/control_imgs/lowpoly/half_8880102.png b/control_imgs/half_8880102.png similarity index 100% rename from control_imgs/lowpoly/half_8880102.png rename to control_imgs/half_8880102.png diff --git a/control_imgs/lowpoly/late-summer.png b/control_imgs/late-summer.png similarity index 100% rename from control_imgs/lowpoly/late-summer.png rename to control_imgs/late-summer.png diff --git a/control_imgs/realistic/0042.png b/control_imgs/realistic/0042.png deleted file mode 100644 index b538f49b4c17ee258aecd10e4d05339d15e91106..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/0042.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e08cd21d870d586a4ca7fac42239018882d05449fd200bc44e5aeeebfa3341b6 -size 969446 diff --git a/control_imgs/realistic/17474.png b/control_imgs/realistic/17474.png deleted file mode 100644 index 7404e8c884051e444165f6039fe4caef721559e8..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/17474.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:94248344a9f1147a28bcaaffd24049536ded5142e928ff207c413ad1e6ea9943 -size 870230 diff --git a/control_imgs/realistic/1ed2b9af-0722-4869-8685-294610976cb5.png b/control_imgs/realistic/1ed2b9af-0722-4869-8685-294610976cb5.png deleted file mode 100644 index 0b94b9a9b9f96b0d97f8fdb088b8b55410310d53..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/1ed2b9af-0722-4869-8685-294610976cb5.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fa6be6e32ae2a0362be3c6f7be04155032b00042d761c12227b63404d6975d84 -size 965825 diff --git a/control_imgs/realistic/222855.png b/control_imgs/realistic/222855.png deleted file mode 100644 index 472ddea32bc52ce758600217fe5b549f66e2673d..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/222855.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d3229ba840c5475bde019c36480fcf24def86ed0408979bdb2b7a61082e21cfb -size 930131 diff --git a/control_imgs/realistic/49ed3dbc-2d35-491c-b995-be54c59ab423.png b/control_imgs/realistic/49ed3dbc-2d35-491c-b995-be54c59ab423.png deleted file mode 100644 index 3f6a9d4a3728520da7ed465fbb69fe762c67537f..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/49ed3dbc-2d35-491c-b995-be54c59ab423.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b1e705f5a756ae690694e29d985ea2b7f6e7f76db5c216a2d414dbd1a4fee625 -size 816737 diff --git a/control_imgs/realistic/519494.png b/control_imgs/realistic/519494.png deleted file mode 100644 index 7b7ad4a44ca67ab5fd24dc418705ab9c58fed3d6..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/519494.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6248b32f218f0aec08be8c708625b13d2cc99df6b6811e7fef77874e1dc38a1a -size 1077090 diff --git a/control_imgs/realistic/538419.png b/control_imgs/realistic/538419.png deleted file mode 100644 index e75f557b5ed7ef482f4f004bcdf005ebd0b93fc7..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/538419.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5ea4f95c08766ae06ab8b3cd80cda035e86f2531b4787045092f80399d1e1edb -size 1364089 diff --git a/control_imgs/realistic/553045.png b/control_imgs/realistic/553045.png deleted file mode 100644 index 9d0d32193b24e10645d6f692527bf400c873ce47..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/553045.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d17c8ecb37fa3c5af625d04ac6bf59b421f4dcf7a5d4cd02e1e318d64a18ad49 -size 1189651 diff --git a/control_imgs/realistic/560261.png b/control_imgs/realistic/560261.png deleted file mode 100644 index e54830f788fca8ef75cbfed20677c7152eb7c181..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/560261.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9743e1090507c5e4ed15f71ec2c50b5a4725f662bd01f44a0858be768c7f927e -size 1453066 diff --git a/control_imgs/realistic/6306fffe-5944-4659-adea-055d00af89b0.png b/control_imgs/realistic/6306fffe-5944-4659-adea-055d00af89b0.png deleted file mode 100644 index a62af862923b8d8fc0fb0393da04a380b998b9bc..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/6306fffe-5944-4659-adea-055d00af89b0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cee07764a403cfa748b5c2725ea1f61403361a0d907cc3493c2cc2f189ef3174 -size 768108 diff --git a/control_imgs/realistic/64154.png b/control_imgs/realistic/64154.png deleted file mode 100644 index e35fa1a4955aa7895b7e9aacc8d4bd8becd180eb..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/64154.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:030964857b266f9a1eb06e84c4bf15701c6f4c649dc6927d1bfc2adc6375675c -size 1414952 diff --git a/control_imgs/realistic/64154f.png b/control_imgs/realistic/64154f.png deleted file mode 100644 index 2e6108a781dd07fb8e34b7d560ccec903851f12f..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/64154f.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:06076823b953a93d79513d26bc8bb8b7fbbc2811834a3f99a5b4fc08f55252cb -size 1415190 diff --git a/control_imgs/realistic/645888.png b/control_imgs/realistic/645888.png deleted file mode 100644 index 5deb3f5775915957f1e6432b2ab8d18c1d7b8e77..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/645888.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3a778ce0aa8ad672a0529e23b47dde41ba13e1833683d2f2c59869cf44500424 -size 1410394 diff --git a/control_imgs/realistic/661333b9-bf31-4c70-af83-293663497b98.png b/control_imgs/realistic/661333b9-bf31-4c70-af83-293663497b98.png deleted file mode 100644 index 44e7145c57834eb8245a2879b024ca6141c048a0..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/661333b9-bf31-4c70-af83-293663497b98.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4663751af1d5fffb453308173b781637a674b464a034bdafef52d4c553697ecd -size 819725 diff --git a/control_imgs/realistic/667114.png b/control_imgs/realistic/667114.png deleted file mode 100644 index 356f19215a5a73e5c92371a93d5b4348a20b0470..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/667114.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:362f97046ccb00d23239916687fda356d752060be6f34c12725f5850f2b64789 -size 1440034 diff --git a/control_imgs/realistic/716523.png b/control_imgs/realistic/716523.png deleted file mode 100644 index 95614fc7540c3d3f255da19b70833618415f2b6e..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/716523.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bbcbb0fc977e704a7ac8465a9146e8b6f28b193859fc102445829fff078d927f -size 1280109 diff --git a/control_imgs/realistic/7d3f1a9c-1945-4b5f-a686-2eb7aa6f8d89.png b/control_imgs/realistic/7d3f1a9c-1945-4b5f-a686-2eb7aa6f8d89.png deleted file mode 100644 index 60123523910ab5d5c1863f68fa1a29ee6bb8f370..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/7d3f1a9c-1945-4b5f-a686-2eb7aa6f8d89.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dac646f3a356defff6a67515c7c90aaa98793264262fa8fc74ba091803cf4bb1 -size 996752 diff --git a/control_imgs/realistic/8024eb55-ef05-4752-a1b8-4ad7351a8172.png b/control_imgs/realistic/8024eb55-ef05-4752-a1b8-4ad7351a8172.png deleted file mode 100644 index 64a7781bb4503f3e72cde76fef670f0c9bc8ac29..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8024eb55-ef05-4752-a1b8-4ad7351a8172.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ca154f6fcaa7b98805d5da4e7038b15cc6d21b13f9f9646f86cea1d3aad55cad -size 789203 diff --git a/control_imgs/realistic/8880001.png b/control_imgs/realistic/8880001.png deleted file mode 100644 index c4cc05b4fb267c215a5d78233d10f04e48ba8f1a..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880001.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:665353d212d6d74e667b7591577ca84e1a6634afd4b3cfaad44877df0fd4917b -size 1538042 diff --git a/control_imgs/realistic/8880002.png b/control_imgs/realistic/8880002.png deleted file mode 100644 index 76b06e0cc5d27af2f6c3750a4c442c424fe1334c..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880002.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:056440a6b6a6a0c20504cb3341546005bb34d7b7ba79b4a4dacfe4ac8f735c7a -size 1236913 diff --git a/control_imgs/realistic/8880003.png b/control_imgs/realistic/8880003.png deleted file mode 100644 index 2725f75d29fd10dbb57290fe49bdac5e8a4b28af..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880003.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:99894900759a45b04c1df84ccd6448aed85ee1998918cc2f48bed8bbaee99730 -size 960473 diff --git a/control_imgs/realistic/8880005.png b/control_imgs/realistic/8880005.png deleted file mode 100644 index 07464a98cfa6e40d626564a666719721c60f9a72..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880005.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f445598be1eb76c7e9551292158554864ca972988443cbe1894f665509c439eb -size 1280351 diff --git a/control_imgs/realistic/8880006.png b/control_imgs/realistic/8880006.png deleted file mode 100644 index 88399fceecbe773f3c0bb9625b43f3e2e0db5890..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880006.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0f89fdac6d90853a86e3d9a1818a18950415abcca322c0bc6c7653b38f25fe1d -size 423135 diff --git a/control_imgs/realistic/8880008.png b/control_imgs/realistic/8880008.png deleted file mode 100644 index 33b385b79da7ce292a51dbcca8cb50b796481f8a..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880008.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c7f9f6b50607c7f97218630a7df4ff06f4dbe16d09223c4c4ce3c054829a369d -size 422499 diff --git a/control_imgs/realistic/8880015.png b/control_imgs/realistic/8880015.png deleted file mode 100644 index e9e4bc0e97f90ce015aada42b74316df88a37325..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880015.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d29ac403a35bc8030df43bd0ede5ab39e877a2564c27593b63b90da0da7c66ee -size 1591009 diff --git a/control_imgs/realistic/8880020.png b/control_imgs/realistic/8880020.png deleted file mode 100644 index 5b8888e0e714974c84437e29459c2628710664aa..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880020.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b96538dfde1ffd9d6e77902960747797cd336010b275b8553a87012535cdd825 -size 1665174 diff --git a/control_imgs/realistic/8880020f.png b/control_imgs/realistic/8880020f.png deleted file mode 100644 index 43f78b3d71e9ff5ea27b817c608ca9f71e8490fb..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880020f.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:de3994a30672420d965cdc7e0464f1ec84ddf455f9a1d453a792d53bf1aeaead -size 1667317 diff --git a/control_imgs/realistic/8880021.png b/control_imgs/realistic/8880021.png deleted file mode 100644 index c670ed3ed4f5242c8edc09af65a18f3e8cbf54a8..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880021.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0f886a306c66a9b0d3d3ef9f21eb2366d0deabd5b7bc76f9d54516ff838b6c10 -size 1333522 diff --git a/control_imgs/realistic/8880021f.png b/control_imgs/realistic/8880021f.png deleted file mode 100644 index 502db6f94e2e01fa6e4009e125267212c31767a1..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880021f.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:20fe565c92d5b2b9639091b25fc9880f5dab88770f47f970f48475fd57256ff2 -size 1330963 diff --git a/control_imgs/realistic/8880022.png b/control_imgs/realistic/8880022.png deleted file mode 100644 index 3d2cf3a11f3d02b9398ea9d53252f9e1f071e7d5..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880022.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d89e90589500db8b3909e17938cbf5243dba5d56a12774e071498aaf42dfa26e -size 1035324 diff --git a/control_imgs/realistic/8880022f.png b/control_imgs/realistic/8880022f.png deleted file mode 100644 index 4f046c22b33e4932b38439b8fec19b036f9f9860..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880022f.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3d453727b26afd1f0065b2bbfa087928c4f48ef1224f365873b3e3fce96695dd -size 1037605 diff --git a/control_imgs/realistic/8880030.png b/control_imgs/realistic/8880030.png deleted file mode 100644 index 7144afc01bc791472be909c855228e493bd76add..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880030.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a0e634fa6a4ca0297238f9a164607883ca4bf9e7375815ebd1cfd12af24e2d22 -size 582298 diff --git a/control_imgs/realistic/8880031.png b/control_imgs/realistic/8880031.png deleted file mode 100644 index d7ee49776d46db26c1cf8837e93412760d5d251b..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880031.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:50bb093a7612ce09b64dd24db286558819de0e96090bd0e46db05f5390519bea -size 463129 diff --git a/control_imgs/realistic/8880041.png b/control_imgs/realistic/8880041.png deleted file mode 100644 index c55145f7689983c0c84a9232dbd577056c54d3ff..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880041.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8a4551bcb2786993733bfd9754d0985475eb6df9e9d55c10ab07d5d3d856c21a -size 917561 diff --git a/control_imgs/realistic/8880101.png b/control_imgs/realistic/8880101.png deleted file mode 100644 index 6654890ccc25cbf5fdd00dbb311fd88b19d27a0d..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880101.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c8b6adbc2f298e3c71976a7a93ea3c797ea3dcd008540264768fb0d718c7e55b -size 956319 diff --git a/control_imgs/realistic/8880101f.png b/control_imgs/realistic/8880101f.png deleted file mode 100644 index e13d098d61d8b289b21394bc47a0cf0b381e495f..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880101f.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:45ea6bd42b20cd99d3dac8ac7e2d13fcc680f093ceeefc011cb8c1657f1b0b46 -size 954156 diff --git a/control_imgs/realistic/8880106.png b/control_imgs/realistic/8880106.png deleted file mode 100644 index e245810c49aa2c4645f1ada6c5595a420179f396..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880106.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4065caec38facba5e4f7040820c5763d3b293db411e85f177f8dab61681b0e6e -size 1317669 diff --git a/control_imgs/realistic/8880107.png b/control_imgs/realistic/8880107.png deleted file mode 100644 index 7cf884b9c4577f83bc3ece12eee83087f6c268f6..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880107.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6d6e44ba4d13894276c9204d08f0fffc77c0e95aebc75fb816f3c34eac839285 -size 984592 diff --git a/control_imgs/realistic/8880108.png b/control_imgs/realistic/8880108.png deleted file mode 100644 index 2bc31b6f0f1a1197c9d120eacc4e2a7ad9db951e..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880108.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:005c02a4b47a70d16bfcb02d8d1a8530457c7e1962065c6f51c4b3742d7a7918 -size 1689778 diff --git a/control_imgs/realistic/8880200.png b/control_imgs/realistic/8880200.png deleted file mode 100644 index df1b9a11bd8ed6aba0fb7ec2e12ffa411aa8ad7a..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880200.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e2d199e4c49898b5b4c7600e759da53b060f7b9680636b94f0f8dd7838272235 -size 1345122 diff --git a/control_imgs/realistic/8880201.png b/control_imgs/realistic/8880201.png deleted file mode 100644 index 2a3f7f904726f0873c82ecb6277c16cebf771b99..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880201.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d66f4d07391e31d009111b21dc6202be83172f7ceb871272417cade6f73073fd -size 1497591 diff --git a/control_imgs/realistic/8880400.png b/control_imgs/realistic/8880400.png deleted file mode 100644 index eba7af9e7f915ad24e6987a41ca096afd4ee9ae0..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880400.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c4d2cb6ac9da4e685f748a51ae8b0675fc7240ab0d19fbaf1974474c243f0a4e -size 1048399 diff --git a/control_imgs/realistic/8880400f.png b/control_imgs/realistic/8880400f.png deleted file mode 100644 index b0e0982a64c8f3d8d32b93eacd766f08dae97b60..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880400f.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ed07d709a73967071cbc4d5b961890328ef4ca6016e2be6753237e19a2aad001 -size 1050199 diff --git a/control_imgs/realistic/8880401.png b/control_imgs/realistic/8880401.png deleted file mode 100644 index fc6c919b19b54d3181085e0c0e459c6049ece559..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880401.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2c2e49994c67fd70198282d42359586129862bd1a9ecfff3671a502a9ecc3ae7 -size 791925 diff --git a/control_imgs/realistic/8880401f.png b/control_imgs/realistic/8880401f.png deleted file mode 100644 index 8430b83b0bf878f2240ba737c302d1571d9fa1a3..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880401f.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:da47c265e2e41b3cec136189703b9244df17cf39453aa015c14101cef426460d -size 789836 diff --git a/control_imgs/realistic/8880500.png b/control_imgs/realistic/8880500.png deleted file mode 100644 index e73511699e7f5aa9ecf14ce9a92c8beef02e1127..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880500.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2af7d9c4165eac7973bb0e4ce8c38692ed8b0ae3a10ab00cc90db8d92e313500 -size 1126622 diff --git a/control_imgs/realistic/8880501.png b/control_imgs/realistic/8880501.png deleted file mode 100644 index 8d7b3b9ab134f331c466f201fa1abfbe6648385a..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880501.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:918ea3187bdd3a7f9b4c79c132cc35c6b3119b685c3cde4c260e749a53c14631 -size 1117081 diff --git a/control_imgs/realistic/8880502.png b/control_imgs/realistic/8880502.png deleted file mode 100644 index 28289cf9276924fa782662a0ac5047ac1625f7fa..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880502.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:641cad17c15fe1c2e11ad4785e95055203fe737da2d29e74b90e896ce5430cbd -size 1124321 diff --git a/control_imgs/realistic/8880503.png b/control_imgs/realistic/8880503.png deleted file mode 100644 index 8c6d367ff18bb9287914d98b1cd8436dbb65926c..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880503.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fb2240b5b287edb3f6e85ad05ed062d1f8109b0d034c6a94692ea2d0fb5d4111 -size 1057314 diff --git a/control_imgs/realistic/8880600.png b/control_imgs/realistic/8880600.png deleted file mode 100644 index 01dd6795b03949e84dd797a5a82313f1663f39fb..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880600.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:129dc13b5e0b39e8b90080d2b41cf067f48847e8a7bd69cb645f8274d232848f -size 1434335 diff --git a/control_imgs/realistic/8880602.png b/control_imgs/realistic/8880602.png deleted file mode 100644 index 10c9c31678813ef6de56c05a8dc515314fa4c267..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880602.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:74ccc6f31bf54eb1adc7fb33182bc466d740af80af67085b2885a89cc912a620 -size 1377485 diff --git a/control_imgs/realistic/8880700.png b/control_imgs/realistic/8880700.png deleted file mode 100644 index b8f35818d7f0b83f959cec3a11e537eac182b1b2..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880700.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:892766ab15e0f57573a66f0599b538c6b5a62945805b0fee87c673d8a60d14c7 -size 1260841 diff --git a/control_imgs/realistic/8880800.png b/control_imgs/realistic/8880800.png deleted file mode 100644 index 0846522c2af83f0ec24f5709c78bd1e72834e30e..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880800.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5a00f022527f564e1895160ea082d51155aa18da8b752ec23ad250f859896060 -size 1018275 diff --git a/control_imgs/realistic/8880801.png b/control_imgs/realistic/8880801.png deleted file mode 100644 index 8ce6ec3cd9dee8e1f32ad23a2e9f86a679cb572f..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880801.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cadc9fac62c1f2537d5146d7a68a0f86a51ff8d68a9552b504b14752d8215f2a -size 920080 diff --git a/control_imgs/realistic/8880802.png b/control_imgs/realistic/8880802.png deleted file mode 100644 index e319773d6a41aa224d9538bbb7180a69a7a9d2fb..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880802.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:27f24df297602bc296a3e42c89a444886f75cd1e03e7c0afb2f820817735a136 -size 902485 diff --git a/control_imgs/realistic/8880803.png b/control_imgs/realistic/8880803.png deleted file mode 100644 index 54cbadf4bce44a72825c9fb0b95c803b157e49ef..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880803.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1e8a7ab22033333e8445ec1506a3e8c72a8eb796ed723324a9baf13d45e1f8f5 -size 1021488 diff --git a/control_imgs/realistic/8880804.png b/control_imgs/realistic/8880804.png deleted file mode 100644 index 4aa4d842d3daa3112742452d5d17749ef9441be4..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880804.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c0f14555b0ebc7566fdaac34da23a35520aa86737d8a2910920d77938b8d51cb -size 917456 diff --git a/control_imgs/realistic/8880805.png b/control_imgs/realistic/8880805.png deleted file mode 100644 index 31df381c8eb4aea04ad25224c908d350461f688c..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880805.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9e7f107b8d715567cdae4e2200ec26f6a58962c633eb1bb724acda632c0e0c48 -size 874040 diff --git a/control_imgs/realistic/8880810.png b/control_imgs/realistic/8880810.png deleted file mode 100644 index c1f691a679a88c9398e4c539c8d8fb1f104bde83..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880810.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b999254d7267cf711d8e847013eb011f62c14f6061c276b644718e4e23cc2dc3 -size 1009631 diff --git a/control_imgs/realistic/8880811.png b/control_imgs/realistic/8880811.png deleted file mode 100644 index 6f7763bfb710bbbc6ed74cef312304c61ebc680e..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880811.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ed8ab689e9121f555eba601036396c721c48e7a20788e9dc0b13aa8e7a0f8244 -size 622123 diff --git a/control_imgs/realistic/8880812.png b/control_imgs/realistic/8880812.png deleted file mode 100644 index 92b3c0f29b33a6de242a81e3819fbd460c29dafa..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8880812.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7c101de83b258316aa9afe5c5534ab8e0701548ce1be9d7da24428e4516b9550 -size 1264044 diff --git a/control_imgs/realistic/8881001.png b/control_imgs/realistic/8881001.png deleted file mode 100644 index a9f7c592159bf3eecf9b02faf9d658b0eca640f6..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/8881001.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:aec211c2b01ab3e396b3c9e9cc7e47cf7debd07f64d9c81fc2b5dc2765e1734e -size 760418 diff --git a/control_imgs/realistic/90812.png b/control_imgs/realistic/90812.png deleted file mode 100644 index b1db7bf9519f81cade8191950eb0352a9ad51f72..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/90812.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7a02247f2ad10109411aaa8aadf0fe20b9816c8dcd625f8d45ce6a5a7867616e -size 1573761 diff --git a/control_imgs/realistic/964165a1-9d01-4d60-80c6-146ff3085797.png b/control_imgs/realistic/964165a1-9d01-4d60-80c6-146ff3085797.png deleted file mode 100644 index 0aa1bf87ee0bc1f4015f1cc08da5e37abf524727..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/964165a1-9d01-4d60-80c6-146ff3085797.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:29eff9b68e494c1672275bcd995af2fe8bf2561c78a6b66bc1bbcfe2cb875bc1 -size 619449 diff --git a/control_imgs/realistic/9b200674-5d2a-4e1d-8a26-8cc83bd700d2.png b/control_imgs/realistic/9b200674-5d2a-4e1d-8a26-8cc83bd700d2.png deleted file mode 100644 index 5b886bf4cdcafe489450b958a54eb6c11484eed3..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/9b200674-5d2a-4e1d-8a26-8cc83bd700d2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:577aefe999351e5d59b45ef4a94ce4cf6ac43f4b3b69a6a7823bcc35679844e8 -size 601760 diff --git a/control_imgs/realistic/c060d6b7-5978-434d-9e53-f396fed9c7e8.png b/control_imgs/realistic/c060d6b7-5978-434d-9e53-f396fed9c7e8.png deleted file mode 100644 index b2cf4aeb3f9e4e734801de219845d72fb5f6c4a4..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/c060d6b7-5978-434d-9e53-f396fed9c7e8.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c16bdf71161bc2b25a1d8a811bb917a90f9ce99fbcf498cd3a6c8a9c6be52ba9 -size 624770 diff --git a/control_imgs/realistic/half_0042.png b/control_imgs/realistic/half_0042.png deleted file mode 100644 index 879aa084cdfc5274c3d8c57299eec2ea49acb709..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_0042.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:76e1b9006968b6d0c670d972677dbfbdb06d3d2f7f73ea18ebded8d29573c9ab -size 535191 diff --git a/control_imgs/realistic/half_17474.png b/control_imgs/realistic/half_17474.png deleted file mode 100644 index 13a5818dc3d259e1945c2e3aabae6f725c29a978..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_17474.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dea3ba43f1ec96ffb6d327fd2cb3e58d5e472d08ee434c1d7b9b3bdb58f00f63 -size 480195 diff --git a/control_imgs/realistic/half_1ed2b9af-0722-4869-8685-294610976cb5.png b/control_imgs/realistic/half_1ed2b9af-0722-4869-8685-294610976cb5.png deleted file mode 100644 index b4e90a8dc5c821527792e3cb426189e3072218e9..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_1ed2b9af-0722-4869-8685-294610976cb5.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c605824fa801db3d83bcc8c0ca2716654d16dd3f82ae0523b2baaaa035d9dbfc -size 530460 diff --git a/control_imgs/realistic/half_222855.png b/control_imgs/realistic/half_222855.png deleted file mode 100644 index 6a00ae2fdc9d658dd90bfdb8ca428974cc9dc310..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_222855.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6c5eba22e900a03c0ec34e0b0feac07147344914aeae405f1cdbbd585b093e7f -size 514387 diff --git a/control_imgs/realistic/half_49ed3dbc-2d35-491c-b995-be54c59ab423.png b/control_imgs/realistic/half_49ed3dbc-2d35-491c-b995-be54c59ab423.png deleted file mode 100644 index 7921229b6713d0c2094e755d094e7e9c7b6984ea..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_49ed3dbc-2d35-491c-b995-be54c59ab423.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2148f21e232ff68e089edbd6e5fafac0368aa0d3a881c4835ba618a4d7b01a99 -size 448487 diff --git a/control_imgs/realistic/half_519494.png b/control_imgs/realistic/half_519494.png deleted file mode 100644 index a94270c4f42deb4d0d94d72856177f5376037a12..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_519494.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:26b3f4b51dc805eb5967a3a8f0da215ddfe86995c829e03a4f4ec6cf3ecdc724 -size 583875 diff --git a/control_imgs/realistic/half_538419.png b/control_imgs/realistic/half_538419.png deleted file mode 100644 index 92ba0a3ee63f3611d2457a06f2cbdfa6fd277a35..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_538419.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2444305c00b9ae1a2b63763a09d100fc1f5618823be41faf8d240564f97603bb -size 773974 diff --git a/control_imgs/realistic/half_553045.png b/control_imgs/realistic/half_553045.png deleted file mode 100644 index a9cb1b32833ac6138634ed06716a36869199b532..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_553045.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f7599ec07591c4edf52a718d271370b0f04f91d81857cc029837fd673ffbfe2f -size 648166 diff --git a/control_imgs/realistic/half_560261.png b/control_imgs/realistic/half_560261.png deleted file mode 100644 index eb8bf522e96b50cd96cdabdb7f709b321def7434..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_560261.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dd1255638fb01cdd3b64c98b60a61d5a3b809a1b2fd521f9fde4d9523a7310f3 -size 809842 diff --git a/control_imgs/realistic/half_6306fffe-5944-4659-adea-055d00af89b0.png b/control_imgs/realistic/half_6306fffe-5944-4659-adea-055d00af89b0.png deleted file mode 100644 index e558a00218b30e3a18dfad9e1cee2e504e97cab2..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_6306fffe-5944-4659-adea-055d00af89b0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8b33d8a301cf180fbfa75433891ea0f9a10609f4c78b56ef42a95fa87f62127f -size 427422 diff --git a/control_imgs/realistic/half_64154.png b/control_imgs/realistic/half_64154.png deleted file mode 100644 index 4e7ef03fcb15b60721015aba243e4636dbf5b796..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_64154.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0cfd3c69de046486c0a9b9855a5e1574c67ae76e0991d9c0ed387dd4e3f5652d -size 766017 diff --git a/control_imgs/realistic/half_64154f.png b/control_imgs/realistic/half_64154f.png deleted file mode 100644 index 3927c4f6293a677e9004cc2423b5d9b167046900..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_64154f.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ebf056a761db185b61912b330de76de66d9838c38357d918d459e2135df39d67 -size 765368 diff --git a/control_imgs/realistic/half_645888.png b/control_imgs/realistic/half_645888.png deleted file mode 100644 index 99e959cba4562b8aaab6d3afbb7a727bf3738737..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_645888.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e7e897e063bcd3d2540e952dac69a51accce7bedbbaf5bfd7836c6bf4219af71 -size 745452 diff --git a/control_imgs/realistic/half_661333b9-bf31-4c70-af83-293663497b98.png b/control_imgs/realistic/half_661333b9-bf31-4c70-af83-293663497b98.png deleted file mode 100644 index bedec3a1e7da70449b99c543f8f0aea7ce922ef0..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_661333b9-bf31-4c70-af83-293663497b98.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:04597d08d7a87b89eab9da44e2f442a9b9eacf102ef44c7284eb9b1e236abfa6 -size 420638 diff --git a/control_imgs/realistic/half_667114.png b/control_imgs/realistic/half_667114.png deleted file mode 100644 index 345e75c158f5bb6da35b4d1a8cda539668fc9bb3..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_667114.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:954fe69439372da15b0eaffde07d88942f350cbcd18bb328f13bf9442e14e6b5 -size 770168 diff --git a/control_imgs/realistic/half_716523.png b/control_imgs/realistic/half_716523.png deleted file mode 100644 index 73716acae1c977d651b26a465cf06be74783ca51..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_716523.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8c322f24e65d135049a5bbdc8d2964923fa3830b8fc61e20c268c9ef1f0fa97c -size 689174 diff --git a/control_imgs/realistic/half_7d3f1a9c-1945-4b5f-a686-2eb7aa6f8d89.png b/control_imgs/realistic/half_7d3f1a9c-1945-4b5f-a686-2eb7aa6f8d89.png deleted file mode 100644 index 59854518baba0318c19da230b995b7f6be6a790f..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_7d3f1a9c-1945-4b5f-a686-2eb7aa6f8d89.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:72d7b5f9ba140e3611549bf93619485a6368f59adfa8db1cdd68bd84430979a4 -size 542446 diff --git a/control_imgs/realistic/half_8024eb55-ef05-4752-a1b8-4ad7351a8172.png b/control_imgs/realistic/half_8024eb55-ef05-4752-a1b8-4ad7351a8172.png deleted file mode 100644 index f97e633d7a07bd68095be2a956d6b6509d286fbb..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8024eb55-ef05-4752-a1b8-4ad7351a8172.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ac1b8c0995ac79a2d0aa8d93c53e9ec62311ee7b32cefe2dc7473edfa7e4196b -size 451283 diff --git a/control_imgs/realistic/half_8880001.png b/control_imgs/realistic/half_8880001.png deleted file mode 100644 index 98ee11acd2b2c0c7f64d5c4a79b7d5db465c0828..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880001.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fc48834bba187c29614be5c64ade98c198c30efb2c3324a5bbbaaa30afe17f08 -size 833242 diff --git a/control_imgs/realistic/half_8880002.png b/control_imgs/realistic/half_8880002.png deleted file mode 100644 index 854af1f86858fdf73c837921032243506913345a..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880002.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a77a31f2c83495564f1b8f10f4ac02dd371b450d5f16e66ff3a5ad2981f7622b -size 660752 diff --git a/control_imgs/realistic/half_8880003.png b/control_imgs/realistic/half_8880003.png deleted file mode 100644 index 04aa93cf15517b4b82d29c6386220f44ec9dbc06..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880003.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0805ac54bc0925492d067f9fc8bfc1fbb053f72faaeef8f311386017affa429f -size 578520 diff --git a/control_imgs/realistic/half_8880005.png b/control_imgs/realistic/half_8880005.png deleted file mode 100644 index 7d620a836238c8cc66fc7ad067b6add04eb1d5f9..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880005.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ceb5424c8416ae71622d174c375cec066ddf2fede8bf3b46ffdc24719be1dc2d -size 691610 diff --git a/control_imgs/realistic/half_8880006.png b/control_imgs/realistic/half_8880006.png deleted file mode 100644 index 9174c13c481716a61471f77b66c99dd488fc4450..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880006.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a57e59ed148f360a8845188cb0945ad2fb1f363c528e8ae88a2c2453b362f8ae -size 237958 diff --git a/control_imgs/realistic/half_8880008.png b/control_imgs/realistic/half_8880008.png deleted file mode 100644 index 780234a136ef7b6fca40c6f85d2f44fbce74e306..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880008.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:978a38261ab854bf0618d07a676d6733689dbaf7aa386af1de1d47af981b70dd -size 293383 diff --git a/control_imgs/realistic/half_8880015.png b/control_imgs/realistic/half_8880015.png deleted file mode 100644 index 2b788c6e9c4f9a6bf1c78b4058b9f8089928c691..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880015.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:98f348f68b56f5c6ef1fea482ffc8a52b591e91dbc3d2d2a9ba0e552724139a3 -size 767058 diff --git a/control_imgs/realistic/half_8880020.png b/control_imgs/realistic/half_8880020.png deleted file mode 100644 index 51f3ea8f13779b4dbc581d48af610c1514852a55..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880020.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:853ba62bcb3444443a071d251770e2f31886eef0b9c6c47044fbb36eac89a2f2 -size 885923 diff --git a/control_imgs/realistic/half_8880020f.png b/control_imgs/realistic/half_8880020f.png deleted file mode 100644 index 476c9fb916bc87fa8890c26b74024bfaac748651..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880020f.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4482f72019681f824e15f26bd52226db659782ff0e009534689a58ef8b93c2bb -size 886336 diff --git a/control_imgs/realistic/half_8880021.png b/control_imgs/realistic/half_8880021.png deleted file mode 100644 index a6105884543d1a51db801910a32a897880676d3d..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880021.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:149195ef867961e9821d338f737bd10090b230ba95a0497554be4e572dc11d81 -size 715862 diff --git a/control_imgs/realistic/half_8880021f.png b/control_imgs/realistic/half_8880021f.png deleted file mode 100644 index 1a6aeffc9d59de21b5bc25e33b876770bcec455c..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880021f.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:121b7f79eb305780802a6696775acecaef32c1bac3ddd3d9684897cd232acf56 -size 714747 diff --git a/control_imgs/realistic/half_8880022.png b/control_imgs/realistic/half_8880022.png deleted file mode 100644 index 15b5a072a4982ba48d101a65fdf6287e5a5c86cc..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880022.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0cc5e8794c931787b71463f5af3f47d5d4d58598f59452e09053c4a52a800f99 -size 543399 diff --git a/control_imgs/realistic/half_8880022f.png b/control_imgs/realistic/half_8880022f.png deleted file mode 100644 index a234ed3fe65372b4d5bc90e450971b36ed3a772c..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880022f.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0196ffc7c04daff9d5d8a45e21499ecd5258bf8457643969514ad33479ce10ca -size 544349 diff --git a/control_imgs/realistic/half_8880030.png b/control_imgs/realistic/half_8880030.png deleted file mode 100644 index ee94d97534030551f0c3480d7a27eae2aeb53be5..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880030.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1808b64103ca2164fc245c4c905d35e8bd32a7a18faf2ed42328cfd9edd6bfed -size 324389 diff --git a/control_imgs/realistic/half_8880031.png b/control_imgs/realistic/half_8880031.png deleted file mode 100644 index 400269e0d889dbddbd4f946317afc53cbd0f4144..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880031.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4a8b7452d426e396770892687a31c648af8a5d3d2612282a9709431f64346703 -size 262718 diff --git a/control_imgs/realistic/half_8880041.png b/control_imgs/realistic/half_8880041.png deleted file mode 100644 index 4f54bb7dd933bb7f3361e529dfb2e97217d73705..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880041.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a7fdaf949ae35a5b6091586008f456506ef62a01fb17e2a123f9548fab668ec6 -size 568732 diff --git a/control_imgs/realistic/half_8880101.png b/control_imgs/realistic/half_8880101.png deleted file mode 100644 index 6fa3956a44c37049cb3d6615c93a3e401b26202a..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880101.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b76365170653051456c0557ed33bea2023ea1d2de2f10aa5fb37725a60605b94 -size 519451 diff --git a/control_imgs/realistic/half_8880101f.png b/control_imgs/realistic/half_8880101f.png deleted file mode 100644 index 97ac4e76ceb48988b722568bb8a23d29cb70058f..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880101f.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3bcbf70b670ed1316494dc5ae122f097e2cbe99aa135ac9c4093ed04ee4988e2 -size 519938 diff --git a/control_imgs/realistic/half_8880106.png b/control_imgs/realistic/half_8880106.png deleted file mode 100644 index bd9a5eeef18779906e96e165e79780ab6657f167..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880106.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3e4ce9cfd2febb76cbf1efdf496ab8877bf7015277532f4ecad8e99b870a612a -size 709087 diff --git a/control_imgs/realistic/half_8880107.png b/control_imgs/realistic/half_8880107.png deleted file mode 100644 index e20202724a535b014cce7a10eb1aca4ad80bb309..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880107.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9bbcd423174842f37caa3c52313def3ef177c052f089e35d1c4f50c2bb8b5e9d -size 512030 diff --git a/control_imgs/realistic/half_8880108.png b/control_imgs/realistic/half_8880108.png deleted file mode 100644 index c20627c0cd925c533bfa5a599783fb395da68b08..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880108.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2bae236479002f030d7a892755b80df30eabb23f9e97131b43d820f2b0e1947a -size 898958 diff --git a/control_imgs/realistic/half_8880200.png b/control_imgs/realistic/half_8880200.png deleted file mode 100644 index d13d9f150b78f4145fa52e9618c024d17067296f..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880200.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c6ca966b7b443c2786c5783c74f962da1b7f7872affd31b0b0f1d9dc678cefe6 -size 718798 diff --git a/control_imgs/realistic/half_8880201.png b/control_imgs/realistic/half_8880201.png deleted file mode 100644 index 64adb419d5f92fa48e4f8de2221b2bdcbaea4ec7..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880201.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1934870f12dcac92524144364f67934f5fe46e13eba5049155d7c68bb5969e44 -size 817720 diff --git a/control_imgs/realistic/half_8880400.png b/control_imgs/realistic/half_8880400.png deleted file mode 100644 index b7b05fc8f72868bbe344a9f876fe83a227b090ed..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880400.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0f1d0c79b304f27a878fddc9b386bcafb76a9545a9d14b3457f274bbc9b41773 -size 572521 diff --git a/control_imgs/realistic/half_8880400f.png b/control_imgs/realistic/half_8880400f.png deleted file mode 100644 index 7b9e525b52f99f8c455f67040d2ef66f779800b7..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880400f.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d787edd5141889a618f7701f1e68f88d8c573e6ae4447d858d6620b5510f7ae4 -size 575338 diff --git a/control_imgs/realistic/half_8880401.png b/control_imgs/realistic/half_8880401.png deleted file mode 100644 index d049867c9223b2fa002fb25586346a11ad1c3075..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880401.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3f667264a78ae5e7e4ced182acef37f4883aae08fb359bd0aaf76d5613f160e7 -size 431752 diff --git a/control_imgs/realistic/half_8880401f.png b/control_imgs/realistic/half_8880401f.png deleted file mode 100644 index 3fa74872a75720f91f666c9709dbc6d40da940ad..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880401f.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:165dcafb81773573144794a5516e4453af07d7674266e9720aa65c73879e3910 -size 429789 diff --git a/control_imgs/realistic/half_8880500.png b/control_imgs/realistic/half_8880500.png deleted file mode 100644 index 9754a6ff554288932fa28b469409bece0f1d237e..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880500.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c104c0de6a5bf32a6c2f6df25d1ad830252306bfb2f19b83032011fc822b0952 -size 611762 diff --git a/control_imgs/realistic/half_8880501.png b/control_imgs/realistic/half_8880501.png deleted file mode 100644 index e2c606fe018a2b92da0742b5a3062bc06fcb502d..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880501.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:05917d7737bc040841ec6cf146e55d80a4500a9f048591638f720b9a3af9cf55 -size 606250 diff --git a/control_imgs/realistic/half_8880502.png b/control_imgs/realistic/half_8880502.png deleted file mode 100644 index db412f0cec3cdf296ce72a44e555dfa6d5daee66..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880502.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:89e0d700efcb4de12ee86b7e4188328a0594157a8e082e1f454e078306a914f7 -size 604979 diff --git a/control_imgs/realistic/half_8880503.png b/control_imgs/realistic/half_8880503.png deleted file mode 100644 index 58247192b68630c9ba91ecb2eec9c6553c8250ce..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880503.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a2ea34160284e809e3f003e02074e668e44d2ff265d26ecf6c03a317cbbe9fb5 -size 572520 diff --git a/control_imgs/realistic/half_8880600.png b/control_imgs/realistic/half_8880600.png deleted file mode 100644 index b248110d91de6270c5be869d807373b888f5debe..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880600.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:25373c2c6a1a5f0fa6c874ebe7e1c485b8b1fe7ebcfe5aef05becf188d3101de -size 779863 diff --git a/control_imgs/realistic/half_8880602.png b/control_imgs/realistic/half_8880602.png deleted file mode 100644 index eae61679c34ad1393826dd0c64abe96a74001b74..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880602.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1709c4e04eede3fd8525b9154236ddc8f51926c56b399e86a8df6c2fb5787c40 -size 742842 diff --git a/control_imgs/realistic/half_8880700.png b/control_imgs/realistic/half_8880700.png deleted file mode 100644 index 3cedc0c34b4b468d30097bd86404ba01084333af..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880700.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:561d3f80cfbec02fc91d92f86f79c4d29fdb16d0cf7b8280b57bdfccf9d5a8ae -size 679939 diff --git a/control_imgs/realistic/half_8880800.png b/control_imgs/realistic/half_8880800.png deleted file mode 100644 index 40b6077b1e48d42a33610f375b8a0c1adff1ee38..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880800.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c0777ca3bc550c4b3c40f3ad0c9e8eb1259dc22102680ec5f80df256d18c7a49 -size 562382 diff --git a/control_imgs/realistic/half_8880801.png b/control_imgs/realistic/half_8880801.png deleted file mode 100644 index 4fea80b9aefeecd081f5d77814e9191a50331f53..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880801.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4b605195fcc6af628647ea6f6685382aa6ebfdf03f8d5468e20d1bb80d0b43f1 -size 503783 diff --git a/control_imgs/realistic/half_8880802.png b/control_imgs/realistic/half_8880802.png deleted file mode 100644 index eb4cdcf2a7f648a7b08ca5c9ad242da43bd2db23..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880802.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b45dffd4656d59e7dc270715209a2111389fcc5e1587417a0165956a0aa60f5f -size 493806 diff --git a/control_imgs/realistic/half_8880803.png b/control_imgs/realistic/half_8880803.png deleted file mode 100644 index ac69edb9584b94481689d1aa01081f59fb2bba28..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880803.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:91848c2b05a69e1fb485ae16f455cb2f15ca0acd824193a52199e046a566d676 -size 553664 diff --git a/control_imgs/realistic/half_8880804.png b/control_imgs/realistic/half_8880804.png deleted file mode 100644 index ab619cf25680389feb4c788e456855b6e58e8122..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880804.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1471739e0b5b48095f2baffe21073b43303fccf289ebd1a5efb9f6033f846ce8 -size 497751 diff --git a/control_imgs/realistic/half_8880805.png b/control_imgs/realistic/half_8880805.png deleted file mode 100644 index b4299977b4cc8a5fcd9a3ef91d387bc29689bef5..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880805.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:eb33916e640d060c811ba8866f5fa0437be6921a92dedde9c4ad6de6690c07da -size 476711 diff --git a/control_imgs/realistic/half_8880810.png b/control_imgs/realistic/half_8880810.png deleted file mode 100644 index 6fe6b9b11e4c723dd09ba5f36ff9a0d7350bf477..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880810.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f7cabad2653744d51a94b219c60d29196b6f619e4fb92c6a7ae5d6bc9aba5f96 -size 556120 diff --git a/control_imgs/realistic/half_8880811.png b/control_imgs/realistic/half_8880811.png deleted file mode 100644 index 967559e29f143b17b2717eaab3ee94574bd9b674..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880811.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:955a0db6afbc5c996275b63fbb6b3627aa9d1cff1fd28c0cd311b7b6b1707ea1 -size 345046 diff --git a/control_imgs/realistic/half_8880812.png b/control_imgs/realistic/half_8880812.png deleted file mode 100644 index eee3c7a2c5ab23bb9e9be9a722fb2fba45e6d5c6..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8880812.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5a4c30c44b6301705525c836acb64de1035b94d51a043e12e64bf690a9f008d0 -size 672755 diff --git a/control_imgs/realistic/half_8881001.png b/control_imgs/realistic/half_8881001.png deleted file mode 100644 index 0366c5b9db063866c2a67e0f039b466fc750e85a..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_8881001.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3c56a445afafe2cd97ecadbb315635245d61f29014f5b341ba4a9f52607c4fe5 -size 569763 diff --git a/control_imgs/realistic/half_90812.png b/control_imgs/realistic/half_90812.png deleted file mode 100644 index 7145258b28e1d2bacba6c046996bbf92d3499012..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_90812.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:05007ad60fadfa4b9e32f13918c921706f63860751e505e70ee980447fc365c1 -size 864141 diff --git a/control_imgs/realistic/half_964165a1-9d01-4d60-80c6-146ff3085797.png b/control_imgs/realistic/half_964165a1-9d01-4d60-80c6-146ff3085797.png deleted file mode 100644 index ef156d6caf53205a36d03a829a01f8300778f745..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_964165a1-9d01-4d60-80c6-146ff3085797.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:644d8a72dde2c69db7605cd76ab2ac9321463ffd1154a9546c91492aa503b8cc -size 342394 diff --git a/control_imgs/realistic/half_9b200674-5d2a-4e1d-8a26-8cc83bd700d2.png b/control_imgs/realistic/half_9b200674-5d2a-4e1d-8a26-8cc83bd700d2.png deleted file mode 100644 index 0766c441c88a056f6b62a4aa63f955c00a753b3c..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_9b200674-5d2a-4e1d-8a26-8cc83bd700d2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3a058c4a4fb87357ea9ff544179080f20f0878d6114b50b65d75fe60ceae97a9 -size 341803 diff --git a/control_imgs/realistic/half_c060d6b7-5978-434d-9e53-f396fed9c7e8.png b/control_imgs/realistic/half_c060d6b7-5978-434d-9e53-f396fed9c7e8.png deleted file mode 100644 index c3db9c9b671ffc9449eb752d1ee94bc1b668a607..0000000000000000000000000000000000000000 --- a/control_imgs/realistic/half_c060d6b7-5978-434d-9e53-f396fed9c7e8.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:523ab1aed32e6c8c6bdfb6ccfa0c72f7871fdf6726dc85948142c692a22e9556 -size 364164 diff --git a/control_imgs/lowpoly/rivals.png b/control_imgs/rivals.png similarity index 100% rename from control_imgs/lowpoly/rivals.png rename to control_imgs/rivals.png diff --git a/control_imgs/lowpoly/santa-claus.png b/control_imgs/santa-claus.png similarity index 100% rename from control_imgs/lowpoly/santa-claus.png rename to control_imgs/santa-claus.png diff --git a/control_imgs/lowpoly/snow-white.png b/control_imgs/snow-white.png similarity index 100% rename from control_imgs/lowpoly/snow-white.png rename to control_imgs/snow-white.png diff --git a/control_imgs/lowpoly/snowball-fight.png b/control_imgs/snowball-fight.png similarity index 100% rename from control_imgs/lowpoly/snowball-fight.png rename to control_imgs/snowball-fight.png diff --git a/control_imgs/lowpoly/snowy-stockings.png b/control_imgs/snowy-stockings.png similarity index 100% rename from control_imgs/lowpoly/snowy-stockings.png rename to control_imgs/snowy-stockings.png diff --git a/control_imgs/lowpoly/spring-color.png b/control_imgs/spring-color.png similarity index 100% rename from control_imgs/lowpoly/spring-color.png rename to control_imgs/spring-color.png diff --git a/control_imgs/lowpoly/summer.png b/control_imgs/summer.png similarity index 100% rename from control_imgs/lowpoly/summer.png rename to control_imgs/summer.png diff --git a/control_imgs/lowpoly/summer2.png b/control_imgs/summer2.png similarity index 100% rename from control_imgs/lowpoly/summer2.png rename to control_imgs/summer2.png diff --git a/control_imgs/lowpoly/zenitsu-agatsuma.png b/control_imgs/zenitsu-agatsuma.png similarity index 100% rename from control_imgs/lowpoly/zenitsu-agatsuma.png rename to control_imgs/zenitsu-agatsuma.png diff --git a/force_resize_control_imgs.py b/force_resize_control_imgs.py index a69635c7699e84cd8ea7bf6436824ff1104f997a..29eaea05c76ee42dee248c8a296b5a021ff75411 100644 --- a/force_resize_control_imgs.py +++ b/force_resize_control_imgs.py @@ -9,9 +9,9 @@ import uvicorn import os -for i in os.listdir('control_imgs/lowpoly'): +for i in os.listdir('control_imgs'): if i.endswith('.png'): - img_path = f'control_imgs/lowpoly/{i}' + img_path = f'control_imgs/{i}' img = Image.open(img_path) w, h = img.width, img.height if w != 1024 or h != 1024: diff --git a/gpt_skin2real_auto.py b/gpt_skin2real_auto.py index b7d1afcab5aebb1d3cfd44a6e4064cd5c9667721..a6c8d23454f73a73122ebbf5574c3e46cced3b43 100644 --- a/gpt_skin2real_auto.py +++ b/gpt_skin2real_auto.py @@ -7,8 +7,8 @@ from PIL import Image from convert_skin import convert_skin_64x32_to_64x64 def main(): - skins_dir = "skins/lowpoly" - control_imgs_dir = "control_imgs/lowpoly" + skins_dir = "skins" + control_imgs_dir = "control_imgs" if not os.path.exists(skins_dir): print(f"Error: Skins directory '{skins_dir}' does not exist.") @@ -16,7 +16,7 @@ def main(): os.makedirs(control_imgs_dir, exist_ok=True) - # List all PNG files in skins/lowpoly + # List all PNG files in skins skin_files = [f for f in os.listdir(skins_dir) if f.lower().endswith(".png")] skin_files.sort() diff --git a/skins/lowpoly/09e92b94f8035dd6.png b/skins/09e92b94f8035dd6.png similarity index 100% rename from skins/lowpoly/09e92b94f8035dd6.png rename to skins/09e92b94f8035dd6.png diff --git a/skins/lowpoly/0f2c9a15bd13b738.png b/skins/0f2c9a15bd13b738.png similarity index 100% rename from skins/lowpoly/0f2c9a15bd13b738.png rename to skins/0f2c9a15bd13b738.png diff --git a/skins/lowpoly/12.png b/skins/12.png similarity index 100% rename from skins/lowpoly/12.png rename to skins/12.png diff --git a/skins/lowpoly/124203.png b/skins/124203.png similarity index 100% rename from skins/lowpoly/124203.png rename to skins/124203.png diff --git a/skins/lowpoly/16ebce196c6e5038.png b/skins/16ebce196c6e5038.png similarity index 100% rename from skins/lowpoly/16ebce196c6e5038.png rename to skins/16ebce196c6e5038.png diff --git a/skins/lowpoly/198224.png b/skins/198224.png similarity index 100% rename from skins/lowpoly/198224.png rename to skins/198224.png diff --git a/skins/lowpoly/210d44489b54ea5a.png b/skins/210d44489b54ea5a.png similarity index 100% rename from skins/lowpoly/210d44489b54ea5a.png rename to skins/210d44489b54ea5a.png diff --git a/skins/lowpoly/28bb410cc9c009e9.png b/skins/28bb410cc9c009e9.png similarity index 100% rename from skins/lowpoly/28bb410cc9c009e9.png rename to skins/28bb410cc9c009e9.png diff --git a/skins/lowpoly/2c35b77ee2cdfd42.png b/skins/2c35b77ee2cdfd42.png similarity index 100% rename from skins/lowpoly/2c35b77ee2cdfd42.png rename to skins/2c35b77ee2cdfd42.png diff --git a/skins/lowpoly/386c002183750df9.png b/skins/386c002183750df9.png similarity index 100% rename from skins/lowpoly/386c002183750df9.png rename to skins/386c002183750df9.png diff --git a/skins/lowpoly/408097.png b/skins/408097.png similarity index 100% rename from skins/lowpoly/408097.png rename to skins/408097.png diff --git a/skins/lowpoly/438299.png b/skins/438299.png similarity index 100% rename from skins/lowpoly/438299.png rename to skins/438299.png diff --git a/skins/lowpoly/5002d28d665fc668.png b/skins/5002d28d665fc668.png similarity index 100% rename from skins/lowpoly/5002d28d665fc668.png rename to skins/5002d28d665fc668.png diff --git a/skins/lowpoly/509dd472891584c0.png b/skins/509dd472891584c0.png similarity index 100% rename from skins/lowpoly/509dd472891584c0.png rename to skins/509dd472891584c0.png diff --git a/skins/lowpoly/517485.png b/skins/517485.png similarity index 100% rename from skins/lowpoly/517485.png rename to skins/517485.png diff --git a/skins/lowpoly/525273.png b/skins/525273.png similarity index 100% rename from skins/lowpoly/525273.png rename to skins/525273.png diff --git a/skins/lowpoly/7028ba95bd0a804f.png b/skins/7028ba95bd0a804f.png similarity index 100% rename from skins/lowpoly/7028ba95bd0a804f.png rename to skins/7028ba95bd0a804f.png diff --git a/skins/lowpoly/8880007.png b/skins/8880007.png similarity index 100% rename from skins/lowpoly/8880007.png rename to skins/8880007.png diff --git a/skins/lowpoly/8880010.png b/skins/8880010.png similarity index 100% rename from skins/lowpoly/8880010.png rename to skins/8880010.png diff --git a/skins/lowpoly/8880011.png b/skins/8880011.png similarity index 100% rename from skins/lowpoly/8880011.png rename to skins/8880011.png diff --git a/skins/lowpoly/8880023.png b/skins/8880023.png similarity index 100% rename from skins/lowpoly/8880023.png rename to skins/8880023.png diff --git a/skins/lowpoly/8880023f.png b/skins/8880023f.png similarity index 100% rename from skins/lowpoly/8880023f.png rename to skins/8880023f.png diff --git a/skins/lowpoly/8880102.png b/skins/8880102.png similarity index 100% rename from skins/lowpoly/8880102.png rename to skins/8880102.png diff --git a/skins/lowpoly/8882000.png b/skins/8882000.png similarity index 100% rename from skins/lowpoly/8882000.png rename to skins/8882000.png diff --git a/skins/lowpoly/8882001.png b/skins/8882001.png similarity index 100% rename from skins/lowpoly/8882001.png rename to skins/8882001.png diff --git a/skins/lowpoly/8882002.png b/skins/8882002.png similarity index 100% rename from skins/lowpoly/8882002.png rename to skins/8882002.png diff --git a/skins/lowpoly/8882003.png b/skins/8882003.png similarity index 100% rename from skins/lowpoly/8882003.png rename to skins/8882003.png diff --git a/skins/lowpoly/94541b1e3628e183.png b/skins/94541b1e3628e183.png similarity index 100% rename from skins/lowpoly/94541b1e3628e183.png rename to skins/94541b1e3628e183.png diff --git a/skins/lowpoly/9874eccccd0dc1c0.png b/skins/9874eccccd0dc1c0.png similarity index 100% rename from skins/lowpoly/9874eccccd0dc1c0.png rename to skins/9874eccccd0dc1c0.png diff --git a/skins/lowpoly/a5c3a615940c35cf.png b/skins/a5c3a615940c35cf.png similarity index 100% rename from skins/lowpoly/a5c3a615940c35cf.png rename to skins/a5c3a615940c35cf.png diff --git a/skins/lowpoly/ac569fdeb36124e8.png b/skins/ac569fdeb36124e8.png similarity index 100% rename from skins/lowpoly/ac569fdeb36124e8.png rename to skins/ac569fdeb36124e8.png diff --git a/skins/lowpoly/anya-forger.png b/skins/anya-forger.png similarity index 100% rename from skins/lowpoly/anya-forger.png rename to skins/anya-forger.png diff --git a/skins/lowpoly/b764a6eefd1b8470.png b/skins/b764a6eefd1b8470.png similarity index 100% rename from skins/lowpoly/b764a6eefd1b8470.png rename to skins/b764a6eefd1b8470.png diff --git a/skins/lowpoly/cba099198414fdf1.png b/skins/cba099198414fdf1.png similarity index 100% rename from skins/lowpoly/cba099198414fdf1.png rename to skins/cba099198414fdf1.png diff --git a/skins/lowpoly/cool-summer.png b/skins/cool-summer.png similarity index 100% rename from skins/lowpoly/cool-summer.png rename to skins/cool-summer.png diff --git a/skins/lowpoly/d2055d41587a47a0.png b/skins/d2055d41587a47a0.png similarity index 100% rename from skins/lowpoly/d2055d41587a47a0.png rename to skins/d2055d41587a47a0.png diff --git a/skins/lowpoly/e3610b319b59154e.png b/skins/e3610b319b59154e.png similarity index 100% rename from skins/lowpoly/e3610b319b59154e.png rename to skins/e3610b319b59154e.png diff --git a/skins/lowpoly/ec3d9a4ebdbf0856.png b/skins/ec3d9a4ebdbf0856.png similarity index 100% rename from skins/lowpoly/ec3d9a4ebdbf0856.png rename to skins/ec3d9a4ebdbf0856.png diff --git a/skins/lowpoly/f121310a3339457a.png b/skins/f121310a3339457a.png similarity index 100% rename from skins/lowpoly/f121310a3339457a.png rename to skins/f121310a3339457a.png diff --git a/skins/lowpoly/half_12.png b/skins/half_12.png similarity index 100% rename from skins/lowpoly/half_12.png rename to skins/half_12.png diff --git a/skins/lowpoly/half_124203.png b/skins/half_124203.png similarity index 100% rename from skins/lowpoly/half_124203.png rename to skins/half_124203.png diff --git a/skins/lowpoly/half_198224.png b/skins/half_198224.png similarity index 100% rename from skins/lowpoly/half_198224.png rename to skins/half_198224.png diff --git a/skins/lowpoly/half_408097.png b/skins/half_408097.png similarity index 100% rename from skins/lowpoly/half_408097.png rename to skins/half_408097.png diff --git a/skins/lowpoly/half_438299.png b/skins/half_438299.png similarity index 100% rename from skins/lowpoly/half_438299.png rename to skins/half_438299.png diff --git a/skins/lowpoly/half_517485.png b/skins/half_517485.png similarity index 100% rename from skins/lowpoly/half_517485.png rename to skins/half_517485.png diff --git a/skins/lowpoly/half_525273.png b/skins/half_525273.png similarity index 100% rename from skins/lowpoly/half_525273.png rename to skins/half_525273.png diff --git a/skins/lowpoly/half_8880007.png b/skins/half_8880007.png similarity index 100% rename from skins/lowpoly/half_8880007.png rename to skins/half_8880007.png diff --git a/skins/lowpoly/half_8880010.png b/skins/half_8880010.png similarity index 100% rename from skins/lowpoly/half_8880010.png rename to skins/half_8880010.png diff --git a/skins/lowpoly/half_8880011.png b/skins/half_8880011.png similarity index 100% rename from skins/lowpoly/half_8880011.png rename to skins/half_8880011.png diff --git a/skins/lowpoly/half_8880023.png b/skins/half_8880023.png similarity index 100% rename from skins/lowpoly/half_8880023.png rename to skins/half_8880023.png diff --git a/skins/lowpoly/half_8880023f.png b/skins/half_8880023f.png similarity index 100% rename from skins/lowpoly/half_8880023f.png rename to skins/half_8880023f.png diff --git a/skins/lowpoly/half_8880102.png b/skins/half_8880102.png similarity index 100% rename from skins/lowpoly/half_8880102.png rename to skins/half_8880102.png diff --git a/skins/lowpoly/late-summer.png b/skins/late-summer.png similarity index 100% rename from skins/lowpoly/late-summer.png rename to skins/late-summer.png diff --git a/skins/lowpoly/.DS_Store b/skins/lowpoly/.DS_Store deleted file mode 100644 index 5008ddfcf53c02e82d7eee2e57c38e5672ef89f6..0000000000000000000000000000000000000000 Binary files a/skins/lowpoly/.DS_Store and /dev/null differ diff --git a/skins/lowpoly/one-day-i-will-stop-falling-in-love-with-you.png b/skins/one-day-i-will-stop-falling-in-love-with-you.png similarity index 100% rename from skins/lowpoly/one-day-i-will-stop-falling-in-love-with-you.png rename to skins/one-day-i-will-stop-falling-in-love-with-you.png diff --git a/skins/realistic/0042.png b/skins/realistic/0042.png deleted file mode 100644 index 233e3ca9f765465a53f19cb2462126ba6dd6e6a4..0000000000000000000000000000000000000000 --- a/skins/realistic/0042.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:27baa66a02c33f13c4b003f5204a38406a96b4de5eb18e25ae2df2ff556971f1 -size 5422 diff --git a/skins/realistic/17474.png b/skins/realistic/17474.png deleted file mode 100644 index cc2cddf75236840df8fd06dd5d0e4dc68cbf4f06..0000000000000000000000000000000000000000 --- a/skins/realistic/17474.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0a8037764a73897ff417edf20b74b67a3bd57acff5712c4d2eeb2152102228c3 -size 1206 diff --git a/skins/realistic/1ed2b9af-0722-4869-8685-294610976cb5.png b/skins/realistic/1ed2b9af-0722-4869-8685-294610976cb5.png deleted file mode 100644 index 1db92563cac73de1b1ab1668bf2f8ccebf667f5d..0000000000000000000000000000000000000000 --- a/skins/realistic/1ed2b9af-0722-4869-8685-294610976cb5.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:958f31f3892af2ba59a3c71321f5c7dd54ed11aa73e9b6b33567913881bc0e9e -size 5674 diff --git a/skins/realistic/222855.png b/skins/realistic/222855.png deleted file mode 100644 index fa07b42092d10008d59cae355e8647c96cb4adcd..0000000000000000000000000000000000000000 --- a/skins/realistic/222855.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fdf20bec490662a3c02adb591539161b66f815efb6d1aee2109ecda8e4c5be1c -size 1781 diff --git a/skins/realistic/49ed3dbc-2d35-491c-b995-be54c59ab423.png b/skins/realistic/49ed3dbc-2d35-491c-b995-be54c59ab423.png deleted file mode 100644 index 98b7e06b073fec3ef3e3919c28d6b45deaddd9b2..0000000000000000000000000000000000000000 --- a/skins/realistic/49ed3dbc-2d35-491c-b995-be54c59ab423.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8835d0efa077c94f574ba4f3efc8ab2d19509b95ad320b2307b703a73f1d8950 -size 5037 diff --git a/skins/realistic/519494.png b/skins/realistic/519494.png deleted file mode 100644 index fc6d699ee41659dd2598b8629d839b1a3eb3a0ec..0000000000000000000000000000000000000000 --- a/skins/realistic/519494.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d1f3e49d66d77b4f3d569df48940d85ebde36ad46bd709ba95468f3b1677f381 -size 1870 diff --git a/skins/realistic/538419.png b/skins/realistic/538419.png deleted file mode 100644 index f93ab0b73fd74c42dd028087d772f5987503a31f..0000000000000000000000000000000000000000 --- a/skins/realistic/538419.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:45680d67585a5db32f48a50fd5b9b7ed83438f2d212cb0bd09a4f86a79cb8cf1 -size 2464 diff --git a/skins/realistic/553045.png b/skins/realistic/553045.png deleted file mode 100644 index 89638415f99c996a0a20a008fdded3bb7a8eb41e..0000000000000000000000000000000000000000 --- a/skins/realistic/553045.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:146ef456ea9f5a349b0d7b1a793a59eb06bb41bd504dd8187c407c41605d7026 -size 2451 diff --git a/skins/realistic/560261.png b/skins/realistic/560261.png deleted file mode 100644 index b8c90e575e421b2cb09df31baf5c5e1ce59856a7..0000000000000000000000000000000000000000 --- a/skins/realistic/560261.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f4933fbd541ca668a3c8d218ab7ef98eb3f842c119b077c1f7f5b95a0b3207d8 -size 3228 diff --git a/skins/realistic/6306fffe-5944-4659-adea-055d00af89b0.png b/skins/realistic/6306fffe-5944-4659-adea-055d00af89b0.png deleted file mode 100644 index 71d313403b443513174e11fea7d9dbb98a5ffdca..0000000000000000000000000000000000000000 --- a/skins/realistic/6306fffe-5944-4659-adea-055d00af89b0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:354efce0f2a9dbaaafb117718fe753b63103400325f9e8bd0bee2adc610012e0 -size 5938 diff --git a/skins/realistic/64154.png b/skins/realistic/64154.png deleted file mode 100644 index a92286e3ca3e61e9014a91b873a136c70cd86435..0000000000000000000000000000000000000000 --- a/skins/realistic/64154.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:98448f2f08182a297de3a00016ef2ca61513b4fbe15ce00d6f9c7db3f653137c -size 1657 diff --git a/skins/realistic/64154f.png b/skins/realistic/64154f.png deleted file mode 100644 index 9154901dfc304e50b38cfdcae7165266095ce1c6..0000000000000000000000000000000000000000 --- a/skins/realistic/64154f.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e87bba0888c48fc4de4f28cfc3a42543fa145ffe93853486d0a85c185d0188d5 -size 1716 diff --git a/skins/realistic/645888.png b/skins/realistic/645888.png deleted file mode 100644 index 861c546f616a196faf066476f5cdb3a9689b6024..0000000000000000000000000000000000000000 --- a/skins/realistic/645888.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:eb9ae92e8a86e6ff5408ac86f39dc942f9121485b326c2dc20f472ec0d0a6590 -size 3762 diff --git a/skins/realistic/661333b9-bf31-4c70-af83-293663497b98.png b/skins/realistic/661333b9-bf31-4c70-af83-293663497b98.png deleted file mode 100644 index 0ecb5e2b66c9d937623cf4d761f0d9595cef920f..0000000000000000000000000000000000000000 --- a/skins/realistic/661333b9-bf31-4c70-af83-293663497b98.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:14e1a64d892cc8b60f73a0ef442458f3cab3747d1b241f0ba526cd244bab9517 -size 5547 diff --git a/skins/realistic/667114.png b/skins/realistic/667114.png deleted file mode 100644 index c42026987c28338a1c663d18a6a554015cb63b2a..0000000000000000000000000000000000000000 --- a/skins/realistic/667114.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:55803094ff8e354f6b4a043890e75c2502423895670084ef9b66a5cdeb276f19 -size 2158 diff --git a/skins/realistic/716523.png b/skins/realistic/716523.png deleted file mode 100644 index 62338fda752bd734b3c437718c99c2a63a841bac..0000000000000000000000000000000000000000 --- a/skins/realistic/716523.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8013b27eaaf7488f632b4cd8b4192260b21eb4a32305800518b3fee6202f37e2 -size 1747 diff --git a/skins/realistic/7d3f1a9c-1945-4b5f-a686-2eb7aa6f8d89.png b/skins/realistic/7d3f1a9c-1945-4b5f-a686-2eb7aa6f8d89.png deleted file mode 100644 index fe6296a81fec3caa03f283cf62f42b7e6b7d7c3d..0000000000000000000000000000000000000000 --- a/skins/realistic/7d3f1a9c-1945-4b5f-a686-2eb7aa6f8d89.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e973f2f01d1a8a2ca31dc72d90dc13dde292c6bc04d4959f633a0507c5bf7850 -size 3675 diff --git a/skins/realistic/8024eb55-ef05-4752-a1b8-4ad7351a8172.png b/skins/realistic/8024eb55-ef05-4752-a1b8-4ad7351a8172.png deleted file mode 100644 index 5d3aae1dbb1b3a70200b8b5173bdd4cb4e1c64e7..0000000000000000000000000000000000000000 --- a/skins/realistic/8024eb55-ef05-4752-a1b8-4ad7351a8172.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:602634713f8c7878c3d5ea2de090efe5f1d9bffd36c71b82a480edc10a698610 -size 5072 diff --git a/skins/realistic/8880001.png b/skins/realistic/8880001.png deleted file mode 100644 index 3f9b66d93b28e7c402f798a732cd02159e86dcb9..0000000000000000000000000000000000000000 --- a/skins/realistic/8880001.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f5f72bd5236060df4da7768d153e3c16e3a6a30846ad562d39b33e0dc91a2927 -size 4871 diff --git a/skins/realistic/8880002.png b/skins/realistic/8880002.png deleted file mode 100644 index 8e6adc53a0bb40a8d102c5ccb03b3d5dcd587549..0000000000000000000000000000000000000000 --- a/skins/realistic/8880002.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:50f8e7896dc2985b316c9778a28cb8806d0a32e404a8c1f64ecb289e386a0452 -size 5450 diff --git a/skins/realistic/8880003.png b/skins/realistic/8880003.png deleted file mode 100644 index e6fff76047da28f250e665c2219c10d4999daac2..0000000000000000000000000000000000000000 --- a/skins/realistic/8880003.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:36493cb641fd47f916571b3d8409e9b18c7baeb0e58a75df091af8c1f32f8a79 -size 4939 diff --git a/skins/realistic/8880005.png b/skins/realistic/8880005.png deleted file mode 100644 index 51f8829b0f226aa70c59fe0813597634dea523de..0000000000000000000000000000000000000000 --- a/skins/realistic/8880005.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dac441c73e625da9c76a2c996695e069b6cbd63bc7c33ee865126bb466a69e6f -size 5001 diff --git a/skins/realistic/8880006.png b/skins/realistic/8880006.png deleted file mode 100644 index 032b9ff673603ab7f263dc75d2d4b43dfb9dbc4d..0000000000000000000000000000000000000000 --- a/skins/realistic/8880006.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3136516e455cfe7ae2c29f7ae9a9aa695c7892fa633345c0af3644838880b214 -size 4361 diff --git a/skins/realistic/8880008.png b/skins/realistic/8880008.png deleted file mode 100644 index 02b20a8fd16234d360c63563c1508d6d7694ada9..0000000000000000000000000000000000000000 --- a/skins/realistic/8880008.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e94f70b2dd8c3ecf3f435f32e00436611dff6121b572f830c39dc8a47b270e99 -size 4020 diff --git a/skins/realistic/8880015.png b/skins/realistic/8880015.png deleted file mode 100644 index 49fd300680e3060fa6d91cb8db52b719579b4afc..0000000000000000000000000000000000000000 --- a/skins/realistic/8880015.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:616e97c229a4173d964d7548ad73d1b3d5c576f6ab923c32b227b4ef5ec7f80f -size 4714 diff --git a/skins/realistic/8880020.png b/skins/realistic/8880020.png deleted file mode 100644 index 6c9b322b51d49088c0cc17e89cacef0c1c2e7d28..0000000000000000000000000000000000000000 --- a/skins/realistic/8880020.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:992d40940cc5f7df06888705b945901fb796b131de20317b1d84c67e78aebe4d -size 895 diff --git a/skins/realistic/8880020f.png b/skins/realistic/8880020f.png deleted file mode 100644 index b678dd33912212634eb7341d67278f98bf64d7af..0000000000000000000000000000000000000000 --- a/skins/realistic/8880020f.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4ab9cc20b84818bddb0e5914cc47948ec4f9834926c25f7c902deece196d4854 -size 2038 diff --git a/skins/realistic/8880021.png b/skins/realistic/8880021.png deleted file mode 100644 index 2e09185f8ba2ca9da412798964e3d1c6508c15b2..0000000000000000000000000000000000000000 --- a/skins/realistic/8880021.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:29909a75d19228a6e6115fe5938b9bccb73ed68814efb85e9632f9b70d495be7 -size 2967 diff --git a/skins/realistic/8880021f.png b/skins/realistic/8880021f.png deleted file mode 100644 index c8bedf9bdcf247ffa0a64b6eeab0a406b046112a..0000000000000000000000000000000000000000 --- a/skins/realistic/8880021f.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7858df6e37463c899270581bdb05a6559767656e0e6dd48f3f4950457221f5c5 -size 2386 diff --git a/skins/realistic/8880022.png b/skins/realistic/8880022.png deleted file mode 100644 index 38769bd7d0f95066354d6a52f285c19c00fbeac0..0000000000000000000000000000000000000000 --- a/skins/realistic/8880022.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c862923a907d568b2807d403c62f64df2ef97588382aa0a9fde791d42dc14a91 -size 1366 diff --git a/skins/realistic/8880022f.png b/skins/realistic/8880022f.png deleted file mode 100644 index f98c42dd71d3061390d32bd94b53c19325a7dc77..0000000000000000000000000000000000000000 --- a/skins/realistic/8880022f.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:000c9ec29fd3a46849794fdf7acdec1774eae991742fe9fcb95c67d5bd8c35f7 -size 3057 diff --git a/skins/realistic/8880030.png b/skins/realistic/8880030.png deleted file mode 100644 index c468aba8250e6fef54b89416c5daed31934f11ad..0000000000000000000000000000000000000000 --- a/skins/realistic/8880030.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:533662eac8764d569cb77d75efd421ffaae54f76606dcb9ec3532adb3b7baa98 -size 1170 diff --git a/skins/realistic/8880031.png b/skins/realistic/8880031.png deleted file mode 100644 index e388f0b6cdd381010addc37fa54d6e57a6e0274c..0000000000000000000000000000000000000000 --- a/skins/realistic/8880031.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:72ace33342da7faf0dc4a9032a68afd299274e6ed2867b89647011f5eb92a1d3 -size 892 diff --git a/skins/realistic/8880041.png b/skins/realistic/8880041.png deleted file mode 100644 index 5e9599e296882d5844f5bb7dd836676f4ace0d10..0000000000000000000000000000000000000000 --- a/skins/realistic/8880041.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:01b7b20facaf7c9310ec586df9829f33e7a0a0be628cb88f7a9fc891c1b28379 -size 806 diff --git a/skins/realistic/8880101.png b/skins/realistic/8880101.png deleted file mode 100644 index 3881756db3ea969167d42e9503e6a22ca7f0594e..0000000000000000000000000000000000000000 --- a/skins/realistic/8880101.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2398ba7400b7268f05c87a65876e26ac610acf92f0d108d8ac9d836858b58f6d -size 1833 diff --git a/skins/realistic/8880101f.png b/skins/realistic/8880101f.png deleted file mode 100644 index 0bf9fcce03b7d52cd6e08e7794e542546396ca38..0000000000000000000000000000000000000000 --- a/skins/realistic/8880101f.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e227c27fea4da0619703142b3253b3584d51343e189dd54be667aabe561d538e -size 1572 diff --git a/skins/realistic/8880106.png b/skins/realistic/8880106.png deleted file mode 100644 index 5053dc41e6f049f8b714482d779603fba94d338d..0000000000000000000000000000000000000000 --- a/skins/realistic/8880106.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fe799b7d0cef332fe63d3ebefdb442aeb0f522aeb1b308e191173046c130a728 -size 1851 diff --git a/skins/realistic/8880107.png b/skins/realistic/8880107.png deleted file mode 100644 index 028cd0995d626c2359679b34932c14dc55a515ca..0000000000000000000000000000000000000000 --- a/skins/realistic/8880107.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4e1425540dea84f10bdceb86a849dda03284c2bbe554faa7fd8b4bce1c9714d7 -size 4755 diff --git a/skins/realistic/8880108.png b/skins/realistic/8880108.png deleted file mode 100644 index e4d1b974d150081dfafe90104304a95eb54d6cbc..0000000000000000000000000000000000000000 --- a/skins/realistic/8880108.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cbee3ed6f36e03eba301febcdd905b87bd7b5e1c0e717ccdbce4639b8e732535 -size 3149 diff --git a/skins/realistic/8880200.png b/skins/realistic/8880200.png deleted file mode 100644 index eaf2c7f222af7b1ff998bc596c207a33e20028a6..0000000000000000000000000000000000000000 --- a/skins/realistic/8880200.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3aded8fbd5c74104e8ff1deead80aaafff270f9e21bb6164943cab1ef27fa3b8 -size 1225 diff --git a/skins/realistic/8880201.png b/skins/realistic/8880201.png deleted file mode 100644 index c576b22e39d16d1f028652b2335006d3ef1fea2c..0000000000000000000000000000000000000000 --- a/skins/realistic/8880201.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9db016a34df57febdab9c5d7347d3b454c2705a221e877d380716ed34bd4d2bc -size 1651 diff --git a/skins/realistic/8880400.png b/skins/realistic/8880400.png deleted file mode 100644 index da159cf7088c8fd5df0c05791a9e2aeb674374c2..0000000000000000000000000000000000000000 --- a/skins/realistic/8880400.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d592ea1c23e960d8d46b8a0b3b9051a15075db638e95b6e933ba4b8f67c0f475 -size 2132 diff --git a/skins/realistic/8880400f.png b/skins/realistic/8880400f.png deleted file mode 100644 index 4ec33338dad437875b7478b738f9eb0ff382bd2d..0000000000000000000000000000000000000000 --- a/skins/realistic/8880400f.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cd9bab1f08c58fcf8826498723709ca95dcb3301e3e07cb0c3463fe9f9346564 -size 1941 diff --git a/skins/realistic/8880401.png b/skins/realistic/8880401.png deleted file mode 100644 index 6d7925cc8d140a01c93ffafb0f36d2ac2f339ed0..0000000000000000000000000000000000000000 --- a/skins/realistic/8880401.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e64be9533b37888d8ca26de3a2a5bb997544c7494c74f1b05d6aaa3a628b0d37 -size 760 diff --git a/skins/realistic/8880401f.png b/skins/realistic/8880401f.png deleted file mode 100644 index 7eab646ac682beff7e5f54178249b069d9eee9c1..0000000000000000000000000000000000000000 --- a/skins/realistic/8880401f.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ba2d564e49f1f5f6e83265b6ce0576f0a7e88b64db1f8bcd27df0ec30c38256b -size 1477 diff --git a/skins/realistic/8880500.png b/skins/realistic/8880500.png deleted file mode 100644 index a8e4b201983578fea5f0b2c2d401799920c46aa1..0000000000000000000000000000000000000000 --- a/skins/realistic/8880500.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6be050b3cc10cc233f4cbd9586e61c069b825b2c9d1e2fe54b1fc3914ec16966 -size 3629 diff --git a/skins/realistic/8880501.png b/skins/realistic/8880501.png deleted file mode 100644 index b3f66740f2972b2e20a4be1220d3b5dc82053990..0000000000000000000000000000000000000000 --- a/skins/realistic/8880501.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2660ee0a0e645002b6dd158f1ac1d6e19ab36a9e8675c59e9eeee6fd78ebe0e6 -size 4610 diff --git a/skins/realistic/8880502.png b/skins/realistic/8880502.png deleted file mode 100644 index 2c0d869daa7b442d3d5ae3c714d82841367a70b8..0000000000000000000000000000000000000000 --- a/skins/realistic/8880502.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e525591c8b6b7be58a85c3167a9b5db9254e84cf930abaf0e3f3eb97dee4fd30 -size 1745 diff --git a/skins/realistic/8880503.png b/skins/realistic/8880503.png deleted file mode 100644 index b1f8e6cb8fe9884640ba8107b8a05e3cbee224fe..0000000000000000000000000000000000000000 --- a/skins/realistic/8880503.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a42be329b69b2c3ccb30fd954a1809ee59c1691eb8640e6b123de25fb78c0da8 -size 3202 diff --git a/skins/realistic/8880600.png b/skins/realistic/8880600.png deleted file mode 100644 index 85e07d9f56778536bd56873b8b1d4d20481114d5..0000000000000000000000000000000000000000 --- a/skins/realistic/8880600.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:189ddd6d79fb3398e0b47b11353352dd4edf974799f8f64b05d8673052cae113 -size 2444 diff --git a/skins/realistic/8880602.png b/skins/realistic/8880602.png deleted file mode 100644 index 51460714154307332a7cba1b4464e756ddba1ffd..0000000000000000000000000000000000000000 --- a/skins/realistic/8880602.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7ce93aec4f8d2aadcdd13cc956b835651824b12ccef70cfbc712fedc67f44c12 -size 3108 diff --git a/skins/realistic/8880700.png b/skins/realistic/8880700.png deleted file mode 100644 index 5a65c84c118b1b4b2f201181a970715831828b9d..0000000000000000000000000000000000000000 --- a/skins/realistic/8880700.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b8005005804d87aa4edef4e8d034866280296b04f15c0259e7265c06dc758848 -size 5223 diff --git a/skins/realistic/8880800.png b/skins/realistic/8880800.png deleted file mode 100644 index c2655e4b624b53c1b6d018fd2ac02fbd103d8777..0000000000000000000000000000000000000000 --- a/skins/realistic/8880800.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a88c402c46661386e0f238d9f9a0f4b299bd13c2e4e913a0f837607cebb9558a -size 1991 diff --git a/skins/realistic/8880801.png b/skins/realistic/8880801.png deleted file mode 100644 index 52df9e8f06c072d5a3348ea438873dce8a1860c9..0000000000000000000000000000000000000000 --- a/skins/realistic/8880801.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:71a6abcec94410609548b0a2fb04e254e4f3098beecfefe231201117a757cef6 -size 984 diff --git a/skins/realistic/8880802.png b/skins/realistic/8880802.png deleted file mode 100644 index df052b486b9ebe011a8d4b8c40f7378fa7500f05..0000000000000000000000000000000000000000 --- a/skins/realistic/8880802.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:947747c6669ab91240f3864beddd56cd04ffb844759c1524c44f405249134f3b -size 761 diff --git a/skins/realistic/8880803.png b/skins/realistic/8880803.png deleted file mode 100644 index 8e60bc54cf49be122f381dc394d81bbf470256d6..0000000000000000000000000000000000000000 --- a/skins/realistic/8880803.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e1b9754e355023dfef23727f99dfdc22e1413dd74255d61e3e9193721639b8f9 -size 4450 diff --git a/skins/realistic/8880804.png b/skins/realistic/8880804.png deleted file mode 100644 index 74cc4f0fdc4d09f6d6060382aa5bbef80f4b9db6..0000000000000000000000000000000000000000 --- a/skins/realistic/8880804.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cc096a8188c6e1833529a86ef13827b081957e7ebefc14c006db51662721c0b0 -size 1925 diff --git a/skins/realistic/8880805.png b/skins/realistic/8880805.png deleted file mode 100644 index 8f885648ec1cca400cde058671af7ed91ff07d80..0000000000000000000000000000000000000000 --- a/skins/realistic/8880805.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4a1a889174d4f34138234f0a210894297b6aa39fd743224162e7c662b8a5dd55 -size 1611 diff --git a/skins/realistic/8880810.png b/skins/realistic/8880810.png deleted file mode 100644 index 99fe34f570acfcf345d4578e9be168b77a803c87..0000000000000000000000000000000000000000 --- a/skins/realistic/8880810.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cdf7300148218e2cc3ad39a4acd2a3545985adbf14d02ba0a10677d31b78a420 -size 2043 diff --git a/skins/realistic/8880811.png b/skins/realistic/8880811.png deleted file mode 100644 index 656e7e7fce3bbc46799951393865c4d83425e274..0000000000000000000000000000000000000000 --- a/skins/realistic/8880811.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:96e2ce19f745f5d60a9535d0058305c2d786bfc3661ee580d1726442b6b266d1 -size 1096 diff --git a/skins/realistic/8880812.png b/skins/realistic/8880812.png deleted file mode 100644 index 895e76595a8f8076b4210d886809821b75434b13..0000000000000000000000000000000000000000 --- a/skins/realistic/8880812.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dcb46abd35690c751d15e7a00185b14a9f5ad8258d66124b01a3d1ea70e4d328 -size 878 diff --git a/skins/realistic/8881001.png b/skins/realistic/8881001.png deleted file mode 100644 index 75d24db8ba9b9dca1e7cacf3ee821533e7623d98..0000000000000000000000000000000000000000 --- a/skins/realistic/8881001.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d7117748b6ad6869b88728d00a2362c20418fae5e2730597a478d68b75cacd01 -size 3870 diff --git a/skins/realistic/90812.png b/skins/realistic/90812.png deleted file mode 100644 index 3adafb63022ea209abf0d305d01541b4eb2bccff..0000000000000000000000000000000000000000 --- a/skins/realistic/90812.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9afc0024ca4c69d78e82d7fd6f38e75dd6966735b559a7efa55533a38fdda028 -size 2298 diff --git a/skins/realistic/964165a1-9d01-4d60-80c6-146ff3085797.png b/skins/realistic/964165a1-9d01-4d60-80c6-146ff3085797.png deleted file mode 100644 index 4f142af2b5ef4f96f7a383a4e04770f2dd8883b8..0000000000000000000000000000000000000000 --- a/skins/realistic/964165a1-9d01-4d60-80c6-146ff3085797.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dfe5b8ba056e879b95f6d1ba3049116d6851717cced8e53062cef949350c3685 -size 4344 diff --git a/skins/realistic/9b200674-5d2a-4e1d-8a26-8cc83bd700d2.png b/skins/realistic/9b200674-5d2a-4e1d-8a26-8cc83bd700d2.png deleted file mode 100644 index eb227d4a1bbdf3f0cb0397de08aa03b521db0a05..0000000000000000000000000000000000000000 --- a/skins/realistic/9b200674-5d2a-4e1d-8a26-8cc83bd700d2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:769e2d40eba3863514471fd258782636fc95ce052d52466b6ce3feccca8e9d2c -size 4847 diff --git a/skins/realistic/c060d6b7-5978-434d-9e53-f396fed9c7e8.png b/skins/realistic/c060d6b7-5978-434d-9e53-f396fed9c7e8.png deleted file mode 100644 index d39966ec7697c3b0a3e99ab3427b25fd4d998e84..0000000000000000000000000000000000000000 --- a/skins/realistic/c060d6b7-5978-434d-9e53-f396fed9c7e8.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0b0fb0cc482ddbf5228a9db93ae4371ae7597b08c4e522d42f026c09863f51e8 -size 3918 diff --git a/skins/realistic/half_0042.png b/skins/realistic/half_0042.png deleted file mode 100644 index 233e3ca9f765465a53f19cb2462126ba6dd6e6a4..0000000000000000000000000000000000000000 --- a/skins/realistic/half_0042.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:27baa66a02c33f13c4b003f5204a38406a96b4de5eb18e25ae2df2ff556971f1 -size 5422 diff --git a/skins/realistic/half_17474.png b/skins/realistic/half_17474.png deleted file mode 100644 index cc2cddf75236840df8fd06dd5d0e4dc68cbf4f06..0000000000000000000000000000000000000000 --- a/skins/realistic/half_17474.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0a8037764a73897ff417edf20b74b67a3bd57acff5712c4d2eeb2152102228c3 -size 1206 diff --git a/skins/realistic/half_1ed2b9af-0722-4869-8685-294610976cb5.png b/skins/realistic/half_1ed2b9af-0722-4869-8685-294610976cb5.png deleted file mode 100644 index 1db92563cac73de1b1ab1668bf2f8ccebf667f5d..0000000000000000000000000000000000000000 --- a/skins/realistic/half_1ed2b9af-0722-4869-8685-294610976cb5.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:958f31f3892af2ba59a3c71321f5c7dd54ed11aa73e9b6b33567913881bc0e9e -size 5674 diff --git a/skins/realistic/half_222855.png b/skins/realistic/half_222855.png deleted file mode 100644 index fa07b42092d10008d59cae355e8647c96cb4adcd..0000000000000000000000000000000000000000 --- a/skins/realistic/half_222855.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fdf20bec490662a3c02adb591539161b66f815efb6d1aee2109ecda8e4c5be1c -size 1781 diff --git a/skins/realistic/half_49ed3dbc-2d35-491c-b995-be54c59ab423.png b/skins/realistic/half_49ed3dbc-2d35-491c-b995-be54c59ab423.png deleted file mode 100644 index 98b7e06b073fec3ef3e3919c28d6b45deaddd9b2..0000000000000000000000000000000000000000 --- a/skins/realistic/half_49ed3dbc-2d35-491c-b995-be54c59ab423.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8835d0efa077c94f574ba4f3efc8ab2d19509b95ad320b2307b703a73f1d8950 -size 5037 diff --git a/skins/realistic/half_519494.png b/skins/realistic/half_519494.png deleted file mode 100644 index fc6d699ee41659dd2598b8629d839b1a3eb3a0ec..0000000000000000000000000000000000000000 --- a/skins/realistic/half_519494.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d1f3e49d66d77b4f3d569df48940d85ebde36ad46bd709ba95468f3b1677f381 -size 1870 diff --git a/skins/realistic/half_538419.png b/skins/realistic/half_538419.png deleted file mode 100644 index f93ab0b73fd74c42dd028087d772f5987503a31f..0000000000000000000000000000000000000000 --- a/skins/realistic/half_538419.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:45680d67585a5db32f48a50fd5b9b7ed83438f2d212cb0bd09a4f86a79cb8cf1 -size 2464 diff --git a/skins/realistic/half_553045.png b/skins/realistic/half_553045.png deleted file mode 100644 index 89638415f99c996a0a20a008fdded3bb7a8eb41e..0000000000000000000000000000000000000000 --- a/skins/realistic/half_553045.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:146ef456ea9f5a349b0d7b1a793a59eb06bb41bd504dd8187c407c41605d7026 -size 2451 diff --git a/skins/realistic/half_560261.png b/skins/realistic/half_560261.png deleted file mode 100644 index b8c90e575e421b2cb09df31baf5c5e1ce59856a7..0000000000000000000000000000000000000000 --- a/skins/realistic/half_560261.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f4933fbd541ca668a3c8d218ab7ef98eb3f842c119b077c1f7f5b95a0b3207d8 -size 3228 diff --git a/skins/realistic/half_6306fffe-5944-4659-adea-055d00af89b0.png b/skins/realistic/half_6306fffe-5944-4659-adea-055d00af89b0.png deleted file mode 100644 index 71d313403b443513174e11fea7d9dbb98a5ffdca..0000000000000000000000000000000000000000 --- a/skins/realistic/half_6306fffe-5944-4659-adea-055d00af89b0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:354efce0f2a9dbaaafb117718fe753b63103400325f9e8bd0bee2adc610012e0 -size 5938 diff --git a/skins/realistic/half_64154.png b/skins/realistic/half_64154.png deleted file mode 100644 index a92286e3ca3e61e9014a91b873a136c70cd86435..0000000000000000000000000000000000000000 --- a/skins/realistic/half_64154.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:98448f2f08182a297de3a00016ef2ca61513b4fbe15ce00d6f9c7db3f653137c -size 1657 diff --git a/skins/realistic/half_64154f.png b/skins/realistic/half_64154f.png deleted file mode 100644 index 9154901dfc304e50b38cfdcae7165266095ce1c6..0000000000000000000000000000000000000000 --- a/skins/realistic/half_64154f.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e87bba0888c48fc4de4f28cfc3a42543fa145ffe93853486d0a85c185d0188d5 -size 1716 diff --git a/skins/realistic/half_645888.png b/skins/realistic/half_645888.png deleted file mode 100644 index 861c546f616a196faf066476f5cdb3a9689b6024..0000000000000000000000000000000000000000 --- a/skins/realistic/half_645888.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:eb9ae92e8a86e6ff5408ac86f39dc942f9121485b326c2dc20f472ec0d0a6590 -size 3762 diff --git a/skins/realistic/half_661333b9-bf31-4c70-af83-293663497b98.png b/skins/realistic/half_661333b9-bf31-4c70-af83-293663497b98.png deleted file mode 100644 index 0ecb5e2b66c9d937623cf4d761f0d9595cef920f..0000000000000000000000000000000000000000 --- a/skins/realistic/half_661333b9-bf31-4c70-af83-293663497b98.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:14e1a64d892cc8b60f73a0ef442458f3cab3747d1b241f0ba526cd244bab9517 -size 5547 diff --git a/skins/realistic/half_667114.png b/skins/realistic/half_667114.png deleted file mode 100644 index c42026987c28338a1c663d18a6a554015cb63b2a..0000000000000000000000000000000000000000 --- a/skins/realistic/half_667114.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:55803094ff8e354f6b4a043890e75c2502423895670084ef9b66a5cdeb276f19 -size 2158 diff --git a/skins/realistic/half_716523.png b/skins/realistic/half_716523.png deleted file mode 100644 index 62338fda752bd734b3c437718c99c2a63a841bac..0000000000000000000000000000000000000000 --- a/skins/realistic/half_716523.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8013b27eaaf7488f632b4cd8b4192260b21eb4a32305800518b3fee6202f37e2 -size 1747 diff --git a/skins/realistic/half_7d3f1a9c-1945-4b5f-a686-2eb7aa6f8d89.png b/skins/realistic/half_7d3f1a9c-1945-4b5f-a686-2eb7aa6f8d89.png deleted file mode 100644 index fe6296a81fec3caa03f283cf62f42b7e6b7d7c3d..0000000000000000000000000000000000000000 --- a/skins/realistic/half_7d3f1a9c-1945-4b5f-a686-2eb7aa6f8d89.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e973f2f01d1a8a2ca31dc72d90dc13dde292c6bc04d4959f633a0507c5bf7850 -size 3675 diff --git a/skins/realistic/half_8024eb55-ef05-4752-a1b8-4ad7351a8172.png b/skins/realistic/half_8024eb55-ef05-4752-a1b8-4ad7351a8172.png deleted file mode 100644 index 5d3aae1dbb1b3a70200b8b5173bdd4cb4e1c64e7..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8024eb55-ef05-4752-a1b8-4ad7351a8172.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:602634713f8c7878c3d5ea2de090efe5f1d9bffd36c71b82a480edc10a698610 -size 5072 diff --git a/skins/realistic/half_8880001.png b/skins/realistic/half_8880001.png deleted file mode 100644 index 3f9b66d93b28e7c402f798a732cd02159e86dcb9..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880001.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f5f72bd5236060df4da7768d153e3c16e3a6a30846ad562d39b33e0dc91a2927 -size 4871 diff --git a/skins/realistic/half_8880002.png b/skins/realistic/half_8880002.png deleted file mode 100644 index 8e6adc53a0bb40a8d102c5ccb03b3d5dcd587549..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880002.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:50f8e7896dc2985b316c9778a28cb8806d0a32e404a8c1f64ecb289e386a0452 -size 5450 diff --git a/skins/realistic/half_8880003.png b/skins/realistic/half_8880003.png deleted file mode 100644 index e6fff76047da28f250e665c2219c10d4999daac2..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880003.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:36493cb641fd47f916571b3d8409e9b18c7baeb0e58a75df091af8c1f32f8a79 -size 4939 diff --git a/skins/realistic/half_8880005.png b/skins/realistic/half_8880005.png deleted file mode 100644 index 51f8829b0f226aa70c59fe0813597634dea523de..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880005.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dac441c73e625da9c76a2c996695e069b6cbd63bc7c33ee865126bb466a69e6f -size 5001 diff --git a/skins/realistic/half_8880006.png b/skins/realistic/half_8880006.png deleted file mode 100644 index 032b9ff673603ab7f263dc75d2d4b43dfb9dbc4d..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880006.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3136516e455cfe7ae2c29f7ae9a9aa695c7892fa633345c0af3644838880b214 -size 4361 diff --git a/skins/realistic/half_8880008.png b/skins/realistic/half_8880008.png deleted file mode 100644 index 02b20a8fd16234d360c63563c1508d6d7694ada9..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880008.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e94f70b2dd8c3ecf3f435f32e00436611dff6121b572f830c39dc8a47b270e99 -size 4020 diff --git a/skins/realistic/half_8880015.png b/skins/realistic/half_8880015.png deleted file mode 100644 index 49fd300680e3060fa6d91cb8db52b719579b4afc..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880015.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:616e97c229a4173d964d7548ad73d1b3d5c576f6ab923c32b227b4ef5ec7f80f -size 4714 diff --git a/skins/realistic/half_8880020.png b/skins/realistic/half_8880020.png deleted file mode 100644 index 6c9b322b51d49088c0cc17e89cacef0c1c2e7d28..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880020.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:992d40940cc5f7df06888705b945901fb796b131de20317b1d84c67e78aebe4d -size 895 diff --git a/skins/realistic/half_8880020f.png b/skins/realistic/half_8880020f.png deleted file mode 100644 index b678dd33912212634eb7341d67278f98bf64d7af..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880020f.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4ab9cc20b84818bddb0e5914cc47948ec4f9834926c25f7c902deece196d4854 -size 2038 diff --git a/skins/realistic/half_8880021.png b/skins/realistic/half_8880021.png deleted file mode 100644 index 2e09185f8ba2ca9da412798964e3d1c6508c15b2..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880021.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:29909a75d19228a6e6115fe5938b9bccb73ed68814efb85e9632f9b70d495be7 -size 2967 diff --git a/skins/realistic/half_8880021f.png b/skins/realistic/half_8880021f.png deleted file mode 100644 index c8bedf9bdcf247ffa0a64b6eeab0a406b046112a..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880021f.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7858df6e37463c899270581bdb05a6559767656e0e6dd48f3f4950457221f5c5 -size 2386 diff --git a/skins/realistic/half_8880022.png b/skins/realistic/half_8880022.png deleted file mode 100644 index 38769bd7d0f95066354d6a52f285c19c00fbeac0..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880022.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c862923a907d568b2807d403c62f64df2ef97588382aa0a9fde791d42dc14a91 -size 1366 diff --git a/skins/realistic/half_8880022f.png b/skins/realistic/half_8880022f.png deleted file mode 100644 index f98c42dd71d3061390d32bd94b53c19325a7dc77..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880022f.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:000c9ec29fd3a46849794fdf7acdec1774eae991742fe9fcb95c67d5bd8c35f7 -size 3057 diff --git a/skins/realistic/half_8880030.png b/skins/realistic/half_8880030.png deleted file mode 100644 index c468aba8250e6fef54b89416c5daed31934f11ad..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880030.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:533662eac8764d569cb77d75efd421ffaae54f76606dcb9ec3532adb3b7baa98 -size 1170 diff --git a/skins/realistic/half_8880031.png b/skins/realistic/half_8880031.png deleted file mode 100644 index e388f0b6cdd381010addc37fa54d6e57a6e0274c..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880031.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:72ace33342da7faf0dc4a9032a68afd299274e6ed2867b89647011f5eb92a1d3 -size 892 diff --git a/skins/realistic/half_8880041.png b/skins/realistic/half_8880041.png deleted file mode 100644 index 5e9599e296882d5844f5bb7dd836676f4ace0d10..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880041.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:01b7b20facaf7c9310ec586df9829f33e7a0a0be628cb88f7a9fc891c1b28379 -size 806 diff --git a/skins/realistic/half_8880101.png b/skins/realistic/half_8880101.png deleted file mode 100644 index 3881756db3ea969167d42e9503e6a22ca7f0594e..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880101.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2398ba7400b7268f05c87a65876e26ac610acf92f0d108d8ac9d836858b58f6d -size 1833 diff --git a/skins/realistic/half_8880101f.png b/skins/realistic/half_8880101f.png deleted file mode 100644 index 0bf9fcce03b7d52cd6e08e7794e542546396ca38..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880101f.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e227c27fea4da0619703142b3253b3584d51343e189dd54be667aabe561d538e -size 1572 diff --git a/skins/realistic/half_8880106.png b/skins/realistic/half_8880106.png deleted file mode 100644 index 5053dc41e6f049f8b714482d779603fba94d338d..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880106.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fe799b7d0cef332fe63d3ebefdb442aeb0f522aeb1b308e191173046c130a728 -size 1851 diff --git a/skins/realistic/half_8880107.png b/skins/realistic/half_8880107.png deleted file mode 100644 index 028cd0995d626c2359679b34932c14dc55a515ca..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880107.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4e1425540dea84f10bdceb86a849dda03284c2bbe554faa7fd8b4bce1c9714d7 -size 4755 diff --git a/skins/realistic/half_8880108.png b/skins/realistic/half_8880108.png deleted file mode 100644 index e4d1b974d150081dfafe90104304a95eb54d6cbc..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880108.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cbee3ed6f36e03eba301febcdd905b87bd7b5e1c0e717ccdbce4639b8e732535 -size 3149 diff --git a/skins/realistic/half_8880200.png b/skins/realistic/half_8880200.png deleted file mode 100644 index eaf2c7f222af7b1ff998bc596c207a33e20028a6..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880200.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3aded8fbd5c74104e8ff1deead80aaafff270f9e21bb6164943cab1ef27fa3b8 -size 1225 diff --git a/skins/realistic/half_8880201.png b/skins/realistic/half_8880201.png deleted file mode 100644 index c576b22e39d16d1f028652b2335006d3ef1fea2c..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880201.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9db016a34df57febdab9c5d7347d3b454c2705a221e877d380716ed34bd4d2bc -size 1651 diff --git a/skins/realistic/half_8880400.png b/skins/realistic/half_8880400.png deleted file mode 100644 index da159cf7088c8fd5df0c05791a9e2aeb674374c2..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880400.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d592ea1c23e960d8d46b8a0b3b9051a15075db638e95b6e933ba4b8f67c0f475 -size 2132 diff --git a/skins/realistic/half_8880400f.png b/skins/realistic/half_8880400f.png deleted file mode 100644 index 4ec33338dad437875b7478b738f9eb0ff382bd2d..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880400f.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cd9bab1f08c58fcf8826498723709ca95dcb3301e3e07cb0c3463fe9f9346564 -size 1941 diff --git a/skins/realistic/half_8880401.png b/skins/realistic/half_8880401.png deleted file mode 100644 index 6d7925cc8d140a01c93ffafb0f36d2ac2f339ed0..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880401.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e64be9533b37888d8ca26de3a2a5bb997544c7494c74f1b05d6aaa3a628b0d37 -size 760 diff --git a/skins/realistic/half_8880401f.png b/skins/realistic/half_8880401f.png deleted file mode 100644 index 7eab646ac682beff7e5f54178249b069d9eee9c1..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880401f.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ba2d564e49f1f5f6e83265b6ce0576f0a7e88b64db1f8bcd27df0ec30c38256b -size 1477 diff --git a/skins/realistic/half_8880500.png b/skins/realistic/half_8880500.png deleted file mode 100644 index a8e4b201983578fea5f0b2c2d401799920c46aa1..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880500.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6be050b3cc10cc233f4cbd9586e61c069b825b2c9d1e2fe54b1fc3914ec16966 -size 3629 diff --git a/skins/realistic/half_8880501.png b/skins/realistic/half_8880501.png deleted file mode 100644 index b3f66740f2972b2e20a4be1220d3b5dc82053990..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880501.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2660ee0a0e645002b6dd158f1ac1d6e19ab36a9e8675c59e9eeee6fd78ebe0e6 -size 4610 diff --git a/skins/realistic/half_8880502.png b/skins/realistic/half_8880502.png deleted file mode 100644 index 2c0d869daa7b442d3d5ae3c714d82841367a70b8..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880502.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e525591c8b6b7be58a85c3167a9b5db9254e84cf930abaf0e3f3eb97dee4fd30 -size 1745 diff --git a/skins/realistic/half_8880503.png b/skins/realistic/half_8880503.png deleted file mode 100644 index b1f8e6cb8fe9884640ba8107b8a05e3cbee224fe..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880503.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a42be329b69b2c3ccb30fd954a1809ee59c1691eb8640e6b123de25fb78c0da8 -size 3202 diff --git a/skins/realistic/half_8880600.png b/skins/realistic/half_8880600.png deleted file mode 100644 index 85e07d9f56778536bd56873b8b1d4d20481114d5..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880600.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:189ddd6d79fb3398e0b47b11353352dd4edf974799f8f64b05d8673052cae113 -size 2444 diff --git a/skins/realistic/half_8880602.png b/skins/realistic/half_8880602.png deleted file mode 100644 index 51460714154307332a7cba1b4464e756ddba1ffd..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880602.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7ce93aec4f8d2aadcdd13cc956b835651824b12ccef70cfbc712fedc67f44c12 -size 3108 diff --git a/skins/realistic/half_8880700.png b/skins/realistic/half_8880700.png deleted file mode 100644 index 5a65c84c118b1b4b2f201181a970715831828b9d..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880700.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b8005005804d87aa4edef4e8d034866280296b04f15c0259e7265c06dc758848 -size 5223 diff --git a/skins/realistic/half_8880800.png b/skins/realistic/half_8880800.png deleted file mode 100644 index c2655e4b624b53c1b6d018fd2ac02fbd103d8777..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880800.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a88c402c46661386e0f238d9f9a0f4b299bd13c2e4e913a0f837607cebb9558a -size 1991 diff --git a/skins/realistic/half_8880801.png b/skins/realistic/half_8880801.png deleted file mode 100644 index 52df9e8f06c072d5a3348ea438873dce8a1860c9..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880801.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:71a6abcec94410609548b0a2fb04e254e4f3098beecfefe231201117a757cef6 -size 984 diff --git a/skins/realistic/half_8880802.png b/skins/realistic/half_8880802.png deleted file mode 100644 index df052b486b9ebe011a8d4b8c40f7378fa7500f05..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880802.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:947747c6669ab91240f3864beddd56cd04ffb844759c1524c44f405249134f3b -size 761 diff --git a/skins/realistic/half_8880803.png b/skins/realistic/half_8880803.png deleted file mode 100644 index 8e60bc54cf49be122f381dc394d81bbf470256d6..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880803.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e1b9754e355023dfef23727f99dfdc22e1413dd74255d61e3e9193721639b8f9 -size 4450 diff --git a/skins/realistic/half_8880804.png b/skins/realistic/half_8880804.png deleted file mode 100644 index 74cc4f0fdc4d09f6d6060382aa5bbef80f4b9db6..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880804.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cc096a8188c6e1833529a86ef13827b081957e7ebefc14c006db51662721c0b0 -size 1925 diff --git a/skins/realistic/half_8880805.png b/skins/realistic/half_8880805.png deleted file mode 100644 index 8f885648ec1cca400cde058671af7ed91ff07d80..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880805.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4a1a889174d4f34138234f0a210894297b6aa39fd743224162e7c662b8a5dd55 -size 1611 diff --git a/skins/realistic/half_8880810.png b/skins/realistic/half_8880810.png deleted file mode 100644 index 99fe34f570acfcf345d4578e9be168b77a803c87..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880810.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cdf7300148218e2cc3ad39a4acd2a3545985adbf14d02ba0a10677d31b78a420 -size 2043 diff --git a/skins/realistic/half_8880811.png b/skins/realistic/half_8880811.png deleted file mode 100644 index 656e7e7fce3bbc46799951393865c4d83425e274..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880811.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:96e2ce19f745f5d60a9535d0058305c2d786bfc3661ee580d1726442b6b266d1 -size 1096 diff --git a/skins/realistic/half_8880812.png b/skins/realistic/half_8880812.png deleted file mode 100644 index 895e76595a8f8076b4210d886809821b75434b13..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8880812.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dcb46abd35690c751d15e7a00185b14a9f5ad8258d66124b01a3d1ea70e4d328 -size 878 diff --git a/skins/realistic/half_8881001.png b/skins/realistic/half_8881001.png deleted file mode 100644 index 75d24db8ba9b9dca1e7cacf3ee821533e7623d98..0000000000000000000000000000000000000000 --- a/skins/realistic/half_8881001.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d7117748b6ad6869b88728d00a2362c20418fae5e2730597a478d68b75cacd01 -size 3870 diff --git a/skins/realistic/half_90812.png b/skins/realistic/half_90812.png deleted file mode 100644 index 3adafb63022ea209abf0d305d01541b4eb2bccff..0000000000000000000000000000000000000000 --- a/skins/realistic/half_90812.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9afc0024ca4c69d78e82d7fd6f38e75dd6966735b559a7efa55533a38fdda028 -size 2298 diff --git a/skins/realistic/half_964165a1-9d01-4d60-80c6-146ff3085797.png b/skins/realistic/half_964165a1-9d01-4d60-80c6-146ff3085797.png deleted file mode 100644 index 4f142af2b5ef4f96f7a383a4e04770f2dd8883b8..0000000000000000000000000000000000000000 --- a/skins/realistic/half_964165a1-9d01-4d60-80c6-146ff3085797.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dfe5b8ba056e879b95f6d1ba3049116d6851717cced8e53062cef949350c3685 -size 4344 diff --git a/skins/realistic/half_9b200674-5d2a-4e1d-8a26-8cc83bd700d2.png b/skins/realistic/half_9b200674-5d2a-4e1d-8a26-8cc83bd700d2.png deleted file mode 100644 index eb227d4a1bbdf3f0cb0397de08aa03b521db0a05..0000000000000000000000000000000000000000 --- a/skins/realistic/half_9b200674-5d2a-4e1d-8a26-8cc83bd700d2.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:769e2d40eba3863514471fd258782636fc95ce052d52466b6ce3feccca8e9d2c -size 4847 diff --git a/skins/realistic/half_c060d6b7-5978-434d-9e53-f396fed9c7e8.png b/skins/realistic/half_c060d6b7-5978-434d-9e53-f396fed9c7e8.png deleted file mode 100644 index d39966ec7697c3b0a3e99ab3427b25fd4d998e84..0000000000000000000000000000000000000000 --- a/skins/realistic/half_c060d6b7-5978-434d-9e53-f396fed9c7e8.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0b0fb0cc482ddbf5228a9db93ae4371ae7597b08c4e522d42f026c09863f51e8 -size 3918 diff --git a/skins/lowpoly/rivals.png b/skins/rivals.png similarity index 100% rename from skins/lowpoly/rivals.png rename to skins/rivals.png diff --git a/skins/lowpoly/santa-claus.png b/skins/santa-claus.png similarity index 100% rename from skins/lowpoly/santa-claus.png rename to skins/santa-claus.png diff --git a/skins/lowpoly/snow-white.png b/skins/snow-white.png similarity index 100% rename from skins/lowpoly/snow-white.png rename to skins/snow-white.png diff --git a/skins/lowpoly/snowball-fight.png b/skins/snowball-fight.png similarity index 100% rename from skins/lowpoly/snowball-fight.png rename to skins/snowball-fight.png diff --git a/skins/lowpoly/snowy-stockings.png b/skins/snowy-stockings.png similarity index 100% rename from skins/lowpoly/snowy-stockings.png rename to skins/snowy-stockings.png diff --git a/skins/lowpoly/spring-color.png b/skins/spring-color.png similarity index 100% rename from skins/lowpoly/spring-color.png rename to skins/spring-color.png diff --git a/skins/lowpoly/summer.png b/skins/summer.png similarity index 100% rename from skins/lowpoly/summer.png rename to skins/summer.png diff --git a/skins/lowpoly/summer2.png b/skins/summer2.png similarity index 100% rename from skins/lowpoly/summer2.png rename to skins/summer2.png diff --git a/skins/lowpoly/zenitsu-agatsuma.png b/skins/zenitsu-agatsuma.png similarity index 100% rename from skins/lowpoly/zenitsu-agatsuma.png rename to skins/zenitsu-agatsuma.png