diff --git a/layergen.py b/layergen.py index 35c7ee7..ab2517a 100644 --- a/layergen.py +++ b/layergen.py @@ -381,7 +381,7 @@ class mstr_layergen: self._tag == "natural" and self._value == "heath") or ( self._tag == "landuse" and self._value == "cemetery") or ( self._tag == "landuse" and self._value == "residential"): - amt = randrange(2, 9) + amt = randrange(5, 21) masks = glob.glob(mstr_datafolder + "textures/tile/completion/*.png") patchtags = [ ["landuse", "meadow"], @@ -600,30 +600,18 @@ class mstr_layergen: # A bit different for tree rows if self._tag == "natural" and self._value == "tree_row": trees = Image.new("RGBA", (self._imgsize, self._imgsize)) - for t in range(20001): + treespx = trees.load() + for t in range(80001): lx = randrange(self._imgsize) ly = randrange(self._imgsize) a = mask_pix[lx,ly] + # Just mark the hit with a black pixel. + # This will be used as "target" by photogen if a[3] > 0: if lx < self._imgsize and ly < self._imgsize: - tree = self.generate_tree() - trees.alpha_composite(tree, (lx, ly)) - trees = ImageEnhance.Contrast(trees).enhance(0.8) - if mstr_shadow_enabled == True: - tree_shadow = Image.new("RGBA", (self._imgsize, self._imgsize)) - tree_pix = trees.load() - shadow_pix = tree_shadow.load() - for y in range(self._imgsize): - for x in range(self._imgsize): - tp = tree_pix[x,y] - if tp[3] > 0: - rndshd = randrange(5, 210) - sc = (0,0,0,rndshd) - if x+8 < self._imgsize and y+5 < self._imgsize: - shadow_pix[x+8,y+5] = sc - tree_shadow = tree_shadow.filter(ImageFilter.GaussianBlur(radius=2)) - tree_shadow.alpha_composite(trees) - layer_comp.alpha_composite(tree_shadow) + c = (0,0,0,1) + treespx[lx,ly] = c + layer_comp.alpha_composite(trees) mstr_msg("layergen", "Layer image generated") diff --git a/photogen.py b/photogen.py index 7efa20b..5dbb40d 100644 --- a/photogen.py +++ b/photogen.py @@ -203,6 +203,9 @@ class mstr_photogen: # One more thing... mstr_msg("photogen", "Adding features to layers") self.addTreesToFeatures(layers, waterlayers) + # One final thing... + mstr_msg("photogen", "Adding details to buildings") + self.addDetailsToBuildings() # Throw missing buildings on top lyr = 0 @@ -375,7 +378,7 @@ class mstr_photogen: for x in range(0, self._imgsize): frs = frstpix[x,y] if frs[3] > 0: - c = ( frs[0]-30, frs[1]-30, frs[2]-30 ) + c = ( frs[0]-40, frs[1]-40, frs[2]-40 ) frstclr.append(c) @@ -388,6 +391,7 @@ class mstr_photogen: lyr[0] == "leisure" and lyr[1] == "park"): trees = Image.new("RGBA", (self._imgsize, self._imgsize)) amt = 4000 + if lyr[1] == "cemetery": amt = 20000 lyrmask = layers[curlyr].load() # We can use the layer image as alpha mask for i in range(1, amt + 1): lx = randrange(0, self._imgsize) @@ -395,7 +399,9 @@ class mstr_photogen: lp = lyrmask[lx,ly] wp = wtrpix[lx,ly] if lp[3] == 255 and wp[3] == 0: # Exclude water bodies from tree placement - tree = self.generate_tree(frstclr) + tree = None + if len(frstclr) != 0: tree = self.generate_tree(bccolor=frstclr) + else: tree = self.generate_tree() trees.alpha_composite(tree, (lx, ly)) tree_shadow = Image.new("RGBA", (self._imgsize, self._imgsize)) @@ -414,6 +420,26 @@ class mstr_photogen: self._tile.alpha_composite(tree_shadow) curlyr = curlyr + 1 + # Reset for tree rows + curlyr = 0 + treerow = -1 + for lyr in self._lyrnames: + if lyr[0] == "natural" and lyr[1] == "tree_row": + treerow = curlyr + break + curlyr = curlyr + 1 + + if treerow != -1: + rowpx = layers[curlyr].load() + for y in range(0, self._tile.height): + for x in range(0, self._tile.width): + tpx = rowpx[x,y] + if tpx[3] == 1: + tree = None + if len(frstclr) == 0: tree = self.generate_tree() + else: tree = self.generate_tree(bccolor=frstclr) + self._tile.alpha_composite(tree, dest=(x, y)) + # Reset curlyr = 0 bldg = [] @@ -433,6 +459,33 @@ class mstr_photogen: spix = shdw_pix[x,y] if bpix[3] > 0 and spix[0] == 255: tilepix[x,y] = ( bpix[0], bpix[1], bpix[2], bpix[3] ) + + + # Adds some intricate details to buildings + def addDetailsToBuildings(self): + curlyr = 0 + bldg = [] + for lyr in self._lyrnames: + if lyr[0] == "building": + bldg.append(curlyr) + curlyr = curlyr + 1 + + for b in range(0, len(bldg)): + shdw = Image.open(mstr_datafolder + "_cache/" + str(self._lat) + "-" + str(self._ty) + "_" + str(self._lng) + "-" + str(self._tx) + "_" + self._lyrnames[bldg[b]][0] + "-" + self._lyrnames[bldg[b]][1] + "_layer_shadow.png") + shdw_pix = shdw.load() + + det_image = Image.open(mstr_datafolder + "textures/building/details/"+str(randrange(1, 16))+".png") + + detpx = det_image.load() + + for y in range(0, shdw.height): + for x in range(0, shdw.width): + spx = shdw_pix[x,y] + if spx[0] != 255: + c = (0,0,0,0) + detpx[x,y] = c + + self._tile.alpha_composite(det_image) diff --git a/textures/amenity/parking/brd/b1.png b/textures/amenity/parking/brd/b1.png deleted file mode 100644 index e9b3ec6..0000000 Binary files a/textures/amenity/parking/brd/b1.png and /dev/null differ diff --git a/textures/amenity/parking/ptc/b1_p1.png b/textures/amenity/parking/ptc/b1_p1.png deleted file mode 100644 index c8b87c6..0000000 Binary files a/textures/amenity/parking/ptc/b1_p1.png and /dev/null differ diff --git a/textures/amenity/school/brd/b1.png b/textures/amenity/school/brd/b1.png deleted file mode 100644 index e9b3ec6..0000000 Binary files a/textures/amenity/school/brd/b1.png and /dev/null differ diff --git a/textures/amenity/school/ptc/b1_p1.png b/textures/amenity/school/ptc/b1_p1.png deleted file mode 100644 index c8b87c6..0000000 Binary files a/textures/amenity/school/ptc/b1_p1.png and /dev/null differ diff --git a/textures/barrier/hedge/brd/b1.png b/textures/barrier/hedge/brd/b1.png deleted file mode 100644 index 8601724..0000000 Binary files a/textures/barrier/hedge/brd/b1.png and /dev/null differ diff --git a/textures/barrier/hedge/brd/b2.png b/textures/barrier/hedge/brd/b2.png deleted file mode 100644 index ce02400..0000000 Binary files a/textures/barrier/hedge/brd/b2.png and /dev/null differ diff --git a/textures/barrier/hedge/brd/b3.png b/textures/barrier/hedge/brd/b3.png deleted file mode 100644 index 3929e84..0000000 Binary files a/textures/barrier/hedge/brd/b3.png and /dev/null differ diff --git a/textures/barrier/hedge/ptc/b1_p1.png b/textures/barrier/hedge/ptc/b1_p1.png deleted file mode 100644 index f8f8aa1..0000000 Binary files a/textures/barrier/hedge/ptc/b1_p1.png and /dev/null differ diff --git a/textures/barrier/hedge/ptc/b1_p2.png b/textures/barrier/hedge/ptc/b1_p2.png deleted file mode 100644 index e8f5677..0000000 Binary files a/textures/barrier/hedge/ptc/b1_p2.png and /dev/null differ diff --git a/textures/barrier/hedge/ptc/b2_p1.png b/textures/barrier/hedge/ptc/b2_p1.png deleted file mode 100644 index 1b2d7eb..0000000 Binary files a/textures/barrier/hedge/ptc/b2_p1.png and /dev/null differ diff --git a/textures/barrier/hedge/ptc/b2_p2.png b/textures/barrier/hedge/ptc/b2_p2.png deleted file mode 100644 index d973b09..0000000 Binary files a/textures/barrier/hedge/ptc/b2_p2.png and /dev/null differ diff --git a/textures/barrier/hedge/ptc/b3_p1.png b/textures/barrier/hedge/ptc/b3_p1.png deleted file mode 100644 index bebe284..0000000 Binary files a/textures/barrier/hedge/ptc/b3_p1.png and /dev/null differ diff --git a/textures/barrier/hedge/ptc/b3_p2.png b/textures/barrier/hedge/ptc/b3_p2.png deleted file mode 100644 index 7f77d9f..0000000 Binary files a/textures/barrier/hedge/ptc/b3_p2.png and /dev/null differ diff --git a/textures/boundary/administrative/brd/b1.png b/textures/boundary/administrative/brd/b1.png deleted file mode 100644 index 6be9ba8..0000000 Binary files a/textures/boundary/administrative/brd/b1.png and /dev/null differ diff --git a/textures/boundary/administrative/brd/b2.png b/textures/boundary/administrative/brd/b2.png deleted file mode 100644 index 268b38b..0000000 Binary files a/textures/boundary/administrative/brd/b2.png and /dev/null differ diff --git a/textures/boundary/administrative/brd/b3.png b/textures/boundary/administrative/brd/b3.png deleted file mode 100644 index cd73d2e..0000000 Binary files a/textures/boundary/administrative/brd/b3.png and /dev/null differ diff --git a/textures/boundary/administrative/brd/b4.png b/textures/boundary/administrative/brd/b4.png deleted file mode 100644 index 6e53e94..0000000 Binary files a/textures/boundary/administrative/brd/b4.png and /dev/null differ diff --git a/textures/boundary/administrative/ptc/b1_p1.png b/textures/boundary/administrative/ptc/b1_p1.png deleted file mode 100644 index c1d1a3a..0000000 Binary files a/textures/boundary/administrative/ptc/b1_p1.png and /dev/null differ diff --git a/textures/boundary/administrative/ptc/b1_p2.png b/textures/boundary/administrative/ptc/b1_p2.png deleted file mode 100644 index 708dc34..0000000 Binary files a/textures/boundary/administrative/ptc/b1_p2.png and /dev/null differ diff --git a/textures/boundary/administrative/ptc/b2_p1.png b/textures/boundary/administrative/ptc/b2_p1.png deleted file mode 100644 index 057d796..0000000 Binary files a/textures/boundary/administrative/ptc/b2_p1.png and /dev/null differ diff --git a/textures/boundary/administrative/ptc/b2_p2.png b/textures/boundary/administrative/ptc/b2_p2.png deleted file mode 100644 index c9631c3..0000000 Binary files a/textures/boundary/administrative/ptc/b2_p2.png and /dev/null differ diff --git a/textures/boundary/administrative/ptc/b3_p1.png b/textures/boundary/administrative/ptc/b3_p1.png deleted file mode 100644 index 916014b..0000000 Binary files a/textures/boundary/administrative/ptc/b3_p1.png and /dev/null differ diff --git a/textures/boundary/administrative/ptc/b3_p2.png b/textures/boundary/administrative/ptc/b3_p2.png deleted file mode 100644 index 872f736..0000000 Binary files a/textures/boundary/administrative/ptc/b3_p2.png and /dev/null differ diff --git a/textures/boundary/administrative/ptc/b4_p1.png b/textures/boundary/administrative/ptc/b4_p1.png deleted file mode 100644 index cee27fe..0000000 Binary files a/textures/boundary/administrative/ptc/b4_p1.png and /dev/null differ diff --git a/textures/boundary/administrative/ptc/b4_p2.png b/textures/boundary/administrative/ptc/b4_p2.png deleted file mode 100644 index 547a0fe..0000000 Binary files a/textures/boundary/administrative/ptc/b4_p2.png and /dev/null differ diff --git a/textures/building/area/p1.png b/textures/building/area/p1.png deleted file mode 100644 index 7ee3612..0000000 Binary files a/textures/building/area/p1.png and /dev/null differ diff --git a/textures/building/area/p10.png b/textures/building/area/p10.png deleted file mode 100644 index c88100e..0000000 Binary files a/textures/building/area/p10.png and /dev/null differ diff --git a/textures/building/area/p11.png b/textures/building/area/p11.png deleted file mode 100644 index 2f44d72..0000000 Binary files a/textures/building/area/p11.png and /dev/null differ diff --git a/textures/building/area/p12.png b/textures/building/area/p12.png deleted file mode 100644 index 9c22767..0000000 Binary files a/textures/building/area/p12.png and /dev/null differ diff --git a/textures/building/area/p13.png b/textures/building/area/p13.png deleted file mode 100644 index 972b2bd..0000000 Binary files a/textures/building/area/p13.png and /dev/null differ diff --git a/textures/building/area/p14.png b/textures/building/area/p14.png deleted file mode 100644 index f6597be..0000000 Binary files a/textures/building/area/p14.png and /dev/null differ diff --git a/textures/building/area/p15.png b/textures/building/area/p15.png deleted file mode 100644 index 936e9a7..0000000 Binary files a/textures/building/area/p15.png and /dev/null differ diff --git a/textures/building/area/p16.png b/textures/building/area/p16.png deleted file mode 100644 index e64aa11..0000000 Binary files a/textures/building/area/p16.png and /dev/null differ diff --git a/textures/building/area/p17.png b/textures/building/area/p17.png deleted file mode 100644 index c5f40de..0000000 Binary files a/textures/building/area/p17.png and /dev/null differ diff --git a/textures/building/area/p18.png b/textures/building/area/p18.png deleted file mode 100644 index 3a4aafc..0000000 Binary files a/textures/building/area/p18.png and /dev/null differ diff --git a/textures/building/area/p2.png b/textures/building/area/p2.png deleted file mode 100644 index c7462fe..0000000 Binary files a/textures/building/area/p2.png and /dev/null differ diff --git a/textures/building/area/p3.png b/textures/building/area/p3.png deleted file mode 100644 index 4571a5a..0000000 Binary files a/textures/building/area/p3.png and /dev/null differ diff --git a/textures/building/area/p4.png b/textures/building/area/p4.png deleted file mode 100644 index 4de2c92..0000000 Binary files a/textures/building/area/p4.png and /dev/null differ diff --git a/textures/building/area/p5.png b/textures/building/area/p5.png deleted file mode 100644 index 4ba02e2..0000000 Binary files a/textures/building/area/p5.png and /dev/null differ diff --git a/textures/building/area/p6.png b/textures/building/area/p6.png deleted file mode 100644 index f77539f..0000000 Binary files a/textures/building/area/p6.png and /dev/null differ diff --git a/textures/building/area/p7.png b/textures/building/area/p7.png deleted file mode 100644 index 509203a..0000000 Binary files a/textures/building/area/p7.png and /dev/null differ diff --git a/textures/building/area/p8.png b/textures/building/area/p8.png deleted file mode 100644 index 718d6ea..0000000 Binary files a/textures/building/area/p8.png and /dev/null differ diff --git a/textures/building/area/p9.png b/textures/building/area/p9.png deleted file mode 100644 index eb5764e..0000000 Binary files a/textures/building/area/p9.png and /dev/null differ diff --git a/textures/landuse/cemetery/brd/b1.png b/textures/landuse/cemetery/brd/b1.png deleted file mode 100644 index e140282..0000000 Binary files a/textures/landuse/cemetery/brd/b1.png and /dev/null differ diff --git a/textures/landuse/cemetery/brd/b2.png b/textures/landuse/cemetery/brd/b2.png deleted file mode 100644 index 3358762..0000000 Binary files a/textures/landuse/cemetery/brd/b2.png and /dev/null differ diff --git a/textures/landuse/cemetery/brd/b3.png b/textures/landuse/cemetery/brd/b3.png deleted file mode 100644 index a3254af..0000000 Binary files a/textures/landuse/cemetery/brd/b3.png and /dev/null differ diff --git a/textures/landuse/cemetery/brd/b4.png b/textures/landuse/cemetery/brd/b4.png deleted file mode 100644 index 82d5839..0000000 Binary files a/textures/landuse/cemetery/brd/b4.png and /dev/null differ diff --git a/textures/landuse/cemetery/brd/b5.png b/textures/landuse/cemetery/brd/b5.png deleted file mode 100644 index 9630292..0000000 Binary files a/textures/landuse/cemetery/brd/b5.png and /dev/null differ diff --git a/textures/landuse/cemetery/ptc/b1_p1.png b/textures/landuse/cemetery/ptc/b1_p1.png deleted file mode 100644 index d97b974..0000000 Binary files a/textures/landuse/cemetery/ptc/b1_p1.png and /dev/null differ diff --git a/textures/landuse/cemetery/ptc/b2_p1.png b/textures/landuse/cemetery/ptc/b2_p1.png deleted file mode 100644 index a68bb51..0000000 Binary files a/textures/landuse/cemetery/ptc/b2_p1.png and /dev/null differ diff --git a/textures/landuse/cemetery/ptc/b2_p2.png b/textures/landuse/cemetery/ptc/b2_p2.png deleted file mode 100644 index a8edf6c..0000000 Binary files a/textures/landuse/cemetery/ptc/b2_p2.png and /dev/null differ diff --git a/textures/landuse/cemetery/ptc/b3_p1.png b/textures/landuse/cemetery/ptc/b3_p1.png deleted file mode 100644 index a6c0506..0000000 Binary files a/textures/landuse/cemetery/ptc/b3_p1.png and /dev/null differ diff --git a/textures/landuse/cemetery/ptc/b3_p2.png b/textures/landuse/cemetery/ptc/b3_p2.png deleted file mode 100644 index dc31e0f..0000000 Binary files a/textures/landuse/cemetery/ptc/b3_p2.png and /dev/null differ diff --git a/textures/landuse/cemetery/ptc/b4_p1.png b/textures/landuse/cemetery/ptc/b4_p1.png deleted file mode 100644 index 4195505..0000000 Binary files a/textures/landuse/cemetery/ptc/b4_p1.png and /dev/null differ diff --git a/textures/landuse/cemetery/ptc/b4_p2.png b/textures/landuse/cemetery/ptc/b4_p2.png deleted file mode 100644 index 46e31ae..0000000 Binary files a/textures/landuse/cemetery/ptc/b4_p2.png and /dev/null differ diff --git a/textures/landuse/cemetery/ptc/b5_p1.png b/textures/landuse/cemetery/ptc/b5_p1.png deleted file mode 100644 index 6349358..0000000 Binary files a/textures/landuse/cemetery/ptc/b5_p1.png and /dev/null differ diff --git a/textures/landuse/cemetery/ptc/b5_p2.png b/textures/landuse/cemetery/ptc/b5_p2.png deleted file mode 100644 index e09374f..0000000 Binary files a/textures/landuse/cemetery/ptc/b5_p2.png and /dev/null differ diff --git a/textures/landuse/construction/brd/b1.png b/textures/landuse/construction/brd/b1.png deleted file mode 100644 index 99e5323..0000000 Binary files a/textures/landuse/construction/brd/b1.png and /dev/null differ diff --git a/textures/landuse/construction/ptc/b1_p1.png b/textures/landuse/construction/ptc/b1_p1.png deleted file mode 100644 index 5c65b2e..0000000 Binary files a/textures/landuse/construction/ptc/b1_p1.png and /dev/null differ diff --git a/textures/landuse/construction/ptc/b1_p2.png b/textures/landuse/construction/ptc/b1_p2.png deleted file mode 100644 index 4257454..0000000 Binary files a/textures/landuse/construction/ptc/b1_p2.png and /dev/null differ diff --git a/textures/landuse/farmland/brd/b1.png b/textures/landuse/farmland/brd/b1.png deleted file mode 100644 index b072cfe..0000000 Binary files a/textures/landuse/farmland/brd/b1.png and /dev/null differ diff --git a/textures/landuse/farmland/brd/b10.png b/textures/landuse/farmland/brd/b10.png deleted file mode 100644 index 1235fd6..0000000 Binary files a/textures/landuse/farmland/brd/b10.png and /dev/null differ diff --git a/textures/landuse/farmland/brd/b11.png b/textures/landuse/farmland/brd/b11.png deleted file mode 100644 index 4b8976e..0000000 Binary files a/textures/landuse/farmland/brd/b11.png and /dev/null differ diff --git a/textures/landuse/farmland/brd/b12.png b/textures/landuse/farmland/brd/b12.png deleted file mode 100644 index c6b614d..0000000 Binary files a/textures/landuse/farmland/brd/b12.png and /dev/null differ diff --git a/textures/landuse/farmland/brd/b13.png b/textures/landuse/farmland/brd/b13.png deleted file mode 100644 index 9453121..0000000 Binary files a/textures/landuse/farmland/brd/b13.png and /dev/null differ diff --git a/textures/landuse/farmland/brd/b14.png b/textures/landuse/farmland/brd/b14.png deleted file mode 100644 index 22f54a2..0000000 Binary files a/textures/landuse/farmland/brd/b14.png and /dev/null differ diff --git a/textures/landuse/farmland/brd/b15.png b/textures/landuse/farmland/brd/b15.png deleted file mode 100644 index ad0dfe3..0000000 Binary files a/textures/landuse/farmland/brd/b15.png and /dev/null differ diff --git a/textures/landuse/farmland/brd/b16.png b/textures/landuse/farmland/brd/b16.png deleted file mode 100644 index 3797c77..0000000 Binary files a/textures/landuse/farmland/brd/b16.png and /dev/null differ diff --git a/textures/landuse/farmland/brd/b2.png b/textures/landuse/farmland/brd/b2.png deleted file mode 100644 index 79f99d6..0000000 Binary files a/textures/landuse/farmland/brd/b2.png and /dev/null differ diff --git a/textures/landuse/farmland/brd/b3.png b/textures/landuse/farmland/brd/b3.png deleted file mode 100644 index d051b5f..0000000 Binary files a/textures/landuse/farmland/brd/b3.png and /dev/null differ diff --git a/textures/landuse/farmland/brd/b4.png b/textures/landuse/farmland/brd/b4.png deleted file mode 100644 index 84641f8..0000000 Binary files a/textures/landuse/farmland/brd/b4.png and /dev/null differ diff --git a/textures/landuse/farmland/brd/b5.png b/textures/landuse/farmland/brd/b5.png deleted file mode 100644 index 67f40b8..0000000 Binary files a/textures/landuse/farmland/brd/b5.png and /dev/null differ diff --git a/textures/landuse/farmland/brd/b6.png b/textures/landuse/farmland/brd/b6.png deleted file mode 100644 index e14bf49..0000000 Binary files a/textures/landuse/farmland/brd/b6.png and /dev/null differ diff --git a/textures/landuse/farmland/brd/b7.png b/textures/landuse/farmland/brd/b7.png deleted file mode 100644 index 59190a8..0000000 Binary files a/textures/landuse/farmland/brd/b7.png and /dev/null differ diff --git a/textures/landuse/farmland/brd/b8.png b/textures/landuse/farmland/brd/b8.png deleted file mode 100644 index e7e12e0..0000000 Binary files a/textures/landuse/farmland/brd/b8.png and /dev/null differ diff --git a/textures/landuse/farmland/brd/b9.png b/textures/landuse/farmland/brd/b9.png deleted file mode 100644 index bd9d0d6..0000000 Binary files a/textures/landuse/farmland/brd/b9.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b10_p1.png b/textures/landuse/farmland/ptc/b10_p1.png deleted file mode 100644 index c6f319d..0000000 Binary files a/textures/landuse/farmland/ptc/b10_p1.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b10_p2.png b/textures/landuse/farmland/ptc/b10_p2.png deleted file mode 100644 index c9d1887..0000000 Binary files a/textures/landuse/farmland/ptc/b10_p2.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b11_p1.png b/textures/landuse/farmland/ptc/b11_p1.png deleted file mode 100644 index 7a1a0bc..0000000 Binary files a/textures/landuse/farmland/ptc/b11_p1.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b11_p2.png b/textures/landuse/farmland/ptc/b11_p2.png deleted file mode 100644 index 877d867..0000000 Binary files a/textures/landuse/farmland/ptc/b11_p2.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b12_p1.png b/textures/landuse/farmland/ptc/b12_p1.png deleted file mode 100644 index 1ea0426..0000000 Binary files a/textures/landuse/farmland/ptc/b12_p1.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b12_p2.png b/textures/landuse/farmland/ptc/b12_p2.png deleted file mode 100644 index a64a255..0000000 Binary files a/textures/landuse/farmland/ptc/b12_p2.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b13_p1.png b/textures/landuse/farmland/ptc/b13_p1.png deleted file mode 100644 index 8729da2..0000000 Binary files a/textures/landuse/farmland/ptc/b13_p1.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b13_p2.png b/textures/landuse/farmland/ptc/b13_p2.png deleted file mode 100644 index 49668c7..0000000 Binary files a/textures/landuse/farmland/ptc/b13_p2.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b14_p1.png b/textures/landuse/farmland/ptc/b14_p1.png deleted file mode 100644 index a6e348e..0000000 Binary files a/textures/landuse/farmland/ptc/b14_p1.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b14_p2.png b/textures/landuse/farmland/ptc/b14_p2.png deleted file mode 100644 index ab5f07a..0000000 Binary files a/textures/landuse/farmland/ptc/b14_p2.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b15_p1.png b/textures/landuse/farmland/ptc/b15_p1.png deleted file mode 100644 index afac470..0000000 Binary files a/textures/landuse/farmland/ptc/b15_p1.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b15_p2.png b/textures/landuse/farmland/ptc/b15_p2.png deleted file mode 100644 index cf842af..0000000 Binary files a/textures/landuse/farmland/ptc/b15_p2.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b16_p1.png b/textures/landuse/farmland/ptc/b16_p1.png deleted file mode 100644 index 845cdb7..0000000 Binary files a/textures/landuse/farmland/ptc/b16_p1.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b16_p2.png b/textures/landuse/farmland/ptc/b16_p2.png deleted file mode 100644 index c794d17..0000000 Binary files a/textures/landuse/farmland/ptc/b16_p2.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b1_p1.png b/textures/landuse/farmland/ptc/b1_p1.png deleted file mode 100644 index cf11ed1..0000000 Binary files a/textures/landuse/farmland/ptc/b1_p1.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b1_p2.png b/textures/landuse/farmland/ptc/b1_p2.png deleted file mode 100644 index 541df3e..0000000 Binary files a/textures/landuse/farmland/ptc/b1_p2.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b2_p1.png b/textures/landuse/farmland/ptc/b2_p1.png deleted file mode 100644 index 529992c..0000000 Binary files a/textures/landuse/farmland/ptc/b2_p1.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b2_p2.png b/textures/landuse/farmland/ptc/b2_p2.png deleted file mode 100644 index d00aa33..0000000 Binary files a/textures/landuse/farmland/ptc/b2_p2.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b3_p1.png b/textures/landuse/farmland/ptc/b3_p1.png deleted file mode 100644 index d65c611..0000000 Binary files a/textures/landuse/farmland/ptc/b3_p1.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b3_p2.png b/textures/landuse/farmland/ptc/b3_p2.png deleted file mode 100644 index 9bcb2b0..0000000 Binary files a/textures/landuse/farmland/ptc/b3_p2.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b4_p1.png b/textures/landuse/farmland/ptc/b4_p1.png deleted file mode 100644 index d5e4723..0000000 Binary files a/textures/landuse/farmland/ptc/b4_p1.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b4_p2.png b/textures/landuse/farmland/ptc/b4_p2.png deleted file mode 100644 index 77efb75..0000000 Binary files a/textures/landuse/farmland/ptc/b4_p2.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b5_p1.png b/textures/landuse/farmland/ptc/b5_p1.png deleted file mode 100644 index 186ea3a..0000000 Binary files a/textures/landuse/farmland/ptc/b5_p1.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b5_p2.png b/textures/landuse/farmland/ptc/b5_p2.png deleted file mode 100644 index 4fd665b..0000000 Binary files a/textures/landuse/farmland/ptc/b5_p2.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b6_p1.png b/textures/landuse/farmland/ptc/b6_p1.png deleted file mode 100644 index f36c7f1..0000000 Binary files a/textures/landuse/farmland/ptc/b6_p1.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b6_p2.png b/textures/landuse/farmland/ptc/b6_p2.png deleted file mode 100644 index 86bf27e..0000000 Binary files a/textures/landuse/farmland/ptc/b6_p2.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b7_p1.png b/textures/landuse/farmland/ptc/b7_p1.png deleted file mode 100644 index afd0c7e..0000000 Binary files a/textures/landuse/farmland/ptc/b7_p1.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b7_p2.png b/textures/landuse/farmland/ptc/b7_p2.png deleted file mode 100644 index a1906b0..0000000 Binary files a/textures/landuse/farmland/ptc/b7_p2.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b8_p1.png b/textures/landuse/farmland/ptc/b8_p1.png deleted file mode 100644 index bc7152b..0000000 Binary files a/textures/landuse/farmland/ptc/b8_p1.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b8_p2.png b/textures/landuse/farmland/ptc/b8_p2.png deleted file mode 100644 index a6882b6..0000000 Binary files a/textures/landuse/farmland/ptc/b8_p2.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b9_p1.png b/textures/landuse/farmland/ptc/b9_p1.png deleted file mode 100644 index 2739d88..0000000 Binary files a/textures/landuse/farmland/ptc/b9_p1.png and /dev/null differ diff --git a/textures/landuse/farmland/ptc/b9_p2.png b/textures/landuse/farmland/ptc/b9_p2.png deleted file mode 100644 index cfad265..0000000 Binary files a/textures/landuse/farmland/ptc/b9_p2.png and /dev/null differ diff --git a/textures/landuse/farmyard/brd/b1.png b/textures/landuse/farmyard/brd/b1.png deleted file mode 100644 index b072cfe..0000000 Binary files a/textures/landuse/farmyard/brd/b1.png and /dev/null differ diff --git a/textures/landuse/farmyard/brd/b10.png b/textures/landuse/farmyard/brd/b10.png deleted file mode 100644 index 1235fd6..0000000 Binary files a/textures/landuse/farmyard/brd/b10.png and /dev/null differ diff --git a/textures/landuse/farmyard/brd/b11.png b/textures/landuse/farmyard/brd/b11.png deleted file mode 100644 index 4b8976e..0000000 Binary files a/textures/landuse/farmyard/brd/b11.png and /dev/null differ diff --git a/textures/landuse/farmyard/brd/b12.png b/textures/landuse/farmyard/brd/b12.png deleted file mode 100644 index c6b614d..0000000 Binary files a/textures/landuse/farmyard/brd/b12.png and /dev/null differ diff --git a/textures/landuse/farmyard/brd/b13.png b/textures/landuse/farmyard/brd/b13.png deleted file mode 100644 index 9453121..0000000 Binary files a/textures/landuse/farmyard/brd/b13.png and /dev/null differ diff --git a/textures/landuse/farmyard/brd/b14.png b/textures/landuse/farmyard/brd/b14.png deleted file mode 100644 index 22f54a2..0000000 Binary files a/textures/landuse/farmyard/brd/b14.png and /dev/null differ diff --git a/textures/landuse/farmyard/brd/b15.png b/textures/landuse/farmyard/brd/b15.png deleted file mode 100644 index ad0dfe3..0000000 Binary files a/textures/landuse/farmyard/brd/b15.png and /dev/null differ diff --git a/textures/landuse/farmyard/brd/b16.png b/textures/landuse/farmyard/brd/b16.png deleted file mode 100644 index 3797c77..0000000 Binary files a/textures/landuse/farmyard/brd/b16.png and /dev/null differ diff --git a/textures/landuse/farmyard/brd/b2.png b/textures/landuse/farmyard/brd/b2.png deleted file mode 100644 index 79f99d6..0000000 Binary files a/textures/landuse/farmyard/brd/b2.png and /dev/null differ diff --git a/textures/landuse/farmyard/brd/b3.png b/textures/landuse/farmyard/brd/b3.png deleted file mode 100644 index d051b5f..0000000 Binary files a/textures/landuse/farmyard/brd/b3.png and /dev/null differ diff --git a/textures/landuse/farmyard/brd/b4.png b/textures/landuse/farmyard/brd/b4.png deleted file mode 100644 index 84641f8..0000000 Binary files a/textures/landuse/farmyard/brd/b4.png and /dev/null differ diff --git a/textures/landuse/farmyard/brd/b5.png b/textures/landuse/farmyard/brd/b5.png deleted file mode 100644 index 67f40b8..0000000 Binary files a/textures/landuse/farmyard/brd/b5.png and /dev/null differ diff --git a/textures/landuse/farmyard/brd/b6.png b/textures/landuse/farmyard/brd/b6.png deleted file mode 100644 index e14bf49..0000000 Binary files a/textures/landuse/farmyard/brd/b6.png and /dev/null differ diff --git a/textures/landuse/farmyard/brd/b7.png b/textures/landuse/farmyard/brd/b7.png deleted file mode 100644 index 59190a8..0000000 Binary files a/textures/landuse/farmyard/brd/b7.png and /dev/null differ diff --git a/textures/landuse/farmyard/brd/b8.png b/textures/landuse/farmyard/brd/b8.png deleted file mode 100644 index e7e12e0..0000000 Binary files a/textures/landuse/farmyard/brd/b8.png and /dev/null differ diff --git a/textures/landuse/farmyard/brd/b9.png b/textures/landuse/farmyard/brd/b9.png deleted file mode 100644 index bd9d0d6..0000000 Binary files a/textures/landuse/farmyard/brd/b9.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b10_p1.png b/textures/landuse/farmyard/ptc/b10_p1.png deleted file mode 100644 index c6f319d..0000000 Binary files a/textures/landuse/farmyard/ptc/b10_p1.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b10_p2.png b/textures/landuse/farmyard/ptc/b10_p2.png deleted file mode 100644 index c9d1887..0000000 Binary files a/textures/landuse/farmyard/ptc/b10_p2.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b11_p1.png b/textures/landuse/farmyard/ptc/b11_p1.png deleted file mode 100644 index 7a1a0bc..0000000 Binary files a/textures/landuse/farmyard/ptc/b11_p1.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b11_p2.png b/textures/landuse/farmyard/ptc/b11_p2.png deleted file mode 100644 index 877d867..0000000 Binary files a/textures/landuse/farmyard/ptc/b11_p2.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b12_p1.png b/textures/landuse/farmyard/ptc/b12_p1.png deleted file mode 100644 index 1ea0426..0000000 Binary files a/textures/landuse/farmyard/ptc/b12_p1.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b12_p2.png b/textures/landuse/farmyard/ptc/b12_p2.png deleted file mode 100644 index a64a255..0000000 Binary files a/textures/landuse/farmyard/ptc/b12_p2.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b13_p1.png b/textures/landuse/farmyard/ptc/b13_p1.png deleted file mode 100644 index 8729da2..0000000 Binary files a/textures/landuse/farmyard/ptc/b13_p1.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b13_p2.png b/textures/landuse/farmyard/ptc/b13_p2.png deleted file mode 100644 index 49668c7..0000000 Binary files a/textures/landuse/farmyard/ptc/b13_p2.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b14_p1.png b/textures/landuse/farmyard/ptc/b14_p1.png deleted file mode 100644 index a6e348e..0000000 Binary files a/textures/landuse/farmyard/ptc/b14_p1.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b14_p2.png b/textures/landuse/farmyard/ptc/b14_p2.png deleted file mode 100644 index ab5f07a..0000000 Binary files a/textures/landuse/farmyard/ptc/b14_p2.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b15_p1.png b/textures/landuse/farmyard/ptc/b15_p1.png deleted file mode 100644 index afac470..0000000 Binary files a/textures/landuse/farmyard/ptc/b15_p1.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b15_p2.png b/textures/landuse/farmyard/ptc/b15_p2.png deleted file mode 100644 index cf842af..0000000 Binary files a/textures/landuse/farmyard/ptc/b15_p2.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b16_p1.png b/textures/landuse/farmyard/ptc/b16_p1.png deleted file mode 100644 index 845cdb7..0000000 Binary files a/textures/landuse/farmyard/ptc/b16_p1.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b16_p2.png b/textures/landuse/farmyard/ptc/b16_p2.png deleted file mode 100644 index c794d17..0000000 Binary files a/textures/landuse/farmyard/ptc/b16_p2.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b1_p1.png b/textures/landuse/farmyard/ptc/b1_p1.png deleted file mode 100644 index cf11ed1..0000000 Binary files a/textures/landuse/farmyard/ptc/b1_p1.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b1_p2.png b/textures/landuse/farmyard/ptc/b1_p2.png deleted file mode 100644 index 541df3e..0000000 Binary files a/textures/landuse/farmyard/ptc/b1_p2.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b2_p1.png b/textures/landuse/farmyard/ptc/b2_p1.png deleted file mode 100644 index 529992c..0000000 Binary files a/textures/landuse/farmyard/ptc/b2_p1.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b2_p2.png b/textures/landuse/farmyard/ptc/b2_p2.png deleted file mode 100644 index d00aa33..0000000 Binary files a/textures/landuse/farmyard/ptc/b2_p2.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b3_p1.png b/textures/landuse/farmyard/ptc/b3_p1.png deleted file mode 100644 index d65c611..0000000 Binary files a/textures/landuse/farmyard/ptc/b3_p1.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b3_p2.png b/textures/landuse/farmyard/ptc/b3_p2.png deleted file mode 100644 index 9bcb2b0..0000000 Binary files a/textures/landuse/farmyard/ptc/b3_p2.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b4_p1.png b/textures/landuse/farmyard/ptc/b4_p1.png deleted file mode 100644 index d5e4723..0000000 Binary files a/textures/landuse/farmyard/ptc/b4_p1.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b4_p2.png b/textures/landuse/farmyard/ptc/b4_p2.png deleted file mode 100644 index 77efb75..0000000 Binary files a/textures/landuse/farmyard/ptc/b4_p2.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b5_p1.png b/textures/landuse/farmyard/ptc/b5_p1.png deleted file mode 100644 index 186ea3a..0000000 Binary files a/textures/landuse/farmyard/ptc/b5_p1.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b5_p2.png b/textures/landuse/farmyard/ptc/b5_p2.png deleted file mode 100644 index 4fd665b..0000000 Binary files a/textures/landuse/farmyard/ptc/b5_p2.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b6_p1.png b/textures/landuse/farmyard/ptc/b6_p1.png deleted file mode 100644 index f36c7f1..0000000 Binary files a/textures/landuse/farmyard/ptc/b6_p1.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b6_p2.png b/textures/landuse/farmyard/ptc/b6_p2.png deleted file mode 100644 index 86bf27e..0000000 Binary files a/textures/landuse/farmyard/ptc/b6_p2.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b7_p1.png b/textures/landuse/farmyard/ptc/b7_p1.png deleted file mode 100644 index afd0c7e..0000000 Binary files a/textures/landuse/farmyard/ptc/b7_p1.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b7_p2.png b/textures/landuse/farmyard/ptc/b7_p2.png deleted file mode 100644 index a1906b0..0000000 Binary files a/textures/landuse/farmyard/ptc/b7_p2.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b8_p1.png b/textures/landuse/farmyard/ptc/b8_p1.png deleted file mode 100644 index bc7152b..0000000 Binary files a/textures/landuse/farmyard/ptc/b8_p1.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b8_p2.png b/textures/landuse/farmyard/ptc/b8_p2.png deleted file mode 100644 index a6882b6..0000000 Binary files a/textures/landuse/farmyard/ptc/b8_p2.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b9_p1.png b/textures/landuse/farmyard/ptc/b9_p1.png deleted file mode 100644 index 2739d88..0000000 Binary files a/textures/landuse/farmyard/ptc/b9_p1.png and /dev/null differ diff --git a/textures/landuse/farmyard/ptc/b9_p2.png b/textures/landuse/farmyard/ptc/b9_p2.png deleted file mode 100644 index cfad265..0000000 Binary files a/textures/landuse/farmyard/ptc/b9_p2.png and /dev/null differ diff --git a/textures/landuse/forest/_backup/p1.png b/textures/landuse/forest/_backup/p1.png deleted file mode 100644 index 9d38c8a..0000000 Binary files a/textures/landuse/forest/_backup/p1.png and /dev/null differ diff --git a/textures/landuse/forest/_backup/p10.png b/textures/landuse/forest/_backup/p10.png deleted file mode 100644 index 5f1b7f1..0000000 Binary files a/textures/landuse/forest/_backup/p10.png and /dev/null differ diff --git a/textures/landuse/forest/_backup/p11.png b/textures/landuse/forest/_backup/p11.png deleted file mode 100644 index eb7c69e..0000000 Binary files a/textures/landuse/forest/_backup/p11.png and /dev/null differ diff --git a/textures/landuse/forest/_backup/p12.png b/textures/landuse/forest/_backup/p12.png deleted file mode 100644 index 3a5f488..0000000 Binary files a/textures/landuse/forest/_backup/p12.png and /dev/null differ diff --git a/textures/landuse/forest/_backup/p13.png b/textures/landuse/forest/_backup/p13.png deleted file mode 100644 index d2a9ab7..0000000 Binary files a/textures/landuse/forest/_backup/p13.png and /dev/null differ diff --git a/textures/landuse/forest/_backup/p14.png b/textures/landuse/forest/_backup/p14.png deleted file mode 100644 index ad5f56e..0000000 Binary files a/textures/landuse/forest/_backup/p14.png and /dev/null differ diff --git a/textures/landuse/forest/_backup/p15.png b/textures/landuse/forest/_backup/p15.png deleted file mode 100644 index 47bf6c0..0000000 Binary files a/textures/landuse/forest/_backup/p15.png and /dev/null differ diff --git a/textures/landuse/forest/_backup/p16.png b/textures/landuse/forest/_backup/p16.png deleted file mode 100644 index afccbbf..0000000 Binary files a/textures/landuse/forest/_backup/p16.png and /dev/null differ diff --git a/textures/landuse/forest/_backup/p17.png b/textures/landuse/forest/_backup/p17.png deleted file mode 100644 index 579210f..0000000 Binary files a/textures/landuse/forest/_backup/p17.png and /dev/null differ diff --git a/textures/landuse/forest/_backup/p18.png b/textures/landuse/forest/_backup/p18.png deleted file mode 100644 index 08282d2..0000000 Binary files a/textures/landuse/forest/_backup/p18.png and /dev/null differ diff --git a/textures/landuse/forest/_backup/p19.png b/textures/landuse/forest/_backup/p19.png deleted file mode 100644 index c63ee01..0000000 Binary files a/textures/landuse/forest/_backup/p19.png and /dev/null differ diff --git a/textures/landuse/forest/_backup/p2.png b/textures/landuse/forest/_backup/p2.png deleted file mode 100644 index eecf41e..0000000 Binary files a/textures/landuse/forest/_backup/p2.png and /dev/null differ diff --git a/textures/landuse/forest/_backup/p20.png b/textures/landuse/forest/_backup/p20.png deleted file mode 100644 index aa0c221..0000000 Binary files a/textures/landuse/forest/_backup/p20.png and /dev/null differ diff --git a/textures/landuse/forest/_backup/p3.png b/textures/landuse/forest/_backup/p3.png deleted file mode 100644 index abe9965..0000000 Binary files a/textures/landuse/forest/_backup/p3.png and /dev/null differ diff --git a/textures/landuse/forest/_backup/p4.png b/textures/landuse/forest/_backup/p4.png deleted file mode 100644 index ba3ddae..0000000 Binary files a/textures/landuse/forest/_backup/p4.png and /dev/null differ diff --git a/textures/landuse/forest/_backup/p5.png b/textures/landuse/forest/_backup/p5.png deleted file mode 100644 index 58e1a89..0000000 Binary files a/textures/landuse/forest/_backup/p5.png and /dev/null differ diff --git a/textures/landuse/forest/_backup/p6.png b/textures/landuse/forest/_backup/p6.png deleted file mode 100644 index d5c48a6..0000000 Binary files a/textures/landuse/forest/_backup/p6.png and /dev/null differ diff --git a/textures/landuse/forest/_backup/p7.png b/textures/landuse/forest/_backup/p7.png deleted file mode 100644 index 989c96e..0000000 Binary files a/textures/landuse/forest/_backup/p7.png and /dev/null differ diff --git a/textures/landuse/forest/_backup/p8.png b/textures/landuse/forest/_backup/p8.png deleted file mode 100644 index 69e624a..0000000 Binary files a/textures/landuse/forest/_backup/p8.png and /dev/null differ diff --git a/textures/landuse/forest/_backup/p9.png b/textures/landuse/forest/_backup/p9.png deleted file mode 100644 index e85f860..0000000 Binary files a/textures/landuse/forest/_backup/p9.png and /dev/null differ diff --git a/textures/landuse/forest/brd/b1.png b/textures/landuse/forest/brd/b1.png deleted file mode 100644 index 67e60fe..0000000 Binary files a/textures/landuse/forest/brd/b1.png and /dev/null differ diff --git a/textures/landuse/forest/brd/b10.png b/textures/landuse/forest/brd/b10.png deleted file mode 100644 index 7bd3df3..0000000 Binary files a/textures/landuse/forest/brd/b10.png and /dev/null differ diff --git a/textures/landuse/forest/brd/b11.png b/textures/landuse/forest/brd/b11.png deleted file mode 100644 index 8472950..0000000 Binary files a/textures/landuse/forest/brd/b11.png and /dev/null differ diff --git a/textures/landuse/forest/brd/b12.png b/textures/landuse/forest/brd/b12.png deleted file mode 100644 index f605106..0000000 Binary files a/textures/landuse/forest/brd/b12.png and /dev/null differ diff --git a/textures/landuse/forest/brd/b13.png b/textures/landuse/forest/brd/b13.png deleted file mode 100644 index da8a1f5..0000000 Binary files a/textures/landuse/forest/brd/b13.png and /dev/null differ diff --git a/textures/landuse/forest/brd/b14.png b/textures/landuse/forest/brd/b14.png deleted file mode 100644 index 301459d..0000000 Binary files a/textures/landuse/forest/brd/b14.png and /dev/null differ diff --git a/textures/landuse/forest/brd/b15.png b/textures/landuse/forest/brd/b15.png deleted file mode 100644 index eafa74d..0000000 Binary files a/textures/landuse/forest/brd/b15.png and /dev/null differ diff --git a/textures/landuse/forest/brd/b2.png b/textures/landuse/forest/brd/b2.png deleted file mode 100644 index fa50e2e..0000000 Binary files a/textures/landuse/forest/brd/b2.png and /dev/null differ diff --git a/textures/landuse/forest/brd/b3.png b/textures/landuse/forest/brd/b3.png deleted file mode 100644 index 59cf2fa..0000000 Binary files a/textures/landuse/forest/brd/b3.png and /dev/null differ diff --git a/textures/landuse/forest/brd/b4.png b/textures/landuse/forest/brd/b4.png deleted file mode 100644 index 051b3e9..0000000 Binary files a/textures/landuse/forest/brd/b4.png and /dev/null differ diff --git a/textures/landuse/forest/brd/b5.png b/textures/landuse/forest/brd/b5.png deleted file mode 100644 index 6dff1d2..0000000 Binary files a/textures/landuse/forest/brd/b5.png and /dev/null differ diff --git a/textures/landuse/forest/brd/b6.png b/textures/landuse/forest/brd/b6.png deleted file mode 100644 index 75f685c..0000000 Binary files a/textures/landuse/forest/brd/b6.png and /dev/null differ diff --git a/textures/landuse/forest/brd/b7.png b/textures/landuse/forest/brd/b7.png deleted file mode 100644 index 6218426..0000000 Binary files a/textures/landuse/forest/brd/b7.png and /dev/null differ diff --git a/textures/landuse/forest/brd/b8.png b/textures/landuse/forest/brd/b8.png deleted file mode 100644 index 073d5f2..0000000 Binary files a/textures/landuse/forest/brd/b8.png and /dev/null differ diff --git a/textures/landuse/forest/brd/b9.png b/textures/landuse/forest/brd/b9.png deleted file mode 100644 index b7b955d..0000000 Binary files a/textures/landuse/forest/brd/b9.png and /dev/null differ diff --git a/textures/landuse/forest/ptc/b10_p1.png b/textures/landuse/forest/ptc/b10_p1.png deleted file mode 100644 index 26b15f5..0000000 Binary files a/textures/landuse/forest/ptc/b10_p1.png and /dev/null differ diff --git a/textures/landuse/forest/ptc/b11_p1.png b/textures/landuse/forest/ptc/b11_p1.png deleted file mode 100644 index c8e9251..0000000 Binary files a/textures/landuse/forest/ptc/b11_p1.png and /dev/null differ diff --git a/textures/landuse/forest/ptc/b12_p1.png b/textures/landuse/forest/ptc/b12_p1.png deleted file mode 100644 index 1da0768..0000000 Binary files a/textures/landuse/forest/ptc/b12_p1.png and /dev/null differ diff --git a/textures/landuse/forest/ptc/b13_p1.png b/textures/landuse/forest/ptc/b13_p1.png deleted file mode 100644 index 55d2faa..0000000 Binary files a/textures/landuse/forest/ptc/b13_p1.png and /dev/null differ diff --git a/textures/landuse/forest/ptc/b13_p2.png b/textures/landuse/forest/ptc/b13_p2.png deleted file mode 100644 index f944e11..0000000 Binary files a/textures/landuse/forest/ptc/b13_p2.png and /dev/null differ diff --git a/textures/landuse/forest/ptc/b14_p1.png b/textures/landuse/forest/ptc/b14_p1.png deleted file mode 100644 index cbea942..0000000 Binary files a/textures/landuse/forest/ptc/b14_p1.png and /dev/null differ diff --git a/textures/landuse/forest/ptc/b14_p2.png b/textures/landuse/forest/ptc/b14_p2.png deleted file mode 100644 index 0cce264..0000000 Binary files a/textures/landuse/forest/ptc/b14_p2.png and /dev/null differ diff --git a/textures/landuse/forest/ptc/b15_p1.png b/textures/landuse/forest/ptc/b15_p1.png deleted file mode 100644 index 6c949e8..0000000 Binary files a/textures/landuse/forest/ptc/b15_p1.png and /dev/null differ diff --git a/textures/landuse/forest/ptc/b15_p2.png b/textures/landuse/forest/ptc/b15_p2.png deleted file mode 100644 index dddbedb..0000000 Binary files a/textures/landuse/forest/ptc/b15_p2.png and /dev/null differ diff --git a/textures/landuse/forest/ptc/b1_p1.png b/textures/landuse/forest/ptc/b1_p1.png deleted file mode 100644 index fefe94c..0000000 Binary files a/textures/landuse/forest/ptc/b1_p1.png and /dev/null differ diff --git a/textures/landuse/forest/ptc/b2_p1.png b/textures/landuse/forest/ptc/b2_p1.png deleted file mode 100644 index 5e0e492..0000000 Binary files a/textures/landuse/forest/ptc/b2_p1.png and /dev/null differ diff --git a/textures/landuse/forest/ptc/b3_p1.png b/textures/landuse/forest/ptc/b3_p1.png deleted file mode 100644 index 5d0eff2..0000000 Binary files a/textures/landuse/forest/ptc/b3_p1.png and /dev/null differ diff --git a/textures/landuse/forest/ptc/b4_p1.png b/textures/landuse/forest/ptc/b4_p1.png deleted file mode 100644 index 062f5c9..0000000 Binary files a/textures/landuse/forest/ptc/b4_p1.png and /dev/null differ diff --git a/textures/landuse/forest/ptc/b5_p1.png b/textures/landuse/forest/ptc/b5_p1.png deleted file mode 100644 index dfe70a6..0000000 Binary files a/textures/landuse/forest/ptc/b5_p1.png and /dev/null differ diff --git a/textures/landuse/forest/ptc/b6_p1.png b/textures/landuse/forest/ptc/b6_p1.png deleted file mode 100644 index dd0a4bb..0000000 Binary files a/textures/landuse/forest/ptc/b6_p1.png and /dev/null differ diff --git a/textures/landuse/forest/ptc/b7_p1.png b/textures/landuse/forest/ptc/b7_p1.png deleted file mode 100644 index 51fa5cc..0000000 Binary files a/textures/landuse/forest/ptc/b7_p1.png and /dev/null differ diff --git a/textures/landuse/forest/ptc/b8_p1.png b/textures/landuse/forest/ptc/b8_p1.png deleted file mode 100644 index e0b9ef6..0000000 Binary files a/textures/landuse/forest/ptc/b8_p1.png and /dev/null differ diff --git a/textures/landuse/forest/ptc/b9_p1.png b/textures/landuse/forest/ptc/b9_p1.png deleted file mode 100644 index a1f9e31..0000000 Binary files a/textures/landuse/forest/ptc/b9_p1.png and /dev/null differ diff --git a/textures/landuse/grass/brd/b1.png b/textures/landuse/grass/brd/b1.png deleted file mode 100644 index e140282..0000000 Binary files a/textures/landuse/grass/brd/b1.png and /dev/null differ diff --git a/textures/landuse/grass/brd/b2.png b/textures/landuse/grass/brd/b2.png deleted file mode 100644 index 3358762..0000000 Binary files a/textures/landuse/grass/brd/b2.png and /dev/null differ diff --git a/textures/landuse/grass/brd/b3.png b/textures/landuse/grass/brd/b3.png deleted file mode 100644 index a3254af..0000000 Binary files a/textures/landuse/grass/brd/b3.png and /dev/null differ diff --git a/textures/landuse/grass/brd/b4.png b/textures/landuse/grass/brd/b4.png deleted file mode 100644 index 82d5839..0000000 Binary files a/textures/landuse/grass/brd/b4.png and /dev/null differ diff --git a/textures/landuse/grass/brd/b5.png b/textures/landuse/grass/brd/b5.png deleted file mode 100644 index 9630292..0000000 Binary files a/textures/landuse/grass/brd/b5.png and /dev/null differ diff --git a/textures/landuse/grass/ptc/b1_p1.png b/textures/landuse/grass/ptc/b1_p1.png deleted file mode 100644 index d97b974..0000000 Binary files a/textures/landuse/grass/ptc/b1_p1.png and /dev/null differ diff --git a/textures/landuse/grass/ptc/b2_p1.png b/textures/landuse/grass/ptc/b2_p1.png deleted file mode 100644 index a68bb51..0000000 Binary files a/textures/landuse/grass/ptc/b2_p1.png and /dev/null differ diff --git a/textures/landuse/grass/ptc/b2_p2.png b/textures/landuse/grass/ptc/b2_p2.png deleted file mode 100644 index a8edf6c..0000000 Binary files a/textures/landuse/grass/ptc/b2_p2.png and /dev/null differ diff --git a/textures/landuse/grass/ptc/b3_p1.png b/textures/landuse/grass/ptc/b3_p1.png deleted file mode 100644 index a6c0506..0000000 Binary files a/textures/landuse/grass/ptc/b3_p1.png and /dev/null differ diff --git a/textures/landuse/grass/ptc/b3_p2.png b/textures/landuse/grass/ptc/b3_p2.png deleted file mode 100644 index dc31e0f..0000000 Binary files a/textures/landuse/grass/ptc/b3_p2.png and /dev/null differ diff --git a/textures/landuse/grass/ptc/b4_p1.png b/textures/landuse/grass/ptc/b4_p1.png deleted file mode 100644 index 4195505..0000000 Binary files a/textures/landuse/grass/ptc/b4_p1.png and /dev/null differ diff --git a/textures/landuse/grass/ptc/b4_p2.png b/textures/landuse/grass/ptc/b4_p2.png deleted file mode 100644 index 46e31ae..0000000 Binary files a/textures/landuse/grass/ptc/b4_p2.png and /dev/null differ diff --git a/textures/landuse/grass/ptc/b5_p1.png b/textures/landuse/grass/ptc/b5_p1.png deleted file mode 100644 index 6349358..0000000 Binary files a/textures/landuse/grass/ptc/b5_p1.png and /dev/null differ diff --git a/textures/landuse/grass/ptc/b5_p2.png b/textures/landuse/grass/ptc/b5_p2.png deleted file mode 100644 index e09374f..0000000 Binary files a/textures/landuse/grass/ptc/b5_p2.png and /dev/null differ diff --git a/textures/landuse/meadow/brd/b1.png b/textures/landuse/meadow/brd/b1.png deleted file mode 100644 index 439abf0..0000000 Binary files a/textures/landuse/meadow/brd/b1.png and /dev/null differ diff --git a/textures/landuse/meadow/brd/b2.png b/textures/landuse/meadow/brd/b2.png deleted file mode 100644 index 85cc8e8..0000000 Binary files a/textures/landuse/meadow/brd/b2.png and /dev/null differ diff --git a/textures/landuse/meadow/brd/b3.png b/textures/landuse/meadow/brd/b3.png deleted file mode 100644 index 4cf033c..0000000 Binary files a/textures/landuse/meadow/brd/b3.png and /dev/null differ diff --git a/textures/landuse/meadow/brd/b4.png b/textures/landuse/meadow/brd/b4.png deleted file mode 100644 index 1790836..0000000 Binary files a/textures/landuse/meadow/brd/b4.png and /dev/null differ diff --git a/textures/landuse/meadow/ptc/b1_p1.png b/textures/landuse/meadow/ptc/b1_p1.png deleted file mode 100644 index 46b4f89..0000000 Binary files a/textures/landuse/meadow/ptc/b1_p1.png and /dev/null differ diff --git a/textures/landuse/meadow/ptc/b1_p2.png b/textures/landuse/meadow/ptc/b1_p2.png deleted file mode 100644 index 32e40f3..0000000 Binary files a/textures/landuse/meadow/ptc/b1_p2.png and /dev/null differ diff --git a/textures/landuse/meadow/ptc/b2_p1.png b/textures/landuse/meadow/ptc/b2_p1.png deleted file mode 100644 index 566c220..0000000 Binary files a/textures/landuse/meadow/ptc/b2_p1.png and /dev/null differ diff --git a/textures/landuse/meadow/ptc/b2_p2.png b/textures/landuse/meadow/ptc/b2_p2.png deleted file mode 100644 index 10a211d..0000000 Binary files a/textures/landuse/meadow/ptc/b2_p2.png and /dev/null differ diff --git a/textures/landuse/meadow/ptc/b3_p1.png b/textures/landuse/meadow/ptc/b3_p1.png deleted file mode 100644 index 4322b13..0000000 Binary files a/textures/landuse/meadow/ptc/b3_p1.png and /dev/null differ diff --git a/textures/landuse/meadow/ptc/b3_p2.png b/textures/landuse/meadow/ptc/b3_p2.png deleted file mode 100644 index 1cc9162..0000000 Binary files a/textures/landuse/meadow/ptc/b3_p2.png and /dev/null differ diff --git a/textures/landuse/meadow/ptc/b4_p1.png b/textures/landuse/meadow/ptc/b4_p1.png deleted file mode 100644 index 7a09e4e..0000000 Binary files a/textures/landuse/meadow/ptc/b4_p1.png and /dev/null differ diff --git a/textures/landuse/meadow/ptc/b4_p2.png b/textures/landuse/meadow/ptc/b4_p2.png deleted file mode 100644 index fff420c..0000000 Binary files a/textures/landuse/meadow/ptc/b4_p2.png and /dev/null differ diff --git a/textures/landuse/military/brd/b1.png b/textures/landuse/military/brd/b1.png deleted file mode 100644 index 6be9ba8..0000000 Binary files a/textures/landuse/military/brd/b1.png and /dev/null differ diff --git a/textures/landuse/military/brd/b2.png b/textures/landuse/military/brd/b2.png deleted file mode 100644 index 268b38b..0000000 Binary files a/textures/landuse/military/brd/b2.png and /dev/null differ diff --git a/textures/landuse/military/brd/b3.png b/textures/landuse/military/brd/b3.png deleted file mode 100644 index cd73d2e..0000000 Binary files a/textures/landuse/military/brd/b3.png and /dev/null differ diff --git a/textures/landuse/military/brd/b4.png b/textures/landuse/military/brd/b4.png deleted file mode 100644 index 6e53e94..0000000 Binary files a/textures/landuse/military/brd/b4.png and /dev/null differ diff --git a/textures/landuse/military/ptc/b1_p1.png b/textures/landuse/military/ptc/b1_p1.png deleted file mode 100644 index c1d1a3a..0000000 Binary files a/textures/landuse/military/ptc/b1_p1.png and /dev/null differ diff --git a/textures/landuse/military/ptc/b1_p2.png b/textures/landuse/military/ptc/b1_p2.png deleted file mode 100644 index 708dc34..0000000 Binary files a/textures/landuse/military/ptc/b1_p2.png and /dev/null differ diff --git a/textures/landuse/military/ptc/b2_p1.png b/textures/landuse/military/ptc/b2_p1.png deleted file mode 100644 index 057d796..0000000 Binary files a/textures/landuse/military/ptc/b2_p1.png and /dev/null differ diff --git a/textures/landuse/military/ptc/b2_p2.png b/textures/landuse/military/ptc/b2_p2.png deleted file mode 100644 index c9631c3..0000000 Binary files a/textures/landuse/military/ptc/b2_p2.png and /dev/null differ diff --git a/textures/landuse/military/ptc/b3_p1.png b/textures/landuse/military/ptc/b3_p1.png deleted file mode 100644 index 916014b..0000000 Binary files a/textures/landuse/military/ptc/b3_p1.png and /dev/null differ diff --git a/textures/landuse/military/ptc/b3_p2.png b/textures/landuse/military/ptc/b3_p2.png deleted file mode 100644 index 872f736..0000000 Binary files a/textures/landuse/military/ptc/b3_p2.png and /dev/null differ diff --git a/textures/landuse/military/ptc/b4_p1.png b/textures/landuse/military/ptc/b4_p1.png deleted file mode 100644 index cee27fe..0000000 Binary files a/textures/landuse/military/ptc/b4_p1.png and /dev/null differ diff --git a/textures/landuse/military/ptc/b4_p2.png b/textures/landuse/military/ptc/b4_p2.png deleted file mode 100644 index 547a0fe..0000000 Binary files a/textures/landuse/military/ptc/b4_p2.png and /dev/null differ diff --git a/textures/landuse/orchard/brd/b1.png b/textures/landuse/orchard/brd/b1.png deleted file mode 100644 index 439abf0..0000000 Binary files a/textures/landuse/orchard/brd/b1.png and /dev/null differ diff --git a/textures/landuse/orchard/brd/b2.png b/textures/landuse/orchard/brd/b2.png deleted file mode 100644 index 85cc8e8..0000000 Binary files a/textures/landuse/orchard/brd/b2.png and /dev/null differ diff --git a/textures/landuse/orchard/brd/b3.png b/textures/landuse/orchard/brd/b3.png deleted file mode 100644 index 4cf033c..0000000 Binary files a/textures/landuse/orchard/brd/b3.png and /dev/null differ diff --git a/textures/landuse/orchard/brd/b4.png b/textures/landuse/orchard/brd/b4.png deleted file mode 100644 index 1790836..0000000 Binary files a/textures/landuse/orchard/brd/b4.png and /dev/null differ diff --git a/textures/landuse/orchard/ptc/b1_p1.png b/textures/landuse/orchard/ptc/b1_p1.png deleted file mode 100644 index 46b4f89..0000000 Binary files a/textures/landuse/orchard/ptc/b1_p1.png and /dev/null differ diff --git a/textures/landuse/orchard/ptc/b1_p2.png b/textures/landuse/orchard/ptc/b1_p2.png deleted file mode 100644 index 32e40f3..0000000 Binary files a/textures/landuse/orchard/ptc/b1_p2.png and /dev/null differ diff --git a/textures/landuse/orchard/ptc/b2_p1.png b/textures/landuse/orchard/ptc/b2_p1.png deleted file mode 100644 index 566c220..0000000 Binary files a/textures/landuse/orchard/ptc/b2_p1.png and /dev/null differ diff --git a/textures/landuse/orchard/ptc/b2_p2.png b/textures/landuse/orchard/ptc/b2_p2.png deleted file mode 100644 index 10a211d..0000000 Binary files a/textures/landuse/orchard/ptc/b2_p2.png and /dev/null differ diff --git a/textures/landuse/orchard/ptc/b3_p1.png b/textures/landuse/orchard/ptc/b3_p1.png deleted file mode 100644 index 4322b13..0000000 Binary files a/textures/landuse/orchard/ptc/b3_p1.png and /dev/null differ diff --git a/textures/landuse/orchard/ptc/b3_p2.png b/textures/landuse/orchard/ptc/b3_p2.png deleted file mode 100644 index 1cc9162..0000000 Binary files a/textures/landuse/orchard/ptc/b3_p2.png and /dev/null differ diff --git a/textures/landuse/orchard/ptc/b4_p1.png b/textures/landuse/orchard/ptc/b4_p1.png deleted file mode 100644 index 7a09e4e..0000000 Binary files a/textures/landuse/orchard/ptc/b4_p1.png and /dev/null differ diff --git a/textures/landuse/orchard/ptc/b4_p2.png b/textures/landuse/orchard/ptc/b4_p2.png deleted file mode 100644 index fff420c..0000000 Binary files a/textures/landuse/orchard/ptc/b4_p2.png and /dev/null differ diff --git a/textures/landuse/recreation_ground/brd/b1.png b/textures/landuse/recreation_ground/brd/b1.png deleted file mode 100644 index 439abf0..0000000 Binary files a/textures/landuse/recreation_ground/brd/b1.png and /dev/null differ diff --git a/textures/landuse/recreation_ground/brd/b2.png b/textures/landuse/recreation_ground/brd/b2.png deleted file mode 100644 index 85cc8e8..0000000 Binary files a/textures/landuse/recreation_ground/brd/b2.png and /dev/null differ diff --git a/textures/landuse/recreation_ground/brd/b3.png b/textures/landuse/recreation_ground/brd/b3.png deleted file mode 100644 index 4cf033c..0000000 Binary files a/textures/landuse/recreation_ground/brd/b3.png and /dev/null differ diff --git a/textures/landuse/recreation_ground/brd/b4.png b/textures/landuse/recreation_ground/brd/b4.png deleted file mode 100644 index 1790836..0000000 Binary files a/textures/landuse/recreation_ground/brd/b4.png and /dev/null differ diff --git a/textures/landuse/recreation_ground/ptc/b1_p1.png b/textures/landuse/recreation_ground/ptc/b1_p1.png deleted file mode 100644 index 46b4f89..0000000 Binary files a/textures/landuse/recreation_ground/ptc/b1_p1.png and /dev/null differ diff --git a/textures/landuse/recreation_ground/ptc/b1_p2.png b/textures/landuse/recreation_ground/ptc/b1_p2.png deleted file mode 100644 index 32e40f3..0000000 Binary files a/textures/landuse/recreation_ground/ptc/b1_p2.png and /dev/null differ diff --git a/textures/landuse/recreation_ground/ptc/b2_p1.png b/textures/landuse/recreation_ground/ptc/b2_p1.png deleted file mode 100644 index 566c220..0000000 Binary files a/textures/landuse/recreation_ground/ptc/b2_p1.png and /dev/null differ diff --git a/textures/landuse/recreation_ground/ptc/b2_p2.png b/textures/landuse/recreation_ground/ptc/b2_p2.png deleted file mode 100644 index 10a211d..0000000 Binary files a/textures/landuse/recreation_ground/ptc/b2_p2.png and /dev/null differ diff --git a/textures/landuse/recreation_ground/ptc/b3_p1.png b/textures/landuse/recreation_ground/ptc/b3_p1.png deleted file mode 100644 index 4322b13..0000000 Binary files a/textures/landuse/recreation_ground/ptc/b3_p1.png and /dev/null differ diff --git a/textures/landuse/recreation_ground/ptc/b3_p2.png b/textures/landuse/recreation_ground/ptc/b3_p2.png deleted file mode 100644 index 1cc9162..0000000 Binary files a/textures/landuse/recreation_ground/ptc/b3_p2.png and /dev/null differ diff --git a/textures/landuse/recreation_ground/ptc/b4_p1.png b/textures/landuse/recreation_ground/ptc/b4_p1.png deleted file mode 100644 index 7a09e4e..0000000 Binary files a/textures/landuse/recreation_ground/ptc/b4_p1.png and /dev/null differ diff --git a/textures/landuse/recreation_ground/ptc/b4_p2.png b/textures/landuse/recreation_ground/ptc/b4_p2.png deleted file mode 100644 index fff420c..0000000 Binary files a/textures/landuse/recreation_ground/ptc/b4_p2.png and /dev/null differ diff --git a/textures/landuse/residential-boundary/brd/b1.png b/textures/landuse/residential-boundary/brd/b1.png deleted file mode 100644 index 6be9ba8..0000000 Binary files a/textures/landuse/residential-boundary/brd/b1.png and /dev/null differ diff --git a/textures/landuse/residential-boundary/brd/b2.png b/textures/landuse/residential-boundary/brd/b2.png deleted file mode 100644 index 268b38b..0000000 Binary files a/textures/landuse/residential-boundary/brd/b2.png and /dev/null differ diff --git a/textures/landuse/residential-boundary/brd/b3.png b/textures/landuse/residential-boundary/brd/b3.png deleted file mode 100644 index cd73d2e..0000000 Binary files a/textures/landuse/residential-boundary/brd/b3.png and /dev/null differ diff --git a/textures/landuse/residential-boundary/brd/b4.png b/textures/landuse/residential-boundary/brd/b4.png deleted file mode 100644 index 6e53e94..0000000 Binary files a/textures/landuse/residential-boundary/brd/b4.png and /dev/null differ diff --git a/textures/landuse/residential-boundary/ptc/b1_p1.png b/textures/landuse/residential-boundary/ptc/b1_p1.png deleted file mode 100644 index c1d1a3a..0000000 Binary files a/textures/landuse/residential-boundary/ptc/b1_p1.png and /dev/null differ diff --git a/textures/landuse/residential-boundary/ptc/b1_p2.png b/textures/landuse/residential-boundary/ptc/b1_p2.png deleted file mode 100644 index 708dc34..0000000 Binary files a/textures/landuse/residential-boundary/ptc/b1_p2.png and /dev/null differ diff --git a/textures/landuse/residential-boundary/ptc/b2_p1.png b/textures/landuse/residential-boundary/ptc/b2_p1.png deleted file mode 100644 index 057d796..0000000 Binary files a/textures/landuse/residential-boundary/ptc/b2_p1.png and /dev/null differ diff --git a/textures/landuse/residential-boundary/ptc/b2_p2.png b/textures/landuse/residential-boundary/ptc/b2_p2.png deleted file mode 100644 index c9631c3..0000000 Binary files a/textures/landuse/residential-boundary/ptc/b2_p2.png and /dev/null differ diff --git a/textures/landuse/residential-boundary/ptc/b3_p1.png b/textures/landuse/residential-boundary/ptc/b3_p1.png deleted file mode 100644 index 916014b..0000000 Binary files a/textures/landuse/residential-boundary/ptc/b3_p1.png and /dev/null differ diff --git a/textures/landuse/residential-boundary/ptc/b3_p2.png b/textures/landuse/residential-boundary/ptc/b3_p2.png deleted file mode 100644 index 872f736..0000000 Binary files a/textures/landuse/residential-boundary/ptc/b3_p2.png and /dev/null differ diff --git a/textures/landuse/residential-boundary/ptc/b4_p1.png b/textures/landuse/residential-boundary/ptc/b4_p1.png deleted file mode 100644 index cee27fe..0000000 Binary files a/textures/landuse/residential-boundary/ptc/b4_p1.png and /dev/null differ diff --git a/textures/landuse/residential-boundary/ptc/b4_p2.png b/textures/landuse/residential-boundary/ptc/b4_p2.png deleted file mode 100644 index 547a0fe..0000000 Binary files a/textures/landuse/residential-boundary/ptc/b4_p2.png and /dev/null differ diff --git a/textures/landuse/residential/brd/b1.png b/textures/landuse/residential/brd/b1.png deleted file mode 100644 index 6be9ba8..0000000 Binary files a/textures/landuse/residential/brd/b1.png and /dev/null differ diff --git a/textures/landuse/residential/brd/b2.png b/textures/landuse/residential/brd/b2.png deleted file mode 100644 index 268b38b..0000000 Binary files a/textures/landuse/residential/brd/b2.png and /dev/null differ diff --git a/textures/landuse/residential/brd/b3.png b/textures/landuse/residential/brd/b3.png deleted file mode 100644 index cd73d2e..0000000 Binary files a/textures/landuse/residential/brd/b3.png and /dev/null differ diff --git a/textures/landuse/residential/brd/b4.png b/textures/landuse/residential/brd/b4.png deleted file mode 100644 index 6e53e94..0000000 Binary files a/textures/landuse/residential/brd/b4.png and /dev/null differ diff --git a/textures/landuse/residential/ptc/b1_p1.png b/textures/landuse/residential/ptc/b1_p1.png deleted file mode 100644 index c1d1a3a..0000000 Binary files a/textures/landuse/residential/ptc/b1_p1.png and /dev/null differ diff --git a/textures/landuse/residential/ptc/b1_p2.png b/textures/landuse/residential/ptc/b1_p2.png deleted file mode 100644 index 708dc34..0000000 Binary files a/textures/landuse/residential/ptc/b1_p2.png and /dev/null differ diff --git a/textures/landuse/residential/ptc/b2_p1.png b/textures/landuse/residential/ptc/b2_p1.png deleted file mode 100644 index 057d796..0000000 Binary files a/textures/landuse/residential/ptc/b2_p1.png and /dev/null differ diff --git a/textures/landuse/residential/ptc/b2_p2.png b/textures/landuse/residential/ptc/b2_p2.png deleted file mode 100644 index c9631c3..0000000 Binary files a/textures/landuse/residential/ptc/b2_p2.png and /dev/null differ diff --git a/textures/landuse/residential/ptc/b3_p1.png b/textures/landuse/residential/ptc/b3_p1.png deleted file mode 100644 index 916014b..0000000 Binary files a/textures/landuse/residential/ptc/b3_p1.png and /dev/null differ diff --git a/textures/landuse/residential/ptc/b3_p2.png b/textures/landuse/residential/ptc/b3_p2.png deleted file mode 100644 index 872f736..0000000 Binary files a/textures/landuse/residential/ptc/b3_p2.png and /dev/null differ diff --git a/textures/landuse/residential/ptc/b4_p1.png b/textures/landuse/residential/ptc/b4_p1.png deleted file mode 100644 index cee27fe..0000000 Binary files a/textures/landuse/residential/ptc/b4_p1.png and /dev/null differ diff --git a/textures/landuse/residential/ptc/b4_p2.png b/textures/landuse/residential/ptc/b4_p2.png deleted file mode 100644 index 547a0fe..0000000 Binary files a/textures/landuse/residential/ptc/b4_p2.png and /dev/null differ diff --git a/textures/leisure/golf_course/brd/b1.png b/textures/leisure/golf_course/brd/b1.png deleted file mode 100644 index 58027c6..0000000 Binary files a/textures/leisure/golf_course/brd/b1.png and /dev/null differ diff --git a/textures/leisure/golf_course/brd/b2.png b/textures/leisure/golf_course/brd/b2.png deleted file mode 100644 index 1684ef4..0000000 Binary files a/textures/leisure/golf_course/brd/b2.png and /dev/null differ diff --git a/textures/leisure/golf_course/ptc/b1_p1.png b/textures/leisure/golf_course/ptc/b1_p1.png deleted file mode 100644 index 0650207..0000000 Binary files a/textures/leisure/golf_course/ptc/b1_p1.png and /dev/null differ diff --git a/textures/leisure/golf_course/ptc/b1_p2.png b/textures/leisure/golf_course/ptc/b1_p2.png deleted file mode 100644 index c505406..0000000 Binary files a/textures/leisure/golf_course/ptc/b1_p2.png and /dev/null differ diff --git a/textures/leisure/golf_course/ptc/b2_p1.png b/textures/leisure/golf_course/ptc/b2_p1.png deleted file mode 100644 index 1de018a..0000000 Binary files a/textures/leisure/golf_course/ptc/b2_p1.png and /dev/null differ diff --git a/textures/leisure/golf_course/ptc/b2_p2.png b/textures/leisure/golf_course/ptc/b2_p2.png deleted file mode 100644 index 73086ef..0000000 Binary files a/textures/leisure/golf_course/ptc/b2_p2.png and /dev/null differ diff --git a/textures/leisure/green/brd/b1.png b/textures/leisure/green/brd/b1.png deleted file mode 100644 index 341917d..0000000 Binary files a/textures/leisure/green/brd/b1.png and /dev/null differ diff --git a/textures/leisure/green/ptc/b1_p1.png b/textures/leisure/green/ptc/b1_p1.png deleted file mode 100644 index fd5b848..0000000 Binary files a/textures/leisure/green/ptc/b1_p1.png and /dev/null differ diff --git a/textures/leisure/green/ptc/b1_p2.png b/textures/leisure/green/ptc/b1_p2.png deleted file mode 100644 index cc3cea7..0000000 Binary files a/textures/leisure/green/ptc/b1_p2.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/_backup/p1.png b/textures/leisure/nature_reserve/_backup/p1.png deleted file mode 100644 index 9d38c8a..0000000 Binary files a/textures/leisure/nature_reserve/_backup/p1.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/_backup/p10.png b/textures/leisure/nature_reserve/_backup/p10.png deleted file mode 100644 index 5f1b7f1..0000000 Binary files a/textures/leisure/nature_reserve/_backup/p10.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/_backup/p11.png b/textures/leisure/nature_reserve/_backup/p11.png deleted file mode 100644 index eb7c69e..0000000 Binary files a/textures/leisure/nature_reserve/_backup/p11.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/_backup/p12.png b/textures/leisure/nature_reserve/_backup/p12.png deleted file mode 100644 index 3a5f488..0000000 Binary files a/textures/leisure/nature_reserve/_backup/p12.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/_backup/p13.png b/textures/leisure/nature_reserve/_backup/p13.png deleted file mode 100644 index d2a9ab7..0000000 Binary files a/textures/leisure/nature_reserve/_backup/p13.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/_backup/p14.png b/textures/leisure/nature_reserve/_backup/p14.png deleted file mode 100644 index ad5f56e..0000000 Binary files a/textures/leisure/nature_reserve/_backup/p14.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/_backup/p15.png b/textures/leisure/nature_reserve/_backup/p15.png deleted file mode 100644 index 47bf6c0..0000000 Binary files a/textures/leisure/nature_reserve/_backup/p15.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/_backup/p16.png b/textures/leisure/nature_reserve/_backup/p16.png deleted file mode 100644 index afccbbf..0000000 Binary files a/textures/leisure/nature_reserve/_backup/p16.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/_backup/p17.png b/textures/leisure/nature_reserve/_backup/p17.png deleted file mode 100644 index 579210f..0000000 Binary files a/textures/leisure/nature_reserve/_backup/p17.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/_backup/p18.png b/textures/leisure/nature_reserve/_backup/p18.png deleted file mode 100644 index 08282d2..0000000 Binary files a/textures/leisure/nature_reserve/_backup/p18.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/_backup/p19.png b/textures/leisure/nature_reserve/_backup/p19.png deleted file mode 100644 index c63ee01..0000000 Binary files a/textures/leisure/nature_reserve/_backup/p19.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/_backup/p2.png b/textures/leisure/nature_reserve/_backup/p2.png deleted file mode 100644 index eecf41e..0000000 Binary files a/textures/leisure/nature_reserve/_backup/p2.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/_backup/p20.png b/textures/leisure/nature_reserve/_backup/p20.png deleted file mode 100644 index aa0c221..0000000 Binary files a/textures/leisure/nature_reserve/_backup/p20.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/_backup/p3.png b/textures/leisure/nature_reserve/_backup/p3.png deleted file mode 100644 index abe9965..0000000 Binary files a/textures/leisure/nature_reserve/_backup/p3.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/_backup/p4.png b/textures/leisure/nature_reserve/_backup/p4.png deleted file mode 100644 index ba3ddae..0000000 Binary files a/textures/leisure/nature_reserve/_backup/p4.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/_backup/p5.png b/textures/leisure/nature_reserve/_backup/p5.png deleted file mode 100644 index 58e1a89..0000000 Binary files a/textures/leisure/nature_reserve/_backup/p5.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/_backup/p6.png b/textures/leisure/nature_reserve/_backup/p6.png deleted file mode 100644 index d5c48a6..0000000 Binary files a/textures/leisure/nature_reserve/_backup/p6.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/_backup/p7.png b/textures/leisure/nature_reserve/_backup/p7.png deleted file mode 100644 index 989c96e..0000000 Binary files a/textures/leisure/nature_reserve/_backup/p7.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/_backup/p8.png b/textures/leisure/nature_reserve/_backup/p8.png deleted file mode 100644 index 69e624a..0000000 Binary files a/textures/leisure/nature_reserve/_backup/p8.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/_backup/p9.png b/textures/leisure/nature_reserve/_backup/p9.png deleted file mode 100644 index e85f860..0000000 Binary files a/textures/leisure/nature_reserve/_backup/p9.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/brd/b1.png b/textures/leisure/nature_reserve/brd/b1.png deleted file mode 100644 index 67e60fe..0000000 Binary files a/textures/leisure/nature_reserve/brd/b1.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/brd/b10.png b/textures/leisure/nature_reserve/brd/b10.png deleted file mode 100644 index 7bd3df3..0000000 Binary files a/textures/leisure/nature_reserve/brd/b10.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/brd/b11.png b/textures/leisure/nature_reserve/brd/b11.png deleted file mode 100644 index 8472950..0000000 Binary files a/textures/leisure/nature_reserve/brd/b11.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/brd/b12.png b/textures/leisure/nature_reserve/brd/b12.png deleted file mode 100644 index f605106..0000000 Binary files a/textures/leisure/nature_reserve/brd/b12.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/brd/b13.png b/textures/leisure/nature_reserve/brd/b13.png deleted file mode 100644 index da8a1f5..0000000 Binary files a/textures/leisure/nature_reserve/brd/b13.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/brd/b14.png b/textures/leisure/nature_reserve/brd/b14.png deleted file mode 100644 index 301459d..0000000 Binary files a/textures/leisure/nature_reserve/brd/b14.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/brd/b15.png b/textures/leisure/nature_reserve/brd/b15.png deleted file mode 100644 index eafa74d..0000000 Binary files a/textures/leisure/nature_reserve/brd/b15.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/brd/b2.png b/textures/leisure/nature_reserve/brd/b2.png deleted file mode 100644 index fa50e2e..0000000 Binary files a/textures/leisure/nature_reserve/brd/b2.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/brd/b3.png b/textures/leisure/nature_reserve/brd/b3.png deleted file mode 100644 index 59cf2fa..0000000 Binary files a/textures/leisure/nature_reserve/brd/b3.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/brd/b4.png b/textures/leisure/nature_reserve/brd/b4.png deleted file mode 100644 index 051b3e9..0000000 Binary files a/textures/leisure/nature_reserve/brd/b4.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/brd/b5.png b/textures/leisure/nature_reserve/brd/b5.png deleted file mode 100644 index 6dff1d2..0000000 Binary files a/textures/leisure/nature_reserve/brd/b5.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/brd/b6.png b/textures/leisure/nature_reserve/brd/b6.png deleted file mode 100644 index 75f685c..0000000 Binary files a/textures/leisure/nature_reserve/brd/b6.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/brd/b7.png b/textures/leisure/nature_reserve/brd/b7.png deleted file mode 100644 index 6218426..0000000 Binary files a/textures/leisure/nature_reserve/brd/b7.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/brd/b8.png b/textures/leisure/nature_reserve/brd/b8.png deleted file mode 100644 index 073d5f2..0000000 Binary files a/textures/leisure/nature_reserve/brd/b8.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/brd/b9.png b/textures/leisure/nature_reserve/brd/b9.png deleted file mode 100644 index b7b955d..0000000 Binary files a/textures/leisure/nature_reserve/brd/b9.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/ptc/b10_p1.png b/textures/leisure/nature_reserve/ptc/b10_p1.png deleted file mode 100644 index 26b15f5..0000000 Binary files a/textures/leisure/nature_reserve/ptc/b10_p1.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/ptc/b11_p1.png b/textures/leisure/nature_reserve/ptc/b11_p1.png deleted file mode 100644 index c8e9251..0000000 Binary files a/textures/leisure/nature_reserve/ptc/b11_p1.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/ptc/b12_p1.png b/textures/leisure/nature_reserve/ptc/b12_p1.png deleted file mode 100644 index 1da0768..0000000 Binary files a/textures/leisure/nature_reserve/ptc/b12_p1.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/ptc/b13_p1.png b/textures/leisure/nature_reserve/ptc/b13_p1.png deleted file mode 100644 index 55d2faa..0000000 Binary files a/textures/leisure/nature_reserve/ptc/b13_p1.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/ptc/b13_p2.png b/textures/leisure/nature_reserve/ptc/b13_p2.png deleted file mode 100644 index f944e11..0000000 Binary files a/textures/leisure/nature_reserve/ptc/b13_p2.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/ptc/b14_p1.png b/textures/leisure/nature_reserve/ptc/b14_p1.png deleted file mode 100644 index cbea942..0000000 Binary files a/textures/leisure/nature_reserve/ptc/b14_p1.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/ptc/b14_p2.png b/textures/leisure/nature_reserve/ptc/b14_p2.png deleted file mode 100644 index 0cce264..0000000 Binary files a/textures/leisure/nature_reserve/ptc/b14_p2.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/ptc/b15_p1.png b/textures/leisure/nature_reserve/ptc/b15_p1.png deleted file mode 100644 index 6c949e8..0000000 Binary files a/textures/leisure/nature_reserve/ptc/b15_p1.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/ptc/b15_p2.png b/textures/leisure/nature_reserve/ptc/b15_p2.png deleted file mode 100644 index dddbedb..0000000 Binary files a/textures/leisure/nature_reserve/ptc/b15_p2.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/ptc/b1_p1.png b/textures/leisure/nature_reserve/ptc/b1_p1.png deleted file mode 100644 index fefe94c..0000000 Binary files a/textures/leisure/nature_reserve/ptc/b1_p1.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/ptc/b2_p1.png b/textures/leisure/nature_reserve/ptc/b2_p1.png deleted file mode 100644 index 5e0e492..0000000 Binary files a/textures/leisure/nature_reserve/ptc/b2_p1.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/ptc/b3_p1.png b/textures/leisure/nature_reserve/ptc/b3_p1.png deleted file mode 100644 index 5d0eff2..0000000 Binary files a/textures/leisure/nature_reserve/ptc/b3_p1.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/ptc/b4_p1.png b/textures/leisure/nature_reserve/ptc/b4_p1.png deleted file mode 100644 index 062f5c9..0000000 Binary files a/textures/leisure/nature_reserve/ptc/b4_p1.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/ptc/b5_p1.png b/textures/leisure/nature_reserve/ptc/b5_p1.png deleted file mode 100644 index dfe70a6..0000000 Binary files a/textures/leisure/nature_reserve/ptc/b5_p1.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/ptc/b6_p1.png b/textures/leisure/nature_reserve/ptc/b6_p1.png deleted file mode 100644 index dd0a4bb..0000000 Binary files a/textures/leisure/nature_reserve/ptc/b6_p1.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/ptc/b7_p1.png b/textures/leisure/nature_reserve/ptc/b7_p1.png deleted file mode 100644 index 51fa5cc..0000000 Binary files a/textures/leisure/nature_reserve/ptc/b7_p1.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/ptc/b8_p1.png b/textures/leisure/nature_reserve/ptc/b8_p1.png deleted file mode 100644 index e0b9ef6..0000000 Binary files a/textures/leisure/nature_reserve/ptc/b8_p1.png and /dev/null differ diff --git a/textures/leisure/nature_reserve/ptc/b9_p1.png b/textures/leisure/nature_reserve/ptc/b9_p1.png deleted file mode 100644 index a1f9e31..0000000 Binary files a/textures/leisure/nature_reserve/ptc/b9_p1.png and /dev/null differ diff --git a/textures/leisure/swimming_pool/brd/b1.png b/textures/leisure/swimming_pool/brd/b1.png deleted file mode 100644 index c0d4267..0000000 Binary files a/textures/leisure/swimming_pool/brd/b1.png and /dev/null differ diff --git a/textures/leisure/swimming_pool/brd/b2.png b/textures/leisure/swimming_pool/brd/b2.png deleted file mode 100644 index acea7aa..0000000 Binary files a/textures/leisure/swimming_pool/brd/b2.png and /dev/null differ diff --git a/textures/leisure/swimming_pool/brd/b3.png b/textures/leisure/swimming_pool/brd/b3.png deleted file mode 100644 index 4cf2eed..0000000 Binary files a/textures/leisure/swimming_pool/brd/b3.png and /dev/null differ diff --git a/textures/leisure/swimming_pool/brd/b4.png b/textures/leisure/swimming_pool/brd/b4.png deleted file mode 100644 index 8bfd39e..0000000 Binary files a/textures/leisure/swimming_pool/brd/b4.png and /dev/null differ diff --git a/textures/leisure/swimming_pool/brd/b5.png b/textures/leisure/swimming_pool/brd/b5.png deleted file mode 100644 index e399fea..0000000 Binary files a/textures/leisure/swimming_pool/brd/b5.png and /dev/null differ diff --git a/textures/leisure/swimming_pool/ptc/b1_p1.png b/textures/leisure/swimming_pool/ptc/b1_p1.png deleted file mode 100644 index f883c3c..0000000 Binary files a/textures/leisure/swimming_pool/ptc/b1_p1.png and /dev/null differ diff --git a/textures/leisure/swimming_pool/ptc/b2_p1.png b/textures/leisure/swimming_pool/ptc/b2_p1.png deleted file mode 100644 index 196c988..0000000 Binary files a/textures/leisure/swimming_pool/ptc/b2_p1.png and /dev/null differ diff --git a/textures/leisure/swimming_pool/ptc/b2_p2.png b/textures/leisure/swimming_pool/ptc/b2_p2.png deleted file mode 100644 index 9395ee9..0000000 Binary files a/textures/leisure/swimming_pool/ptc/b2_p2.png and /dev/null differ diff --git a/textures/leisure/swimming_pool/ptc/b3_p1.png b/textures/leisure/swimming_pool/ptc/b3_p1.png deleted file mode 100644 index 26dc7c2..0000000 Binary files a/textures/leisure/swimming_pool/ptc/b3_p1.png and /dev/null differ diff --git a/textures/leisure/swimming_pool/ptc/b3_p2.png b/textures/leisure/swimming_pool/ptc/b3_p2.png deleted file mode 100644 index c735718..0000000 Binary files a/textures/leisure/swimming_pool/ptc/b3_p2.png and /dev/null differ diff --git a/textures/leisure/swimming_pool/ptc/b4_p1.png b/textures/leisure/swimming_pool/ptc/b4_p1.png deleted file mode 100644 index 65cbe36..0000000 Binary files a/textures/leisure/swimming_pool/ptc/b4_p1.png and /dev/null differ diff --git a/textures/leisure/swimming_pool/ptc/b4_p2.png b/textures/leisure/swimming_pool/ptc/b4_p2.png deleted file mode 100644 index cb68715..0000000 Binary files a/textures/leisure/swimming_pool/ptc/b4_p2.png and /dev/null differ diff --git a/textures/leisure/swimming_pool/ptc/b5_p1.png b/textures/leisure/swimming_pool/ptc/b5_p1.png deleted file mode 100644 index 148b8e3..0000000 Binary files a/textures/leisure/swimming_pool/ptc/b5_p1.png and /dev/null differ diff --git a/textures/leisure/swimming_pool/ptc/b5_p2.png b/textures/leisure/swimming_pool/ptc/b5_p2.png deleted file mode 100644 index 93a478a..0000000 Binary files a/textures/leisure/swimming_pool/ptc/b5_p2.png and /dev/null differ diff --git a/textures/multi_source/brd_b.png b/textures/multi_source/brd_b.png deleted file mode 100644 index c28c1e1..0000000 Binary files a/textures/multi_source/brd_b.png and /dev/null differ diff --git a/textures/multi_source/brd_l.png b/textures/multi_source/brd_l.png deleted file mode 100644 index 7d0768d..0000000 Binary files a/textures/multi_source/brd_l.png and /dev/null differ diff --git a/textures/multi_source/brd_r.png b/textures/multi_source/brd_r.png deleted file mode 100644 index d4dddf9..0000000 Binary files a/textures/multi_source/brd_r.png and /dev/null differ diff --git a/textures/multi_source/brd_t.png b/textures/multi_source/brd_t.png deleted file mode 100644 index 7436210..0000000 Binary files a/textures/multi_source/brd_t.png and /dev/null differ diff --git a/textures/natural/bare_rock/brd/b1.png b/textures/natural/bare_rock/brd/b1.png deleted file mode 100644 index a7cb6f7..0000000 Binary files a/textures/natural/bare_rock/brd/b1.png and /dev/null differ diff --git a/textures/natural/bare_rock/brd/b2.png b/textures/natural/bare_rock/brd/b2.png deleted file mode 100644 index 5bd2d3f..0000000 Binary files a/textures/natural/bare_rock/brd/b2.png and /dev/null differ diff --git a/textures/natural/bare_rock/brd/b3.png b/textures/natural/bare_rock/brd/b3.png deleted file mode 100644 index 8e84d05..0000000 Binary files a/textures/natural/bare_rock/brd/b3.png and /dev/null differ diff --git a/textures/natural/bare_rock/brd/b4.png b/textures/natural/bare_rock/brd/b4.png deleted file mode 100644 index 3e7c7e1..0000000 Binary files a/textures/natural/bare_rock/brd/b4.png and /dev/null differ diff --git a/textures/natural/bare_rock/brd/b5.png b/textures/natural/bare_rock/brd/b5.png deleted file mode 100644 index 3bd8f72..0000000 Binary files a/textures/natural/bare_rock/brd/b5.png and /dev/null differ diff --git a/textures/natural/bare_rock/brd/b6.png b/textures/natural/bare_rock/brd/b6.png deleted file mode 100644 index e3ee51e..0000000 Binary files a/textures/natural/bare_rock/brd/b6.png and /dev/null differ diff --git a/textures/natural/bare_rock/ptc/b1_p1.png b/textures/natural/bare_rock/ptc/b1_p1.png deleted file mode 100644 index f3445a6..0000000 Binary files a/textures/natural/bare_rock/ptc/b1_p1.png and /dev/null differ diff --git a/textures/natural/bare_rock/ptc/b1_p2.png b/textures/natural/bare_rock/ptc/b1_p2.png deleted file mode 100644 index 44123b3..0000000 Binary files a/textures/natural/bare_rock/ptc/b1_p2.png and /dev/null differ diff --git a/textures/natural/bare_rock/ptc/b1_p3.png b/textures/natural/bare_rock/ptc/b1_p3.png deleted file mode 100644 index f5dab0a..0000000 Binary files a/textures/natural/bare_rock/ptc/b1_p3.png and /dev/null differ diff --git a/textures/natural/bare_rock/ptc/b2_p1.png b/textures/natural/bare_rock/ptc/b2_p1.png deleted file mode 100644 index 0cfcddd..0000000 Binary files a/textures/natural/bare_rock/ptc/b2_p1.png and /dev/null differ diff --git a/textures/natural/bare_rock/ptc/b2_p2.png b/textures/natural/bare_rock/ptc/b2_p2.png deleted file mode 100644 index 5b6aa05..0000000 Binary files a/textures/natural/bare_rock/ptc/b2_p2.png and /dev/null differ diff --git a/textures/natural/bare_rock/ptc/b2_p3.png b/textures/natural/bare_rock/ptc/b2_p3.png deleted file mode 100644 index 5248f35..0000000 Binary files a/textures/natural/bare_rock/ptc/b2_p3.png and /dev/null differ diff --git a/textures/natural/bare_rock/ptc/b3_p1.png b/textures/natural/bare_rock/ptc/b3_p1.png deleted file mode 100644 index 15c79d7..0000000 Binary files a/textures/natural/bare_rock/ptc/b3_p1.png and /dev/null differ diff --git a/textures/natural/bare_rock/ptc/b3_p2.png b/textures/natural/bare_rock/ptc/b3_p2.png deleted file mode 100644 index df45bec..0000000 Binary files a/textures/natural/bare_rock/ptc/b3_p2.png and /dev/null differ diff --git a/textures/natural/bare_rock/ptc/b3_p3.png b/textures/natural/bare_rock/ptc/b3_p3.png deleted file mode 100644 index cbb2488..0000000 Binary files a/textures/natural/bare_rock/ptc/b3_p3.png and /dev/null differ diff --git a/textures/natural/bare_rock/ptc/b4_p1.png b/textures/natural/bare_rock/ptc/b4_p1.png deleted file mode 100644 index cdf6ce2..0000000 Binary files a/textures/natural/bare_rock/ptc/b4_p1.png and /dev/null differ diff --git a/textures/natural/bare_rock/ptc/b4_p2.png b/textures/natural/bare_rock/ptc/b4_p2.png deleted file mode 100644 index 12d8c27..0000000 Binary files a/textures/natural/bare_rock/ptc/b4_p2.png and /dev/null differ diff --git a/textures/natural/bare_rock/ptc/b4_p3.png b/textures/natural/bare_rock/ptc/b4_p3.png deleted file mode 100644 index 96e0b44..0000000 Binary files a/textures/natural/bare_rock/ptc/b4_p3.png and /dev/null differ diff --git a/textures/natural/bare_rock/ptc/b5_p1.png b/textures/natural/bare_rock/ptc/b5_p1.png deleted file mode 100644 index dd0c6b8..0000000 Binary files a/textures/natural/bare_rock/ptc/b5_p1.png and /dev/null differ diff --git a/textures/natural/bare_rock/ptc/b5_p2.png b/textures/natural/bare_rock/ptc/b5_p2.png deleted file mode 100644 index a5a8b03..0000000 Binary files a/textures/natural/bare_rock/ptc/b5_p2.png and /dev/null differ diff --git a/textures/natural/bare_rock/ptc/b5_p3.png b/textures/natural/bare_rock/ptc/b5_p3.png deleted file mode 100644 index 3e82a63..0000000 Binary files a/textures/natural/bare_rock/ptc/b5_p3.png and /dev/null differ diff --git a/textures/natural/bare_rock/ptc/b6_p1.png b/textures/natural/bare_rock/ptc/b6_p1.png deleted file mode 100644 index e2ab70a..0000000 Binary files a/textures/natural/bare_rock/ptc/b6_p1.png and /dev/null differ diff --git a/textures/natural/bare_rock/ptc/b6_p2.png b/textures/natural/bare_rock/ptc/b6_p2.png deleted file mode 100644 index 53b67d0..0000000 Binary files a/textures/natural/bare_rock/ptc/b6_p2.png and /dev/null differ diff --git a/textures/natural/bare_rock/ptc/b6_p3.png b/textures/natural/bare_rock/ptc/b6_p3.png deleted file mode 100644 index 65fad6e..0000000 Binary files a/textures/natural/bare_rock/ptc/b6_p3.png and /dev/null differ diff --git a/textures/natural/beach/brd/b1.png b/textures/natural/beach/brd/b1.png deleted file mode 100644 index 965a339..0000000 Binary files a/textures/natural/beach/brd/b1.png and /dev/null differ diff --git a/textures/natural/beach/ptc/b1_p1.png b/textures/natural/beach/ptc/b1_p1.png deleted file mode 100644 index f49cc85..0000000 Binary files a/textures/natural/beach/ptc/b1_p1.png and /dev/null differ diff --git a/textures/natural/beach/ptc/b1_p2.png b/textures/natural/beach/ptc/b1_p2.png deleted file mode 100644 index 48098d9..0000000 Binary files a/textures/natural/beach/ptc/b1_p2.png and /dev/null differ diff --git a/textures/natural/desert/brd/b1.png b/textures/natural/desert/brd/b1.png deleted file mode 100644 index d6b6de4..0000000 Binary files a/textures/natural/desert/brd/b1.png and /dev/null differ diff --git a/textures/natural/desert/ptc/b1_p1.png b/textures/natural/desert/ptc/b1_p1.png deleted file mode 100644 index 2864548..0000000 Binary files a/textures/natural/desert/ptc/b1_p1.png and /dev/null differ diff --git a/textures/natural/desert/ptc/b1_p2.png b/textures/natural/desert/ptc/b1_p2.png deleted file mode 100644 index ea426ed..0000000 Binary files a/textures/natural/desert/ptc/b1_p2.png and /dev/null differ diff --git a/textures/natural/grassland/brd/b1.png b/textures/natural/grassland/brd/b1.png deleted file mode 100644 index e140282..0000000 Binary files a/textures/natural/grassland/brd/b1.png and /dev/null differ diff --git a/textures/natural/grassland/brd/b2.png b/textures/natural/grassland/brd/b2.png deleted file mode 100644 index 3358762..0000000 Binary files a/textures/natural/grassland/brd/b2.png and /dev/null differ diff --git a/textures/natural/grassland/brd/b3.png b/textures/natural/grassland/brd/b3.png deleted file mode 100644 index a3254af..0000000 Binary files a/textures/natural/grassland/brd/b3.png and /dev/null differ diff --git a/textures/natural/grassland/brd/b4.png b/textures/natural/grassland/brd/b4.png deleted file mode 100644 index 82d5839..0000000 Binary files a/textures/natural/grassland/brd/b4.png and /dev/null differ diff --git a/textures/natural/grassland/brd/b5.png b/textures/natural/grassland/brd/b5.png deleted file mode 100644 index 9630292..0000000 Binary files a/textures/natural/grassland/brd/b5.png and /dev/null differ diff --git a/textures/natural/grassland/ptc/b1_p1.png b/textures/natural/grassland/ptc/b1_p1.png deleted file mode 100644 index d97b974..0000000 Binary files a/textures/natural/grassland/ptc/b1_p1.png and /dev/null differ diff --git a/textures/natural/grassland/ptc/b2_p1.png b/textures/natural/grassland/ptc/b2_p1.png deleted file mode 100644 index a68bb51..0000000 Binary files a/textures/natural/grassland/ptc/b2_p1.png and /dev/null differ diff --git a/textures/natural/grassland/ptc/b2_p2.png b/textures/natural/grassland/ptc/b2_p2.png deleted file mode 100644 index a8edf6c..0000000 Binary files a/textures/natural/grassland/ptc/b2_p2.png and /dev/null differ diff --git a/textures/natural/grassland/ptc/b3_p1.png b/textures/natural/grassland/ptc/b3_p1.png deleted file mode 100644 index a6c0506..0000000 Binary files a/textures/natural/grassland/ptc/b3_p1.png and /dev/null differ diff --git a/textures/natural/grassland/ptc/b3_p2.png b/textures/natural/grassland/ptc/b3_p2.png deleted file mode 100644 index dc31e0f..0000000 Binary files a/textures/natural/grassland/ptc/b3_p2.png and /dev/null differ diff --git a/textures/natural/grassland/ptc/b4_p1.png b/textures/natural/grassland/ptc/b4_p1.png deleted file mode 100644 index 4195505..0000000 Binary files a/textures/natural/grassland/ptc/b4_p1.png and /dev/null differ diff --git a/textures/natural/grassland/ptc/b4_p2.png b/textures/natural/grassland/ptc/b4_p2.png deleted file mode 100644 index 46e31ae..0000000 Binary files a/textures/natural/grassland/ptc/b4_p2.png and /dev/null differ diff --git a/textures/natural/grassland/ptc/b5_p1.png b/textures/natural/grassland/ptc/b5_p1.png deleted file mode 100644 index 6349358..0000000 Binary files a/textures/natural/grassland/ptc/b5_p1.png and /dev/null differ diff --git a/textures/natural/grassland/ptc/b5_p2.png b/textures/natural/grassland/ptc/b5_p2.png deleted file mode 100644 index e09374f..0000000 Binary files a/textures/natural/grassland/ptc/b5_p2.png and /dev/null differ diff --git a/textures/natural/heath/brd/b1.png b/textures/natural/heath/brd/b1.png deleted file mode 100644 index 8601724..0000000 Binary files a/textures/natural/heath/brd/b1.png and /dev/null differ diff --git a/textures/natural/heath/brd/b2.png b/textures/natural/heath/brd/b2.png deleted file mode 100644 index ce02400..0000000 Binary files a/textures/natural/heath/brd/b2.png and /dev/null differ diff --git a/textures/natural/heath/brd/b3.png b/textures/natural/heath/brd/b3.png deleted file mode 100644 index 3929e84..0000000 Binary files a/textures/natural/heath/brd/b3.png and /dev/null differ diff --git a/textures/natural/heath/ptc/b1_p1.png b/textures/natural/heath/ptc/b1_p1.png deleted file mode 100644 index f8f8aa1..0000000 Binary files a/textures/natural/heath/ptc/b1_p1.png and /dev/null differ diff --git a/textures/natural/heath/ptc/b1_p2.png b/textures/natural/heath/ptc/b1_p2.png deleted file mode 100644 index e8f5677..0000000 Binary files a/textures/natural/heath/ptc/b1_p2.png and /dev/null differ diff --git a/textures/natural/heath/ptc/b2_p1.png b/textures/natural/heath/ptc/b2_p1.png deleted file mode 100644 index 1b2d7eb..0000000 Binary files a/textures/natural/heath/ptc/b2_p1.png and /dev/null differ diff --git a/textures/natural/heath/ptc/b2_p2.png b/textures/natural/heath/ptc/b2_p2.png deleted file mode 100644 index d973b09..0000000 Binary files a/textures/natural/heath/ptc/b2_p2.png and /dev/null differ diff --git a/textures/natural/heath/ptc/b3_p1.png b/textures/natural/heath/ptc/b3_p1.png deleted file mode 100644 index bebe284..0000000 Binary files a/textures/natural/heath/ptc/b3_p1.png and /dev/null differ diff --git a/textures/natural/heath/ptc/b3_p2.png b/textures/natural/heath/ptc/b3_p2.png deleted file mode 100644 index 7f77d9f..0000000 Binary files a/textures/natural/heath/ptc/b3_p2.png and /dev/null differ diff --git a/textures/natural/sand/brd/b1.png b/textures/natural/sand/brd/b1.png deleted file mode 100644 index ea862ab..0000000 Binary files a/textures/natural/sand/brd/b1.png and /dev/null differ diff --git a/textures/natural/sand/ptc/b1_p1.png b/textures/natural/sand/ptc/b1_p1.png deleted file mode 100644 index 764ea78..0000000 Binary files a/textures/natural/sand/ptc/b1_p1.png and /dev/null differ diff --git a/textures/natural/sand/ptc/b1_p2.png b/textures/natural/sand/ptc/b1_p2.png deleted file mode 100644 index 43355ab..0000000 Binary files a/textures/natural/sand/ptc/b1_p2.png and /dev/null differ diff --git a/textures/natural/scree/brd/b1.png b/textures/natural/scree/brd/b1.png deleted file mode 100644 index 08d807e..0000000 Binary files a/textures/natural/scree/brd/b1.png and /dev/null differ diff --git a/textures/natural/scree/ptc/b1_p1.png b/textures/natural/scree/ptc/b1_p1.png deleted file mode 100644 index 4f27f1b..0000000 Binary files a/textures/natural/scree/ptc/b1_p1.png and /dev/null differ diff --git a/textures/natural/scrub/brd/b1.png b/textures/natural/scrub/brd/b1.png deleted file mode 100644 index 42b4d35..0000000 Binary files a/textures/natural/scrub/brd/b1.png and /dev/null differ diff --git a/textures/natural/scrub/brd/b2.png b/textures/natural/scrub/brd/b2.png deleted file mode 100644 index d217c8a..0000000 Binary files a/textures/natural/scrub/brd/b2.png and /dev/null differ diff --git a/textures/natural/scrub/brd/b3.png b/textures/natural/scrub/brd/b3.png deleted file mode 100644 index b7da5f5..0000000 Binary files a/textures/natural/scrub/brd/b3.png and /dev/null differ diff --git a/textures/natural/scrub/brd/b4.png b/textures/natural/scrub/brd/b4.png deleted file mode 100644 index 5956dea..0000000 Binary files a/textures/natural/scrub/brd/b4.png and /dev/null differ diff --git a/textures/natural/scrub/brd/b5.png b/textures/natural/scrub/brd/b5.png deleted file mode 100644 index 601db3f..0000000 Binary files a/textures/natural/scrub/brd/b5.png and /dev/null differ diff --git a/textures/natural/scrub/ptc/b1_p1.png b/textures/natural/scrub/ptc/b1_p1.png deleted file mode 100644 index 7ca77d7..0000000 Binary files a/textures/natural/scrub/ptc/b1_p1.png and /dev/null differ diff --git a/textures/natural/scrub/ptc/b1_p2.png b/textures/natural/scrub/ptc/b1_p2.png deleted file mode 100644 index 9159bec..0000000 Binary files a/textures/natural/scrub/ptc/b1_p2.png and /dev/null differ diff --git a/textures/natural/scrub/ptc/b2_p1.png b/textures/natural/scrub/ptc/b2_p1.png deleted file mode 100644 index f927243..0000000 Binary files a/textures/natural/scrub/ptc/b2_p1.png and /dev/null differ diff --git a/textures/natural/scrub/ptc/b2_p2.png b/textures/natural/scrub/ptc/b2_p2.png deleted file mode 100644 index e0e2fd4..0000000 Binary files a/textures/natural/scrub/ptc/b2_p2.png and /dev/null differ diff --git a/textures/natural/scrub/ptc/b3_p1.png b/textures/natural/scrub/ptc/b3_p1.png deleted file mode 100644 index 36dabf8..0000000 Binary files a/textures/natural/scrub/ptc/b3_p1.png and /dev/null differ diff --git a/textures/natural/scrub/ptc/b3_p2.png b/textures/natural/scrub/ptc/b3_p2.png deleted file mode 100644 index d94f012..0000000 Binary files a/textures/natural/scrub/ptc/b3_p2.png and /dev/null differ diff --git a/textures/natural/scrub/ptc/b4_p1.png b/textures/natural/scrub/ptc/b4_p1.png deleted file mode 100644 index e77c5c2..0000000 Binary files a/textures/natural/scrub/ptc/b4_p1.png and /dev/null differ diff --git a/textures/natural/scrub/ptc/b4_p2.png b/textures/natural/scrub/ptc/b4_p2.png deleted file mode 100644 index 1122ba0..0000000 Binary files a/textures/natural/scrub/ptc/b4_p2.png and /dev/null differ diff --git a/textures/natural/scrub/ptc/b5_p1.png b/textures/natural/scrub/ptc/b5_p1.png deleted file mode 100644 index 97a37d0..0000000 Binary files a/textures/natural/scrub/ptc/b5_p1.png and /dev/null differ diff --git a/textures/natural/scrub/ptc/b5_p2.png b/textures/natural/scrub/ptc/b5_p2.png deleted file mode 100644 index c5aeeb8..0000000 Binary files a/textures/natural/scrub/ptc/b5_p2.png and /dev/null differ diff --git a/textures/natural/sea/brd/b1.png b/textures/natural/sea/brd/b1.png deleted file mode 100644 index 835fffb..0000000 Binary files a/textures/natural/sea/brd/b1.png and /dev/null differ diff --git a/textures/natural/sea/ptc/b1_p1.png b/textures/natural/sea/ptc/b1_p1.png deleted file mode 100644 index 734016b..0000000 Binary files a/textures/natural/sea/ptc/b1_p1.png and /dev/null differ diff --git a/textures/natural/water/brd/b1.png b/textures/natural/water/brd/b1.png deleted file mode 100644 index c0d4267..0000000 Binary files a/textures/natural/water/brd/b1.png and /dev/null differ diff --git a/textures/natural/water/brd/b2.png b/textures/natural/water/brd/b2.png deleted file mode 100644 index acea7aa..0000000 Binary files a/textures/natural/water/brd/b2.png and /dev/null differ diff --git a/textures/natural/water/brd/b3.png b/textures/natural/water/brd/b3.png deleted file mode 100644 index 4cf2eed..0000000 Binary files a/textures/natural/water/brd/b3.png and /dev/null differ diff --git a/textures/natural/water/brd/b4.png b/textures/natural/water/brd/b4.png deleted file mode 100644 index 8bfd39e..0000000 Binary files a/textures/natural/water/brd/b4.png and /dev/null differ diff --git a/textures/natural/water/brd/b5.png b/textures/natural/water/brd/b5.png deleted file mode 100644 index e399fea..0000000 Binary files a/textures/natural/water/brd/b5.png and /dev/null differ diff --git a/textures/natural/water/normal_template.png b/textures/natural/water/normal_template.png deleted file mode 100644 index 249134e..0000000 Binary files a/textures/natural/water/normal_template.png and /dev/null differ diff --git a/textures/natural/water/ptc/b1_p1.png b/textures/natural/water/ptc/b1_p1.png deleted file mode 100644 index f883c3c..0000000 Binary files a/textures/natural/water/ptc/b1_p1.png and /dev/null differ diff --git a/textures/natural/water/ptc/b2_p1.png b/textures/natural/water/ptc/b2_p1.png deleted file mode 100644 index 196c988..0000000 Binary files a/textures/natural/water/ptc/b2_p1.png and /dev/null differ diff --git a/textures/natural/water/ptc/b2_p2.png b/textures/natural/water/ptc/b2_p2.png deleted file mode 100644 index 9395ee9..0000000 Binary files a/textures/natural/water/ptc/b2_p2.png and /dev/null differ diff --git a/textures/natural/water/ptc/b3_p1.png b/textures/natural/water/ptc/b3_p1.png deleted file mode 100644 index 26dc7c2..0000000 Binary files a/textures/natural/water/ptc/b3_p1.png and /dev/null differ diff --git a/textures/natural/water/ptc/b3_p2.png b/textures/natural/water/ptc/b3_p2.png deleted file mode 100644 index c735718..0000000 Binary files a/textures/natural/water/ptc/b3_p2.png and /dev/null differ diff --git a/textures/natural/water/ptc/b4_p1.png b/textures/natural/water/ptc/b4_p1.png deleted file mode 100644 index 65cbe36..0000000 Binary files a/textures/natural/water/ptc/b4_p1.png and /dev/null differ diff --git a/textures/natural/water/ptc/b4_p2.png b/textures/natural/water/ptc/b4_p2.png deleted file mode 100644 index cb68715..0000000 Binary files a/textures/natural/water/ptc/b4_p2.png and /dev/null differ diff --git a/textures/natural/water/ptc/b5_p1.png b/textures/natural/water/ptc/b5_p1.png deleted file mode 100644 index 148b8e3..0000000 Binary files a/textures/natural/water/ptc/b5_p1.png and /dev/null differ diff --git a/textures/natural/water/ptc/b5_p2.png b/textures/natural/water/ptc/b5_p2.png deleted file mode 100644 index 93a478a..0000000 Binary files a/textures/natural/water/ptc/b5_p2.png and /dev/null differ diff --git a/textures/natural/wetland/brd/b1.png b/textures/natural/wetland/brd/b1.png deleted file mode 100644 index f49e3ac..0000000 Binary files a/textures/natural/wetland/brd/b1.png and /dev/null differ diff --git a/textures/natural/wetland/ptc/b1_p1.png b/textures/natural/wetland/ptc/b1_p1.png deleted file mode 100644 index 8b52e4c..0000000 Binary files a/textures/natural/wetland/ptc/b1_p1.png and /dev/null differ diff --git a/textures/natural/wetland/ptc/b1_p2.png b/textures/natural/wetland/ptc/b1_p2.png deleted file mode 100644 index a1ef145..0000000 Binary files a/textures/natural/wetland/ptc/b1_p2.png and /dev/null differ diff --git a/textures/natural/wood/_backup/p1.png b/textures/natural/wood/_backup/p1.png deleted file mode 100644 index 9d38c8a..0000000 Binary files a/textures/natural/wood/_backup/p1.png and /dev/null differ diff --git a/textures/natural/wood/_backup/p10.png b/textures/natural/wood/_backup/p10.png deleted file mode 100644 index 5f1b7f1..0000000 Binary files a/textures/natural/wood/_backup/p10.png and /dev/null differ diff --git a/textures/natural/wood/_backup/p11.png b/textures/natural/wood/_backup/p11.png deleted file mode 100644 index eb7c69e..0000000 Binary files a/textures/natural/wood/_backup/p11.png and /dev/null differ diff --git a/textures/natural/wood/_backup/p12.png b/textures/natural/wood/_backup/p12.png deleted file mode 100644 index 3a5f488..0000000 Binary files a/textures/natural/wood/_backup/p12.png and /dev/null differ diff --git a/textures/natural/wood/_backup/p13.png b/textures/natural/wood/_backup/p13.png deleted file mode 100644 index d2a9ab7..0000000 Binary files a/textures/natural/wood/_backup/p13.png and /dev/null differ diff --git a/textures/natural/wood/_backup/p14.png b/textures/natural/wood/_backup/p14.png deleted file mode 100644 index ad5f56e..0000000 Binary files a/textures/natural/wood/_backup/p14.png and /dev/null differ diff --git a/textures/natural/wood/_backup/p15.png b/textures/natural/wood/_backup/p15.png deleted file mode 100644 index 47bf6c0..0000000 Binary files a/textures/natural/wood/_backup/p15.png and /dev/null differ diff --git a/textures/natural/wood/_backup/p16.png b/textures/natural/wood/_backup/p16.png deleted file mode 100644 index afccbbf..0000000 Binary files a/textures/natural/wood/_backup/p16.png and /dev/null differ diff --git a/textures/natural/wood/_backup/p17.png b/textures/natural/wood/_backup/p17.png deleted file mode 100644 index 579210f..0000000 Binary files a/textures/natural/wood/_backup/p17.png and /dev/null differ diff --git a/textures/natural/wood/_backup/p18.png b/textures/natural/wood/_backup/p18.png deleted file mode 100644 index 08282d2..0000000 Binary files a/textures/natural/wood/_backup/p18.png and /dev/null differ diff --git a/textures/natural/wood/_backup/p19.png b/textures/natural/wood/_backup/p19.png deleted file mode 100644 index c63ee01..0000000 Binary files a/textures/natural/wood/_backup/p19.png and /dev/null differ diff --git a/textures/natural/wood/_backup/p2.png b/textures/natural/wood/_backup/p2.png deleted file mode 100644 index eecf41e..0000000 Binary files a/textures/natural/wood/_backup/p2.png and /dev/null differ diff --git a/textures/natural/wood/_backup/p20.png b/textures/natural/wood/_backup/p20.png deleted file mode 100644 index aa0c221..0000000 Binary files a/textures/natural/wood/_backup/p20.png and /dev/null differ diff --git a/textures/natural/wood/_backup/p3.png b/textures/natural/wood/_backup/p3.png deleted file mode 100644 index abe9965..0000000 Binary files a/textures/natural/wood/_backup/p3.png and /dev/null differ diff --git a/textures/natural/wood/_backup/p4.png b/textures/natural/wood/_backup/p4.png deleted file mode 100644 index ba3ddae..0000000 Binary files a/textures/natural/wood/_backup/p4.png and /dev/null differ diff --git a/textures/natural/wood/_backup/p5.png b/textures/natural/wood/_backup/p5.png deleted file mode 100644 index 58e1a89..0000000 Binary files a/textures/natural/wood/_backup/p5.png and /dev/null differ diff --git a/textures/natural/wood/_backup/p6.png b/textures/natural/wood/_backup/p6.png deleted file mode 100644 index d5c48a6..0000000 Binary files a/textures/natural/wood/_backup/p6.png and /dev/null differ diff --git a/textures/natural/wood/_backup/p7.png b/textures/natural/wood/_backup/p7.png deleted file mode 100644 index 989c96e..0000000 Binary files a/textures/natural/wood/_backup/p7.png and /dev/null differ diff --git a/textures/natural/wood/_backup/p8.png b/textures/natural/wood/_backup/p8.png deleted file mode 100644 index 69e624a..0000000 Binary files a/textures/natural/wood/_backup/p8.png and /dev/null differ diff --git a/textures/natural/wood/_backup/p9.png b/textures/natural/wood/_backup/p9.png deleted file mode 100644 index e85f860..0000000 Binary files a/textures/natural/wood/_backup/p9.png and /dev/null differ diff --git a/textures/natural/wood/brd/b1.png b/textures/natural/wood/brd/b1.png deleted file mode 100644 index 67e60fe..0000000 Binary files a/textures/natural/wood/brd/b1.png and /dev/null differ diff --git a/textures/natural/wood/brd/b10.png b/textures/natural/wood/brd/b10.png deleted file mode 100644 index 7bd3df3..0000000 Binary files a/textures/natural/wood/brd/b10.png and /dev/null differ diff --git a/textures/natural/wood/brd/b11.png b/textures/natural/wood/brd/b11.png deleted file mode 100644 index 8472950..0000000 Binary files a/textures/natural/wood/brd/b11.png and /dev/null differ diff --git a/textures/natural/wood/brd/b12.png b/textures/natural/wood/brd/b12.png deleted file mode 100644 index f605106..0000000 Binary files a/textures/natural/wood/brd/b12.png and /dev/null differ diff --git a/textures/natural/wood/brd/b13.png b/textures/natural/wood/brd/b13.png deleted file mode 100644 index da8a1f5..0000000 Binary files a/textures/natural/wood/brd/b13.png and /dev/null differ diff --git a/textures/natural/wood/brd/b14.png b/textures/natural/wood/brd/b14.png deleted file mode 100644 index 301459d..0000000 Binary files a/textures/natural/wood/brd/b14.png and /dev/null differ diff --git a/textures/natural/wood/brd/b15.png b/textures/natural/wood/brd/b15.png deleted file mode 100644 index eafa74d..0000000 Binary files a/textures/natural/wood/brd/b15.png and /dev/null differ diff --git a/textures/natural/wood/brd/b2.png b/textures/natural/wood/brd/b2.png deleted file mode 100644 index fa50e2e..0000000 Binary files a/textures/natural/wood/brd/b2.png and /dev/null differ diff --git a/textures/natural/wood/brd/b3.png b/textures/natural/wood/brd/b3.png deleted file mode 100644 index 59cf2fa..0000000 Binary files a/textures/natural/wood/brd/b3.png and /dev/null differ diff --git a/textures/natural/wood/brd/b4.png b/textures/natural/wood/brd/b4.png deleted file mode 100644 index 051b3e9..0000000 Binary files a/textures/natural/wood/brd/b4.png and /dev/null differ diff --git a/textures/natural/wood/brd/b5.png b/textures/natural/wood/brd/b5.png deleted file mode 100644 index 6dff1d2..0000000 Binary files a/textures/natural/wood/brd/b5.png and /dev/null differ diff --git a/textures/natural/wood/brd/b6.png b/textures/natural/wood/brd/b6.png deleted file mode 100644 index 75f685c..0000000 Binary files a/textures/natural/wood/brd/b6.png and /dev/null differ diff --git a/textures/natural/wood/brd/b7.png b/textures/natural/wood/brd/b7.png deleted file mode 100644 index 6218426..0000000 Binary files a/textures/natural/wood/brd/b7.png and /dev/null differ diff --git a/textures/natural/wood/brd/b8.png b/textures/natural/wood/brd/b8.png deleted file mode 100644 index 073d5f2..0000000 Binary files a/textures/natural/wood/brd/b8.png and /dev/null differ diff --git a/textures/natural/wood/brd/b9.png b/textures/natural/wood/brd/b9.png deleted file mode 100644 index b7b955d..0000000 Binary files a/textures/natural/wood/brd/b9.png and /dev/null differ diff --git a/textures/natural/wood/ptc/b10_p1.png b/textures/natural/wood/ptc/b10_p1.png deleted file mode 100644 index 26b15f5..0000000 Binary files a/textures/natural/wood/ptc/b10_p1.png and /dev/null differ diff --git a/textures/natural/wood/ptc/b11_p1.png b/textures/natural/wood/ptc/b11_p1.png deleted file mode 100644 index c8e9251..0000000 Binary files a/textures/natural/wood/ptc/b11_p1.png and /dev/null differ diff --git a/textures/natural/wood/ptc/b12_p1.png b/textures/natural/wood/ptc/b12_p1.png deleted file mode 100644 index 1da0768..0000000 Binary files a/textures/natural/wood/ptc/b12_p1.png and /dev/null differ diff --git a/textures/natural/wood/ptc/b13_p1.png b/textures/natural/wood/ptc/b13_p1.png deleted file mode 100644 index 55d2faa..0000000 Binary files a/textures/natural/wood/ptc/b13_p1.png and /dev/null differ diff --git a/textures/natural/wood/ptc/b13_p2.png b/textures/natural/wood/ptc/b13_p2.png deleted file mode 100644 index f944e11..0000000 Binary files a/textures/natural/wood/ptc/b13_p2.png and /dev/null differ diff --git a/textures/natural/wood/ptc/b14_p1.png b/textures/natural/wood/ptc/b14_p1.png deleted file mode 100644 index cbea942..0000000 Binary files a/textures/natural/wood/ptc/b14_p1.png and /dev/null differ diff --git a/textures/natural/wood/ptc/b14_p2.png b/textures/natural/wood/ptc/b14_p2.png deleted file mode 100644 index 0cce264..0000000 Binary files a/textures/natural/wood/ptc/b14_p2.png and /dev/null differ diff --git a/textures/natural/wood/ptc/b15_p1.png b/textures/natural/wood/ptc/b15_p1.png deleted file mode 100644 index 6c949e8..0000000 Binary files a/textures/natural/wood/ptc/b15_p1.png and /dev/null differ diff --git a/textures/natural/wood/ptc/b15_p2.png b/textures/natural/wood/ptc/b15_p2.png deleted file mode 100644 index dddbedb..0000000 Binary files a/textures/natural/wood/ptc/b15_p2.png and /dev/null differ diff --git a/textures/natural/wood/ptc/b1_p1.png b/textures/natural/wood/ptc/b1_p1.png deleted file mode 100644 index fefe94c..0000000 Binary files a/textures/natural/wood/ptc/b1_p1.png and /dev/null differ diff --git a/textures/natural/wood/ptc/b2_p1.png b/textures/natural/wood/ptc/b2_p1.png deleted file mode 100644 index 5e0e492..0000000 Binary files a/textures/natural/wood/ptc/b2_p1.png and /dev/null differ diff --git a/textures/natural/wood/ptc/b3_p1.png b/textures/natural/wood/ptc/b3_p1.png deleted file mode 100644 index 5d0eff2..0000000 Binary files a/textures/natural/wood/ptc/b3_p1.png and /dev/null differ diff --git a/textures/natural/wood/ptc/b4_p1.png b/textures/natural/wood/ptc/b4_p1.png deleted file mode 100644 index 062f5c9..0000000 Binary files a/textures/natural/wood/ptc/b4_p1.png and /dev/null differ diff --git a/textures/natural/wood/ptc/b5_p1.png b/textures/natural/wood/ptc/b5_p1.png deleted file mode 100644 index dfe70a6..0000000 Binary files a/textures/natural/wood/ptc/b5_p1.png and /dev/null differ diff --git a/textures/natural/wood/ptc/b6_p1.png b/textures/natural/wood/ptc/b6_p1.png deleted file mode 100644 index dd0a4bb..0000000 Binary files a/textures/natural/wood/ptc/b6_p1.png and /dev/null differ diff --git a/textures/natural/wood/ptc/b7_p1.png b/textures/natural/wood/ptc/b7_p1.png deleted file mode 100644 index 51fa5cc..0000000 Binary files a/textures/natural/wood/ptc/b7_p1.png and /dev/null differ diff --git a/textures/natural/wood/ptc/b8_p1.png b/textures/natural/wood/ptc/b8_p1.png deleted file mode 100644 index e0b9ef6..0000000 Binary files a/textures/natural/wood/ptc/b8_p1.png and /dev/null differ diff --git a/textures/natural/wood/ptc/b9_p1.png b/textures/natural/wood/ptc/b9_p1.png deleted file mode 100644 index a1f9e31..0000000 Binary files a/textures/natural/wood/ptc/b9_p1.png and /dev/null differ diff --git a/textures/tile/completion (copy 1)/p1.png b/textures/tile/completion (copy 1)/p1.png deleted file mode 100644 index 6d66ed3..0000000 Binary files a/textures/tile/completion (copy 1)/p1.png and /dev/null differ diff --git a/textures/tile/completion (copy 1)/p10.png b/textures/tile/completion (copy 1)/p10.png deleted file mode 100644 index 9e009a7..0000000 Binary files a/textures/tile/completion (copy 1)/p10.png and /dev/null differ diff --git a/textures/tile/completion (copy 1)/p11.png b/textures/tile/completion (copy 1)/p11.png deleted file mode 100644 index fe11e15..0000000 Binary files a/textures/tile/completion (copy 1)/p11.png and /dev/null differ diff --git a/textures/tile/completion (copy 1)/p12.png b/textures/tile/completion (copy 1)/p12.png deleted file mode 100644 index 92bd3bb..0000000 Binary files a/textures/tile/completion (copy 1)/p12.png and /dev/null differ diff --git a/textures/tile/completion (copy 1)/p13.png b/textures/tile/completion (copy 1)/p13.png deleted file mode 100644 index bc6f542..0000000 Binary files a/textures/tile/completion (copy 1)/p13.png and /dev/null differ diff --git a/textures/tile/completion (copy 1)/p2.png b/textures/tile/completion (copy 1)/p2.png deleted file mode 100644 index 94f682b..0000000 Binary files a/textures/tile/completion (copy 1)/p2.png and /dev/null differ diff --git a/textures/tile/completion (copy 1)/p3.png b/textures/tile/completion (copy 1)/p3.png deleted file mode 100644 index fad29a5..0000000 Binary files a/textures/tile/completion (copy 1)/p3.png and /dev/null differ diff --git a/textures/tile/completion (copy 1)/p4.png b/textures/tile/completion (copy 1)/p4.png deleted file mode 100644 index 41c9393..0000000 Binary files a/textures/tile/completion (copy 1)/p4.png and /dev/null differ diff --git a/textures/tile/completion (copy 1)/p5.png b/textures/tile/completion (copy 1)/p5.png deleted file mode 100644 index 6860ab4..0000000 Binary files a/textures/tile/completion (copy 1)/p5.png and /dev/null differ diff --git a/textures/tile/completion (copy 1)/p6.png b/textures/tile/completion (copy 1)/p6.png deleted file mode 100644 index 2053872..0000000 Binary files a/textures/tile/completion (copy 1)/p6.png and /dev/null differ diff --git a/textures/tile/completion (copy 1)/p7.png b/textures/tile/completion (copy 1)/p7.png deleted file mode 100644 index b54bfe4..0000000 Binary files a/textures/tile/completion (copy 1)/p7.png and /dev/null differ diff --git a/textures/tile/completion (copy 1)/p8.png b/textures/tile/completion (copy 1)/p8.png deleted file mode 100644 index a21d1a1..0000000 Binary files a/textures/tile/completion (copy 1)/p8.png and /dev/null differ diff --git a/textures/tile/completion (copy 1)/p9.png b/textures/tile/completion (copy 1)/p9.png deleted file mode 100644 index bbf7f3c..0000000 Binary files a/textures/tile/completion (copy 1)/p9.png and /dev/null differ diff --git a/textures/tile/completion/p1.png b/textures/tile/completion/p1.png deleted file mode 100644 index bb74a13..0000000 Binary files a/textures/tile/completion/p1.png and /dev/null differ diff --git a/textures/tile/completion/p10.png b/textures/tile/completion/p10.png deleted file mode 100644 index 8455604..0000000 Binary files a/textures/tile/completion/p10.png and /dev/null differ diff --git a/textures/tile/completion/p11.png b/textures/tile/completion/p11.png deleted file mode 100644 index e191f8c..0000000 Binary files a/textures/tile/completion/p11.png and /dev/null differ diff --git a/textures/tile/completion/p12.png b/textures/tile/completion/p12.png deleted file mode 100644 index 0801196..0000000 Binary files a/textures/tile/completion/p12.png and /dev/null differ diff --git a/textures/tile/completion/p13.png b/textures/tile/completion/p13.png deleted file mode 100644 index ba7138e..0000000 Binary files a/textures/tile/completion/p13.png and /dev/null differ diff --git a/textures/tile/completion/p2.png b/textures/tile/completion/p2.png deleted file mode 100644 index 3228676..0000000 Binary files a/textures/tile/completion/p2.png and /dev/null differ diff --git a/textures/tile/completion/p3.png b/textures/tile/completion/p3.png deleted file mode 100644 index 0cbf6dc..0000000 Binary files a/textures/tile/completion/p3.png and /dev/null differ diff --git a/textures/tile/completion/p4.png b/textures/tile/completion/p4.png deleted file mode 100644 index f18127f..0000000 Binary files a/textures/tile/completion/p4.png and /dev/null differ diff --git a/textures/tile/completion/p5.png b/textures/tile/completion/p5.png deleted file mode 100644 index 33dae49..0000000 Binary files a/textures/tile/completion/p5.png and /dev/null differ diff --git a/textures/tile/completion/p6.png b/textures/tile/completion/p6.png deleted file mode 100644 index c463460..0000000 Binary files a/textures/tile/completion/p6.png and /dev/null differ diff --git a/textures/tile/completion/p7.png b/textures/tile/completion/p7.png deleted file mode 100644 index 51be831..0000000 Binary files a/textures/tile/completion/p7.png and /dev/null differ diff --git a/textures/tile/completion/p8.png b/textures/tile/completion/p8.png deleted file mode 100644 index 7eb0211..0000000 Binary files a/textures/tile/completion/p8.png and /dev/null differ diff --git a/textures/tile/completion/p9.png b/textures/tile/completion/p9.png deleted file mode 100644 index b9b5a70..0000000 Binary files a/textures/tile/completion/p9.png and /dev/null differ diff --git a/textures/water/lake/brd/b1.png b/textures/water/lake/brd/b1.png deleted file mode 100644 index c0d4267..0000000 Binary files a/textures/water/lake/brd/b1.png and /dev/null differ diff --git a/textures/water/lake/brd/b2.png b/textures/water/lake/brd/b2.png deleted file mode 100644 index acea7aa..0000000 Binary files a/textures/water/lake/brd/b2.png and /dev/null differ diff --git a/textures/water/lake/brd/b3.png b/textures/water/lake/brd/b3.png deleted file mode 100644 index 4cf2eed..0000000 Binary files a/textures/water/lake/brd/b3.png and /dev/null differ diff --git a/textures/water/lake/brd/b4.png b/textures/water/lake/brd/b4.png deleted file mode 100644 index 8bfd39e..0000000 Binary files a/textures/water/lake/brd/b4.png and /dev/null differ diff --git a/textures/water/lake/brd/b5.png b/textures/water/lake/brd/b5.png deleted file mode 100644 index e399fea..0000000 Binary files a/textures/water/lake/brd/b5.png and /dev/null differ diff --git a/textures/water/lake/ptc/b1_p1.png b/textures/water/lake/ptc/b1_p1.png deleted file mode 100644 index f883c3c..0000000 Binary files a/textures/water/lake/ptc/b1_p1.png and /dev/null differ diff --git a/textures/water/lake/ptc/b2_p1.png b/textures/water/lake/ptc/b2_p1.png deleted file mode 100644 index 196c988..0000000 Binary files a/textures/water/lake/ptc/b2_p1.png and /dev/null differ diff --git a/textures/water/lake/ptc/b2_p2.png b/textures/water/lake/ptc/b2_p2.png deleted file mode 100644 index 9395ee9..0000000 Binary files a/textures/water/lake/ptc/b2_p2.png and /dev/null differ diff --git a/textures/water/lake/ptc/b3_p1.png b/textures/water/lake/ptc/b3_p1.png deleted file mode 100644 index 26dc7c2..0000000 Binary files a/textures/water/lake/ptc/b3_p1.png and /dev/null differ diff --git a/textures/water/lake/ptc/b3_p2.png b/textures/water/lake/ptc/b3_p2.png deleted file mode 100644 index c735718..0000000 Binary files a/textures/water/lake/ptc/b3_p2.png and /dev/null differ diff --git a/textures/water/lake/ptc/b4_p1.png b/textures/water/lake/ptc/b4_p1.png deleted file mode 100644 index 65cbe36..0000000 Binary files a/textures/water/lake/ptc/b4_p1.png and /dev/null differ diff --git a/textures/water/lake/ptc/b4_p2.png b/textures/water/lake/ptc/b4_p2.png deleted file mode 100644 index cb68715..0000000 Binary files a/textures/water/lake/ptc/b4_p2.png and /dev/null differ diff --git a/textures/water/lake/ptc/b5_p1.png b/textures/water/lake/ptc/b5_p1.png deleted file mode 100644 index 148b8e3..0000000 Binary files a/textures/water/lake/ptc/b5_p1.png and /dev/null differ diff --git a/textures/water/lake/ptc/b5_p2.png b/textures/water/lake/ptc/b5_p2.png deleted file mode 100644 index 93a478a..0000000 Binary files a/textures/water/lake/ptc/b5_p2.png and /dev/null differ diff --git a/textures/water/pond/brd/b1.png b/textures/water/pond/brd/b1.png deleted file mode 100644 index c0d4267..0000000 Binary files a/textures/water/pond/brd/b1.png and /dev/null differ diff --git a/textures/water/pond/brd/b2.png b/textures/water/pond/brd/b2.png deleted file mode 100644 index acea7aa..0000000 Binary files a/textures/water/pond/brd/b2.png and /dev/null differ diff --git a/textures/water/pond/brd/b3.png b/textures/water/pond/brd/b3.png deleted file mode 100644 index 4cf2eed..0000000 Binary files a/textures/water/pond/brd/b3.png and /dev/null differ diff --git a/textures/water/pond/brd/b4.png b/textures/water/pond/brd/b4.png deleted file mode 100644 index 8bfd39e..0000000 Binary files a/textures/water/pond/brd/b4.png and /dev/null differ diff --git a/textures/water/pond/brd/b5.png b/textures/water/pond/brd/b5.png deleted file mode 100644 index e399fea..0000000 Binary files a/textures/water/pond/brd/b5.png and /dev/null differ diff --git a/textures/water/pond/ptc/b1_p1.png b/textures/water/pond/ptc/b1_p1.png deleted file mode 100644 index f883c3c..0000000 Binary files a/textures/water/pond/ptc/b1_p1.png and /dev/null differ diff --git a/textures/water/pond/ptc/b2_p1.png b/textures/water/pond/ptc/b2_p1.png deleted file mode 100644 index 196c988..0000000 Binary files a/textures/water/pond/ptc/b2_p1.png and /dev/null differ diff --git a/textures/water/pond/ptc/b2_p2.png b/textures/water/pond/ptc/b2_p2.png deleted file mode 100644 index 9395ee9..0000000 Binary files a/textures/water/pond/ptc/b2_p2.png and /dev/null differ diff --git a/textures/water/pond/ptc/b3_p1.png b/textures/water/pond/ptc/b3_p1.png deleted file mode 100644 index 26dc7c2..0000000 Binary files a/textures/water/pond/ptc/b3_p1.png and /dev/null differ diff --git a/textures/water/pond/ptc/b3_p2.png b/textures/water/pond/ptc/b3_p2.png deleted file mode 100644 index c735718..0000000 Binary files a/textures/water/pond/ptc/b3_p2.png and /dev/null differ diff --git a/textures/water/pond/ptc/b4_p1.png b/textures/water/pond/ptc/b4_p1.png deleted file mode 100644 index 65cbe36..0000000 Binary files a/textures/water/pond/ptc/b4_p1.png and /dev/null differ diff --git a/textures/water/pond/ptc/b4_p2.png b/textures/water/pond/ptc/b4_p2.png deleted file mode 100644 index cb68715..0000000 Binary files a/textures/water/pond/ptc/b4_p2.png and /dev/null differ diff --git a/textures/water/pond/ptc/b5_p1.png b/textures/water/pond/ptc/b5_p1.png deleted file mode 100644 index 148b8e3..0000000 Binary files a/textures/water/pond/ptc/b5_p1.png and /dev/null differ diff --git a/textures/water/pond/ptc/b5_p2.png b/textures/water/pond/ptc/b5_p2.png deleted file mode 100644 index 93a478a..0000000 Binary files a/textures/water/pond/ptc/b5_p2.png and /dev/null differ diff --git a/textures/water/river/brd/b1.png b/textures/water/river/brd/b1.png deleted file mode 100644 index c0d4267..0000000 Binary files a/textures/water/river/brd/b1.png and /dev/null differ diff --git a/textures/water/river/brd/b2.png b/textures/water/river/brd/b2.png deleted file mode 100644 index acea7aa..0000000 Binary files a/textures/water/river/brd/b2.png and /dev/null differ diff --git a/textures/water/river/brd/b3.png b/textures/water/river/brd/b3.png deleted file mode 100644 index 4cf2eed..0000000 Binary files a/textures/water/river/brd/b3.png and /dev/null differ diff --git a/textures/water/river/brd/b4.png b/textures/water/river/brd/b4.png deleted file mode 100644 index 8bfd39e..0000000 Binary files a/textures/water/river/brd/b4.png and /dev/null differ diff --git a/textures/water/river/brd/b5.png b/textures/water/river/brd/b5.png deleted file mode 100644 index e399fea..0000000 Binary files a/textures/water/river/brd/b5.png and /dev/null differ diff --git a/textures/water/river/ptc/b1_p1.png b/textures/water/river/ptc/b1_p1.png deleted file mode 100644 index f883c3c..0000000 Binary files a/textures/water/river/ptc/b1_p1.png and /dev/null differ diff --git a/textures/water/river/ptc/b2_p1.png b/textures/water/river/ptc/b2_p1.png deleted file mode 100644 index 196c988..0000000 Binary files a/textures/water/river/ptc/b2_p1.png and /dev/null differ diff --git a/textures/water/river/ptc/b2_p2.png b/textures/water/river/ptc/b2_p2.png deleted file mode 100644 index 9395ee9..0000000 Binary files a/textures/water/river/ptc/b2_p2.png and /dev/null differ diff --git a/textures/water/river/ptc/b3_p1.png b/textures/water/river/ptc/b3_p1.png deleted file mode 100644 index 26dc7c2..0000000 Binary files a/textures/water/river/ptc/b3_p1.png and /dev/null differ diff --git a/textures/water/river/ptc/b3_p2.png b/textures/water/river/ptc/b3_p2.png deleted file mode 100644 index c735718..0000000 Binary files a/textures/water/river/ptc/b3_p2.png and /dev/null differ diff --git a/textures/water/river/ptc/b4_p1.png b/textures/water/river/ptc/b4_p1.png deleted file mode 100644 index 65cbe36..0000000 Binary files a/textures/water/river/ptc/b4_p1.png and /dev/null differ diff --git a/textures/water/river/ptc/b4_p2.png b/textures/water/river/ptc/b4_p2.png deleted file mode 100644 index cb68715..0000000 Binary files a/textures/water/river/ptc/b4_p2.png and /dev/null differ diff --git a/textures/water/river/ptc/b5_p1.png b/textures/water/river/ptc/b5_p1.png deleted file mode 100644 index 148b8e3..0000000 Binary files a/textures/water/river/ptc/b5_p1.png and /dev/null differ diff --git a/textures/water/river/ptc/b5_p2.png b/textures/water/river/ptc/b5_p2.png deleted file mode 100644 index 93a478a..0000000 Binary files a/textures/water/river/ptc/b5_p2.png and /dev/null differ