├── requirements.txt ├── dragon.png ├── icon.png ├── logo.png ├── imgs ├── brush.png ├── eraser.png ├── fill.png └── eyedropper.png ├── README.md ├── install_requirements.py ├── pyint.py ├── LICENSE └── dragon.txt /requirements.txt: -------------------------------------------------------------------------------- 1 | pygame 2 | -------------------------------------------------------------------------------- /dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakunutmaz/Pyint_Pixel-Painter/HEAD/dragon.png -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakunutmaz/Pyint_Pixel-Painter/HEAD/icon.png -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakunutmaz/Pyint_Pixel-Painter/HEAD/logo.png -------------------------------------------------------------------------------- /imgs/brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakunutmaz/Pyint_Pixel-Painter/HEAD/imgs/brush.png -------------------------------------------------------------------------------- /imgs/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakunutmaz/Pyint_Pixel-Painter/HEAD/imgs/eraser.png -------------------------------------------------------------------------------- /imgs/fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakunutmaz/Pyint_Pixel-Painter/HEAD/imgs/fill.png -------------------------------------------------------------------------------- /imgs/eyedropper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakunutmaz/Pyint_Pixel-Painter/HEAD/imgs/eyedropper.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Pyint_Pixel-Painter 2 | Pyint by Burak 3 | 4 | A 64x64 Pixel art drawing program made in Python, Pygame. 5 | A variety of colors, 126 colors to be specific. First palette has 96 and the second one has 30. 6 | The tools: 7 | * Brush tool: 8 | Normal brush tool to draw and paint with adjustable size 9 | * Eraser tool: 10 | Normal eraser tool to erase with adjustable eraser size 11 | -- If you keep pressing right click, as you draw, your selected tool becomes the eraser. 12 | * Fill tool: 13 | Fills any empty closed space with your selected color. Using the recursive flood fill algorithm. 14 | * Color Picker tool (Eyedropper): 15 | Lets you pick the color in the canvas from a single pixel. 16 | 17 | Added a "dragon.txt" and "dragon.png", one of my artworks in my program. To test that everything worked fine. 18 | 19 | # Hotkeys 20 | Hotkeys: 21 | * CTRL + Z : Undoes your last (and only last) adjustment. 22 | * CTRL + Space : Deletes your layer (Not undoable) 23 | * CTRL + S : Saves your work. Same as "save as". 24 | * B : Select brush tool. 25 | * E : Select eraser tool. 26 | * G : Select fill tool. 27 | * I : Select color picker / eyedropper tool. 28 | * Right Click : Your selected tool becomes the eraser -until you release the button-. 29 | * 1 and 2 : Change between the color palettes faster. 30 | 31 | # Requirements 32 | Modules: 33 | * Python 3.x 34 | * Pygame 35 | * Tkinter 36 | -------------------------------------------------------------------------------- /install_requirements.py: -------------------------------------------------------------------------------- 1 | import subprocess 2 | import sys 3 | import get_pip 4 | import os 5 | import importlib 6 | import contextlib 7 | 8 | 9 | def install(package): 10 | ''' 11 | installs a package using pip 12 | :param package: string 13 | ''' 14 | subprocess.call([sys.executable, "-m", "pip", "install", package]) 15 | 16 | 17 | required = [] 18 | failed = [] 19 | 20 | # Try to open reqirements.txt file and read all required packages 21 | try: 22 | file = open("requirements.txt", "r") 23 | file_lines = file.readlines() 24 | required = [line.strip().lower() for line in file_lines] 25 | file.close() 26 | except FileNotFoundError: 27 | print("[ERROR] No requiremnts.txt file found") 28 | 29 | if len(required) > 0: 30 | print("[INPUT] You are about to install", len(required), "packages, would you like to proceed (y/n):", end=" ") 31 | ans = input() 32 | 33 | if ans.lower() == "y": 34 | for package in required: 35 | try: 36 | print("[LOG] Looking for", package) 37 | with contextlib.redirect_stdout(None): 38 | __import__(package) 39 | print("[LOG]", package, "is already installed, skipping...") 40 | except ImportError: 41 | print("[LOG]", package, "not installed") 42 | 43 | try: 44 | print("[LOG] Trying to install", package, "via pip") 45 | try: 46 | import pip 47 | except: 48 | print("[EXCEPTION] Pip is not installed") 49 | print("[LOG] Trying to install pip") 50 | get_pip.main() 51 | print("[LOG] Pip has been installed") 52 | 53 | print("[LOG] Installing", package) 54 | install(package) 55 | with contextlib.redirect_stdout(None): 56 | __import__(package) 57 | print("[LOG]", package, "has been installed") 58 | except Exception as e: 59 | print("[ERROR] Could not install", package, "-", e) 60 | failed.append(package) 61 | 62 | else: 63 | print("[STOP] Operation terminated by user") 64 | else: 65 | print("[LOG] No packages to install") 66 | 67 | if len(failed) > 0: 68 | print("[FAILED]", len(failed), "package(s) were not installed. Failed package install(s):", end=" ") 69 | for x, package in enumerate(failed): 70 | if x != len(failed) - 1: 71 | print(package, end=",") 72 | else: 73 | print(package) -------------------------------------------------------------------------------- /pyint.py: -------------------------------------------------------------------------------- 1 | #################################################################### 2 | # Pyint by Burak 3 | # 3.09.2019 4 | # 5 | # pyint.py file (MAIN PROGRAM) 6 | # Description: A 64x64 pixel painter program made in python pygame 7 | #################################################################### 8 | 9 | try: 10 | import pygame as pg 11 | from tkinter import * 12 | from tkinter import messagebox 13 | from tkinter.filedialog import askopenfilename, asksaveasfilename 14 | except: 15 | import install_requirements 16 | import pygame as pg 17 | from tkinter import * 18 | from tkinter import messagebox 19 | from tkinter.filedialog import askopenfilename, asksaveasfilename 20 | import sys 21 | 22 | 23 | sys.setrecursionlimit(10000) 24 | pg.init() 25 | 26 | sw, sh = 960, 850 27 | sc = (sw//2, sh//2) 28 | screen = pg.display.set_mode((sw, sh)) 29 | pg.display.set_caption("Pyint by Burak") 30 | pg.display.set_icon(pg.image.load("icon.png")) 31 | 32 | fillImage = pg.transform.scale(pg.image.load("imgs/fill.png"), (40,40)) 33 | brushImage = pg.transform.scale(pg.image.load("imgs/brush.png"), (25,25)) 34 | eraserImage = pg.transform.scale(pg.image.load("imgs/eraser.png"), (25,25)) 35 | dropperImage = pg.transform.scale(pg.image.load("imgs/eyedropper.png"), (30,30)) 36 | 37 | def Remap(oldlow, oldhigh, newlow, newhigh, value): 38 | oldRange = (oldhigh - oldlow) 39 | newRange = (newhigh - newlow) 40 | newVal = (((value - oldlow) * newRange) / oldRange) + newlow 41 | return newVal 42 | 43 | 44 | def draw_walls(): 45 | wall_color = (50,50,50) 46 | wall_thickness = 4 47 | 48 | pg.draw.rect(screen, (150,150,150), (g1.xCount * g1.cellSize, 0, sw - g1.xCount * g1.cellSize, g1.yCount*g1.cellSize)) 49 | pg.draw.rect(screen, (80,80,80), (0, g1.xCount * g1.cellSize, sw, sh-g1.yCount*g1.cellSize)) 50 | 51 | pg.draw.rect(screen, wall_color, (g1.xCount * g1.cellSize, 0, wall_thickness, g1.yCount*g1.cellSize)) 52 | pg.draw.rect(screen, wall_color, (0, g1.yCount*g1.cellSize-wall_thickness, sw, wall_thickness)) 53 | 54 | pg.draw.rect(screen, wall_color, (0, 0, sw, wall_thickness)) 55 | pg.draw.rect(screen, wall_color, (sw-wall_thickness, 0, wall_thickness, sh)) 56 | pg.draw.rect(screen, wall_color, (0, 0, wall_thickness, sh)) 57 | pg.draw.rect(screen, wall_color, (0, sh - wall_thickness, sw, wall_thickness)) 58 | 59 | 60 | class Cell(object): 61 | 62 | def __init__(self, size, color=[0, 0, 0]): 63 | self.size = size 64 | self.color = color 65 | self.subsurface = pg.Surface((self.size,self.size)) 66 | self.subsurface.fill(self.color) 67 | self.pos = (0, 0) 68 | 69 | def change_color(self, color): 70 | self.color = color 71 | self.subsurface.fill(self.color) 72 | 73 | def Draw(self, win, x, y): 74 | self.pos = (x, y) 75 | win.blit(self.subsurface, self.pos) 76 | 77 | 78 | class Grid(object): 79 | def __init__(self, xc, yc, csize, x, y, color=[255, 255, 255]): 80 | self.xCount = xc 81 | self.yCount = yc 82 | self.cellSize = csize 83 | self.pos = (x, y) 84 | self.color = color 85 | self.grid = [] 86 | self.undoList = [[], []] 87 | 88 | for i in range(self.xCount): 89 | self.grid.append([]) 90 | self.undoList[0].append([]) 91 | self.undoList[1].append([]) 92 | for j in range(self.yCount): 93 | self.grid[i].append(Cell(self.cellSize, self.color)) 94 | self.undoList[0][i].append(self.color) 95 | self.undoList[1][i].append(self.color) 96 | 97 | def Draw(self, win): 98 | for i in range(self.xCount): 99 | for j in range(self.yCount): 100 | self.grid[i][j].Draw(win, self.pos[0]+(self.cellSize*i), self.pos[1]+(self.cellSize*j)) 101 | 102 | def change_color(self, posx, posy, color): 103 | self.grid[posy][posx].change_color(color) 104 | 105 | def clean(self): 106 | for i in range(self.xCount): 107 | for j in range(self.yCount): 108 | self.grid[i][j].change_color(self.color) 109 | 110 | 111 | 112 | class Button(object): 113 | active = False 114 | clicked = False 115 | rollOver = False 116 | 117 | def __init__(self, posX, posY, width, height, color, text="Button", type=1, fontSize=25, fontColor=(0, 0, 0)): 118 | self.pos = [posX, posY] 119 | self.drawPos = self.pos.copy() 120 | self.width, self.height = width, height 121 | self.color = color 122 | self.text, self.fontSize, self.fontColor = text, fontSize, fontColor 123 | self.type = type 124 | self.subsurface = pg.Surface((self.width, self.height)) 125 | self.subsurface.fill(self.color) 126 | self.font = pg.font.SysFont(None, self.fontSize) 127 | self.mes = self.font.render(self.text, True, self.fontColor) 128 | self.slideVal = 0 129 | 130 | def Draw(self, win, val=-1): 131 | if self.type == 1: 132 | if self.rollOver and not self.clicked: 133 | self.subsurface.set_alpha(100) 134 | else: 135 | self.subsurface.set_alpha(150) 136 | 137 | if self.clicked: 138 | self.subsurface.set_alpha(255) 139 | 140 | win.blit(self.subsurface, self.pos) 141 | self.subsurface.blit(self.mes, (15, self.height/3)) 142 | elif self.type == 2: 143 | self.slideVal = Remap(-60,60,1,5,(self.pos[0]- self.drawPos[0])) 144 | pg.draw.rect(screen, (190,190,190), (self.drawPos[0]-100, self.drawPos[1]-30, 168, 60)) 145 | pg.draw.rect(screen, (140,140,140), (self.drawPos[0]-60, self.drawPos[1]+self.height/3, 120, self.height/2)) 146 | pg.draw.rect(screen, (220,220,220), (self.drawPos[0]-90, self.drawPos[1]+1, 20, 20)) 147 | self.valMes = self.font.render(str(val), True, (30,30,30)) 148 | win.blit(self.valMes, (self.drawPos[0]-85, self.drawPos[1]+3)) 149 | win.blit(self.subsurface, (self.pos[0]-self.width/2, self.pos[1])) 150 | win.blit(self.mes, (self.drawPos[0]-90, self.drawPos[1]-25)) 151 | 152 | logo = pg.transform.scale(pg.image.load("logo.png"), (280,70)) 153 | 154 | colors1 = [[0, 0, 0], [24,24,24], [48,48,48], [64,64,64], [128,128,128],[155,155,155],[200,200,200],[255,255,255], 155 | [27,38,49],[40,55,71],[46,64,83],[52,73,94],[93,109,126],[133,146,158],[174,182,191],[214,219,223], 156 | [77,86,86],[95,106,106],[113,125,126],[149,165,166],[170,183,184],[191,201,202],[213,219,219],[229,232,232], 157 | [98,101,103],[121,125,127],[144,148,151],[189,195,199],[202,207,210],[229,231,233],[248,249,249],[255,255,255], 158 | [100,30,22],[123,36,28],[146,43,33],[192,57,43],[205,97,85],[217,136,128],[230,176,170],[242,215,213], 159 | [120,40,31],[148,49,38],[176,58,46],[220,76,60],[236,112,99],[241,148,138],[245,183,177],[250,219,216], 160 | [74,35,90],[91,44,111],[108,52,131],[142,68,173],[165,105,189],[187,143,206],[210,180,222],[232,218,239], 161 | [21,67,96],[26,82,118],[31,97,141],[41,128,185],[84,153,199],[127,179,213],[169,204,227],[212,230,241], 162 | [20,90,50],[25,111,61],[34,141,84],[34,174,96],[82,190,128],[125,206,160],[169,223,191],[212,239,223], 163 | [125,102,8],[154,125,10],[183,149,11],[230,196,15],[244,208,63],[247,220,111],[249,231,159],[252,243,207], 164 | [126,81,9],[156,100,12],[185,119,14],[242,156,18],[245,176,65],[248,196,113],[250,215,160],[253,235,208], 165 | [110,44,0],[135,54,0],[160,64,0],[211,84,0],[220,118,51],[229,152,102],[237,187,153],[246,221,204] 166 | ] 167 | 168 | colors2 = [[241,157,154],[241,179,164],[246,209,190],[252,225,213],[242,193,173],[241,175,153], #Skins 169 | [128,232,221],[124,194,246],[175,129,228],[231,132,186],[249,193,160],[183,246,175], # Soft Hues 170 | [100,93,62],[130,123,92],[156,151,115],[86,113,80],[46,71,43],[16,42,10], # Forest 171 | [252,120,150],[193,107,188],[152,89,197],[108,66,196],[85,56,193],[30,171,215], # Sunset 172 | [92,58,42],[121,84,63],[172,138,104],[200,173,139],[223,213,191],[206,159,85]] # Coffee 173 | 174 | colorCells1 = [] 175 | colorCells2 = [] 176 | for color in colors1: 177 | colorCells1.append(Cell(20, color)) 178 | 179 | for color in colors2: 180 | colorCells2.append(Cell(25, color)) 181 | 182 | colorTitleFont = pg.font.SysFont(None, 25) 183 | colorTitle = colorTitleFont.render("Color Palette", True, (50,50,50)) 184 | 185 | colorScheme = 1 186 | colorFont = pg.font.SysFont(None, 22) 187 | colorTexts = [colorFont.render("Skin", True, (50,50,50)), colorFont.render("Soft Hues", True, (50,50,50)), 188 | colorFont.render("Forest", True, (50, 50, 50)), colorFont.render("Sunset", True, (50,50,50)), 189 | colorFont.render("Coffee", True, (50, 50, 50))] 190 | 191 | 192 | g1 = Grid(64, 64, 12, 0, 0, [255, 255, 255]) 193 | save_b = Button(20,790,80,40, (100, 100, 100), "Save", 1, 24, (255,255,255)) 194 | load_b = Button(110,790,80,40, (100, 100, 100), "Load", 1, 24, (255,255,255)) 195 | export_b = Button(200,790,80,40, (100, 100, 100), "Export", 1, 24, (255,255,255)) 196 | SL_Buttons = [save_b, load_b, export_b] 197 | 198 | S_brushSize = Button(880, 305, 10,20, (240,240,240), "Brush Size", 2) 199 | S_eraserSize = Button(880, 225, 10,20, (240,240,240), "Eraser Size", 2) 200 | S_buttons = [S_brushSize, S_eraserSize] 201 | 202 | B_penTool = Button(825, 60, 30, 30, (80,80,80), "", 1) 203 | B_eraserTool = Button(875, 60, 30, 30, (80,80,80), "", 1) 204 | B_fillTool = Button(825, 110, 30, 30, (80,80,80), "", 1) 205 | B_eyeDropper = Button(875, 110, 30, 30, (80,80,80), "", 1) 206 | 207 | B_Buttons = [B_penTool, B_eraserTool, B_fillTool, B_eyeDropper] 208 | 209 | P_number1 = Button(900, 380, 15,15, (80,80,80), "") 210 | P_number1.clicked = True 211 | P_number2 = Button(920, 380, 15,15, (80,80,80), "") 212 | P_Buttons = [P_number1, P_number2] 213 | 214 | fileFont = pg.font.SysFont(None, 30) 215 | nameSurface = pg.Surface((370,40)) 216 | nameSurface.fill(pg.Color("White")) 217 | fileName = "unnamed" 218 | 219 | selectedTool = 0 220 | selectedToolBefore = 0 221 | 222 | colorUsing = [128, 30, 30] 223 | selectedColor = [128,30,30] 224 | clicking = False 225 | penSize = 3 226 | eraserSize = 3 227 | 228 | round = -1 229 | clock = pg.time.Clock() 230 | holdingCTRL = False 231 | undoed = False 232 | mouseRelPosX = 0 233 | mouseRelPosY = 0 234 | 235 | positions1 = [] 236 | positions2 = [] 237 | visitedFillPositions = [] 238 | 239 | i = 0 240 | j = 0 241 | for color in colorCells1: 242 | positions1.append((784 + i * 20, 405 + j * 25)) 243 | i += 1 244 | if i >= 8: 245 | i = 0 246 | j += 1 247 | 248 | i = 0 249 | j = 0 250 | for color in colorCells2: 251 | positions2.append((789 + i * 25, 430 + j * 55)) 252 | i += 1 253 | if i >= 6: 254 | i = 0 255 | j += 1 256 | 257 | 258 | def draw_palette(scheme): 259 | screen.blit(colorTitle, (779, 380)) 260 | pg.draw.rect(screen, (200, 200, 200), (779, 400, 170, 350)) 261 | 262 | if scheme == 1: 263 | for i, color in enumerate(colorCells1): 264 | screen.blit(color.subsurface, positions1[i]) 265 | elif scheme == 2: 266 | for i, color in enumerate(colorCells2): 267 | screen.blit(color.subsurface, positions2[i]) 268 | 269 | for t, text in enumerate(colorTexts): 270 | screen.blit(text, (positions2[t * 6][0], positions2[t * 6][1] - 18)) 271 | 272 | pg.draw.rect(screen, (235, 235, 235), (positions1[-1][0] - 82, positions1[-1][1] + 27, 35, 35)) 273 | pg.draw.rect(screen, colorUsing, (positions1[-1][0] - 76, positions1[-1][1] + 33, 23, 23)) 274 | 275 | 276 | def paint(var): 277 | global mouseRelPosX, mouseRelPosY 278 | if var == 0: 279 | sizeToDraw = penSize 280 | elif var == 1: 281 | sizeToDraw = eraserSize 282 | 283 | 284 | if sizeToDraw == 1: 285 | mouseRelPosX = max(penSize - 1, min(g1.xCount - 1, int(Remap(0, (g1.cellSize * g1.xCount), 0, g1.xCount, pg.mouse.get_pos()[0])))) 286 | mouseRelPosY = max(penSize - 1, min(g1.yCount - 1, int(Remap(0, (g1.cellSize * g1.yCount), 0, g1.yCount, pg.mouse.get_pos()[1])))) 287 | g1.change_color(mouseRelPosY, mouseRelPosX, colorUsing) 288 | if sizeToDraw == 2: 289 | mouseRelPosX = max(penSize - 1, min(g1.xCount - 2, int(Remap(0, (g1.cellSize * g1.xCount), 0, g1.xCount, pg.mouse.get_pos()[0])))) 290 | mouseRelPosY = max(penSize - 1, min(g1.yCount - 2, int(Remap(0, (g1.cellSize * g1.yCount), 0, g1.yCount, pg.mouse.get_pos()[1])))) 291 | g1.change_color(mouseRelPosY, mouseRelPosX, colorUsing) 292 | g1.change_color(mouseRelPosY - 1, mouseRelPosX, colorUsing) 293 | g1.change_color(mouseRelPosY, mouseRelPosX - 1, colorUsing) 294 | g1.change_color(mouseRelPosY, mouseRelPosX + 1, colorUsing) 295 | g1.change_color(mouseRelPosY + 1, mouseRelPosX, colorUsing) 296 | if sizeToDraw == 3: 297 | mouseRelPosX = max(penSize - 2, min(g1.xCount - 2, int(Remap(0, (g1.cellSize * g1.xCount), 0, g1.xCount, pg.mouse.get_pos()[0])))) 298 | mouseRelPosY = max(penSize - 2, min(g1.yCount - 2, int(Remap(0, (g1.cellSize * g1.yCount), 0, g1.yCount, pg.mouse.get_pos()[1])))) 299 | g1.change_color(mouseRelPosY, mouseRelPosX, colorUsing) 300 | g1.change_color(mouseRelPosY - 1, mouseRelPosX, colorUsing) 301 | g1.change_color(mouseRelPosY, mouseRelPosX - 1, colorUsing) 302 | g1.change_color(mouseRelPosY, mouseRelPosX + 1, colorUsing) 303 | g1.change_color(mouseRelPosY + 1, mouseRelPosX, colorUsing) 304 | g1.change_color(mouseRelPosY + 1, mouseRelPosX + 1, colorUsing) 305 | g1.change_color(mouseRelPosY - 1, mouseRelPosX - 1, colorUsing) 306 | g1.change_color(mouseRelPosY - 1, mouseRelPosX + 1, colorUsing) 307 | g1.change_color(mouseRelPosY + 1, mouseRelPosX - 1, colorUsing) 308 | if sizeToDraw == 4: 309 | mouseRelPosX = max(penSize - 2, min(g1.xCount - 3, int(Remap(0, (g1.cellSize * g1.xCount), 0, g1.xCount, pg.mouse.get_pos()[0])))) 310 | mouseRelPosY = max(penSize - 2, min(g1.yCount - 3, int(Remap(0, (g1.cellSize * g1.yCount), 0, g1.yCount, pg.mouse.get_pos()[1])))) 311 | g1.change_color(mouseRelPosY, mouseRelPosX, colorUsing) 312 | g1.change_color(mouseRelPosY - 1, mouseRelPosX, colorUsing) 313 | g1.change_color(mouseRelPosY, mouseRelPosX - 1, colorUsing) 314 | g1.change_color(mouseRelPosY, mouseRelPosX + 1, colorUsing) 315 | g1.change_color(mouseRelPosY + 1, mouseRelPosX, colorUsing) 316 | g1.change_color(mouseRelPosY + 1, mouseRelPosX + 1, colorUsing) 317 | g1.change_color(mouseRelPosY - 1, mouseRelPosX - 1, colorUsing) 318 | g1.change_color(mouseRelPosY - 1, mouseRelPosX + 1, colorUsing) 319 | g1.change_color(mouseRelPosY + 1, mouseRelPosX - 1, colorUsing) 320 | g1.change_color(mouseRelPosY, mouseRelPosX - 2, colorUsing) 321 | g1.change_color(mouseRelPosY, mouseRelPosX + 2, colorUsing) 322 | g1.change_color(mouseRelPosY + 2, mouseRelPosX, colorUsing) 323 | g1.change_color(mouseRelPosY - 2, mouseRelPosX, colorUsing) 324 | if sizeToDraw == 5: 325 | mouseRelPosX = max(penSize - 3, min(g1.xCount - 3, int(Remap(0, (g1.cellSize * g1.xCount), 0, g1.xCount, pg.mouse.get_pos()[0])))) 326 | mouseRelPosY = max(penSize - 3, min(g1.yCount - 3, int(Remap(0, (g1.cellSize * g1.yCount), 0, g1.yCount, pg.mouse.get_pos()[1])))) 327 | g1.change_color(mouseRelPosY, mouseRelPosX, colorUsing) 328 | g1.change_color(mouseRelPosY - 1, mouseRelPosX, colorUsing) 329 | g1.change_color(mouseRelPosY, mouseRelPosX - 1, colorUsing) 330 | g1.change_color(mouseRelPosY, mouseRelPosX + 1, colorUsing) 331 | g1.change_color(mouseRelPosY + 1, mouseRelPosX, colorUsing) 332 | g1.change_color(mouseRelPosY + 1, mouseRelPosX + 1, colorUsing) 333 | g1.change_color(mouseRelPosY - 1, mouseRelPosX - 1, colorUsing) 334 | g1.change_color(mouseRelPosY - 1, mouseRelPosX + 1, colorUsing) 335 | g1.change_color(mouseRelPosY + 1, mouseRelPosX - 1, colorUsing) 336 | g1.change_color(mouseRelPosY, mouseRelPosX - 2, colorUsing) 337 | g1.change_color(mouseRelPosY + 1, mouseRelPosX - 2, colorUsing) 338 | g1.change_color(mouseRelPosY + 2, mouseRelPosX - 2, colorUsing) 339 | g1.change_color(mouseRelPosY - 1, mouseRelPosX - 2, colorUsing) 340 | g1.change_color(mouseRelPosY - 2, mouseRelPosX - 2, colorUsing) 341 | g1.change_color(mouseRelPosY, mouseRelPosX + 2, colorUsing) 342 | g1.change_color(mouseRelPosY + 1, mouseRelPosX + 2, colorUsing) 343 | g1.change_color(mouseRelPosY + 2, mouseRelPosX + 2, colorUsing) 344 | g1.change_color(mouseRelPosY - 1, mouseRelPosX + 2, colorUsing) 345 | g1.change_color(mouseRelPosY - 2, mouseRelPosX + 2, colorUsing) 346 | g1.change_color(mouseRelPosY + 2, mouseRelPosX, colorUsing) 347 | g1.change_color(mouseRelPosY + 2, mouseRelPosX - 1, colorUsing) 348 | g1.change_color(mouseRelPosY + 2, mouseRelPosX + 1, colorUsing) 349 | g1.change_color(mouseRelPosY - 2, mouseRelPosX, colorUsing) 350 | g1.change_color(mouseRelPosY - 2, mouseRelPosX - 1, colorUsing) 351 | g1.change_color(mouseRelPosY - 2, mouseRelPosX + 1, colorUsing) 352 | 353 | 354 | def neighbours(x,y): 355 | return [[x+1,y],[x-1,y],[x,y+1],[x,y-1]] 356 | 357 | 358 | def fill(gridObject, posX, posY, colorNow, fillColor): 359 | 360 | if posX < 0 or posY < 0: 361 | 362 | return 363 | if posX >= gridObject.xCount or posY >= gridObject.yCount: 364 | 365 | return 366 | if gridObject.grid[posX][posY].color != colorNow: 367 | return 368 | if [posX, posY] in visitedFillPositions: 369 | return 370 | 371 | 372 | visitedFillPositions.append([posX, posY]) 373 | gridObject.change_color(posY, posX, fillColor) 374 | moves = neighbours(posX, posY) 375 | for move in moves: 376 | fill(gridObject, move[0], move[1], colorNow, fillColor) 377 | 378 | 379 | def tool_activate(toolIndex): 380 | global colorUsing 381 | if toolIndex == 0: 382 | colorUsing = selectedColor.copy() 383 | if toolIndex == 1: 384 | colorUsing = g1.color.copy() 385 | if toolIndex == 2: 386 | colorUsing = selectedColor.copy() 387 | if toolIndex == 3: 388 | colorUsing = selectedColor.copy() 389 | 390 | 391 | def Capture(display,name,pos,size): # (pygame Surface, String, tuple, tuple) 392 | image = pg.Surface(size) # Create image surface 393 | image.blit(display,(0,0),(pos,size)) # Blit portion of the display to the image 394 | pg.image.save(image,name) # Save the image to the disk 395 | 396 | 397 | def FileManager(var): 398 | global fileExtension 399 | window = Tk() 400 | window.withdraw() 401 | if var != 2: 402 | availableFormats = [("Windows Text File", "*.txt")] 403 | else: 404 | availableFormats = [("Portable Network Graphics", "*.png")] 405 | 406 | if var == 0: 407 | filename = askopenfilename(title="Open File", filetypes=availableFormats) 408 | elif var == 1: 409 | filename = asksaveasfilename(title="Save File", filetypes=availableFormats) 410 | elif var == 2: 411 | filename = asksaveasfilename(title="Export File", filetypes=availableFormats) 412 | 413 | if filename: 414 | name = filename[:] 415 | return name 416 | 417 | 418 | def SaveFile(gridObject, filePath): 419 | global fileName 420 | 421 | if filePath: 422 | if len(filePath) >= 4: # This just makes sure we have .txt at the end of our file selection 423 | if filePath[-4:] != '.txt': 424 | filePath = filePath + '.txt' 425 | else: 426 | filePath = filePath + '.txt' 427 | 428 | file = open(filePath, "w") 429 | 430 | for row in range(len(gridObject.grid)): 431 | for pixel in gridObject.grid[row]: 432 | colorVal = str(pixel.color[0]) + "," + str(pixel.color[1]) + "," + str(pixel.color[2]) 433 | file.write(colorVal + "\n") 434 | 435 | file.close() 436 | 437 | filePathList = filePath.split("/") 438 | fileName = filePathList[-1] 439 | pg.display.set_caption("Pyint by Burak - " + fileName) 440 | 441 | 442 | def OpenFile(filePath): 443 | global g1, fileName 444 | 445 | if filePath: 446 | file = open(filePath, "r") 447 | colors = file.readlines() 448 | 449 | 450 | line = 0 451 | for i in range(g1.yCount): 452 | for j in range(g1.xCount): 453 | colorVal = [] 454 | colorVal = colors[line].split(",") 455 | finalColorVal = [int(colorVal[0]),int(colorVal[1]),int(colorVal[2])] 456 | print(colorVal, "\n", finalColorVal) 457 | line+=1 458 | g1.change_color(j,i,finalColorVal) 459 | 460 | file.close() 461 | filePathList = filePath.split("/") 462 | fileName = filePathList[-1] 463 | pg.display.set_caption("Pyint by Burak - " + fileName) 464 | 465 | def key_event_up(event): 466 | global penSize, undoed, holdingCTRL, colorScheme, selectedTool 467 | 468 | 469 | if event.key == pg.K_1: 470 | colorScheme = 1 471 | elif event.key == pg.K_2: 472 | colorScheme = 2 473 | 474 | if event.key == pg.K_e: 475 | selectedTool = 1 476 | B_Buttons[1].clicked = True 477 | for subbutton in B_Buttons: 478 | if B_Buttons.index(subbutton) != selectedTool: 479 | subbutton.clicked = False 480 | elif event.key == pg.K_b: 481 | selectedTool = 0 482 | B_Buttons[0].clicked = True 483 | for subbutton in B_Buttons: 484 | if B_Buttons.index(subbutton) != selectedTool: 485 | subbutton.clicked = False 486 | elif event.key == pg.K_g: 487 | selectedTool = 2 488 | B_Buttons[2].clicked = True 489 | for subbutton in B_Buttons: 490 | if B_Buttons.index(subbutton) != selectedTool: 491 | subbutton.clicked = False 492 | elif event.key == pg.K_i: 493 | selectedTool = 3 494 | B_Buttons[3].clicked = True 495 | for subbutton in B_Buttons: 496 | if B_Buttons.index(subbutton) != selectedTool: 497 | subbutton.clicked = False 498 | 499 | if event.key == pg.K_LCTRL: 500 | holdingCTRL = False 501 | 502 | if event.key == pg.K_SPACE: 503 | if holdingCTRL: 504 | g1.clean() 505 | undoed = True 506 | 507 | if event.key == pg.K_s: 508 | if holdingCTRL: 509 | shortcutPath = FileManager(1) 510 | SaveFile(g1, shortcutPath) 511 | 512 | if event.key == pg.K_z: 513 | if holdingCTRL: 514 | 515 | for i in range(g1.yCount): 516 | for j in range(g1.xCount): 517 | if round == 1: 518 | g1.change_color(j, i, g1.undoList[1][i][j]) 519 | if round == -1: 520 | g1.change_color(j, i, g1.undoList[0][i][j]) 521 | undoed = True 522 | 523 | 524 | while True: 525 | clock.tick(240) 526 | 527 | if undoed: 528 | for i in range(g1.xCount): 529 | for j in range(g1.yCount): 530 | g1.undoList[0][i][j] = g1.grid[i][j].color 531 | g1.undoList[1][i][j] = g1.grid[i][j].color 532 | undoed = False 533 | 534 | for event in pg.event.get(): 535 | if event.type == pg.QUIT: 536 | pg.quit() 537 | sys.exit() 538 | 539 | if event.type == pg.MOUSEBUTTONDOWN: 540 | if event.button == 3: 541 | selectedToolBefore = selectedTool 542 | selectedTool = 1 543 | elif event.button == 1: 544 | if pg.mouse.get_pos()[0] < g1.xCount*g1.cellSize and pg.mouse.get_pos()[1] < g1.yCount*g1.cellSize: 545 | if selectedTool == 0 or selectedTool == 1: 546 | paint(selectedTool) 547 | clicking = True 548 | elif selectedTool == 2: 549 | mouseRelPosX = max(0, min(g1.xCount - 1, int(Remap(0, (g1.cellSize * g1.xCount), 0, g1.xCount, pg.mouse.get_pos()[0])))) 550 | mouseRelPosY = max(0, min(g1.yCount - 1, int(Remap(0, (g1.cellSize * g1.yCount), 0, g1.yCount, pg.mouse.get_pos()[1])))) 551 | 552 | visitedFillPositions.clear() 553 | 554 | fill(g1, mouseRelPosX, mouseRelPosY, g1.grid[mouseRelPosX][mouseRelPosY].color, selectedColor) 555 | elif selectedTool == 3: 556 | mouseRelPosX = max(0, min(g1.xCount - 1, int(Remap(0, (g1.cellSize * g1.xCount), 0, g1.xCount, pg.mouse.get_pos()[0])))) 557 | mouseRelPosY = max(0, min(g1.yCount - 1, int(Remap(0, (g1.cellSize * g1.yCount), 0, g1.yCount, pg.mouse.get_pos()[1])))) 558 | 559 | selectedColor = g1.grid[mouseRelPosX][mouseRelPosY].color 560 | 561 | else: 562 | if colorScheme == 1: 563 | for i, Scolor in enumerate(colorCells1): 564 | if Scolor.subsurface.get_rect(topleft=positions1[i]).collidepoint(pg.mouse.get_pos()): 565 | selectedColor = Scolor.color 566 | elif colorScheme == 2: 567 | for i, Scolor in enumerate(colorCells2): 568 | if Scolor.subsurface.get_rect(topleft=positions2[i]).collidepoint(pg.mouse.get_pos()): 569 | selectedColor = Scolor.color 570 | for but in S_buttons: 571 | if but.subsurface.get_rect(topleft=(but.pos[0]-but.width/2, but.pos[1])).collidepoint(pg.mouse.get_pos()): 572 | but.active = True 573 | else: 574 | but.active = False 575 | for i,but in enumerate(SL_Buttons): 576 | if but.rollOver: 577 | if i == 0: 578 | cPath = FileManager(1) 579 | SaveFile(g1, cPath) 580 | elif i == 1: 581 | cPath = FileManager(0) 582 | OpenFile(cPath) 583 | elif i == 2: 584 | cPath = FileManager(2) 585 | if cPath: 586 | Capture(screen, cPath + ".png", (4,4), (764,760)) 587 | fileName = cPath.split("/")[-1] + ".png" 588 | 589 | for but in B_Buttons: 590 | if but.rollOver: 591 | but.clicked = True 592 | selectedTool = B_Buttons.index(but) 593 | for subbutton in B_Buttons: 594 | if B_Buttons.index(subbutton) != selectedTool: 595 | subbutton.clicked = False 596 | for but in P_Buttons: 597 | if but.rollOver: 598 | but.clicked = True 599 | colorScheme = P_Buttons.index(but)+1 600 | for subbutton in P_Buttons: 601 | if P_Buttons.index(subbutton) != selectedTool: 602 | subbutton.clicked = False 603 | 604 | if event.type == pg.MOUSEBUTTONUP: 605 | if event.button == 3: 606 | selectedTool = selectedToolBefore 607 | elif event.button == 1: 608 | for i in range(g1.xCount): 609 | for j in range(g1.yCount): 610 | if round == -1: 611 | g1.undoList[0][i][j] = g1.grid[i][j].color 612 | if round == 1: 613 | g1.undoList[1][i][j] = g1.grid[i][j].color 614 | round *= -1 615 | clicking = False 616 | 617 | for but in S_buttons: 618 | but.active = False 619 | 620 | if event.type == pg.MOUSEMOTION: 621 | if pg.mouse.get_pos()[0] < g1.xCount * g1.cellSize and pg.mouse.get_pos()[1] < g1.yCount * g1.cellSize: 622 | pg.mouse.set_visible(False) 623 | else: 624 | pass 625 | pg.mouse.set_visible(True) 626 | if clicking: 627 | if pg.mouse.get_pos()[0] < g1.xCount * g1.cellSize and pg.mouse.get_pos()[1] < g1.yCount * g1.cellSize: 628 | paint(selectedTool) 629 | else: 630 | for but in SL_Buttons: 631 | if but.subsurface.get_rect(topleft=but.pos).collidepoint(pg.mouse.get_pos()): 632 | but.rollOver = True 633 | else: 634 | but.rollOver = False 635 | for but in B_Buttons: 636 | if but.subsurface.get_rect(topleft=but.pos).collidepoint(pg.mouse.get_pos()): 637 | but.rollOver = True 638 | else: 639 | but.rollOver = False 640 | for but in S_buttons: 641 | if but.active: 642 | but.pos[0] = max(but.drawPos[0]-60, min(pg.mouse.get_pos()[0], but.drawPos[0]+60)) 643 | else: 644 | but.active = False 645 | for but in P_Buttons: 646 | if but.subsurface.get_rect(topleft=but.pos).collidepoint(pg.mouse.get_pos()): 647 | but.rollOver = True 648 | else: 649 | but.rollOver = False 650 | 651 | if event.type == pg.KEYDOWN: 652 | if event.key == pg.K_LCTRL: 653 | holdingCTRL = True 654 | 655 | if event.type == pg.KEYUP: 656 | key_event_up(event) 657 | 658 | tool_activate(selectedTool) 659 | 660 | screen.fill((255, 255, 255)) 661 | g1.Draw(screen) 662 | draw_walls() 663 | 664 | for but in SL_Buttons: 665 | but.Draw(screen) 666 | 667 | screen.blit(colorTitleFont.render("Tools", True, (50,50,50)), (779, 30)) 668 | pg.draw.rect(screen, (180,180,180), (779, 50, 170, 100)) 669 | for but in B_Buttons: 670 | but.Draw(screen) 671 | 672 | for but in P_Buttons: 673 | but.Draw(screen) 674 | 675 | screen.blit(colorTitleFont.render("Size Settings", True, (50, 50, 50)), (779, 170)) 676 | S_brushSize.Draw(screen, penSize) 677 | S_eraserSize.Draw(screen, eraserSize) 678 | penSize = int(S_brushSize.slideVal) 679 | eraserSize = int(S_eraserSize.slideVal) 680 | 681 | screen.blit(nameSurface, (310, 790)) 682 | nameText = fileFont.render(fileName, True, (0, 0, 0)) 683 | screen.blit(nameText, (320,sh-50)) 684 | screen.blit(logo, (680, 775)) 685 | 686 | screen.blit(pg.transform.scale(fillImage, (22,22)), (B_fillTool.pos[0]+3, B_fillTool.pos[1]+2)) 687 | screen.blit(pg.transform.scale(eraserImage, (22,22)), (B_eraserTool.pos[0]+3, B_eraserTool.pos[1]+2)) 688 | screen.blit(pg.transform.scale(brushImage, (22,22)), (B_penTool.pos[0]+3, B_penTool.pos[1]+2)) 689 | screen.blit(pg.transform.scale(dropperImage, (22,22)), (B_eyeDropper.pos[0]+3, B_eyeDropper.pos[1]+2)) 690 | 691 | draw_palette(colorScheme) 692 | 693 | if selectedTool == 0: 694 | if pg.mouse.get_pos()[0] < g1.xCount * g1.cellSize and pg.mouse.get_pos()[1] < g1.yCount * g1.cellSize: 695 | pg.draw.circle(screen, colorUsing, (pg.mouse.get_pos()), penSize * 8, 1) 696 | elif selectedTool == 1: 697 | if pg.mouse.get_pos()[0] < g1.xCount * g1.cellSize and pg.mouse.get_pos()[1] < g1.yCount * g1.cellSize: 698 | pg.draw.circle(screen, (50,50,50), (pg.mouse.get_pos()), eraserSize * 8, 1) 699 | elif selectedTool == 2: 700 | if pg.mouse.get_pos()[0] < g1.xCount * g1.cellSize and pg.mouse.get_pos()[1] < g1.yCount * g1.cellSize: 701 | screen.blit(fillImage, (pg.mouse.get_pos()[0], pg.mouse.get_pos()[1]-35)) 702 | elif selectedTool == 3: 703 | if pg.mouse.get_pos()[0] < g1.xCount * g1.cellSize and pg.mouse.get_pos()[1] < g1.yCount * g1.cellSize: 704 | screen.blit(dropperImage, (pg.mouse.get_pos()[0], pg.mouse.get_pos()[1]-30)) 705 | 706 | 707 | 708 | pg.display.update() 709 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /dragon.txt: -------------------------------------------------------------------------------- 1 | 255,255,255 2 | 255,255,255 3 | 255,255,255 4 | 255,255,255 5 | 255,255,255 6 | 255,255,255 7 | 255,255,255 8 | 255,255,255 9 | 255,255,255 10 | 255,255,255 11 | 255,255,255 12 | 255,255,255 13 | 255,255,255 14 | 255,255,255 15 | 255,255,255 16 | 255,255,255 17 | 255,255,255 18 | 255,255,255 19 | 255,255,255 20 | 255,255,255 21 | 255,255,255 22 | 255,255,255 23 | 255,255,255 24 | 255,255,255 25 | 255,255,255 26 | 0,0,0 27 | 100,30,22 28 | 100,30,22 29 | 120,40,31 30 | 120,40,31 31 | 120,40,31 32 | 120,40,31 33 | 120,40,31 34 | 146,43,33 35 | 146,43,33 36 | 146,43,33 37 | 146,43,33 38 | 148,49,38 39 | 148,49,38 40 | 148,49,38 41 | 148,49,38 42 | 148,49,38 43 | 148,49,38 44 | 176,58,46 45 | 192,57,43 46 | 0,0,0 47 | 0,0,0 48 | 0,0,0 49 | 242,156,18 50 | 242,156,18 51 | 242,156,18 52 | 242,156,18 53 | 242,156,18 54 | 245,176,65 55 | 245,176,65 56 | 242,156,18 57 | 248,196,113 58 | 248,196,113 59 | 248,196,113 60 | 248,196,113 61 | 250,215,160 62 | 250,215,160 63 | 250,215,160 64 | 250,215,160 65 | 255,255,255 66 | 255,255,255 67 | 255,255,255 68 | 255,255,255 69 | 255,255,255 70 | 255,255,255 71 | 255,255,255 72 | 255,255,255 73 | 255,255,255 74 | 0,0,0 75 | 0,0,0 76 | 255,255,255 77 | 255,255,255 78 | 255,255,255 79 | 255,255,255 80 | 255,255,255 81 | 255,255,255 82 | 255,255,255 83 | 255,255,255 84 | 255,255,255 85 | 255,255,255 86 | 255,255,255 87 | 255,255,255 88 | 255,255,255 89 | 0,0,0 90 | 0,0,0 91 | 100,30,22 92 | 100,30,22 93 | 120,40,31 94 | 120,40,31 95 | 120,40,31 96 | 146,43,33 97 | 148,49,38 98 | 148,49,38 99 | 146,43,33 100 | 146,43,33 101 | 148,49,38 102 | 148,49,38 103 | 148,49,38 104 | 148,49,38 105 | 148,49,38 106 | 148,49,38 107 | 176,58,46 108 | 192,57,43 109 | 0,0,0 110 | 0,0,0 111 | 245,176,65 112 | 0,0,0 113 | 0,0,0 114 | 0,0,0 115 | 0,0,0 116 | 0,0,0 117 | 0,0,0 118 | 242,156,18 119 | 242,156,18 120 | 248,196,113 121 | 250,215,160 122 | 250,215,160 123 | 250,215,160 124 | 250,215,160 125 | 0,0,0 126 | 0,0,0 127 | 0,0,0 128 | 0,0,0 129 | 255,255,255 130 | 255,255,255 131 | 255,255,255 132 | 255,255,255 133 | 255,255,255 134 | 255,255,255 135 | 255,255,255 136 | 255,255,255 137 | 255,255,255 138 | 0,0,0 139 | 0,0,0 140 | 255,255,255 141 | 255,255,255 142 | 255,255,255 143 | 255,255,255 144 | 255,255,255 145 | 255,255,255 146 | 255,255,255 147 | 255,255,255 148 | 255,255,255 149 | 255,255,255 150 | 255,255,255 151 | 255,255,255 152 | 255,255,255 153 | 0,0,0 154 | 100,30,22 155 | 100,30,22 156 | 120,40,31 157 | 120,40,31 158 | 120,40,31 159 | 146,43,33 160 | 148,49,38 161 | 148,49,38 162 | 148,49,38 163 | 148,49,38 164 | 148,49,38 165 | 148,49,38 166 | 148,49,38 167 | 148,49,38 168 | 148,49,38 169 | 148,49,38 170 | 176,58,46 171 | 192,57,43 172 | 0,0,0 173 | 0,0,0 174 | 242,156,18 175 | 245,176,65 176 | 245,176,65 177 | 245,176,65 178 | 245,176,65 179 | 245,176,65 180 | 248,196,113 181 | 0,0,0 182 | 0,0,0 183 | 0,0,0 184 | 0,0,0 185 | 0,0,0 186 | 0,0,0 187 | 0,0,0 188 | 0,0,0 189 | 0,0,0 190 | 250,215,160 191 | 250,215,160 192 | 250,215,160 193 | 255,255,255 194 | 255,255,255 195 | 255,255,255 196 | 255,255,255 197 | 255,255,255 198 | 255,255,255 199 | 255,255,255 200 | 255,255,255 201 | 255,255,255 202 | 0,0,0 203 | 98,101,103 204 | 0,0,0 205 | 255,255,255 206 | 255,255,255 207 | 255,255,255 208 | 255,255,255 209 | 255,255,255 210 | 255,255,255 211 | 255,255,255 212 | 255,255,255 213 | 255,255,255 214 | 255,255,255 215 | 255,255,255 216 | 255,255,255 217 | 0,0,0 218 | 100,30,22 219 | 100,30,22 220 | 120,40,31 221 | 120,40,31 222 | 146,43,33 223 | 146,43,33 224 | 148,49,38 225 | 148,49,38 226 | 148,49,38 227 | 148,49,38 228 | 148,49,38 229 | 148,49,38 230 | 148,49,38 231 | 148,49,38 232 | 148,49,38 233 | 176,58,46 234 | 192,57,43 235 | 0,0,0 236 | 0,0,0 237 | 0,0,0 238 | 0,0,0 239 | 242,156,18 240 | 242,156,18 241 | 242,156,18 242 | 242,156,18 243 | 245,176,65 244 | 245,176,65 245 | 245,176,65 246 | 245,176,65 247 | 245,176,65 248 | 250,215,160 249 | 250,215,160 250 | 0,0,0 251 | 0,0,0 252 | 250,215,160 253 | 0,0,0 254 | 242,156,18 255 | 248,196,113 256 | 248,196,113 257 | 255,255,255 258 | 255,255,255 259 | 255,255,255 260 | 255,255,255 261 | 255,255,255 262 | 255,255,255 263 | 255,255,255 264 | 255,255,255 265 | 255,255,255 266 | 0,0,0 267 | 128,128,128 268 | 98,101,103 269 | 0,0,0 270 | 0,0,0 271 | 255,255,255 272 | 255,255,255 273 | 255,255,255 274 | 255,255,255 275 | 255,255,255 276 | 255,255,255 277 | 255,255,255 278 | 255,255,255 279 | 255,255,255 280 | 0,0,0 281 | 100,30,22 282 | 100,30,22 283 | 100,30,22 284 | 120,40,31 285 | 146,43,33 286 | 148,49,38 287 | 148,49,38 288 | 148,49,38 289 | 148,49,38 290 | 148,49,38 291 | 148,49,38 292 | 146,43,33 293 | 148,49,38 294 | 148,49,38 295 | 148,49,38 296 | 176,58,46 297 | 192,57,43 298 | 0,0,0 299 | 0,0,0 300 | 248,196,113 301 | 248,196,113 302 | 0,0,0 303 | 0,0,0 304 | 0,0,0 305 | 0,0,0 306 | 0,0,0 307 | 242,156,18 308 | 242,156,18 309 | 242,156,18 310 | 245,176,65 311 | 250,215,160 312 | 0,0,0 313 | 0,0,0 314 | 0,0,0 315 | 250,215,160 316 | 248,196,113 317 | 0,0,0 318 | 242,156,18 319 | 248,196,113 320 | 248,196,113 321 | 255,255,255 322 | 255,255,255 323 | 255,255,255 324 | 255,255,255 325 | 255,255,255 326 | 255,255,255 327 | 255,255,255 328 | 255,255,255 329 | 255,255,255 330 | 0,0,0 331 | 155,155,155 332 | 128,128,128 333 | 98,101,103 334 | 0,0,0 335 | 0,0,0 336 | 255,255,255 337 | 255,255,255 338 | 255,255,255 339 | 255,255,255 340 | 255,255,255 341 | 255,255,255 342 | 255,255,255 343 | 255,255,255 344 | 0,0,0 345 | 100,30,22 346 | 100,30,22 347 | 120,40,31 348 | 120,40,31 349 | 146,43,33 350 | 148,49,38 351 | 148,49,38 352 | 148,49,38 353 | 148,49,38 354 | 148,49,38 355 | 146,43,33 356 | 120,40,31 357 | 146,43,33 358 | 148,49,38 359 | 176,58,46 360 | 192,57,43 361 | 0,0,0 362 | 0,0,0 363 | 248,196,113 364 | 248,196,113 365 | 248,196,113 366 | 248,196,113 367 | 248,196,113 368 | 248,196,113 369 | 248,196,113 370 | 0,0,0 371 | 0,0,0 372 | 0,0,0 373 | 0,0,0 374 | 250,215,160 375 | 0,0,0 376 | 0,0,0 377 | 250,215,160 378 | 248,196,113 379 | 248,196,113 380 | 248,196,113 381 | 0,0,0 382 | 0,0,0 383 | 242,156,18 384 | 248,196,113 385 | 255,255,255 386 | 255,255,255 387 | 255,255,255 388 | 255,255,255 389 | 255,255,255 390 | 255,255,255 391 | 255,255,255 392 | 255,255,255 393 | 255,255,255 394 | 0,0,0 395 | 155,155,155 396 | 128,128,128 397 | 64,64,64 398 | 64,64,64 399 | 0,0,0 400 | 0,0,0 401 | 255,255,255 402 | 255,255,255 403 | 255,255,255 404 | 255,255,255 405 | 255,255,255 406 | 255,255,255 407 | 0,0,0 408 | 100,30,22 409 | 100,30,22 410 | 100,30,22 411 | 120,40,31 412 | 146,43,33 413 | 148,49,38 414 | 148,49,38 415 | 148,49,38 416 | 148,49,38 417 | 148,49,38 418 | 148,49,38 419 | 146,43,33 420 | 120,40,31 421 | 120,40,31 422 | 176,58,46 423 | 192,57,43 424 | 0,0,0 425 | 0,0,0 426 | 245,176,65 427 | 245,176,65 428 | 245,176,65 429 | 245,176,65 430 | 245,176,65 431 | 245,176,65 432 | 245,176,65 433 | 245,176,65 434 | 248,196,113 435 | 248,196,113 436 | 248,196,113 437 | 0,0,0 438 | 0,0,0 439 | 0,0,0 440 | 250,215,160 441 | 248,196,113 442 | 248,196,113 443 | 248,196,113 444 | 248,196,113 445 | 242,156,18 446 | 0,0,0 447 | 242,156,18 448 | 242,156,18 449 | 255,255,255 450 | 255,255,255 451 | 255,255,255 452 | 255,255,255 453 | 255,255,255 454 | 255,255,255 455 | 255,255,255 456 | 255,255,255 457 | 255,255,255 458 | 0,0,0 459 | 64,64,64 460 | 64,64,64 461 | 64,64,64 462 | 77,86,86 463 | 98,101,103 464 | 0,0,0 465 | 0,0,0 466 | 255,255,255 467 | 255,255,255 468 | 255,255,255 469 | 255,255,255 470 | 255,255,255 471 | 0,0,0 472 | 100,30,22 473 | 100,30,22 474 | 120,40,31 475 | 120,40,31 476 | 146,43,33 477 | 148,49,38 478 | 148,49,38 479 | 146,43,33 480 | 146,43,33 481 | 146,43,33 482 | 148,49,38 483 | 148,49,38 484 | 146,43,33 485 | 120,40,31 486 | 146,43,33 487 | 192,57,43 488 | 0,0,0 489 | 242,156,18 490 | 242,156,18 491 | 242,156,18 492 | 242,156,18 493 | 242,156,18 494 | 242,156,18 495 | 242,156,18 496 | 242,156,18 497 | 242,156,18 498 | 245,176,65 499 | 245,176,65 500 | 250,215,160 501 | 0,0,0 502 | 0,0,0 503 | 242,156,18 504 | 248,196,113 505 | 248,196,113 506 | 242,156,18 507 | 242,156,18 508 | 242,156,18 509 | 0,0,0 510 | 0,0,0 511 | 0,0,0 512 | 0,0,0 513 | 255,255,255 514 | 255,255,255 515 | 255,255,255 516 | 255,255,255 517 | 255,255,255 518 | 255,255,255 519 | 255,255,255 520 | 255,255,255 521 | 255,255,255 522 | 0,0,0 523 | 64,64,64 524 | 77,86,86 525 | 95,106,106 526 | 113,125,126 527 | 64,64,64 528 | 64,64,64 529 | 77,86,86 530 | 0,0,0 531 | 0,0,0 532 | 255,255,255 533 | 255,255,255 534 | 255,255,255 535 | 0,0,0 536 | 100,30,22 537 | 100,30,22 538 | 120,40,31 539 | 146,43,33 540 | 148,49,38 541 | 148,49,38 542 | 146,43,33 543 | 120,40,31 544 | 120,40,31 545 | 146,43,33 546 | 148,49,38 547 | 0,0,0 548 | 0,0,0 549 | 120,40,31 550 | 146,43,33 551 | 0,0,0 552 | 0,0,0 553 | 0,0,0 554 | 0,0,0 555 | 0,0,0 556 | 0,0,0 557 | 0,0,0 558 | 0,0,0 559 | 0,0,0 560 | 0,0,0 561 | 242,156,18 562 | 242,156,18 563 | 250,215,160 564 | 0,0,0 565 | 0,0,0 566 | 0,0,0 567 | 0,0,0 568 | 242,156,18 569 | 242,156,18 570 | 0,0,0 571 | 0,0,0 572 | 0,0,0 573 | 0,0,0 574 | 255,255,255 575 | 255,255,255 576 | 255,255,255 577 | 255,255,255 578 | 255,255,255 579 | 255,255,255 580 | 255,255,255 581 | 255,255,255 582 | 255,255,255 583 | 255,255,255 584 | 255,255,255 585 | 255,255,255 586 | 0,0,0 587 | 0,0,0 588 | 113,125,126 589 | 113,125,126 590 | 64,64,64 591 | 64,64,64 592 | 77,86,86 593 | 95,106,106 594 | 98,101,103 595 | 0,0,0 596 | 0,0,0 597 | 0,0,0 598 | 255,255,255 599 | 0,0,0 600 | 100,30,22 601 | 100,30,22 602 | 120,40,31 603 | 146,43,33 604 | 148,49,38 605 | 148,49,38 606 | 146,43,33 607 | 120,40,31 608 | 100,30,22 609 | 120,40,31 610 | 146,43,33 611 | 0,0,0 612 | 0,0,0 613 | 120,40,31 614 | 100,30,22 615 | 0,0,0 616 | 242,156,18 617 | 245,176,65 618 | 245,176,65 619 | 248,196,113 620 | 248,196,113 621 | 248,196,113 622 | 248,196,113 623 | 248,196,113 624 | 0,0,0 625 | 0,0,0 626 | 0,0,0 627 | 0,0,0 628 | 0,0,0 629 | 250,215,160 630 | 248,196,113 631 | 0,0,0 632 | 0,0,0 633 | 0,0,0 634 | 0,0,0 635 | 255,255,255 636 | 255,255,255 637 | 255,255,255 638 | 255,255,255 639 | 255,255,255 640 | 255,255,255 641 | 255,255,255 642 | 255,255,255 643 | 255,255,255 644 | 255,255,255 645 | 255,255,255 646 | 255,255,255 647 | 255,255,255 648 | 255,255,255 649 | 255,255,255 650 | 255,255,255 651 | 0,0,0 652 | 155,155,155 653 | 64,64,64 654 | 64,64,64 655 | 77,86,86 656 | 95,106,106 657 | 113,125,126 658 | 128,128,128 659 | 64,64,64 660 | 64,64,64 661 | 95,106,106 662 | 0,0,0 663 | 0,0,0 664 | 0,0,0 665 | 100,30,22 666 | 100,30,22 667 | 120,40,31 668 | 146,43,33 669 | 148,49,38 670 | 148,49,38 671 | 146,43,33 672 | 100,30,22 673 | 100,30,22 674 | 146,43,33 675 | 0,0,0 676 | 0,0,0 677 | 0,0,0 678 | 100,30,22 679 | 0,0,0 680 | 0,0,0 681 | 242,156,18 682 | 245,176,65 683 | 245,176,65 684 | 245,176,65 685 | 245,176,65 686 | 245,176,65 687 | 248,196,113 688 | 248,196,113 689 | 250,215,160 690 | 0,0,0 691 | 0,0,0 692 | 242,156,18 693 | 248,196,113 694 | 242,156,18 695 | 0,0,0 696 | 0,0,0 697 | 255,255,255 698 | 255,255,255 699 | 255,255,255 700 | 255,255,255 701 | 255,255,255 702 | 255,255,255 703 | 255,255,255 704 | 255,255,255 705 | 255,255,255 706 | 255,255,255 707 | 255,255,255 708 | 255,255,255 709 | 255,255,255 710 | 255,255,255 711 | 255,255,255 712 | 255,255,255 713 | 255,255,255 714 | 255,255,255 715 | 0,0,0 716 | 155,155,155 717 | 64,64,64 718 | 77,86,86 719 | 95,106,106 720 | 113,125,126 721 | 128,128,128 722 | 64,64,64 723 | 64,64,64 724 | 77,86,86 725 | 98,101,103 726 | 0,0,0 727 | 0,0,0 728 | 0,0,0 729 | 0,0,0 730 | 100,30,22 731 | 100,30,22 732 | 100,30,22 733 | 100,30,22 734 | 100,30,22 735 | 100,30,22 736 | 100,30,22 737 | 100,30,22 738 | 100,30,22 739 | 0,0,0 740 | 120,40,31 741 | 0,0,0 742 | 100,30,22 743 | 0,0,0 744 | 0,0,0 745 | 242,156,18 746 | 242,156,18 747 | 242,156,18 748 | 242,156,18 749 | 242,156,18 750 | 242,156,18 751 | 245,176,65 752 | 250,215,160 753 | 0,0,0 754 | 0,0,0 755 | 0,0,0 756 | 242,156,18 757 | 242,156,18 758 | 0,0,0 759 | 0,0,0 760 | 255,255,255 761 | 255,255,255 762 | 255,255,255 763 | 255,255,255 764 | 255,255,255 765 | 255,255,255 766 | 255,255,255 767 | 255,255,255 768 | 255,255,255 769 | 255,255,255 770 | 255,255,255 771 | 255,255,255 772 | 255,255,255 773 | 255,255,255 774 | 255,255,255 775 | 0,0,0 776 | 0,0,0 777 | 255,255,255 778 | 255,255,255 779 | 0,0,0 780 | 0,0,0 781 | 64,64,64 782 | 77,86,86 783 | 113,125,126 784 | 128,128,128 785 | 64,64,64 786 | 64,64,64 787 | 77,86,86 788 | 95,106,106 789 | 98,101,103 790 | 0,0,0 791 | 100,30,22 792 | 100,30,22 793 | 100,30,22 794 | 100,30,22 795 | 100,30,22 796 | 100,30,22 797 | 0,0,0 798 | 0,0,0 799 | 0,0,0 800 | 0,0,0 801 | 100,30,22 802 | 100,30,22 803 | 0,0,0 804 | 120,40,31 805 | 0,0,0 806 | 0,0,0 807 | 0,0,0 808 | 0,0,0 809 | 0,0,0 810 | 0,0,0 811 | 0,0,0 812 | 0,0,0 813 | 0,0,0 814 | 0,0,0 815 | 242,156,18 816 | 0,0,0 817 | 0,0,0 818 | 242,156,18 819 | 0,0,0 820 | 0,0,0 821 | 0,0,0 822 | 255,255,255 823 | 255,255,255 824 | 255,255,255 825 | 255,255,255 826 | 255,255,255 827 | 255,255,255 828 | 255,255,255 829 | 255,255,255 830 | 255,255,255 831 | 255,255,255 832 | 255,255,255 833 | 255,255,255 834 | 255,255,255 835 | 255,255,255 836 | 255,255,255 837 | 255,255,255 838 | 255,255,255 839 | 0,0,0 840 | 0,0,0 841 | 0,0,0 842 | 0,0,0 843 | 255,255,255 844 | 0,0,0 845 | 77,86,86 846 | 95,106,106 847 | 155,155,155 848 | 64,64,64 849 | 64,64,64 850 | 77,86,86 851 | 95,106,106 852 | 113,125,126 853 | 0,0,0 854 | 0,0,0 855 | 100,30,22 856 | 100,30,22 857 | 100,30,22 858 | 100,30,22 859 | 100,30,22 860 | 100,30,22 861 | 100,30,22 862 | 0,0,0 863 | 0,0,0 864 | 100,30,22 865 | 0,0,0 866 | 0,0,0 867 | 0,0,0 868 | 120,40,31 869 | 120,40,31 870 | 0,0,0 871 | 100,30,22 872 | 0,0,0 873 | 242,156,18 874 | 248,196,113 875 | 248,196,113 876 | 248,196,113 877 | 248,196,113 878 | 0,0,0 879 | 0,0,0 880 | 0,0,0 881 | 242,156,18 882 | 248,196,113 883 | 0,0,0 884 | 0,0,0 885 | 255,255,255 886 | 255,255,255 887 | 255,255,255 888 | 255,255,255 889 | 255,255,255 890 | 255,255,255 891 | 255,255,255 892 | 255,255,255 893 | 255,255,255 894 | 255,255,255 895 | 255,255,255 896 | 255,255,255 897 | 255,255,255 898 | 255,255,255 899 | 255,255,255 900 | 255,255,255 901 | 255,255,255 902 | 255,255,255 903 | 255,255,255 904 | 0,0,0 905 | 113,125,126 906 | 0,0,0 907 | 0,0,0 908 | 0,0,0 909 | 155,155,155 910 | 155,155,155 911 | 155,155,155 912 | 64,64,64 913 | 77,86,86 914 | 95,106,106 915 | 113,125,126 916 | 0,0,0 917 | 0,0,0 918 | 0,0,0 919 | 100,30,22 920 | 120,40,31 921 | 120,40,31 922 | 120,40,31 923 | 120,40,31 924 | 120,40,31 925 | 100,30,22 926 | 100,30,22 927 | 146,43,33 928 | 0,0,0 929 | 120,40,31 930 | 120,40,31 931 | 0,0,0 932 | 148,49,38 933 | 120,40,31 934 | 0,0,0 935 | 100,30,22 936 | 0,0,0 937 | 0,0,0 938 | 242,156,18 939 | 242,156,18 940 | 242,156,18 941 | 248,196,113 942 | 0,0,0 943 | 0,0,0 944 | 0,0,0 945 | 242,156,18 946 | 250,215,160 947 | 0,0,0 948 | 255,255,255 949 | 255,255,255 950 | 255,255,255 951 | 255,255,255 952 | 255,255,255 953 | 255,255,255 954 | 255,255,255 955 | 255,255,255 956 | 255,255,255 957 | 255,255,255 958 | 255,255,255 959 | 255,255,255 960 | 255,255,255 961 | 255,255,255 962 | 255,255,255 963 | 255,255,255 964 | 255,255,255 965 | 255,255,255 966 | 255,255,255 967 | 255,255,255 968 | 0,0,0 969 | 128,128,128 970 | 64,64,64 971 | 64,64,64 972 | 95,106,106 973 | 0,0,0 974 | 155,155,155 975 | 64,64,64 976 | 64,64,64 977 | 95,106,106 978 | 113,125,126 979 | 128,128,128 980 | 0,0,0 981 | 100,30,22 982 | 100,30,22 983 | 120,40,31 984 | 120,40,31 985 | 120,40,31 986 | 120,40,31 987 | 120,40,31 988 | 120,40,31 989 | 120,40,31 990 | 146,43,33 991 | 148,49,38 992 | 0,0,0 993 | 146,43,33 994 | 146,43,33 995 | 148,49,38 996 | 148,49,38 997 | 146,43,33 998 | 148,49,38 999 | 120,40,31 1000 | 100,30,22 1001 | 0,0,0 1002 | 0,0,0 1003 | 0,0,0 1004 | 0,0,0 1005 | 242,156,18 1006 | 0,0,0 1007 | 242,156,18 1008 | 0,0,0 1009 | 242,156,18 1010 | 0,0,0 1011 | 0,0,0 1012 | 255,255,255 1013 | 255,255,255 1014 | 255,255,255 1015 | 255,255,255 1016 | 255,255,255 1017 | 255,255,255 1018 | 255,255,255 1019 | 255,255,255 1020 | 255,255,255 1021 | 255,255,255 1022 | 255,255,255 1023 | 255,255,255 1024 | 255,255,255 1025 | 255,255,255 1026 | 255,255,255 1027 | 255,255,255 1028 | 255,255,255 1029 | 255,255,255 1030 | 255,255,255 1031 | 255,255,255 1032 | 0,0,0 1033 | 128,128,128 1034 | 64,64,64 1035 | 95,106,106 1036 | 113,125,126 1037 | 0,0,0 1038 | 0,0,0 1039 | 64,64,64 1040 | 77,86,86 1041 | 113,125,126 1042 | 155,155,155 1043 | 0,0,0 1044 | 0,0,0 1045 | 120,40,31 1046 | 120,40,31 1047 | 120,40,31 1048 | 120,40,31 1049 | 120,40,31 1050 | 120,40,31 1051 | 120,40,31 1052 | 120,40,31 1053 | 146,43,33 1054 | 148,49,38 1055 | 148,49,38 1056 | 148,49,38 1057 | 148,49,38 1058 | 148,49,38 1059 | 148,49,38 1060 | 146,43,33 1061 | 146,43,33 1062 | 146,43,33 1063 | 146,43,33 1064 | 120,40,31 1065 | 120,40,31 1066 | 100,30,22 1067 | 100,30,22 1068 | 0,0,0 1069 | 0,0,0 1070 | 0,0,0 1071 | 0,0,0 1072 | 0,0,0 1073 | 0,0,0 1074 | 0,0,0 1075 | 255,255,255 1076 | 255,255,255 1077 | 255,255,255 1078 | 255,255,255 1079 | 255,255,255 1080 | 255,255,255 1081 | 255,255,255 1082 | 255,255,255 1083 | 255,255,255 1084 | 255,255,255 1085 | 255,255,255 1086 | 255,255,255 1087 | 255,255,255 1088 | 255,255,255 1089 | 255,255,255 1090 | 255,255,255 1091 | 255,255,255 1092 | 255,255,255 1093 | 255,255,255 1094 | 255,255,255 1095 | 255,255,255 1096 | 255,255,255 1097 | 0,0,0 1098 | 64,64,64 1099 | 113,125,126 1100 | 128,128,128 1101 | 64,64,64 1102 | 0,0,0 1103 | 155,155,155 1104 | 155,155,155 1105 | 155,155,155 1106 | 0,0,0 1107 | 0,0,0 1108 | 120,40,31 1109 | 146,43,33 1110 | 146,43,33 1111 | 120,40,31 1112 | 120,40,31 1113 | 120,40,31 1114 | 120,40,31 1115 | 146,43,33 1116 | 146,43,33 1117 | 148,49,38 1118 | 148,49,38 1119 | 148,49,38 1120 | 148,49,38 1121 | 148,49,38 1122 | 148,49,38 1123 | 148,49,38 1124 | 120,40,31 1125 | 100,30,22 1126 | 100,30,22 1127 | 120,40,31 1128 | 146,43,33 1129 | 146,43,33 1130 | 148,49,38 1131 | 120,40,31 1132 | 100,30,22 1133 | 100,30,22 1134 | 100,30,22 1135 | 0,0,0 1136 | 242,156,18 1137 | 0,0,0 1138 | 0,0,0 1139 | 255,255,255 1140 | 255,255,255 1141 | 255,255,255 1142 | 255,255,255 1143 | 255,255,255 1144 | 255,255,255 1145 | 255,255,255 1146 | 255,255,255 1147 | 255,255,255 1148 | 255,255,255 1149 | 255,255,255 1150 | 255,255,255 1151 | 255,255,255 1152 | 255,255,255 1153 | 255,255,255 1154 | 255,255,255 1155 | 255,255,255 1156 | 255,255,255 1157 | 255,255,255 1158 | 255,255,255 1159 | 255,255,255 1160 | 255,255,255 1161 | 0,0,0 1162 | 0,0,0 1163 | 128,128,128 1164 | 64,64,64 1165 | 64,64,64 1166 | 95,106,106 1167 | 0,0,0 1168 | 155,155,155 1169 | 0,0,0 1170 | 0,0,0 1171 | 192,57,43 1172 | 192,57,43 1173 | 176,58,46 1174 | 146,43,33 1175 | 146,43,33 1176 | 146,43,33 1177 | 120,40,31 1178 | 120,40,31 1179 | 146,43,33 1180 | 148,49,38 1181 | 148,49,38 1182 | 148,49,38 1183 | 148,49,38 1184 | 148,49,38 1185 | 148,49,38 1186 | 148,49,38 1187 | 148,49,38 1188 | 100,30,22 1189 | 0,0,0 1190 | 0,0,0 1191 | 100,30,22 1192 | 120,40,31 1193 | 120,40,31 1194 | 146,43,33 1195 | 146,43,33 1196 | 120,40,31 1197 | 120,40,31 1198 | 120,40,31 1199 | 0,0,0 1200 | 242,156,18 1201 | 0,0,0 1202 | 255,255,255 1203 | 255,255,255 1204 | 255,255,255 1205 | 255,255,255 1206 | 255,255,255 1207 | 255,255,255 1208 | 255,255,255 1209 | 255,255,255 1210 | 255,255,255 1211 | 255,255,255 1212 | 255,255,255 1213 | 255,255,255 1214 | 255,255,255 1215 | 255,255,255 1216 | 255,255,255 1217 | 255,255,255 1218 | 255,255,255 1219 | 255,255,255 1220 | 255,255,255 1221 | 255,255,255 1222 | 255,255,255 1223 | 255,255,255 1224 | 255,255,255 1225 | 255,255,255 1226 | 0,0,0 1227 | 155,155,155 1228 | 64,64,64 1229 | 95,106,106 1230 | 113,125,126 1231 | 64,64,64 1232 | 0,0,0 1233 | 0,0,0 1234 | 120,40,31 1235 | 120,40,31 1236 | 100,30,22 1237 | 192,57,43 1238 | 176,58,46 1239 | 146,43,33 1240 | 146,43,33 1241 | 146,43,33 1242 | 146,43,33 1243 | 148,49,38 1244 | 148,49,38 1245 | 148,49,38 1246 | 148,49,38 1247 | 148,49,38 1248 | 148,49,38 1249 | 148,49,38 1250 | 148,49,38 1251 | 120,40,31 1252 | 0,0,0 1253 | 0,0,0 1254 | 0,0,0 1255 | 0,0,0 1256 | 100,30,22 1257 | 120,40,31 1258 | 120,40,31 1259 | 146,43,33 1260 | 146,43,33 1261 | 146,43,33 1262 | 120,40,31 1263 | 100,30,22 1264 | 0,0,0 1265 | 0,0,0 1266 | 255,255,255 1267 | 255,255,255 1268 | 255,255,255 1269 | 255,255,255 1270 | 255,255,255 1271 | 255,255,255 1272 | 255,255,255 1273 | 255,255,255 1274 | 255,255,255 1275 | 255,255,255 1276 | 255,255,255 1277 | 255,255,255 1278 | 255,255,255 1279 | 255,255,255 1280 | 255,255,255 1281 | 255,255,255 1282 | 255,255,255 1283 | 255,255,255 1284 | 255,255,255 1285 | 255,255,255 1286 | 255,255,255 1287 | 255,255,255 1288 | 255,255,255 1289 | 255,255,255 1290 | 0,0,0 1291 | 0,0,0 1292 | 64,64,64 1293 | 113,125,126 1294 | 64,64,64 1295 | 64,64,64 1296 | 95,106,106 1297 | 0,0,0 1298 | 120,40,31 1299 | 120,40,31 1300 | 120,40,31 1301 | 100,30,22 1302 | 192,57,43 1303 | 176,58,46 1304 | 176,58,46 1305 | 146,43,33 1306 | 148,49,38 1307 | 148,49,38 1308 | 148,49,38 1309 | 148,49,38 1310 | 148,49,38 1311 | 148,49,38 1312 | 148,49,38 1313 | 148,49,38 1314 | 148,49,38 1315 | 120,40,31 1316 | 0,0,0 1317 | 0,0,0 1318 | 0,0,0 1319 | 0,0,0 1320 | 0,0,0 1321 | 0,0,0 1322 | 100,30,22 1323 | 120,40,31 1324 | 148,49,38 1325 | 148,49,38 1326 | 120,40,31 1327 | 100,30,22 1328 | 0,0,0 1329 | 255,255,255 1330 | 255,255,255 1331 | 255,255,255 1332 | 255,255,255 1333 | 255,255,255 1334 | 255,255,255 1335 | 255,255,255 1336 | 255,255,255 1337 | 255,255,255 1338 | 255,255,255 1339 | 255,255,255 1340 | 255,255,255 1341 | 255,255,255 1342 | 255,255,255 1343 | 255,255,255 1344 | 255,255,255 1345 | 255,255,255 1346 | 255,255,255 1347 | 255,255,255 1348 | 255,255,255 1349 | 255,255,255 1350 | 255,255,255 1351 | 255,255,255 1352 | 255,255,255 1353 | 255,255,255 1354 | 255,255,255 1355 | 0,0,0 1356 | 0,0,0 1357 | 155,155,155 1358 | 64,64,64 1359 | 95,106,106 1360 | 113,125,126 1361 | 0,0,0 1362 | 148,49,38 1363 | 148,49,38 1364 | 120,40,31 1365 | 120,40,31 1366 | 100,30,22 1367 | 100,30,22 1368 | 192,57,43 1369 | 176,58,46 1370 | 146,43,33 1371 | 148,49,38 1372 | 148,49,38 1373 | 148,49,38 1374 | 148,49,38 1375 | 148,49,38 1376 | 148,49,38 1377 | 148,49,38 1378 | 148,49,38 1379 | 148,49,38 1380 | 120,40,31 1381 | 0,0,0 1382 | 0,0,0 1383 | 0,0,0 1384 | 0,0,0 1385 | 0,0,0 1386 | 0,0,0 1387 | 100,30,22 1388 | 146,43,33 1389 | 148,49,38 1390 | 146,43,33 1391 | 120,40,31 1392 | 0,0,0 1393 | 255,255,255 1394 | 255,255,255 1395 | 255,255,255 1396 | 255,255,255 1397 | 255,255,255 1398 | 255,255,255 1399 | 255,255,255 1400 | 255,255,255 1401 | 255,255,255 1402 | 255,255,255 1403 | 255,255,255 1404 | 255,255,255 1405 | 255,255,255 1406 | 255,255,255 1407 | 255,255,255 1408 | 255,255,255 1409 | 255,255,255 1410 | 255,255,255 1411 | 255,255,255 1412 | 255,255,255 1413 | 255,255,255 1414 | 255,255,255 1415 | 255,255,255 1416 | 255,255,255 1417 | 255,255,255 1418 | 255,255,255 1419 | 255,255,255 1420 | 0,0,0 1421 | 0,0,0 1422 | 64,64,64 1423 | 95,106,106 1424 | 155,155,155 1425 | 0,0,0 1426 | 0,0,0 1427 | 148,49,38 1428 | 148,49,38 1429 | 148,49,38 1430 | 120,40,31 1431 | 100,30,22 1432 | 100,30,22 1433 | 120,40,31 1434 | 146,43,33 1435 | 146,43,33 1436 | 146,43,33 1437 | 146,43,33 1438 | 146,43,33 1439 | 146,43,33 1440 | 148,49,38 1441 | 148,49,38 1442 | 148,49,38 1443 | 148,49,38 1444 | 120,40,31 1445 | 0,0,0 1446 | 0,0,0 1447 | 0,0,0 1448 | 0,0,0 1449 | 0,0,0 1450 | 0,0,0 1451 | 100,30,22 1452 | 120,40,31 1453 | 146,43,33 1454 | 146,43,33 1455 | 120,40,31 1456 | 100,30,22 1457 | 0,0,0 1458 | 255,255,255 1459 | 255,255,255 1460 | 255,255,255 1461 | 255,255,255 1462 | 255,255,255 1463 | 255,255,255 1464 | 255,255,255 1465 | 255,255,255 1466 | 255,255,255 1467 | 255,255,255 1468 | 255,255,255 1469 | 255,255,255 1470 | 255,255,255 1471 | 255,255,255 1472 | 255,255,255 1473 | 255,255,255 1474 | 255,255,255 1475 | 255,255,255 1476 | 255,255,255 1477 | 255,255,255 1478 | 255,255,255 1479 | 255,255,255 1480 | 255,255,255 1481 | 255,255,255 1482 | 255,255,255 1483 | 255,255,255 1484 | 255,255,255 1485 | 0,0,0 1486 | 64,64,64 1487 | 113,125,126 1488 | 155,155,155 1489 | 155,155,155 1490 | 0,0,0 1491 | 176,58,46 1492 | 148,49,38 1493 | 148,49,38 1494 | 120,40,31 1495 | 120,40,31 1496 | 100,30,22 1497 | 100,30,22 1498 | 120,40,31 1499 | 100,30,22 1500 | 100,30,22 1501 | 100,30,22 1502 | 100,30,22 1503 | 100,30,22 1504 | 146,43,33 1505 | 148,49,38 1506 | 148,49,38 1507 | 148,49,38 1508 | 146,43,33 1509 | 0,0,0 1510 | 0,0,0 1511 | 0,0,0 1512 | 0,0,0 1513 | 0,0,0 1514 | 100,30,22 1515 | 0,0,0 1516 | 100,30,22 1517 | 160,64,0 1518 | 146,43,33 1519 | 120,40,31 1520 | 100,30,22 1521 | 0,0,0 1522 | 255,255,255 1523 | 255,255,255 1524 | 255,255,255 1525 | 255,255,255 1526 | 255,255,255 1527 | 255,255,255 1528 | 255,255,255 1529 | 255,255,255 1530 | 255,255,255 1531 | 255,255,255 1532 | 255,255,255 1533 | 255,255,255 1534 | 255,255,255 1535 | 255,255,255 1536 | 255,255,255 1537 | 255,255,255 1538 | 255,255,255 1539 | 255,255,255 1540 | 255,255,255 1541 | 255,255,255 1542 | 255,255,255 1543 | 255,255,255 1544 | 255,255,255 1545 | 255,255,255 1546 | 255,255,255 1547 | 255,255,255 1548 | 255,255,255 1549 | 255,255,255 1550 | 255,255,255 1551 | 0,0,0 1552 | 0,0,0 1553 | 0,0,0 1554 | 0,0,0 1555 | 192,57,43 1556 | 176,58,46 1557 | 148,49,38 1558 | 148,49,38 1559 | 148,49,38 1560 | 120,40,31 1561 | 100,30,22 1562 | 100,30,22 1563 | 100,30,22 1564 | 0,0,0 1565 | 0,0,0 1566 | 100,30,22 1567 | 100,30,22 1568 | 120,40,31 1569 | 146,43,33 1570 | 148,49,38 1571 | 148,49,38 1572 | 146,43,33 1573 | 0,0,0 1574 | 0,0,0 1575 | 0,0,0 1576 | 100,30,22 1577 | 100,30,22 1578 | 100,30,22 1579 | 100,30,22 1580 | 0,0,0 1581 | 211,84,0 1582 | 160,64,0 1583 | 148,49,38 1584 | 120,40,31 1585 | 100,30,22 1586 | 0,0,0 1587 | 255,255,255 1588 | 255,255,255 1589 | 255,255,255 1590 | 255,255,255 1591 | 255,255,255 1592 | 255,255,255 1593 | 255,255,255 1594 | 255,255,255 1595 | 255,255,255 1596 | 255,255,255 1597 | 255,255,255 1598 | 255,255,255 1599 | 255,255,255 1600 | 255,255,255 1601 | 255,255,255 1602 | 255,255,255 1603 | 255,255,255 1604 | 255,255,255 1605 | 255,255,255 1606 | 255,255,255 1607 | 255,255,255 1608 | 255,255,255 1609 | 255,255,255 1610 | 255,255,255 1611 | 255,255,255 1612 | 255,255,255 1613 | 255,255,255 1614 | 255,255,255 1615 | 255,255,255 1616 | 255,255,255 1617 | 0,0,0 1618 | 0,0,0 1619 | 0,0,0 1620 | 192,57,43 1621 | 176,58,46 1622 | 148,49,38 1623 | 148,49,38 1624 | 148,49,38 1625 | 120,40,31 1626 | 100,30,22 1627 | 100,30,22 1628 | 0,0,0 1629 | 230,196,15 1630 | 0,0,0 1631 | 0,0,0 1632 | 100,30,22 1633 | 120,40,31 1634 | 146,43,33 1635 | 148,49,38 1636 | 146,43,33 1637 | 211,84,0 1638 | 0,0,0 1639 | 200,200,200 1640 | 0,0,0 1641 | 0,0,0 1642 | 100,30,22 1643 | 100,30,22 1644 | 0,0,0 1645 | 0,0,0 1646 | 211,84,0 1647 | 160,64,0 1648 | 120,40,31 1649 | 100,30,22 1650 | 100,30,22 1651 | 0,0,0 1652 | 255,255,255 1653 | 255,255,255 1654 | 255,255,255 1655 | 255,255,255 1656 | 255,255,255 1657 | 255,255,255 1658 | 255,255,255 1659 | 255,255,255 1660 | 255,255,255 1661 | 255,255,255 1662 | 255,255,255 1663 | 255,255,255 1664 | 255,255,255 1665 | 255,255,255 1666 | 255,255,255 1667 | 255,255,255 1668 | 255,255,255 1669 | 255,255,255 1670 | 255,255,255 1671 | 255,255,255 1672 | 255,255,255 1673 | 255,255,255 1674 | 255,255,255 1675 | 255,255,255 1676 | 255,255,255 1677 | 255,255,255 1678 | 255,255,255 1679 | 255,255,255 1680 | 255,255,255 1681 | 255,255,255 1682 | 255,255,255 1683 | 0,0,0 1684 | 0,0,0 1685 | 0,0,0 1686 | 0,0,0 1687 | 0,0,0 1688 | 120,40,31 1689 | 120,40,31 1690 | 120,40,31 1691 | 100,30,22 1692 | 0,0,0 1693 | 0,0,0 1694 | 220,118,51 1695 | 192,57,43 1696 | 0,0,0 1697 | 100,30,22 1698 | 120,40,31 1699 | 146,43,33 1700 | 146,43,33 1701 | 160,64,0 1702 | 0,0,0 1703 | 200,200,200 1704 | 200,200,200 1705 | 0,0,0 1706 | 0,0,0 1707 | 100,30,22 1708 | 100,30,22 1709 | 0,0,0 1710 | 0,0,0 1711 | 211,84,0 1712 | 120,40,31 1713 | 120,40,31 1714 | 100,30,22 1715 | 0,0,0 1716 | 0,0,0 1717 | 255,255,255 1718 | 255,255,255 1719 | 255,255,255 1720 | 255,255,255 1721 | 255,255,255 1722 | 255,255,255 1723 | 255,255,255 1724 | 255,255,255 1725 | 255,255,255 1726 | 255,255,255 1727 | 255,255,255 1728 | 255,255,255 1729 | 255,255,255 1730 | 255,255,255 1731 | 255,255,255 1732 | 255,255,255 1733 | 255,255,255 1734 | 255,255,255 1735 | 255,255,255 1736 | 255,255,255 1737 | 255,255,255 1738 | 255,255,255 1739 | 255,255,255 1740 | 255,255,255 1741 | 255,255,255 1742 | 255,255,255 1743 | 255,255,255 1744 | 255,255,255 1745 | 255,255,255 1746 | 255,255,255 1747 | 255,255,255 1748 | 255,255,255 1749 | 0,0,0 1750 | 0,0,0 1751 | 120,40,31 1752 | 120,40,31 1753 | 120,40,31 1754 | 120,40,31 1755 | 100,30,22 1756 | 100,30,22 1757 | 0,0,0 1758 | 192,57,43 1759 | 0,0,0 1760 | 0,0,0 1761 | 100,30,22 1762 | 100,30,22 1763 | 146,43,33 1764 | 146,43,33 1765 | 146,43,33 1766 | 0,0,0 1767 | 200,200,200 1768 | 200,200,200 1769 | 0,0,0 1770 | 100,30,22 1771 | 100,30,22 1772 | 0,0,0 1773 | 0,0,0 1774 | 0,0,0 1775 | 0,0,0 1776 | 160,64,0 1777 | 148,49,38 1778 | 120,40,31 1779 | 100,30,22 1780 | 100,30,22 1781 | 0,0,0 1782 | 255,255,255 1783 | 255,255,255 1784 | 255,255,255 1785 | 255,255,255 1786 | 255,255,255 1787 | 255,255,255 1788 | 255,255,255 1789 | 255,255,255 1790 | 255,255,255 1791 | 255,255,255 1792 | 255,255,255 1793 | 255,255,255 1794 | 255,255,255 1795 | 255,255,255 1796 | 255,255,255 1797 | 255,255,255 1798 | 255,255,255 1799 | 255,255,255 1800 | 255,255,255 1801 | 255,255,255 1802 | 255,255,255 1803 | 255,255,255 1804 | 255,255,255 1805 | 255,255,255 1806 | 255,255,255 1807 | 255,255,255 1808 | 255,255,255 1809 | 255,255,255 1810 | 255,255,255 1811 | 255,255,255 1812 | 255,255,255 1813 | 0,0,0 1814 | 0,0,0 1815 | 0,0,0 1816 | 120,40,31 1817 | 120,40,31 1818 | 148,49,38 1819 | 120,40,31 1820 | 100,30,22 1821 | 0,0,0 1822 | 0,0,0 1823 | 0,0,0 1824 | 192,57,43 1825 | 0,0,0 1826 | 100,30,22 1827 | 120,40,31 1828 | 146,43,33 1829 | 148,49,38 1830 | 211,84,0 1831 | 0,0,0 1832 | 0,0,0 1833 | 0,0,0 1834 | 100,30,22 1835 | 100,30,22 1836 | 0,0,0 1837 | 200,200,200 1838 | 200,200,200 1839 | 0,0,0 1840 | 211,84,0 1841 | 160,64,0 1842 | 148,49,38 1843 | 148,49,38 1844 | 120,40,31 1845 | 100,30,22 1846 | 0,0,0 1847 | 0,0,0 1848 | 255,255,255 1849 | 255,255,255 1850 | 255,255,255 1851 | 255,255,255 1852 | 255,255,255 1853 | 255,255,255 1854 | 255,255,255 1855 | 255,255,255 1856 | 255,255,255 1857 | 255,255,255 1858 | 255,255,255 1859 | 255,255,255 1860 | 255,255,255 1861 | 255,255,255 1862 | 255,255,255 1863 | 255,255,255 1864 | 255,255,255 1865 | 255,255,255 1866 | 255,255,255 1867 | 255,255,255 1868 | 255,255,255 1869 | 255,255,255 1870 | 255,255,255 1871 | 255,255,255 1872 | 255,255,255 1873 | 255,255,255 1874 | 255,255,255 1875 | 0,0,0 1876 | 0,0,0 1877 | 0,0,0 1878 | 0,0,0 1879 | 0,0,0 1880 | 120,40,31 1881 | 148,49,38 1882 | 148,49,38 1883 | 148,49,38 1884 | 100,30,22 1885 | 100,30,22 1886 | 0,0,0 1887 | 0,0,0 1888 | 0,0,0 1889 | 220,118,51 1890 | 0,0,0 1891 | 100,30,22 1892 | 146,43,33 1893 | 148,49,38 1894 | 160,64,0 1895 | 0,0,0 1896 | 0,0,0 1897 | 100,30,22 1898 | 100,30,22 1899 | 0,0,0 1900 | 0,0,0 1901 | 0,0,0 1902 | 0,0,0 1903 | 0,0,0 1904 | 0,0,0 1905 | 211,84,0 1906 | 160,64,0 1907 | 146,43,33 1908 | 146,43,33 1909 | 120,40,31 1910 | 100,30,22 1911 | 0,0,0 1912 | 255,255,255 1913 | 255,255,255 1914 | 255,255,255 1915 | 255,255,255 1916 | 255,255,255 1917 | 255,255,255 1918 | 255,255,255 1919 | 255,255,255 1920 | 255,255,255 1921 | 255,255,255 1922 | 255,255,255 1923 | 255,255,255 1924 | 255,255,255 1925 | 255,255,255 1926 | 255,255,255 1927 | 255,255,255 1928 | 255,255,255 1929 | 255,255,255 1930 | 255,255,255 1931 | 255,255,255 1932 | 255,255,255 1933 | 255,255,255 1934 | 255,255,255 1935 | 255,255,255 1936 | 0,0,0 1937 | 0,0,0 1938 | 0,0,0 1939 | 0,0,0 1940 | 77,86,86 1941 | 77,86,86 1942 | 77,86,86 1943 | 0,0,0 1944 | 192,57,43 1945 | 148,49,38 1946 | 148,49,38 1947 | 148,49,38 1948 | 120,40,31 1949 | 120,40,31 1950 | 100,30,22 1951 | 100,30,22 1952 | 0,0,0 1953 | 0,0,0 1954 | 0,0,0 1955 | 120,40,31 1956 | 146,43,33 1957 | 148,49,38 1958 | 146,43,33 1959 | 0,0,0 1960 | 0,0,0 1961 | 0,0,0 1962 | 0,0,0 1963 | 100,30,22 1964 | 100,30,22 1965 | 100,30,22 1966 | 100,30,22 1967 | 100,30,22 1968 | 100,30,22 1969 | 0,0,0 1970 | 211,84,0 1971 | 160,64,0 1972 | 146,43,33 1973 | 146,43,33 1974 | 100,30,22 1975 | 0,0,0 1976 | 255,255,255 1977 | 255,255,255 1978 | 255,255,255 1979 | 255,255,255 1980 | 255,255,255 1981 | 255,255,255 1982 | 255,255,255 1983 | 255,255,255 1984 | 255,255,255 1985 | 255,255,255 1986 | 255,255,255 1987 | 255,255,255 1988 | 255,255,255 1989 | 255,255,255 1990 | 255,255,255 1991 | 255,255,255 1992 | 255,255,255 1993 | 255,255,255 1994 | 255,255,255 1995 | 255,255,255 1996 | 255,255,255 1997 | 255,255,255 1998 | 255,255,255 1999 | 255,255,255 2000 | 255,255,255 2001 | 0,0,0 2002 | 0,0,0 2003 | 77,86,86 2004 | 95,106,106 2005 | 95,106,106 2006 | 95,106,106 2007 | 95,106,106 2008 | 0,0,0 2009 | 192,57,43 2010 | 176,58,46 2011 | 0,0,0 2012 | 148,49,38 2013 | 120,40,31 2014 | 120,40,31 2015 | 100,30,22 2016 | 100,30,22 2017 | 120,40,31 2018 | 0,0,0 2019 | 120,40,31 2020 | 146,43,33 2021 | 148,49,38 2022 | 146,43,33 2023 | 146,43,33 2024 | 0,0,0 2025 | 200,200,200 2026 | 200,200,200 2027 | 0,0,0 2028 | 0,0,0 2029 | 100,30,22 2030 | 100,30,22 2031 | 100,30,22 2032 | 100,30,22 2033 | 0,0,0 2034 | 0,0,0 2035 | 211,84,0 2036 | 120,40,31 2037 | 148,49,38 2038 | 120,40,31 2039 | 100,30,22 2040 | 0,0,0 2041 | 255,255,255 2042 | 255,255,255 2043 | 255,255,255 2044 | 255,255,255 2045 | 255,255,255 2046 | 255,255,255 2047 | 255,255,255 2048 | 255,255,255 2049 | 255,255,255 2050 | 255,255,255 2051 | 255,255,255 2052 | 255,255,255 2053 | 255,255,255 2054 | 255,255,255 2055 | 255,255,255 2056 | 255,255,255 2057 | 255,255,255 2058 | 255,255,255 2059 | 255,255,255 2060 | 255,255,255 2061 | 255,255,255 2062 | 255,255,255 2063 | 255,255,255 2064 | 255,255,255 2065 | 255,255,255 2066 | 0,0,0 2067 | 0,0,0 2068 | 0,0,0 2069 | 113,125,126 2070 | 113,125,126 2071 | 155,155,155 2072 | 0,0,0 2073 | 0,0,0 2074 | 0,0,0 2075 | 0,0,0 2076 | 148,49,38 2077 | 148,49,38 2078 | 120,40,31 2079 | 120,40,31 2080 | 100,30,22 2081 | 120,40,31 2082 | 120,40,31 2083 | 120,40,31 2084 | 146,43,33 2085 | 148,49,38 2086 | 148,49,38 2087 | 211,84,0 2088 | 0,0,0 2089 | 0,0,0 2090 | 0,0,0 2091 | 0,0,0 2092 | 0,0,0 2093 | 100,30,22 2094 | 100,30,22 2095 | 100,30,22 2096 | 100,30,22 2097 | 0,0,0 2098 | 0,0,0 2099 | 0,0,0 2100 | 160,64,0 2101 | 146,43,33 2102 | 146,43,33 2103 | 100,30,22 2104 | 100,30,22 2105 | 255,255,255 2106 | 255,255,255 2107 | 255,255,255 2108 | 255,255,255 2109 | 255,255,255 2110 | 255,255,255 2111 | 255,255,255 2112 | 255,255,255 2113 | 255,255,255 2114 | 255,255,255 2115 | 255,255,255 2116 | 255,255,255 2117 | 255,255,255 2118 | 255,255,255 2119 | 255,255,255 2120 | 255,255,255 2121 | 255,255,255 2122 | 255,255,255 2123 | 255,255,255 2124 | 255,255,255 2125 | 255,255,255 2126 | 255,255,255 2127 | 255,255,255 2128 | 255,255,255 2129 | 255,255,255 2130 | 255,255,255 2131 | 255,255,255 2132 | 0,0,0 2133 | 0,0,0 2134 | 0,0,0 2135 | 0,0,0 2136 | 0,0,0 2137 | 0,0,0 2138 | 120,40,31 2139 | 120,40,31 2140 | 120,40,31 2141 | 148,49,38 2142 | 148,49,38 2143 | 120,40,31 2144 | 120,40,31 2145 | 100,30,22 2146 | 146,43,33 2147 | 146,43,33 2148 | 148,49,38 2149 | 148,49,38 2150 | 148,49,38 2151 | 160,64,0 2152 | 0,0,0 2153 | 0,0,0 2154 | 0,0,0 2155 | 0,0,0 2156 | 100,30,22 2157 | 100,30,22 2158 | 100,30,22 2159 | 100,30,22 2160 | 0,0,0 2161 | 0,0,0 2162 | 200,200,200 2163 | 0,0,0 2164 | 211,84,0 2165 | 120,40,31 2166 | 148,49,38 2167 | 120,40,31 2168 | 100,30,22 2169 | 255,255,255 2170 | 255,255,255 2171 | 255,255,255 2172 | 255,255,255 2173 | 255,255,255 2174 | 255,255,255 2175 | 255,255,255 2176 | 255,255,255 2177 | 255,255,255 2178 | 255,255,255 2179 | 255,255,255 2180 | 255,255,255 2181 | 255,255,255 2182 | 255,255,255 2183 | 255,255,255 2184 | 255,255,255 2185 | 255,255,255 2186 | 255,255,255 2187 | 255,255,255 2188 | 255,255,255 2189 | 255,255,255 2190 | 255,255,255 2191 | 255,255,255 2192 | 255,255,255 2193 | 255,255,255 2194 | 255,255,255 2195 | 255,255,255 2196 | 255,255,255 2197 | 255,255,255 2198 | 255,255,255 2199 | 255,255,255 2200 | 255,255,255 2201 | 0,0,0 2202 | 120,40,31 2203 | 120,40,31 2204 | 120,40,31 2205 | 148,49,38 2206 | 148,49,38 2207 | 148,49,38 2208 | 120,40,31 2209 | 100,30,22 2210 | 146,43,33 2211 | 148,49,38 2212 | 148,49,38 2213 | 148,49,38 2214 | 148,49,38 2215 | 146,43,33 2216 | 146,43,33 2217 | 0,0,0 2218 | 0,0,0 2219 | 0,0,0 2220 | 0,0,0 2221 | 100,30,22 2222 | 100,30,22 2223 | 0,0,0 2224 | 0,0,0 2225 | 200,200,200 2226 | 200,200,200 2227 | 200,200,200 2228 | 0,0,0 2229 | 160,64,0 2230 | 148,49,38 2231 | 120,40,31 2232 | 0,0,0 2233 | 255,255,255 2234 | 255,255,255 2235 | 255,255,255 2236 | 255,255,255 2237 | 255,255,255 2238 | 255,255,255 2239 | 255,255,255 2240 | 255,255,255 2241 | 255,255,255 2242 | 255,255,255 2243 | 255,255,255 2244 | 255,255,255 2245 | 255,255,255 2246 | 255,255,255 2247 | 255,255,255 2248 | 255,255,255 2249 | 255,255,255 2250 | 255,255,255 2251 | 255,255,255 2252 | 255,255,255 2253 | 255,255,255 2254 | 255,255,255 2255 | 255,255,255 2256 | 255,255,255 2257 | 255,255,255 2258 | 255,255,255 2259 | 255,255,255 2260 | 255,255,255 2261 | 255,255,255 2262 | 255,255,255 2263 | 255,255,255 2264 | 255,255,255 2265 | 0,0,0 2266 | 0,0,0 2267 | 120,40,31 2268 | 120,40,31 2269 | 148,49,38 2270 | 148,49,38 2271 | 148,49,38 2272 | 120,40,31 2273 | 120,40,31 2274 | 100,30,22 2275 | 146,43,33 2276 | 148,49,38 2277 | 148,49,38 2278 | 148,49,38 2279 | 148,49,38 2280 | 211,84,0 2281 | 0,0,0 2282 | 0,0,0 2283 | 255,255,255 2284 | 0,0,0 2285 | 0,0,0 2286 | 100,30,22 2287 | 100,30,22 2288 | 0,0,0 2289 | 0,0,0 2290 | 0,0,0 2291 | 0,0,0 2292 | 0,0,0 2293 | 211,84,0 2294 | 160,64,0 2295 | 120,40,31 2296 | 100,30,22 2297 | 255,255,255 2298 | 255,255,255 2299 | 255,255,255 2300 | 255,255,255 2301 | 255,255,255 2302 | 255,255,255 2303 | 255,255,255 2304 | 255,255,255 2305 | 255,255,255 2306 | 255,255,255 2307 | 255,255,255 2308 | 255,255,255 2309 | 255,255,255 2310 | 255,255,255 2311 | 255,255,255 2312 | 255,255,255 2313 | 255,255,255 2314 | 255,255,255 2315 | 255,255,255 2316 | 255,255,255 2317 | 255,255,255 2318 | 255,255,255 2319 | 255,255,255 2320 | 255,255,255 2321 | 255,255,255 2322 | 255,255,255 2323 | 255,255,255 2324 | 255,255,255 2325 | 255,255,255 2326 | 255,255,255 2327 | 255,255,255 2328 | 255,255,255 2329 | 255,255,255 2330 | 0,0,0 2331 | 120,40,31 2332 | 120,40,31 2333 | 148,49,38 2334 | 148,49,38 2335 | 148,49,38 2336 | 148,49,38 2337 | 120,40,31 2338 | 100,30,22 2339 | 146,43,33 2340 | 148,49,38 2341 | 148,49,38 2342 | 148,49,38 2343 | 148,49,38 2344 | 160,64,0 2345 | 0,0,0 2346 | 0,0,0 2347 | 0,0,0 2348 | 0,0,0 2349 | 0,0,0 2350 | 0,0,0 2351 | 100,30,22 2352 | 100,30,22 2353 | 100,30,22 2354 | 100,30,22 2355 | 100,30,22 2356 | 100,30,22 2357 | 0,0,0 2358 | 211,84,0 2359 | 120,40,31 2360 | 100,30,22 2361 | 0,0,0 2362 | 255,255,255 2363 | 255,255,255 2364 | 255,255,255 2365 | 255,255,255 2366 | 255,255,255 2367 | 255,255,255 2368 | 255,255,255 2369 | 255,255,255 2370 | 255,255,255 2371 | 255,255,255 2372 | 255,255,255 2373 | 255,255,255 2374 | 255,255,255 2375 | 255,255,255 2376 | 255,255,255 2377 | 255,255,255 2378 | 255,255,255 2379 | 255,255,255 2380 | 255,255,255 2381 | 255,255,255 2382 | 255,255,255 2383 | 255,255,255 2384 | 255,255,255 2385 | 255,255,255 2386 | 255,255,255 2387 | 255,255,255 2388 | 255,255,255 2389 | 255,255,255 2390 | 255,255,255 2391 | 255,255,255 2392 | 255,255,255 2393 | 0,0,0 2394 | 0,0,0 2395 | 0,0,0 2396 | 120,40,31 2397 | 148,49,38 2398 | 148,49,38 2399 | 148,49,38 2400 | 148,49,38 2401 | 120,40,31 2402 | 100,30,22 2403 | 146,43,33 2404 | 148,49,38 2405 | 148,49,38 2406 | 148,49,38 2407 | 148,49,38 2408 | 146,43,33 2409 | 211,84,0 2410 | 0,0,0 2411 | 200,200,200 2412 | 200,200,200 2413 | 0,0,0 2414 | 0,0,0 2415 | 100,30,22 2416 | 100,30,22 2417 | 100,30,22 2418 | 100,30,22 2419 | 100,30,22 2420 | 100,30,22 2421 | 0,0,0 2422 | 0,0,0 2423 | 160,64,0 2424 | 100,30,22 2425 | 0,0,0 2426 | 255,255,255 2427 | 255,255,255 2428 | 255,255,255 2429 | 255,255,255 2430 | 255,255,255 2431 | 255,255,255 2432 | 255,255,255 2433 | 255,255,255 2434 | 255,255,255 2435 | 255,255,255 2436 | 255,255,255 2437 | 255,255,255 2438 | 255,255,255 2439 | 255,255,255 2440 | 255,255,255 2441 | 255,255,255 2442 | 255,255,255 2443 | 255,255,255 2444 | 255,255,255 2445 | 255,255,255 2446 | 255,255,255 2447 | 255,255,255 2448 | 255,255,255 2449 | 255,255,255 2450 | 255,255,255 2451 | 255,255,255 2452 | 255,255,255 2453 | 255,255,255 2454 | 255,255,255 2455 | 255,255,255 2456 | 0,0,0 2457 | 0,0,0 2458 | 77,86,86 2459 | 0,0,0 2460 | 176,58,46 2461 | 148,49,38 2462 | 0,0,0 2463 | 0,0,0 2464 | 148,49,38 2465 | 148,49,38 2466 | 120,40,31 2467 | 100,30,22 2468 | 146,43,33 2469 | 148,49,38 2470 | 148,49,38 2471 | 148,49,38 2472 | 148,49,38 2473 | 211,84,0 2474 | 0,0,0 2475 | 200,200,200 2476 | 0,0,0 2477 | 0,0,0 2478 | 0,0,0 2479 | 0,0,0 2480 | 100,30,22 2481 | 100,30,22 2482 | 100,30,22 2483 | 100,30,22 2484 | 0,0,0 2485 | 0,0,0 2486 | 0,0,0 2487 | 211,84,0 2488 | 160,64,0 2489 | 255,255,255 2490 | 255,255,255 2491 | 255,255,255 2492 | 255,255,255 2493 | 255,255,255 2494 | 255,255,255 2495 | 255,255,255 2496 | 255,255,255 2497 | 255,255,255 2498 | 255,255,255 2499 | 255,255,255 2500 | 255,255,255 2501 | 255,255,255 2502 | 255,255,255 2503 | 255,255,255 2504 | 255,255,255 2505 | 255,255,255 2506 | 255,255,255 2507 | 255,255,255 2508 | 255,255,255 2509 | 255,255,255 2510 | 255,255,255 2511 | 255,255,255 2512 | 255,255,255 2513 | 255,255,255 2514 | 255,255,255 2515 | 255,255,255 2516 | 255,255,255 2517 | 255,255,255 2518 | 0,0,0 2519 | 0,0,0 2520 | 0,0,0 2521 | 77,86,86 2522 | 95,106,106 2523 | 0,0,0 2524 | 192,57,43 2525 | 0,0,0 2526 | 0,0,0 2527 | 120,40,31 2528 | 148,49,38 2529 | 148,49,38 2530 | 120,40,31 2531 | 100,30,22 2532 | 146,43,33 2533 | 148,49,38 2534 | 148,49,38 2535 | 148,49,38 2536 | 148,49,38 2537 | 160,64,0 2538 | 0,0,0 2539 | 0,0,0 2540 | 0,0,0 2541 | 255,255,255 2542 | 255,255,255 2543 | 0,0,0 2544 | 0,0,0 2545 | 0,0,0 2546 | 0,0,0 2547 | 0,0,0 2548 | 0,0,0 2549 | 200,200,200 2550 | 0,0,0 2551 | 211,84,0 2552 | 0,0,0 2553 | 255,255,255 2554 | 255,255,255 2555 | 255,255,255 2556 | 255,255,255 2557 | 255,255,255 2558 | 255,255,255 2559 | 255,255,255 2560 | 255,255,255 2561 | 255,255,255 2562 | 255,255,255 2563 | 255,255,255 2564 | 255,255,255 2565 | 255,255,255 2566 | 255,255,255 2567 | 255,255,255 2568 | 255,255,255 2569 | 255,255,255 2570 | 255,255,255 2571 | 255,255,255 2572 | 255,255,255 2573 | 255,255,255 2574 | 255,255,255 2575 | 255,255,255 2576 | 255,255,255 2577 | 255,255,255 2578 | 255,255,255 2579 | 255,255,255 2580 | 255,255,255 2581 | 0,0,0 2582 | 0,0,0 2583 | 77,86,86 2584 | 77,86,86 2585 | 95,106,106 2586 | 113,125,126 2587 | 155,155,155 2588 | 0,0,0 2589 | 0,0,0 2590 | 0,0,0 2591 | 120,40,31 2592 | 148,49,38 2593 | 148,49,38 2594 | 148,49,38 2595 | 120,40,31 2596 | 100,30,22 2597 | 146,43,33 2598 | 148,49,38 2599 | 148,49,38 2600 | 148,49,38 2601 | 146,43,33 2602 | 211,84,0 2603 | 0,0,0 2604 | 0,0,0 2605 | 255,255,255 2606 | 255,255,255 2607 | 255,255,255 2608 | 0,0,0 2609 | 0,0,0 2610 | 0,0,0 2611 | 255,255,255 2612 | 0,0,0 2613 | 0,0,0 2614 | 0,0,0 2615 | 0,0,0 2616 | 0,0,0 2617 | 255,255,255 2618 | 255,255,255 2619 | 255,255,255 2620 | 255,255,255 2621 | 255,255,255 2622 | 255,255,255 2623 | 255,255,255 2624 | 255,255,255 2625 | 255,255,255 2626 | 255,255,255 2627 | 255,255,255 2628 | 255,255,255 2629 | 255,255,255 2630 | 255,255,255 2631 | 255,255,255 2632 | 255,255,255 2633 | 255,255,255 2634 | 255,255,255 2635 | 255,255,255 2636 | 255,255,255 2637 | 255,255,255 2638 | 255,255,255 2639 | 255,255,255 2640 | 255,255,255 2641 | 255,255,255 2642 | 255,255,255 2643 | 255,255,255 2644 | 255,255,255 2645 | 255,255,255 2646 | 0,0,0 2647 | 0,0,0 2648 | 0,0,0 2649 | 113,125,126 2650 | 155,155,155 2651 | 0,0,0 2652 | 0,0,0 2653 | 0,0,0 2654 | 120,40,31 2655 | 120,40,31 2656 | 148,49,38 2657 | 148,49,38 2658 | 148,49,38 2659 | 120,40,31 2660 | 100,30,22 2661 | 146,43,33 2662 | 148,49,38 2663 | 148,49,38 2664 | 148,49,38 2665 | 148,49,38 2666 | 211,84,0 2667 | 0,0,0 2668 | 0,0,0 2669 | 0,0,0 2670 | 0,0,0 2671 | 0,0,0 2672 | 255,255,255 2673 | 0,0,0 2674 | 0,0,0 2675 | 0,0,0 2676 | 255,255,255 2677 | 255,255,255 2678 | 0,0,0 2679 | 255,255,255 2680 | 255,255,255 2681 | 255,255,255 2682 | 255,255,255 2683 | 255,255,255 2684 | 255,255,255 2685 | 255,255,255 2686 | 255,255,255 2687 | 255,255,255 2688 | 255,255,255 2689 | 255,255,255 2690 | 255,255,255 2691 | 255,255,255 2692 | 255,255,255 2693 | 255,255,255 2694 | 255,255,255 2695 | 255,255,255 2696 | 255,255,255 2697 | 255,255,255 2698 | 255,255,255 2699 | 255,255,255 2700 | 255,255,255 2701 | 255,255,255 2702 | 255,255,255 2703 | 255,255,255 2704 | 255,255,255 2705 | 255,255,255 2706 | 255,255,255 2707 | 255,255,255 2708 | 255,255,255 2709 | 255,255,255 2710 | 255,255,255 2711 | 255,255,255 2712 | 0,0,0 2713 | 0,0,0 2714 | 0,0,0 2715 | 0,0,0 2716 | 255,255,255 2717 | 0,0,0 2718 | 120,40,31 2719 | 120,40,31 2720 | 148,49,38 2721 | 148,49,38 2722 | 148,49,38 2723 | 120,40,31 2724 | 100,30,22 2725 | 146,43,33 2726 | 148,49,38 2727 | 148,49,38 2728 | 148,49,38 2729 | 148,49,38 2730 | 160,64,0 2731 | 0,0,0 2732 | 200,200,200 2733 | 0,0,0 2734 | 0,0,0 2735 | 0,0,0 2736 | 255,255,255 2737 | 0,0,0 2738 | 255,255,255 2739 | 0,0,0 2740 | 0,0,0 2741 | 0,0,0 2742 | 0,0,0 2743 | 255,255,255 2744 | 255,255,255 2745 | 255,255,255 2746 | 255,255,255 2747 | 255,255,255 2748 | 255,255,255 2749 | 255,255,255 2750 | 255,255,255 2751 | 255,255,255 2752 | 255,255,255 2753 | 255,255,255 2754 | 255,255,255 2755 | 255,255,255 2756 | 255,255,255 2757 | 255,255,255 2758 | 255,255,255 2759 | 255,255,255 2760 | 255,255,255 2761 | 255,255,255 2762 | 255,255,255 2763 | 255,255,255 2764 | 255,255,255 2765 | 255,255,255 2766 | 255,255,255 2767 | 255,255,255 2768 | 255,255,255 2769 | 255,255,255 2770 | 255,255,255 2771 | 255,255,255 2772 | 255,255,255 2773 | 255,255,255 2774 | 255,255,255 2775 | 255,255,255 2776 | 255,255,255 2777 | 255,255,255 2778 | 255,255,255 2779 | 255,255,255 2780 | 255,255,255 2781 | 0,0,0 2782 | 192,57,43 2783 | 148,49,38 2784 | 148,49,38 2785 | 148,49,38 2786 | 148,49,38 2787 | 146,43,33 2788 | 120,40,31 2789 | 100,30,22 2790 | 146,43,33 2791 | 148,49,38 2792 | 148,49,38 2793 | 148,49,38 2794 | 146,43,33 2795 | 0,0,0 2796 | 200,200,200 2797 | 0,0,0 2798 | 255,255,255 2799 | 255,255,255 2800 | 0,0,0 2801 | 0,0,0 2802 | 0,0,0 2803 | 0,0,0 2804 | 255,255,255 2805 | 0,0,0 2806 | 0,0,0 2807 | 255,255,255 2808 | 255,255,255 2809 | 0,0,0 2810 | 0,0,0 2811 | 0,0,0 2812 | 0,0,0 2813 | 0,0,0 2814 | 0,0,0 2815 | 255,255,255 2816 | 255,255,255 2817 | 255,255,255 2818 | 255,255,255 2819 | 255,255,255 2820 | 255,255,255 2821 | 255,255,255 2822 | 255,255,255 2823 | 255,255,255 2824 | 255,255,255 2825 | 255,255,255 2826 | 255,255,255 2827 | 255,255,255 2828 | 255,255,255 2829 | 255,255,255 2830 | 255,255,255 2831 | 255,255,255 2832 | 255,255,255 2833 | 255,255,255 2834 | 255,255,255 2835 | 255,255,255 2836 | 255,255,255 2837 | 255,255,255 2838 | 255,255,255 2839 | 255,255,255 2840 | 255,255,255 2841 | 255,255,255 2842 | 255,255,255 2843 | 255,255,255 2844 | 255,255,255 2845 | 255,255,255 2846 | 0,0,0 2847 | 176,58,46 2848 | 0,0,0 2849 | 120,40,31 2850 | 148,49,38 2851 | 146,43,33 2852 | 120,40,31 2853 | 100,30,22 2854 | 146,43,33 2855 | 146,43,33 2856 | 146,43,33 2857 | 146,43,33 2858 | 146,43,33 2859 | 0,0,0 2860 | 0,0,0 2861 | 255,255,255 2862 | 255,255,255 2863 | 255,255,255 2864 | 255,255,255 2865 | 255,255,255 2866 | 255,255,255 2867 | 255,255,255 2868 | 255,255,255 2869 | 255,255,255 2870 | 255,255,255 2871 | 255,255,255 2872 | 255,255,255 2873 | 0,0,0 2874 | 244,208,63 2875 | 242,156,18 2876 | 192,57,43 2877 | 192,57,43 2878 | 0,0,0 2879 | 0,0,0 2880 | 255,255,255 2881 | 255,255,255 2882 | 255,255,255 2883 | 255,255,255 2884 | 255,255,255 2885 | 255,255,255 2886 | 255,255,255 2887 | 255,255,255 2888 | 255,255,255 2889 | 255,255,255 2890 | 255,255,255 2891 | 255,255,255 2892 | 255,255,255 2893 | 255,255,255 2894 | 255,255,255 2895 | 255,255,255 2896 | 255,255,255 2897 | 255,255,255 2898 | 255,255,255 2899 | 255,255,255 2900 | 255,255,255 2901 | 255,255,255 2902 | 255,255,255 2903 | 255,255,255 2904 | 255,255,255 2905 | 255,255,255 2906 | 255,255,255 2907 | 255,255,255 2908 | 255,255,255 2909 | 255,255,255 2910 | 0,0,0 2911 | 0,0,0 2912 | 0,0,0 2913 | 120,40,31 2914 | 148,49,38 2915 | 146,43,33 2916 | 120,40,31 2917 | 100,30,22 2918 | 0,0,0 2919 | 0,0,0 2920 | 0,0,0 2921 | 0,0,0 2922 | 146,43,33 2923 | 0,0,0 2924 | 0,0,0 2925 | 255,255,255 2926 | 255,255,255 2927 | 255,255,255 2928 | 255,255,255 2929 | 0,0,0 2930 | 0,0,0 2931 | 192,57,43 2932 | 255,255,255 2933 | 255,255,255 2934 | 255,255,255 2935 | 255,255,255 2936 | 255,255,255 2937 | 0,0,0 2938 | 0,0,0 2939 | 0,0,0 2940 | 0,0,0 2941 | 0,0,0 2942 | 0,0,0 2943 | 0,0,0 2944 | 0,0,0 2945 | 255,255,255 2946 | 255,255,255 2947 | 255,255,255 2948 | 255,255,255 2949 | 255,255,255 2950 | 255,255,255 2951 | 255,255,255 2952 | 255,255,255 2953 | 255,255,255 2954 | 255,255,255 2955 | 255,255,255 2956 | 255,255,255 2957 | 255,255,255 2958 | 255,255,255 2959 | 255,255,255 2960 | 255,255,255 2961 | 255,255,255 2962 | 255,255,255 2963 | 255,255,255 2964 | 255,255,255 2965 | 255,255,255 2966 | 255,255,255 2967 | 255,255,255 2968 | 255,255,255 2969 | 255,255,255 2970 | 255,255,255 2971 | 255,255,255 2972 | 255,255,255 2973 | 255,255,255 2974 | 0,0,0 2975 | 0,0,0 2976 | 120,40,31 2977 | 120,40,31 2978 | 148,49,38 2979 | 148,49,38 2980 | 146,43,33 2981 | 100,30,22 2982 | 0,0,0 2983 | 0,0,0 2984 | 0,0,0 2985 | 0,0,0 2986 | 100,30,22 2987 | 160,64,0 2988 | 0,0,0 2989 | 0,0,0 2990 | 0,0,0 2991 | 255,255,255 2992 | 255,255,255 2993 | 255,255,255 2994 | 0,0,0 2995 | 192,57,43 2996 | 192,57,43 2997 | 0,0,0 2998 | 255,255,255 2999 | 255,255,255 3000 | 255,255,255 3001 | 255,255,255 3002 | 255,255,255 3003 | 255,255,255 3004 | 0,0,0 3005 | 0,0,0 3006 | 255,255,255 3007 | 255,255,255 3008 | 255,255,255 3009 | 255,255,255 3010 | 255,255,255 3011 | 255,255,255 3012 | 255,255,255 3013 | 255,255,255 3014 | 255,255,255 3015 | 255,255,255 3016 | 255,255,255 3017 | 255,255,255 3018 | 255,255,255 3019 | 255,255,255 3020 | 255,255,255 3021 | 255,255,255 3022 | 255,255,255 3023 | 255,255,255 3024 | 255,255,255 3025 | 255,255,255 3026 | 255,255,255 3027 | 255,255,255 3028 | 255,255,255 3029 | 255,255,255 3030 | 255,255,255 3031 | 255,255,255 3032 | 255,255,255 3033 | 255,255,255 3034 | 255,255,255 3035 | 0,0,0 3036 | 0,0,0 3037 | 0,0,0 3038 | 0,0,0 3039 | 0,0,0 3040 | 120,40,31 3041 | 148,49,38 3042 | 148,49,38 3043 | 0,0,0 3044 | 148,49,38 3045 | 120,40,31 3046 | 100,30,22 3047 | 0,0,0 3048 | 0,0,0 3049 | 100,30,22 3050 | 120,40,31 3051 | 211,84,0 3052 | 0,0,0 3053 | 200,200,200 3054 | 0,0,0 3055 | 0,0,0 3056 | 0,0,0 3057 | 255,255,255 3058 | 0,0,0 3059 | 0,0,0 3060 | 192,57,43 3061 | 0,0,0 3062 | 255,255,255 3063 | 255,255,255 3064 | 255,255,255 3065 | 255,255,255 3066 | 255,255,255 3067 | 255,255,255 3068 | 255,255,255 3069 | 255,255,255 3070 | 255,255,255 3071 | 255,255,255 3072 | 255,255,255 3073 | 255,255,255 3074 | 255,255,255 3075 | 255,255,255 3076 | 255,255,255 3077 | 255,255,255 3078 | 255,255,255 3079 | 255,255,255 3080 | 255,255,255 3081 | 255,255,255 3082 | 255,255,255 3083 | 255,255,255 3084 | 255,255,255 3085 | 255,255,255 3086 | 255,255,255 3087 | 255,255,255 3088 | 255,255,255 3089 | 255,255,255 3090 | 255,255,255 3091 | 255,255,255 3092 | 255,255,255 3093 | 255,255,255 3094 | 255,255,255 3095 | 255,255,255 3096 | 255,255,255 3097 | 255,255,255 3098 | 255,255,255 3099 | 0,0,0 3100 | 0,0,0 3101 | 95,106,106 3102 | 113,125,126 3103 | 0,0,0 3104 | 0,0,0 3105 | 0,0,0 3106 | 0,0,0 3107 | 0,0,0 3108 | 148,49,38 3109 | 146,43,33 3110 | 120,40,31 3111 | 120,40,31 3112 | 120,40,31 3113 | 120,40,31 3114 | 148,49,38 3115 | 211,84,0 3116 | 0,0,0 3117 | 200,200,200 3118 | 0,0,0 3119 | 0,0,0 3120 | 255,255,255 3121 | 255,255,255 3122 | 255,255,255 3123 | 0,0,0 3124 | 192,57,43 3125 | 242,156,18 3126 | 0,0,0 3127 | 0,0,0 3128 | 255,255,255 3129 | 255,255,255 3130 | 255,255,255 3131 | 255,255,255 3132 | 255,255,255 3133 | 255,255,255 3134 | 255,255,255 3135 | 255,255,255 3136 | 255,255,255 3137 | 255,255,255 3138 | 255,255,255 3139 | 255,255,255 3140 | 255,255,255 3141 | 255,255,255 3142 | 255,255,255 3143 | 255,255,255 3144 | 255,255,255 3145 | 255,255,255 3146 | 255,255,255 3147 | 255,255,255 3148 | 255,255,255 3149 | 255,255,255 3150 | 255,255,255 3151 | 255,255,255 3152 | 255,255,255 3153 | 255,255,255 3154 | 255,255,255 3155 | 255,255,255 3156 | 255,255,255 3157 | 255,255,255 3158 | 255,255,255 3159 | 255,255,255 3160 | 255,255,255 3161 | 255,255,255 3162 | 255,255,255 3163 | 255,255,255 3164 | 0,0,0 3165 | 0,0,0 3166 | 0,0,0 3167 | 0,0,0 3168 | 0,0,0 3169 | 0,0,0 3170 | 148,49,38 3171 | 148,49,38 3172 | 148,49,38 3173 | 148,49,38 3174 | 146,43,33 3175 | 146,43,33 3176 | 146,43,33 3177 | 148,49,38 3178 | 160,64,0 3179 | 0,0,0 3180 | 0,0,0 3181 | 0,0,0 3182 | 255,255,255 3183 | 255,255,255 3184 | 255,255,255 3185 | 255,255,255 3186 | 255,255,255 3187 | 0,0,0 3188 | 192,57,43 3189 | 244,208,63 3190 | 192,57,43 3191 | 0,0,0 3192 | 0,0,0 3193 | 0,0,0 3194 | 0,0,0 3195 | 0,0,0 3196 | 0,0,0 3197 | 0,0,0 3198 | 0,0,0 3199 | 0,0,0 3200 | 255,255,255 3201 | 255,255,255 3202 | 255,255,255 3203 | 255,255,255 3204 | 255,255,255 3205 | 255,255,255 3206 | 255,255,255 3207 | 255,255,255 3208 | 255,255,255 3209 | 255,255,255 3210 | 255,255,255 3211 | 255,255,255 3212 | 255,255,255 3213 | 255,255,255 3214 | 255,255,255 3215 | 255,255,255 3216 | 255,255,255 3217 | 255,255,255 3218 | 255,255,255 3219 | 255,255,255 3220 | 255,255,255 3221 | 255,255,255 3222 | 255,255,255 3223 | 255,255,255 3224 | 255,255,255 3225 | 255,255,255 3226 | 255,255,255 3227 | 255,255,255 3228 | 255,255,255 3229 | 255,255,255 3230 | 255,255,255 3231 | 255,255,255 3232 | 0,0,0 3233 | 0,0,0 3234 | 176,58,46 3235 | 148,49,38 3236 | 148,49,38 3237 | 148,49,38 3238 | 148,49,38 3239 | 148,49,38 3240 | 148,49,38 3241 | 148,49,38 3242 | 211,84,0 3243 | 0,0,0 3244 | 255,255,255 3245 | 255,255,255 3246 | 255,255,255 3247 | 255,255,255 3248 | 255,255,255 3249 | 255,255,255 3250 | 255,255,255 3251 | 0,0,0 3252 | 192,57,43 3253 | 244,208,63 3254 | 192,57,43 3255 | 192,57,43 3256 | 192,57,43 3257 | 192,57,43 3258 | 192,57,43 3259 | 192,57,43 3260 | 192,57,43 3261 | 192,57,43 3262 | 192,57,43 3263 | 0,0,0 3264 | 0,0,0 3265 | 255,255,255 3266 | 255,255,255 3267 | 255,255,255 3268 | 255,255,255 3269 | 255,255,255 3270 | 255,255,255 3271 | 255,255,255 3272 | 255,255,255 3273 | 255,255,255 3274 | 255,255,255 3275 | 255,255,255 3276 | 255,255,255 3277 | 255,255,255 3278 | 255,255,255 3279 | 255,255,255 3280 | 255,255,255 3281 | 255,255,255 3282 | 255,255,255 3283 | 255,255,255 3284 | 255,255,255 3285 | 255,255,255 3286 | 255,255,255 3287 | 255,255,255 3288 | 255,255,255 3289 | 255,255,255 3290 | 255,255,255 3291 | 255,255,255 3292 | 255,255,255 3293 | 255,255,255 3294 | 255,255,255 3295 | 255,255,255 3296 | 255,255,255 3297 | 0,0,0 3298 | 0,0,0 3299 | 0,0,0 3300 | 192,57,43 3301 | 192,57,43 3302 | 211,84,0 3303 | 211,84,0 3304 | 211,84,0 3305 | 211,84,0 3306 | 0,0,0 3307 | 0,0,0 3308 | 255,255,255 3309 | 255,255,255 3310 | 255,255,255 3311 | 255,255,255 3312 | 255,255,255 3313 | 255,255,255 3314 | 255,255,255 3315 | 0,0,0 3316 | 192,57,43 3317 | 244,208,63 3318 | 242,156,18 3319 | 244,208,63 3320 | 244,208,63 3321 | 242,156,18 3322 | 242,156,18 3323 | 192,57,43 3324 | 192,57,43 3325 | 192,57,43 3326 | 192,57,43 3327 | 192,57,43 3328 | 0,0,0 3329 | 255,255,255 3330 | 255,255,255 3331 | 255,255,255 3332 | 255,255,255 3333 | 255,255,255 3334 | 255,255,255 3335 | 255,255,255 3336 | 255,255,255 3337 | 255,255,255 3338 | 255,255,255 3339 | 255,255,255 3340 | 255,255,255 3341 | 255,255,255 3342 | 255,255,255 3343 | 255,255,255 3344 | 255,255,255 3345 | 255,255,255 3346 | 255,255,255 3347 | 255,255,255 3348 | 255,255,255 3349 | 255,255,255 3350 | 255,255,255 3351 | 255,255,255 3352 | 255,255,255 3353 | 255,255,255 3354 | 255,255,255 3355 | 255,255,255 3356 | 255,255,255 3357 | 255,255,255 3358 | 255,255,255 3359 | 255,255,255 3360 | 255,255,255 3361 | 255,255,255 3362 | 0,0,0 3363 | 0,0,0 3364 | 0,0,0 3365 | 0,0,0 3366 | 0,0,0 3367 | 0,0,0 3368 | 0,0,0 3369 | 0,0,0 3370 | 0,0,0 3371 | 255,255,255 3372 | 255,255,255 3373 | 255,255,255 3374 | 255,255,255 3375 | 255,255,255 3376 | 255,255,255 3377 | 255,255,255 3378 | 0,0,0 3379 | 192,57,43 3380 | 192,57,43 3381 | 244,208,63 3382 | 244,208,63 3383 | 244,208,63 3384 | 244,208,63 3385 | 244,208,63 3386 | 242,156,18 3387 | 192,57,43 3388 | 192,57,43 3389 | 192,57,43 3390 | 192,57,43 3391 | 192,57,43 3392 | 192,57,43 3393 | 255,255,255 3394 | 255,255,255 3395 | 255,255,255 3396 | 255,255,255 3397 | 255,255,255 3398 | 255,255,255 3399 | 255,255,255 3400 | 255,255,255 3401 | 255,255,255 3402 | 255,255,255 3403 | 255,255,255 3404 | 255,255,255 3405 | 255,255,255 3406 | 255,255,255 3407 | 255,255,255 3408 | 255,255,255 3409 | 255,255,255 3410 | 255,255,255 3411 | 255,255,255 3412 | 255,255,255 3413 | 255,255,255 3414 | 255,255,255 3415 | 255,255,255 3416 | 255,255,255 3417 | 255,255,255 3418 | 255,255,255 3419 | 255,255,255 3420 | 255,255,255 3421 | 255,255,255 3422 | 255,255,255 3423 | 255,255,255 3424 | 255,255,255 3425 | 255,255,255 3426 | 255,255,255 3427 | 255,255,255 3428 | 255,255,255 3429 | 255,255,255 3430 | 255,255,255 3431 | 255,255,255 3432 | 255,255,255 3433 | 255,255,255 3434 | 0,0,0 3435 | 0,0,0 3436 | 0,0,0 3437 | 0,0,0 3438 | 255,255,255 3439 | 255,255,255 3440 | 255,255,255 3441 | 255,255,255 3442 | 0,0,0 3443 | 192,57,43 3444 | 244,208,63 3445 | 244,208,63 3446 | 244,208,63 3447 | 242,156,18 3448 | 242,156,18 3449 | 192,57,43 3450 | 192,57,43 3451 | 192,57,43 3452 | 192,57,43 3453 | 0,0,0 3454 | 0,0,0 3455 | 0,0,0 3456 | 0,0,0 3457 | 255,255,255 3458 | 255,255,255 3459 | 255,255,255 3460 | 255,255,255 3461 | 255,255,255 3462 | 255,255,255 3463 | 255,255,255 3464 | 255,255,255 3465 | 255,255,255 3466 | 255,255,255 3467 | 255,255,255 3468 | 255,255,255 3469 | 255,255,255 3470 | 255,255,255 3471 | 255,255,255 3472 | 255,255,255 3473 | 255,255,255 3474 | 255,255,255 3475 | 255,255,255 3476 | 255,255,255 3477 | 255,255,255 3478 | 255,255,255 3479 | 255,255,255 3480 | 255,255,255 3481 | 255,255,255 3482 | 255,255,255 3483 | 255,255,255 3484 | 255,255,255 3485 | 255,255,255 3486 | 255,255,255 3487 | 255,255,255 3488 | 255,255,255 3489 | 255,255,255 3490 | 255,255,255 3491 | 255,255,255 3492 | 255,255,255 3493 | 255,255,255 3494 | 255,255,255 3495 | 255,255,255 3496 | 0,0,0 3497 | 0,0,0 3498 | 0,0,0 3499 | 244,208,63 3500 | 0,0,0 3501 | 0,0,0 3502 | 255,255,255 3503 | 255,255,255 3504 | 255,255,255 3505 | 0,0,0 3506 | 0,0,0 3507 | 192,57,43 3508 | 244,208,63 3509 | 244,208,63 3510 | 242,156,18 3511 | 242,156,18 3512 | 192,57,43 3513 | 192,57,43 3514 | 192,57,43 3515 | 0,0,0 3516 | 0,0,0 3517 | 0,0,0 3518 | 255,255,255 3519 | 255,255,255 3520 | 255,255,255 3521 | 255,255,255 3522 | 255,255,255 3523 | 255,255,255 3524 | 255,255,255 3525 | 255,255,255 3526 | 255,255,255 3527 | 255,255,255 3528 | 255,255,255 3529 | 255,255,255 3530 | 255,255,255 3531 | 255,255,255 3532 | 255,255,255 3533 | 255,255,255 3534 | 255,255,255 3535 | 255,255,255 3536 | 255,255,255 3537 | 255,255,255 3538 | 255,255,255 3539 | 255,255,255 3540 | 255,255,255 3541 | 255,255,255 3542 | 255,255,255 3543 | 255,255,255 3544 | 255,255,255 3545 | 255,255,255 3546 | 255,255,255 3547 | 255,255,255 3548 | 255,255,255 3549 | 255,255,255 3550 | 255,255,255 3551 | 255,255,255 3552 | 255,255,255 3553 | 255,255,255 3554 | 255,255,255 3555 | 255,255,255 3556 | 255,255,255 3557 | 255,255,255 3558 | 255,255,255 3559 | 0,0,0 3560 | 0,0,0 3561 | 242,156,18 3562 | 244,208,63 3563 | 0,0,0 3564 | 0,0,0 3565 | 255,255,255 3566 | 255,255,255 3567 | 255,255,255 3568 | 255,255,255 3569 | 0,0,0 3570 | 192,57,43 3571 | 192,57,43 3572 | 244,208,63 3573 | 244,208,63 3574 | 242,156,18 3575 | 242,156,18 3576 | 192,57,43 3577 | 192,57,43 3578 | 192,57,43 3579 | 0,0,0 3580 | 255,255,255 3581 | 255,255,255 3582 | 255,255,255 3583 | 255,255,255 3584 | 255,255,255 3585 | 255,255,255 3586 | 255,255,255 3587 | 255,255,255 3588 | 255,255,255 3589 | 255,255,255 3590 | 255,255,255 3591 | 255,255,255 3592 | 255,255,255 3593 | 255,255,255 3594 | 255,255,255 3595 | 255,255,255 3596 | 255,255,255 3597 | 255,255,255 3598 | 255,255,255 3599 | 255,255,255 3600 | 255,255,255 3601 | 255,255,255 3602 | 255,255,255 3603 | 255,255,255 3604 | 255,255,255 3605 | 255,255,255 3606 | 255,255,255 3607 | 255,255,255 3608 | 255,255,255 3609 | 255,255,255 3610 | 255,255,255 3611 | 255,255,255 3612 | 255,255,255 3613 | 255,255,255 3614 | 255,255,255 3615 | 255,255,255 3616 | 255,255,255 3617 | 255,255,255 3618 | 255,255,255 3619 | 255,255,255 3620 | 255,255,255 3621 | 255,255,255 3622 | 0,0,0 3623 | 0,0,0 3624 | 242,156,18 3625 | 0,0,0 3626 | 0,0,0 3627 | 255,255,255 3628 | 255,255,255 3629 | 255,255,255 3630 | 255,255,255 3631 | 255,255,255 3632 | 0,0,0 3633 | 0,0,0 3634 | 192,57,43 3635 | 244,208,63 3636 | 244,208,63 3637 | 244,208,63 3638 | 242,156,18 3639 | 242,156,18 3640 | 192,57,43 3641 | 192,57,43 3642 | 192,57,43 3643 | 0,0,0 3644 | 255,255,255 3645 | 255,255,255 3646 | 255,255,255 3647 | 255,255,255 3648 | 255,255,255 3649 | 255,255,255 3650 | 255,255,255 3651 | 255,255,255 3652 | 255,255,255 3653 | 255,255,255 3654 | 255,255,255 3655 | 255,255,255 3656 | 255,255,255 3657 | 255,255,255 3658 | 255,255,255 3659 | 255,255,255 3660 | 255,255,255 3661 | 255,255,255 3662 | 255,255,255 3663 | 255,255,255 3664 | 255,255,255 3665 | 255,255,255 3666 | 255,255,255 3667 | 255,255,255 3668 | 255,255,255 3669 | 255,255,255 3670 | 255,255,255 3671 | 255,255,255 3672 | 255,255,255 3673 | 255,255,255 3674 | 255,255,255 3675 | 255,255,255 3676 | 255,255,255 3677 | 255,255,255 3678 | 255,255,255 3679 | 255,255,255 3680 | 255,255,255 3681 | 255,255,255 3682 | 255,255,255 3683 | 255,255,255 3684 | 255,255,255 3685 | 0,0,0 3686 | 0,0,0 3687 | 192,57,43 3688 | 0,0,0 3689 | 0,0,0 3690 | 255,255,255 3691 | 255,255,255 3692 | 255,255,255 3693 | 255,255,255 3694 | 255,255,255 3695 | 0,0,0 3696 | 0,0,0 3697 | 192,57,43 3698 | 244,208,63 3699 | 244,208,63 3700 | 244,208,63 3701 | 244,208,63 3702 | 242,156,18 3703 | 242,156,18 3704 | 192,57,43 3705 | 192,57,43 3706 | 192,57,43 3707 | 0,0,0 3708 | 255,255,255 3709 | 255,255,255 3710 | 255,255,255 3711 | 255,255,255 3712 | 255,255,255 3713 | 255,255,255 3714 | 255,255,255 3715 | 255,255,255 3716 | 255,255,255 3717 | 255,255,255 3718 | 255,255,255 3719 | 255,255,255 3720 | 255,255,255 3721 | 255,255,255 3722 | 255,255,255 3723 | 255,255,255 3724 | 255,255,255 3725 | 255,255,255 3726 | 255,255,255 3727 | 255,255,255 3728 | 255,255,255 3729 | 255,255,255 3730 | 255,255,255 3731 | 255,255,255 3732 | 255,255,255 3733 | 255,255,255 3734 | 255,255,255 3735 | 255,255,255 3736 | 255,255,255 3737 | 255,255,255 3738 | 255,255,255 3739 | 255,255,255 3740 | 255,255,255 3741 | 255,255,255 3742 | 255,255,255 3743 | 255,255,255 3744 | 255,255,255 3745 | 255,255,255 3746 | 255,255,255 3747 | 0,0,0 3748 | 0,0,0 3749 | 0,0,0 3750 | 0,0,0 3751 | 0,0,0 3752 | 255,255,255 3753 | 255,255,255 3754 | 255,255,255 3755 | 255,255,255 3756 | 255,255,255 3757 | 255,255,255 3758 | 0,0,0 3759 | 0,0,0 3760 | 192,57,43 3761 | 242,156,18 3762 | 244,208,63 3763 | 242,156,18 3764 | 244,208,63 3765 | 244,208,63 3766 | 242,156,18 3767 | 242,156,18 3768 | 192,57,43 3769 | 192,57,43 3770 | 192,57,43 3771 | 0,0,0 3772 | 0,0,0 3773 | 0,0,0 3774 | 0,0,0 3775 | 0,0,0 3776 | 255,255,255 3777 | 255,255,255 3778 | 255,255,255 3779 | 255,255,255 3780 | 255,255,255 3781 | 255,255,255 3782 | 255,255,255 3783 | 255,255,255 3784 | 255,255,255 3785 | 255,255,255 3786 | 255,255,255 3787 | 255,255,255 3788 | 255,255,255 3789 | 255,255,255 3790 | 255,255,255 3791 | 255,255,255 3792 | 255,255,255 3793 | 255,255,255 3794 | 255,255,255 3795 | 255,255,255 3796 | 255,255,255 3797 | 255,255,255 3798 | 255,255,255 3799 | 255,255,255 3800 | 255,255,255 3801 | 255,255,255 3802 | 255,255,255 3803 | 255,255,255 3804 | 255,255,255 3805 | 255,255,255 3806 | 255,255,255 3807 | 255,255,255 3808 | 255,255,255 3809 | 255,255,255 3810 | 255,255,255 3811 | 255,255,255 3812 | 255,255,255 3813 | 255,255,255 3814 | 255,255,255 3815 | 255,255,255 3816 | 255,255,255 3817 | 255,255,255 3818 | 255,255,255 3819 | 255,255,255 3820 | 255,255,255 3821 | 0,0,0 3822 | 0,0,0 3823 | 192,57,43 3824 | 192,57,43 3825 | 242,156,18 3826 | 242,156,18 3827 | 242,156,18 3828 | 244,208,63 3829 | 244,208,63 3830 | 242,156,18 3831 | 242,156,18 3832 | 242,156,18 3833 | 192,57,43 3834 | 192,57,43 3835 | 192,57,43 3836 | 192,57,43 3837 | 192,57,43 3838 | 192,57,43 3839 | 0,0,0 3840 | 0,0,0 3841 | 255,255,255 3842 | 255,255,255 3843 | 255,255,255 3844 | 255,255,255 3845 | 255,255,255 3846 | 255,255,255 3847 | 255,255,255 3848 | 255,255,255 3849 | 255,255,255 3850 | 255,255,255 3851 | 255,255,255 3852 | 255,255,255 3853 | 255,255,255 3854 | 255,255,255 3855 | 255,255,255 3856 | 255,255,255 3857 | 255,255,255 3858 | 255,255,255 3859 | 255,255,255 3860 | 255,255,255 3861 | 255,255,255 3862 | 255,255,255 3863 | 255,255,255 3864 | 255,255,255 3865 | 255,255,255 3866 | 255,255,255 3867 | 255,255,255 3868 | 255,255,255 3869 | 255,255,255 3870 | 255,255,255 3871 | 255,255,255 3872 | 255,255,255 3873 | 255,255,255 3874 | 255,255,255 3875 | 255,255,255 3876 | 255,255,255 3877 | 255,255,255 3878 | 255,255,255 3879 | 255,255,255 3880 | 255,255,255 3881 | 255,255,255 3882 | 255,255,255 3883 | 255,255,255 3884 | 0,0,0 3885 | 0,0,0 3886 | 192,57,43 3887 | 192,57,43 3888 | 242,156,18 3889 | 242,156,18 3890 | 242,156,18 3891 | 242,156,18 3892 | 242,156,18 3893 | 242,156,18 3894 | 244,208,63 3895 | 242,156,18 3896 | 242,156,18 3897 | 242,156,18 3898 | 192,57,43 3899 | 192,57,43 3900 | 192,57,43 3901 | 192,57,43 3902 | 192,57,43 3903 | 192,57,43 3904 | 0,0,0 3905 | 255,255,255 3906 | 255,255,255 3907 | 255,255,255 3908 | 255,255,255 3909 | 255,255,255 3910 | 255,255,255 3911 | 255,255,255 3912 | 255,255,255 3913 | 255,255,255 3914 | 255,255,255 3915 | 255,255,255 3916 | 255,255,255 3917 | 255,255,255 3918 | 255,255,255 3919 | 255,255,255 3920 | 255,255,255 3921 | 255,255,255 3922 | 255,255,255 3923 | 255,255,255 3924 | 255,255,255 3925 | 255,255,255 3926 | 255,255,255 3927 | 255,255,255 3928 | 255,255,255 3929 | 255,255,255 3930 | 255,255,255 3931 | 255,255,255 3932 | 255,255,255 3933 | 255,255,255 3934 | 255,255,255 3935 | 255,255,255 3936 | 255,255,255 3937 | 255,255,255 3938 | 255,255,255 3939 | 255,255,255 3940 | 255,255,255 3941 | 255,255,255 3942 | 255,255,255 3943 | 255,255,255 3944 | 255,255,255 3945 | 255,255,255 3946 | 255,255,255 3947 | 255,255,255 3948 | 0,0,0 3949 | 192,57,43 3950 | 192,57,43 3951 | 192,57,43 3952 | 242,156,18 3953 | 242,156,18 3954 | 242,156,18 3955 | 242,156,18 3956 | 242,156,18 3957 | 242,156,18 3958 | 242,156,18 3959 | 242,156,18 3960 | 242,156,18 3961 | 242,156,18 3962 | 242,156,18 3963 | 192,57,43 3964 | 192,57,43 3965 | 192,57,43 3966 | 192,57,43 3967 | 192,57,43 3968 | 192,57,43 3969 | 255,255,255 3970 | 255,255,255 3971 | 255,255,255 3972 | 255,255,255 3973 | 255,255,255 3974 | 255,255,255 3975 | 255,255,255 3976 | 255,255,255 3977 | 255,255,255 3978 | 255,255,255 3979 | 255,255,255 3980 | 255,255,255 3981 | 255,255,255 3982 | 255,255,255 3983 | 255,255,255 3984 | 255,255,255 3985 | 255,255,255 3986 | 255,255,255 3987 | 255,255,255 3988 | 255,255,255 3989 | 255,255,255 3990 | 255,255,255 3991 | 255,255,255 3992 | 255,255,255 3993 | 255,255,255 3994 | 255,255,255 3995 | 255,255,255 3996 | 255,255,255 3997 | 255,255,255 3998 | 255,255,255 3999 | 255,255,255 4000 | 255,255,255 4001 | 255,255,255 4002 | 255,255,255 4003 | 255,255,255 4004 | 255,255,255 4005 | 255,255,255 4006 | 255,255,255 4007 | 255,255,255 4008 | 255,255,255 4009 | 255,255,255 4010 | 255,255,255 4011 | 255,255,255 4012 | 0,0,0 4013 | 192,57,43 4014 | 192,57,43 4015 | 242,156,18 4016 | 242,156,18 4017 | 242,156,18 4018 | 242,156,18 4019 | 242,156,18 4020 | 242,156,18 4021 | 242,156,18 4022 | 242,156,18 4023 | 242,156,18 4024 | 242,156,18 4025 | 242,156,18 4026 | 242,156,18 4027 | 242,156,18 4028 | 192,57,43 4029 | 192,57,43 4030 | 192,57,43 4031 | 192,57,43 4032 | 192,57,43 4033 | 255,255,255 4034 | 255,255,255 4035 | 255,255,255 4036 | 255,255,255 4037 | 255,255,255 4038 | 255,255,255 4039 | 255,255,255 4040 | 255,255,255 4041 | 255,255,255 4042 | 255,255,255 4043 | 255,255,255 4044 | 255,255,255 4045 | 255,255,255 4046 | 255,255,255 4047 | 255,255,255 4048 | 255,255,255 4049 | 255,255,255 4050 | 255,255,255 4051 | 255,255,255 4052 | 255,255,255 4053 | 255,255,255 4054 | 255,255,255 4055 | 255,255,255 4056 | 255,255,255 4057 | 255,255,255 4058 | 255,255,255 4059 | 255,255,255 4060 | 255,255,255 4061 | 255,255,255 4062 | 255,255,255 4063 | 255,255,255 4064 | 255,255,255 4065 | 255,255,255 4066 | 255,255,255 4067 | 255,255,255 4068 | 255,255,255 4069 | 255,255,255 4070 | 255,255,255 4071 | 255,255,255 4072 | 255,255,255 4073 | 255,255,255 4074 | 255,255,255 4075 | 255,255,255 4076 | 0,0,0 4077 | 192,57,43 4078 | 192,57,43 4079 | 242,156,18 4080 | 242,156,18 4081 | 242,156,18 4082 | 242,156,18 4083 | 242,156,18 4084 | 242,156,18 4085 | 242,156,18 4086 | 242,156,18 4087 | 242,156,18 4088 | 242,156,18 4089 | 242,156,18 4090 | 242,156,18 4091 | 242,156,18 4092 | 192,57,43 4093 | 192,57,43 4094 | 192,57,43 4095 | 192,57,43 4096 | 192,57,43 4097 | --------------------------------------------------------------------------------