6.6 update

This commit is contained in:
chardub
2025-06-07 08:16:50 -04:00
parent 295a71dbcd
commit a393ba1137
467 changed files with 171196 additions and 36566 deletions

View File

@@ -0,0 +1,133 @@
AUTOSAVE_ENABLED_SWITCH = 48
AUTOSAVE_HEALING_VAR = 24
AUTOSAVE_CATCH_SWITCH = 782
AUTOSAVE_WIN_SWITCH = 783
AUTOSAVE_STEPS_SWITCH = 784
AUTOSAVE_STEPS_VAR = 236
DEFAULT_AUTOSAVE_STEPS = 500
def pbSetPokemonCenter
$PokemonGlobal.pokecenterMapId = $game_map.map_id
$PokemonGlobal.pokecenterX = $game_player.x
$PokemonGlobal.pokecenterY = $game_player.y
$PokemonGlobal.pokecenterDirection = $game_player.direction
if $game_variables[AUTOSAVE_HEALING_VAR]==0 && Settings::GAME_ID == :IF_KANTO
pbSEPlay("save",100,100)
Kernel.tryAutosave()
end
end
def Kernel.Autosave
#Game.auto_save
#showSaveIcon()
pbSave(false)
# #hideSaveIcon()
end
def Kernel.tryAutosave()
return if !$Trainer.save_slot
Kernel.Autosave if $game_switches[AUTOSAVE_ENABLED_SWITCH]
end
Events.onMapUpdate += proc { |sender, e|
next if !$game_switches
next if !$game_switches[AUTOSAVE_STEPS_SWITCH]
stepsNum = pbGet(AUTOSAVE_STEPS_VAR)
if stepsNum > 0 && !$PokemonGlobal.sliding
next if $PokemonGlobal.stepcount < 100
if $PokemonGlobal.stepcount % stepsNum == 0
$PokemonGlobal.stepcount += 1
Kernel.tryAutosave()
end
end
}
class AutosaveOptionsScene < PokemonOption_Scene
def initialize
@changedColor = false
end
def pbStartScene(inloadscreen = false)
super
@sprites["option"].nameBaseColor = Color.new(35, 130, 200)
@sprites["option"].nameShadowColor = Color.new(20, 75, 115)
@changedColor = true
for i in 0...@PokemonOptions.length
@sprites["option"][i] = (@PokemonOptions[i].get || 0)
end
@sprites["title"]=Window_UnformattedTextPokemon.newWithSize(
_INTL("Autosave settings"),0,0,Graphics.width,64,@viewport)
@sprites["textbox"].text=_INTL("Customize the autosave settings")
pbFadeInAndShow(@sprites) { pbUpdate }
end
def pbFadeInAndShow(sprites, visiblesprites = nil)
return if !@changedColor
super
end
def pbGetOptions(inloadscreen = false)
options = [
EnumOption.new(_INTL("When healing"), [_INTL("On"), _INTL("Off")],
proc { $game_variables[AUTOSAVE_HEALING_VAR]},
proc { |value|
$game_variables[AUTOSAVE_HEALING_VAR]=value
},
"Autosave when healing at a Pokémon Center"
),
EnumOption.new(_INTL("When catching Pokémon"), [_INTL("On"), _INTL("Off")],
proc { $game_switches[AUTOSAVE_CATCH_SWITCH] ? 0 : 1 },
proc { |value|
$game_switches[AUTOSAVE_CATCH_SWITCH] = value == 0
},
"Autosave everytime a new Pokémon is caught"
),
EnumOption.new(_INTL("After trainer battles"), [_INTL("On"), _INTL("Off")],
proc { $game_switches[AUTOSAVE_WIN_SWITCH] ? 0 : 1 },
proc { |value|
$game_switches[AUTOSAVE_WIN_SWITCH] = value == 0
},
"Autosave after each trainer battle"
),
EnumOption.new(_INTL("Every x steps"), [_INTL("On"), _INTL("Off")],
proc { $game_switches[AUTOSAVE_STEPS_SWITCH] ? 0 : 1 },
proc { |value|
if !$game_switches[AUTOSAVE_STEPS_SWITCH] && value == 0
@set_steps = true
selectAutosaveSteps()
end
$game_switches[AUTOSAVE_STEPS_SWITCH] = value == 0
}, "Autosave after a defined amount of steps"
)
]
return options
end
def selectAutosaveSteps()
if pbGet(AUTOSAVE_STEPS_VAR) == 0
pbSet(AUTOSAVE_STEPS_VAR,DEFAULT_AUTOSAVE_STEPS)
end
params=ChooseNumberParams.new
params.setRange(20,999999)
params.setInitialValue(pbGet(AUTOSAVE_STEPS_VAR))
params.setCancelValue(0)
val = Kernel.pbMessageChooseNumber(_INTL("Autosave every how many steps?"),params)
if val < 200
Kernel.pbMessage("Warning: Choosing a low number of steps may decrease performance.")
end
if val == 0
val = 1
end
pbSet(AUTOSAVE_STEPS_VAR,val)
end
end

View File

@@ -0,0 +1,232 @@
def get_opponent_level
return $Trainer.highest_level_pokemon_in_party
end
def get_egg_group_from_id(id)
case id
when 0;
return nil
when 1;
return :Monster
when 2;
return :Water1
when 3;
return :Bug
when 4;
return :Flying
when 5;
return :Field
when 6;
return :Fairy
when 7;
return :Grass
when 8;
return :Humanlike
when 9;
return :Water3
when 10;
return :Mineral
when 11;
return :Amorphous
when 12;
return :Water2
when 13;
return :Ditto
when 14;
return :Dragon
when 15;
return :Undiscovered
end
end
def get_egg_group_name(id)
case id
when 0;
return nil
when 1;
return "Monster Pokémon"
when 2;
return :"Aquatic Pokémon"
when 3;
return :"Bug Pokémon"
when 4;
return :"Bird Pokémon"
when 5;
return :"Land Pokémon"
when 6;
return :"Cute Pokémon"
when 7;
return :"Plant Pokémon"
when 8;
return :"Human-like Pokémon"
when 9;
return :"Aquatic Pokémon"
when 10;
return :"Mineral Pokémon"
when 11;
return :"Blob Pokémon"
when 12;
return :"Fish Pokémon"
when 13;
return :"Ditto"
when 14;
return :"Dragon Pokémon"
when 15;
return :"Legendary Pokémon"
end
end
def get_random_trainer_name(trainer_class)
#0: male, 1: female
gender = GameData::TrainerType.get(trainer_class).gender
if (gender == 0)
return RandTrainerNames_male[rand(RandTrainerNames_male.length)]
else
return RandTrainerNames_female[rand(RandTrainerNames_female.length)]
end
end
def get_random_battle_lounge_egg_group
_DISABLED_EGG_GROUPS = [0, 13, 15]
group = 0
while _DISABLED_EGG_GROUPS.include?(group)
group = rand(0, 15)
end
return group
end
GENERIC_PRIZES_MULTI = [:HEARTSCALE, :HEARTSCALE,:HEARTSCALE,:HEARTSCALE,:HEARTSCALE,
:LEMONADE, :PERFECTBALL, :TRADEBALL,
:GENDERBALL, :ABILITYBALL, :VIRUSBALL, :SHINYBALL]
GENERIC_PRIZES_SINGLE = [:RARECANDY, :RARECANDY,:RARECANDY, :PPUP, :EJECTBUTTON, :FOCUSBAND, :FOCUSSASH,
:RESETURGE, :ABILITYURGE, :ITEMURGE, :ITEMDROP, :HPUP, :INCUBATOR, :LUCKYEGG]
MONSTER_PRIZES = [:RAREBONE, :LAGGINGTAIL, :RAZORFANG, :RAZORCLAW, :GRIPCLAW, :MANKEYPAW]
WATER_PRIZES = [:MYSTICWATER, :BIGPEARL, :SHELLBELL]
BUG_PRIZES = [:SILVERPOWDER, :SHEDSHELL, :EVIOLITE]
FLYING_PRIZES = [:AIRBALLOON, :FLOATSTONE, :COMETSHARD]
FIELD_PRIZES = [:MOOMOOMILK, :IRONBALL, :RAREBONE, :MANKEYPAW, :FLAMEORB]
FAIRY_PRIZES = [:STARPIECE, :DESTINYKNOT, :MAXELIXIR, :LIFEORB]
HUMAN_PRIZES = [:BLACKBELT, :RINGTARGET, :EXPERTBELT, :GOLDRING, :AMULETCOIN]
GRASS_PRIZES = [:REVIVALHERB, :POWERHERB, :HEALPOWDER, :ABSORBBULB, :BIGMUSHROOM]
MINERAL_PRIZES = [:CELLBATTERY, :SHINYSTONE, :BIGNUGGET, :RELICCOPPER, :RELICGOLD, :RELICSILVER, :DIAMOND, :ROCKYHELMET]
AMORPHOUS_PRIZES = [:SPELLTAG, :WIDELENS, :ZOOMLENS, :SCOPELENS, :TOXICORB]
DRAGON_PRIZES = [:DRAGONSCALE, :DRAGONFANG, :RARECANDY, :GOLDRING]
UNDISCOVERED_PRIZES = [:MASTERBALL, :SACREDASH]
#todo: prizes related to the group (ex: dragon fang for dragon types, TMs, etc. )
# todo: if heartscale, give a random amount from 10-20
def get_random_battle_lounge_prize(group_type)
generic_prizes = [GENERIC_PRIZES_MULTI, GENERIC_PRIZES_SINGLE]
is_generic_prize = rand(3) == 1
if is_generic_prize
type = generic_prizes.sample
return type.sample
else
case get_egg_group_from_id(group_type)
when :Monster;
return MONSTER_PRIZES.sample
when :Water1, :Water2, :Water3;
return WATER_PRIZES.sample
when :Bug;
return BUG_PRIZES.sample
when :Flying;
return FLYING_PRIZES.sample
when :Field;
return FIELD_PRIZES.sample
when :Fairy;
return FAIRY_PRIZES.sample
when :Grass;
return GRASS_PRIZES.sample
when :Mineral;
return MINERAL_PRIZES.sample
when :Humanlike;
return HUMAN_PRIZES.sample
when :Amorphous;
return AMORPHOUS_PRIZES.sample
when :Dragon;
return DRAGON_PRIZES.sample
when :Undiscovered;
return UNDISCOVERED_PRIZES.sample
end
end
end
def generateSameEggGroupFusionsTeam(eggGroup_id)
eggGroup = get_egg_group_from_id(eggGroup_id)
teamComplete = false
generatedTeam = []
while !teamComplete
foundFusionPartner = false
species1 = rand(Settings::NB_POKEMON) + 1
if getPokemonEggGroups(species1).include?(eggGroup)
foundFusionPartner = false
while !foundFusionPartner
species2 = rand(Settings::NB_POKEMON) + 1
if getPokemonEggGroups(species2).include?(eggGroup)
generatedTeam << getFusionSpeciesSymbol(species1, species2)
foundFusionPartner = true
end
end
end
teamComplete = generatedTeam.length == 3
end
return generatedTeam
end
def listLegendaryPokemonIds()
return [144, 145, 146, 150, 151, 245, 243, 244, 245, 249, 250, 251, 315, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 378, 379, 380, 381]
end
def pokemonIsPartLegendary(species)
head = getBasePokemonID(species, false)
body = getBasePokemonID(species, true)
return listLegendaryPokemonIds().include?(head) || listLegendaryPokemonIds().include?(body)
end
def generateRandomFusionFromPokemon(dexNum, onlyCustomSprites = false, allowLegendaries=true)
excluded = allowLegendaries ? [] : listLegendaryPokemonIds()
customsList = getCustomSpeciesList(downloadAllowed?())
i=0
while i < customsList.length
comparedPoke = customsList.sample
next if excluded.include?(comparedPoke)
if Kernel.isPartPokemon(comparedPoke, dexNum)
return comparedPoke
end
i+=1
end
return 1
end
def getRandomBasePokemon(includeLegendaries = false,maxNb=NB_POKEMON)
legendaries =listLegendaryPokemonIds()
poke = rand(maxNb + 1)
return poke if includeLegendaries
while legendaries.include?(poke)
poke = rand(maxNb + 1)
end
return poke
end
def getAllPokemonWithBase(dexNum)
#todo Unimplemented
return [25]
end
def getCustomSpeciesListForPokemon(dexNum,allowLegendaries=true)
excluded = allowLegendaries ? [] : listLegendaryPokemonIds()
customsList = getCustomSpeciesList(downloadAllowed?())
speciesList = []
for comparedPoke in customsList
next if excluded.include?(comparedPoke)
if Kernel.isPartPokemon(comparedPoke, dexNum)
speciesList << comparedPoke
end
end
if speciesList.length == 0
speciesList << dexNum
end
return speciesList
end

View File

@@ -0,0 +1,988 @@
#==============================================================================#
# Better Region Map #
# By Marin, with edits by Boonzeet #
#==============================================================================#
# This region map is smoother and allows you to use region maps larger than #
# 480x320. #
# #
# This resource also comes with a new townmapgen.html to support for the #
# larger images. #
#==============================================================================#
# This region map now supports hidden islands (e.g. Berth or Faraday). #
#==============================================================================#
# Please give credit when using this. #
#==============================================================================#
#
# PluginManager.register({
# :name => "Better Region Map",
# :version => "1.2",
# :credits => ["Marin", "Boonzeet"],
# :dependencies => "Marin's Scripting Utilities",
# :link => "https://reliccastle.com/resources/174/"
# })
def pbBetterRegionMap(region = -1, show_player = true, can_fly = false, wallmap = false, species = nil, fly_anywhere = false)
scene = BetterRegionMap.new(-1, show_player, can_fly, wallmap, species, fly_anywhere)
return scene.flydata
end
class PokemonGlobalMetadata
attr_writer :regionMapSel
attr_writer :region
def regionMapSel
@regionMapSel ||= [0, 0]
return @regionMapSel
end
def region
@region ||= 0
return @region
end
end
class BetterRegionMap
KANTO_DEFAULT_POS = [37, 7]
HOENN_DEFAULT_POS = [0, 0]
CursorAnimateDelay = 12.0
CursorMoveSpeed = 2.0
TileWidth = 16.0
TileHeight = 16.0
FlyPointAnimateDelay = 20.0
attr_reader :flydata
def initialize(region = -1, show_player = true, can_fly = false, wallmap = false, species = nil, fly_anywhere = false)
region = 0
showBlk
map_metadata = GameData::MapMetadata.try_get($game_map.map_id)
if map_metadata
playerpos = $game_map ? map_metadata.town_map_position : nil #pbGetMetadata($game_map.map_id, MetadataMapPosition) : nil
end
if playerpos == nil
playerpos = [0, 0]
end
@fly_anywhere = fly_anywhere
@region = 0 #(region < 0) ? playerpos[0] : region
@species = species
@show_player = show_player #(show_player && playerpos[0] == @region)
@can_fly = can_fly
@data = load_data("Data/town_map.dat")[@region]
@viewport = Viewport.new(0, 0, Graphics.width, Graphics.height)
@viewport.z = 99999
@mapdata = pbLoadTownMapData
@mapvp = Viewport.new(16, 32, 480, 320)
@mapvp.z = 100000
@mapoverlayvp = Viewport.new(16, 32, 480, 320)
@mapoverlayvp.z = 100001
@viewport2 = Viewport.new(0, 0, Graphics.width, Graphics.height)
@viewport2.z = 100001
@sprites = SpriteHash.new
@sprites["bg"] = Sprite.new(@viewport)
@sprites["bg"].bmp("Graphics/Pictures/mapbg")
@window = SpriteHash.new
@window["map"] = Sprite.new(@mapvp)
@weatherIcons = SpriteHash.new
if Settings::GAME_ID == :IF_KANTO
mapFilename = isPostgame?() ? "map_postgame" : "map"
else
if PBDayNight.isNight?
mapFilename = "map_hoenn_night"
else
mapFilename = "map_hoenn"
end
echoln mapFilename
end
# @window["map"].bmp("Graphics/Pictures/#{@data[1]}")
@window["map"].bmp("Graphics/Pictures/map/#{mapFilename}")
# for hidden in REGION_MAP_EXTRAS
# if hidden[0] == @region && ((wallmap && hidden[5]) || # always show if looking at wall map, irrespective of switch
# (!wallmap && hidden[1] > 0 && $game_switches[hidden[1]]))
# if !@window["map2"]
# @window["map2"] = BitmapSprite.new(480,320,@mapoverlayvp)
# end
# pbDrawImagePositions(@window["map2"].bitmap, [
# ["Graphics/Pictures/#{hidden[4]}", hidden[2] * TileWidth, hidden[3] * TileHeight, 0, 0, -1, -1],
# ])
# end
# end
@window["player"] = Sprite.new(@mapoverlayvp)
if @show_player
if map_metadata
player = map_metadata.town_map_position
if true #player && player[0] == @region #only use 1 region
$PokemonGlobal.regionMapSel = [0, 0]
gender = $Trainer.gender.to_digits(3)
# @window["player"].bmp("Graphics/Pictures/map/Player#{gender}")
@window["player"].bmp("Graphics/Pictures/map/location_icon")
@window["player"].x = TileWidth * player[1] + (TileWidth / 2.0) if player
@window["player"].y = TileHeight * player[2] + (TileHeight / 2.0) if player
@window["player"].center_origins
end
else
end
end
@window["areahighlight"] = BitmapSprite.new(@window["map"].bitmap.width, @window["map"].bitmap.height, @mapoverlayvp)
@window["areahighlight"].y = -8
# pokedex highlights
# if @species != nil
# @window["areahighlight"].bitmap.clear
# # Fill the array "points" with all squares of the region map in which the
# # species can be found
#
# mapwidth = @window["map"].bitmap.width / BetterRegionMap::TileWidth
# data = calculatePointsAndCenter(mapwidth)
#
# points = data[0]
# minxy = data[1]
# maxxy = data[2]
#
# # Draw coloured squares on each square of the region map with a nest
# pointcolor = Color.new(0, 248, 248)
# pointcolorhl = Color.new(192, 248, 248)
#
# sqwidth = TileWidth.round
# sqheight = TileHeight.round
#
# for j in 0...points.length
# if points[j]
# x = (j % mapwidth) * sqwidth
# y = (j / mapwidth) * sqheight
# @window["areahighlight"].bitmap.fill_rect(x, y, sqwidth, sqheight, pointcolor)
# if j - mapwidth < 0 || !points[j - mapwidth]
# @window["areahighlight"].bitmap.fill_rect(x, y - 2, sqwidth, 2, pointcolorhl)
# end
# if j + mapwidth >= points.length || !points[j + mapwidth]
# @window["areahighlight"].bitmap.fill_rect(x, y + sqheight, sqwidth, 2, pointcolorhl)
# end
# if j % mapwidth == 0 || !points[j - 1]
# @window["areahighlight"].bitmap.fill_rect(x - 2, y, 2, sqheight, pointcolorhl)
# end
# if (j + 1) % mapwidth == 0 || !points[j + 1]
# @window["areahighlight"].bitmap.fill_rect(x + sqwidth, y, 2, sqheight, pointcolorhl)
# end
# end
# end
# end
@sprites["cursor"] = Sprite.new(@viewport2)
@sprites["cursor"].bmp("Graphics/Pictures/mapCursor")
@sprites["cursor"].src_rect.width = @sprites["cursor"].bmp.height
@sprites["weather"] = Sprite.new(@viewport2)
@sprites["weather"].bmp(get_current_map_weather_icon)
@sprites["weather"].x=446
@sprites["weather"].y=34
@sprites["weather"].z=5000
if !$PokemonGlobal.regionMapSel
$PokemonGlobal.regionMapSel = [0, 0]
end
if @species != nil && minxy[0] != nil && maxxy[1] != nil
$PokemonGlobal.regionMapSel[0] = ((minxy[0] + maxxy[0]) / 2).round
$PokemonGlobal.regionMapSel[1] = ((minxy[1] + maxxy[1]) / 2).round
end
@sprites["cursor"].z = 11
@sprites["cursor"].ox = (@sprites["cursor"].bmp.height - TileWidth) / 2.0
@sprites["cursor"].oy = @sprites["cursor"].ox
@sprites["txt"] = TextSprite.new(@viewport)
@sprites["arrowLeft"] = Sprite.new(@viewport2)
@sprites["arrowLeft"].bmp("Graphics/Pictures/mapArrowRight")
@sprites["arrowLeft"].mirror = true
@sprites["arrowLeft"].center_origins
@sprites["arrowLeft"].xyz = 12, Graphics.height / 2
@sprites["arrowRight"] = Sprite.new(@viewport2)
@sprites["arrowRight"].bmp("Graphics/Pictures/mapArrowRight")
@sprites["arrowRight"].center_origins
@sprites["arrowRight"].xyz = Graphics.width - 12, Graphics.height / 2
@sprites["arrowUp"] = Sprite.new(@viewport2)
@sprites["arrowUp"].bmp("Graphics/Pictures/mapArrowDown")
@sprites["arrowUp"].angle = 180
@sprites["arrowUp"].center_origins
@sprites["arrowUp"].xyz = Graphics.width / 2, 24
@sprites["arrowDown"] = Sprite.new(@viewport2)
@sprites["arrowDown"].bmp("Graphics/Pictures/mapArrowDown")
@sprites["arrowDown"].center_origins
@sprites["arrowDown"].xyz = Graphics.width / 2, Graphics.height - 24
update_text
@dirs = []
@mdirs = []
@i = 0
if can_fly
@spots = {}
n = 0
for x in 0...(@window["map"].bmp.width / TileWidth)
for y in 0...(@window["map"].bmp.height / TileHeight)
healspot = pbGetHealingSpot(x, y)
if can_fly_to_location(healspot)
@window["point#{n}"] = Sprite.new(@mapvp)
@window["point#{n}"].bmp("Graphics/Pictures/map/mapFly")
@window["point#{n}"].src_rect.width = @window["point#{n}"].bmp.height
@window["point#{n}"].x = TileWidth * x + (TileWidth / 2)
@window["point#{n}"].y = TileHeight * y + (TileHeight / 2)
@window["point#{n}"].oy = @window["point#{n}"].bmp.height / 2.0
@window["point#{n}"].ox = @window["point#{n}"].oy
@spots[[x, y]] = healspot
n += 1
end
end
end
end
draw_all_weather if DEBUG_WEATHER && $game_weather
initial_position = calculate_initial_position(player)
init_cursor_position(initial_position[0], initial_position[1])
center_window()
hideBlk { update(false) }
main
end
def calculate_initial_position(player)
if player
x_pos = player[1] if player[1]
y_pos = player[2] if player[2]
return [x_pos, y_pos]
end
return Settings::GAME_ID == :IF_KANTO ? KANTO_DEFAULT_POS : HOENN_DEFAULT_POS
end
def findNearbyHealingSpot(current_x, current_y)
range = 5 # Area around each healing spot to check
closest_spot = nil
min_distance = Float::INFINITY
for new_x in current_x - range..current_x + range
for new_y in current_y - range..current_y + range
if can_fly_to_location(pbGetHealingSpot(new_x, new_y))
distance = Math.sqrt((new_x - current_x)**2 + (new_y - current_y)**2)
if distance < min_distance && !(new_x == current_x && new_y == current_y)
min_distance = distance
closest_spot = [new_x, new_y]
end
end
end
end
echoln "Closest spot: #{closest_spot.inspect}" if closest_spot
return closest_spot
end
def synchronize_cursor
# Sync logical position to visual cursor position
x = (($sprites["cursor"].x - 16) / TileWidth).round
y = (($sprites["cursor"].y - 32) / TileHeight).round
$PokemonGlobal.regionMapSel[0] = x
$PokemonGlobal.regionMapSel[1] = y
# Ensure the window is in the correct position
visual_cursor_x = 16 + TileWidth * x
visual_cursor_y = 32 + TileHeight * y
@sprites["cursor"].x = visual_cursor_x + @window.x
@sprites["cursor"].y = visual_cursor_y + @window.y
end
def move_cursor_to(x, y)
# Update the logical position
$PokemonGlobal.regionMapSel[0] = x
$PokemonGlobal.regionMapSel[1] = y
# Calculate the visual position of the cursor based on the logical position
visual_cursor_x = 16 + TileWidth * x
visual_cursor_y = 32 + TileHeight * y
# Ensure the map window scrolls to keep the cursor centered when needed
# Calculate bounds for the map window
window_min_x = -1 * (@window["map"].bmp.width - Settings::SCREEN_WIDTH)
window_min_x = 0 if window_min_x > 0
window_min_y = -1 * (@window["map"].bmp.height - Settings::SCREEN_HEIGHT)
window_min_y = 0 if window_min_y > 0
# Adjust the map window X-axis to center the cursor
if visual_cursor_x < 16 # Too far left
@window.x = [@window.x + (16 - visual_cursor_x), 0].min
elsif visual_cursor_x > Settings::SCREEN_WIDTH - 16 # Too far right
@window.x = [@window.x - (visual_cursor_x - (Settings::SCREEN_WIDTH - 16)), window_min_x].max
end
# Adjust the map window Y-axis to center the cursor
if visual_cursor_y < 32 # Too far up
@window.y = [@window.y + (32 - visual_cursor_y), 0].min
elsif visual_cursor_y > Settings::SCREEN_HEIGHT - 32 # Too far down
@window.y = [@window.y - (visual_cursor_y - (Settings::SCREEN_HEIGHT - 32)), window_min_y].max
end
# After adjusting the window, re-calculate the cursor position
# Ensure it's visually accurate relative to the adjusted map window
@sprites["cursor"].x = visual_cursor_x + @window.x
@sprites["cursor"].y = visual_cursor_y + @window.y
adjust_window_if_not_visited_regions
end
def init_cursor_position(x, y)
$PokemonGlobal.regionMapSel[0] = x
$PokemonGlobal.regionMapSel[1] = y
@sprites["cursor"].x = 16 + TileWidth * $PokemonGlobal.regionMapSel[0]
@sprites["cursor"].y = 32 + TileHeight * $PokemonGlobal.regionMapSel[1]
# @sprites["cursor"].x = x + TileWidth * $PokemonGlobal.regionMapSel[0]
# @sprites["cursor"].y = y + TileHeight * $PokemonGlobal.regionMapSel[1]
#
# @window["player"].x = TileWidth * player[1] + (TileWidth / 2.0)
# @window["player"].y = TileHeight * player[2] + (TileHeight / 2.0)
end
def been_to_johto()
first_visited_map = 248 #goldenrod train station
return $PokemonGlobal.visitedMaps[first_visited_map]
end
def been_to_sevii()
offshore_road_map = 762 #offshore road
knot_island_map = 526
return $PokemonGlobal.visitedMaps[offshore_road_map] || $PokemonGlobal.visitedMaps[knot_island_map]
end
def center_window()
# Center the window on the cursor
windowminx = -1 * (@window["map"].bmp.width - Settings::SCREEN_WIDTH)
windowminx = 0 if windowminx > 0
windowminy = -1 * (@window["map"].bmp.height - Settings::SCREEN_HEIGHT)
windowminy = 0 if windowminy > 0
if @sprites["cursor"].x > (Settings::SCREEN_WIDTH / 2)
@window.x = (Settings::SCREEN_WIDTH / 2) - @sprites["cursor"].x
if (@window.x < windowminx)
@window.x = windowminx
end
@sprites["cursor"].x += @window.x
end
if @sprites["cursor"].y > (Settings::SCREEN_HEIGHT / 2)
@window.y = (Settings::SCREEN_HEIGHT / 2) - @sprites["cursor"].y
if @window.y < windowminy
@window.y = windowminy
end
@sprites["cursor"].y += @window.y
end
adjust_window_if_not_visited_regions()
end
def adjust_window_if_not_visited_regions()
if Settings::GAME_ID == :IF_KANTO
if !been_to_johto()
baseline = -352
if @window.x >= baseline
old_window_x = @window.x
@window.x = baseline
difference = baseline - old_window_x
@sprites["cursor"].x += difference
end
end
if !been_to_sevii()
baseline = 0
if @window.y < baseline
old_window_y = @window.y
@window.y = baseline
difference = baseline - old_window_y
@sprites["cursor"].y += difference
end
end
else
return
end
end
def can_fly_to_location(healspot)
return true if healspot && @fly_anywhere
return healspot && $PokemonGlobal.visitedMaps[healspot[0]]
end
def pbGetHealingSpot(x, y)
return nil if !@data[2]
for loc in @data[2]
if loc[0] == x && loc[1] == y
if !loc[4] || !loc[5] || !loc[6]
return nil
else
return [loc[4], loc[5], loc[6]]
end
end
end
return nil
end
def main
frame=0
loop do
update
if Input.press?(Input::RIGHT) && ![4, 6].any? { |e| @dirs.include?(e) || @mdirs.include?(e) }
if @sprites["cursor"].x < 480
$PokemonGlobal.regionMapSel[0] += 1
@sx = @sprites["cursor"].x
@dirs << DIRECTION_RIGHT
elsif @window.x > -1 * (@window["map"].bmp.width - 480)
$PokemonGlobal.regionMapSel[0] += 1
@mx = @window.x
@mdirs << DIRECTION_RIGHT
end
end
if Input.press?(Input::LEFT) && ![4, 6].any? { |e| @dirs.include?(e) || @mdirs.include?(e) }
if @sprites["cursor"].x > 16
$PokemonGlobal.regionMapSel[0] -= 1
@sx = @sprites["cursor"].x
@dirs << DIRECTION_LEFT
elsif @window.x < 0 && been_to_johto()
$PokemonGlobal.regionMapSel[0] -= 1
@mx = @window.x
@mdirs << DIRECTION_LEFT
end
end
if Input.press?(Input::DOWN) && ![DIRECTION_DOWN, DIRECTION_UP].any? { |e| @dirs.include?(e) || @mdirs.include?(e) }
if @sprites["cursor"].y <= 320
$PokemonGlobal.regionMapSel[1] += 1
@sy = @sprites["cursor"].y
@dirs << DIRECTION_DOWN
elsif @window.y > -1 * (@window["map"].bmp.height - 320) && been_to_sevii()
$PokemonGlobal.regionMapSel[1] += 1
@my = @window.y
@mdirs << DIRECTION_DOWN
end
end
if Input.press?(Input::UP) && ![2, 8].any? { |e| @dirs.include?(e) || @mdirs.include?(e) }
if @sprites["cursor"].y > 32
$PokemonGlobal.regionMapSel[1] -= 1
@sy = @sprites["cursor"].y
@dirs << DIRECTION_UP
elsif @window.y < 0
$PokemonGlobal.regionMapSel[1] -= 1
@my = @window.y
@mdirs << DIRECTION_UP
end
end
if Input.repeat?(Input::AUX1)
print_current_position()
new_weather_cycle if DEBUG_WEATHER && frame%12==0
frame+=1
end
if Input.trigger?(Input::C) && @dirs.empty?
x, y = $PokemonGlobal.regionMapSel
if @spots && @spots[[x, y]]
@flydata = @spots[[x, y]]
break
else
stickToPositions = findNearbyHealingSpot(x, y)
if stickToPositions
@sy = @sprites["cursor"].y
@sx = @sprites["cursor"].x
@my = @window.y
@mx = @window.x
move_cursor_to(stickToPositions[0], stickToPositions[1])
update_text
# synchronize_cursor # Force sync
end
end
end
break if Input.trigger?(Input::B)
end
dispose
end
def update(update_gfx = true)
@sprites["arrowLeft"].visible = @window.x < 0 && been_to_johto()
@sprites["arrowRight"].visible = @window.x > -1 * (@window["map"].bmp.width - 480)
@sprites["arrowUp"].visible = @window.y < 0
@sprites["arrowDown"].visible = @window.y > -1 * (@window["map"].bmp.height - 320) && been_to_sevii()
if update_gfx
Graphics.update
Input.update
end
intensity = (Graphics.frame_count % 40) * 12
intensity = 480 - intensity if intensity > 240
@window["areahighlight"].opacity = intensity
@i += 1
if @i % CursorAnimateDelay == 0
@sprites["cursor"].src_rect.x += @sprites["cursor"].src_rect.width
@sprites["cursor"].src_rect.x = 0 if @sprites["cursor"].src_rect.x >= @sprites["cursor"].bmp.width
end
if @i % FlyPointAnimateDelay == 0
@window.keys.each do |e|
next unless e.to_s.start_with?("point")
@window[e].src_rect.x += @window[e].src_rect.width
@window[e].src_rect.x = 0 if @window[e].src_rect.x >= @window[e].bmp.width
end
end
if @i % 2 == 0
case @i % 32
when 0...8
@sprites["arrowLeft"].x -= 1
@sprites["arrowRight"].x += 1
@sprites["arrowUp"].y -= 1
@sprites["arrowDown"].y += 1
when 8...24
@sprites["arrowLeft"].x += 1
@sprites["arrowRight"].x -= 1
@sprites["arrowUp"].y += 1
@sprites["arrowDown"].y -= 1
when 24...32
@sprites["arrowLeft"].x -= 1
@sprites["arrowRight"].x += 1
@sprites["arrowUp"].y -= 1
@sprites["arrowDown"].y += 1
end
end
# Cursor movement
if @dirs.include?(DIRECTION_RIGHT)
@hor_count ||= 0
@hor_count += 1
update_text if @hor_count == (CursorMoveSpeed / 2.0).round
@sprites["cursor"].x = @sx + (TileWidth / CursorMoveSpeed.to_f) * @hor_count
if @hor_count == CursorMoveSpeed
@dirs.delete(6)
@hor_count = nil
@sx = nil
end
#print_current_position()
end
if @dirs.include?(DIRECTION_LEFT)
@hor_count ||= 0
@hor_count += 1
update_text if @hor_count == (CursorMoveSpeed / 2.0).round
@sprites["cursor"].x = @sx - (TileWidth / CursorMoveSpeed.to_f) * @hor_count
if @hor_count == CursorMoveSpeed
@dirs.delete(4)
@hor_count = nil
@sx = nil
end
#print_current_position()
end
if @dirs.include?(DIRECTION_UP)
@ver_count ||= 0
@ver_count += 1
update_text if @ver_count == (CursorMoveSpeed / 2.0).round
@sprites["cursor"].y = @sy - (TileHeight / CursorMoveSpeed.to_f) * @ver_count
if @ver_count == CursorMoveSpeed
@dirs.delete(8)
@ver_count = nil
@sy = nil
end
#print_current_position()
end
if @dirs.include?(DIRECTION_DOWN)
@ver_count ||= 0
@ver_count += 1
update_text if @ver_count == (CursorMoveSpeed / 2.0).round
@sprites["cursor"].y = @sy + (TileHeight / CursorMoveSpeed.to_f) * @ver_count
if @ver_count == CursorMoveSpeed
@dirs.delete(2)
@ver_count = nil
@sy = nil
end
#print_current_position()
end
# Map movement
if @mdirs.include?(DIRECTION_RIGHT)
@hor_count ||= 0
@hor_count += 1
update_text if @hor_count == (CursorMoveSpeed / 2.0).round
@window.x = @mx - (TileWidth / CursorMoveSpeed.to_f) * @hor_count
if @hor_count == CursorMoveSpeed
@mdirs.delete(6)
@hor_count = nil
@mx = nil
end
end
if @mdirs.include?(DIRECTION_LEFT)
@hor_count ||= 0
@hor_count += 1
update_text if @hor_count == (CursorMoveSpeed / 2.0).round
@window.x = @mx + (TileWidth / CursorMoveSpeed.to_f) * @hor_count
if @hor_count == CursorMoveSpeed
@mdirs.delete(4)
@hor_count = nil
@mx = nil
end
end
if @mdirs.include?(DIRECTION_UP)
@ver_count ||= 0
@ver_count += 1
update_text if @ver_count == (CursorMoveSpeed / 2.0).round
@window.y = @my + (TileHeight / CursorMoveSpeed.to_f) * @ver_count
if @ver_count == CursorMoveSpeed
@mdirs.delete(8)
@ver_count = nil
@my = nil
end
end
if @mdirs.include?(DIRECTION_DOWN)
@ver_count ||= 0
@ver_count += 1
update_text if @ver_count == (CursorMoveSpeed / 2.0).round
@window.y = @my - (TileHeight / CursorMoveSpeed.to_f) * @ver_count
if @ver_count == CursorMoveSpeed
@mdirs.delete(2)
@ver_count = nil
@my = nil
end
end
end
def print_current_position()
echoln _INTL("({1}, {2})", $PokemonGlobal.regionMapSel[0], $PokemonGlobal.regionMapSel[1])
end
def update_text
location = @data[2].find do |e|
e[0] == $PokemonGlobal.regionMapSel[0] &&
e[1] == $PokemonGlobal.regionMapSel[1]
end
if Settings::GAME_ID == :IF_HOENN
weather = update_weather_icon(location)
if !weather
@sprites["cursor"].bmp("Graphics/Pictures/mapCursor")
@sprites["cursor"].src_rect.width = @sprites["cursor"].bmp.height
end
end
text = ""
text = location[2] if location
poi = ""
poi = location[3] if location && location[3]
@sprites["txt"].draw([
[pbGetMessage(MessageTypes::RegionNames, @region), 16, 0, 0,
Color.new(255, 255, 255), Color.new(0, 0, 0)],
[text, 16, 354, 0, Color.new(255, 255, 255), Color.new(0, 0, 0)],
[poi, 496, 354, 1, Color.new(255, 255, 255), Color.new(0, 0, 0)],
], true)
end
def dispose
showBlk { update(false) }
@sprites.dispose
@window.dispose
@viewport.dispose
@viewport2.dispose
@mapvp.dispose
hideBlk
Input.update
end
end
#==============================================================================#
# Overwrites some old methods to use the new region map #
#==============================================================================#
ItemHandlers::UseInField.add(:TOWNMAP, proc { |item|
pbBetterRegionMap
next 1
})
def pbShowMap(region = -1, wallmap = true)
# pokegear
pbBetterRegionMap(region, true, false, wallmap)
end
def calculatePointsAndCenter(mapwidth)
# Fill the array "points" with all squares of the region map in which the
# species can be found
points = []
encdata = pbLoadEncountersData
minxy = [nil, nil] # top-leftmost tile
maxxy = [nil, nil] # bottom-rightmost tile
for enc in encdata.keys
enctypes = encdata[enc][1]
if pbFindEncounter(enctypes, @species)
mappos = GameData::MapMetadata.get(enc).town_map_position
if true #mappos && mappos[0] == @region #only use 1 region heheh
showpoint = true
for loc in @mapdata[@region][2]
showpoint = false if loc[0] == mappos[1] && loc[1] == mappos[2] &&
loc[7] && !$game_switches[loc[7]]
end
if showpoint
#mapsize = pbGetMetadata(enc, MetadataMapSize)
mapsize = GameData::MapMetadata.get(enc).town_map_size
if mapsize && mapsize[0] && mapsize[0] > 0
sqwidth = mapsize[0]
sqheight = (mapsize[1].length * 1.0 / mapsize[0]).ceil
for i in 0...sqwidth
for j in 0...sqheight
if mapsize[1][i + j * sqwidth, 1].to_i > 0
# work out the upper-leftmost and lower-rightmost tiles
minxy[0] = (minxy[0] == nil || minxy[0] > mappos[1] + i) ? mappos[1] + i : minxy[0]
minxy[1] = (minxy[1] == nil || minxy[1] > mappos[2] + j) ? mappos[2] + j : minxy[1]
maxxy[0] = (maxxy[0] == nil || maxxy[0] < mappos[1] + i) ? mappos[1] + i : maxxy[0]
maxxy[1] = (maxxy[1] == nil || maxxy[1] < mappos[2] + j) ? mappos[2] + j : maxxy[1]
points[mappos[1] + i + (mappos[2] + j) * mapwidth] = true
end
end
end
else
# work out the upper-leftmost and lower-rightmost tiles
minxy[0] = (minxy[0] == nil || minxy[0] > mappos[1]) ? mappos[1] : minxy[0]
minxy[1] = minxy[1] == nil || minxy[1] > mappos[2] ? mappos[2] : minxy[1]
maxxy[0] = (maxxy[0] == nil || maxxy[0] < mappos[1]) ? mappos[1] : maxxy[0]
maxxy[1] = (maxxy[1] == nil || maxxy[1] < mappos[2]) ? mappos[2] : maxxy[1]
points[mappos[1] + mappos[2] * mapwidth] = true
end
end
end
end
end
return [points, minxy, maxxy]
end
class PokemonReadyMenu
def pbStartReadyMenu(moves, items)
commands = [[], []] # Moves, items
for i in moves
commands[0].push([i[0], GameData::Move.get(i[0]).name, true, i[1]])
end
commands[0].sort! { |a, b| a[1] <=> b[1] }
for i in items
commands[1].push([i, GameData::Item.get(i).name, false])
end
commands[1].sort! { |a, b| a[1] <=> b[1] }
@scene.pbStartScene(commands)
loop do
command = @scene.pbShowCommands
break if command == -1
if command[0] == 0 # Use a move
move = commands[0][command[1]][0]
user = $Trainer.party[commands[0][command[1]][3]]
if move == :FLY || move == :TELEPORT
###############################################
pbHideMenu
ret = pbBetterRegionMap(-1, true, true)
pbShowMenu unless ret
###############################################
if ret
$PokemonTemp.flydata = ret
$game_temp.in_menu = false
Kernel.pbUseHiddenMove(user, move)
break
end
else
pbHideMenu
if pbConfirmUseHiddenMove(user, move)
$game_temp.in_menu = false
pbUseHiddenMove(user, move)
break
else
pbShowMenu
end
end
else
# Use an item
item = commands[1][command[1]][0]
pbHideMenu
if ItemHandlers.triggerConfirmUseInField(item)
$game_temp.in_menu = false
break if pbUseKeyItemInField(item)
$game_temp.in_menu = true
end
end
pbShowMenu
end
@scene.pbEndScene
end
end
#
# class PokemonPokedexInfo_Scene
# def drawPageArea
# @sprites["background"].setBitmap(_INTL("Graphics/Pictures/Pokedex/bg_area"))
# overlay = @sprites["overlay"].bitmap
# base = Color.new(88,88,80)
# shadow = Color.new(168,184,184)
# @sprites["areahighlight"].bitmap.clear
#
# mapwidth = @sprites["areamap"].bitmap.width/BetterRegionMap::TileWidth
# data = calculatePointsAndCenter(mapwidth)
#
# points = data[0]
# minxy = data[1]
# maxxy = data[2]
#
# # Draw coloured squares on each square of the region map with a nest
# pointcolor = Color.new(0,248,248)
# pointcolorhl = Color.new(192,248,248)
# sqwidth = PokemonRegionMap_Scene::SQUAREWIDTH
# sqheight = PokemonRegionMap_Scene::SQUAREHEIGHT
#
#
# # Center the window on the center of visible areas
# if minxy[0] != nil && maxxy[0] != nil
# center_x = ((minxy[0]+maxxy[0])/2).round * sqwidth
# center_y = ((minxy[1]+maxxy[1])/2).round * sqheight - 40
# else
# center_x = Settings::SCREEN_WIDTH/2
# center_y = Settings::SCREEN_HEIGHT/2 - 40
# end
#
# windowminx = -1 * (@sprites["areamap"].bmp.width - Settings::SCREEN_WIDTH + 16)
# windowminy = -1 * (@sprites["areamap"].bmp.height - Settings::SCREEN_HEIGHT + 16)
#
# if center_x > (Settings::SCREEN_WIDTH / 2)
# @sprites["areamap"].x = (480 / 2 ) - center_x
# if (@sprites["areamap"].x < windowminx)
# @sprites["areamap"].x = windowminx
# end
# else
# @sprites["areamap"].x = windowminx
# end
# if center_y > (Settings::SCREEN_HEIGHT / 2)
# @sprites["areamap"].y = (320 / 2 ) - center_y
# if @sprites["areamap"].y < windowminy
# @sprites["areamap"].y = windowminy
# end
# else
# @sprites["areamap"].y = windowminy
# end
#
# for j in 0...points.length
# if points[j]
# x = (j%mapwidth)*sqwidth
# x += @sprites["areamap"].x
# y = (j/mapwidth)*sqheight
# y += @sprites["areamap"].y - 8
# @sprites["areahighlight"].bitmap.fill_rect(x,y,sqwidth,sqheight,pointcolor)
# if j-mapwidth<0 || !points[j-mapwidth]
# @sprites["areahighlight"].bitmap.fill_rect(x,y-2,sqwidth,2,pointcolorhl)
# end
# if j+mapwidth>=points.length || !points[j+mapwidth]
# @sprites["areahighlight"].bitmap.fill_rect(x,y+sqheight,sqwidth,2,pointcolorhl)
# end
# if j%mapwidth==0 || !points[j-1]
# @sprites["areahighlight"].bitmap.fill_rect(x-2,y,2,sqheight,pointcolorhl)
# end
# if (j+1)%mapwidth==0 || !points[j+1]
# @sprites["areahighlight"].bitmap.fill_rect(x+sqwidth,y,2,sqheight,pointcolorhl)
# end
# end
# end
#
# # Set the text
# textpos = []
# if points.length==0
# pbDrawImagePositions(overlay,[
# [sprintf("Graphics/Pictures/Pokedex/overlay_areanone"),108,188]
# ])
# textpos.push([_INTL("Area unknown"),Graphics.width/2,Graphics.height/2,2,base,shadow])
# end
# textpos.push([pbGetMessage(MessageTypes::RegionNames,@region),414,44,2,base,shadow])
# textpos.push([_INTL("{1}'s area",PBSpecies.getName(@species)),
# Graphics.width/2,352,2,base,shadow])
#
# textpos.push([_INTL("Full view"),Graphics.width/2,306,2,base,shadow])
# pbDrawTextPositions(overlay,textpos)
# end
# end
#
# class PokemonPokedexInfo_Scene
# def pbScene
# pbPlayCrySpecies(@species,@form)
# loop do
# Graphics.update
# Input.update
# pbUpdate
# dorefresh = false
# if Input.trigger?(Input::A)
# pbSEStop
# pbPlayCrySpecies(@species,@form) if @page==1
# elsif Input.trigger?(Input::B)
# pbPlayCloseMenuSE
# break
# elsif Input.trigger?(Input::C)
# if @page==2 # Area
# pbBetterRegionMap(@region,false,false,false,@species)
# elsif @page==3 # Forms
# if @available.length>1
# pbPlayDecisionSE
# pbChooseForm
# dorefresh = true
# end
# end
# elsif Input.trigger?(Input::UP)
# oldindex = @index
# pbGoToPrevious
# if @index!=oldindex
# pbUpdateDummyPokemon
# @available = pbGetAvailableForms
# pbSEStop
# (@page==1) ? pbPlayCrySpecies(@species,@form) : pbPlayCursorSE
# dorefresh = true
# end
# elsif Input.trigger?(Input::DOWN)
# oldindex = @index
# pbGoToNext
# if @index!=oldindex
# pbUpdateDummyPokemon
# @available = pbGetAvailableForms
# pbSEStop
# (@page==1) ? pbPlayCrySpecies(@species,@form) : pbPlayCursorSE
# dorefresh = true
# end
# elsif Input.trigger?(Input::LEFT)
# oldpage = @page
# @page -= 1
# @page = 1 if @page<1
# @page = 3 if @page>3
# if @page!=oldpage
# pbPlayCursorSE
# dorefresh = true
# end
# elsif Input.trigger?(Input::RIGHT)
# oldpage = @page
# @page += 1
# @page = 1 if @page<1
# @page = 3 if @page>3
# if @page!=oldpage
# pbPlayCursorSE
# dorefresh = true
# end
# end
# if dorefresh
# drawPage(@page)
# end
# end
# return @index
# end
# end

View File

@@ -0,0 +1,232 @@
# # ------------------------------------------------------------------------------
# # Written by Stochastic, except for customTrainerBattle method which is a
# # modified version of pbTrainerBattle method.
# # ------------------------------------------------------------------------------
#
# BR_DRAW = 5
# BR_LOSS = 2
# BR_WIN = 1
#
# # ------------------------------------------------------------------------------
# # species - Name of the species, e.g. "PIKACHU"
# # level - Level
# # moveset - Optional. Array of moves, e.g. [:MUDSLAP, :THUNDERBOLT, :VINEWHIP]
# # If not specified, pokemon will be created with moves learned by leveling.
# # The pokemon doesn't need to be able to learn the given moves, they can be
# # arbitary.
# # ------------------------------------------------------------------------------
# def createPokemon(species, level, helditem=nil, moveset=nil, ability=nil, form=nil, nature=nil, hpev=nil, atkev=nil, defev=nil, speev=nil, spaev=nil, spdev=nil)
# begin
# poke = Pokemon.new(species, level)
# poke.item=(helditem) if helditem
# poke.moves = convertMoves(moveset) if moveset
# poke.ability=(ability) if ability
# poke.form = form if form
# poke.shiny = false
# poke.nature =(nature) if nature
# poke.happiness=0
# poke.iv[0]=hpev
# poke.iv[1]=atkev
# poke.iv[2]=defev
# poke.iv[3]=speev
# poke.iv[4]=spaev
# poke.iv[5]=spdev
#
# poke.calc_stats
# return poke
# end
# end
#
# def convertMoves(moves)
# moves.map! {|m| PBMove.new(getMoveID(m))}
# return moves
# end
#
# # provide move like this; :TACKLE
# def getMoveID(move)
# return getConst(PBMoves,move)
# end
#
# # ------------------------------------------------------------------------------
# # Creates a trainer with specified id, name, party, and optionally, items.
# # Does not depend on defined trainers, only on trainer types
# # ------------------------------------------------------------------------------
# def createTrainer(trainerid,trainername,party,items=[])
#
# name = pbGetMessageFromHash(MessageTypes::TrainerNames, trainername)
#
# trainer_hash = {
# :id_number => 999,
# :trainer_type => trainerid,
# :name => name,
# :version => 0,
# :pokemon => party,
# :items => items
# }
# opponent = GameData::Trainer.new(trainer_hash)
# #opponent.setForeignID($Trainer) if $Trainer
# # opponent.party = party
# return [opponent.to_trainer,items,party]
# end
#
# def init_trainer(trainer_data)
# return (trainer_data) ? trainer_data.to_trainer : nil
# end
#
# # ------------------------------------------------------------------------------
# # Initiates trainer battle. This is a modified pbTrainerBattle method.
# #
# # trainer - custom PokeBattle_Trainer provided by the user
# # endspeech - what the trainer says in-battle when defeated
# # doublebattle - Optional. Set it to true if you want a double battle
# # canlose - Optional. Set it to true if you want your party to be healed after battle,and if you don't want to be sent to a pokemon center if you lose
# # ------------------------------------------------------------------------------
#
# def customTrainerBattle(trainer,endSpeech,doubleBattle=false,canLose=false,outcomeVar=1)
# # If there is another NPC trainer who spotted the player at the same time, and
# # it is possible to have a double battle (the player has 2+ able Pokémon or
# # has a partner trainer), then record this first NPC trainer into
# # $PokemonTemp.waitingTrainer and end this method. That second NPC event will
# # then trigger and cause the battle to happen against this first trainer and
# # themselves.
# if !$PokemonTemp.waitingTrainer && pbMapInterpreterRunning? &&
# ($Trainer.able_pokemon_count > 1 ||
# ($Trainer.able_pokemon_count > 0 && $PokemonGlobal.partner))
# thisEvent = pbMapInterpreter.get_character(0)
# # Find all other triggered trainer events
# triggeredEvents = $game_player.pbTriggeredTrainerEvents([2],false)
# otherEvent = []
# for i in triggeredEvents
# next if i.id==thisEvent.id
# next if $game_self_switches[[$game_map.map_id,i.id,"A"]]
# otherEvent.push(i)
# end
# return false if !trainer
# Events.onTrainerPartyLoad.trigger(nil,trainer)
# # If there is exactly 1 other triggered trainer event, and this trainer has
# # 6 or fewer Pokémon, record this trainer for a double battle caused by the
# # other triggered trainer event
# if otherEvent.length == 1 && trainer.party.length <= Settings::MAX_PARTY_SIZE
# trainer.lose_text = endSpeech if endSpeech && !endSpeech.empty?
# $PokemonTemp.waitingTrainer = [trainer, thisEvent.id]
# return false
# end
# end
# # Set some battle rules
# setBattleRule("outcomeVar",outcomeVar) if outcomeVar!=1
# setBattleRule("canLose") if canLose
# setBattleRule("double") if doubleBattle || $PokemonTemp.waitingTrainer
# # Perform the battle
# if $PokemonTemp.waitingTrainer
# decision = pbTrainerBattleCore($PokemonTemp.waitingTrainer[0],
# [trainer[0].trainer_type,trainer[0].name,endSpeech]
# )
# else
# decision = pbTrainerCustomBattleCore(trainer,[trainer[0].trainer_type,trainer[0].name,endSpeech]) #trainerPartyID
# end
# # Finish off the recorded waiting trainer, because they have now been battled
# if decision==1 && $PokemonTemp.waitingTrainer # Win
# pbMapInterpreter.pbSetSelfSwitch($PokemonTemp.waitingTrainer[1], "A", true)
# end
# $PokemonTemp.waitingTrainer = nil
# # Return true if the player won the battle, and false if any other result
# return (decision==1)
# end
#
#
# def pbTrainerCustomBattleCore(trainer,*args)
# outcomeVar = $PokemonTemp.battleRules["outcomeVar"] || 1
# canLose = $PokemonTemp.battleRules["canLose"] || false
# # Skip battle if the player has no able Pokémon, or if holding Ctrl in Debug mode
# if $Trainer.able_pokemon_count == 0 || ($DEBUG && Input.press?(Input::CTRL))
# pbMessage(_INTL("SKIPPING BATTLE...")) if $DEBUG
# pbMessage(_INTL("AFTER WINNING...")) if $DEBUG && $Trainer.able_pokemon_count > 0
# pbSet(outcomeVar,($Trainer.able_pokemon_count == 0) ? 0 : 1) # Treat it as undecided/a win
# $PokemonTemp.clearBattleRules
# $PokemonGlobal.nextBattleBGM = nil
# $PokemonGlobal.nextBattleME = nil
# $PokemonGlobal.nextBattleCaptureME = nil
# $PokemonGlobal.nextBattleBack = nil
# pbMEStop
# return ($Trainer.able_pokemon_count == 0) ? 0 : 1 # Treat it as undecided/a win
# end
# # Record information about party Pokémon to be used at the end of battle (e.g.
# # comparing levels for an evolution check)
# Events.onStartBattle.trigger(nil)
# # Generate trainers and their parties based on the arguments given
# foeTrainers = []
# foeItems = []
# foeEndSpeeches = []
# foeParty = []
# foePartyStarts = []
# for arg in args
# if arg.is_a?(NPCTrainer)
# foeTrainers.push(arg)
# foePartyStarts.push(foeParty.length)
# arg.party.each { |pkmn| foeParty.push(pkmn) }
# foeEndSpeeches.push(arg.lose_text)
# foeItems.push(arg.items)
# elsif arg.is_a?(Array) # [trainer type, trainer name, ID, speech (optional)]
# pbMissingTrainer(arg[0],arg[1],arg[2]) if !trainer
# return 0 if !trainer
# Events.onTrainerPartyLoad.trigger(nil,trainer)
# foeTrainers.push(trainer)
# foePartyStarts.push(foeParty.length)
# trainer.party.each { |pkmn| foeParty.push(pkmn) }
# foeEndSpeeches.push(arg[3] || trainer.lose_text)
# foeItems.push(trainer.items)
# else
# raise _INTL("Expected NPCTrainer or array of trainer data, got {1}.", arg)
# end
# end
# # Calculate who the player trainer(s) and their party are
# playerTrainers = [$Trainer]
# playerParty = $Trainer.party
# playerPartyStarts = [0]
# room_for_partner = (foeParty.length > 1)
# if !room_for_partner && $PokemonTemp.battleRules["size"] &&
# !["single", "1v1", "1v2", "1v3"].include?($PokemonTemp.battleRules["size"])
# room_for_partner = true
# end
# if $PokemonGlobal.partner && !$PokemonTemp.battleRules["noPartner"] && room_for_partner
# ally = NPCTrainer.new($PokemonGlobal.partner[1], $PokemonGlobal.partner[0])
# ally.id = $PokemonGlobal.partner[2]
# ally.party = $PokemonGlobal.partner[3]
# playerTrainers.push(ally)
# playerParty = []
# $Trainer.party.each { |pkmn| playerParty.push(pkmn) }
# playerPartyStarts.push(playerParty.length)
# ally.party.each { |pkmn| playerParty.push(pkmn) }
# setBattleRule("double") if !$PokemonTemp.battleRules["size"]
# end
# # Create the battle scene (the visual side of it)
# scene = pbNewBattleScene
# # Create the battle class (the mechanics side of it)
# battle = PokeBattle_Battle.new(scene,playerParty,foeParty,playerTrainers,foeTrainers)
# battle.party1starts = playerPartyStarts
# battle.party2starts = foePartyStarts
# battle.items = foeItems
# battle.endSpeeches = foeEndSpeeches
# # Set various other properties in the battle class
# pbPrepareBattle(battle)
# $PokemonTemp.clearBattleRules
# # End the trainer intro music
# Audio.me_stop
# # Perform the battle itself
# decision = 0
# pbBattleAnimation(pbGetTrainerBattleBGM(foeTrainers),(battle.singleBattle?) ? 1 : 3,foeTrainers) {
# pbSceneStandby {
# decision = battle.pbStartBattle
# }
# pbAfterBattle(decision,canLose)
# }
# Input.update
# # Save the result of the battle in a Game Variable (1 by default)
# # 0 - Undecided or aborted
# # 1 - Player won
# # 2 - Player lost
# # 3 - Player or wild Pokémon ran from battle, or player forfeited the match
# # 5 - Draw
# pbSet(outcomeVar,decision)
# return decision
# end

View File

@@ -0,0 +1,191 @@
module SwitchFinder
def self.search_switch_trigger(switch_id)
results = []
mapinfos = $RPGVX ? load_data("Data/MapInfos.rvdata") : load_data("Data/MapInfos.rxdata")
mapinfos.each_key do |map_id|
map = load_data(sprintf("Data/Map%03d.rxdata", map_id))
map.events.each_value do |event|
event.pages.each do |page,index|
# Check conditions for each page
if page.condition.switch1_id == switch_id || page.condition.switch2_id == switch_id
results.push("Map #{map_id}, Event #{event.id} (#{event.x},#{event.y}), Trigger for page #{index}")
end
# Check commands for switch control
page.list.each do |command|
if command.code == 122 && command.parameters[0] == switch_id
results.push("Map #{map_id}, Event #{event.id} (#{event.x},#{event.y}), Command #{command.code}")
end
end
end
end
end
echoln "Switch #{switch_id} found:" + results.to_s
end
def self.search_switch_anyUse(switch_id)
results = []
# Load map info based on RPG Maker version
mapinfos = $RPGVX ? load_data("Data/MapInfos.rvdata") : load_data("Data/MapInfos.rxdata")
# Iterate over each map
mapinfos.each_key do |map_id|
map = load_data(sprintf("Data/Map%03d.rxdata", map_id))
mapinfo = mapinfos[map_id]
# Iterate over each event in the map
map.events.each_value do |event|
# Iterate over each page in the event
event.pages.each_with_index do |page, page_index|
# Check conditions for each page
if page.condition.switch1_id == switch_id || page.condition.switch2_id == switch_id
results.push("Map #{map_id}: #{mapinfo.name}, Event #{event.id} (#{event.x},#{event.y}), Trigger for page #{page_index + 1}")
end
# Iterate over each command in the page
page.list.each_with_index do |command, command_index|
# Check commands for switch control
if command.code == 121
# Command 121 is Control Switches
range_start = command.parameters[0]
range_end = command.parameters[1]
value = command.parameters[2]
# Check if the switch is within the specified range
if range_start <= switch_id && switch_id <= range_end
action = value == 0 ? "ON" : "OFF"
results.push("Map #{map_id}: #{mapinfo.name}, Event #{event.id} (#{event.x},#{event.y}), Command #{command_index + 1}: Set Switch to #{action}")
end
# Check script calls for switch control
elsif command.code == 355
# Command 355 is Call Script
script_text = command.parameters[0]
# Collect multi-line scripts
next_command_index = command_index + 1
while page.list[next_command_index]&.code == 655
script_text += page.list[next_command_index].parameters[0]
next_command_index += 1
end
# Use a regular expression to find switch manipulations
if script_text.match?(/\$game_switches\[\s*#{switch_id}\s*\]/)
results.push("Map #{map_id}: #{mapinfo.name}, Event #{event.id} (#{event.x},#{event.y}), Command #{command_index + 1}: Script Manipulation")
end
end
end
end
end
end
# Output the results
results = "Switch #{switch_id} found:\n" + results.join("\n")
echoln results
return results
end
def self.find_unused_switches(total_switches)
unused_switches = []
# Check each switch from 1 to total_switches
(1..total_switches).each do |switch_id|
results = search_switch_anyUse(switch_id)
report = "Switch #{switch_id}:\n#{results}"
unused_switches << report
end
# Export to a text file
File.open("unused_switches.txt", "w") do |file|
file.puts "Unused Switches:"
unused_switches.each do |switch_id|
file.puts "\n\n#{switch_id}"
end
end
echoln "#{unused_switches.length} unused switches found. Exported to unused_switches.txt."
end
end
# Example usage: Replace 100 with the switch ID you want to search
# SwitchFinder.search_switch(100)
def search_event_scripts(target_string)
results = []
for map_id in 1..999 # Adjust based on your game's max map ID
map_filename = sprintf("Data/Map%03d.rxdata", map_id)
next unless File.exist?(map_filename) # Skip if map file doesn't exist
map_data = load_data(map_filename)
next unless map_data.events # Skip maps with no events
map_data.events.each do |event_id, event|
event.pages.each_with_index do |page, page_index|
next unless page.list # Skip pages with no commands
page.list.each_with_index do |command, cmd_index|
if command.code == 355 || command.code == 655 # Check script command (multi-line)
if command.parameters[0].include?(target_string)
results << {
map_id: map_id,
event_id: event_id,
page_index: page_index + 1,
command_index: cmd_index + 1
}
end
end
end
end
end
end
if results.empty?
echoln "No occurrences of '#{target_string}' found."
else
echoln "Found occurrences of '#{target_string}':"
results.each do |res|
echoln "Map #{res[:map_id]}, Event #{res[:event_id]}, Page #{res[:page_index]}, Command #{res[:command_index]}"
end
end
end
def print_map_tiles
# Define output file path
file_path = "/Users/chardub/Documents/infinitefusion/TileIDs_Output.txt"
# Open file for writing
File.open(file_path, "w") do |file|
map = $game_map
width = map.width
height = map.height
(0...3).each do |z| # For each layer: 0, 1, 2
file.puts("Layer #{z}:")
(0...height).each do |y|
row_ids = []
(0...width).each do |x|
tile_id = map.data[x, y, z]
row_ids << tile_id
end
file.puts(row_ids.join(", "))
end
file.puts("") # Add a blank line between layers
end
end
echoln("Tile IDs exported to #{file_path}")
end

View File

@@ -0,0 +1,51 @@
def Kernel.pbDisplayText(message,xposition,yposition,z=nil, baseColor=nil, shadowColor=nil)
if @hud==nil
@hud = []
end
# Draw the text
baseColor= baseColor ? baseColor : Color.new(72,72,72)
shadowColor= shadowColor ? shadowColor : Color.new(160,160,160)
sprite = BitmapSprite.new(Graphics.width,Graphics.height,@viewport1)
if z != nil
sprite.z=z
end
@hud.push(sprite)
text1=_INTL(message)
textPosition=[
[text1,xposition,yposition,2,baseColor,shadowColor],
]
pbSetSystemFont(@hud[-1].bitmap)
pbDrawTextPositions(@hud[0].bitmap,textPosition)
end
def Kernel.pbDisplayNumber(number,xposition,yposition)
@numT = []
# Draw the text
baseColor=Color.new(72,72,72)
shadowColor=Color.new(160,160,160)
@numT.push(BitmapSprite.new(Graphics.width,Graphics.height,@viewport1))
text1=_INTL(number.to_s)
textPosition=[
[text1,xposition,yposition,2,baseColor,shadowColor],
]
pbSetSystemFont(@numT[-1].bitmap)
pbDrawTextPositions(@numT[0].bitmap,textPosition)
end
def Kernel.pbClearNumber()
if @numT != nil then
for sprite in @numT
sprite.dispose
end
@numT.clear
end
end
def Kernel.pbClearText()
if @hud != nil then
for sprite in @hud
sprite.dispose
end
@hud.clear
end
end

View File

@@ -0,0 +1,259 @@
class PokeBattle_Battler
attr_accessor :ability_id
attr_accessor :ability2_id
#Primary ability utility methods for battlers class
def ability
return GameData::Ability.try_get(@ability_id)
end
def ability=(value)
new_ability = GameData::Ability.try_get(value)
@ability_id = (new_ability) ? new_ability.id : nil
end
def abilityName
abil = self.ability
return (abil) ? abil.name : ""
end
#Secondary ability utility methods for battlers class
def ability2
return nil if !$game_switches[SWITCH_DOUBLE_ABILITIES]
return GameData::Ability.try_get(@ability2_id)
end
def ability2=(value)
return if !$game_switches[SWITCH_DOUBLE_ABILITIES]
new_ability = GameData::Ability.try_get(value)
@ability2_id = (new_ability) ? new_ability.id : nil
end
def ability2Name
abil = self.ability2
return (abil) ? abil.name : ""
end
#Ability logic overrides
def hasActiveAbility?(check_ability, ignore_fainted = false)
return hasActiveAbilityDouble?(check_ability, ignore_fainted) if $game_switches[SWITCH_DOUBLE_ABILITIES]
return false if !abilityActive?(ignore_fainted)
return check_ability.include?(@ability_id) if check_ability.is_a?(Array)
return self.ability == check_ability
end
def hasActiveAbilityDouble?(check_ability, ignore_fainted = false)
return false if !$game_switches[SWITCH_DOUBLE_ABILITIES]
return false if !abilityActive?(ignore_fainted)
if check_ability.is_a?(Array)
return check_ability.include?(@ability_id) || check_ability.include?(@ability2_id)
end
return self.ability == check_ability || self.ability2 == check_ability
end
def triggerAbilityEffectsOnHit(move, user, target)
# Target's ability
if target.abilityActive?(true)
oldHP = user.hp
BattleHandlers.triggerTargetAbilityOnHit(target.ability, user, target, move, @battle)
BattleHandlers.triggerTargetAbilityOnHit(target.ability2, user, target, move, @battle) if $game_switches[SWITCH_DOUBLE_ABILITIES] && target.ability2
user.pbItemHPHealCheck if user.hp < oldHP
end
# User's ability
if user.abilityActive?(true)
BattleHandlers.triggerUserAbilityOnHit(user.ability, user, target, move, @battle)
BattleHandlers.triggerUserAbilityOnHit(user.ability2, user, target, move, @battle) if $game_switches[SWITCH_DOUBLE_ABILITIES] && user.ability2
user.pbItemHPHealCheck
end
end
def pbCheckDamageAbsorption(user, target)
# Substitute will take the damage
if target.effects[PBEffects::Substitute] > 0 && !ignoresSubstitute?(user) &&
(!user || user.index != target.index)
target.damageState.substitute = true
return
end
# Disguise will take the damage
if !@battle.moldBreaker && target.isFusionOf(:MIMIKYU) &&
target.form == 0 && (target.ability == :DISGUISE || target.ability2 == :DISGUISE)
target.damageState.disguise = true
return
end
end
# Called when a Pokémon (self) enters battle, at the end of each move used,
# and at the end of each round.
def pbContinualAbilityChecks(onSwitchIn = false)
# Check for end of primordial weather
@battle.pbEndPrimordialWeather
# Trace
if $game_switches[SWITCH_DOUBLE_ABILITIES] && onSwitchIn
displayOpponentDoubleAbilities()
else
if hasActiveAbility?(:TRACE)
# NOTE: In Gen 5 only, Trace only triggers upon the Trace bearer switching
# in and not at any later times, even if a traceable ability turns
# up later. Essentials ignores this, and allows Trace to trigger
# whenever it can even in the old battle mechanics.
choices = []
@battle.eachOtherSideBattler(@index) do |b|
next if b.ungainableAbility? ||
[:POWEROFALCHEMY, :RECEIVER, :TRACE].include?(b.ability_id)
choices.push(b)
end
if choices.length > 0
choice = choices[@battle.pbRandom(choices.length)]
@battle.pbShowAbilitySplash(self)
self.ability = choice.ability
@battle.pbDisplay(_INTL("{1} traced {2}'s {3}!", pbThis, choice.pbThis(true), choice.abilityName))
@battle.pbHideAbilitySplash(self)
if !onSwitchIn && (unstoppableAbility? || abilityActive?)
BattleHandlers.triggerAbilityOnSwitchIn(self.ability, self, @battle)
end
end
end
end
end
def displayOpponentDoubleAbilities()
@battle.eachOtherSideBattler(@index) do |battler|
@battle.pbShowPrimaryAbilitySplash(battler,true)
@battle.pbShowSecondaryAbilitySplash(battler,true) if battler.isFusion?()
@battle.pbHideAbilitySplash(battler)
end
end
end
class Pokemon
attr_writer :ability_index
attr_writer :ability2_index
#Primary ability utility methods for pokemon class
def ability_index
@ability_index = (@personalID & 1) if !@ability_index
return @ability_index
end
def ability
return GameData::Ability.try_get(ability_id())
end
def ability=(value)
return if value && !GameData::Ability.exists?(value)
@ability = (value) ? GameData::Ability.get(value).id : value
end
#Secondary ability utility methods for pokemon class
def ability2_index
return nil if !$game_switches[SWITCH_DOUBLE_ABILITIES]
@ability2_index = (@personalID & 1) if !@ability2_index
return @ability2_index
end
def ability2
return nil if !$game_switches[SWITCH_DOUBLE_ABILITIES]
return GameData::Ability.try_get(ability2_id())
end
def ability2=(value)
return if !$game_switches[SWITCH_DOUBLE_ABILITIES]
return if value && !GameData::Ability.exists?(value)
@ability2 = (value) ? GameData::Ability.get(value).id : value
end
def ability_id
if !@ability
sp_data = species_data
abil_index = ability_index
#echoln abil_index
if abil_index >= 2 # Hidden ability
@ability = sp_data.hidden_abilities[abil_index - 2]
abil_index = (@personalID & 1) if !@ability
end
if !@ability # Natural ability or no hidden ability defined
if $game_switches[SWITCH_NO_LEVELS_MODE]
@ability = sp_data.abilities[0] || sp_data.abilities[0]
@ability2 = sp_data.abilities[1] || sp_data.abilities[0]
else
@ability = sp_data.abilities[abil_index] || sp_data.abilities[0]
end
end
end
return @ability
end
def ability2_id
return nil if !$game_switches[SWITCH_DOUBLE_ABILITIES]
if !@ability2
sp_data = species_data
abil_index = ability_index
if abil_index >= 2 # Hidden ability
@ability2 = sp_data.hidden_abilities[abil_index - 2]
abil_index = (@personalID & 1) if !@ability2
end
if !@ability2 # Natural ability or no hidden ability defined
@ability2 = sp_data.abilities[abil_index] || sp_data.abilities[0]
end
end
return @ability2
end
def adjustHPForWonderGuard(stats)
return self.ability == :WONDERGUARD ? 1 : stats[:HP] || ($game_switches[SWITCH_DOUBLE_ABILITIES] && self.ability2 == :WONDERGUARD)
end
end
class PokemonFusionScene
def pbChooseAbility(ability1Id,ability2Id)
ability1 = GameData::Ability.get(ability1Id)
ability2 = GameData::Ability.get(ability2Id)
availableNatures = []
availableNatures << @pokemon1.nature
availableNatures << @pokemon2.nature
setAbilityAndNatureAndNickname([ability1,ability2], availableNatures)
end
def setAbilityAndNatureAndNickname(abilitiesList, naturesList)
clearUIForMoves
if $game_switches[SWITCH_DOUBLE_ABILITIES]
scene = FusionSelectOptionsScene.new(nil, naturesList, @pokemon1, @pokemon2)
screen = PokemonOptionScreen.new(scene)
screen.pbStartScreen
@pokemon1.ability = abilitiesList[0]
@pokemon1.ability2 = abilitiesList[1]
else
scene = FusionSelectOptionsScene.new(abilitiesList, naturesList, @pokemon1, @pokemon2)
screen = PokemonOptionScreen.new(scene)
screen.pbStartScreen
selectedAbility = scene.selectedAbility
@pokemon1.body_original_ability_index = @pokemon1.ability_index
@pokemon1.head_original_ability_index = @pokemon2.ability_index
@pokemon1.ability = selectedAbility
@pokemon1.ability_index = getAbilityIndexFromID(selectedAbility.id,@pokemon1)
end
@pokemon1.nature = scene.selectedNature
if scene.hasNickname
@pokemon1.name = scene.nickname
end
end
end

View File

@@ -0,0 +1,389 @@
#
# module BattleHandlers
# #
# # Speed calculation
# #
#
# def self.triggerSpeedCalcAbility(ability, battler, mult)
# ability1 = ability
# ability2 = battler.ability2
# calculateAbilitySpeedMultiplier(ability1, battler, mult)
# if $game_switches[SWITCH_DOUBLE_ABILITIES]
# calculateAbilitySpeedMultiplier(ability2, battler, mult)
# end
# return mult
# end
#
# def self.calculateAbilitySpeedMultiplier(ability, battler, mult)
# ability1 = ability
# ability2 = battler.ability2
# ret = SpeedCalcAbility.trigger(ability1, battler, mult) || SpeedCalcAbility.trigger(ability2, battler, mult)
# return (ret != nil) ? ret : mult
# end
#
# def self.triggerWeightCalcAbility(ability,battler,w)
# ability1 = ability
# ability2 = battler.ability2
# ret = WeightCalcAbility.trigger(ability1,battler,w) || WeightCalcAbility.trigger(ability2,battler,w)
# return (ret!=nil) ? ret : w
# end
#
#
#
#
# def self.triggerEOREffectAbility(ability,battler,battle)
# ability1 = ability
# ability2 = battler.ability2
#
# EOREffectAbility.trigger(ability1,battler,battle)
# EOREffectAbility.trigger(ability2,battler,battle)
# end
#
# def self.triggerEORGainItemAbility(ability,battler,battle)
# ability1 = ability
# ability2 = battler.ability2
#
# EORGainItemAbility.trigger(ability1,battler,battle)
# EORGainItemAbility.trigger(ability2,battler,battle)
# end
#
# def self.triggerCertainSwitchingUserAbility(ability,switcher,battle)
# ability1 = ability
# ability2 = switcher.ability2
#
# ret = CertainSwitchingUserAbility.trigger(ability1,switcher,battle) || CertainSwitchingUserAbility.trigger(ability2,switcher,battle)
# return (ret!=nil) ? ret : false
# end
#
# def self.triggerCertainSwitchingUserAbility(ability,switcher,battle)
# ability1 = ability
# ability2 = switcher.ability2
#
# ret = CertainSwitchingUserAbility.trigger(ability1,switcher,battle) || CertainSwitchingUserAbility.trigger(ability2,switcher,battle)
# return (ret!=nil) ? ret : false
# end
#
# def self.triggerTrappingTargetAbility(ability,switcher,bearer,battle)
# ability1 = ability
# ability2 = switcher.ability2
# ret = TrappingTargetAbility.trigger(ability1,switcher,bearer,battle) || TrappingTargetAbility.trigger(ability2,switcher,bearer,battle)
# return (ret!=nil) ? ret : false
# end
#
# def self.triggerAbilityOnSwitchIn(ability,battler,battle)
# ability1 = ability
# ability2 = battler.ability2
# AbilityOnSwitchIn.trigger(ability1,battler,battle)
# AbilityOnSwitchIn.trigger(ability2,battler,battle)
# end
#
# def self.triggerAbilityOnSwitchOut(ability,battler,endOfBattle)
# ability1 = ability
# ability2 = battler.ability2
# AbilityOnSwitchOut.trigger(ability1,battler,endOfBattle)
# AbilityOnSwitchOut.trigger(ability2,battler,endOfBattle)
# end
#
# def self.triggerAbilityChangeOnBattlerFainting(ability,battler,fainted,battle)
# ability1 = ability
# ability2 = battler.ability2
# AbilityChangeOnBattlerFainting.trigger(ability1,battler,fainted,battle)
# AbilityChangeOnBattlerFainting.trigger(ability2,battler,fainted,battle)
#
# end
#
# def self.triggerAbilityOnBattlerFainting(ability,battler,fainted,battle)
# ability1 = ability
# ability2 = battler.ability2
# AbilityOnBattlerFainting.trigger(ability1,battler,fainted,battle)
# AbilityOnBattlerFainting.trigger(ability2,battler,fainted,battle)
# end
#
#
# def self.triggerRunFromBattleAbility(ability,battler)
# ability1 = ability
# ability2 = battler.ability2
# ret = RunFromBattleAbility.trigger(ability1,battler) || RunFromBattleAbility.trigger(ability2,battler)
# return (ret!=nil) ? ret : false
# end
# ########
# # FROM HERE
# #
#
# def self.triggerAbilityOnHPDroppedBelowHalf(ability,user,battle)
# ability1 = ability
# ability2 = user.ability2
# ret = AbilityOnHPDroppedBelowHalf.trigger(ability1,user,battle) || AbilityOnHPDroppedBelowHalf.trigger(ability2,user,battle)
# return (ret!=nil) ? ret : false
# end
#
# def self.triggerStatusCheckAbilityNonIgnorable(ability,battler,status)
# ability1 = ability
# ability2 = battler.ability2
# ret = StatusCheckAbilityNonIgnorable.trigger(ability1,battler,status) || StatusCheckAbilityNonIgnorable.trigger(ability2,battler,status)
# return (ret!=nil) ? ret : false
# end
#
# def self.triggerStatusImmunityAbility(ability,battler,status)
# ability1 = ability
# ability2 = battler.ability2
# ret = StatusImmunityAbility.trigger(ability1,battler,status) || StatusImmunityAbility.trigger(ability2,battler,status)
# return (ret!=nil) ? ret : false
# end
#
# def self.triggerStatusImmunityAbilityNonIgnorable(ability,battler,status)
# ability1 = ability
# ability2 = battler.ability2
# ret = StatusImmunityAbilityNonIgnorable.trigger(ability1,battler,status) || StatusImmunityAbilityNonIgnorable.trigger(ability2,battler,status)
# return (ret!=nil) ? ret : false
# end
#
# def self.triggerStatusImmunityAllyAbility(ability,battler,status)
# ability1 = ability
# ability2 = battler.ability2
# ret = StatusImmunityAllyAbility.trigger(ability1,battler,status) || StatusImmunityAllyAbility.trigger(ability2,battler,status)
# return (ret!=nil) ? ret : false
# end
#
# def self.triggerAbilityOnStatusInflicted(ability,battler,user,status)
# ability1 = ability
# ability2 = battler.ability2
# AbilityOnStatusInflicted.trigger(ability1,battler,user,status)
# AbilityOnStatusInflicted.trigger(ability2,battler,user,status)
# end
#
# def self.triggerStatusCureAbility(ability,battler)
# ability1 = ability
# ability2 = battler.ability2
# ret = StatusCureAbility.trigger(ability1,battler) || StatusCureAbility.trigger(ability2,battler)
# return (ret!=nil) ? ret : false
# end
#
#
# def self.triggerStatLossImmunityAbility(ability,battler,stat,battle,showMessages)
# ability1 = ability
# ability2 = battler.ability2
# ret = StatLossImmunityAbility.trigger(ability1,battler,stat,battle,showMessages) || StatLossImmunityAbility.trigger(ability2,battler,stat,battle,showMessages)
# return (ret!=nil) ? ret : false
# end
#
# def self.triggerStatLossImmunityAbilityNonIgnorable(ability,battler,stat,battle,showMessages)
# ability1 = ability
# ability2 = battler.ability2
# ret = StatLossImmunityAbilityNonIgnorable.trigger(ability1,battler,stat,battle,showMessages) || StatLossImmunityAbilityNonIgnorable.trigger(ability2,battler,stat,battle,showMessages)
# return (ret!=nil) ? ret : false
# end
#
# def self.triggerStatLossImmunityAllyAbility(ability,bearer,battler,stat,battle,showMessages)
# ability1 = ability
# ability2 = battler.ability2
# ret = StatLossImmunityAllyAbility.trigger(ability1,bearer,battler,stat,battle,showMessages) || StatLossImmunityAllyAbility.trigger(ability2,bearer,battler,stat,battle,showMessages)
# return (ret!=nil) ? ret : false
# end
#
# def self.triggerAbilityOnStatGain(ability,battler,stat,user)
# ability1 = ability
# ability2 = battler.ability2
# AbilityOnStatGain.trigger(ability1,battler,stat,user)
# AbilityOnStatGain.trigger(ability2,battler,stat,user)
# end
#
# def self.triggerAbilityOnStatLoss(ability,battler,stat,user)
# ability1 = ability
# ability2 = battler.ability2
# AbilityOnStatLoss.trigger(ability1,battler,stat,user)
# AbilityOnStatLoss.trigger(ability2,battler,stat,user)
# end
#
# #=============================================================================
#
#
# def self.triggerPriorityChangeAbility(ability,battler,move,pri)
# ability1 = ability
# ability2 = battler.ability2
# ret = PriorityChangeAbility.trigger(ability1,battler,move,pri) || PriorityChangeAbility.trigger(ability2,battler,move,pri)
# return (ret!=nil) ? ret : pri
# end
#
# def self.triggerPriorityBracketChangeAbility(ability,battler,subPri,battle)
# ability1 = ability
# ability2 = battler.ability2
# ret = PriorityBracketChangeAbility.trigger(ability1,battler,subPri,battle) || PriorityBracketChangeAbility.trigger(ability2,battler,subPri,battle)
# return (ret!=nil) ? ret : subPri
# end
#
# def self.triggerPriorityBracketUseAbility(ability,battler,battle)
# ability1 = ability
# ability2 = battler.ability2
# PriorityBracketUseAbility.trigger(ability1,battler,battle)
# PriorityBracketUseAbility.trigger(ability2,battler,battle)
# end
#
# #=============================================================================
#
# def self.triggerAbilityOnFlinch(ability,battler,battle)
# ability1 = ability
# ability2 = battler.ability2
# AbilityOnFlinch.trigger(ability1,battler,battle)
# AbilityOnFlinch.trigger(ability2,battler,battle)
# end
#
# def self.triggerMoveBlockingAbility(ability,bearer,user,targets,move,battle)
# ability1 = ability
# ability2 = bearer.ability2
# ret = MoveBlockingAbility.trigger(ability1,bearer,user,targets,move,battle) || MoveBlockingAbility.trigger(ability2,bearer,user,targets,move,battle)
# return (ret!=nil) ? ret : false
# end
#
# def self.triggerMoveImmunityTargetAbility(ability,user,target,move,type,battle)
# ability1 = ability
# ability2 = user.ability2
# ret = MoveImmunityTargetAbility.trigger(ability1,user,target,move,type,battle) || MoveImmunityTargetAbility.trigger(ability2,user,target,move,type,battle)
# return (ret!=nil) ? ret : false
# end
#
# #=============================================================================
#
# def self.triggerMoveBaseTypeModifierAbility(ability,user,move,type)
# ability1 = ability
# ability2 = user.ability2
# ret = MoveBaseTypeModifierAbility.trigger(ability1,user,move,type) || MoveBaseTypeModifierAbility.trigger(ability2,user,move,type)
# return (ret!=nil) ? ret : type
# end
#
# #=============================================================================
#
# def self.triggerAccuracyCalcUserAbility(ability,mods,user,target,move,type)
# ability1 = ability
# ability2 = user.ability2
# AccuracyCalcUserAbility.trigger(ability1,mods,user,target,move,type)
# AccuracyCalcUserAbility.trigger(ability2,mods,user,target,move,type)
# end
#
# def self.triggerAccuracyCalcUserAllyAbility(ability,mods,user,target,move,type)
# ability1 = ability
# ability2 = user.ability2
# AccuracyCalcUserAllyAbility.trigger(ability1,mods,user,target,move,type)
# AccuracyCalcUserAllyAbility.trigger(ability2,mods,user,target,move,type)
# end
#
# def self.triggerAccuracyCalcTargetAbility(ability,mods,user,target,move,type)
# ability1 = ability
# ability2 = user.ability2
# AccuracyCalcTargetAbility.trigger(ability1,mods,user,target,move,type)
# AccuracyCalcTargetAbility.trigger(ability2,mods,user,target,move,type)
# end
# #=============================================================================
#
# def self.triggerDamageCalcUserAbility(ability,user,target,move,mults,baseDmg,type)
# ability1 = ability
# ability2 = user.ability2
# DamageCalcUserAbility.trigger(ability1,user,target,move,mults,baseDmg,type)
# DamageCalcUserAbility.trigger(ability2,user,target,move,mults,baseDmg,type)
# end
#
# def self.triggerDamageCalcUserAllyAbility(ability,user,target,move,mults,baseDmg,type)
# ability1 = ability
# ability2 = target.ability2
# DamageCalcUserAllyAbility.trigger(ability1,user,target,move,mults,baseDmg,type)
# DamageCalcUserAllyAbility.trigger(ability2,user,target,move,mults,baseDmg,type)
# end
#
# def self.triggerDamageCalcTargetAbility(ability,user,target,move,mults,baseDmg,type)
# ability1 = ability
# ability2 = target.ability2
# DamageCalcTargetAbility.trigger(ability1,user,target,move,mults,baseDmg,type)
# DamageCalcTargetAbility.trigger(ability2,user,target,move,mults,baseDmg,type)
# end
#
# def self.triggerDamageCalcTargetAbilityNonIgnorable(ability,user,target,move,mults,baseDmg,type)
# ability1 = ability
# ability2 = target.ability2
# DamageCalcTargetAbilityNonIgnorable.trigger(ability1,user,target,move,mults,baseDmg,type)
# DamageCalcTargetAbilityNonIgnorable.trigger(ability2,user,target,move,mults,baseDmg,type)
# end
#
# def self.triggerDamageCalcTargetAllyAbility(ability,user,target,move,mults,baseDmg,type)
# ability1 = ability
# ability2 = target.ability2
# DamageCalcTargetAllyAbility.trigger(ability1,user,target,move,mults,baseDmg,type)
# DamageCalcTargetAllyAbility.trigger(ability2,user,target,move,mults,baseDmg,type)
# end
#
# #=============================================================================
#
# def self.triggerCriticalCalcUserAbility(ability,user,target,c)
# ability1 = ability
# ability2 = user.ability2
# ret = CriticalCalcUserAbility.trigger(ability1,user,target,c) || CriticalCalcUserAbility.trigger(ability2,user,target,c)
# return (ret!=nil) ? ret : c
# end
#
# def self.triggerCriticalCalcTargetAbility(ability,user,target,c)
# ability1 = ability
# ability2 = target.ability2
# ret = CriticalCalcTargetAbility.trigger(ability1,user,target,c) || CriticalCalcTargetAbility.trigger(ability2,user,target,c)
# return (ret!=nil) ? ret : c
# end
# #=============================================================================
#
# def self.triggerTargetAbilityOnHit(ability,user,target,move,battle)
# ability1 = ability
# ability2 = target.ability2
# TargetAbilityOnHit.trigger(ability1,user,target,move,battle)
# TargetAbilityOnHit.trigger(ability2,user,target,move,battle)
# end
#
# def self.triggerUserAbilityOnHit(ability,user,target,move,battle)
# ability1 = ability
# ability2 = user.ability2
# UserAbilityOnHit.trigger(ability1,user,target,move,battle)
# UserAbilityOnHit.trigger(ability2,user,target,move,battle)
# end
# #=============================================================================
#
# def self.triggerUserAbilityEndOfMove(ability,user,targets,move,battle)
# ability1 = ability
# ability2 = user.ability2
# UserAbilityEndOfMove.trigger(ability1,user,targets,move,battle)
# UserAbilityEndOfMove.trigger(ability2,user,targets,move,battle)
# end
#
# def self.triggerTargetAbilityAfterMoveUse(ability,target,user,move,switched,battle)
# ability1 = ability
# ability2 = target.ability2
# TargetAbilityAfterMoveUse.trigger(ability1,target,user,move,switched,battle)
# TargetAbilityAfterMoveUse.trigger(ability2,target,user,move,switched,battle)
# end
#
# #=============================================================================
#
# def self.triggerEORWeatherAbility(ability,weather,battler,battle)
# ability1 = ability
# ability2 = battler.ability2
# EORWeatherAbility.trigger(ability1,weather,battler,battle)
# EORWeatherAbility.trigger(ability2,weather,battler,battle)
# end
#
# def self.triggerEORHealingAbility(ability,battler,battle)
# ability1 = ability
# ability2 = battler.ability2
# EORHealingAbility.trigger(ability1,battler,battle)
# EORHealingAbility.trigger(ability2,battler,battle)
# end
#
# def self.triggerEOREffectAbility(ability,battler,battle)
# ability1 = ability
# ability2 = battler.ability2
# EOREffectAbility.trigger(ability1,battler,battle)
# EOREffectAbility.trigger(ability2,battler,battle)
# end
#
# def self.triggerEORGainItemAbility(ability,battler,battle)
# ability1 = ability
# ability2 = battler.ability2
# EORGainItemAbility.trigger(ability1,battler,battle)
# EORGainItemAbility.trigger(ability2,battler,battle)
# end
#
# end

View File

@@ -0,0 +1,130 @@
#
# class AbilitySplashBar < SpriteWrapper
# def refresh
# self.bitmap.clear
# return if !@battler
# textPos = []
# textX = (@side==0) ? 10 : self.bitmap.width-8
# # Draw Pokémon's name
# textPos.push([_INTL("{1}'s",@battler.name),textX,-4,@side==1,
# TEXT_BASE_COLOR,TEXT_SHADOW_COLOR,true])
# # Draw Pokémon's ability
# textPos.push([@battler.abilityName,textX,26,@side==1,
# TEXT_BASE_COLOR,TEXT_SHADOW_COLOR,true])
# pbDrawTextPositions(self.bitmap,textPos)
#
# #2nd ability
# if $game_switches[SWITCH_DOUBLE_ABILITIES]
# textPos.push([@battler.ability2Name,textX,26,@side==1,
# TEXT_BASE_COLOR,TEXT_SHADOW_COLOR,true])
# pbDrawTextPositions(self.bitmap,textPos)
# end
# end
# end
class AbilitySplashDisappearAnimation < PokeBattle_Animation
def initialize(sprites,viewport,side)
@side = side
super(sprites,viewport)
end
def createProcesses
return if !@sprites["abilityBar_#{@side}"]
bar = addSprite(@sprites["abilityBar_#{@side}"])
bar2 = addSprite(@sprites["ability2Bar_#{@side}"]) if @sprites["ability2Bar_#{@side}"]
dir = (@side==0) ? -1 : 1
bar.moveDelta(0,8,dir*Graphics.width/2,0)
bar2.moveDelta(0,8,dir*Graphics.width/2,0) if bar2
bar.setVisible(8,false)
bar2.setVisible(8,false) if bar2
end
end
class PokeBattle_Scene
def pbShowAbilitySplash(battler,secondAbility=false, abilityName=nil)
return if !PokeBattle_SceneConstants::USE_ABILITY_SPLASH
side = battler.index%2
if secondAbility
pbHideAbilitySplash(battler) if @sprites["ability2Bar_#{side}"].visible
else
pbHideAbilitySplash(battler) if @sprites["abilityBar_#{side}"].visible
end
if abilityName
@sprites["abilityBar_#{side}"].ability_name = abilityName if !secondAbility
@sprites["ability2Bar_#{side}"].ability_name = abilityName if secondAbility
end
@sprites["abilityBar_#{side}"].battler = battler
@sprites["ability2Bar_#{side}"].battler = battler if @sprites["ability2Bar_#{side}"]
abilitySplashAnim = AbilitySplashAppearAnimation.new(@sprites,@viewport,side,secondAbility)
loop do
abilitySplashAnim.update
pbUpdate
break if abilitySplashAnim.animDone?
end
abilitySplashAnim.dispose
end
end
class PokeBattle_Battle
def pbShowSecondaryAbilitySplash(battler,delay=false,logTrigger=true)
return if !PokeBattle_SceneConstants::USE_ABILITY_SPLASH
@scene.pbShowAbilitySplash(battler,true)
if delay
Graphics.frame_rate.times { @scene.pbUpdate } # 1 second
end
end
def pbShowPrimaryAbilitySplash(battler,delay=false,logTrigger=true)
return if !PokeBattle_SceneConstants::USE_ABILITY_SPLASH
@scene.pbShowAbilitySplash(battler,false)
if delay
Graphics.frame_rate.times { @scene.pbUpdate } # 1 second
end
end
end
class FusionSelectOptionsScene < PokemonOption_Scene
def pbGetOptions(inloadscreen = false)
options = []
if shouldSelectNickname
options << EnumOption.new(_INTL("Nickname"), [_INTL(@pokemon1.name), _INTL(@pokemon2.name)],
proc { 0 },
proc { |value|
if value ==0
@nickname = @pokemon1.name
else
@nickname = @pokemon2.name
end
}, "Select the Pokémon's nickname")
end
if @abilityList != nil
options << EnumOption.new(_INTL("Ability"), [_INTL(getAbilityName(@abilityList[0])), _INTL(getAbilityName(@abilityList[1]))],
proc { 0 },
proc { |value|
@selectedAbility=@abilityList[value]
}, [getAbilityDescription(@abilityList[0]), getAbilityDescription(@abilityList[1])]
)
end
options << EnumOption.new(_INTL("Nature"), [_INTL(getNatureName(@natureList[0])), _INTL(getNatureName(@natureList[1]))],
proc { 0 },
proc { |value|
@selectedNature=@natureList[value]
}, [getNatureDescription(@natureList[0]), getNatureDescription(@natureList[1])]
)
return options
end
end

View File

@@ -0,0 +1,32 @@
def pbRelearnEggMoveScreen(pkmn)
retval = true
pbFadeOutIn {
scene = MoveRelearner_Scene.new
screen = MoveRelearnerScreen.new(scene)
retval = screen.pbStartScreenEgg(pkmn)
}
return retval
end
class MoveRelearnerScreen
def pbStartScreenEgg(pkmn)
baby = pbGetBabySpecies(pkmn.species)
moves = pbGetSpeciesEggMoves(baby)
@scene.pbStartScene(pkmn, moves)
loop do
move = @scene.pbChooseMove
if move
if @scene.pbConfirm(_INTL("Teach {1}?", GameData::Move.get(move).name))
if pbLearnMove(pkmn, move)
@scene.pbEndScene
return true
end
end
elsif @scene.pbConfirm(_INTL("Give up trying to teach a new move to {1}?", pkmn.name))
@scene.pbEndScene
return false
end
end
end
end

View File

@@ -0,0 +1,72 @@
module OptionTypes
WILD_POKE = 0
TRAINER_POKE = 1
end
class ExperimentalOptionsScene < PokemonOption_Scene
def initialize
super
@openTrainerOptions = false
@openWildOptions = false
@openGymOptions = false
@openItemOptions = false
$game_switches[SWITCH_RANDOMIZED_AT_LEAST_ONCE] = true
end
def getDefaultDescription
return _INTL("Set the randomizer settings")
end
def pbStartScene(inloadscreen = false)
super
@changedColor = true
@sprites["title"] = Window_UnformattedTextPokemon.newWithSize(
_INTL("Experimental options"), 0, 0, Graphics.width, 64, @viewport)
@sprites["textbox"].text = getDefaultDescription
pbFadeInAndShow(@sprites) { pbUpdate }
end
def pbGetOptions(inloadscreen = false)
options = [
EnumOption.new(_INTL("Expert mode (beta)"), [_INTL("On"), _INTL("Off")],
proc {
$game_switches[SWITCH_EXPERT_MODE] ? 0 : 1
},
proc { |value|
$game_switches[SWITCH_EXPERT_MODE] = value == 0
}, "Changes all of the trainer teams to make them as challenging as possible!"
),
EnumOption.new(_INTL("No levels mode"), [_INTL("On"), _INTL("Off")],
proc {
$game_switches[SWITCH_NO_LEVELS_MODE] ? 0 : 1
},
proc { |value|
$game_switches[SWITCH_NO_LEVELS_MODE] = value == 0
}, "All Pokémon use their base stats, regardless of levels."
),
EnumOption.new(_INTL("Reversed mode"), [_INTL("On"), _INTL("Off")],
proc {
$game_switches[SWITCH_REVERSED_MODE] ? 0 : 1
},
proc { |value|
$game_switches[SWITCH_REVERSED_MODE] = value == 0
}, "Inverts the fusions of all the trainers in the game."
)
#,
# EnumOption.new(_INTL("Double abilities"), [_INTL("On"), _INTL("Off")],
# proc {
# $game_switches[SWITCH_DOUBLE_ABILITIES] ? 0 : 1
# },
# proc { |value|
# $game_switches[SWITCH_DOUBLE_ABILITIES] = value == 0
# }, "Fused Pokémon have two abilities at the same time"
#)
]
return options
end
end

View File

@@ -0,0 +1,38 @@
def export_music_use_map()
music_hash = Hash.new
for map_id in 1..796
mapInfos = load_data(sprintf("Data/Map%03d.rxdata", map_id))
bgm_name = mapInfos.bgm.name
map_name = Kernel.getMapName(map_id)
formatted_value = map_name + " [" + map_id.to_s + "]"
if music_hash.has_key?(bgm_name)
music_hash[bgm_name] << formatted_value
else
music_hash[bgm_name] = Array.new(1, formatted_value)
end
end
export_hash_to_csv(music_hash,"music_export.csv")
end
def export_hash_to_csv(hash, file_path)
# Open the file for writing
file = File.open(file_path, "w")
# Write the CSV header
file.puts "Key,Value"
# Write each key-value pair as a new line in the CSV file
hash.each do |key, values|
if key == ""
key = "(No value)"
end
# Join the values into a single string with newline characters
values_str = values.join("\n,")
file.puts "#{key},#{values_str}"
end
# Close the file
file.close
end

View File

@@ -0,0 +1,225 @@
#===============================================================================
# Klein Footprints / WolfPP for Pokémon Essentials
# Give credits if you're using this!
# http://kleinstudio.deviantart.com
#
# bo4p5687 update (v.19)
#===============================================================================
# Fix event comment
def pbEventCommentInput(*args)
parameters = []
list = *args[0].list # Event or event page
elements = *args[1] # Number of elements
trigger = *args[2] # Trigger
return nil if list == nil
return nil unless list.is_a?(Array)
for item in list
next unless item.code == 108 || item.code == 408
if item.parameters[0] == trigger[0]
start = list.index(item) + 1
finish = start + elements[0]
for id in start...finish
next if !list[id]
parameters.push(list[id].parameters[0])
end
return parameters
end
end
return nil
end
module FootprintVariables
# If you set pokemon here, they doesn't have footprints
FOLLOWING_DONT_WALK = [
# Example:
# 12,15,17
]
# Set here the terrain tag for footprints, 3 is sand
TERRAIN_FOOT = 3
# Initial opacity for footprints
FOOT_OPACITY = 62
# Delay velocity
FOOT_DELAY = 1.1
def self.get_new_id
newId = 1
while !$game_map.events[newId].nil? do
break if $game_map.events[newId].erased
newId += 1
end
return newId
end
def self.show(event, position)
if event != $game_player
return if event.character_name == "" || event.character_name == "nil" || event.name.include?("/nofoot/")
return if pbEventCommentInput(event, 0, "NoFoot")
if $Trainer.party.length > 0
return if (!($game_map.events[event] && $game_map.events[event].name == "Dependent") &&
(FOLLOWING_DONT_WALK.include?($Trainer.party[0].species) || $PokemonGlobal.bicycle))
end
end
character_sprites = $scene.spriteset.character_sprites
viewport = $scene.spriteset.viewport1
footsprites = $scene.spriteset.footsprites
nid = self.get_new_id
rpgEvent = RPG::Event.new(position[0], position[1])
rpgEvent.id = nid
fev = Game_Event.new($game_map.map_id, rpgEvent, $game_map)
eventsprite = Sprite_Character.new(viewport, fev)
character_sprites.push(eventsprite)
footsprites.push(Footsprite.new(eventsprite, fev, viewport, $game_map, position[2], nid, character_sprites, (event==$game_player)))
end
end
class Game_Event < Game_Character
attr_reader :erased
end
class Sprite_Character
alias old_initialize_foot initialize
def initialize(viewport, character=nil)
old_initialize_foot(viewport, character)
@disposed = false
end
alias old_update_foot update
def update
return if @disposed
old_update_foot
end
alias old_dispose_foot dispose
def dispose
old_dispose_foot
@disposed = true
end
end
class Spriteset_Map
attr_accessor :character_sprites
attr_accessor :footsprites
alias old_initialize initialize
def initialize(map=nil)
old_initialize(map)
@footsprites = []
end
def viewport1
return @@viewport1
end
def putFootprint(event, pos)
return FootprintVariables.show(event, pos)
end
alias old_dispose dispose
def dispose
old_dispose
@footsprites.each { |sprite| sprite.dispose } if !@footsprites.nil?
@footsprites.clear
end
alias old_update update
def update
old_update
return if @footsprites.nil?
@footsprites.each { |sprite| sprite.update }
end
end
class Scene_Map
def spriteset?
return !@spritesets.nil?
end
end
class Game_Character
def get_last_pos
case direction
when 2 then return [@x, @y-1, direction] # Move down
when 4 then return [@x+1, @y, direction] # Move left
when 6 then return [@x-1, @y, direction] # Move right
when 8 then return [@x, @y+1, direction] # Move up
end
return false
end
def foot_prints?
return $game_map.terrain_tag(get_last_pos[0], get_last_pos[1]) == FootprintVariables::TERRAIN_FOOT && $scene.is_a?(Scene_Map) && $scene.spriteset?
end
alias leave_tile_footprints triggerLeaveTile
def triggerLeaveTile
leave_tile_footprints
$scene.spriteset.putFootprint(self, get_last_pos) if foot_prints?
end
end
class Footsprite
def initialize(sprite,event,viewport,map,direction,nid,chardata,player)
@rsprite = sprite
# Sprite
@sprite = Sprite.new(viewport)
file = player && $PokemonGlobal.bicycle ? "footsetbike.png" : "footset.png"
@sprite.bitmap = RPG::Cache.load_bitmap("Graphics/Pictures/", file)
# Set position
@realwidth = @sprite.bitmap.width/4
@sprite.src_rect.width = @realwidth
@opacity = FootprintVariables::FOOT_OPACITY
setFootset(direction)
# Values
@map = map
@event = event
@disposed = false
@eventid = nid
@viewport = viewport
@chardata = chardata
update
end
def setFootset(direction)
@sprite.src_rect.x =
case direction
when 2 then 0 # Move down
when 4 then @realwidth * 3 # Move left
when 6 then @realwidth * 2 # Move right
when 8 then @realwidth # Move up
end
@sprite.opacity = @opacity
end
def dispose
return if @disposed
@disposed = true
@event.erase
(0...@chardata.length).each { |i| @chardata.delete_at(i) if @chardata[i] == @rsprite }
@rsprite.dispose
@sprite.dispose
@sprite = nil
end
def update
return if @disposed
x = @rsprite.x - @rsprite.ox
y = @rsprite.y - @rsprite.oy
width = @rsprite.src_rect.width
height = @rsprite.src_rect.height
@sprite.x = x + width / 2
@sprite.y = y + height
@sprite.ox = @realwidth / 2
@sprite.oy = @sprite.bitmap.height
@sprite.z = @rsprite.z - 2
@opacity -= FootprintVariables::FOOT_DELAY
@sprite.opacity = @opacity
dispose if @sprite.opacity <= 0
end
end

View File

@@ -0,0 +1,205 @@
def pbSpecialTutor(pokemon,legendaries=false)
retval = true
tutorUtil = FusionTutorService.new(pokemon)
pbFadeOutIn {
scene = MoveRelearner_Scene.new
screen = MoveRelearnerScreen.new(scene)
moves = tutorUtil.getCompatibleMoves(legendaries)
if !moves.empty?
retval = screen.pbStartScreen(pokemon, moves)
else
return false
end
}
return retval
end
def pbShowRareTutorFullList(includeLegendaries = false)
tutorUtil = FusionTutorService.new(nil)
tutorUtil.setShowList(true)
pbFadeOutIn {
scene = MoveRelearner_Scene.new
screen = MoveRelearnerScreen.new(scene)
moves = tutorUtil.getCompatibleMoves(includeLegendaries)
screen.pbStartScreen(nil, moves)
}
return false
end
def pbCheckRareTutorCompatibleMoves(pokemon, includeLeshgendaries)
tutorUtil = FusionTutorService.new(pokemon)
return tutorUtil.has_compatible_move(includeLeshgendaries)
end
def showRandomRareMoveConditionExample(legendary = false)
example = legendary ? getlegendaryConditionExample : getRegularConditionExample
text = "For example, " + example
pbMessage(text)
end
def getRegularConditionExample()
list = [
"a Sandslash fusion which has the electric type will be able to learn the move Zing Zap.",
"any Pokémon that is both Flying and Fighting type will be able to learn the move Flying Press.",
"the move Shadow Bone can only be learned by ghost-type Marowak fusions.",
"any Pokémon that is both Ghost and Grass type will be able to learn the move Trick or Treat.",
"the move Forest's Curse can only be learned by Ghost/Grass typed Pokémon.",
"a grass-type fusion of a spiky Pokémon such as Jolteon will be able to learn the move Spiky Shield.",
"only a ground-type fusion of Grimer or Muk will be able to learn the move Shore Up.",
"any ice-type fusion that can already learn the move Crabhammer will also be able to learn the move Ice Hammer.",
"only water-type fusions of a ninja-like Pokémon such as Ninjask or Zoroark will be able to learn the move Water Shuriken.",
]
return list.sample
end
def getlegendaryConditionExample()
list = [
"any Rotom fusion that can already learn the move Thunder Punch can also be taught the move Plasma Fists.",
"only an Electric-type fusion of a legendary Ice-type Pokémon will be able to learn the move Freeze Shock.",
"only a Fire-type fusion of a legendary Ice-type Pokémon will be able to learn the move Ice Burn.",
"any Pokémon that is both Flying and Dark type will be able to learn the move Oblivion Wing.",
"a ground-type fusion of a spiky Pokémon such as Ferrothorn will be able to learn the move Thousand Arrows.",
"any steel-type Pokémon that can already learn the move Double Slap will be able to learn Double Iron Bash.",
"any Pokémon that is both Fairy and Rock type will be able to learn the move Diamond Storm.",
"any water-type Pokémon that can already learn the move Eruption can also be taught the move Steam Eruption",
]
return list.sample
end
class FusionTutorService
def has_compatible_move(include_legendaries = false)
return !getCompatibleMoves(include_legendaries).empty?
end
def initialize(pokemon)
@pokemon = pokemon
@show_full_list = false
end
def setShowList(value)
@show_full_list = value
end
#todo: these moves
# DRAGONHAMMER
# FIRELASH
# BEAKBLAST
# CHATTER
# LEAFAGE
# HEADCHARGE
# HYPERSPACEHOLE
# HOLDBACK
# CELEBRATE
# HEARTSWAP
def getCompatibleMoves(includeLegendaries = false)
compatibleMoves = []
#normal moves
if !includeLegendaries
compatibleMoves << :ATTACKORDER if is_fusion_of([:BEEDRILL])
# compatibleMoves << :FIRSTIMPRESSION if is_fusion_of([:SCYTHER, :SCIZOR, :PINSIR, :FARFETCHD, :TRAPINCH, :VIBRAVA, :FLYGON, :KABUTOPS, :ARMALDO])
compatibleMoves << :POLLENPUFF if is_fusion_of([:BUTTERFREE, :CELEBI, :VILEPLUME, :PARASECT, :BRELOOM])
compatibleMoves << :LUNGE if is_fusion_of([:SPINARAK, :ARIADOS, :JOLTIK, :GALVANTULA, :VENOMOTH, :VOLCARONA, :PINSIR, :PARASECT, :LEDIAN, :DODUO, :DODRIO, :STANTLER])
compatibleMoves << :DEFENDORDER if is_fusion_of([:BEEDRILL])
compatibleMoves << :HEALORDER if is_fusion_of([:BEEDRILL])
compatibleMoves << :POWDER if is_fusion_of([:BUTTERFREE, :VENOMOTH, :VOLCARONA, :PARASECT, :BRELOOM])
compatibleMoves << :TAILGLOW if is_fusion_of([:MAREEP, :FLAAFFY, :AMPHAROS, :LANTURN, :ZEKROM, :RESHIRAM])
compatibleMoves << :DARKESTLARIAT if is_fusion_of([:SNORLAX, :REGIGIGAS, :POLIWRATH, :MACHAMP, :ELECTIVIRE, :DUSKNOIR, :SWAMPERT, :KROOKODILE, :GOLURK])
compatibleMoves << :PARTINGSHOT if is_fusion_of([:MEOWTH, :PERSIAN, :SANDILE, :KROKOROK, :KROOKODILE, :UMBREON])
compatibleMoves << :TOPSYTURVY if is_fusion_of([:HITMONTOP, :WOBBUFFET])
# compatibleMoves << :CLANGINGSCALES if is_fusion_of([:EKANS, :ARBOK, :GARCHOMP, :FLYGON, :HAXORUS])
compatibleMoves << :ZINGZAP if is_fusion_of([:PICHU, :PIKACHU, :RAICHU, :VOLTORB, :ELECTRODE]) || (is_fusion_of([:SANDSLASH, :GOLEM]) && hasType(:ELECTRIC))
compatibleMoves << :PARABOLICCHARGE if is_fusion_of([:PICHU, :PIKACHU, :RAICHU, :MAGNEMITE, :MAGNETON, :MAGNEZONE, :MAREEP, :FLAAFFY, :AMPHAROS, :ELEKID, :ELECTABUZZ, :ELECTIVIRE, :ZAPDOS, :CHINCHOU, :LANTURN, :RAIKOU, :KLINK, :KLANG, :KLINKLANG, :ROTOM, :STUNFISK])
compatibleMoves << :ELECTRIFY if is_fusion_of([:KLINK, :KLANG, :KLINKLANG]) || hasType(:ELECTRIC)
compatibleMoves << :AROMATICMIST if is_fusion_of([:WEEZING, :BULBASAUR, :IVYSAUR, :VENUSAUR, :CHIKORITA, :BAYLEEF, :MEGANIUM, :GLOOM, :VILEPLUME, :BELLOSSOM, :ROSELIA, :ROSERADE])
compatibleMoves << :FLORALHEALING if is_fusion_of([:SUNFLORA, :BELLOSSOM, :ROSELIA, :ROSERADE])
#compatibleMoves << :FLYINGPRESS if is_fusion_of([:TORCHIC, :COMBUSKEN, :BLAZIKEN, :FARFETCHD, :HERACROSS]) || (hasType(:FLYING) && hasType(:FIGHTING))
compatibleMoves << :MATBLOCK if is_fusion_of([:MACHOP, :MACHOKE, :MACHAMP, :TYROGUE, :HITMONLEE, :HITMONCHAN, :HITMONTOP])
compatibleMoves << :MINDBLOWN if is_fusion_of([:VOLTORB, :ELECTRODE, :EXEGGUTOR])
compatibleMoves << :SHELLTRAP if is_fusion_of([:MAGCARGO, :FORRETRESS])
compatibleMoves << :HEATCRASH if is_fusion_of([:BLAZIKEN, :RESHIRAM, :GROUDON, :CHARIZARD, :GOLURK, :REGIGIGAS, :RHYDON, :RHYPERIOR, :SNORLAX])
compatibleMoves << :SHADOWBONE if is_fusion_of([:MAROWAK]) && hasType(:GHOST)
compatibleMoves << :SPIRITSHACKLE if is_fusion_of([:BANETTE, :SPIRITOMB, :DUSKNOIR, :SHEDINJA, :COFAGRIGUS])
compatibleMoves << :TRICKORTREAT if (hasType(:GRASS) && hasType(:GHOST)) || is_fusion_of([:GASTLY, :HAUNTER, :GENGAR, :MIMIKYU, :ZORUA, :ZOROARK])
compatibleMoves << :TROPKICK if is_fusion_of([:HITMONLEE, :HITMONTOP, :ROSERADE]) || (hasType(:GRASS) && hasType(:FIGHTING))
#compatibleMoves << :NEEDLEARM if is_fusion_of([:FERROTHORN])
#compatibleMoves << :FORESTSCURSE if (hasType(:GRASS) && hasType(:GHOST))
#compatibleMoves << :SPIKYSHIELD if is_fusion_of([:FERROSEED, :FERROTHORN]) || (is_fusion_of([:SANDSLASH, :JOLTEON, :CLOYSTER]) && hasType(:GRASS))
compatibleMoves << :STRENGTHSAP if is_fusion_of([:ODDISH, :GLOOM, :VILEPLUME, :BELLOSSOM, :HOPPIP, :SKIPLOOM, :JUMPLUFF, :BELLSPROUT, :WEEPINBELL, :VICTREEBEL, :PARAS, :PARASECT, :DRIFBLIM, :BRELOOM])
#compatibleMoves << :SHOREUP if is_fusion_of([:GRIMER, :MUK]) && hasType(:GROUND)
compatibleMoves << :ICEHAMMER if (canLearnMove(:CRABHAMMER) || canLearnMove(:GRASSHAMMER) || canLearnMove(:HAMMERARM)) && hasType(:ICE)
compatibleMoves << :MULTIATTACK if is_fusion_of([:ARCEUS, :MEW, :GENESECT])
# compatibleMoves << :REVELATIONDANCE if is_fusion_of([:KECLEON, :BELLOSSOM, :CLEFAIRY, :CLEFABLE, :CLEFFA])
#compatibleMoves << :BANEFULBUNKER if is_fusion_of([:TENTACOOL, :TENTACRUEL, :NIDORINA, :NIDORINO, :NIDOQUEEN, :NIDOKING, :GRIMER, :MUK, :QWILFISH])
compatibleMoves << :INSTRUCT if is_fusion_of([:CHIMCHAR, :MONFERNO, :INFERNAPE, :KADABRA, :ALAKAZAM, :SLOWKING])
compatibleMoves << :PSYCHICTERRAIN if hasType(:PSYCHIC)
#compatibleMoves << :GRASSYTERRAIN if hasType(:GRASS)
compatibleMoves << :MISTYTERRAIN if hasType(:FAIRY)
compatibleMoves << :SPEEDSWAP if is_fusion_of([:PIKACHU, :RAICHU, :ABRA, :KADABRA, :ALAKAZAM, :PORYGON, :PORYGON2, :PORYGONZ, :MEWTWO, :MEW, :JOLTIK, :GALVANTULA])
#compatibleMoves << :ACCELEROCK if is_fusion_of([:AERODACTYL, :KABUTOPS, :ANORITH, :ARMALDO])
#compatibleMoves << :ANCHORSHOT if (is_fusion_of([:EMPOLEON, :STEELIX, :BELDUM, :METANG, :METAGROSS, :KLINK, :KLINKLANG, :KLANG, :ARON, :LAIRON, :AGGRON]) && hasType(:WATER)) || (is_fusion_of([:LAPRAS, :WAILORD, :KYOGRE]) && hasType(:STEEL))
compatibleMoves << :SPARKLINGARIA if (is_fusion_of([:JYNX, :JIGGLYPUFF, :WIGGLYTUFF]) && hasType(:WATER)) || is_fusion_of([:LAPRAS])
#compatibleMoves << :WATERSHURIKEN if is_fusion_of([:NINJASK, :LUCARIO, :ZOROARK, :BISHARP]) && hasType(:WATER)
end
if includeLegendaries
#legendary moves (only available after a certain trigger, maybe a different npc)
compatibleMoves << :HYPERSPACEFURY if is_fusion_of([:GIRATINA, :PALKIA, :DIALGA, :ARCEUS])
compatibleMoves << :COREENFORCER if is_fusion_of([:GIRATINA, :PALKIA, :DIALGA, :RAYQUAZA])
compatibleMoves << :PLASMAFISTS if is_fusion_of([:ELECTABUZZ, :ELECTIVIRE, :ZEKROM]) || (is_fusion_of([:ROTOM]) && canLearnMove(:THUNDERPUNCH))
compatibleMoves << :LIGHTOFRUIN if is_fusion_of([:ARCEUS, :MEW, :CELEBI, :JIRACHI])
compatibleMoves << :FLEURCANNON if is_fusion_of([:GARDEVOIR, :GALLADE, :SYLVEON, :WIGGLYTUFF])
compatibleMoves << :NATURESMADNESS if is_fusion_of([:CELEBI, :KYOGRE, :GROUDON, :ABSOL])
compatibleMoves << :GEOMANCY if is_fusion_of([:CELEBI])
compatibleMoves << :VCREATE if is_fusion_of([:ENTEI, :HOOH, :TYPHLOSION])
compatibleMoves << :MAGMASTORM if is_fusion_of([:MAGCARGO, :TYPHLOSION, :MAGMORTAR, :MAGMAR, :ENTEI, :GROUDON]) || canLearnMove(:ERUPTION)
compatibleMoves << :SEARINGSHOT if is_fusion_of([:MAGMORTAR])
compatibleMoves << :OBLIVIONWING if is_fusion_of([:MURKROW, :HONCHKROW]) || (hasType(:DARK) && hasType(:FLYING))
compatibleMoves << :MOONGEISTBEAM if (is_fusion_of([:CLEFFA, :CLEFAIRY, :CLEFABLE]) && hasType(:DARK)) || is_fusion_of([:DARKRAI, :MISDREAVUS, :MISMAGIUS])
compatibleMoves << :SPECTRALTHIEF if is_fusion_of([:HAUNTER, :GENGAR, :BANETTE, :GIRATINA, :HONEDGE, :DOUBLADE, :AEGISLASH])
compatibleMoves << :SEEDFLARE if is_fusion_of([:JUMPLUFF, :SUNFLORA])
compatibleMoves << :LANDSWRATH if is_fusion_of([:GROUDON])
compatibleMoves << :THOUSANDARROWS if is_fusion_of([:SANDSLASH, :JOLTEON, :FERROTHORN]) && hasType(:GROUND)
compatibleMoves << :THOUSANDWAVES if is_fusion_of([:STUNFISK, :QUAGSIRE, :SWAMPERT])
compatibleMoves << :FREEZESHOCK if is_fusion_of([:KYUREM, :ARTICUNO]) && hasType(:ELECTRIC)
compatibleMoves << :ICEBURN if is_fusion_of([:KYUREM, :ARTICUNO]) && hasType(:FIRE)
#compatibleMoves << :RELICSONG if is_fusion_of([:JYNX, :LAPRAS, :JIGGLYPUFF, :WIGGLYTUFF, :MISDREAVUS, :MISMAGIUS])
compatibleMoves << :HAPPYHOUR if is_fusion_of([:MEOWTH, :JIRACHI, :DELIBIRD, :MUNCHLAX, :SNORLAX, :PIKACHU, :RAICHU])
compatibleMoves << :HOLDHANDS if is_fusion_of([:CHARMANDER, :BULBASAUR, :SQUIRTLE, :PIKACHU, :TOGEPI])
#compatibleMoves << :PRISMATICLASER if is_fusion_of([:LANTURN, :AMPHAROS, :HOOH, :DEOXYS, :MEWTWO, :MEW]) && hasType(:PSYCHIC)
#compatibleMoves << :PHOTONGEYSER if is_fusion_of([:LANTURN, :AMPHAROS, :HOOH, :MEW, :MEWTWO, :DEOXYS]) && hasType(:PSYCHIC)
# compatibleMoves << :LUNARDANCE if is_fusion_of([:CLEFAIRY, :CLEFABLE, :STARYU, :STARMIE])
#compatibleMoves << :DIAMONDSTORM if ((hasType(:FAIRY) && hasType(:ROCK)) || (hasType(:ROCK) && hasType(:STEEL))) || is_fusion_of([:DIALGA, :STEELIX])
compatibleMoves << :SUNSTEELSTRIKE if is_fusion_of([:CHARIZARD, :VOLCARONA, :FLAREON, :NINETALES, :ENTEI, :HOOH, :RAPIDASH]) && hasType(:STEEL)
compatibleMoves << :DOUBLEIRONBASH if canLearnMove(:DOUBLESLAP) && hasType(:STEEL)
compatibleMoves << :STEAMERUPTION if canLearnMove(:ERUPTION) && hasType(:WATER)
compatibleMoves << :SECRETSWORD if is_fusion_of([:HONEDGE, :DOUBLADE, :AEGISLASH, :GALLADE, :FARFETCHD, :ABSOL, :BISHARP])
end
return compatibleMoves
end
def is_fusion_of(pokemonList)
return true if @show_full_list
is_species = false
for fusionPokemon in pokemonList
if @pokemon.isFusionOf(fusionPokemon)
is_species = true
end
end
return is_species
end
def hasType(type)
return true if @show_full_list
return @pokemon.hasType?(type)
end
def canLearnMove(move)
return true if @show_full_list
return @pokemon.compatible_with_move?(move)
end
end

View File

@@ -0,0 +1,412 @@
module GameData
class Species
def self.sprite_bitmap_from_pokemon(pkmn, back = false, species = nil)
species = pkmn.species if !species
species = GameData::Species.get(species).id_number # Just to be sure it's a number
return self.egg_sprite_bitmap(species, pkmn.form) if pkmn.egg?
if back
ret = self.back_sprite_bitmap(species, pkmn.shiny?, pkmn.bodyShiny?, pkmn.headShiny?)
else
ret = self.front_sprite_bitmap(species, pkmn.shiny?, pkmn.bodyShiny?, pkmn.headShiny?)
end
ret.scale_bitmap(pkmn.sprite_scale) if ret #for pokemon with size differences
return ret
end
def self.sprite_bitmap_from_pokemon_id(id, back = false, shiny = false, bodyShiny = false, headShiny = false)
if back
ret = self.back_sprite_bitmap(id, shiny, bodyShiny, headShiny)
else
ret = self.front_sprite_bitmap(id, shiny, bodyShiny, headShiny)
end
return ret
end
MAX_SHIFT_VALUE = 360
MINIMUM_OFFSET = 40
ADDITIONAL_OFFSET_WHEN_TOO_CLOSE = 40
MINIMUM_DEX_DIF = 20
def self.calculateShinyHueOffset(dex_number, isBodyShiny = false, isHeadShiny = false, color = :c1)
if dex_number <= NB_POKEMON
if SHINY_COLOR_OFFSETS[dex_number]&.dig(color)
return SHINY_COLOR_OFFSETS[dex_number]&.dig(color)
end
body_number = dex_number
head_number = dex_number
else
body_number = getBodyID(dex_number)
head_number = getHeadID(dex_number, body_number)
end
if isBodyShiny && isHeadShiny && SHINY_COLOR_OFFSETS[body_number]&.dig(color) && SHINY_COLOR_OFFSETS[head_number]&.dig(color)
offset = SHINY_COLOR_OFFSETS[body_number]&.dig(color) + SHINY_COLOR_OFFSETS[head_number]&.dig(color)
elsif isHeadShiny && SHINY_COLOR_OFFSETS[head_number]&.dig(color)
offset = SHINY_COLOR_OFFSETS[head_number]&.dig(color)
elsif isBodyShiny && SHINY_COLOR_OFFSETS[body_number]&.dig(color)
offset = SHINY_COLOR_OFFSETS[body_number]&.dig(color)
else
return 0 if color != :v1
offset = calculateShinyHueOffsetDefaultMethod(body_number, head_number, dex_number, isBodyShiny, isHeadShiny)
end
return offset
end
def self.hex_to_rgb(hex)
hex = hex.delete("#")
r = hex[0..1].to_i(16)
g = hex[2..3].to_i(16)
b = hex[4..5].to_i(16)
[r, g, b]
end
def self.calculateShinyHueOffsetDefaultMethod(body_number, head_number, dex_number, isBodyShiny = false, isHeadShiny = false)
dex_offset = dex_number
#body_number = getBodyID(dex_number)
#head_number=getHeadID(dex_number,body_number)
dex_diff = (body_number - head_number).abs
if isBodyShiny && isHeadShiny
dex_offset = dex_number
elsif isHeadShiny
dex_offset = head_number
elsif isBodyShiny
dex_offset = dex_diff > MINIMUM_DEX_DIF ? body_number : body_number + ADDITIONAL_OFFSET_WHEN_TOO_CLOSE
end
offset = dex_offset + Settings::SHINY_HUE_OFFSET
offset /= MAX_SHIFT_VALUE if offset > NB_POKEMON
offset = MINIMUM_OFFSET if offset < MINIMUM_OFFSET
offset = MINIMUM_OFFSET if (MAX_SHIFT_VALUE - offset).abs < MINIMUM_OFFSET
offset += pbGet(VAR_SHINY_HUE_OFFSET) #for testing - always 0 during normal gameplay
return offset
end
def self.getAutogenSprite(head_id, body_id)
end
# species can be either a number, a Species objet of a symbol
def self.front_sprite_bitmap(species, isShiny = false, bodyShiny = false, headShiny = false)
dex_number = getDexNumberForSpecies(species)
if species.is_a?(Species)
dex_number = species.id_number
end
spriteLoader = BattleSpriteLoader.new
if isFusion(dex_number)
body_id = getBodyID(dex_number)
head_id = getHeadID(dex_number, body_id)
sprite = spriteLoader.load_fusion_sprite(head_id,body_id)
else
if isTripleFusion?(dex_number)
sprite = spriteLoader.load_triple_fusion_sprite(dex_number)
else
sprite = spriteLoader.load_base_sprite(dex_number)
end
end
if isShiny
sprite.shiftAllColors(dex_number, bodyShiny, headShiny)
end
return sprite
end
# def self.front_sprite_bitmap(dex_number, isShiny = false, bodyShiny = false, headShiny = false)
# # body_id = getBodyID(dex_number)
# # head_id = getHeadID(dex_number, body_id)
# # return getAutogenSprite(head_id,body_id)
#
# #la méthode est utilisé ailleurs avec d'autres arguments (gender, form, etc.) mais on les veut pas
# if dex_number.is_a?(Symbol)
# dex_number = GameData::Species.get(dex_number).id_number
# end
# filename = self.sprite_filename(dex_number)
# sprite = (filename) ? AnimatedBitmap.new(filename) : nil
# if isShiny
# sprite.shiftColors(self.calculateShinyHueOffset(dex_number, bodyShiny, headShiny))
# end
# return sprite
# end
def self.back_sprite_bitmap(dex_number, isShiny = false, bodyShiny = false, headShiny = false)
# filename = self.sprite_filename(dex_number)
# sprite = (filename) ? AnimatedBitmap.new(filename) : nil
# if isShiny
# sprite.shiftColors(self.calculateShinyHueOffset(dex_number, bodyShiny, headShiny))
# end
# return sprite
sprite = self.front_sprite_bitmap(dex_number,isShiny,bodyShiny,headShiny)
return sprite#.mirror
end
def self.egg_sprite_bitmap(dex_number, form = nil)
filename = self.egg_sprite_filename(dex_number, form)
return (filename) ? AnimatedBitmap.new(filename) : nil
end
end
end
# def self.sprite_filename(dex_number)
# #dex_number = GameData::NAT_DEX_MAPPING[dex_number] ? GameData::NAT_DEX_MAPPING[dex_number] : dex_number
# if dex_number.is_a?(GameData::Species)
# dex_number = dex_number.id_number
# end
# if dex_number.is_a?(Symbol)
# dex_number = getDexNumberForSpecies(dex_number)
# end
# return nil if dex_number == nil
# if dex_number <= Settings::NB_POKEMON
# return get_unfused_sprite_path(dex_number)
# else
# if dex_number >= Settings::ZAPMOLCUNO_NB
# specialPath = getSpecialSpriteName(dex_number)
# return pbResolveBitmap(specialPath)
# head_id = nil
# else
# body_id = getBodyID(dex_number)
# head_id = getHeadID(dex_number, body_id)
# return get_fusion_sprite_path(head_id, body_id)
# # folder = head_id.to_s
# # filename = sprintf("%s.%s.png", head_id, body_id)
# end
# end
# # customPath = pbResolveBitmap(Settings::CUSTOM_BATTLERS_FOLDER_INDEXED + "/" + head_id.to_s + "/" +filename)
# # customPath = download_custom_sprite(head_id,body_id)
# #
# # species = getSpecies(dex_number)
# # use_custom = customPath && !species.always_use_generated
# # if use_custom
# # return customPath
# # end
# # #return Settings::BATTLERS_FOLDER + folder + "/" + filename
# # return download_autogen_sprite(head_id,body_id)
# end
# def get_unfused_sprite_path(dex_number_id, localOnly = false)
# dex_number = dex_number_id.to_s
# folder = dex_number.to_s
# substitution_id = _INTL("{1}", dex_number)
#
# if alt_sprites_substitutions_available && $PokemonGlobal.alt_sprite_substitutions.keys.include?(substitution_id)
# substitutionPath = $PokemonGlobal.alt_sprite_substitutions[substitution_id]
# return substitutionPath if pbResolveBitmap(substitutionPath)
# end
# random_alt = get_random_alt_letter_for_unfused(dex_number, true) #nil if no main
# random_alt = "" if !random_alt || localOnly
#
#
# filename = _INTL("{1}{2}.png", dex_number,random_alt)
#
# path = Settings::CUSTOM_BASE_SPRITES_FOLDER + filename
# if pbResolveBitmap(path)
# record_sprite_substitution(substitution_id,path)
# return path
# end
# echoln "downloading main sprite #{filename}"
# downloaded_path = download_unfused_main_sprite(dex_number, random_alt) if !localOnly
# if pbResolveBitmap(downloaded_path)
# record_sprite_substitution(substitution_id,downloaded_path)
# return downloaded_path
# end
# return path
# end
def alt_sprites_substitutions_available
return $PokemonGlobal && $PokemonGlobal.alt_sprite_substitutions
end
def print_stack_trace
stack_trace = caller
stack_trace.each_with_index do |call, index|
echo("#{index + 1}: #{call}")
end
end
# def record_sprite_substitution(substitution_id, sprite_name)
# return if !$PokemonGlobal
# return if !$PokemonGlobal.alt_sprite_substitutions
# $PokemonGlobal.alt_sprite_substitutions[substitution_id] = sprite_name
# end
def add_to_autogen_cache(pokemon_id, sprite_name)
return if !$PokemonGlobal
return if !$PokemonGlobal.autogen_sprites_cache
$PokemonGlobal.autogen_sprites_cache[pokemon_id]=sprite_name
end
class PokemonGlobalMetadata
attr_accessor :autogen_sprites_cache
end
#To force a specific sprites before a battle
#
# ex:
# $PokemonTemp.forced_alt_sprites={"20.25" => "20.25a"}
#
class PokemonTemp
attr_accessor :forced_alt_sprites
end
#todo:
# DO NOT USE ANYMORE
# Replace by BattleSpriteLoader
# def get_fusion_sprite_path(head_id, body_id, localOnly=false)
# $PokemonGlobal.autogen_sprites_cache = {} if $PokemonGlobal && !$PokemonGlobal.autogen_sprites_cache
# #Todo: ça va chier si on fusionne une forme d'un pokemon avec une autre forme, mais pas un problème pour tout de suite
# form_suffix = ""
#
# #Swap path if alt is selected for this pokemon
# dex_num = getSpeciesIdForFusion(head_id, body_id)
# substitution_id = dex_num.to_s + form_suffix
#
# if alt_sprites_substitutions_available && $PokemonGlobal.alt_sprite_substitutions.keys.include?(substitution_id)
# substitutionPath= $PokemonGlobal.alt_sprite_substitutions[substitution_id]
# return substitutionPath if pbResolveBitmap(substitutionPath)
# end
#
#
# pokemon_name = _INTL("{1}.{2}",head_id, body_id)
#
# #get altSprite letter
# random_alt = get_random_alt_letter_for_custom(head_id, body_id) #nil if no main
# random_alt = "" if !random_alt
# forcingSprite=false
# if $PokemonTemp.forced_alt_sprites && $PokemonTemp.forced_alt_sprites.key?(pokemon_name)
# random_alt = $PokemonTemp.forced_alt_sprites[pokemon_name]
# forcingSprite=true
# end
#
#
# filename = _INTL("{1}{2}.png", pokemon_name, random_alt)
# #Try local custom sprite
# local_custom_path = Settings::CUSTOM_BATTLERS_FOLDER_INDEXED + head_id.to_s + "/" + filename
# if pbResolveBitmap(local_custom_path)
# record_sprite_substitution(substitution_id, local_custom_path) if !forcingSprite
# return local_custom_path
# end
# #if the game has loaded an autogen earlier, no point in trying to redownload, so load that instead
# return $PokemonGlobal.autogen_sprites_cache[substitution_id] if $PokemonGlobal && $PokemonGlobal.autogen_sprites_cache[substitution_id]
#
# #Try to download custom sprite if none found locally
# downloaded_custom = download_custom_sprite(head_id, body_id, random_alt) if !localOnly
# if downloaded_custom
# record_sprite_substitution(substitution_id, downloaded_custom) if !forcingSprite
# return downloaded_custom
# end
#
# #Try local generated sprite
# local_generated_path = Settings::BATTLERS_FOLDER + head_id.to_s + "/" + filename
# if pbResolveBitmap(local_generated_path)
# add_to_autogen_cache(substitution_id,local_generated_path)
# return local_generated_path
# end
#
# #Download generated sprite if nothing else found
# autogen_path = download_autogen_sprite(head_id, body_id) if !localOnly
# if pbResolveBitmap(autogen_path)
# add_to_autogen_cache(substitution_id,autogen_path)
# return autogen_path
# end
#
# return Settings::DEFAULT_SPRITE_PATH
# end
def get_random_alt_letter_for_custom(head_id, body_id, onlyMain = true)
spriteName = _INTL("{1}.{2}", head_id, body_id)
if onlyMain
alts_list = list_main_sprites_letters(spriteName)
return nil if alts_list.empty?
return alts_list.sample
else
alts_list = list_all_sprites_letters(spriteName)
return nil if alts_list.empty?
return alts_list.sample
end
end
def get_random_alt_letter_for_unfused(dex_num, onlyMain = true)
spriteName = _INTL("{1}", dex_num)
if onlyMain
letters_list= list_main_sprites_letters(spriteName)
else
letters_list= list_all_sprites_letters(spriteName)
end
letters_list << "" #add main sprite
return letters_list.sample
end
def list_main_sprites_letters(spriteName)
return list_all_sprites_letters(spriteName) if $PokemonSystem.include_alt_sprites_in_random
all_sprites = map_alt_sprite_letters_for_pokemon(spriteName)
main_sprites = []
all_sprites.each do |key, value|
main_sprites << key if value == "main"
end
#add temp sprites if no main sprites found
if main_sprites.empty?
all_sprites.each do |key, value|
main_sprites << key if value == "temp"
end
end
return main_sprites
end
def list_all_sprites_letters_head_body(head_id,body_id)
spriteName = _INTL("{1}.{2}", head_id, body_id)
all_sprites_map = map_alt_sprite_letters_for_pokemon(spriteName)
letters = []
all_sprites_map.each do |key, value|
letters << key
end
return letters
end
def list_all_sprites_letters(spriteName)
all_sprites_map = map_alt_sprite_letters_for_pokemon(spriteName)
letters = []
all_sprites_map.each do |key, value|
letters << key
end
return letters
end
def list_alt_sprite_letters(spriteName)
all_sprites = map_alt_sprite_letters_for_pokemon(spriteName)
alt_sprites = []
all_sprites.each do |key, value|
alt_sprites << key if value == "alt"
end
end
#ex: "1" -> "main"
# "1a" -> "alt"
def map_alt_sprite_letters_for_pokemon(spriteName)
alt_sprites = {}
File.foreach(Settings::CREDITS_FILE_PATH) do |line|
row = line.split(',')
sprite_name = row[0]
if sprite_name.start_with?(spriteName)
if sprite_name.length > spriteName.length #alt letter
letter = sprite_name[spriteName.length]
if letter.match?(/[a-zA-Z]/)
main_or_alt = row[2] ? row[2] : nil
alt_sprites[letter] = main_or_alt
end
else #letterless
main_or_alt = row[2] ? row[2].gsub("\n","") : nil
alt_sprites[""] = main_or_alt
end
end
end
return alt_sprites
end

View File

@@ -0,0 +1,478 @@
def playerHasFusionItems()
return pbHasItem?(:DNASPLICERS) || pbHasItem?(:SUPERSPLICERS) || pbHasItem?(:INFINITESPLICERS) || pbHasItem?(:INFINITESPLICERS2)
end
def selectSplicer()
dna_splicers_const = "DNA Splicers"
super_splicers_const = "Super Splicers"
infinite_splicers_const = "Infinite Splicers"
dnaSplicersQt = $PokemonBag.pbQuantity(:DNASPLICERS)
superSplicersQt = $PokemonBag.pbQuantity(:SUPERSPLICERS)
infiniteSplicersQt = $PokemonBag.pbQuantity(:INFINITESPLICERS)
infiniteSplicers2Qt = $PokemonBag.pbQuantity(:INFINITESPLICERS2)
options = []
options.push(_INTL "{1}", infinite_splicers_const) if infiniteSplicers2Qt > 0 || infiniteSplicersQt > 0
options.push(_INTL("{1} ({2})", super_splicers_const, superSplicersQt)) if superSplicersQt > 0
options.push(_INTL("{1} ({2})", dna_splicers_const, dnaSplicersQt)) if dnaSplicersQt > 0
if options.length <= 0
pbDisplay(_INTL("You have no fusion items available."))
return nil
end
cmd = pbShowCommands("Use which splicers?", options)
if cmd == -1
return nil
end
ret = options[cmd]
if ret.start_with?(dna_splicers_const)
return :DNASPLICERS
elsif ret.start_with?(super_splicers_const)
return :SUPERSPLICERS
elsif ret.start_with?(infinite_splicers_const)
return infiniteSplicers2Qt >= 1 ? :INFINITESPLICERS2 : :INFINITESPLICERS
end
return nil
end
def is_fusion_of_any(species_id, pokemonList)
is_species = false
for fusionPokemon in pokemonList
if is_fusion_of(species_id, fusionPokemon)
is_species = true
end
end
return is_species
end
def is_fusion_of(checked_species, checked_against)
return species_has_body_of(checked_species, checked_against) || species_has_head_of(checked_species, checked_against)
end
def is_species(checked_species, checked_against)
return checked_species == checked_against
end
def species_has_body_of(checked_species, checked_against)
if !species_is_fusion(checked_species)
return is_species(checked_species, checked_against)
end
bodySpecies = get_body_species_from_symbol(checked_species)
ret = bodySpecies == checked_against
#echoln _INTL("{1} HAS BODY OF {2} : {3} (body is {4})",checked_species,checked_against,ret,bodySpecies)
return ret
end
def species_has_head_of(checked_species, checked_against)
if !species_is_fusion(checked_species)
return is_species(checked_species, checked_against)
end
headSpecies = get_head_species_from_symbol(checked_species)
ret = headSpecies == checked_against
#echoln _INTL("{1} HAS HEAD OF {2} : {3}",checked_species,checked_against,ret)
return ret
end
def species_is_fusion(species_id)
dex_number = get_dex_number(species_id)
return dex_number > NB_POKEMON && dex_number < Settings::ZAPMOLCUNO_NB
end
def get_dex_number(species_id)
return GameData::Species.get(species_id).id_number
end
def getBodyID(species, nb_pokemon = NB_POKEMON)
if species.is_a?(Integer)
dexNum = species
else
dexNum = getDexNumberForSpecies(species)
end
if dexNum % nb_pokemon == 0
return (dexNum / nb_pokemon) - 1
end
return (dexNum / nb_pokemon).round
end
def getHeadID(species, bodyId = nil, nb_pokemon = NB_POKEMON)
if species.is_a?(Integer)
fused_dexNum = species
else
fused_dexNum = getDexNumberForSpecies(species)
end
if bodyId == nil
bodyId = getBodyID(species)
end
body_dexNum = getDexNumberForSpecies(bodyId)
calculated_number = (fused_dexNum - (body_dexNum * nb_pokemon)).round
return calculated_number == 0 ? nb_pokemon : calculated_number
end
def get_fusion_id(head_number, body_number)
return "B#{body_number}H#{head_number}".to_sym
end
def get_body_id_from_symbol(id)
split_id = id.to_s.match(/\d+/)
if !split_id #non-fusion
return GameData::Species.get(id).id_number
end
return split_id[0].to_i
end
def get_head_id_from_symbol(id)
split_id = id.to_s.match(/(?<=H)\d+/)
if !split_id #non-fusion
return GameData::Species.get(id).id_number
end
return split_id[0].to_i
end
def obtainPokemonSpritePath(id, includeCustoms = true)
head = getBasePokemonID(param.to_i, false)
body = getBasePokemonID(param.to_i, true)
return obtainPokemonSpritePath(body, head, includeCustoms)
end
def obtainPokemonSpritePath(bodyId, headId, include_customs = true)
#download_pokemon_sprite_if_missing(bodyId, headId)
picturePath = _INTL("Graphics/Battlers/{1}/{1}.{2}.png", headId, bodyId)
if include_customs && customSpriteExistsBodyHead(bodyId, headId)
pathCustom = getCustomSpritePath(bodyId, headId)
if (pbResolveBitmap(pathCustom))
picturePath = pathCustom
end
end
return picturePath
end
def getCustomSpritePath(body, head)
return _INTL("#{Settings::CUSTOM_BATTLERS_FOLDER_INDEXED}{1}/{1}.{2}.png", head, body)
end
def customSpriteExistsForm(species, form_id_head = nil, form_id_body = nil)
head = getBasePokemonID(species, false)
body = getBasePokemonID(species, true)
folder = head.to_s
folder += "_" + form_id_head.to_s if form_id_head
spritename = head.to_s
spritename += "_" + form_id_head.to_s if form_id_head
spritename += "." + body.to_s
spritename += "_" + form_id_body.to_s if form_id_body
pathCustom = _INTL("Graphics/.CustomBattlers/indexed/{1}/{2}.png", folder, spritename)
return true if pbResolveBitmap(pathCustom) != nil
return download_custom_sprite(head, body) != nil
end
def get_fusion_spritename(head_id, body_id, alt_letter = "")
return "#{head_id}.#{body_id}#{alt_letter}"
end
def customSpriteExistsSpecies(species)
head = getBasePokemonID(species, false)
body = getBasePokemonID(species, true)
return customSpriteExists(body, head)
# pathCustom = getCustomSpritePath(body, head)
#
# return true if pbResolveBitmap(pathCustom) != nil
# return download_custom_sprite(head, body) != nil
end
def getRandomCustomFusion(returnRandomPokemonIfNoneFound = true, customPokeList = [], maxPoke = -1, recursionLimit = 3)
if customPokeList.length == 0
customPokeList = getCustomSpeciesList(false)
end
randPoke = []
if customPokeList.length >= 5000
chosen = false
i = 0 #loop pas plus que 3 fois pour pas lag
while chosen == false
fusedPoke = customPokeList[rand(customPokeList.length)]
poke1 = getBasePokemonID(fusedPoke, false)
poke2 = getBasePokemonID(fusedPoke, true)
if ((poke1 <= maxPoke && poke2 <= maxPoke) || i >= recursionLimit) || maxPoke == -1
randPoke << getBasePokemonID(fusedPoke, false)
randPoke << getBasePokemonID(fusedPoke, true)
chosen = true
end
end
else
if returnRandomPokemonIfNoneFound
randPoke << rand(maxPoke) + 1
randPoke << rand(maxPoke) + 1
end
end
return randPoke
end
def checkIfCustomSpriteExistsByPath(path)
return true if pbResolveBitmap(path) != nil
end
def customSpriteExistsBodyHead(body, head)
pathCustom = getCustomSpritePath(body, head)
return true if pbResolveBitmap(pathCustom) != nil
return download_custom_sprite(head, body) != nil
end
def customSpriteExistsSpecies(species)
body_id = getBodyID(species)
head_id = getHeadID(species, body_id)
fusion_id = get_fusion_symbol(head_id, body_id)
return $game_temp.custom_sprites_list.include?(fusion_id)
end
def customSpriteExists(body, head)
fusion_id = get_fusion_symbol(head, body)
return $game_temp.custom_sprites_list.include?(fusion_id)
end
#shortcut for using in game events because of script characters limit
def dexNum(species)
return getDexNumberForSpecies(species)
end
def isTripleFusion?(num)
return num >= Settings::ZAPMOLCUNO_NB
end
def isFusion(num)
return num > Settings::NB_POKEMON && !isTripleFusion?(num)
end
def isSpeciesFusion(species)
num = getDexNumberForSpecies(species)
return isFusion(num)
end
def getRandomLocalFusion()
spritesList = []
$PokemonGlobal.alt_sprite_substitutions.each_value do |value|
if value.is_a?(PIFSprite)
spritesList << value
end
end
return spritesList.sample
end
def getRandomFusionForIntro()
random_pokemon = $game_temp.custom_sprites_list.keys.sample || :PIKACHU
alt_letter = $game_temp.custom_sprites_list[random_pokemon]
body_id = get_body_number_from_symbol(random_pokemon)
head_id = get_head_number_from_symbol(random_pokemon)
return PIFSprite.new(:CUSTOM, head_id, body_id, alt_letter)
end
def getSpeciesIdForFusion(head_number, body_number)
return (body_number) * Settings::NB_POKEMON + head_number
end
def get_body_species_from_symbol(fused_id)
body_num = get_body_number_from_symbol(fused_id)
return GameData::Species.get(body_num).species
end
def get_head_species_from_symbol(fused_id)
head_num = get_head_number_from_symbol(fused_id)
return GameData::Species.get(head_num).species
end
def get_body_number_from_symbol(id)
dexNum = getDexNumberForSpecies(id)
return dexNum if !isFusion(dexNum)
id.to_s.match(/\d+/)[0]
return id.to_s.match(/\d+/)[0].to_i
end
def get_head_number_from_symbol(id)
dexNum = getDexNumberForSpecies(id)
return dexNum if !isFusion(dexNum)
return id.to_s.match(/(?<=H)\d+/)[0].to_i
end
def get_fusion_symbol(head_id, body_id)
return "B#{body_id}H#{head_id}".to_sym
end
def getFusionSpecies(body, head)
body_num = getDexNumberForSpecies(body)
head_num = getDexNumberForSpecies(head)
id = body_num * Settings::NB_POKEMON + head_num
return GameData::Species.get(id)
end
def getDexNumberForSpecies(species)
return species if species.is_a?(Integer)
if species.is_a?(Symbol)
dexNum = GameData::Species.get(species).id_number
elsif species.is_a?(Pokemon)
dexNum = GameData::Species.get(species.species).id_number
elsif species.is_a?(GameData::Species)
return species.id_number
else
dexNum = species
end
return dexNum
end
def getFusedPokemonIdFromDexNum(body_dex, head_dex)
return ("B" + body_dex.to_s + "H" + head_dex.to_s).to_sym
end
def getFusedPokemonIdFromSymbols(body_dex, head_dex)
bodyDexNum = GameData::Species.get(body_dex).id_number
headDexNum = GameData::Species.get(head_dex).id_number
return getFusedPokemonIdFromDexNum(bodyDexNum, headDexNum)
end
def generateFusionIcon(dexNum, path)
begin
IO.copy_stream(dexNum, path)
return true
rescue
return false
end
end
def ensureFusionIconExists
directory_name = "Graphics/Pokemon/FusionIcons"
Dir.mkdir(directory_name) unless File.exists?(directory_name)
end
def addNewTripleFusion(pokemon1, pokemon2, pokemon3, level = 1)
return if !pokemon1
return if !pokemon2
return if !pokemon3
if pbBoxesFull?
pbMessage(_INTL("There's no more room for Pokémon!\1"))
pbMessage(_INTL("The Pokémon Boxes are full and can't accept any more!"))
return false
end
pokemon = TripleFusion.new(pokemon1, pokemon2, pokemon3, level)
pokemon.calc_stats
pbMessage(_INTL("{1} obtained {2}!\\me[Pkmn get]\\wtnp[80]\1", $Trainer.name, pokemon.name))
pbNicknameAndStore(pokemon)
#$Trainer.pokedex.register(pokemon)
return true
end
def get_pokemon_readable_internal_name(pokemon)
if pokemon.isFusion?
body_pokemon = get_body_species_from_symbol(pokemon.species)
head_pokemon = get_head_species_from_symbol(pokemon.species)
name = "#{head_pokemon}_#{body_pokemon}"
else
name = pokemon.species
end
return name
end
def get_species_readable_internal_name(species_symbol)
if isSpeciesFusion(species_symbol)
body_pokemon = get_body_species_from_symbol(species_symbol)
head_pokemon = get_head_species_from_symbol(species_symbol)
name = "#{head_pokemon}_#{body_pokemon}"
else
name = species_symbol
end
return name
end
def getSpeciesRealName(species_symbol)
return nil if !species_symbol
species = GameData::Species.get(species_symbol)
return species.real_name
end
def get_triple_fusion_components(species_id)
dex_num = GameData::Species.get(species_id).id_number
case dex_num
when Settings::ZAPMOLCUNO_NB
return [144,145,146]
when Settings::ZAPMOLCUNO_NB + 1
return [144,145,146]
when Settings::ZAPMOLCUNO_NB + 2
return [243,244,245]
when Settings::ZAPMOLCUNO_NB + 3
return [340,341,342]
when Settings::ZAPMOLCUNO_NB + 4
return [343,344,345]
when Settings::ZAPMOLCUNO_NB + 5
return [349,350,351]
when Settings::ZAPMOLCUNO_NB + 6
return [151,251,381]
when Settings::ZAPMOLCUNO_NB + 11
return [150,348,380]
#starters
when Settings::ZAPMOLCUNO_NB + 7
return [3,6,9]
when Settings::ZAPMOLCUNO_NB + 8
return [154,157,160]
when Settings::ZAPMOLCUNO_NB + 9
return [278,281,284]
when Settings::ZAPMOLCUNO_NB + 10
return [318,321,324]
#starters prevos
when Settings::ZAPMOLCUNO_NB + 12
return [1,4,7]
when Settings::ZAPMOLCUNO_NB + 13
return [2,5,8]
when Settings::ZAPMOLCUNO_NB + 14
return [152,155,158]
when Settings::ZAPMOLCUNO_NB + 15
return [153,156,159]
when Settings::ZAPMOLCUNO_NB + 16
return [276,279,282]
when Settings::ZAPMOLCUNO_NB + 17
return [277,280,283]
when Settings::ZAPMOLCUNO_NB + 18
return [316,319,322]
when Settings::ZAPMOLCUNO_NB + 19
return [317,320,323]
when Settings::ZAPMOLCUNO_NB + 20 #birdBoss Left
return []
when Settings::ZAPMOLCUNO_NB + 21 #birdBoss middle
return [144,145,146]
when Settings::ZAPMOLCUNO_NB + 22 #birdBoss right
return []
when Settings::ZAPMOLCUNO_NB + 23 #sinnohboss left
return []
when Settings::ZAPMOLCUNO_NB + 24 #sinnohboss middle
return [343,344,345]
when Settings::ZAPMOLCUNO_NB + 25 #sinnohboss right
return []
when Settings::ZAPMOLCUNO_NB + 25 #cardboard
return []
when Settings::ZAPMOLCUNO_NB + 26 #cardboard
return []
when Settings::ZAPMOLCUNO_NB + 27 #Triple regi
return [447,448,449]
#Triple Kalos 1
when Settings::ZAPMOLCUNO_NB + 28
return [479,482,485]
when Settings::ZAPMOLCUNO_NB + 29
return [480,483,486]
when Settings::ZAPMOLCUNO_NB + 30
return [481,484,487]
else
return [000]
end
end

View File

@@ -0,0 +1,262 @@
class PokemonGameOption_Scene < PokemonOption_Scene
def pbGetOptions(inloadscreen = false)
options = []
options << SliderOption.new(_INTL("Music Volume"), 0, 100, 5,
proc { $PokemonSystem.bgmvolume },
proc { |value|
if $PokemonSystem.bgmvolume != value
$PokemonSystem.bgmvolume = value
if $game_system.playing_bgm != nil && !inloadscreen
playingBGM = $game_system.getPlayingBGM
$game_system.bgm_pause
$game_system.bgm_resume(playingBGM)
end
end
}, "Sets the volume for background music"
)
options << SliderOption.new(_INTL("SE Volume"), 0, 100, 5,
proc { $PokemonSystem.sevolume },
proc { |value|
if $PokemonSystem.sevolume != value
$PokemonSystem.sevolume = value
if $game_system.playing_bgs != nil
$game_system.playing_bgs.volume = value
playingBGS = $game_system.getPlayingBGS
$game_system.bgs_pause
$game_system.bgs_resume(playingBGS)
end
pbPlayCursorSE
end
}, "Sets the volume for sound effects"
)
options << EnumOption.new(_INTL("Default Movement"), [_INTL("Walking"), _INTL("Running")],
proc { $PokemonSystem.runstyle },
proc { |value| $PokemonSystem.runstyle = value },
["Default to walking when not holding the Run key",
"Default to running when not holding the Run key"]
)
options << EnumOption.new(_INTL("Text Speed"), [_INTL("Normal"), _INTL("Fast")],
proc { $PokemonSystem.textspeed },
proc { |value|
$PokemonSystem.textspeed = value
MessageConfig.pbSetTextSpeed(MessageConfig.pbSettingToTextSpeed(value))
}, "Sets the speed at which the text is displayed"
)
if $game_switches
options << EnumOption.new(_INTL("Difficulty"), [_INTL("Easy"), _INTL("Normal"), _INTL("Hard")],
proc { $Trainer.selected_difficulty },
proc { |value|
setDifficulty(value)
@manually_changed_difficulty = true
}, ["All Pokémon in the team gain experience. Otherwise the same as Normal difficulty.",
"The default experience. Levels are similar to the official games.",
"Higher levels and smarter AI. All trainers have access to healing items."]
)
end
if $game_switches
options <<
EnumOption.new(_INTL("Autosave"), [_INTL("On"), _INTL("Off")],
proc { $game_switches[AUTOSAVE_ENABLED_SWITCH] ? 0 : 1 },
proc { |value|
if !$game_switches[AUTOSAVE_ENABLED_SWITCH] && value == 0
@autosave_menu = true
openAutosaveMenu()
end
$game_switches[AUTOSAVE_ENABLED_SWITCH] = value == 0
},
"Automatically saves when healing at Pokémon centers"
)
end
options << EnumOption.new(_INTL("Speed-up type"), [_INTL("Hold"), _INTL("Toggle")],
proc { $PokemonSystem.speedup },
proc { |value|
$PokemonSystem.speedup = value
}, "Pick how you want speed-up to be enabled"
)
options << SliderOption.new(_INTL("Speed-up speed"), 1, 10, 1,
proc { $PokemonSystem.speedup_speed },
proc { |value|
$PokemonSystem.speedup_speed = value
}, "Sets by how much to speed up the game when holding the speed up button (Default: 3x)"
)
# if $game_switches && ($game_switches[SWITCH_NEW_GAME_PLUS] || $game_switches[SWITCH_BEAT_THE_LEAGUE]) #beat the league
# options << EnumOption.new(_INTL("Text Speed"), [_INTL("Normal"), _INTL("Fast"), _INTL("Instant")],
# proc { $PokemonSystem.textspeed },
# proc { |value|
# $PokemonSystem.textspeed = value
# MessageConfig.pbSetTextSpeed(MessageConfig.pbSettingToTextSpeed(value))
# }, "Sets the speed at which the text is displayed"
# )
# else
# options << EnumOption.new(_INTL("Text Speed"), [_INTL("Normal"), _INTL("Fast")],
# proc { $PokemonSystem.textspeed },
# proc { |value|
# $PokemonSystem.textspeed = value
# MessageConfig.pbSetTextSpeed(MessageConfig.pbSettingToTextSpeed(value))
# }, "Sets the speed at which the text is displayed"
# )
# end
options <<
EnumOption.new(_INTL("Download data"), [_INTL("On"), _INTL("Off")],
proc { $PokemonSystem.download_sprites },
proc { |value|
$PokemonSystem.download_sprites = value
},
"Automatically download missing custom sprites and Pokédex entries from the internet"
)
#
generated_entries_option_selected = $PokemonSystem.use_generated_dex_entries ? 1 : 0
options << EnumOption.new(_INTL("Autogen dex entries"), [_INTL("Off"), _INTL("On")],
proc { generated_entries_option_selected },
proc { |value|
$PokemonSystem.use_generated_dex_entries = value == 1
},
[
"Fusions without a custom Pokédex entry display nothing.",
"Fusions without a custom Pokédex entry display an auto-generated placeholder."
]
)
generated_entries_option_selected = $PokemonSystem.include_alt_sprites_in_random ? 1 : 0
options << EnumOption.new(_INTL("Sprite categories"), [_INTL("Normal"), _INTL("Anything")],
proc { generated_entries_option_selected },
proc { |value|
$PokemonSystem.include_alt_sprites_in_random = value == 1
},
[
"Auto-selected sprites follow standard Pokémon sprites rules.",
"Auto-selected sprites can be anything, including references, sprites, memes, and joke sprites."
]
) ? 1 : 0
custom_eggs_option_selected = $PokemonSystem.use_custom_eggs ? 1 : 0
options << EnumOption.new(_INTL("Custom Eggs"), [_INTL("On"), _INTL("Off")],
proc { custom_eggs_option_selected },
proc { |value|
$PokemonSystem.use_custom_eggs = value == 1
},
["Eggs have different sprites for each Pokémon.",
"Eggs all use the same sprite."]
)
if $game_switches && ($game_switches[SWITCH_NEW_GAME_PLUS] || $game_switches[SWITCH_BEAT_THE_LEAGUE]) # beat the league
options <<
EnumOption.new(_INTL("Battle type"), [_INTL("1v1"), _INTL("2v2"), _INTL("3v3")],
proc { $PokemonSystem.battle_type },
proc { |value|
if value == 0
$game_variables[VAR_DEFAULT_BATTLE_TYPE] = [1, 1]
elsif value == 1
$game_variables[VAR_DEFAULT_BATTLE_TYPE] = [2, 2]
elsif value == 2
$game_variables[VAR_DEFAULT_BATTLE_TYPE] = [3, 3]
else
$game_variables[VAR_DEFAULT_BATTLE_TYPE] = [1, 1]
end
$PokemonSystem.battle_type = value
}, "Sets the number of Pokémon sent out in battles (when possible)"
)
end
options << EnumOption.new(_INTL("Battle Effects"), [_INTL("On"), _INTL("Off")],
proc { $PokemonSystem.battlescene },
proc { |value| $PokemonSystem.battlescene = value },
"Display move animations in battles"
)
options << EnumOption.new(_INTL("Battle Style"), [_INTL("Switch"), _INTL("Set")],
proc { $PokemonSystem.battlestyle },
proc { |value| $PokemonSystem.battlestyle = value },
["Prompts to switch Pokémon before the opponent sends out the next one",
"No prompt to switch Pokémon before the opponent sends the next one"]
)
options << NumberOption.new(_INTL("Speech Frame"), 1, Settings::SPEECH_WINDOWSKINS.length,
proc { $PokemonSystem.textskin },
proc { |value|
$PokemonSystem.textskin = value
MessageConfig.pbSetSpeechFrame("Graphics/Windowskins/" + Settings::SPEECH_WINDOWSKINS[value])
}
)
# NumberOption.new(_INTL("Menu Frame"),1,Settings::MENU_WINDOWSKINS.length,
# proc { $PokemonSystem.frame },
# proc { |value|
# $PokemonSystem.frame = value
# MessageConfig.pbSetSystemFrame("Graphics/Windowskins/" + Settings::MENU_WINDOWSKINS[value])
# }
# ),
options << EnumOption.new(_INTL("Text Entry"), [_INTL("Cursor"), _INTL("Keyboard")],
proc { $PokemonSystem.textinput },
proc { |value| $PokemonSystem.textinput = value },
["Enter text by selecting letters on the screen",
"Enter text by typing on the keyboard"]
)
if $game_variables
options << EnumOption.new(_INTL("Fusion Icons"), [_INTL("Combined"), _INTL("DNA")],
proc { $game_variables[VAR_FUSION_ICON_STYLE] },
proc { |value| $game_variables[VAR_FUSION_ICON_STYLE] = value },
["Combines both Pokémon's party icons",
"Uses the same party icon for all fusions"]
)
battle_type_icon_option_selected = $PokemonSystem.type_icons ? 1 : 0
options << EnumOption.new(_INTL("Battle Type Icons"), [_INTL("Off"), _INTL("On")],
proc { battle_type_icon_option_selected },
proc { |value| $PokemonSystem.type_icons = value == 1 },
"Display the enemy Pokémon type in battles."
)
end
options << EnumOption.new(_INTL("Screen Size"), [_INTL("S"), _INTL("M"), _INTL("L"), _INTL("XL"), _INTL("Full")],
proc { [$PokemonSystem.screensize, 4].min },
proc { |value|
if $PokemonSystem.screensize != value
$PokemonSystem.screensize = value
pbSetResizeFactor($PokemonSystem.screensize)
echoln $PokemonSystem.screensize
end
}, "Sets the size of the screen"
)
options << EnumOption.new(_INTL("Quick Surf"), [_INTL("Off"), _INTL("On")],
proc { $PokemonSystem.quicksurf },
proc { |value| $PokemonSystem.quicksurf = value },
"Start surfing automatically when interacting with water"
)
options << EnumOption.new(_INTL("Level caps"), [_INTL("Off"), _INTL("On")],
proc { $PokemonSystem.level_caps },
proc { |value| $PokemonSystem.level_caps = value },
"Prevents leveling above the next gym leader's highest leveled Pokemon"
)
device_option_selected = $PokemonSystem.on_mobile ? 1 : 0
options << EnumOption.new(_INTL("Device"), [_INTL("PC"), _INTL("Mobile")],
proc { device_option_selected },
proc { |value| $PokemonSystem.on_mobile = value == 1 },
["The intended device on which to play the game.",
"Disables some options that aren't supported when playing on mobile."]
)
return options
end
def pbEndScene
echoln "Selected Difficulty: #{$Trainer.selected_difficulty}, lowest difficutly: #{$Trainer.lowest_difficulty}" if $Trainer
if $Trainer && $Trainer.selected_difficulty < $Trainer.lowest_difficulty
$Trainer.lowest_difficulty = $Trainer.selected_difficulty
echoln "lowered difficulty (#{$Trainer.selected_difficulty})"
if @manually_changed_difficulty
pbMessage(_INTL("The savefile's lowest selected difficulty was changed to #{getDisplayDifficulty()}."))
@manually_changed_difficulty = false
end
end
super
end
end

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,302 @@
#IMPORTANT
#La méthode def pbCheckEvolution(pokemon,item=0)
#dans PokemonFusion (class PokemonFusionScene)
#a été modifiée et pour une raison ou une autre ca marche
#pas quand on la copie ici.
#Donc NE PAS OUBLIER DE LE COPIER AVEC
############################
# MODIFIED CODE SECTION #
###########################
#
# require PokeBattle_Scene_edited2
# PokemonFusion
#
NB_POKEMON = Settings::NB_POKEMON#809#420 #351 #aussi CONST_NB_POKE
CONST_NB_POKE = NB_POKEMON
def pbPokemonBitmapFile(species)
# Used by the Pokédex
# Load normal bitmap
#get body and head num
isFused = species > NB_POKEMON
if isFused
if species >= ZAPMOLCUNO_NB
path = getSpecialSpriteName(species) + ".png"
else
poke1 = getBodyID(species) #getBasePokemonID(species,true)
poke2 = getHeadID(species, poke1) #getBasePokemonID(species,false)
path = GetSpritePath(poke1, poke2, isFused)
end
else
path = GetSpritePath(species, species, false)
end
ret = sprintf(path) rescue nil
if !pbResolveBitmap(ret)
ret = "Graphics/Battlers/000.png"
end
return ret
end
def pbLoadPokemonBitmap(pokemon, species, back = false)
#species est utilisé par elitebattle mais ca sert a rien
return pbLoadPokemonBitmapSpecies(pokemon, pokemon.species, back)
end
def getEggBitmapPath(pokemon)
return "Graphics/Battlers/Eggs/000" if $PokemonSystem.use_custom_eggs
bitmapFileName = sprintf("Graphics/Battlers/Eggs/%s", getConstantName(PBSpecies, pokemon.species)) rescue nil
if !pbResolveBitmap(bitmapFileName)
if pokemon.species >= NUM_ZAPMOLCUNO
bitmapFileName = "Graphics/Battlers/Eggs/egg_base"
else
bitmapFileName = sprintf("Graphics/Battlers/Eggs/%03d", pokemon.species)
if !pbResolveBitmap(bitmapFileName)
bitmapFileName = sprintf("Graphics/Battlers/Eggs/000")
end
end
end
return bitmapFileName
end
def pbLoadPokemonBitmapSpecies(pokemon, species, back = false, scale = POKEMONSPRITESCALE)
ret = nil
pokemon = pokemon.pokemon if pokemon.respond_to?(:pokemon)
if pokemon.isEgg?
bitmapFileName = getEggBitmapPath(pokemon)
bitmapFileName = pbResolveBitmap(bitmapFileName)
elsif pokemon.species >= ZAPMOLCUNO_NB #zapmolcuno
bitmapFileName = getSpecialSpriteName(pokemon.species) #sprintf("Graphics/Battlers/special/144.145.146")
bitmapFileName = pbResolveBitmap(bitmapFileName)
else
#edited here
isFusion = species > NB_POKEMON
if isFusion
poke1 = getBodyID(species)
poke2 = getHeadID(species, poke1)
else
poke1 = species
poke2 = species
end
bitmapFileName = GetSpritePath(poke1, poke2, isFusion)
# Alter bitmap if supported
alterBitmap = (MultipleForms.getFunction(species, "alterBitmap") rescue nil)
end
if bitmapFileName && alterBitmap
animatedBitmap = AnimatedBitmap.new(bitmapFileName)
copiedBitmap = animatedBitmap.copy
animatedBitmap.dispose
copiedBitmap.each { |bitmap| alterBitmap.call(pokemon, bitmap) }
ret = copiedBitmap
elsif bitmapFileName
ret = AnimatedBitmap.new(bitmapFileName)
end
return ret
end
#######################
# NEW CODE SECTION #
#######################
DOSSIERCUSTOMSPRITES = "CustomBattlers"
BATTLERSPATH = "Battlers"
def GetSpritePath(poke1, poke2, isFused)
#Check if custom exists
spritename = GetSpriteName(poke1, poke2, isFused)
pathCustom = sprintf("Graphics/%s/indexed/%s/%s.png", DOSSIERCUSTOMSPRITES,poke2, spritename)
pathReg = sprintf("Graphics/%s/%s/%s.png", BATTLERSPATH, poke2, spritename)
path = pbResolveBitmap(pathCustom) && $game_variables[196] == 0 ? pathCustom : pathReg
return path
end
def GetSpritePathForced(poke1, poke2, isFused)
#Check if custom exists
spritename = GetSpriteName(poke1, poke2, isFused)
pathCustom = sprintf("Graphics/%s/indexed/%s/%s.png", DOSSIERCUSTOMSPRITES, poke2, spritename)
pathReg = sprintf("Graphics/%s/%s/%s.png", BATTLERSPATH, poke2, spritename)
path = pbResolveBitmap(pathCustom) ? pathCustom : pathReg
return path
end
def GetSpriteName(poke1, poke2, isFused)
ret = isFused ? sprintf("%d.%d", poke2, poke1) : sprintf("%d", poke2) rescue nil
return ret
end
#in: pokemon number
def Kernel.isPartPokemon(src, target)
src = getDexNumberForSpecies(src)
target = getDexNumberForSpecies(target)
return true if src == target
return false if src <= NB_POKEMON
bod = getBasePokemonID(src, true)
head = getBasePokemonID(src, false)
return bod == target || head == target
end
##EDITED HERE
#Retourne le pokemon de base
#param1 = int
#param2 = true pour body, false pour head
#return int du pokemon de base
def getBasePokemonID(pokemon, body = true)
if pokemon.is_a?(Symbol)
dex_number = GameData::Species.get(pokemon).id_number
pokemon = dex_number
end
return nil if pokemon <= 0
return nil if pokemon >= Settings::ZAPMOLCUNO_NB
# cname = getConstantName(PBSpecies, pokemon) rescue nil
cname = GameData::Species.get(pokemon).id.to_s
return pokemon if pokemon <= NB_POKEMON
return pokemon if cname == nil
arr = cname.split(/[B,H]/)
bod = arr[1]
head = arr[2]
return bod.to_i if body
return head.to_i
end
###################
## CONVERTER #
###################
def convertAllPokemon()
Kernel.pbMessage(_INTL("The game has detected that your previous savefile was from an earlier build of the game."))
Kernel.pbMessage(_INTL("In order to play this version, your Pokémon need to be converted to their new Pokédex numbers. "))
Kernel.pbMessage(_INTL("If you were playing Randomized mode, the trainers and wild Pokémon will also need to be reshuffled."))
if (Kernel.pbConfirmMessage(_INTL("Convert your Pokémon?")))
#get previous version
msgwindow = Kernel.pbCreateMessageWindow(nil)
msgwindow.text = "What is the last version of the game you played?"
choice = Kernel.pbShowCommands(msgwindow, [
"4.7 (September 2020)",
"4.5-4.6.2 (2019-2020)",
"4.2-4.4 (2019)",
"4.0-4.1 (2018-2019)",
"3.x or earlier (2015-2018)"], -1)
case choice
when 0
prev_total = 381
when 1
prev_total = 351
when 2
prev_total = 315
when 3
prev_total = 275
when 4
prev_total = 151
else
prev_total = 381
end
Kernel.pbDisposeMessageWindow(msgwindow)
pbEachPokemon { |poke, box|
if poke.species >= NB_POKEMON
pf = poke.species
pBody = (pf / prev_total).round
pHead = pf - (prev_total * pBody)
# Kernel.pbMessage(_INTL("pbod {1} pHead {2}, species: {3})",pBody,pHead,pf))
prev_max_value = (prev_total * prev_total) + prev_total
if pf >= prev_max_value
newSpecies = convertTripleFusion(pf, prev_max_value)
if newSpecies == nil
boxname = box == -1 ? "Party" : box
Kernel.pbMessage(_INTL("Invalid Pokémon detected in box {1}:\n num. {2}, {3} (lv. {4})", boxname, pf, poke.name, poke.level))
if (Kernel.pbConfirmMessage(_INTL("Delete Pokémon and continue?")))
poke = nil
next
else
Kernel.pbMessage(_INTL("Conversion cancelled. Please restart the game."))
Graphics.freeze
end
end
end
newSpecies = pBody * NB_POKEMON + pHead
poke.species = newSpecies
end
}
Kernel.initRandomTypeArray()
if $game_switches[SWITCH_RANDOM_TRAINERS] #randomized trainers
Kernel.pbShuffleTrainers()
end
if $game_switches[956] #randomized pokemon
range = pbGet(197) == nil ? 25 : pbGet(197)
Kernel.pbShuffleDex(range, 1)
end
end
end
def convertTripleFusion(species, prev_max_value)
if prev_max_value == (351 * 351) + 351
case species
when 123553
return 145543
when 123554
return 145544
when 123555
return 145545
when 123556
return 145546
when 123557
return 145547
when 123558
return 145548
else
return nil
end
end
return nil
end
def convertTrainers()
if ($game_switches[SWITCH_RANDOM_TRAINERS])
Kernel.pbShuffleTrainers()
end
end
def convertAllPokemonManually()
if (Kernel.pbConfirmMessage(_INTL("When you last played the game, where there any gen 2 Pokémon?")))
#4.0
prev_total = 315
else
#3.0
prev_total = 151
end
convertPokemon(prev_total)
end
def convertPokemon(prev_total = 275)
pbEachPokemon { |poke, box|
if poke.species >= NB_POKEMON
pf = poke.species
pBody = (pf / prev_total).round
pHead = pf - (prev_total * pBody)
newSpecies = pBody * NB_POKEMON + pHead
poke.species = newSpecies
end
}
end

View File

@@ -0,0 +1,587 @@
def pbAddPokemonID(pokemon, level = nil, seeform = true, dontRandomize = false)
return if !pokemon || !$Trainer
dontRandomize = true if $game_switches[SWITCH_CHOOSING_STARTER] #when choosing starters
if pbBoxesFull?
Kernel.pbMessage(_INTL("There's no more room for Pokémon!\1"))
Kernel.pbMessage(_INTL("The Pokémon Boxes are full and can't accept any more!"))
return false
end
if pokemon.is_a?(Integer) && level.is_a?(Integer)
pokemon = Pokemon.new(pokemon, level, $Trainer)
end
#random species if randomized gift pokemon & wild poke
if $game_switches[SWITCH_RANDOM_GIFT_POKEMON] && $game_switches[SWITCH_RANDOM_WILD] && !dontRandomize
tryRandomizeGiftPokemon(pokemon, dontRandomize)
end
speciesname = PBSpecies.getName(pokemon.species)
Kernel.pbMessage(_INTL("{1} obtained {2}!\\se[itemlevel]\1", $Trainer.name, speciesname))
pbNicknameAndStore(pokemon)
pbSeenForm(pokemon) if seeform
return true
end
def pbAddPokemonID(pokemon_id, level = 1, see_form = true, skip_randomize = false)
return false if !pokemon_id
skip_randomize = true if $game_switches[SWITCH_CHOOSING_STARTER] #when choosing starters
if pbBoxesFull?
pbMessage(_INTL("There's no more room for Pokémon!\1"))
pbMessage(_INTL("The Pokémon Boxes are full and can't accept any more!"))
return false
end
if pokemon_id.is_a?(Integer) && level.is_a?(Integer)
pokemon = Pokemon.new(pokemon_id, level)
species_name = pokemon.speciesName
end
#random species if randomized gift pokemon & wild poke
if $game_switches[SWITCH_RANDOM_GIFT_POKEMON] && $game_switches[SWITCH_RANDOM_WILD] && !skip_randomize
tryRandomizeGiftPokemon(pokemon, skip_randomize)
end
pbMessage(_INTL("{1} obtained {2}!\\me[Pkmn get]\\wtnp[80]\1", $Trainer.name, species_name))
pbNicknameAndStore(pokemon)
$Trainer.pokedex.register(pokemon) if see_form
return true
end
def pbHasSpecies?(species)
if species.is_a?(String) || species.is_a?(Symbol)
id = getID(PBSpecies, species)
elsif species.is_a?(Pokemon)
id = species.dexNum
end
for pokemon in $Trainer.party
next if pokemon.isEgg?
return true if pokemon.dexNum == id
end
return false
end
#ancienne methode qui est encore callée un peu partout dans les vieux scripts
def getID(pbspecies_unused, species)
if species.is_a?(String)
return nil
elsif species.is_a?(Symbol)
return GameData::Species.get(species).id_number
elsif species.is_a?(Pokemon)
id = species.dexNum
end
end
#Check if the Pokemon can learn a TM
def CanLearnMove(pokemon, move)
species = getID(PBSpecies, pokemon)
return false if species <= 0
data = load_data("Data/tm.dat")
return false if !data[move]
return data[move].any? { |item| item == species }
end
def pbPokemonIconFile(pokemon)
bitmapFileName = pbCheckPokemonIconFiles(pokemon.species, pokemon.isEgg?)
return bitmapFileName
end
def pbCheckPokemonIconFiles(speciesID, egg = false, dna = false)
if egg
bitmapFileName = sprintf("Graphics/Icons/iconEgg")
return pbResolveBitmap(bitmapFileName)
else
bitmapFileName = _INTL("Graphics/Pokemon/Icons/{1}", speciesID)
ret = pbResolveBitmap(bitmapFileName)
return ret if ret
end
ret = pbResolveBitmap("Graphics/Icons/iconDNA.png")
return ret if ret
return pbResolveBitmap("Graphics/Icons/iconDNA.png")
end
def getPokemon(dexNum)
if dexNum.is_a?(Integer)
if dexNum > NB_POKEMON
body_id = getBodyID(dexNum)
head_id = getHeadID(dexNum, body_id)
pokemon_id = getFusedPokemonIdFromDexNum(body_id, head_id)
else
pokemon_id = dexNum
end
else
pokemon_id = dexNum
end
return GameData::Species.get(pokemon_id)
end
def getSpecies(dexnum)
return getPokemon(dexnum.species) if dexnum.is_a?(Pokemon)
return getPokemon(dexnum)
end
def getAbilityIndexFromID(abilityID, fusedPokemon)
abilityList = fusedPokemon.getAbilityList
for abilityArray in abilityList #ex: [:CHLOROPHYLL, 0]
ability = abilityArray[0]
index = abilityArray[1]
return index if ability == abilityID
end
return 0
end
# dir_path = Settings::CUSTOM_BATTLERS_FOLDER_INDEXED
# indexFolders = Dir.entries(dir_path).select do |entry|
# entry_number = entry.to_i
# File.directory?(File.join(dir_path, entry)) && entry_number.between?(1, NB_POKEMON)
# end
# return nil if indexFolders.empty?
# # Loop until a non-empty folder is found
# selectedIndex = nil
# spritesList = []
# until selectedIndex && !spritesList.empty?
# selectedIndex = indexFolders.sample
# spritesList = Dir.entries(File.join(dir_path, selectedIndex)).select do |file|
# File.file?(File.join(dir_path, selectedIndex, file))
# end
# end
# selectedSprite = spritesList.sample
# return getPokemonSpeciesFromSprite(selectedSprite)
#end
def addShinyStarsToGraphicsArray(imageArray, xPos, yPos, shinyBody, shinyHead, debugShiny, srcx = nil, srcy = nil, width = nil, height = nil,
showSecondStarUnder = false, showSecondStarAbove = false)
color = debugShiny ? Color.new(0, 0, 0, 255) : nil
imageArray.push(["Graphics/Pictures/shiny", xPos, yPos, srcx, srcy, width, height, color])
if shinyBody && shinyHead
if showSecondStarUnder
yPos += 15
elsif showSecondStarAbove
yPos -= 15
else
xPos -= 15
end
imageArray.push(["Graphics/Pictures/shiny", xPos, yPos, srcx, srcy, width, height, color])
end
# if onlyOutline
# imageArray.push(["Graphics/Pictures/shiny_black",xPos,yPos,srcx,srcy,width,height,color])
# end
end
# def getRandomCustomFusion(returnRandomPokemonIfNoneFound = true, customPokeList = [], maxPoke = -1, recursionLimit = 3, maxBST = 300)
# if customPokeList.length == 0
# customPokeList = getCustomSpeciesList()
# end
# randPoke = []
# if customPokeList.length >= 5000
# chosen = false
# i = 0 #loop pas plus que 3 fois pour pas lag
# while chosen == false
# fusedPoke = customPokeList[rand(customPokeList.length)]
# if (i >= recursionLimit) || maxPoke == -1
# return fusedPoke
# end
# end
# else
# if returnRandomPokemonIfNoneFound
# return rand(maxPoke) + 1
# end
# end
#
# return randPoke
# end
def getAllNonLegendaryPokemon()
list = []
for i in 1..143
list.push(i)
end
for i in 147..149
list.push(i)
end
for i in 152..242
list.push(i)
end
list.push(246)
list.push(247)
list.push(248)
for i in 252..314
list.push(i)
end
for i in 316..339
list.push(i)
end
for i in 352..377
list.push(i)
end
for i in 382..420
list.push(i)
end
return list
end
def getPokemonEggGroups(species)
return GameData::Species.get(species).egg_groups
end
def generateEggGroupTeam(eggGroup)
teamComplete = false
generatedTeam = []
while !teamComplete
species = rand(PBSpecies.maxValue)
if getPokemonEggGroups(species).include?(eggGroup)
generatedTeam << species
end
teamComplete = generatedTeam.length == 3
end
return generatedTeam
end
def pbGetSelfSwitch(eventId, switch)
return $game_self_switches[[@map_id, eventId, switch]]
end
def getAllNonLegendaryPokemon()
list = []
for i in 1..143
list.push(i)
end
for i in 147..149
list.push(i)
end
for i in 152..242
list.push(i)
end
list.push(246)
list.push(247)
list.push(248)
for i in 252..314
list.push(i)
end
for i in 316..339
list.push(i)
end
for i in 352..377
list.push(i)
end
for i in 382..420
list.push(i)
end
return list
end
def generateSimpleTrainerParty(teamSpecies, level)
team = []
for species in teamSpecies
poke = Pokemon.new(species, level)
team << poke
end
return team
end
def isInKantoGeneration(dexNumber)
return dexNumber <= 151
end
def isKantoPokemon(species)
dexNum = getDexNumberForSpecies(species)
poke = getPokemon(species)
head_dex = getDexNumberForSpecies(poke.get_head_species())
body_dex = getDexNumberForSpecies(poke.get_body_species())
return isInKantoGeneration(dexNum) || isInKantoGeneration(head_dex) || isInKantoGeneration(body_dex)
end
def isInJohtoGeneration(dexNumber)
return dexNumber > 151 && dexNumber <= 251
end
def isJohtoPokemon(species)
dexNum = getDexNumberForSpecies(species)
poke = getPokemon(species)
head_dex = getDexNumberForSpecies(poke.get_head_species())
body_dex = getDexNumberForSpecies(poke.get_body_species())
return isInJohtoGeneration(dexNum) || isInJohtoGeneration(head_dex) || isInJohtoGeneration(body_dex)
end
def isAlolaPokemon(species)
dexNum = getDexNumberForSpecies(species)
poke = getPokemon(species)
head_dex = getDexNumberForSpecies(poke.get_head_species())
body_dex = getDexNumberForSpecies(poke.get_body_species())
list = [
370, 373, 430, 431, 432, 433, 450, 451, 452,
453, 454, 455, 459, 460, 463, 464, 465, 469, 470,
471, 472, 473, 474, 475, 476, 477, 498, 499,
]
return list.include?(dexNum) || list.include?(head_dex) || list.include?(body_dex)
end
def isKalosPokemon(species)
dexNum = getDexNumberForSpecies(species)
poke = getPokemon(species)
head_dex = getDexNumberForSpecies(poke.get_head_species())
body_dex = getDexNumberForSpecies(poke.get_body_species())
list =
[327, 328, 329, 339, 371, 372, 417, 418,
425, 426, 438, 439, 440, 441, 444, 445, 446,
456, 461, 462, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487,
489, 490, 491, 492, 500,
]
return list.include?(dexNum) || list.include?(head_dex) || list.include?(body_dex)
end
def isUnovaPokemon(species)
dexNum = getDexNumberForSpecies(species)
poke = getPokemon(species)
head_dex = getDexNumberForSpecies(poke.get_head_species())
body_dex = getDexNumberForSpecies(poke.get_body_species())
list =
[
330, 331, 337, 338, 348, 349, 350, 351, 359, 360, 361,
362, 363, 364, 365, 366, 367, 368, 369, 374, 375, 376, 377,
397, 398, 399, 406, 407, 408, 409, 410, 411, 412, 413, 414,
415, 416, 419, 420,
422, 423, 424, 434, 345,
466, 467, 494, 493,
]
return list.include?(dexNum) || list.include?(head_dex) || list.include?(body_dex)
end
def isSinnohPokemon(species)
dexNum = getDexNumberForSpecies(species)
poke = getPokemon(species)
head_dex = getDexNumberForSpecies(poke.get_head_species())
body_dex = getDexNumberForSpecies(poke.get_body_species())
list =
[254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265,
266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 288, 294,
295, 296, 297, 298, 299, 305, 306, 307, 308, 315, 316, 317,
318, 319, 320, 321, 322, 323, 324, 326, 332, 343, 344, 345,
346, 347, 352, 353, 354, 358, 383, 384, 388, 389, 400, 402,
403, 429, 468]
return list.include?(dexNum) || list.include?(head_dex) || list.include?(body_dex)
end
def isHoennPokemon(species)
dexNum = getDexNumberForSpecies(species)
poke = getPokemon(species)
head_dex = getDexNumberForSpecies(poke.get_head_species())
body_dex = getDexNumberForSpecies(poke.get_body_species())
list = [252, 253, 276, 277, 278, 279, 280, 281, 282, 283, 284,
285, 286, 287, 289, 290, 291, 292, 293, 300, 301, 302, 303,
304, 309, 310, 311, 312, 313, 314, 333, 334, 335, 336, 340,
341, 342, 355, 356, 357, 378, 379, 380, 381, 382, 385, 386,
387, 390, 391, 392, 393, 394, 395, 396, 401, 404, 405, 421,
427, 428, 436, 437, 442, 443, 447, 448, 449, 457, 458, 488,
495, 496, 497, 501, 502, 503, 504, 505, 506, 507, 508, 509,
510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521,
522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533,
534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545,
546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557,
558, 559, 560, 561, 562, 563, 564, 565
]
return list.include?(dexNum) || list.include?(head_dex) || list.include?(body_dex)
end
def pbBitmap(path)
if !pbResolveBitmap(path).nil?
bmp = RPG::Cache.load_bitmap_path(path)
bmp.storedPath = path
else
p "Image located at '#{path}' was not found!" if $DEBUG
bmp = Bitmap.new(1, 1)
end
return bmp
end
def reverseFusionSpecies(species)
dexId = getDexNumberForSpecies(species)
return species if dexId <= NB_POKEMON
return species if dexId > (NB_POKEMON * NB_POKEMON) + NB_POKEMON
body = getBasePokemonID(dexId, true)
head = getBasePokemonID(dexId, false)
newspecies = (head) * NB_POKEMON + body
return getPokemon(newspecies)
end
def Kernel.getRoamingMap(roamingArrayPos)
curmap = $PokemonGlobal.roamPosition[roamingArrayPos]
mapinfos = $RPGVX ? load_data("Data/MapInfos.rvdata") : load_data("Data/MapInfos.rxdata")
text = mapinfos[curmap].name #,(curmap==$game_map.map_id) ? _INTL("(this map)") : "")
return text
end
def Kernel.getItemNamesAsString(list)
strList = ""
for i in 0..list.length - 1
id = list[i]
name = PBItems.getName(id)
strList += name
if i != list.length - 1 && list.length > 1
strList += ","
end
end
return strList
end
def get_default_moves_at_level(species, level)
moveset = GameData::Species.get(species).moves
knowable_moves = []
moveset.each { |m| knowable_moves.push(m[1]) if m[0] <= level }
# Remove duplicates (retaining the latest copy of each move)
knowable_moves = knowable_moves.reverse
knowable_moves |= []
knowable_moves = knowable_moves.reverse
# Add all moves
moves = []
first_move_index = knowable_moves.length - MAX_MOVES
first_move_index = 0 if first_move_index < 0
for i in first_move_index...knowable_moves.length
#moves.push(Pokemon::Move.new(knowable_moves[i]))
moves << knowable_moves[i]
end
return moves
end
def find_newer_available_version
latest_Version = fetch_latest_game_version
return nil if !latest_Version
return nil if is_higher_version(Settings::GAME_VERSION_NUMBER, latest_Version)
return latest_Version
end
def is_higher_version(gameVersion, latestVersion)
gameVersion_parts = gameVersion.split('.').map(&:to_i)
latestVersion_parts = latestVersion.split('.').map(&:to_i)
# Compare each part of the version numbers from left to right
gameVersion_parts.each_with_index do |part, i|
return true if (latestVersion_parts[i].nil? || part > latestVersion_parts[i])
return false if part < latestVersion_parts[i]
end
return latestVersion_parts.length <= gameVersion_parts.length
end
def get_current_game_difficulty
return :EASY if $game_switches[SWITCH_GAME_DIFFICULTY_EASY]
return :HARD if $game_switches[SWITCH_GAME_DIFFICULTY_HARD]
return :NORMAL
end
def get_difficulty_text
if $game_switches[SWITCH_GAME_DIFFICULTY_EASY]
return "Easy"
elsif $game_switches[SWITCH_GAME_DIFFICULTY_HARD]
return "Hard"
else
return "Normal"
end
end
def getCurrentLevelCap()
current_max_level = Settings::LEVEL_CAPS[$Trainer.badge_count]
current_max_level *= Settings::HARD_MODE_LEVEL_MODIFIER if $game_switches[SWITCH_GAME_DIFFICULTY_HARD]
return current_max_level
end
def pokemonExceedsLevelCap(pokemon)
return false if $Trainer.badge_count >= Settings::NB_BADGES
current_max_level = getCurrentLevelCap()
return pokemon.level >= current_max_level
end
def listPokemonIDs()
for id in 0..NB_POKEMON
pokemon = GameData::Species.get(id).species
echoln id.to_s + ": " + "\"" + pokemon.to_s + "\"" + ", "
end
end
def getLatestSpritepackDate()
return Time.new(Settings::NEWEST_SPRITEPACK_YEAR, Settings::NEWEST_SPRITEPACK_MONTH)
end
def new_spritepack_was_released()
current_spritepack_date = $PokemonGlobal.current_spritepack_date
latest_spritepack_date = getLatestSpritepackDate()
if !current_spritepack_date || (current_spritepack_date < latest_spritepack_date)
$PokemonGlobal.current_spritepack_date = latest_spritepack_date
return true
end
return false
end
def splitSpriteCredits(name, bitmap, max_width)
name_full_width = bitmap.text_size(name).width
# use original name if can fit on one line
return [ name ] if name_full_width <= max_width
temp_string = name
name_split = []
# split name by collab separator " & " nearest to max width
start_pos = temp_string.index(' & ')
temp_pos = nil
while start_pos && (bitmap.text_size(temp_string).width > max_width)
substring_width = bitmap.text_size(temp_string[0, start_pos]).width
if substring_width > max_width
name_split << temp_string[0, temp_pos].strip
temp_string = temp_string[(temp_pos + 1)..].strip
start_pos = temp_string.index(' & ')
temp_pos = nil
next
end
temp_pos = start_pos
start_pos = temp_string.index(' & ', start_pos + 1)
end
# append remainder of " & " split if within max width
if temp_pos != nil
name_split << temp_string[0, temp_pos].strip
temp_string = temp_string[(temp_pos + 1)..].strip
end
# split remaining string by space
temp_pos = nil
if (bitmap.text_size(temp_string).width > max_width) && (start_pos = temp_string.index(' '))
while start_pos && (bitmap.text_size(temp_string).width > max_width)
substring_width = bitmap.text_size(temp_string[0, start_pos]).width
if substring_width > max_width
name_split << temp_string[0, temp_pos].strip
temp_string = temp_string[(temp_pos + 1)..].strip
start_pos = temp_string.index(' ')
temp_pos = nil
next
end
temp_pos = start_pos
start_pos = temp_string.index(' ', start_pos + 1)
end
end
# append remaining text, even if too long for screen
name_split << temp_string if temp_string != ''
return name_split
end
def get_spritecharacter_for_event(event_id)
for sprite in $scene.spriteset.character_sprites
if sprite.character.id == event_id
return sprite
end
end
end

View File

@@ -0,0 +1,309 @@
class FusionQuiz
#
# Possible difficulties:
#
# :REGULAR -> 4 options choice
#
# :ADVANCED -> List of all pokemon
#
def initialize(difficulty = :REGULAR)
@sprites = {}
@previewwindow = nil
@difficulty = difficulty
@customs_list = getCustomSpeciesList(true, false)
@selected_pokemon = nil
@head_id = nil
@body_id = nil
@choices = []
@abandonned = false
@score = 0
@current_streak = 0
@streak_multiplier = 0.15
end
def start_quiz(nb_rounds = 3)
nb_games_played= pbGet(VAR_STAT_FUSION_QUIZ_NB_TIMES)
pbSet(VAR_STAT_FUSION_QUIZ_NB_TIMES,nb_games_played+1)
round_multiplier = 1
round_multiplier_increase = 0.1
for i in 1..nb_rounds
if i == nb_rounds
pbMessage(_INTL("Get ready! Here comes the final round!"))
elsif i == 1
pbMessage(_INTL("Get ready! Here comes the first round!"))
else
pbMessage(_INTL("Get ready! Here comes round {1}!", i))
end
start_quiz_new_round(round_multiplier)
rounds_left = nb_rounds - i
if rounds_left > 0
pbMessage(_INTL("That's it for round {1}. You've cumulated {2} points so far.", i, @score))
prompt_next_round = pbMessage(_INTL("Are you ready to move on to the next round?", i), ["Yes", "No"])
if prompt_next_round != 0
prompt_quit = pbMessage(_INTL("You still have {1} rounds to go. You'll only keep your points if you finish all {2} rounds. Do you really want to quit now?", rounds_left, nb_rounds), ["Yes", "No"])
if prompt_quit
@abandonned = true
break
end
end
round_multiplier += round_multiplier_increase
else
pbMessage(_INTL("This concludes our quiz! You've cumulated {1} points in total.", @score))
pbMessage("Thanks for playing with us today!")
end
end
end_quiz()
end
def end_quiz()
hide_fusion_picture
Kernel.pbClearText()
previous_highest = pbGet(VAR_STAT_FUSION_QUIZ_HIGHEST_SCORE)
pbSet(VAR_STAT_FUSION_QUIZ_HIGHEST_SCORE,@score) if @score > previous_highest
previous_total = pbGet(VAR_STAT_FUSION_QUIZ_TOTAL_PTS)
pbSet(VAR_STAT_FUSION_QUIZ_TOTAL_PTS,previous_total+@score)
dispose
end
def start_quiz_new_round(round_multiplier = 1)
if @difficulty == :ADVANCED
base_points_q1 = 500
base_points_q1_redemption = 200
base_points_q2 = 600
base_points_q2_redemption = 200
perfect_round_points = 100
else
base_points_q1 = 300
base_points_q1_redemption = 100
base_points_q2 = 400
base_points_q2_redemption = 100
perfect_round_points = 50
end
pick_random_pokemon()
show_fusion_picture(true)
correct_answers = []
#OBSCURED
correct_answers << new_question(calculate_points_awarded(base_points_q1, round_multiplier), "Which Pokémon is this fusion's body?", @body_id, true, true)
pbMessage("Next question!")
correct_answers << new_question(calculate_points_awarded(base_points_q2, round_multiplier), "Which Pokémon is this fusion's head?", @head_id, true, true)
#NON-OBSCURED
if !correct_answers[0] || !correct_answers[1]
show_fusion_picture(false)
pbMessage("Okay, now's your chance to make up for the points you missed!")
if !correct_answers[0] #1st question redemption
new_question(calculate_points_awarded(base_points_q1_redemption, round_multiplier), "Which Pokémon is this fusion's body?", @body_id, true, false)
if !correct_answers[1]
pbMessage("Next question!")
end
end
if !correct_answers[1] #2nd question redemption
new_question(calculate_points_awarded(base_points_q2_redemption, round_multiplier), "Which Pokémon is this fusion's head?", @head_id, true, false)
end
else
pbSEPlay("Applause", 80)
pbMessage(_INTL("Wow! A perfect round! You get {1} more points!", perfect_round_points))
show_fusion_picture(false, 100)
pbMessage("Let's see what this Pokémon looked like!")
end
current_streak_dialog()
hide_fusion_picture()
end
def calculate_points_awarded(base_points, round_multiplier)
points = base_points * round_multiplier
if @current_streak > 0
current_streak_multiplier = (@current_streak * @streak_multiplier) - @streak_multiplier
points += points * current_streak_multiplier
#p (base_points * round_multiplier)
#p (points * current_streak_multiplier)
end
return points
end
def new_question(points_value, question, answer_id, should_generate_new_choices, other_chance_later)
points_value = points_value.to_i
answer_name = getPokemon(answer_id).real_name
answered_correctly = give_answer(question, answer_id, should_generate_new_choices)
award_points(points_value) if answered_correctly
question_answer_followup_dialog(answered_correctly, answer_name, points_value, other_chance_later)
return answered_correctly
end
def increase_streak
@current_streak += 1
refresh_streak_ui()
end
def break_streak
@current_streak = 0
refresh_streak_ui()
end
def refresh_streak_ui()
shadow_color = Color.new(160,160,160)
base_color_low_streak = Color.new(72,72,72)
base_color_medium_streak = Color.new(213,254,205)
base_color_high_streak = Color.new(100,232,96)
streak_color= base_color_low_streak
streak_color = base_color_medium_streak if @current_streak >= 2
streak_color = base_color_high_streak if @current_streak >= 4
message = _INTL("Streak: {1}",@current_streak)
Kernel.pbClearText()
Kernel.pbDisplayText(message,420,340,nil,streak_color)
end
def award_points(nb_points)
@score += nb_points
end
def question_answer_followup_dialog(answered_correctly, correct_answer, points_awarded_if_win, other_chance_later = false)
if !other_chance_later
pbMessage("And the correct answer was...")
pbMessage("...")
pbMessage(_INTL("{1}!", correct_answer))
end
if answered_correctly
pbSEPlay("itemlevel", 80)
increase_streak
pbMessage("That's a correct answer!")
pbMessage(_INTL("You're awarded {1} points for your answer. Your current score is {2}", points_awarded_if_win, @score.to_s))
else
pbSEPlay("buzzer", 80)
break_streak
pbMessage("Unfortunately, that was a wrong answer.")
pbMessage("But you'll get another chance at it!") if other_chance_later
end
end
def current_streak_dialog()
return if @current_streak ==0
streak_base_worth= @difficulty == :REGULAR ? 25 : 100
if @current_streak % 4 == 0
extra_points = (@current_streak/4)*streak_base_worth
if @current_streak >= 8
pbMessage(_INTL("That's {1} correct answers in a row. You're on a roll!", @current_streak))
else
pbMessage(_INTL("That's {1} correct answers in a row. You're doing great!", @current_streak))
end
pbMessage(_INTL("Here's {1} extra points for maintaining a streak!",extra_points))
award_points(extra_points)
end
end
def show_fusion_picture(obscured = false, x = nil, y = nil)
hide_fusion_picture()
spriteLoader = BattleSpriteLoader.new
bitmap = spriteLoader.load_fusion_sprite(@head_id, @body_id)
bitmap.scale_bitmap(Settings::FRONTSPRITE_SCALE)
@previewwindow = PictureWindow.new(bitmap)
@previewwindow.y = y ? y : 30
@previewwindow.x = x ? x : (@difficulty == :ADVANCED ? 275 : 100)
@previewwindow.z = 100000
if obscured
@previewwindow.picture.pbSetColor(255, 255, 255, 200)
end
end
def hide_fusion_picture()
@previewwindow.dispose if @previewwindow
end
def pick_random_pokemon(save_in_variable = 1)
random_pokemon = getRandomCustomFusion(true, @customs_list)
@head_id = random_pokemon[0]
@body_id = random_pokemon[1]
@selected_pokemon = getSpeciesIdForFusion(@head_id, @body_id)
pbSet(save_in_variable, @selected_pokemon)
end
def give_answer(prompt_message, answer_id, should_generate_new_choices)
question_answered = false
answer_pokemon_name = getPokemon(answer_id).real_name
while !question_answered
if @difficulty == :ADVANCED
player_answer = prompt_pick_answer_advanced(prompt_message, answer_id)
else
player_answer = prompt_pick_answer_regular(prompt_message, answer_id, should_generate_new_choices)
end
confirmed = pbMessage("Is this your final answer?", ["Yes", "No"])
if confirmed == 0
question_answered = true
else
should_generate_new_choices = false
end
end
return player_answer == answer_pokemon_name
end
def get_random_pokemon_from_same_egg_group(pokemon, previous_choices)
egg_groups = getPokemonEggGroups(pokemon)
while true
new_pokemon = rand(1, NB_POKEMON) + 1
new_pokemon_egg_groups = getPokemonEggGroups(new_pokemon)
if (egg_groups & new_pokemon_egg_groups).any? && !previous_choices.include?(new_pokemon)
return new_pokemon
end
end
end
def prompt_pick_answer_regular(prompt_message, real_answer, should_new_choices)
commands = should_new_choices ? generate_new_choices(real_answer) : @choices.shuffle
chosen = pbMessage(prompt_message, commands)
return commands[chosen]
end
def generate_new_choices(real_answer)
choices = []
choices << real_answer
choices << get_random_pokemon_from_same_egg_group(real_answer, choices)
choices << get_random_pokemon_from_same_egg_group(real_answer, choices)
choices << get_random_pokemon_from_same_egg_group(real_answer, choices)
commands = []
choices.each do |dex_num, i|
species = getPokemon(dex_num)
commands.push(species.real_name)
end
@choices = commands
return commands.shuffle
end
def prompt_pick_answer_advanced(prompt_message, answer)
commands = []
for dex_num in 1..NB_POKEMON
species = getPokemon(dex_num)
commands.push([dex_num - 1, species.real_name, species.real_name])
end
pbMessage(prompt_message)
return pbChooseList(commands, 0, nil, 1)
end
def get_score
return @score
end
def player_abandonned
return @abandonned
end
def dispose
@previewwindow.dispose
end
end

View File

@@ -0,0 +1,47 @@
HIDDEN_MAPS_STEPS = 1500
HIDDEN_MAP_ALWAYS = [178,655,570,356]
RANDOM_HIDDEN_MAP_LIST = [8,109,431,446,402,403,467,468,10,23,167,16,19,78,185,86,
491,90,40,342,490,102,103,104,105,106,1,12,413,445,484,485,486,140,350,146,
149,304,356,307,409,351,495,154,349,322,323,544,198,144,155,444,58,59,229,52,53,54,
55,98,173,174,181,187,95,159,162,437,440,438,57,171,528,265,288,364,329,
335,254,261,262,266,230,145,147,258,284,283,267,586,285,286,287,300,311,47,580,529,
635,638,646,560,559,526,600,564,594,566,562,619,563,603,561,597,633,640,641,621,312,
670,692,643,523,698,
602,642,623,569,588,573,362,645,651,376,762
]
Events.onMapUpdate+=proc {|sender,e|
#next if !$game_switches[HIDDENMAPSWITCH]
if $PokemonGlobal.stepcount % HIDDEN_MAPS_STEPS == 0
changeHiddenMap()
end
}
def changeHiddenMap()
i = rand(RANDOM_HIDDEN_MAP_LIST.length-1)
pbSet(VAR_CURRENT_HIDDEN_MAP,RANDOM_HIDDEN_MAP_LIST[i])
end
Events.onWildPokemonCreate+=proc {|sender,e|
if player_on_hidden_ability_map || isAlwaysHiddenAbilityMap($game_map.map_id)
pokemon=e[0]
chosenAbility = pokemon.getAbilityList.sample #format: [[:ABILITY, index],...]
pokemon.ability = chosenAbility[0]
pokemon.ability_index = chosenAbility[1]
end
}
def isAlwaysHiddenAbilityMap(mapId)
return HIDDEN_MAP_ALWAYS.include? mapId
end
def player_on_hidden_ability_map
return $game_map.map_id== pbGet(226)
end
def Kernel.getMapName(id)
mapinfos = pbLoadMapInfos
return "Unknown location" if !mapinfos[id]
return mapinfos[id].name
end

View File

@@ -0,0 +1,440 @@
def test_http_get
url = "http://localhost:8080"
response = HTTPLite.get(url)
if response[:status] == 200
p response[:body]
end
end
def updateHttpSettingsFile
return if !downloadAllowed?()
echoln "UPDATING SETTINGS"
download_file(Settings::HTTP_CONFIGS_FILE_URL, Settings::HTTP_CONFIGS_FILE_PATH,)
end
def updateCreditsFile
return if !downloadAllowed?()
download_file(Settings::CREDITS_FILE_URL, Settings::CREDITS_FILE_PATH,)
end
def updateCustomDexFile
return if !downloadAllowed?()
download_file(Settings::CUSTOM_DEX_FILE_URL, Settings::CUSTOM_DEX_ENTRIES_PATH,)
end
def createCustomSpriteFolders()
if !Dir.exist?(Settings::CUSTOM_BATTLERS_FOLDER)
Dir.mkdir(Settings::CUSTOM_BATTLERS_FOLDER)
end
if !Dir.exist?(Settings::CUSTOM_BATTLERS_FOLDER_INDEXED)
Dir.mkdir(Settings::CUSTOM_BATTLERS_FOLDER_INDEXED)
end
end
def download_file(url, saveLocation)
echoln url
begin
response = HTTPLite.get(url)
if response[:status] == 200
File.open(saveLocation, "wb") do |file|
file.write(response[:body])
end
echoln _INTL("\nDownloaded file {1} to {2}", url, saveLocation)
return saveLocation
else
echoln _INTL("Failed to download file {1}", url)
end
return nil
rescue MKXPError, Errno::ENOENT => error
echo error
return nil
end
end
#Returns:
# A file was downloaded ->true
# A file was not downloaded -> false
# #
#TODO:
# This method bypasses the client-side rate limiting
# MAKE SURE TO ALWAYS CHECK requestRateExceeded? BEFORE CALLING THIS METHOD
# #
def fetch_sprite_from_web(url, destinationPath)
return false if !downloadAllowed?()
begin
response = HTTPLite.get(url)
if response[:status] == 200
File.open(destinationPath, "wb") do |file|
file.write(response[:body])
end
echoln "Downloaded #{url} to #{destinationPath}"
return true
end
echoln "Failed to download #{url}"
return false
rescue MKXPError => e
echoln "MKXPError: #{e.message}"
return false
rescue Errno::ENOENT => e
echoln "File Error: #{e.message}"
return false
rescue Exception => e
echoln "Error: #{e.message}"
end
end
def download_spritesheet(pif_sprite, dest)
return nil if requestRateExceeded?(Settings::CUSTOMSPRITES_RATE_LOG_FILE,Settings::CUSTOMSPRITES_ENTRIES_RATE_TIME_WINDOW,Settings::CUSTOMSPRITES_RATE_MAX_NB_REQUESTS)
case pif_sprite.type
when :AUTOGEN
return
when :CUSTOM
url = Settings::CUSTOM_FUSIONS_SPRITESHEET_TRUE_SIZE_URL + "#{pif_sprite.head_id}/#{pif_sprite.head_id}#{pif_sprite.alt_letter}.png"
when :BASE
url = Settings::BASE_POKEMON_SPRITESHEET_TRUE_SIZE_URL + "#{pif_sprite.head_id}.png"
end
folder = File.dirname(dest)
ensure_folder_exists(folder)
fetchedFromWeb = fetch_sprite_from_web(url, dest)
return fetchedFromWeb
end
def ensure_folder_exists(folder)
# Recursively create directories if they don't exist
unless Dir.exist?(folder)
parent = File.dirname(folder)
ensure_folder_exists(parent) unless Dir.exist?(parent)
Dir.mkdir(folder)
end
end
#Returns: The local path of the downloaded sprite
# def download_sprite(base_path, head_id, body_id, saveLocation = "Graphics/temp", alt_letter = "")
# return nil if requestRateExceeded?(Settings::CUSTOMSPRITES_RATE_LOG_FILE,Settings::CUSTOMSPRITES_ENTRIES_RATE_TIME_WINDOW,Settings::CUSTOMSPRITES_RATE_MAX_NB_REQUESTS)
# filename = "#{head_id}.#{body_id}#{alt_letter}.png"
# filename = "#{head_id}#{alt_letter}.png" if !body_id #unfused
#
# #check if it's in the Custom sprites list if it's a fusion
# if head_id && body_id
# return nil if !custom_exists(filename)
# end
#
# begin
# head_id = head_id.to_s
# body_id = body_id.to_s
#
# downloaded_file_name = _INTL("{1}/{2}.{3}{4}.png", saveLocation, head_id, body_id, alt_letter)
# if !body_id || body_id == ""
# downloaded_file_name = _INTL("{1}{2}{3}.png", saveLocation, head_id, alt_letter)
# end
#
# return downloaded_file_name if pbResolveBitmap(downloaded_file_name)
#
# url = _INTL(base_path, head_id, body_id)
# if !body_id
# url = _INTL(base_path, head_id)
# end
# if fetch_sprite_from_web(url,downloaded_file_name)
# return downloaded_file_name
# end
# return nil
# rescue MKXPError => e
# echoln "MKXPError: #{e.message}"
# return nil
# rescue Errno::ENOENT => e
# echoln "File Error: #{e.message}"
# return nil
# end
# end
def custom_exists(target_file)
file_path = Settings::CUSTOM_SPRITES_FILE_PATH
# Read the file and store its lines in an array, removing newlines
file_list = File.readlines(file_path, chomp: true)
# Perform binary search
low = 0
high = file_list.length - 1
while low <= high
mid = (low + high) / 2
case file_list[mid] <=> target_file
when 0
return true # Found the target file
when -1
low = mid + 1 # Target is in the upper half
when 1
high = mid - 1 # Target is in the lower half
end
end
return false # Target file not found
end
#
# Autogens are no longer downloaded from the web. Instead, the game comes with spritesheets, from which
# it extracts the sprites and puts them in individual files (for faster loading)
#
def download_autogen_sprite(head_id, body_id)
#return nil if !downloadAllowed?()
#template_url = Settings::AUTOGEN_SPRITES_REPO_URL + "{1}/{1}.{2}.png"
destPath = _INTL("{1}{2}", Settings::BATTLERS_FOLDER, head_id)
autogenExtracter = AutogenExtracter.new
return autogenExtracter.extract_bitmap_to_file(PIFSprite.new(:AUTOGEN, head_id, body_id), destPath)
# url = _INTL(template_url, head_id, body_id)
# sprite = download_sprite(url, head_id, body_id, destPath)
# return sprite if sprite
# return nil
end
def download_custom_sprite(head_id, body_id, alt_letter = "")
return nil unless downloadAllowed?()
#url = getDownloadableCustomSpritesUrl() + "{1}.{2}{3}.png"
destPath = _INTL("{1}{2}", Settings::CUSTOM_BATTLERS_FOLDER_INDEXED, head_id)
spriteExtracter = CustomSpriteExtracter.new
sprite_path = spriteExtracter.extract_bitmap_to_file(head_id, body_id, alt_letter, destPath)
echoln sprite_path
return sprite_path
# if !Dir.exist?(destPath)
# Dir.mkdir(destPath)
# end
# sprite = download_sprite(_INTL(url, head_id, body_id,alt_letter), head_id, body_id, destPath, alt_letter)
# return sprite if sprite
# return nil
end
# def download_custom_sprite(head_id, body_id, spriteformBody_suffix = "", spriteformHead_suffix = "", alt_letter="")
# head_id = (head_id.to_s) + spriteformHead_suffix.to_s
# body_id = (body_id.to_s) + spriteformBody_suffix.to_s
# return nil if !downloadAllowed?()
# url = getDownloadableCustomSpritesUrl() + "{1}.{2}{3}.png"
# destPath = _INTL("{1}{2}", Settings::CUSTOM_BATTLERS_FOLDER_INDEXED, head_id)
# if !Dir.exist?(destPath)
# Dir.mkdir(destPath)
# end
# sprite = download_sprite(_INTL(url, head_id, body_id,alt_letter), head_id, body_id, destPath, alt_letter)
# return sprite if sprite
# return nil
# end
# def download_custom_sprite_filename(filename)
# head_id = (head_id.to_s) + spriteformHead_suffix.to_s
# body_id = (body_id.to_s) + spriteformBody_suffix.to_s
# return nil if !downloadAllowed?()
# url = getDownloadableCustomSpritesUrl() + "{1}.{2}{3}.png"
# destPath = _INTL("{1}{2}", Settings::CUSTOM_BATTLERS_FOLDER_INDEXED, head_id)
# if !Dir.exist?(destPath)
# Dir.mkdir(destPath)
# end
# sprite = download_sprite(_INTL(url, head_id, body_id,alt_letter), head_id, body_id, destPath, alt_letter)
# return sprite if sprite
# return nil
# end
# #todo refactor & put custom base sprites in same folder as fusion sprites
# def download_unfused_main_sprite(dex_num, alt_letter="")
# base_url = alt_letter == "" ? Settings::BASE_POKEMON_SPRITES_REPO_URL : getDownloadableBaseSpritesUrl()
# filename = _INTL("{1}{2}.png",dex_num,alt_letter)
# url = base_url + filename
#
# echoln url
# destPath = Settings::CUSTOM_BASE_SPRITES_FOLDER
# sprite = download_sprite(url, dex_num, nil, destPath,alt_letter)
#
# return sprite if sprite
# return nil
# end
# def download_all_unfused_alt_sprites(dex_num)
# base_url = getDownloadableBaseSpritesUrl() + "{1}"
# extension = ".png"
# destPath = _INTL("{1}", Settings::CUSTOM_BASE_SPRITES_FOLDER)
# if !Dir.exist?(destPath)
# Dir.mkdir(destPath)
# end
# alt_url = _INTL(base_url, dex_num) + extension
# download_sprite(alt_url, dex_num, nil, destPath)
# alphabet = ('a'..'z').to_a + ('aa'..'az').to_a
# alphabet.each do |letter|
# alt_url = _INTL(base_url, dex_num) + letter + extension
# sprite = download_sprite(alt_url, dex_num, nil, destPath, letter)
# return if !sprite
# end
# end
# def download_all_unfused_alt_sprites(dex_num)
# template_url = getDownloadableBaseSpritesUrl()
# baseUrl = _INTL(template_url,dex_num)
# destDirectory = _INTL("{1}", Settings::CUSTOM_BASE_SPRITES_FOLDER)
# if !Dir.exist?(destDirectory)
# Dir.mkdir(destDirectory)
# end
# sprites_alt_map = map_alt_sprite_letters_for_pokemon(dex_num.to_s)
# # Sorting the sprite keys by their status in order of priority: "main", "temp", "alt"
# sprite_letters_to_download = sprites_alt_map.keys.sort_by do |key|
# case sprites_alt_map[key]
# when "main" then 0
# when "temp" then 1
# when "alt" then 2
# else 3 # Catch-all for any undefined statuses, if any
# end
# end
#
# nb_sprites_downloaded = 0
# sprites_processed=0
#
# sprite_letters_to_download.each do |letter|
# sprites_processed+=1
# echoln sprites_processed
# echoln nb_sprites_downloaded
#
# break if nb_sprites_downloaded > Settings::MAX_NB_SPRITES_TO_DOWNLOAD_AT_ONCE
#
# filename = "#{dex_num}#{letter}.png"
# url = baseUrl + filename
# destPath = destDirectory + "/" + filename
# next if pbResolveBitmap(destPath)
# downloaded_new_sprite= fetch_sprite_from_web(url,destPath)
# if downloaded_new_sprite
# nb_sprites_downloaded += 1
# break if requestRateExceeded?(Settings::CUSTOMSPRITES_RATE_LOG_FILE,Settings::CUSTOMSPRITES_ENTRIES_RATE_TIME_WINDOW,Settings::CUSTOMSPRITES_RATE_MAX_NB_REQUESTS)
# end
#
# end
# end
# def download_all_alt_sprites(head_id, body_id)
# base_url = "#{getDownloadableCustomSpritesUrl()}{1}.{2}"
# extension = ".png"
# destPath = _INTL("{1}{2}", Settings::CUSTOM_BATTLERS_FOLDER_INDEXED, head_id)
# if !Dir.exist?(destPath)
# Dir.mkdir(destPath)
# end
# sprite_letters_to_download = list_all_sprites_letters_head_body(head_id,body_id)
# sprite_letters_to_download.each do |letter|
# alt_url = base_url + letter + extension
# download_sprite(alt_url, head_id, body_id, destPath, letter)
# end
# end
#format: [1.1.png, 1.2.png, etc.]
# https://api.github.com/repos/infinitefusion/contents/sprites/CustomBattlers
# repo = "Aegide/custom-fusion-sprites"
# folder = "CustomBattlers"
#
# def fetch_online_custom_sprites
# page_start =1
# page_end =2
#
# repo = "infinitefusion/sprites"
# folder = "CustomBattlers"
# api_url = "https://api.github.com/repos/#{repo}/contents/#{folder}"
#
# files = []
# page = page_start
#
# File.open(Settings::CUSTOM_SPRITES_FILE_PATH, "wb") do |csv|
# loop do
# break if page > page_end
# response = HTTPLite.get(api_url, {'page' => page.to_s})
# response_files = HTTPLite::JSON.parse(response[:body])
# break if response_files.empty?
# response_files.each do |file|
# csv << [file['name']].to_s
# csv << "\n"
# end
# page += 1
# end
# end
#
#
# write_custom_sprites_csv(files)
# end
# Too many file to get everything without getting
# rate limited by github, so instead we're getting the
# files list from a csv file that will be manually updated
# with each new spritepack
def updateOnlineCustomSpritesFile
return if !downloadAllowed?()
echoln "UPDATING CUSTOM SPRITE LISTS"
download_file(Settings::SPRITES_FILE_URL, Settings::CUSTOM_SPRITES_FILE_PATH)
download_file(Settings::BASE_SPRITES_FILE_URL, Settings::BASE_SPRITES_FILE_PATH)
end
def list_online_custom_sprites(updateList = false)
sprites_list = []
File.foreach(Settings::CUSTOM_SPRITES_FILE_PATH) do |line|
sprites_list << line
end
return sprites_list
end
GAME_VERSION_FORMAT_REGEX = /\A\d+(\.\d+)*\z/
def fetch_latest_game_version
begin
# download_file(Settings::VERSION_FILE_URL, Settings::VERSION_FILE_PATH)
# version_file = File.open(Settings::VERSION_FILE_PATH, "r")
# version = version_file.first
# version_file.close
version = Settings::LATEST_GAME_RELEASE
version_format_valid = version.match(GAME_VERSION_FORMAT_REGEX)
return version if version_format_valid
return nil
rescue MKXPError, Errno::ENOENT => error
echo error
return nil
end
end
# update_log_file: keep to true when trying to make an actual request
# set to false if just checking
def requestRateExceeded?(logFile, timeWindow, maxRequests, update_log_file = true)
# Read or initialize the request log
if File.exist?(logFile)
log_data = File.read(logFile).split("\n")
request_timestamps = log_data.map(&:to_i)
else
request_timestamps = []
end
current_time = Time.now.to_i
# Remove old timestamps that are outside the time window
request_timestamps.reject! { |timestamp| (current_time - timestamp) > timeWindow }
# Update the log with the current request
request_timestamps << current_time
# Write the updated log back to the file
if update_log_file
File.write(logFile, request_timestamps.join("\n"))
end
echoln "Rate limiting: Current: #{request_timestamps.size}, Max: #{maxRequests}"
rateLimitExceeded = request_timestamps.size > maxRequests
return rateLimitExceeded
end
# def getDownloadableCustomSpritesUrl()
# if Settings::USE_NEW_URL_FOR_CUSTOM_SPRITES
# return Settings::CUSTOM_SPRITES_NEW_URL
# end
# return Settings::CUSTOM_SPRITES_REPO_URL
# end
# def getDownloadableBaseSpritesUrl()
# if Settings::USE_NEW_URL_FOR_BASE_SPRITES
# return Settings::BASE_POKEMON_ALT_SPRITES_NEW_URL
# end
# return Settings::BASE_POKEMON_ALT_SPRITES_REPO_URL
# end

View File

@@ -0,0 +1,2 @@
# Improved shinies script by anthonygourmand
#

View File

@@ -0,0 +1,503 @@
SHINY_COLOR_OFFSETS = {
1 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#506428.#005a00", c6: "#a0d23c.#28aa14", c7: "#141414.#141414", c8: "#78aa32.#00821e", c9: "#beff78.#64dc3c", c10: "#144646.#32641e", c11: "#3c9696.#78a032", c12: "#82f0c8.#c8fa50", c13: "#327878.#508228", c14: "#64d2b4.#a0d246", c15: "#c8c8c8.#c8c8c8", c16: "#f01e3c.#dc463c", c17: "#aa0032.#be281e", c18: "#ff6e64.#ff6e64", c19: "#50501e.#005a00", c20: "#8c8246.#00821e", c21: "#a09650.#00821e", c22: "#28280a.#141414", c23: "#befa78.#64dc3c", c24: "#a0d246.#28aa14", c25: "#aadc46.#28aa14", c26: "#aa0a32.#be281e", c27: "#0a0a0a.#141414", c28: "#64dcb4.#a0d246", c29: "#1e5050.#32641e", c30: "#f0283c.#dc463c", c31: "#640a1e.#be281e", c32: "#aa1432.#be281e", c33: "#be281e.#be281e", c34: "#dc463c.#dc463c", c35: "#d2d2d2.#c8c8c8", c36: "#fafafa.#ffffff", c37: "#828282.#78a032", c38: "#a04614.#be281e", c39: "#6e3c0a.#005a00", c40: "#fa5032.#dc463c", c41: "#786e32.#005a00", c42: "#d2c83c.#28aa14", c43: "#fffa78.#64dc3c", c44: "#509678.#78a032", c45: "#0a8282.#508228", c46: "#c8c8d2.#c8c8c8", c47: "#f05a50.#ff6e64", c48: "#ffaac8.#c8c8c8", c49: "#ffe6aa.#c8c8c8", c50: "#fffaaa.#c8c8c8", c51: "#966ebe.#c8c8c8", c52: "#fad250.#64dc3c", c53: "#dcdc96.#64dc3c", c54: "#5096dc.#78a032", c55: "#b4dcff.#c8c8c8", c56: "#6eaa6e.#00821e", c57: "#fa6e50.#ff6e64", c58: "#1e3caa.#508228", c59: "#dc78dc.#c8c8c8", c60: "#f082dc.#c8c8c8", c61: "#d2e6ff.#ffffff", c62: "#3c6e6e.#508228", c63: "#fff0e6.#ffffff", c64: "#ff8c82.#ff6e64", c65: "#465a1e.#005a00", c66: "#78aa28.#00821e", c67: "#329696.#78a032", c68: "#f0f0f0.#ffffff", c69: "#e6e6e6.#ffffff" },
2 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#783228.#8c1e28", c6: "#d23c5a.#c88c14", c7: "#ffaaa0.#ffffa0", c8: "#ff7878.#ffd200", c9: "#141414.#141414", c10: "#14463c.#325a14", c11: "#78d278.#8cdc46", c12: "#327850.#328232", c13: "#64aa5a.#5aaa1e", c14: "#143c46.#3c641e", c15: "#82e6d2.#c8fa50", c16: "#5ac8be.#a0d246", c17: "#1e9682.#78a032", c18: "#5a4614.#8c1e28", c19: "#5a503c.#8c1e28", c20: "#d2b478.#ffffa0", c21: "#b4965a.#5aaa1e", c22: "#dcb478.#ffffa0", c23: "#5a3c0a.#8c1e28", c24: "#0a0a0a.#141414", c25: "#fad282.#ffffa0", c26: "#5a3c14.#8c1e28", c27: "#a08c78.#5aaa1e", c28: "#f0d2a0.#ffffa0", c29: "#8c1e0a.#8c1e28", c30: "#c8b478.#ffffa0", c31: "#ff965a.#ffd200", c32: "#e66446.#c88c14", c33: "#be3246.#c88c14", c34: "#fffafa.#ffffff", c35: "#dcd2dc.#ffffff", c36: "#fffaff.#ffffff", c37: "#c8b482.#ffffa0", c38: "#fafafa.#ffffff", c39: "#644678.#328232", c40: "#c8b4c8.#ffffa0", c41: "#8c785a.#5aaa1e", c42: "#dcc8dc.#ffffff", c43: "#be2846.#c88c14", c44: "#a0a0a0.#8cdc46", c45: "#786e5a.#5aaa1e", c46: "#968278.#5aaa1e", c47: "#aaa08c.#8cdc46", c48: "#8c788c.#5aaa1e", c49: "#6e5046.#8c1e28", c50: "#3c320a.#141414", c51: "#140a0a.#141414", c52: "#96283c.#8c1e28", c53: "#5a506e.#328232", c54: "#5a3c28.#8c1e28", c55: "#beb4c8.#ffffa0", c56: "#781e0a.#8c1e28", c57: "#823214.#8c1e28", c58: "#f09664.#ffd200", c59: "#dc6e50.#c88c14", c60: "#b44650.#c88c14", c61: "#aa8cb4.#ffffa0", c62: "#dc6446.#c88c14", c63: "#faf0fa.#ffffff" },
3 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#823200.#823200", c6: "#ffbebe.#ffffdc", c7: "#ff7878.#ffd200", c8: "#dcbe28.#c8a01e", c9: "#dc3c3c.#e68c00", c10: "#be6e32.#be6e32", c11: "#141414.#141414", c12: "#fff050.#fff050", c13: "#14503c.#3c5a1e", c14: "#5aa03c.#5aa03c", c15: "#14786e.#78a028", c16: "#82dc78.#82dc78", c17: "#5ad2c8.#c8f050", c18: "#1eb4a0.#a0d246", c19: "#d2be5a.#c8a01e", c20: "#b48c32.#be6e32", c21: "#ffffdc.#ffffff", c22: "#fffab4.#ffffdc", c23: "#f0e6a0.#ffffdc", c24: "#d2be46.#c8a01e", c25: "#f0e68c.#fff050", c26: "#288246.#78a028", c27: "#82c878.#82dc78", c28: "#144678.#78a028", c29: "#78a0ff.#c8f050", c30: "#3c78c8.#a0d246", c31: "#8cb4ff.#c8f050", c32: "#82d278.#82dc78", c33: "#32965a.#78a028", c34: "#0a0a0a.#141414", c35: "#0a3cc8.#78a028", c36: "#1e5096.#78a028", c37: "#f03c50.#e68c00", c38: "#46a0fa.#c8f050", c39: "#2878dc.#a0d246", c40: "#5aa0ff.#c8f050", c41: "#c8323c.#e68c00", c42: "#78b4ff.#c8f050", c43: "#468ce6.#c8f050", c44: "#c83c0a.#e68c00", c45: "#f04650.#e68c00", c46: "#c83246.#e68c00", c47: "#6ea064.#5aa03c", c48: "#f05a0a.#e68c00" },
4 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#dc503c.#f0a000", c6: "#8c2800.#964600", c7: "#ff963c.#ffdc28", c8: "#ffc864.#fffaa0", c9: "#141414.#141414", c10: "#0a3c8c.#143246", c11: "#148cb4.#3c8c96", c12: "#32aaf0.#96c8e6", c13: "#e63c00.#ff5a1e", c14: "#ffd20a.#ffdc14", c15: "#faa000.#ffb414", c16: "#e6aa5a.#e6c850", c17: "#ffd278.#fffa78", c18: "#b478be.#e6c850", c19: "#d2a0d2.#fffa78", c20: "#8c468c.#f0a000", c21: "#462846.#141414", c22: "#d296d2.#fffa78", c23: "#b478b4.#e6c850", c24: "#0a0a0a.#141414", c25: "#46283c.#141414", c26: "#643250.#964600", c27: "#f0dcb4.#fffa78", c28: "#3c140a.#141414", c29: "#d2aa64.#e6c850", c30: "#a0780a.#964600", c31: "#e6c878.#fffa78", c32: "#323232.#141414", c33: "#a0143c.#964600", c34: "#d2d2d2.#ffffff", c35: "#e65a78.#f0a000", c36: "#c8c8c8.#ffffff", c37: "#5a5a5a.#143246", c38: "#64460a.#964600", c39: "#c8aa64.#e6c850", c40: "#e6d278.#fffa78", c41: "#6e460a.#964600", c42: "#a05aa0.#f0a000", c43: "#b48c32.#e6c850", c44: "#1e1e1e.#141414", c45: "#508246.#143246", c46: "#8c7832.#f0a000", c47: "#6ed25a.#e6c850", c48: "#fff06e.#fffa78", c49: "#e6b43c.#e6c850", c50: "#d2b446.#e6c850", c51: "#82326e.#f0a000", c52: "#f0d25a.#fffaa0" },
5 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#c83c3c.#dca028", c6: "#961e14.#965000", c7: "#ff826e.#fff08c", c8: "#ff5046.#ffe600", c9: "#141414.#141414", c10: "#b4b4b4.#b4b4b4", c11: "#005aff.#287828", c12: "#ffdc28.#ffe632", c13: "#ffa000.#ffb414", c14: "#ff3c00.#ff641e", c15: "#e6c8aa.#fffaaa", c16: "#c8aa78.#faf082", c17: "#6e6e6e.#6e6e6e", c18: "#b48c5a.#f0dc5a", c19: "#823caa.#6e6e6e", c20: "#501e6e.#6e6e6e", c21: "#a05ac8.#b4b4b4", c22: "#8c3cb4.#6e6e6e", c23: "#c864fa.#b4b4b4", c24: "#b446e6.#b4b4b4", c25: "#8c643c.#6e6e6e", c26: "#fadca0.#fffaaa", c27: "#be8c64.#f0dc5a", c28: "#be78dc.#b4b4b4", c29: "#0a0a0a.#141414", c30: "#c8aa6e.#faf082", c31: "#1e1e32.#141414", c32: "#beaa64.#faf082", c33: "#ffdca0.#fffaaa", c34: "#c8a050.#f0dc5a", c35: "#a06e46.#f0dc5a", c36: "#f0c85a.#ffe632", c37: "#c89650.#f0dc5a", c38: "#aaaaa0.#b4b4b4", c39: "#8c6e3c.#6e6e6e", c40: "#fff0a0.#fffaaa", c41: "#501e64.#6e6e6e", c42: "#dcbe78.#faf082", c43: "#78463c.#965000", c44: "#8c8c8c.#6e6e6e", c45: "#a05abe.#b4b4b4", c46: "#aa825a.#f0dc5a", c47: "#b478dc.#b4b4b4", c48: "#8c6e46.#6e6e6e", c49: "#fff0aa.#fffaaa", c50: "#d2d2d2.#fffaaa", c51: "#8246aa.#6e6e6e", c52: "#50286e.#6e6e6e", c53: "#aa5ac8.#b4b4b4", c54: "#b48c64.#f0dc5a", c55: "#b464e6.#b4b4b4", c56: "#aae6d2.#b4b4b4", c57: "#aaaaaa.#b4b4b4", c58: "#dcb478.#faf082", c59: "#5a5a5a.#6e6e6e" },
6 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#0a4650.#500a3c", c6: "#1e6e96.#961e64", c7: "#284664.#284664", c8: "#326496.#326496", c9: "#32aae6.#32aae6", c10: "#823c0a.#3c3c3c", c11: "#c8501e.#4d4d4d", c12: "#c85046.#3c3c3c", c13: "#e64614.#e64614", c14: "#f0780a.#4d4d4d", c15: "#f08228.#737373", c16: "#f09632.#737373", c17: "#f09650.#3c3c3c", c18: "#f0b45a.#dcdcdc", c19: "#f0dc78.#e6e6e6", c20: "#f0dc78.#fffac8", c21: "#faaa14.#faaa14", c22: "#ffa632.#ffa632", c23: "#ffd214.#ffd214", c24: "#ffdc0a.#ffdc0a", c25: "#14506e.#500a3c", c26: "#2896b4.#b4286e", c27: "#833118.#3c3c3c", c28: "#6e96a0.#78a0aa", c29: "#f0be96.#e6e6e6", c30: "#d2643c.#323232", c31: "#5a3c1e.#323232" },
7 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5aa0a0.#78a0e6", c6: "#287882.#3c6482", c7: "#b4e6f0.#e6faff", c8: "#8cc8c8.#b4c8ff", c9: "#822800.#823c00", c10: "#141414.#141414", c11: "#d2c8c8.#d2c8c8", c12: "#c87828.#c88c1e", c13: "#e6aa5a.#e6be50", c14: "#ffd26e.#ffe664", c15: "#642800.#145a14", c16: "#ffe6a0.#fffa96", c17: "#be6e00.#5aaa28", c18: "#d29650.#a0dc78", c19: "#825a14.#823c00", c20: "#fffa14.#ffe664", c21: "#dca014.#c88c1e", c22: "#f0c80a.#e6be50", c23: "#f0d20a.#e6be50", c24: "#0a0a0a.#141414", c25: "#fffa78.#ffe664", c26: "#e6dc5a.#ffe664", c27: "#ffffa0.#fffa96", c28: "#825a0a.#823c00", c29: "#fffa0a.#ffe664", c30: "#a0280a.#823c00", c31: "#506428.#145a14", c32: "#a0d246.#a0dc78", c33: "#dc3c0a.#5aaa28", c34: "#78aa32.#c88c1e", c35: "#c8781e.#c88c1e", c36: "#a01e0a.#823c00", c37: "#dc320a.#5aaa28", c38: "#aadc5a.#e6be50", c39: "#5a823c.#3c6482", c40: "#78aa28.#c88c1e" },
8 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#8caafa.#b4b4fa", c6: "#141414.#141414", c7: "#6478c8.#8c78be", c8: "#bec8e6.#b4dcbe", c9: "#283c6e.#645096", c10: "#d2f0fa.#d2fac8", c11: "#aac8ff.#dcdcff", c12: "#6e4614.#3c5a14", c13: "#966464.#5a8c14", c14: "#aa8c64.#dca03c", c15: "#323c46.#3c3c50", c16: "#dcc88c.#fad278", c17: "#8c5a1e.#a0641e", c18: "#96aabe.#b4b4fa", c19: "#e6ffff.#ffffff", c20: "#ffbea0.#fad278", c21: "#aa3214.#a0641e", c22: "#ff8c64.#fad278", c23: "#fa5a50.#dca03c", c24: "#64280a.#3c5a14", c25: "#6e7882.#5a8c14", c26: "#c8d2f0.#b4dcbe", c27: "#3c5a28.#3c3c50", c28: "#e6ffc8.#d2fac8", c29: "#464650.#3c3c50", c30: "#96283c.#a0641e", c31: "#b4f078.#fad278", c32: "#ff7850.#dca03c", c33: "#78a046.#dca03c", c34: "#dc3c3c.#5a8c14", c35: "#78320a.#3c5a14", c36: "#78d25a.#dca03c", c37: "#281e28.#141414", c38: "#ff5050.#dca03c", c39: "#ff8c6e.#fad278", c40: "#c83c3c.#a0641e", c41: "#ffe6dc.#ffffff", c42: "#64a032.#a0641e", c43: "#d2fa82.#fad278", c44: "#aad250.#dca03c", c45: "#323232.#3c3c50", c46: "#8c1e0a.#3c5a14", c47: "#50b432.#a0641e", c48: "#8ce65a.#dca03c", c49: "#326e0a.#3c5a14" },
9 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#0a3c64.#785096", c6: "#1e64aa.#a078be", c7: "#464646.#464646", c8: "#5a8cc8.#d2b4fa", c9: "#96aae6.#f0dcff", c10: "#c8c8d2.#c8c8d2", c11: "#141414.#000000", c12: "#969696.#969696", c13: "#5a3c14.#1e5a14", c14: "#8c643c.#78963c", c15: "#d2aa46.#beb45a", c16: "#fad2a0.#fad2a0", c17: "#e6c878.#e6c878", c18: "#0a5aa0.#a078be", c19: "#8cc8ff.#f0dcff", c20: "#46aafa.#d2b4fa", c21: "#643c6e.#464646", c22: "#0a0a0a.#000000", c23: "#d25ad2.#f0dcff", c24: "#3ca0e6.#d2b4fa", c25: "#144682.#785096", c26: "#143c78.#785096", c27: "#a0d2ff.#f0dcff", c28: "#f078e6.#c8c8d2", c29: "#78beff.#f0dcff", c30: "#3c78c8.#d2b4fa", c31: "#50a0e6.#d2b4fa", c32: "#50a0ff.#d2b4fa", c33: "#c83cc8.#969696", c34: "#b43c3c.#78963c", c35: "#ff6e78.#beb45a", c36: "#96c8ff.#f0dcff", c37: "#fafafa.#ffffff", c38: "#9664a0.#969696", c39: "#1e1e32.#000000", c40: "#f0f0f0.#ffffff", c41: "#4696e6.#d2b4fa", c42: "#0a3250.#785096", c43: "#a03ca0.#969696", c44: "#b4dcff.#c8c8d2", c45: "#d2e6fa.#c8c8d2", c46: "#781e6e.#464646", c47: "#e65aa0.#969696", c48: "#ffaac8.#fad2a0", c49: "#3c64aa.#a078be", c50: "#d2f0e6.#c8c8d2", c51: "#50d2f0.#d2b4fa", c52: "#323c6e.#785096", c53: "#2882b4.#a078be", c54: "#784646.#78963c", c55: "#325078.#785096", c56: "#6eaae6.#f0dcff", c57: "#5a8cd2.#d2b4fa", c58: "#b450b4.#969696", c59: "#a0d2fa.#f0dcff", c60: "#b41414.#78963c", c61: "#fa4646.#beb45a", c62: "#bedcfa.#c8c8d2", c63: "#3278c8.#a078be", c64: "#8c500a.#78963c", c65: "#64326e.#464646", c66: "#fa0a0a.#78963c", c67: "#820a0a.#1e5a14", c68: "#0a4682.#785096", c69: "#c80a0a.#78963c" },
10 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#783c46.#782814", c6: "#ffb43c.#ffa028", c7: "#ff3c3c.#e61400", c8: "#ff783c.#fa5014", c9: "#145a3c.#96501e", c10: "#000000.#000000", c11: "#6ed232.#ffe61e", c12: "#32aa3c.#f0aa28", c13: "#1e7846.#b47814", c14: "#46c828.#fac814", c15: "#aafa3c.#ffff3c", c16: "#faf08c.#faf078", c17: "#e6c896.#f0d282", c18: "#506446.#78643c", c19: "#788246.#aa823c", c20: "#3c5082.#78643c", c21: "#143c3c.#96501e", c22: "#82d2fa.#f0d282", c23: "#64a0be.#aa823c", c24: "#145a6e.#96501e", c25: "#3296a0.#b47814", c26: "#0a0a0a.#000000", c27: "#aae6ff.#f0d282", c28: "#fafafa.#faf078", c29: "#643c6e.#782814", c30: "#b43c3c.#782814", c31: "#ff6e78.#fa5014", c32: "#141414.#000000", c33: "#5082a0.#78643c", c34: "#6478a0.#aa823c", c35: "#6e5a8c.#782814", c36: "#82323c.#782814", c37: "#9678c8.#f0d282", c38: "#ffffff.#faf078", c39: "#821e1e.#782814", c40: "#822832.#782814", c41: "#ff788c.#fa5014", c42: "#14463c.#96501e", c43: "#aa3c46.#782814", c44: "#be646e.#fa5014", c45: "#8c1e1e.#782814", c46: "#826eaa.#aa823c", c47: "#ff5064.#e61400", c48: "#be3c5a.#e61400", c49: "#ff828c.#f0d282", c50: "#be505a.#e61400", c51: "#a03c46.#782814", c52: "#504664.#78643c", c53: "#8c78be.#aa823c", c54: "#a08cbe.#f0d282", c55: "#8cb4dc.#f0d282", c56: "#6ebee6.#f0d282", c57: "#14a0aa.#b47814", c58: "#963c3c.#782814", c59: "#641428.#782814", c60: "#64283c.#782814", c61: "#d25a5a.#e61400", c62: "#964650.#782814", c63: "#faaaaa.#f0d282", c64: "#96140a.#782814", c65: "#dc7878.#fa5014", c66: "#be3c14.#e61400", c67: "#a0dcf0.#f0d282", c68: "#14468c.#96501e", c69: "#82dcff.#f0d282", c70: "#46c8e6.#f0aa28", c71: "#283c64.#96501e", c72: "#aafaff.#f0d282", c73: "#4678c8.#78643c", c74: "#78aaff.#f0d282", c75: "#0a6e82.#b47814", c76: "#b4646e.#aa823c", c77: "#6496e6.#f0d282" },
11 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#466e50.#963c14", c6: "#b4e650.#ffaa78", c7: "#3c463c.#641400", c8: "#82c846.#ff783c", c9: "#6e8c5a.#c85a14", c10: "#000000.#000000", c11: "#6ea046.#e66e32", c12: "#784678.#963c14", c13: "#e6a0d2.#ffffff", c14: "#5a505a.#963c14", c15: "#f0bef0.#ffffff", c16: "#504650.#641400", c17: "#141414.#000000", c18: "#282828.#641400", c19: "#b478b4.#c85a14", c20: "#0a0a0a.#000000", c21: "#323c78.#641400", c22: "#4678b4.#963c14", c23: "#1e2832.#641400", c24: "#283246.#641400", c25: "#283232.#641400", c26: "#826e78.#c85a14", c27: "#e6aadc.#ffffff", c28: "#501e50.#641400", c29: "#c81e50.#c85a14", c30: "#463c46.#641400", c31: "#c86482.#c85a14", c32: "#8c1e50.#641400", c33: "#321428.#641400", c34: "#fafafa.#ffffff", c35: "#8264b4.#c85a14", c36: "#c8c8c8.#ffffff", c37: "#3c283c.#641400", c38: "#64505a.#963c14", c39: "#648cc8.#c85a14", c40: "#f0f0f0.#ffffff", c41: "#783cc8.#c85a14", c42: "#9664c8.#c85a14", c43: "#c82850.#c85a14", c44: "#8c2850.#641400", c45: "#463296.#963c14", c46: "#283c78.#641400", c47: "#502896.#641400", c48: "#c81450.#641400", c49: "#8c1450.#641400", c50: "#965a8c.#c85a14", c51: "#825082.#c85a14", c52: "#5a3c78.#963c14", c53: "#e6bee6.#ffffff", c54: "#c8a0be.#ffffff", c55: "#d2aadc.#ffffff", c56: "#b48cc8.#c85a14", c57: "#aa78aa.#c85a14", c58: "#966eaa.#c85a14", c59: "#3c4682.#963c14", c60: "#324678.#963c14", c61: "#fad2fa.#ffffff", c62: "#7846c8.#c85a14" },
12 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#000000.#000000", c6: "#5a4678.#5a4678", c7: "#7864aa.#7864aa", c8: "#323250.#323250", c9: "#f0f0ff.#fff0f0", c10: "#8282be.#8282be", c11: "#bebee6.#e6b4be", c12: "#64323c.#32643c", c13: "#dc3232.#1ed214", c14: "#e66482.#78f078", c15: "#ffa0b4.#a0ffa0", c16: "#5078c8.#dc5064", c17: "#6ebec8.#fa8c82", c18: "#a0a0b4.#be8c96", c19: "#0a0a0a.#000000", c20: "#3c3c50.#323250", c21: "#283246.#323250", c22: "#646478.#5a4678", c23: "#322828.#323250", c24: "#1e1e32.#323250", c25: "#141414.#000000", c26: "#b49628.#1ed214", c27: "#464650.#323250", c28: "#f0d250.#a0ffa0", c29: "#6e5a0a.#32643c", c30: "#50500a.#32643c", c31: "#ffff96.#a0ffa0", c32: "#d2a046.#78f078", c33: "#6e1e14.#32643c", c34: "#fff0dc.#fff0f0", c35: "#aa3c46.#1ed214", c36: "#fafafa.#fff0f0", c37: "#ffffff.#fff0f0", c38: "#3c3c3c.#323250", c39: "#fae68c.#a0ffa0", c40: "#c8c8c8.#e6b4be", c41: "#fa5a3c.#1ed214", c42: "#aa4646.#1ed214", c43: "#465a5a.#5a4678", c44: "#e6d250.#a0ffa0", c45: "#b48c28.#1ed214", c46: "#1e2846.#323250", c47: "#f0dc50.#a0ffa0", c48: "#b4961e.#1ed214", c49: "#641e14.#32643c", c50: "#fae6dc.#fff0f0", c51: "#c83c46.#1ed214", c52: "#6e140a.#32643c", c53: "#463c50.#323250", c54: "#b43c46.#1ed214", c55: "#282828.#323250", c56: "#282846.#323250", c57: "#1e1e3c.#323250", c58: "#465064.#5a4678", c59: "#5a6478.#5a4678", c60: "#bea046.#78f078", c61: "#78640a.#32643c", c62: "#fff064.#a0ffa0", c63: "#e6c814.#78f078", c64: "#6e1e0a.#32643c", c65: "#464664.#5a4678", c66: "#782828.#32643c", c67: "#c83c1e.#1ed214", c68: "#f06e50.#78f078", c69: "#d26464.#78f078" },
13 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#8c8c96.#8c8c96", c6: "#5a5a64.#5a5a64", c7: "#c8c8c8.#c8c8c8", c8: "#965a0a.#dc8c14", c9: "#f0aa3c.#fff000", c10: "#c87814.#ffb400", c11: "#6e3c0a.#be6e00", c12: "#ffe678.#ffffaa", c13: "#141414.#141414", c14: "#a0281e.#aa5078", c15: "#dc5a50.#e6a0aa", c16: "#f0a08c.#e6c8d2", c17: "#ffdcc8.#e6f0fa", c18: "#c85032.#e6a0aa", c19: "#ff8250.#fff000", c20: "#ffa0a0.#e6c8d2", c21: "#781414.#be6e00", c22: "#f0786e.#e6a0aa", c23: "#ffc8b4.#e6f0fa", c24: "#ffa096.#e6c8d2", c25: "#a01e14.#aa5078", c26: "#e64614.#ffb400", c27: "#e6d278.#ffffaa", c28: "#fffaa0.#ffffaa", c29: "#beb464.#fff000", c30: "#ffffa0.#ffffaa", c31: "#fafafa.#ffffff", c32: "#78d2ff.#c8c8c8", c33: "#5aa0be.#8c8c96", c34: "#c8fafa.#ffffff", c35: "#82781e.#dc8c14", c36: "#b43c50.#e6a0aa", c37: "#f0788c.#e6c8d2", c38: "#ffa0aa.#e6c8d2", c39: "#d25032.#e6a0aa", c40: "#ffd2b4.#e6f0fa", c41: "#ffc8d2.#e6f0fa", c42: "#d25028.#e6a0aa", c43: "#78140a.#be6e00", c44: "#0a0a0a.#141414", c45: "#a04664.#e6a0aa", c46: "#d28caa.#e6c8d2", c47: "#ffbedc.#e6f0fa", c48: "#dcd2dc.#c8c8c8", c49: "#a01e0a.#aa5078", c50: "#ffffb4.#e6f0fa", c51: "#beaa1e.#ffb400" },
14 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#c8a014.#82be28", c6: "#a07800.#508c00", c7: "#fac832.#aaff00", c8: "#fffac8.#d2ffa0", c9: "#785a00.#326e14", c10: "#463c00.#143c00", c11: "#3c3c3c.#3c3c3c", c12: "#6e6e6e.#6e6e6e", c13: "#141414.#141414", c14: "#323c64.#3c3c3c", c15: "#3c64a0.#6e6e6e", c16: "#28283c.#3c3c3c", c17: "#282846.#3c3c3c", c18: "#4664a0.#6e6e6e", c19: "#324664.#3c3c3c", c20: "#323c50.#3c3c3c", c21: "#0a0a0a.#141414", c22: "#283264.#3c3c3c", c23: "#1e1e28.#141414", c24: "#506ea0.#6e6e6e", c25: "#5a461e.#143c00", c26: "#283c64.#3c3c3c", c27: "#f0d282.#aaff00", c28: "#3c4678.#3c3c3c", c29: "#78283c.#3c3c3c", c30: "#b4a01e.#82be28", c31: "#d2be50.#aaff00", c32: "#d23c50.#508c00", c33: "#ffaa8c.#aaff00", c34: "#788cbe.#6e6e6e", c35: "#fafa50.#aaff00", c36: "#fafafa.#ffffff", c37: "#782832.#3c3c3c", c38: "#f0f050.#aaff00", c39: "#b4a028.#82be28", c40: "#5a5028.#3c3c3c", c41: "#dc4650.#82be28", c42: "#784614.#326e14", c43: "#ffdc32.#aaff00", c44: "#d2d228.#aaff00", c45: "#f03c3c.#82be28", c46: "#ffff50.#aaff00", c47: "#d2aa14.#82be28", c48: "#aa141e.#326e14", c49: "#8c1e32.#326e14", c50: "#8c8ca0.#6e6e6e", c51: "#d2d232.#aaff00", c52: "#d24650.#508c00" },
15 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#8c7896.#8c8296", c6: "#141414.#141414", c7: "#dcc8fa.#dcd2fa", c8: "#beaac8.#beb4c8", c9: "#f0e6ff.#f0f0ff", c10: "#505a78.#505a78", c11: "#824600.#3c7800", c12: "#b46414.#5aa000", c13: "#fffaa0.#e6ffbe", c14: "#ffc846.#bef000", c15: "#e6961e.#82c828", c16: "#a0000a.#141ea0", c17: "#d21432.#3264d2", c18: "#ff966e.#7896ff", c19: "#64646e.#505a78", c20: "#d2d2d2.#dcd2fa", c21: "#aaa0a0.#beb4c8", c22: "#646e64.#505a78", c23: "#dcdcc8.#dcd2fa", c24: "#b42814.#141ea0", c25: "#5a5a50.#505a78", c26: "#f0786e.#7896ff", c27: "#aaaaa0.#beb4c8", c28: "#c85050.#5aa000", c29: "#a01414.#141ea0", c30: "#e66e64.#7896ff", c31: "#fafafa.#ffffff", c32: "#f06464.#7896ff", c33: "#783232.#3c7800", c34: "#e66e78.#7896ff", c35: "#ffa096.#7896ff", c36: "#0a0a0a.#141414", c37: "#dcb432.#82c828", c38: "#aa6414.#5aa000", c39: "#ffff8c.#e6ffbe", c40: "#ffa078.#7896ff", c41: "#c84650.#3264d2", c42: "#ffa08c.#7896ff", c43: "#aa3c50.#3264d2", c44: "#ff9696.#7896ff", c45: "#825a1e.#3c7800", c46: "#c8a064.#7896ff", c47: "#c89628.#82c828", c48: "#825014.#3c7800", c49: "#f0d282.#e6ffbe", c50: "#ffe6a0.#e6ffbe", c51: "#e63c1e.#3264d2", c52: "#ff5a46.#7896ff", c53: "#e61e1e.#3264d2", c54: "#ff4646.#3264d2", c55: "#e6c864.#bef000", c56: "#b4b4aa.#beb4c8", c57: "#962814.#3c7800", c58: "#ff825a.#7896ff" },
16 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#784632.#645a00", c6: "#c8825a.#b4a014", c7: "#a0645a.#8c8c14", c8: "#fffabe.#f0fff0", c9: "#e6be64.#c8c814", c10: "#3c2814.#463c00", c11: "#be281e.#c87800", c12: "#141414.#141414", c13: "#ffaa78.#fff078", c14: "#f0643c.#ffc828", c15: "#fff0a0.#e6e682", c16: "#828282.#828282", c17: "#783228.#645a00", c18: "#d23c5a.#ffc828", c19: "#fafafa.#ffffff", c20: "#ffaaa0.#fff078", c21: "#82e6d2.#bebebe", c22: "#1e9682.#828282", c23: "#78281e.#645a00", c24: "#ff7878.#fff078", c25: "#d2465a.#ffc828", c26: "#327850.#645a00", c27: "#0a0a0a.#141414", c28: "#14463c.#463c00", c29: "#78d278.#828282", c30: "#64aa5a.#828282", c31: "#144646.#463c00", c32: "#0a5014.#141414", c33: "#148c32.#463c00", c34: "#64c864.#828282", c35: "#46a03c.#828282", c36: "#0a4646.#141414", c37: "#8cd2fa.#bebebe", c38: "#46b4c8.#828282", c39: "#143c46.#141414", c40: "#28828c.#828282", c41: "#be8c28.#b4a014", c42: "#5ac8be.#bebebe", c43: "#fab41e.#c8c814", c44: "#508c8c.#828282", c45: "#aaf0f0.#bebebe", c46: "#145a50.#463c00", c47: "#b4283c.#c87800", c48: "#c85078.#8c8c14", c49: "#642832.#645a00", c50: "#d2d2d2.#bebebe", c51: "#5ad2be.#bebebe", c52: "#e68caa.#fff078", c53: "#7882a0.#828282", c54: "#fae6fa.#ffffff", c55: "#d2dcdc.#bebebe", c56: "#782828.#645a00", c57: "#0a4632.#141414", c58: "#287850.#645a00", c59: "#0a3c46.#141414", c60: "#146e6e.#828282", c61: "#ff648c.#fff078", c62: "#282828.#463c00", c63: "#8c1e32.#645a00", c64: "#c8c8c8.#bebebe", c65: "#14501e.#463c00", c66: "#82e65a.#828282", c67: "#6eb41e.#8c8c14", c68: "#468c1e.#645a00", c69: "#3278a0.#828282", c70: "#64b4c8.#bebebe", c71: "#1e965a.#828282", c72: "#82f0c8.#bebebe", c73: "#5ac896.#828282" },
17 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#825032.#788232", c6: "#ffe68c.#faffaa", c7: "#aa785a.#96a050", c8: "#e6be5a.#dcdc96", c9: "#141414.#1e1e1e", c10: "#3c281e.#506414", c11: "#c83228.#f09600", c12: "#f0643c.#ffd200", c13: "#78321e.#be6400", c14: "#ffaa78.#ffffaa", c15: "#d2d2dc.#d2d2dc", c16: "#faa0f0.#ffff78", c17: "#dc78c8.#e6be00", c18: "#787882.#787882", c19: "#c88250.#96a050", c20: "#ffc8a0.#faffaa", c21: "#be8250.#96a050", c22: "#8c5014.#788232", c23: "#fac896.#faffaa", c24: "#965014.#788232", c25: "#a07828.#788232", c26: "#6e3c0a.#be6400", c27: "#ffd2a0.#faffaa", c28: "#a08232.#96a050", c29: "#dcb446.#dcdc96", c30: "#784614.#be6400", c31: "#f0c878.#dcdc96", c32: "#fafaa0.#faffaa", c33: "#c8963c.#96a050", c34: "#f0f0a0.#faffaa", c35: "#a06e28.#788232", c36: "#643c0a.#be6400", c37: "#be8c3c.#96a050", c38: "#825a28.#788232", c39: "#b4b4b4.#d2d2dc", c40: "#787878.#787882", c41: "#323232.#506414", c42: "#505050.#788232", c43: "#fafaf0.#ffffff", c44: "#aaaaaa.#d2d2dc", c45: "#e6c86e.#dcdc96", c46: "#6e6e6e.#787882", c47: "#faffff.#ffffff", c48: "#f0d278.#faffaa" },
18 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#785046.#8c640a", c6: "#ffe68c.#ffff78", c7: "#141414.#141414", c8: "#e6b464.#ffd250", c9: "#f0643c.#ffd200", c10: "#8c3c1e.#c86400", c11: "#d23214.#faa000", c12: "#aa785a.#b48214", c13: "#e6a0a0.#ffc85a", c14: "#5a3c28.#784600", c15: "#be7878.#c8963c", c16: "#c8b4c8.#c8b4c8", c17: "#781432.#c86400", c18: "#dc64a0.#c8963c", c19: "#a03c46.#8c640a", c20: "#324664.#784600", c21: "#14283c.#141414", c22: "#4682a0.#8c640a", c23: "#3c6482.#8c640a", c24: "#64143c.#784600", c25: "#0a0a0a.#141414", c26: "#dc3c82.#c8963c", c27: "#28466e.#784600", c28: "#a0285a.#8c640a", c29: "#141e32.#141414", c30: "#461428.#784600", c31: "#780a3c.#c86400", c32: "#c846a0.#c8963c", c33: "#1e3250.#141414", c34: "#b48c32.#b48214", c35: "#3c78a0.#8c640a", c36: "#825aa0.#c8963c", c37: "#e66eb4.#ffc85a", c38: "#0a466e.#141414", c39: "#e6dc64.#ffd250", c40: "#be9632.#b48214", c41: "#3c96b4.#8c640a", c42: "#f0e664.#ffff78", c43: "#64a0be.#c8b4c8", c44: "#1e1e1e.#141414", c45: "#be1e14.#faa000", c46: "#ffc80a.#ffd250", c47: "#ff5a28.#ffd200", c48: "#fffa50.#ffff78", c49: "#781e0a.#c86400", c50: "#c8b43c.#ffd250", c51: "#641446.#784600", c52: "#a04678.#c8963c", c53: "#6478aa.#c8963c", c54: "#142846.#141414", c55: "#464678.#8c640a", c56: "#dc78b4.#ffc85a", c57: "#dc4682.#c8963c" },
19 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#b478be.#c8c86e", c6: "#d2a0d2.#e6e68c", c7: "#8c468c.#968c3c", c8: "#46283c.#6e5a14", c9: "#141414.#141414", c10: "#a0780a.#a06e1e", c11: "#e6c878.#dcc882", c12: "#64460a.#5a3c1e", c13: "#f0dcb4.#e6d2c8", c14: "#a0143c.#3c50a0", c15: "#c8c8c8.#c8c8c8", c16: "#e65a78.#788cdc", c17: "#c8aa64.#c8a078", c18: "#5a5a5a.#5a5a5a", c19: "#505050.#5a5a5a", c20: "#a0a0a0.#c8c86e", c21: "#dcdcdc.#c8c8c8", c22: "#787878.#5a5a5a", c23: "#6e6e6e.#5a5a5a", c24: "#fafafa.#ffffff", c25: "#a0a0aa.#c8c86e", c26: "#faffff.#ffffff", c27: "#646464.#5a5a5a", c28: "#3c3c3c.#6e5a14", c29: "#d2d2d2.#c8c8c8", c30: "#8c8c8c.#c8c86e", c31: "#0a0a0a.#141414" },
20 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#c88250.#c88250", c6: "#ffc8a0.#ffc8a0", c7: "#965014.#965014", c8: "#a07828.#b45028", c9: "#dcb446.#f09646", c10: "#c8963c.#d2783c", c11: "#6e3c00.#781400", c12: "#141414.#141414", c13: "#fafaa0.#e6fabe", c14: "#825a28.#828232", c15: "#a08232.#a0aa3c", c16: "#f0c878.#d2e68c", c17: "#b4b4b4.#b4b4b4", c18: "#787878.#787878", c19: "#14506e.#141414", c20: "#1e82d2.#787878", c21: "#78c8fa.#b4b4b4", c22: "#1e508c.#787878", c23: "#3cb4f0.#b4b4b4", c24: "#78befa.#b4b4b4", c25: "#0a0a0a.#141414", c26: "#14508c.#787878", c27: "#a0dcff.#b4b4b4", c28: "#6ebefa.#b4b4b4", c29: "#50aaf0.#b4b4b4", c30: "#aae6fa.#b4b4b4", c31: "#505aaa.#787878", c32: "#0a468c.#787878", c33: "#0a50aa.#787878", c34: "#144664.#141414", c35: "#288ce6.#787878", c36: "#82d2ff.#b4b4b4", c37: "#328cdc.#787878", c38: "#0a465a.#141414", c39: "#1e1e1e.#141414", c40: "#82c8ff.#b4b4b4", c41: "#143c64.#141414", c42: "#3296f0.#787878", c43: "#fafafa.#ffffff", c44: "#505050.#828232", c45: "#0a323c.#141414", c46: "#3c3c82.#787878", c47: "#323232.#141414", c48: "#960a0a.#781400", c49: "#a03c3c.#965014", c50: "#0a5a6e.#141414", c51: "#0a285a.#141414", c52: "#dc460a.#965014", c53: "#1e6eaa.#787878", c54: "#a0140a.#965014", c55: "#ff820a.#d2783c", c56: "#781e28.#781400", c57: "#dc500a.#965014", c58: "#ff8c0a.#d2783c", c59: "#d26464.#c88250", c60: "#3c141e.#141414", c61: "#a0323c.#965014", c62: "#b43c46.#965014", c63: "#6e6e6e.#787878", c64: "#32323c.#141414", c65: "#464646.#828232", c66: "#1e1e28.#141414", c67: "#828282.#787878", c68: "#e6e6e6.#ffffff", c69: "#bebebe.#b4b4b4", c70: "#f0f0f0.#ffffff", c71: "#0a788c.#787878", c72: "#1e82c8.#787878", c73: "#82c8fa.#b4b4b4", c74: "#46aae6.#b4b4b4", c75: "#a0dcfa.#b4b4b4", c76: "#78bef0.#b4b4b4", c77: "#143ca0.#787878", c78: "#aae6ff.#ffffff", c79: "#be5050.#c88250", c80: "#c8c8c8.#b4b4b4", c81: "#faffff.#ffffff" },
21 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#c86e1e.#beaa1e", c6: "#a05014.#96a014", c7: "#6e3c14.#827814", c8: "#f0aa50.#e6f050", c9: "#000000.#000000", c10: "#e6d2b4.#e6dcb4", c11: "#aa3c46.#f0a000", c12: "#f05046.#ffd200", c13: "#ffd2c8.#ffffc8", c14: "#ffa08c.#fffa78", c15: "#782828.#be6e00", c16: "#463c3c.#645a46", c17: "#8c7864.#8c8264", c18: "#c8b4a0.#c8bea0", c19: "#3c4678.#645a46", c20: "#aab4d2.#c8bea0", c21: "#141414.#000000", c22: "#fafafa.#ffffff", c23: "#f0dc50.#e6f050", c24: "#967846.#8c8264", c25: "#c8a03c.#e6f050", c26: "#e6f0fa.#ffffff", c27: "#6e8cb4.#8c8264", c28: "#0a0a0a.#000000", c29: "#1e1414.#000000", c30: "#463232.#645a46", c31: "#a0783c.#8c8264", c32: "#b4d2e6.#e6dcb4", c33: "#503c28.#645a46", c34: "#c8a032.#e6f050", c35: "#a0325a.#f0a000", c36: "#645014.#827814", c37: "#d26e96.#fffa78", c38: "#a03c5a.#f0a000", c39: "#c86e96.#c8bea0", c40: "#e696b4.#c8bea0", c41: "#bea08c.#c8bea0", c42: "#96786e.#8c8264", c43: "#5078a0.#8c8264", c44: "#645050.#645a46", c45: "#dcaa28.#e6f050", c46: "#ffe614.#e6f050", c47: "#e68cb4.#fffa78", c48: "#faf082.#e6dcb4", c49: "#783c3c.#be6e00", c50: "#8c6428.#96a014", c51: "#322828.#645a46", c52: "#5a1e1e.#be6e00", c53: "#d2c83c.#e6f050", c54: "#aa966e.#8c8264", c55: "#96b4c8.#c8bea0", c56: "#f0c814.#e6f050", c57: "#786e50.#8c8264", c58: "#dc6478.#ffd200", c59: "#fa96a0.#fffa78", c60: "#be820a.#beaa1e", c61: "#8c785a.#8c8264", c62: "#464678.#645a46", c63: "#c8c8dc.#e6dcb4", c64: "#d2963c.#e6f050", c65: "#fac864.#e6f050", c66: "#dca03c.#e6f050", c67: "#a07846.#8c8264" },
22 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#8c5032.#8c8c32", c6: "#f0d2b4.#f0fac8", c7: "#643c1e.#643c1e", c8: "#d2a05a.#d2dc5a", c9: "#000000.#000000", c10: "#b4781e.#b4be1e", c11: "#781e1e.#8c3200", c12: "#e63c3c.#ffa000", c13: "#b41e1e.#d27800", c14: "#645a3c.#64643c", c15: "#e6d2b4.#e6dcb4", c16: "#ff826e.#fff03c", c17: "#aaa06e.#aaaa6e", c18: "#3c78a0.#64643c", c19: "#82d2d2.#e6dcb4", c20: "#284678.#64643c", c21: "#50aab4.#aaaa6e", c22: "#141414.#000000", c23: "#b4f0fa.#ffffff", c24: "#0a0a0a.#000000", c25: "#96280a.#8c3200", c26: "#c8c8c8.#e6dcb4", c27: "#3278a0.#64643c", c28: "#ff463c.#ffa000", c29: "#142850.#000000", c30: "#a0a0a0.#aaaa6e", c31: "#c8d2d2.#e6dcb4", c32: "#fafafa.#ffffff", c33: "#ff4632.#ffa000", c34: "#1e4664.#64643c", c35: "#3c82a0.#64643c", c36: "#78bea0.#aaaa6e", c37: "#a0e6c8.#e6dcb4" },
23 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#b47832.#b47832", c6: "#ffe6a0.#ffe6a0", c7: "#825014.#825014", c8: "#ffd26e.#ffd26e", c9: "#c864b4.#aaaa3c", c10: "#a0468c.#828c1e", c11: "#f0a0d2.#f0f0a0", c12: "#5a1446.#5a5a00", c13: "#e6aa5a.#e6aa5a", c14: "#141414.#141414", c15: "#a01400.#a01400", c16: "#c83c14.#c83c14", c17: "#fa7846.#fa7846", c18: "#78326e.#6e7814", c19: "#503c64.#6e7814", c20: "#8278a0.#828c1e", c21: "#0a0a0a.#141414", c22: "#fadcf0.#ffffff", c23: "#e6c8fa.#f0f0a0", c24: "#e6d2fa.#ffffff", c25: "#504664.#6e7814", c26: "#c8a0dc.#f0f0a0", c27: "#aa468c.#828c1e", c28: "#e6b4e6.#f0f0a0", c29: "#78285a.#6e7814", c30: "#c882be.#aaaa3c", c31: "#be283c.#c83c14", c32: "#821432.#5a5a00", c33: "#fa6478.#fa7846", c34: "#ffa0a0.#f0f0a0", c35: "#be2846.#c83c14", c36: "#d2b4f0.#f0f0a0", c37: "#beaac8.#f0f0a0", c38: "#ffbec8.#f0f0a0", c39: "#b496c8.#aaaa3c", c40: "#fa646e.#fa7846", c41: "#fafafa.#ffffff", c42: "#6e6e6e.#6e7814", c43: "#646464.#6e7814", c44: "#462878.#6e7814", c45: "#7846a0.#828c1e", c46: "#a082b4.#aaaa3c", c47: "#c8aad2.#f0f0a0", c48: "#e6d2dc.#f0f0a0", c49: "#820a28.#5a5a00" },
24 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#a082c8.#d2b41e", c6: "#503c78.#825a00", c7: "#7864aa.#a0781e", c8: "#c8a0f0.#dcdc5a", c9: "#141414.#141414", c10: "#c8c8c8.#c8c8c8", c11: "#a01400.#003296", c12: "#c83c14.#1464c8", c13: "#fa7846.#5aa0ff", c14: "#f0e650.#f0e650", c15: "#c8b428.#f0e650", c16: "#faf096.#f0e650", c17: "#f0d26e.#f0e650", c18: "#5a2850.#825a00", c19: "#dca0d2.#dcdc5a", c20: "#be78b4.#d2b41e", c21: "#96508c.#a0781e", c22: "#0a0a0a.#141414", c23: "#823c64.#825a00", c24: "#dcdcdc.#c8c8c8", c25: "#fafafa.#ffffff", c26: "#d23c1e.#1464c8", c27: "#ff6446.#5aa0ff", c28: "#d2c86e.#f0e650", c29: "#b4aa5a.#f0e650", c30: "#e6d264.#f0e650", c31: "#785aa0.#a0781e", c32: "#d2bef0.#dcdc5a", c33: "#aa96d2.#d2b41e", c34: "#46285a.#825a00", c35: "#c8bef0.#dcdc5a", c36: "#aa96c8.#d2b41e", c37: "#b45a78.#a0781e", c38: "#f0788c.#5aa0ff", c39: "#d2d2aa.#c8c8c8", c40: "#faf0d2.#ffffff", c41: "#a0a0b4.#d2b41e", c42: "#c8c8aa.#c8c8c8", c43: "#faf0c8.#ffffff", c44: "#d2d26e.#f0e650" },
25 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#000000.#000000", c6: "#282828.#282828", c7: "#64320a.#781400", c8: "#3c3c46.#50505a", c9: "#fabe1e.#ffa000", c10: "#a05000.#b43200", c11: "#fae650.#ffc832", c12: "#dc9600.#e68200", c13: "#fffaa0.#ffe682", c14: "#787882.#787882", c15: "#e65a3c.#e6643c", c16: "#c81e14.#c82814", c17: "#8296aa.#787882", c18: "#5a6478.#787882", c19: "#faffff.#ffffff", c20: "#d2e6fa.#ffffff", c21: "#be8c1e.#e68200", c22: "#fae678.#ffc832", c23: "#785a3c.#781400", c24: "#0a0a0a.#000000", c25: "#dcbe3c.#ffa000", c26: "#141414.#000000", c27: "#fffac8.#ffe682", c28: "#1e6e82.#50505a", c29: "#6ebec8.#787882", c30: "#328ca0.#787882", c31: "#785a46.#50505a", c32: "#bec8e6.#ffffff", c33: "#dce6fa.#ffffff", c34: "#bed2e6.#ffffff", c35: "#286e82.#50505a", c36: "#50bebe.#787882", c37: "#82dcdc.#ffffff", c38: "#461e32.#282828", c39: "#b46464.#e6643c", c40: "#14505a.#50505a", c41: "#faf0a0.#ffe682", c42: "#faf0b4.#ffe682", c43: "#46321e.#282828", c44: "#aa8c78.#787882", c45: "#ffc832.#ffa000", c46: "#826e46.#787882", c47: "#dcbe32.#ffa000", c48: "#82d2d2.#787882", c49: "#1e7896.#787882", c50: "#288ca0.#787882", c51: "#6ebed2.#787882", c52: "#a00a0a.#c82814", c53: "#960a0a.#c82814", c54: "#be461e.#c82814" },
26 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5a2828.#501414", c6: "#8c6414.#8c6414", c7: "#000000.#000000", c8: "#783c32.#783c32", c9: "#ffbe00.#bea05a", c10: "#963c3c.#96281e", c11: "#ffdc5a.#dcc882", c12: "#faaa28.#fa781e", c13: "#dc7832.#dc4632", c14: "#fff0d2.#ffe6d2", c15: "#be5a32.#be3c1e", c16: "#be140a.#be140a", c17: "#e6be82.#ffb478", c18: "#64646e.#64646e", c19: "#3c3c3c.#3c3c3c", c20: "#aa6496.#64646e", c21: "#e6a0c8.#ffb478", c22: "#643246.#783c32", c23: "#dc82b4.#ffb478", c24: "#141414.#000000", c25: "#6e3c96.#64646e", c26: "#d2b4ff.#ffe6d2", c27: "#a04682.#64646e", c28: "#fad2e6.#ffe6d2", c29: "#c864a0.#ffb478", c30: "#a078d2.#64646e", c31: "#502864.#3c3c3c", c32: "#bea0fa.#ffe6d2", c33: "#dc96c8.#ffb478", c34: "#465a78.#64646e", c35: "#ffffff.#ffe6d2", c36: "#aabec8.#ffb478", c37: "#be6e5a.#be3c1e", c38: "#ffa082.#ffb478", c39: "#284678.#3c3c3c", c40: "#5a5a5a.#64646e", c41: "#4678be.#64646e", c42: "#6ea0f0.#64646e", c43: "#c8c8d2.#ffe6d2", c44: "#1e3c78.#3c3c3c", c45: "#14508c.#64646e", c46: "#4696c8.#64646e", c47: "#3296be.#64646e", c48: "#a0aab4.#ffb478", c49: "#1e78a0.#64646e", c50: "#aa3232.#96281e", c51: "#dc5a64.#dc4632", c52: "#64c8f0.#ffe6d2", c53: "#d25a3c.#be3c1e", c54: "#f08296.#ffb478", c55: "#ff966e.#ffb478", c56: "#8c2832.#96281e", c57: "#c8788c.#ffb478", c58: "#825ab4.#64646e", c59: "#8c5078.#64646e", c60: "#5a3c50.#3c3c3c", c61: "#f0a0f0.#ffe6d2", c62: "#be78b4.#ffb478", c63: "#0a0a0a.#000000", c64: "#a05082.#64646e", c65: "#141e64.#3c3c3c", c66: "#3c3278.#3c3c3c", c67: "#a0a0fa.#ffe6d2", c68: "#7878be.#64646e", c69: "#fafafa.#ffe6d2", c70: "#1e3c5a.#3c3c3c", c71: "#6ea0c8.#64646e", c72: "#b4b4c8.#ffb478", c73: "#3264aa.#64646e", c74: "#f0f0f0.#ffe6d2", c75: "#aa463c.#96281e", c76: "#dcdcdc.#ffe6d2", c77: "#f06e6e.#dc4632", c78: "#82aad2.#64646e", c79: "#6450a0.#64646e" },
27 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#826414.#3c643c", c6: "#f0dc14.#aadc46", c7: "#c8beb4.#c8bebe", c8: "#784614.#324632", c9: "#141414.#141414", c10: "#c8b400.#8cb43c", c11: "#b48214.#6e8246", c12: "#f0f0dc.#e6f0e6", c13: "#143c78.#14325a", c14: "#2878c8.#326496", c15: "#e6d2c8.#dcd2c8", c16: "#828282.#828282", c17: "#bec8c8.#c8bebe", c18: "#dce6dc.#e6f0e6", c19: "#7896a0.#828282", c20: "#46648c.#14325a", c21: "#3c3c50.#14325a", c22: "#465a78.#14325a", c23: "#bed2c8.#c8bebe", c24: "#82a0aa.#828282", c25: "#0a0a0a.#141414", c26: "#ff0aff.#c8bebe", c27: "#d2503c.#6e8246", c28: "#1e1e32.#141414", c29: "#dcc8c8.#dcd2c8", c30: "#b43c28.#324632", c31: "#d25046.#6e8246", c32: "#323250.#14325a", c33: "#7882aa.#828282", c34: "#dcdce6.#e6f0e6", c35: "#b4bed2.#c8bebe", c36: "#fafafa.#ffffff" },
28 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#463c14.#463c14", c6: "#aa8232.#dc323c", c7: "#8c6414.#be0a1e", c8: "#141414.#141414", c9: "#5a4600.#5a4600", c10: "#fad21e.#d2c878", c11: "#d2aa1e.#aa9664", c12: "#967800.#827828", c13: "#dcd2b4.#dcc8be", c14: "#8c8c8c.#8c8c8c", c15: "#465a5a.#505050", c16: "#788282.#8c8c8c", c17: "#646e6e.#505050", c18: "#3c3c50.#505050", c19: "#aa323c.#be0a1e", c20: "#f06e78.#dc323c", c21: "#ffaab4.#dcc8be", c22: "#e6646e.#dc323c", c23: "#0a0a0a.#141414", c24: "#283c3c.#505050", c25: "#ffc8c8.#dcc8be", c26: "#aa283c.#be0a1e", c27: "#dcdcdc.#dcc8be", c28: "#fafafa.#ffffff", c29: "#8c283c.#be0a1e", c30: "#82280a.#5a4600", c31: "#a02828.#be0a1e", c32: "#5a82c8.#8c8c8c", c33: "#fa8228.#aa9664", c34: "#78aae6.#8c8c8c", c35: "#5a320a.#5a4600", c36: "#ffb450.#d2c878", c37: "#b4dcfa.#dcc8be", c38: "#143246.#141414", c39: "#4696dc.#8c8c8c", c40: "#ff8228.#aa9664", c41: "#be6e0a.#827828", c42: "#e6b4a0.#dcc8be", c43: "#3c8caa.#8c8c8c", c44: "#dcf0fa.#ffffff", c45: "#504614.#463c14", c46: "#ffc882.#dcc8be" },
29 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c3c82.#782882", c6: "#7882aa.#a06eaa", c7: "#d2d2ff.#e6bef0", c8: "#aaaac8.#be96c8", c9: "#f0f0ff.#f0dcff", c10: "#141414.#141414", c11: "#be3246.#be3246", c12: "#ff503c.#ff503c", c13: "#14a096.#789614", c14: "#3c6e96.#3c6400", c15: "#dcdcdc.#dcdcdc", c16: "#aa3c46.#be3246", c17: "#8c7864.#a06eaa", c18: "#f05046.#ff503c", c19: "#ffd2c8.#dcdcdc", c20: "#782828.#be3246", c21: "#46463c.#782882", c22: "#c8b4a0.#be96c8", c23: "#0a0a0a.#141414", c24: "#ffa08c.#be96c8", c25: "#aa4646.#be3246", c26: "#6e3c14.#be3246", c27: "#c86e1e.#ff503c", c28: "#a05014.#be3246", c29: "#f0aa50.#ff503c", c30: "#6e4614.#be3246", c31: "#5a2814.#141414", c32: "#8c3c1e.#be3246", c33: "#dc9664.#ff503c", c34: "#b45032.#be3246", c35: "#8c3250.#be3246", c36: "#c8465a.#be3246", c37: "#e69696.#be96c8", c38: "#e6c8c8.#dcdcdc", c39: "#e6d2b4.#dcdcdc", c40: "#463c3c.#782882", c41: "#6e3c46.#782882", c42: "#645a50.#782882", c43: "#ffd2d2.#dcdcdc", c44: "#b4a096.#be96c8", c45: "#f0f0e6.#f0dcff", c46: "#3c3228.#141414", c47: "#3c3c3c.#141414", c48: "#fafafa.#ffffff", c49: "#78645a.#782882", c50: "#645046.#782882", c51: "#e6b464.#ff503c", c52: "#96323c.#be3246" },
30 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5a96b4.#b46ea0", c6: "#c8e6f0.#f0dce6", c7: "#3c5a64.#64505a", c8: "#8cc8c8.#c896c8", c9: "#141414.#141414", c10: "#1464b4.#3c6e14", c11: "#143c78.#1e4600", c12: "#4682fa.#5a821e", c13: "#c81e14.#c81e14", c14: "#ffa08c.#ffa08c", c15: "#f0463c.#f0463c", c16: "#d2d2d2.#d2d2d2", c17: "#828282.#828282", c18: "#643c5a.#64505a", c19: "#d2aad2.#d2d2d2", c20: "#aa82aa.#828282", c21: "#8c5a82.#828282", c22: "#d2d2dc.#d2d2d2", c23: "#6e1e14.#c81e14", c24: "#c88cbe.#d2d2d2", c25: "#a05a82.#828282", c26: "#3c3c46.#64505a", c27: "#6e7878.#828282", c28: "#963c32.#c81e14", c29: "#a03c50.#c81e14", c30: "#ff7896.#ffa08c", c31: "#78325a.#64505a", c32: "#faa0d2.#d2d2d2", c33: "#d278a0.#ffa08c", c34: "#0a0a0a.#141414", c35: "#f0d2f0.#d2d2d2", c36: "#321e32.#141414", c37: "#643c78.#64505a", c38: "#783c5a.#64505a", c39: "#c8a0dc.#d2d2d2", c40: "#c896dc.#d2d2d2", c41: "#faa0c8.#ffa08c", c42: "#aa78b4.#828282", c43: "#9664a0.#828282", c44: "#c878a0.#ffa08c", c45: "#fafffa.#ffffff", c46: "#fafafa.#ffffff", c47: "#788282.#828282", c48: "#3c4650.#64505a", c49: "#e6c83c.#ffa08c", c50: "#823c0a.#c81e14", c51: "#a03250.#c81e14", c52: "#501414.#141414", c53: "#646e6e.#828282", c54: "#dcdcdc.#d2d2d2", c55: "#b4b4b4.#c896c8", c56: "#aa323c.#c81e14", c57: "#f06e78.#ffa08c" },
31 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#648caa.#6e7828", c6: "#324646.#3c4600", c7: "#5ab4c8.#82a03c", c8: "#a0d2dc.#c8dc78", c9: "#141414.#141414", c10: "#beaa5a.#e68296", c11: "#785a28.#be5a64", c12: "#d2d2d2.#d2d2d2", c13: "#e6c88c.#ffaab4", c14: "#f0e6a0.#fac8d2", c15: "#144650.#3c4600", c16: "#78aab4.#6e7828", c17: "#3c8296.#6e7828", c18: "#3c6464.#3c4600", c19: "#dcdc96.#ffaab4", c20: "#c8c878.#ffaab4", c21: "#3c6e78.#3c4600", c22: "#78aaf0.#82a03c", c23: "#a0aa6e.#e68296", c24: "#3c82c8.#6e7828", c25: "#1e5064.#3c4600", c26: "#14468c.#3c4600", c27: "#e6dc78.#ffaab4", c28: "#3c8c96.#6e7828", c29: "#c8c8c8.#d2d2d2", c30: "#468296.#6e7828", c31: "#3c6eaa.#6e7828", c32: "#1e7878.#3c4600", c33: "#960a0a.#be5a64", c34: "#ffa096.#ffaab4", c35: "#d25064.#e68296", c36: "#6e5032.#be5a64", c37: "#788250.#be5a64", c38: "#ffffbe.#fac8d2", c39: "#0a0a0a.#141414", c40: "#c8b450.#e68296", c41: "#fffa82.#fac8d2", c42: "#328c96.#6e7828", c43: "#faffff.#ffffff", c44: "#c8d2d2.#d2d2d2", c45: "#bec8c8.#d2d2d2", c46: "#6e6e46.#be5a64", c47: "#6e5028.#be5a64" },
32 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#643c6e.#465aa0", c6: "#be64c8.#96a0c8", c7: "#e6a0d2.#b4c8ff", c8: "#141414.#141414", c9: "#f0bef0.#d2e6ff", c10: "#00643c.#78321e", c11: "#00a078.#8c5a32", c12: "#14c8a0.#b4785a", c13: "#a046aa.#788cc8", c14: "#c8c8c8.#c8c8c8", c15: "#ff6e50.#ff6e50", c16: "#dc3c28.#dc3c28", c17: "#b41400.#b41400", c18: "#0a0a0a.#141414", c19: "#a02828.#b41400", c20: "#642828.#465aa0", c21: "#9696a0.#96a0c8", c22: "#3c3c46.#465aa0", c23: "#fa6e6e.#ff6e50", c24: "#d23c3c.#dc3c28", c25: "#b4b4c8.#c8c8c8", c26: "#641414.#141414", c27: "#5a5a64.#465aa0", c28: "#c8c8d2.#c8c8c8", c29: "#505050.#465aa0", c30: "#ff8264.#ff6e50", c31: "#78788c.#465aa0", c32: "#dcc814.#ff6e50", c33: "#bebedc.#c8c8c8", c34: "#a06e1e.#dc3c28", c35: "#c88c1e.#ff6e50", c36: "#e65050.#ff6e50", c37: "#dcc828.#ff6e50", c38: "#781e0a.#b41400", c39: "#783232.#465aa0", c40: "#f0be14.#ff6e50", c41: "#ffd214.#ff6e50", c42: "#fac814.#ff6e50", c43: "#b48c28.#dc3c28", c44: "#0a1414.#141414", c45: "#323246.#465aa0", c46: "#646478.#465aa0", c47: "#8c8ca0.#788cc8", c48: "#d23232.#dc3c28", c49: "#b4b4d2.#c8c8c8", c50: "#8c1414.#b41400", c51: "#fa463c.#dc3c28", c52: "#ff7878.#ff6e50", c53: "#be3214.#dc3c28", c54: "#dcc80a.#ff6e50", c55: "#d28c1e.#ff6e50" },
33 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5a3c64.#3c468c", c6: "#141414.#141414", c7: "#c882dc.#aab4fa", c8: "#965ab4.#8278be", c9: "#e6aaf0.#d2d2ff", c10: "#009664.#6e3c50", c11: "#46c8a0.#966478", c12: "#c8c8c8.#c8c8c8", c13: "#825a50.#966478", c14: "#b41400.#b41400", c15: "#dc3c28.#dc3c28", c16: "#828282.#828282", c17: "#be8c28.#dc3c28", c18: "#785014.#966478", c19: "#f0c846.#c8c8c8", c20: "#ffff5a.#c8c8c8", c21: "#785a14.#966478", c22: "#8c1e1e.#b41400", c23: "#f07878.#dc3c28", c24: "#b43228.#dc3c28", c25: "#6e643c.#966478", c26: "#e6463c.#dc3c28", c27: "#821e0a.#b41400", c28: "#d2c8b4.#c8c8c8", c29: "#beaa96.#c8c8c8", c30: "#968c78.#828282", c31: "#c83c32.#dc3c28", c32: "#fa8278.#dc3c28", c33: "#aa9678.#828282", c34: "#aa2828.#b41400", c35: "#beb41e.#966478", c36: "#fffad2.#ffffff", c37: "#787814.#966478", c38: "#fafa64.#c8c8c8", c39: "#0a0a0a.#141414", c40: "#e6dc50.#c8c8c8", c41: "#8c641e.#966478", c42: "#c83c14.#dc3c28", c43: "#e6a082.#c8c8c8", c44: "#fac8b4.#c8c8c8", c45: "#fa783c.#dc3c28", c46: "#a0280a.#b41400", c47: "#e6320a.#dc3c28", c48: "#640a0a.#141414", c49: "#fab4aa.#c8c8c8", c50: "#f08c64.#dc3c28" },
34 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5a286e.#1450a0", c6: "#dc96fa.#8cf0ff", c7: "#141414.#141414", c8: "#d278f0.#5abeff", c9: "#a05096.#3c8cc8", c10: "#287896.#96641e", c11: "#004664.#784600", c12: "#3c96c8.#be9646", c13: "#c8c8a0.#c8b4a0", c14: "#aa1400.#aa1400", c15: "#78785a.#78645a", c16: "#e63c32.#e63c32", c17: "#e6e6d2.#e6d2d2", c18: "#323c64.#1450a0", c19: "#6e96c8.#be9646", c20: "#bedcff.#e6d2d2", c21: "#0a0a0a.#141414", c22: "#3c6496.#96641e", c23: "#283264.#784600", c24: "#96beff.#8cf0ff", c25: "#3c6eaa.#96641e", c26: "#6ea0d2.#be9646", c27: "#0a3c78.#784600", c28: "#f0f0f0.#ffffff", c29: "#b4d2fa.#e6d2d2", c30: "#beaac8.#c8b4a0", c31: "#8c7896.#3c8cc8", c32: "#5a78a0.#96641e", c33: "#b4b4b4.#c8b4a0", c34: "#8cbeff.#8cf0ff", c35: "#a0a0a0.#c8b4a0", c36: "#f0dcf0.#e6d2d2", c37: "#646464.#78645a", c38: "#fafafa.#ffffff", c39: "#6e6e6e.#78645a", c40: "#6e5a1e.#78645a", c41: "#d2d2d2.#e6d2d2", c42: "#ffff8c.#e6d2d2", c43: "#bea032.#78645a", c44: "#bea028.#78645a", c45: "#96bef0.#8cf0ff", c46: "#8c6e0a.#78645a", c47: "#c8c8c8.#c8b4a0", c48: "#c8a028.#78645a", c49: "#ffdc5a.#c8b4a0", c50: "#be4678.#3c8cc8", c51: "#dcbec8.#e6d2d2", c52: "#466496.#96641e" },
35 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#a05050.#a03c3c", c6: "#e67878.#dc7878", c7: "#ffd2be.#ffdcdc", c8: "#78463c.#3cbe32", c9: "#5a321e.#28820a", c10: "#a08278.#64e63c", c11: "#141414.#141414", c12: "#ffaaaa.#faaaaa", c13: "#969696.#969696", c14: "#f03c3c.#f03c3c", c15: "#b43c28.#b43c28", c16: "#466e50.#3cbe32", c17: "#3c463c.#28820a", c18: "#82c846.#64e63c", c19: "#b4e650.#64e63c", c20: "#6e8c5a.#64e63c", c21: "#6ea046.#64e63c", c22: "#0a0a0a.#141414", c23: "#e6e6c8.#ffdcdc", c24: "#e6ffb4.#ffdcdc", c25: "#32643c.#28820a", c26: "#46783c.#3cbe32", c27: "#1e5032.#141414", c28: "#c8c8c8.#ffdcdc", c29: "#32463c.#28820a" },
36 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#503c3c.#0a823c", c6: "#141414.#141414", c7: "#786e64.#3cbe64", c8: "#8c4650.#c85a5a", c9: "#dc6464.#dc7878", c10: "#ffc8b4.#ffdcdc", c11: "#f09696.#fab4b4", c12: "#503246.#141414", c13: "#d278a0.#f0a0a0", c14: "#be5a78.#dc7878", c15: "#dc3c5a.#dc7896", c16: "#d2788c.#dc8c8c", c17: "#828282.#828282", c18: "#c82878.#dc7896", c19: "#fa5078.#dc7878", c20: "#78143c.#141414", c21: "#1e325a.#141414", c22: "#3c82a0.#828282", c23: "#326478.#3cbe64", c24: "#821e50.#c85a5a", c25: "#3c96aa.#828282", c26: "#0a0a0a.#141414", c27: "#464646.#0a823c", c28: "#a0783c.#3cbe64", c29: "#fafaff.#ffffff", c30: "#dcc878.#fab4b4", c31: "#bebec8.#ffdcdc", c32: "#143246.#141414", c33: "#8cc8c8.#828282", c34: "#5a5a5a.#3cbe64", c35: "#32646e.#0a823c", c36: "#fa8ca0.#fab4b4", c37: "#b4285a.#dc7896", c38: "#dc506e.#dc7878", c39: "#28466e.#141414", c40: "#64a0b4.#828282", c41: "#3c6ea0.#828282", c42: "#f0d28c.#ffdcdc", c43: "#5078a0.#828282", c44: "#ffdc78.#ffdcdc", c45: "#c88c0a.#dc7878", c46: "#b4b4b4.#f0a0a0", c47: "#6e6464.#3cbe64", c48: "#505050.#0a823c", c49: "#ff96a0.#fab4b4", c50: "#466478.#3cbe64", c51: "#6ea0be.#828282", c52: "#dcd278.#fab4b4", c53: "#5082a0.#828282" },
37 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#be4628.#d28214", c6: "#781e00.#823c00", c7: "#dc7828.#fac800", c8: "#5a3200.#505a32", c9: "#fabe78.#ffffa0", c10: "#e6966e.#f0f03c", c11: "#141414.#141414", c12: "#ff965a.#fff082", c13: "#825032.#6e8214", c14: "#be785a.#c8b41e", c15: "#a0783c.#a0a032", c16: "#ffe6b4.#faf0b4", c17: "#ffdc96.#fae696", c18: "#6e3c14.#505a32", c19: "#b4641e.#d28214", c20: "#dc7832.#fac800", c21: "#ff823c.#fff082", c22: "#6e4614.#505a32", c23: "#0a0a0a.#141414", c24: "#a05a1e.#d28214", c25: "#643c14.#505a32", c26: "#c86e28.#fac800", c27: "#dcc8a0.#fae696", c28: "#ffe6a0.#fae696", c29: "#1e0a0a.#141414", c30: "#f0aa50.#fff082", c31: "#dcd2a0.#fae696", c32: "#5a3c0a.#505a32", c33: "#6e6e78.#6e8214", c34: "#fafafa.#ffffff", c35: "#dcdcdc.#faf0b4", c36: "#d23c3c.#d28214", c37: "#961e50.#6e8214", c38: "#dc8c32.#fac800", c39: "#646478.#6e8214", c40: "#fffafa.#ffffff", c41: "#be4678.#c8b41e", c42: "#dc3c5a.#d28214", c43: "#46465a.#6e8214", c44: "#b4b4be.#faf0b4", c45: "#b4b4b4.#faf0b4", c46: "#c8a064.#f0f03c", c47: "#b48c3c.#a0a032", c48: "#a06e3c.#a0a032", c49: "#dcc878.#ffffa0", c50: "#fffaa0.#faf0b4", c51: "#ffd278.#ffffa0", c52: "#ff643c.#fac800" },
38 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#e6c850.#beb4c8", c6: "#fae678.#dcdce6", c7: "#c8a046.#a082aa", c8: "#ffa03c.#96aae6", c9: "#f08228.#64a0ff", c10: "#b4460a.#64a0ff", c11: "#d2a046.#a082aa", c12: "#826e28.#785a82", c13: "#e6c86e.#beb4c8", c14: "#d2a050.#a082aa", c15: "#aa500a.#785a82", c16: "#ff9632.#96aae6", c17: "#fff0b4.#dcdce6", c18: "#b4140a.#96aae6", c19: "#fafafa.#ffffff", c20: "#8c0a0a.#b41400", c21: "#ffaa32.#96aae6", c22: "#ff9614.#64a0ff", c23: "#faa03c.#96aae6", c24: "#be5a1e.#785a82", c25: "#785a28.#785a82", c26: "#faf0aa.#dcdce6", c27: "#e6c878.#dcdce6", c28: "#b4500a.#785a82", c29: "#a08232.#785a82", c30: "#fa961e.#64a0ff", c31: "#fff0d2.#ffffff", c32: "#82320a.#785a82", c33: "#fff06e.#dcdce6", c34: "#dc7814.#64a0ff", c35: "#d26414.#64a0ff", c36: "#f0c850.#beb4c8", c37: "#d2aa3c.#a082aa", c38: "#8c323c.#785a82", c39: "#fa7878.#96aae6", c40: "#785a0a.#785a82", c41: "#783c14.#785a82", c42: "#96460a.#785a82", c43: "#d2aa46.#a082aa", c44: "#fff08c.#dcdce6", c45: "#f0dc78.#dcdce6", c46: "#dcbe50.#beb4c8", c47: "#c89646.#a082aa", c48: "#e68228.#64a0ff", c49: "#826414.#785a82", c50: "#b4460a.#96aae6", c51: "#780a0a.#785a82" },
39 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#a0141e.#785a78", c6: "#e67882.#dca0c8", c7: "#ffc8c8.#ffe6ff", c8: "#ffaaa0.#fac8f0", c9: "#6e5064.#a06e1e", c10: "#141414.#141414", c11: "#e6e6e6.#e6e6e6", c12: "#14468c.#287832", c13: "#1478c8.#14aa46", c14: "#c8f0ff.#c8ffbe", c15: "#14b4f0.#14dca0", c16: "#c83c14.#785a78", c17: "#78140a.#785a78", c18: "#ffa032.#dca0c8", c19: "#961e0a.#785a78", c20: "#ffbe6e.#fac8f0", c21: "#dc5a1e.#785a78", c22: "#fa6432.#dca0c8", c23: "#ff8246.#dca0c8", c24: "#ffd278.#fac8f0", c25: "#faa00a.#dca0c8", c26: "#f0dc6e.#fac8f0", c27: "#dc3c3c.#785a78", c28: "#ff7878.#dca0c8" },
40 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#787878.#787878", c6: "#141414.#141414", c7: "#e6dce6.#dcdce6", c8: "#783c14.#6e3c3c", c9: "#8c3c3c.#823c82", c10: "#ffaabe.#f0b4fa", c11: "#fa7896.#d296c8", c12: "#c86e64.#a06eaa", c13: "#a06e1e.#966e3c", c14: "#1e5a64.#46a032", c15: "#50a08c.#8cd264", c16: "#e63232.#e63232", c17: "#dc5a1e.#e63232", c18: "#ff8246.#a06eaa", c19: "#961e0a.#6e3c3c", c20: "#ffc80a.#966e3c", c21: "#ff8c50.#a06eaa", c22: "#fff0a0.#f0b4fa", c23: "#f05a28.#e63232", c24: "#ffdc0a.#966e3c", c25: "#fff0dc.#dcdce6", c26: "#aa281e.#823c82", c27: "#5a0a0a.#6e3c3c", c28: "#ffbe6e.#d296c8", c29: "#6e5064.#787878", c30: "#3c3c3c.#46a032", c31: "#8c7896.#787878", c32: "#b4a0aa.#f0b4fa", c33: "#3c3c46.#46a032", c34: "#828282.#787878", c35: "#646464.#787878", c36: "#aaaaaa.#787878", c37: "#0a0a0a.#141414", c38: "#a06e5a.#a06eaa", c39: "#ffd278.#f0b4fa", c40: "#aa505a.#a06eaa", c41: "#fabe5a.#d296c8", c42: "#96506e.#787878", c43: "#f08c96.#d296c8" },
41 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#6478b4.#327800", c7: "#bec8ff.#82d246", c8: "#8cb4f0.#6ea028", c9: "#463c78.#0a4600", c10: "#b450a0.#bea078", c11: "#781e5a.#8c783c", c12: "#d278be.#f0d2a0", c13: "#d2d2d2.#d2d2d2", c14: "#646464.#646464", c15: "#b4781e.#646464", c16: "#643c1e.#8c783c", c17: "#f0d2b4.#d2d2d2", c18: "#d2a05a.#f0d2a0", c19: "#0a0a0a.#141414", c20: "#8c5032.#8c783c", c21: "#e6d2b4.#d2d2d2", c22: "#781e1e.#8c783c", c23: "#e63c3c.#bea078", c24: "#645a3c.#646464", c25: "#b41e1e.#8c783c", c26: "#3c1e14.#141414", c27: "#aaa06e.#646464", c28: "#ff826e.#f0d2a0", c29: "#645032.#646464", c30: "#fafafa.#ffffff", c31: "#dcc8a0.#d2d2d2", c32: "#e64646.#bea078", c33: "#ffd2be.#d2d2d2" },
42 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#6482c8.#327800", c6: "#3c3c78.#0a4600", c7: "#5aaaf0.#6ea028", c8: "#000000.#000000", c9: "#aac8ff.#82d246", c10: "#aa50aa.#e67878", c11: "#641450.#c82832", c12: "#c86eb4.#ffaaa0", c13: "#963c78.#d2505a", c14: "#646464.#646464", c15: "#d2d2d2.#d2d2d2", c16: "#3c280a.#000000", c17: "#784632.#c82832", c18: "#d2a078.#ffaaa0", c19: "#141414.#000000", c20: "#a0786e.#d2505a", c21: "#b47878.#ffaaa0", c22: "#965a5a.#d2505a", c23: "#fa8ca0.#ffaaa0", c24: "#46320a.#c82832", c25: "#b45064.#d2505a", c26: "#5a3c0a.#c82832", c27: "#3c320a.#000000", c28: "#c8a078.#ffaaa0", c29: "#785028.#646464", c30: "#c8a064.#ffaaa0", c31: "#aa7846.#646464", c32: "#ffbe82.#d2d2d2", c33: "#dc8c50.#ffaaa0", c34: "#b46428.#d2505a" },
43 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#8caa32.#96c832", c6: "#465a1e.#648200", c7: "#a0d246.#c8fa3c", c8: "#c8e678.#dcff78", c9: "#141414.#141414", c10: "#5a6e82.#3c9600", c11: "#7896a0.#5ac800", c12: "#96b4c8.#8cfa3c", c13: "#f03c32.#f03c32", c14: "#283c46.#146400", c15: "#3c3c32.#146400", c16: "#0a0a0a.#141414", c17: "#786450.#3c9600", c18: "#aa825a.#96c832", c19: "#c8a078.#dcff78", c20: "#463c32.#648200", c21: "#96785a.#96c832", c22: "#644614.#648200", c23: "#d2b46e.#dcff78", c24: "#c8a050.#c8fa3c", c25: "#a0823c.#96c832", c26: "#a05064.#3c9600", c27: "#fa96a0.#dcff78", c28: "#78323c.#648200", c29: "#788282.#3c9600", c30: "#ffffff.#8cfa3c", c31: "#c8d2d2.#8cfa3c", c32: "#464646.#146400", c33: "#783246.#648200", c34: "#beb4b4.#8cfa3c", c35: "#b46478.#5ac800", c36: "#46463c.#146400", c37: "#826e3c.#96c832", c38: "#644646.#648200", c39: "#646e78.#3c9600", c40: "#aa5a14.#f03c32", c41: "#b4bebe.#8cfa3c", c42: "#ffbe82.#dcff78", c43: "#dc8c50.#f03c32", c44: "#dce6e6.#8cfa3c", c45: "#d2d2d2.#8cfa3c" },
44 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5a2800.#783c00", c6: "#141414.#141414", c7: "#aa503c.#be8c3c", c8: "#823c14.#8c6e14", c9: "#ffbe3c.#fad26e", c10: "#faf0be.#faf0be", c11: "#c87846.#e6b46e", c12: "#c87828.#a07814", c13: "#ff7800.#e6aa3c", c14: "#8c3c14.#784600", c15: "#466e78.#50781e", c16: "#143246.#28500a", c17: "#7882a0.#96b450", c18: "#b45ac8.#dc781e", c19: "#be0a46.#be8c3c", c20: "#ffc8e6.#faf0be", c21: "#ffa0c8.#faf0be", c22: "#e66496.#dc781e", c23: "#fa78b4.#dc781e", c24: "#ffd2e6.#faf0be", c25: "#be0a50.#be8c3c", c26: "#ffaac8.#faf0be", c27: "#0a0a0a.#141414", c28: "#fa78be.#dc781e", c29: "#780a0a.#783c00", c30: "#ffffff.#faf0be", c31: "#aac8dc.#faf0be", c32: "#dce6fa.#faf0be", c33: "#5a78aa.#96b450", c34: "#faffff.#faf0be" },
45 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#781414.#823c14", c7: "#fa8c8c.#ffbe64", c8: "#fa7878.#ffb43c", c9: "#dc465a.#f08c32", c10: "#faaab4.#fad2b4", c11: "#ffc8d2.#fff0d2", c12: "#964600.#b46e1e", c13: "#a03c3c.#c8783c", c14: "#c86414.#c8a028", c15: "#ff8228.#ffa028", c16: "#3c3c64.#3c783c", c17: "#142846.#1e4614", c18: "#5a6482.#64aa6e", c19: "#7882a0.#8cd2a0", c20: "#648ca0.#8cd2a0", c21: "#82c8b4.#8cd2a0", c22: "#285a82.#3c783c", c23: "#b4dcd2.#fff0d2", c24: "#d2fafa.#fff0d2", c25: "#1e3246.#1e4614", c26: "#32a0fa.#8cd2a0", c27: "#8cdcff.#fff0d2", c28: "#5ac8ff.#8cd2a0", c29: "#8caabe.#8cd2a0", c30: "#d2d2d2.#fff0d2", c31: "#ffffff.#fff0d2", c32: "#0a0a0a.#141414", c33: "#782828.#823c14", c34: "#aaaab4.#8cd2a0", c35: "#787882.#8cd2a0", c36: "#dcdcdc.#fff0d2", c37: "#8c0a0a.#823c14", c38: "#dc3232.#f08c32", c39: "#be3c3c.#c8783c" },
46 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#be3c3c.#e63c50", c6: "#642828.#a00014", c7: "#fa6e6e.#ff7896", c8: "#c8b41e.#c8be1e", c9: "#ffd250.#fffa5a", c10: "#141414.#141414", c11: "#3c2814.#3c1e0a", c12: "#e68228.#f05014", c13: "#b4641e.#c8321e", c14: "#5a5a5a.#5a5a5a", c15: "#784614.#6e2814", c16: "#ffaa64.#ff823c", c17: "#fffaff.#fffaff", c18: "#a0a0c8.#a0a0c8", c19: "#c8c8c8.#c8c8c8", c20: "#c8d28c.#c8c8c8", c21: "#faf096.#fffa5a", c22: "#f0d26e.#fffa5a", c23: "#c8b428.#c8be1e", c24: "#643278.#5a5a5a", c25: "#a06eb4.#a0a0c8", c26: "#8c50aa.#a0a0c8", c27: "#d2a0dc.#c8c8c8", c28: "#be8cc8.#a0a0c8", c29: "#825a8c.#5a5a5a", c30: "#0a0a0a.#141414", c31: "#be8cd2.#a0a0c8", c32: "#dcdcdc.#c8c8c8", c33: "#642878.#5a5a5a", c34: "#ffffff.#fffaff", c35: "#bebebe.#c8c8c8", c36: "#fafafa.#fffaff", c37: "#fffffa.#fffaff", c38: "#a01e0a.#6e2814", c39: "#a05064.#e63c50", c40: "#d27882.#ff7896", c41: "#dc641e.#f05014", c42: "#d2c86e.#fffa5a", c43: "#aaa050.#c8be1e", c44: "#d2d2b4.#c8c8c8", c45: "#aaa014.#c8be1e", c46: "#fafa78.#fffa5a", c47: "#dcc83c.#c8be1e", c48: "#b4aa64.#c8be1e" },
47 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#be323c.#b46432", c6: "#f03232.#f08c32", c7: "#ff6e6e.#ffaa64", c8: "#780a0a.#783c0a", c9: "#ffd250.#ffd250", c10: "#ff8250.#ffc850", c11: "#d2c832.#d2c832", c12: "#141414.#141414", c13: "#641400.#643c00", c14: "#b43c3c.#aa6e3c", c15: "#dc6e32.#dca032", c16: "#a08ca0.#a08ca0", c17: "#fffaff.#fffaff", c18: "#d2d2d2.#d2d2d2", c19: "#503c14.#643c00", c20: "#5a1e28.#643c00", c21: "#f0e6aa.#d2d2d2", c22: "#c8a05a.#d2c832", c23: "#e65a46.#dca032", c24: "#a03214.#aa6e3c", c25: "#c84632.#b46432", c26: "#5a1e32.#643c00", c27: "#dcc88c.#ffd250", c28: "#a0143c.#b46432", c29: "#c84646.#b46432", c30: "#fa8278.#ffaa64", c31: "#f08264.#ffc850", c32: "#c84628.#b46432", c33: "#503c0a.#643c00", c34: "#f0dcaa.#d2d2d2", c35: "#f07850.#ffc850", c36: "#ffffff.#fffaff", c37: "#8c8c8c.#a08ca0", c38: "#a0280a.#783c0a", c39: "#aaaaaa.#a08ca0", c40: "#5a5a5a.#aa6e3c", c41: "#787882.#a08ca0", c42: "#968c8c.#a08ca0", c43: "#e6e6e6.#d2d2d2", c44: "#d2a028.#d2c832", c45: "#965a0a.#aa6e3c", c46: "#a01414.#783c0a", c47: "#504614.#643c00", c48: "#d23c14.#f08c32", c49: "#fa6e32.#dca032", c50: "#fa968c.#ffaa64", c51: "#ffaa64.#ffd250", c52: "#ffffaa.#d2d2d2" },
48 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#787878.#787878", c6: "#141414.#141414", c7: "#644678.#644682", c8: "#d2d2d2.#c8c8d2", c9: "#a08cbe.#a08cc8", c10: "#322850.#32285a", c11: "#8c6ea0.#8c6eaa", c12: "#b43c5a.#2864c8", c13: "#ff5a5a.#5aa0ff", c14: "#501414.#002896", c15: "#ffaab4.#aae6ff", c16: "#783c28.#783c28", c17: "#f0bea0.#fabea0", c18: "#be966e.#c8966e", c19: "#82828c.#787878", c20: "#5a5a5a.#644682", c21: "#0a0a0a.#141414", c22: "#faf0f0.#ffffff", c23: "#fafafa.#ffffff", c24: "#c8c8c8.#c8c8d2", c25: "#fafaff.#ffffff", c26: "#aaaab4.#a08cc8", c27: "#78140a.#002896", c28: "#fa5a3c.#5aa0ff", c29: "#a03c3c.#2864c8", c30: "#dc4628.#5aa0ff", c31: "#783c0a.#783c28", c32: "#f0968c.#fabea0", c33: "#be280a.#783c28", c34: "#c88c28.#c8966e", c35: "#ffc83c.#c8966e", c36: "#dc7878.#c8966e", c37: "#e6461e.#5aa0ff", c38: "#dc3c14.#2864c8", c39: "#283c1e.#141414", c40: "#46783c.#787878", c41: "#648c50.#787878", c42: "#3c0a0a.#002896", c43: "#fffa8c.#fabea0", c44: "#f0a0a0.#aae6ff", c45: "#c85a5a.#2864c8", c46: "#dc8282.#c8966e", c47: "#ff826e.#5aa0ff", c48: "#324664.#32285a", c49: "#506ea0.#787878", c50: "#3c5a82.#644682", c51: "#aa140a.#783c28", c52: "#dc3232.#2864c8", c53: "#c82814.#2864c8" },
49 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#644678.#323c78", c6: "#a08cbe.#6482c8", c7: "#d2aadc.#82a0e6", c8: "#fadcff.#b4dcff", c9: "#f0c8ff.#a0beff", c10: "#141414.#141414", c11: "#e6e6e6.#e6dce6", c12: "#aac8c8.#b4bec8", c13: "#64503c.#64463c", c14: "#a08278.#a07878", c15: "#e6d2aa.#e6c8aa", c16: "#c8aa8c.#c8a08c", c17: "#1e3250.#141414", c18: "#646e8c.#323c78", c19: "#324664.#323c78", c20: "#96aad2.#6482c8", c21: "#dcbed2.#82a0e6", c22: "#0a0a0a.#141414", c23: "#323c5a.#323c78", c24: "#5a6edc.#6482c8", c25: "#325aa0.#323c78", c26: "#788cff.#6482c8", c27: "#dcc8e6.#e6dce6", c28: "#aaa0c8.#6482c8", c29: "#6e6e6e.#323c78", c30: "#143c78.#323c78", c31: "#c8b4dc.#82a0e6", c32: "#6e78f0.#6482c8", c33: "#465096.#323c78", c34: "#32b4d2.#6482c8", c35: "#328cb4.#323c78", c36: "#0a6496.#323c78", c37: "#505a6e.#323c78", c38: "#6e96dc.#6482c8", c39: "#5078c8.#6482c8", c40: "#fafafa.#ffffff", c41: "#6e5a8c.#323c78", c42: "#aab4c8.#b4bec8", c43: "#466482.#323c78", c44: "#3c3c64.#323c78", c45: "#d2c8c8.#82a0e6", c46: "#aaa0aa.#6482c8", c47: "#1e1e32.#141414", c48: "#d2e6ff.#e6dce6", c49: "#6e96a0.#6482c8", c50: "#aa96aa.#6482c8", c51: "#b4d2ff.#b4bec8", c52: "#e6d2e6.#e6dce6", c53: "#fae6fa.#b4dcff", c54: "#5a5a78.#323c78", c55: "#c8b4be.#82a0e6", c56: "#8c96b4.#6482c8", c57: "#b4c8ff.#82a0e6", c58: "#c8e6ff.#e6dce6", c59: "#dcd2e6.#e6dce6", c60: "#aab4d2.#b4bec8" },
50 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#c8783c.#be7850", c6: "#a05a5a.#a05a6e", c7: "#5a3214.#503228", c8: "#dca05a.#d2a06e", c9: "#141414.#141414", c10: "#d23c46.#3250a0", c11: "#780014.#0a2878", c12: "#ffaa96.#8296fa", c13: "#ff6e5a.#5a6ec8", c14: "#5a501e.#5a501e", c15: "#b4aa78.#b4aa78", c16: "#827846.#827846", c17: "#e6e6b4.#e6e6b4", c18: "#7896be.#b4aa78", c19: "#dcf0ff.#ffffff", c20: "#325078.#5a501e", c21: "#bec8e6.#e6e6b4", c22: "#a0b4d2.#e6e6b4", c23: "#6478aa.#a05a6e", c24: "#8296be.#b4aa78", c25: "#e6f0fa.#ffffff", c26: "#3c5078.#5a501e", c27: "#961414.#0a2878", c28: "#c83246.#3250a0", c29: "#ff8296.#8296fa", c30: "#aab4d2.#e6e6b4", c31: "#f05a64.#5a6ec8", c32: "#c8d2e6.#e6e6b4", c33: "#961e1e.#0a2878", c34: "#c8960a.#be7850", c35: "#ffdc0a.#d2a06e", c36: "#82141e.#0a2878", c37: "#0a0a0a.#141414", c38: "#82281e.#503228", c39: "#6e78aa.#a05a6e", c40: "#e68c96.#8296fa", c41: "#d26e64.#be7850", c42: "#b44650.#a05a6e", c43: "#dcc828.#d2a06e", c44: "#f06450.#5a6ec8", c45: "#8c141e.#0a2878", c46: "#46141e.#503228", c47: "#f0f0f0.#ffffff", c48: "#c88c0a.#be7850", c49: "#e6f0f0.#ffffff", c50: "#6e8caa.#b4aa78", c51: "#dcf0fa.#ffffff", c52: "#bed2e6.#e6e6b4", c53: "#c8d2dc.#e6e6b4", c54: "#8c0a0a.#0a2878", c55: "#ff8c82.#8296fa", c56: "#f0645a.#5a6ec8", c57: "#324678.#5a501e", c58: "#780a0a.#0a2878", c59: "#320a14.#141414", c60: "#a0b4c8.#b4aa78", c61: "#bec8d2.#e6e6b4", c62: "#c83232.#3250a0", c63: "#c8dcdc.#e6e6b4", c64: "#d2960a.#be7850", c65: "#c86450.#be7850", c66: "#466e78.#827846", c67: "#4696aa.#827846", c68: "#6eb4c8.#b4aa78", c69: "#fafafa.#ffffff", c70: "#145064.#5a501e" },
51 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#a05a5a.#a05a6e", c6: "#5a3214.#503228", c7: "#dca05a.#d2a06e", c8: "#c8783c.#be7850", c9: "#141414.#141414", c10: "#780014.#0a2878", c11: "#d23c46.#3250a0", c12: "#ffaa96.#8296fa", c13: "#ff6e5a.#5a6ec8", c14: "#5a501e.#5a501e", c15: "#b4aa78.#b4aa78", c16: "#827846.#827846", c17: "#e6e6b4.#e6e6b4", c18: "#282832.#141414", c19: "#14141e.#141414", c20: "#0a0a0a.#141414", c21: "#3c3c46.#5a501e", c22: "#464650.#5a501e", c23: "#a0a0aa.#b4aa78", c24: "#bebec8.#e6e6b4", c25: "#783c28.#503228", c26: "#faa078.#8296fa", c27: "#aa7850.#a05a6e", c28: "#c8c8c8.#e6e6b4", c29: "#282828.#141414", c30: "#821e0a.#0a2878", c31: "#b43c1e.#3250a0", c32: "#3c3232.#503228", c33: "#5a4646.#5a501e", c34: "#fffaff.#ffffff", c35: "#b4a0a0.#b4aa78", c36: "#786464.#827846", c37: "#6e6464.#827846", c38: "#bebed2.#e6e6b4", c39: "#965014.#5a501e", c40: "#784628.#5a501e", c41: "#aa6e50.#a05a6e", c42: "#faaa78.#8296fa", c43: "#be783c.#be7850", c44: "#ffd28c.#8296fa", c45: "#f0a050.#d2a06e", c46: "#8c140a.#0a2878", c47: "#b4320a.#3250a0" },
52 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#8c6e00.#a03c00", c6: "#ffe682.#ffc882", c7: "#141414.#141414", c8: "#c8a000.#c8a000", c9: "#ffd200.#ffd200", c10: "#d25a3c.#d25a3c", c11: "#ff7850.#ff7850", c12: "#965a00.#965a00", c13: "#dcbe3c.#dca03c", c14: "#ffffb4.#fff0b4", c15: "#e6e6e6.#e6e6e6", c16: "#963c00.#aa283c", c17: "#f0a032.#fa788c", c18: "#c8780a.#d2506e", c19: "#0a0a0a.#141414", c20: "#464650.#141414", c21: "#3c3c46.#141414", c22: "#82788c.#d25a3c", c23: "#32323c.#141414", c24: "#c8d2d2.#e6e6e6", c25: "#a0a0aa.#e6e6e6", c26: "#786e78.#d25a3c", c27: "#d2d2d2.#e6e6e6", c28: "#141e28.#141414", c29: "#a0a0a0.#dca03c", c30: "#642814.#aa283c", c31: "#82141e.#aa283c", c32: "#faa082.#ff7850", c33: "#a05a46.#d25a3c", c34: "#787878.#d25a3c", c35: "#c8141e.#aa283c", c36: "#b4320a.#aa283c", c37: "#ff6e32.#ff7850", c38: "#282832.#141414", c39: "#64646e.#a03c00", c40: "#641414.#aa283c", c41: "#a0283c.#aa283c", c42: "#3c3232.#141414", c43: "#6e6464.#a03c00", c44: "#dcdcd2.#e6e6e6", c45: "#b4a0a0.#ffc882", c46: "#8c7878.#d25a3c", c47: "#dcdcdc.#e6e6e6", c48: "#8c8c8c.#d25a3c", c49: "#ffe60a.#ffd200", c50: "#463c3c.#141414", c51: "#fa820a.#fa788c", c52: "#fff064.#ffc882", c53: "#281e1e.#141414", c54: "#fa320a.#d25a3c", c55: "#6e2814.#aa283c", c56: "#ffa082.#ff7850", c57: "#be463c.#d25a3c", c58: "#6e1e28.#aa283c", c59: "#460a0a.#141414", c60: "#d26e5a.#d25a3c", c61: "#64506e.#a03c00", c62: "#c86450.#d25a3c", c63: "#965014.#965a00", c64: "#a03246.#d25a3c" },
53 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#96781e.#f08282", c7: "#bea046.#ffb4b4", c8: "#825000.#8c6e0a", c9: "#dcb46e.#f0c882", c10: "#ffe682.#fffa96", c11: "#785a14.#dc6464", c12: "#b48228.#bea032", c13: "#fa503c.#fa503c", c14: "#ffbea0.#ffbea0", c15: "#a01400.#a01400", c16: "#dcdcdc.#dcdcdc", c17: "#5a1446.#141414", c18: "#c864b4.#ffbea0", c19: "#78326e.#dc6464", c20: "#b47832.#bea032", c21: "#a0468c.#ffb4b4", c22: "#f0a0d2.#ffbea0", c23: "#ffe6a0.#fffa96", c24: "#ffd26e.#fffa96", c25: "#825014.#dc6464", c26: "#e6aa5a.#f0c882", c27: "#be50aa.#f0c882", c28: "#963c82.#f08282", c29: "#f082d2.#ffbea0", c30: "#e696c8.#ffbea0", c31: "#500a3c.#141414", c32: "#0a0a0a.#141414", c33: "#78460a.#8c6e0a", c34: "#fafafa.#ffffff", c35: "#dca050.#ffb4b4", c36: "#fac85a.#f0c882", c37: "#505050.#dc6464", c38: "#a0140a.#a01400", c39: "#c83c14.#a01400", c40: "#8c0a0a.#a01400", c41: "#fa7846.#fa503c", c42: "#b43214.#a01400", c43: "#f0643c.#fa503c", c44: "#aa6e28.#bea032", c45: "#fadc8c.#fffa96", c46: "#be50a0.#f0c882", c47: "#461e3c.#141414", c48: "#dca0e6.#dcdcdc", c49: "#be64c8.#ffbea0", c50: "#5a0a46.#141414", c51: "#b49632.#bea032", c52: "#a046a0.#ffb4b4", c53: "#d264b4.#ffbea0", c54: "#fadc78.#fffa96", c55: "#783264.#dc6464", c56: "#d2b446.#ffb4b4", c57: "#78286e.#dc6464", c58: "#b47828.#bea032", c59: "#a03c64.#f08282", c60: "#dc646e.#fa503c", c61: "#f0b4c8.#ffbea0", c62: "#a00a0a.#a01400", c63: "#82500a.#8c6e0a" },
54 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#787878.#787878", c6: "#141414.#141414", c7: "#965a14.#3c6e78", c8: "#e6a050.#78b4a0", c9: "#ffd246.#a0dce6", c10: "#ffe6a0.#c8fafa", c11: "#dcb450.#a0b4c8", c12: "#825a00.#7882a0", c13: "#fff0be.#e6ffff", c14: "#fadc8c.#b4dcfa", c15: "#3c50a0.#787878", c16: "#465a96.#787878", c17: "#b4dcff.#ffffff", c18: "#0a0a0a.#141414", c19: "#64a0d2.#787878", c20: "#aad2ff.#ffffff", c21: "#5096d2.#787878", c22: "#78c8f0.#787878", c23: "#8cbef0.#ffffff", c24: "#5096c8.#787878", c25: "#64a0c8.#787878", c26: "#bedcff.#ffffff", c27: "#c8e6fa.#ffffff", c28: "#3c5a96.#787878", c29: "#78bef0.#787878", c30: "#d2e6fa.#ffffff", c31: "#50a0d2.#787878", c32: "#a0dcff.#ffffff", c33: "#e6aa3c.#78b4a0", c34: "#f0faff.#ffffff", c35: "#aa6e0a.#3c6e78", c36: "#960a0a.#3c6e78", c37: "#6478a0.#787878", c38: "#bed2e6.#e6ffff", c39: "#be3c32.#3c6e78", c40: "#d2d2d2.#e6ffff", c41: "#d21e1e.#3c6e78", c42: "#be3228.#3c6e78", c43: "#c8c8c8.#e6ffff", c44: "#82500a.#7882a0", c45: "#ffd25a.#a0dce6", c46: "#dc963c.#78b4a0", c47: "#6e4614.#7882a0", c48: "#fae646.#a0dce6", c49: "#e6a032.#78b4a0", c50: "#b4640a.#3c6e78", c51: "#f0aa0a.#78b4a0", c52: "#e6aa32.#78b4a0" },
55 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#32506e.#3c506e", c6: "#8caad2.#6eb4ff", c7: "#141414.#141414", c8: "#7878b4.#6478d2", c9: "#a0c8ff.#96dcff", c10: "#dc1414.#dc1414", c11: "#8c0000.#8c0000", c12: "#d2d2d2.#d2d2d2", c13: "#fa6e6e.#ffaaaa", c14: "#786e14.#a03c3c", c15: "#ffffa0.#ffc8c8", c16: "#a0a03c.#e67878", c17: "#d2d26e.#fa9696", c18: "#be3c32.#dc1414", c19: "#505096.#3c506e", c20: "#fa6e50.#ffaaaa", c21: "#820a0a.#8c0000", c22: "#a0bef0.#96dcff", c23: "#5078b4.#6478d2", c24: "#aad2f0.#96dcff", c25: "#fa6450.#ffaaaa", c26: "#5082b4.#6478d2", c27: "#464682.#3c506e", c28: "#a0c8f0.#96dcff", c29: "#64a0c8.#6eb4ff", c30: "#82b4dc.#6eb4ff", c31: "#6ea0c8.#6eb4ff", c32: "#ffaa8c.#ffaaaa", c33: "#8c8c8c.#6478d2", c34: "#0a0a0a.#141414" },
56 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#ffc882.#dcd282", c7: "#c87846.#b48246", c8: "#dca078.#c8b478", c9: "#783c00.#6e5000", c10: "#6e4628.#5a7828", c11: "#d2aaa0.#a0b478", c12: "#fadcb4.#c8f0a0", c13: "#fffac8.#e6ffc8", c14: "#dcdcdc.#dcdcdc", c15: "#f07864.#f07864", c16: "#b43c32.#b43c32", c17: "#f0b48c.#f0b48c", c18: "#3c3c3c.#5a7828", c19: "#829696.#a0b478", c20: "#6e7878.#5a7828", c21: "#465050.#5a7828", c22: "#bec8c8.#dcdcdc", c23: "#a0a0a0.#a0b478", c24: "#0a0a0a.#141414", c25: "#d2dcd2.#dcdcdc", c26: "#bebebe.#a0b478", c27: "#788282.#b48246", c28: "#821e28.#5a7828", c29: "#c83c14.#b43c32", c30: "#a05046.#b43c32", c31: "#323c3c.#141414", c32: "#c8785a.#b48246", c33: "#6e3228.#5a7828", c34: "#963c28.#b43c32", c35: "#823228.#5a7828", c36: "#3c463c.#5a7828", c37: "#c8645a.#b48246", c38: "#828282.#b48246", c39: "#283c3c.#141414", c40: "#a0c8c8.#dcdcdc", c41: "#325050.#5a7828", c42: "#507878.#5a7828", c43: "#78a0a0.#a0b478", c44: "#a0aaaa.#a0b478", c45: "#323232.#141414", c46: "#828c8c.#a0b478", c47: "#3c5050.#5a7828", c48: "#aaa0a0.#a0b478", c49: "#5a5a5a.#5a7828", c50: "#d2c8c8.#dcdcdc", c51: "#c8dcd2.#dcdcdc", c52: "#8caab4.#a0b478", c53: "#c8d2e6.#dcdcdc", c54: "#827878.#b48246", c55: "#646464.#5a7828", c56: "#dc6e46.#b48246", c57: "#a03228.#b43c32", c58: "#aabec8.#a0b478", c59: "#f0fae6.#ffffff", c60: "#e6e6dc.#dcdcdc", c61: "#646e6e.#5a7828", c62: "#8c9696.#a0b478", c63: "#6e8282.#5a7828", c64: "#a0321e.#b43c32" },
57 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#a06e6e.#82781e", c6: "#64461e.#aa643c", c7: "#ffffd2.#ffe6aa", c8: "#e6bea0.#dca06e", c9: "#000000.#000000", c10: "#ffe6b4.#ffc88c", c11: "#c88c5a.#aaaa5a", c12: "#ff965a.#ff965a", c13: "#5a3200.#5a4600", c14: "#e6b48c.#c8dc82", c15: "#be4632.#be4632", c16: "#787878.#787878", c17: "#3c3c3c.#3c3c3c", c18: "#c8c8c8.#c8c8c8", c19: "#3c3c50.#3c3c3c", c20: "#141414.#000000", c21: "#5a5a78.#787878", c22: "#bebec8.#c8c8c8", c23: "#8282aa.#787878", c24: "#3c3c46.#3c3c3c", c25: "#e6e6f0.#ffffff", c26: "#b4bec8.#c8c8c8", c27: "#64646e.#787878", c28: "#8c8c96.#787878", c29: "#0a0a0a.#000000", c30: "#8c96a0.#787878", c31: "#646482.#787878", c32: "#dce6e6.#c8c8c8", c33: "#dcdcdc.#c8c8c8", c34: "#a0bec8.#c8c8c8", c35: "#aa3c28.#be4632", c36: "#64323c.#aa643c", c37: "#5a0a0a.#5a4600", c38: "#c8bebe.#c8c8c8", c39: "#aa3228.#be4632", c40: "#aa506e.#82781e", c41: "#fa8c96.#c8dc82", c42: "#bebed2.#c8c8c8" },
58 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#78641e.#6e6432", c6: "#fffaa0.#fafab4", c7: "#c8aa64.#c8b478", c8: "#141414.#141414", c9: "#dcc878.#d2c88c", c10: "#783c14.#8c640a", c11: "#ffb450.#ffffa0", c12: "#f08c46.#faf032", c13: "#c85050.#c8b432", c14: "#6e6e6e.#6e6e6e", c15: "#fffffa.#fffffa", c16: "#dcdcd2.#dcdcd2", c17: "#96466e.#6e6e6e", c18: "#ffffff.#fffffa", c19: "#ff96b4.#dcdcd2", c20: "#f05a64.#c8b432", c21: "#5a3c46.#8c640a", c22: "#ffdce6.#fffffa", c23: "#3278a0.#6e6e6e", c24: "#6e6e78.#6e6e6e", c25: "#d2d2d2.#dcdcd2", c26: "#fa788c.#faf032", c27: "#46a0d2.#6e6e6e", c28: "#8cd2ff.#dcdcd2", c29: "#dc6450.#c8b432", c30: "#b41e14.#8c640a", c31: "#963c6e.#c8b432", c32: "#323c64.#6e6e6e", c33: "#ff968c.#d2c88c", c34: "#ffd2aa.#fafab4", c35: "#5a3246.#8c640a", c36: "#286482.#6e6e6e", c37: "#ffc8dc.#dcdcd2", c38: "#1e78c8.#6e6e6e", c39: "#143ca0.#6e6e6e", c40: "#6ec8ff.#dcdcd2", c41: "#8cdcff.#dcdcd2", c42: "#50a0dc.#6e6e6e", c43: "#3ca0dc.#6e6e6e", c44: "#96f0ff.#dcdcd2", c45: "#b48ca0.#c8b478", c46: "#0a0a0a.#141414", c47: "#b4b4be.#dcdcd2", c48: "#3c8cb4.#6e6e6e", c49: "#646478.#6e6e6e", c50: "#be5064.#c8b432", c51: "#dcf0ff.#fffffa" },
59 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#644628.#6e5a50", c6: "#ffdcaa.#fae6be", c7: "#643c1e.#5a4614", c8: "#d2a08c.#d2be96", c9: "#141414.#141414", c10: "#ffa06e.#faff78", c11: "#f07832.#e6d228", c12: "#c8505a.#b4a000", c13: "#dcdcd2.#dcdcd2", c14: "#fffffa.#fffffa", c15: "#826e64.#826e64", c16: "#783c0a.#5a4614", c17: "#b48232.#e6d228", c18: "#ffdc50.#faff78", c19: "#0a0a0a.#141414", c20: "#e6a01e.#e6d228", c21: "#ffffaa.#fae6be", c22: "#e6aa1e.#e6d228", c23: "#464646.#6e5a50", c24: "#b4b4b4.#d2be96", c25: "#787878.#826e64", c26: "#282828.#141414", c27: "#3c1e50.#6e5a50", c28: "#281432.#141414", c29: "#e6b45a.#faff78", c30: "#ffd278.#fae6be", c31: "#dcb4d2.#dcdcd2", c32: "#645078.#826e64", c33: "#fafafa.#fffffa", c34: "#781414.#5a4614", c35: "#ffffff.#fffffa", c36: "#ffdc82.#fae6be", c37: "#6e3c14.#5a4614", c38: "#a06450.#826e64", c39: "#fff08c.#fae6be", c40: "#e6aa14.#e6d228", c41: "#8c5a0a.#6e5a50", c42: "#505050.#6e5a50", c43: "#323232.#141414", c44: "#be8264.#b4a000", c45: "#f0aa78.#faff78", c46: "#783c1e.#5a4614", c47: "#1e1e1e.#141414" },
60 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#143c78.#1e46a0", c6: "#8ca0e6.#a0d2fa", c7: "#5082c8.#78aaff", c8: "#3c5a82.#5078d2", c9: "#141414.#141414", c10: "#646464.#646464", c11: "#b4aabe.#b4aabe", c12: "#ffbeaa.#ffbeaa", c13: "#ff6e6e.#ff6e6e", c14: "#be5a46.#be5a46", c15: "#c8c8c8.#dcdcdc", c16: "#3c78aa.#6496f0", c17: "#463c14.#141414", c18: "#14a00a.#646464", c19: "#aaaa8c.#b4aabe", c20: "#0a640a.#141414", c21: "#6edc46.#646464", c22: "#8c8250.#646464", c23: "#46c814.#646464", c24: "#dcdcbe.#dcdcdc", c25: "#6e5a32.#646464", c26: "#8c6e50.#646464", c27: "#6e4632.#646464", c28: "#6edc3c.#646464", c29: "#9696a0.#b4aabe", c30: "#3cc814.#646464", c31: "#463c28.#141414", c32: "#8ce66e.#b4aabe", c33: "#0a0a0a.#141414", c34: "#46821e.#646464", c35: "#8cd246.#646464", c36: "#6eaa32.#646464", c37: "#b40a0a.#be5a46", c38: "#286414.#141414", c39: "#fa820a.#be5a46", c40: "#a03246.#be5a46", c41: "#f05a46.#ff6e6e", c42: "#8c8c78.#646464", c43: "#a08250.#be5a46", c44: "#beaa8c.#b4aabe", c45: "#645032.#646464", c46: "#e6dcbe.#dcdcdc", c47: "#502814.#141414", c48: "#f0e6c8.#dcdcdc", c49: "#b4a08c.#b4aabe", c50: "#0a820a.#141414", c51: "#8c5a32.#be5a46", c52: "#32460a.#141414", c53: "#6eaa0a.#646464", c54: "#50780a.#646464", c55: "#8c5a28.#be5a46", c56: "#96826e.#646464", c57: "#46280a.#141414", c58: "#aa643c.#be5a46", c59: "#822832.#be5a46", c60: "#be646e.#be5a46", c61: "#aa3c3c.#be5a46", c62: "#e67878.#ff6e6e" },
61 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c5a82.#3c82d2", c6: "#143c78.#1e5aaa", c7: "#5082c8.#50beff", c8: "#3c78aa.#3ca0f0", c9: "#8ca0e6.#78dcff", c10: "#d2d2dc.#d2d2dc", c11: "#141414.#141414", c12: "#a0a0a0.#a0a0a0", c13: "#787878.#787878", c14: "#a06ea0.#a0a0a0", c15: "#82325a.#505050", c16: "#ffdcff.#ffffff", c17: "#f0c8ff.#d2d2dc", c18: "#c8a0be.#bebebe", c19: "#966496.#787878", c20: "#643c64.#505050", c21: "#825078.#787878", c22: "#dcdcdc.#d2d2dc", c23: "#96320a.#505050", c24: "#b4320a.#505050", c25: "#0a0a0a.#141414", c26: "#e68c3c.#a0a0a0", c27: "#78460a.#505050", c28: "#50320a.#141414", c29: "#dcaa3c.#a0a0a0", c30: "#a0a0aa.#a0a0a0", c31: "#d2a046.#a0a0a0", c32: "#a0783c.#787878", c33: "#f0e6e6.#d2d2dc", c34: "#a07846.#787878", c35: "#78788c.#787878", c36: "#502850.#505050", c37: "#e68c46.#a0a0a0", c38: "#c89650.#a0a0a0", c39: "#e6c8dc.#d2d2dc", c40: "#aa64a0.#a0a0a0", c41: "#f0aaff.#d2d2dc", c42: "#c882c8.#bebebe", c43: "#780a0a.#141414", c44: "#8c8c8c.#a0a0a0", c45: "#c86428.#787878" },
62 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c5a82.#6e8c46", c6: "#5082c8.#8cbe78", c7: "#143c78.#325014", c8: "#141414.#141414", c9: "#8ca0e6.#bedca0", c10: "#a0a0a0.#a0a0a0", c11: "#d2d2dc.#d2d2dc", c12: "#787878.#787878", c13: "#3c78aa.#78a05a", c14: "#64646e.#787878", c15: "#c8c8c8.#bebebe", c16: "#505a96.#6e8c46", c17: "#4682c8.#8cbe78", c18: "#64aaf0.#bedca0", c19: "#8cd2ff.#bedca0", c20: "#826414.#505050", c21: "#464646.#505050", c22: "#bea050.#a0a0a0", c23: "#828282.#787878", c24: "#d2d2d2.#d2d2dc", c25: "#e6c878.#bebebe", c26: "#9696a0.#a0a0a0", c27: "#826e64.#787878", c28: "#326ea0.#78a05a", c29: "#4682d2.#8cbe78", c30: "#be9682.#a0a0a0", c31: "#5a4646.#505050", c32: "#78befa.#bedca0", c33: "#96c8f0.#bedca0", c34: "#d2b4a0.#bebebe", c35: "#5096c8.#8cbe78", c36: "#e6d278.#bebebe", c37: "#fff0a0.#d2d2dc", c38: "#8c7832.#787878", c39: "#645a32.#505050", c40: "#aa826e.#787878", c41: "#c8aa50.#a0a0a0", c42: "#d2a082.#a0a0a0", c43: "#a0823c.#787878", c44: "#d2b464.#a0a0a0", c45: "#a08c3c.#787878", c46: "#64503c.#505050", c47: "#c8aa5a.#a0a0a0", c48: "#d2aa82.#a0a0a0", c49: "#e6be96.#bebebe", c50: "#82783c.#787878", c51: "#8c783c.#787878", c52: "#4678c8.#8cbe78", c53: "#3c4678.#6e8c46", c54: "#64a0dc.#8cbe78", c55: "#325a8c.#6e8c46", c56: "#8c8c96.#a0a0a0", c57: "#8c8c82.#787878", c58: "#8cbef0.#bedca0", c59: "#785028.#505050", c60: "#825a28.#505050", c61: "#f0c896.#bebebe", c62: "#d2a078.#a0a0a0", c63: "#a07846.#787878", c64: "#0a0a0a.#141414", c65: "#dcbe82.#bebebe", c66: "#b48c5a.#787878", c67: "#fafafa.#ffffff", c68: "#ffdca0.#d2d2dc", c69: "#465078.#6e8c46", c70: "#6e6e78.#787878", c71: "#c84632.#787878", c72: "#781e14.#505050" },
63 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#825a14.#aa6e28", c6: "#ffe628.#fffa82", c7: "#141414.#141414", c8: "#c8be1e.#f0c832", c9: "#fafaa0.#fffadc", c10: "#aa8c14.#c8a01e", c11: "#aa8228.#be8c96", c12: "#5a3c0a.#8c5014", c13: "#5a3c00.#5a323c", c14: "#82640a.#8c646e", c15: "#beaa28.#f0c832", c16: "#968214.#c8a01e", c17: "#ffe650.#fffa82", c18: "#dcd232.#f0c832", c19: "#0a0a0a.#141414", c20: "#b47814.#c8a01e", c21: "#ffe65a.#fffa82", c22: "#ffbe5a.#fffa82", c23: "#dcc832.#f0c832", c24: "#8c145a.#aa6e28", c25: "#dc4678.#be8c96", c26: "#b4b4b4.#fffadc", c27: "#d2d2d2.#fffadc", c28: "#c85a96.#be8c96", c29: "#ff96a0.#fffadc", c30: "#ffffff.#fffadc", c31: "#50968c.#be8c96", c32: "#fa82b4.#fffadc", c33: "#ffc8a0.#fffadc", c34: "#ffb4b4.#fffadc", c35: "#148c5a.#8c5014", c36: "#fae6aa.#fffadc", c37: "#8c8246.#be8c96", c38: "#5af08c.#fffadc", c39: "#dcc882.#fffadc", c40: "#e6966e.#f0c832" },
64 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#8c7814.#b47814", c6: "#64460a.#825a14", c7: "#fff028.#fffa82", c8: "#141414.#141414", c9: "#d2be0a.#e6b43c", c10: "#ffffbe.#fffae6", c11: "#5a3c0a.#5a323c", c12: "#5a5a5a.#5a5a5a", c13: "#b4b4b4.#b4b4b4", c14: "#e63c28.#dc3228", c15: "#78500a.#82505a", c16: "#a07828.#b47882", c17: "#dcdcdc.#dcdcdc", c18: "#6e6e6e.#5a5a5a", c19: "#b46e0a.#b47882", c20: "#d2d2d2.#dcdcdc", c21: "#323232.#141414", c22: "#ffe6a0.#fffae6", c23: "#fac846.#fffa82", c24: "#fac850.#fffa82", c25: "#a0a0a0.#b4b4b4", c26: "#fac832.#fffa82", c27: "#c88c0a.#e6b43c", c28: "#0a0a0a.#141414", c29: "#e6aa0a.#e6b43c", c30: "#646464.#5a5a5a", c31: "#ffc832.#fffa82", c32: "#e6aa14.#e6b43c", c33: "#ffd232.#fffa82", c34: "#d28c0a.#e6b43c", c35: "#ffdc5a.#fffa82", c36: "#aaaaaa.#b4b4b4", c37: "#c8c8c8.#b4b4b4", c38: "#dcaa14.#e6b43c", c39: "#fab40a.#e6b43c", c40: "#c8d2d2.#dcdcdc", c41: "#b4640a.#b47882", c42: "#282828.#141414", c43: "#fafafa.#ffffff", c44: "#f0f0f0.#ffffff", c45: "#a0320a.#82505a", c46: "#fa9614.#e6b43c", c47: "#a01432.#dc3228", c48: "#dc5046.#dc3228", c49: "#f0960a.#e6b43c", c50: "#8c280a.#82505a", c51: "#dc503c.#dc3228" },
65 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#785a0a.#a06e00", c7: "#fff014.#ffd200", c8: "#5a5a5a.#5a5a5a", c9: "#dcdcdc.#dcdcdc", c10: "#b4b4b4.#b4b4b4", c11: "#c8b414.#d2960a", c12: "#fffaaa.#fff082", c13: "#50320a.#781450", c14: "#d2b450.#ff96e6", c15: "#b48228.#dc46aa", c16: "#785a0a.#aa2878", c17: "#503c78.#5a5a5a", c18: "#be96f0.#b4b4b4", c19: "#a082c8.#b4b4b4", c20: "#7864aa.#5a5a5a", c21: "#c8a0f0.#dcdcdc", c22: "#c8c8c8.#dcdcdc", c23: "#fafafa.#ffffff", c24: "#0a0a0a.#141414", c25: "#3c3c3c.#5a5a5a", c26: "#a0140a.#a06e00", c27: "#fa7846.#ff96e6", c28: "#c83c14.#dc46aa", c29: "#e6dc0a.#ffd200", c30: "#dc5a64.#dc46aa", c31: "#f0e650.#ff96e6", c32: "#aa3232.#a06e00", c33: "#825a64.#5a5a5a", c34: "#3c321e.#781450", c35: "#b41e46.#a06e00", c36: "#ffaa82.#ff96e6", c37: "#963c1e.#a06e00", c38: "#644696.#5a5a5a", c39: "#321e50.#141414", c40: "#282832.#141414", c41: "#a03c64.#5a5a5a", c42: "#8c8c3c.#dc46aa", c43: "#dc6478.#ff96e6", c44: "#fab4c8.#dcdcdc", c45: "#c8b40a.#d2960a", c46: "#d2bef0.#dcdcdc", c47: "#464650.#5a5a5a", c48: "#dc2814.#dc46aa", c49: "#fafa46.#ffd200", c50: "#b45028.#dc46aa" },
66 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#6e501e.#6e501e", c6: "#f0e68c.#f0e68c", c7: "#aaa05a.#aaa05a", c8: "#c8be64.#c8be64", c9: "#000000.#000000", c10: "#96bebe.#beb478", c11: "#5a786e.#6e643c", c12: "#aad2c8.#dcdca0", c13: "#284650.#3c3c14", c14: "#f05050.#f05050", c15: "#b40000.#b40000", c16: "#78a0a0.#968c5a", c17: "#ff828c.#ff828c", c18: "#d2503c.#f05050", c19: "#96321e.#6e501e", c20: "#ff7864.#ff828c", c21: "#141414.#000000", c22: "#0a0a0a.#000000", c23: "#d25032.#f05050", c24: "#ffc882.#f0e68c", c25: "#96281e.#6e501e", c26: "#787878.#6e643c", c27: "#c8c8c8.#dcdca0", c28: "#fad23c.#c8be64", c29: "#ffffb4.#f0e68c", c30: "#d2aa0a.#aaa05a", c31: "#fad232.#c8be64", c32: "#a0780a.#6e501e", c33: "#aa820a.#6e501e", c34: "#faaa3c.#c8be64", c35: "#fafafa.#ffffff" },
67 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#644682.#285a00", c6: "#000000.#000000", c7: "#a08cc8.#78a05a", c8: "#8c78b4.#507828", c9: "#bea0e6.#96be78", c10: "#c80000.#0078c8", c11: "#a03c78.#0064a0", c12: "#503c00.#503c00", c13: "#c8be64.#c8be64", c14: "#827828.#827828", c15: "#f0e68c.#f0e68c", c16: "#c8dcf0.#c8dcf0", c17: "#c8bee6.#b4dc96", c18: "#464664.#143c00", c19: "#0a0a0a.#000000", c20: "#5a5a64.#143c00", c21: "#323232.#143c00", c22: "#d2aa78.#c8be64", c23: "#141414.#000000", c24: "#fff0aa.#f0e68c", c25: "#aaaab4.#78a05a", c26: "#fff0b4.#f0e68c", c27: "#d2d2d2.#b4dc96", c28: "#64646e.#285a00", c29: "#464646.#143c00", c30: "#a0646e.#0064a0", c31: "#fab4a0.#f0e68c", c32: "#d28c82.#c8be64", c33: "#6e3c3c.#143c00", c34: "#ffd282.#f0e68c", c35: "#f0d2be.#f0e68c", c36: "#1e78c8.#285a00", c37: "#e6e6e6.#c8dcf0", c38: "#c88278.#c8be64", c39: "#0a3250.#143c00", c40: "#78643c.#827828", c41: "#fadcdc.#ffffff", c42: "#641e1e.#503c00", c43: "#c83232.#0078c8", c44: "#8c4646.#0064a0", c45: "#787878.#285a00", c46: "#dc8296.#78a05a", c47: "#c87882.#0064a0", c48: "#503228.#503c00", c49: "#aa5a3c.#827828", c50: "#a05028.#827828", c51: "#969696.#507828", c52: "#82828c.#507828", c53: "#aa8250.#827828", c54: "#f0c8be.#b4dc96", c55: "#96463c.#827828", c56: "#c84628.#0078c8", c57: "#967850.#827828", c58: "#5a4628.#503c00", c59: "#d2646e.#0064a0", c60: "#3c321e.#503c00" },
68 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c5064.#466e14", c6: "#000000.#000000", c7: "#c8d2dc.#aadc6e", c8: "#aaa03c.#aaa03c", c9: "#827828.#827828", c10: "#a0b4b4.#96be46", c11: "#faf0a0.#faf0a0", c12: "#503c00.#503c00", c13: "#828c96.#6e8c28", c14: "#c8c864.#c8c864", c15: "#c8dcf0.#c8dcf0", c16: "#be0000.#be0000", c17: "#ff463c.#ff463c", c18: "#464664.#324600", c19: "#785a32.#827828", c20: "#141414.#000000", c21: "#e6d2aa.#faf0a0", c22: "#8c8c96.#6e8c28", c23: "#50505a.#324600", c24: "#f0e6dc.#aadc6e", c25: "#b4a078.#c8c864", c26: "#6e6e78.#6e8c28", c27: "#c8c8be.#aadc6e", c28: "#f0e6d2.#aadc6e", c29: "#0a0a0a.#000000", c30: "#e6e6dc.#aadc6e", c31: "#aaaaaa.#96be46", c32: "#e6503c.#ff463c", c33: "#a03214.#be0000", c34: "#32323c.#324600", c35: "#faf0c8.#faf0a0", c36: "#781e14.#503c00", c37: "#6e1e0a.#503c00", c38: "#fff0c8.#faf0a0", c39: "#1e1e1e.#000000", c40: "#78643c.#827828", c41: "#fafafa.#ffffff", c42: "#5a140a.#503c00", c43: "#6e1e14.#503c00", c44: "#3c465a.#466e14", c45: "#505050.#324600", c46: "#968c96.#6e8c28", c47: "#78788c.#6e8c28", c48: "#e6e6e6.#c8dcf0", c49: "#bec8d2.#aadc6e", c50: "#a0b4c8.#96be46", c51: "#dce6e6.#c8dcf0", c52: "#6e5032.#827828", c53: "#bea06e.#c8c864", c54: "#e65032.#ff463c", c55: "#e6d2a0.#faf0a0", c56: "#0a1414.#000000", c57: "#d25a6e.#ff463c", c58: "#e696be.#aadc6e", c59: "#6e1428.#503c00" },
69 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#aa783c.#aa783c", c6: "#fae678.#fffa8c", c7: "#d2be64.#dcc814", c8: "#5a3c00.#5a3c00", c9: "#000000.#000000", c10: "#966e3c.#966e3c", c11: "#b43c32.#aa82a0", c12: "#d2646e.#d2aac8", c13: "#e68c96.#fac8e6", c14: "#781e00.#825a78", c15: "#64a03c.#c8a00a", c16: "#3c6e14.#a06e0a", c17: "#78c850.#dcd23c", c18: "#aaf096.#faff50", c19: "#d24664.#d2aac8", c20: "#ffd2dc.#ffffff", c21: "#be1e32.#aa82a0", c22: "#ffaac8.#fac8e6", c23: "#f078a0.#fac8e6", c24: "#0a0a0a.#000000", c25: "#8c3c3c.#aa82a0", c26: "#fafafa.#ffffff", c27: "#c85a64.#d2aac8", c28: "#ffc8c8.#ffffff", c29: "#141414.#000000", c30: "#dc82a0.#fac8e6", c31: "#c8bec8.#fac8e6", c32: "#646464.#966e3c", c33: "#6e6e6e.#966e3c", c34: "#dcd2d2.#ffffff", c35: "#b4b4b4.#faff50", c36: "#be5a64.#d2aac8", c37: "#fabec8.#fac8e6", c38: "#faaabe.#fac8e6", c39: "#8c323c.#aa82a0", c40: "#ffc8d2.#ffffff", c41: "#be5078.#d2aac8", c42: "#822850.#aa82a0", c43: "#aa141e.#aa82a0", c44: "#dcdcdc.#ffffff", c45: "#e6dcf0.#ffffff", c46: "#281e1e.#000000" },
70 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#644632.#644632", c6: "#a07832.#a07832", c7: "#000000.#000000", c8: "#ffe66e.#dcff5a", c9: "#d2c850.#bec832", c10: "#3ca050.#8cbe0a", c11: "#0a5a32.#648c00", c12: "#a0dc82.#dcff64", c13: "#fffaaa.#faffa0", c14: "#6ec850.#bef032", c15: "#b43c46.#aa788c", c16: "#f0a0aa.#f0c8d2", c17: "#782828.#965a6e", c18: "#c86e82.#c8a0aa", c19: "#6e6e6e.#644632", c20: "#141414.#000000", c21: "#a0d2ff.#ffffff", c22: "#826ea0.#c8a0aa", c23: "#be8cc8.#f0c8d2", c24: "#50286e.#644632", c25: "#3c3c3c.#644632", c26: "#d2d2d2.#f0c8d2", c27: "#0a0a0a.#000000", c28: "#fff096.#faffa0", c29: "#ffc83c.#bec832", c30: "#a0a0a0.#dcff64", c31: "#d2a028.#bec832", c32: "#c80a0a.#aa788c", c33: "#3c6478.#8cbe0a", c34: "#64468c.#644632", c35: "#46646e.#8cbe0a", c36: "#aa4646.#aa788c", c37: "#642828.#965a6e", c38: "#fafafa.#ffffff", c39: "#8c6414.#a07832", c40: "#3c6e78.#8cbe0a", c41: "#641e1e.#965a6e", c42: "#464646.#644632", c43: "#a01414.#965a6e", c44: "#ffdc8c.#dcff5a", c45: "#b48214.#a07832", c46: "#dc828c.#c8a0aa", c47: "#f0b4be.#f0c8d2", c48: "#aa781e.#a07832", c49: "#7828dc.#c8a0aa", c50: "#3c1496.#644632", c51: "#b478ff.#f0c8d2", c52: "#d2b4ff.#ffffff", c53: "#5a5a64.#644632", c54: "#783c64.#644632", c55: "#aa648c.#c8a0aa", c56: "#46283c.#644632", c57: "#969696.#c8a0aa", c58: "#c81e0a.#aa788c", c59: "#a0dcf0.#ffffff", c60: "#c8c8c8.#f0c8d2", c61: "#ffd23c.#bec832", c62: "#aac8d2.#dcff64", c63: "#8c640a.#a07832" },
71 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#46a078.#a0965a", c6: "#645028.#645028", c7: "#000000.#000000", c8: "#14643c.#645014", c9: "#8cc878.#c8b45a", c10: "#a07832.#a07832", c11: "#821400.#0028a0", c12: "#c85a1e.#285ac8", c13: "#f08c50.#468cfa", c14: "#bec8c8.#bec8c8", c15: "#dcbe50.#b4e63c", c16: "#f0d26e.#dcff5a", c17: "#faf096.#e6ff82", c18: "#6e6e6e.#a0965a", c19: "#141414.#000000", c20: "#d2d2d2.#bec8c8", c21: "#aaaaaa.#bec8c8", c22: "#c8960a.#285ac8", c23: "#825046.#645028", c24: "#ffc80a.#b4e63c", c25: "#50280a.#645028", c26: "#c8a064.#b4e63c", c27: "#ffe696.#e6ff82", c28: "#ff7828.#468cfa", c29: "#e6280a.#285ac8", c30: "#0a0a0a.#000000", c31: "#b48246.#a07832", c32: "#646464.#645028", c33: "#fafafa.#ffffff", c34: "#be8c0a.#a07832", c35: "#fae696.#e6ff82", c36: "#fac80a.#b4e63c", c37: "#ffd20a.#b4e63c", c38: "#c8c8c8.#bec8c8", c39: "#dcbe6e.#dcff5a", c40: "#dc280a.#285ac8", c41: "#fa7828.#468cfa", c42: "#64646e.#a0965a", c43: "#828c8c.#c8b45a", c44: "#a00a0a.#0028a0", c45: "#d2a064.#b4e63c", c46: "#828282.#a0965a", c47: "#643c32.#645028", c48: "#aa3214.#285ac8", c49: "#503c28.#645028", c50: "#323232.#645028", c51: "#1e1e28.#000000", c52: "#503c0a.#645028", c53: "#3c3c3c.#645028", c54: "#c88c0a.#285ac8", c55: "#aa7850.#a07832", c56: "#825028.#645028", c57: "#50505a.#645028", c58: "#dc0a0a.#285ac8", c59: "#f03c3c.#285ac8", c60: "#280a0a.#000000", c61: "#140a0a.#000000", c62: "#643c1e.#645028", c63: "#fffafa.#ffffff", c64: "#960a0a.#0028a0", c65: "#5a3c28.#645028", c66: "#6e3c3c.#645028", c67: "#32323c.#645014", c68: "#643214.#645028", c69: "#6e3c32.#645028", c70: "#3c3228.#645028" },
72 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c96aa.#9678aa", c6: "#1e5082.#504678", c7: "#6eb4e6.#c8b4e6", c8: "#6e1414.#006414", c9: "#b4281e.#00a050", c10: "#82d2fa.#e6d2ff", c11: "#ffc8be.#46fabe", c12: "#000000.#000000", c13: "#ff5046.#14c88c", c14: "#d2d2d2.#d2d2d2", c15: "#50501e.#50501e", c16: "#82823c.#82823c", c17: "#b4aa78.#b4aa78", c18: "#d2c896.#d2c896", c19: "#505050.#50501e", c20: "#141414.#000000", c21: "#323c8c.#504678", c22: "#bef0ff.#d2d2d2", c23: "#5a78d2.#9678aa", c24: "#78beff.#e6d2ff", c25: "#785ab4.#9678aa", c26: "#503c78.#504678", c27: "#bebebe.#d2d2d2", c28: "#c896dc.#d2d2d2", c29: "#aa6ed2.#c8b4e6", c30: "#0a0a0a.#000000", c31: "#828282.#b4aa78", c32: "#dcdcdc.#d2d2d2", c33: "#fafafa.#ffffff", c34: "#3c3232.#50501e", c35: "#f01e28.#14c88c", c36: "#504646.#50501e", c37: "#8c0a14.#006414", c38: "#8c32e6.#c8b4e6", c39: "#be96ff.#d2d2d2", c40: "#aa6eff.#c8b4e6", c41: "#50288c.#504678", c42: "#d21414.#00a050", c43: "#503c8c.#504678", c44: "#5a5a78.#504678", c45: "#6e3c78.#504678", c46: "#64466e.#504678", c47: "#6e5a6e.#82823c", c48: "#506e6e.#504678", c49: "#503250.#50501e", c50: "#dce6d2.#d2d2d2", c51: "#a00a0a.#00a050", c52: "#be3c3c.#00a050", c53: "#508cc8.#9678aa", c54: "#283c8c.#504678", c55: "#50c8ff.#c8b4e6", c56: "#643282.#504678", c57: "#8c50b4.#9678aa", c58: "#b464dc.#c8b4e6", c59: "#8c5ab4.#9678aa", c60: "#a082dc.#c8b4e6", c61: "#c8aaf0.#d2d2d2", c62: "#785aaa.#9678aa", c63: "#d2b4ff.#d2d2d2", c64: "#bea0b4.#d2c896", c65: "#6e788c.#9678aa", c66: "#d2dcdc.#d2d2d2", c67: "#b4b4be.#d2d2d2", c68: "#a0e6ff.#e6d2ff", c69: "#3c5064.#504678", c70: "#d20a0a.#00a050", c71: "#1e140a.#000000", c72: "#96e6fa.#e6d2ff", c73: "#6496a0.#9678aa", c74: "#282828.#50501e", c75: "#323c50.#504678", c76: "#d2fafa.#ffffff", c77: "#6482a0.#9678aa", c78: "#fafaf0.#ffffff", c79: "#f0faf0.#ffffff", c80: "#46508c.#504678", c81: "#a0c8e6.#e6d2ff", c82: "#bee6ff.#d2d2d2", c83: "#505a5a.#50501e", c84: "#6e828c.#9678aa", c85: "#aa5a64.#82823c", c86: "#647882.#9678aa", c87: "#4682b4.#9678aa", c88: "#284678.#504678", c89: "#5abed2.#c8b4e6", c90: "#7846c8.#9678aa", c91: "#a06ee6.#c8b4e6", c92: "#463278.#504678" },
73 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#1e5082.#5064a0", c6: "#3c96aa.#7882c8", c7: "#6eb4e6.#a0aae6", c8: "#82c8e6.#c8e6ff", c9: "#141414.#141414", c10: "#821414.#506428", c11: "#fa3c50.#96c882", c12: "#b4281e.#64a05a", c13: "#ffbeaa.#bee6aa", c14: "#bebebe.#d2d2d2", c15: "#50505a.#5a501e", c16: "#786e78.#beaa78", c17: "#a096a0.#f0d2a0", c18: "#465a3c.#5a501e", c19: "#aac8a0.#d2d2d2", c20: "#78a064.#beaa78", c21: "#d2e6d2.#d2d2d2", c22: "#d2e6c8.#d2d2d2", c23: "#aad2a0.#d2d2d2", c24: "#281e0a.#141414", c25: "#6e1e0a.#506428", c26: "#be3c1e.#64a05a", c27: "#0a0a0a.#141414", c28: "#ffa05a.#bee6aa", c29: "#32323c.#5a501e", c30: "#fafafa.#ffffff", c31: "#d2d2dc.#d2d2d2", c32: "#b4bec8.#d2d2d2", c33: "#f05028.#96c882", c34: "#dc6e96.#f0d2a0", c35: "#ffaa5a.#bee6aa", c36: "#465a32.#5a501e", c37: "#b4dc96.#d2d2d2", c38: "#8caa78.#f0d2a0", c39: "#dc3246.#96c882", c40: "#780a0a.#506428", c41: "#fa786e.#96c882" },
74 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#6e6e50.#be7800", c6: "#3c3c32.#a03c00", c7: "#b4b4a0.#fac80a", c8: "#a09682.#d29600", c9: "#141414.#141414", c10: "#c8d2aa.#fff032", c11: "#c8dcc8.#c8dcc8", c12: "#96a0a0.#96a0a0", c13: "#1e506e.#a03c00", c14: "#285a82.#a03c00", c15: "#78a0c8.#96a0a0", c16: "#bee6ff.#c8dcc8", c17: "#3c78aa.#96a0a0", c18: "#8cc8f0.#c8dcc8", c19: "#0a0a0a.#141414", c20: "#3c3c64.#a03c00", c21: "#143c5a.#a03c00", c22: "#4678aa.#96a0a0", c23: "#aaaaaa.#fac80a", c24: "#b43c0a.#be7800", c25: "#f06414.#be7800", c26: "#fafafa.#ffffff", c27: "#787878.#be7800", c28: "#b4460a.#be7800" },
75 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#463c32.#5a1400", c6: "#000000.#000000", c7: "#b4b4a0.#be8200", c8: "#968c78.#a05a00", c9: "#6e6e50.#783c00", c10: "#d2d2aa.#c8aa1e", c11: "#dcd2dc.#dcd2dc", c12: "#827882.#827882", c13: "#78a064.#a05a00", c14: "#465a3c.#5a1400", c15: "#dce6c8.#dcd2dc", c16: "#141414.#000000", c17: "#0a0a0a.#000000", c18: "#aac8a0.#be8200", c19: "#dce6d2.#dcd2dc", c20: "#aad2a0.#be8200", c21: "#d2500a.#783c00", c22: "#96280a.#5a1400", c23: "#6ea064.#a05a00", c24: "#aac896.#be8200", c25: "#787878.#827882", c26: "#c8c8c8.#dcd2dc", c27: "#781e0a.#5a1400", c28: "#6e965a.#783c00", c29: "#283228.#5a1400", c30: "#648250.#783c00", c31: "#646464.#783c00", c32: "#fafafa.#ffffff", c33: "#d2dcc8.#dcd2dc", c34: "#46a0e6.#827882", c35: "#1e78be.#827882", c36: "#0a468c.#5a1400", c37: "#786e78.#827882", c38: "#506e32.#783c00", c39: "#6e2828.#5a1400", c40: "#82a064.#a05a00", c41: "#b4beb4.#be8200", c42: "#aa4650.#783c00", c43: "#96c8f0.#dcd2dc", c44: "#78826e.#827882", c45: "#5a321e.#5a1400", c46: "#dca050.#a05a00", c47: "#b4783c.#a05a00", c48: "#825032.#783c00", c49: "#465a32.#5a1400", c50: "#6e82b4.#827882", c51: "#465a78.#783c00", c52: "#96aad2.#be8200", c53: "#64b4ff.#be8200" },
76 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c4614.#783c00", c6: "#646e1e.#96640a", c7: "#141414.#141414", c8: "#b4be64.#d2aa50", c9: "#8c963c.#b48c32", c10: "#5a4614.#8c6446", c11: "#d2b45a.#e6c8a0", c12: "#a08c50.#c8a078", c13: "#c8c8c8.#c8c8c8", c14: "#787878.#787878", c15: "#fadc8c.#f0dcc8", c16: "#ff5050.#ff5050", c17: "#b40000.#b40000", c18: "#647878.#787878", c19: "#a0aae6.#c8c8c8", c20: "#d2e6fa.#ffffff", c21: "#0a0a0a.#141414", c22: "#bed2e6.#c8c8c8", c23: "#b4c8fa.#c8c8c8", c24: "#28328c.#787878", c25: "#505aaa.#787878", c26: "#6482a0.#787878", c27: "#e6e6f0.#ffffff", c28: "#fafafa.#ffffff", c29: "#dce6f0.#ffffff", c30: "#8282c8.#787878", c31: "#141e50.#141414", c32: "#bec8ff.#c8c8c8", c33: "#a03c46.#c8a078", c34: "#f0463c.#ff5050", c35: "#1e1e64.#141414", c36: "#0a64be.#787878", c37: "#0a3c82.#141414", c38: "#b4321e.#b40000", c39: "#5a78ff.#787878", c40: "#dcdcf0.#c8c8c8", c41: "#1e1414.#141414", c42: "#640a1e.#8c6446", c43: "#78a0fa.#c8c8c8", c44: "#960a28.#b40000", c45: "#3c4696.#787878", c46: "#282828.#141414", c47: "#4664dc.#787878", c48: "#3c468c.#787878", c49: "#465adc.#787878", c50: "#0a0a14.#141414", c51: "#14141e.#141414", c52: "#6478aa.#787878", c53: "#96aadc.#c8c8c8", c54: "#6e6eb4.#787878", c55: "#5a141e.#8c6446", c56: "#821428.#8c6446", c57: "#8282be.#787878", c58: "#a06464.#c8a078", c59: "#d28278.#e6c8a0", c60: "#fab4b4.#f0dcc8", c61: "#bec8fa.#c8c8c8", c62: "#0a466e.#783c00", c63: "#963c0a.#8c6446", c64: "#0a64b4.#787878", c65: "#5a6efa.#787878", c66: "#e6965a.#e6c8a0", c67: "#dce6fa.#ffffff", c68: "#646e78.#787878", c69: "#b4bef0.#c8c8c8", c70: "#d2dcf0.#c8c8c8", c71: "#a03c0a.#b40000", c72: "#f05a0a.#ff5050", c73: "#c85032.#ff5050", c74: "#f08278.#e6c8a0", c75: "#28288c.#787878", c76: "#46505a.#787878", c77: "#b4dcdc.#c8c8c8", c78: "#a03246.#8c6446", c79: "#f04632.#ff5050", c80: "#aabef0.#c8c8c8", c81: "#788cf0.#c8c8c8", c82: "#f09696.#f0dcc8", c83: "#b43c50.#ff5050", c84: "#5078b4.#787878" },
77 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#e65a28.#4696f0", c6: "#ffa014.#78aafa", c7: "#ffdc50.#c8dcff", c8: "#f03232.#285ae6", c9: "#8c5032.#b48278", c10: "#783232.#82503c", c11: "#fff0c8.#ffffdc", c12: "#000000.#000000", c13: "#e6c88c.#f0dca0", c14: "#c8a06e.#c8aa78", c15: "#3c4682.#3c4650", c16: "#7878a0.#787882", c17: "#c8c8d2.#c8c8c8", c18: "#141414.#000000", c19: "#3c3c46.#3c4650", c20: "#505064.#3c4650", c21: "#dcdcdc.#c8c8c8", c22: "#fafafa.#ffffff", c23: "#64320a.#82503c", c24: "#fffaa0.#ffffdc", c25: "#787882.#787882", c26: "#a0823c.#b48278", c27: "#fae650.#c8dcff", c28: "#d2b446.#c8aa78", c29: "#82641e.#b48278", c30: "#aa8c1e.#b48278", c31: "#322828.#82503c", c32: "#fabe1e.#78aafa", c33: "#a0500a.#b48278", c34: "#dc960a.#78aafa", c35: "#282828.#000000", c36: "#28140a.#000000", c37: "#0a0a0a.#000000", c38: "#fa4646.#285ae6", c39: "#e65a46.#4696f0", c40: "#c81e14.#285ae6", c41: "#e69682.#c8aa78", c42: "#50505a.#3c4650", c43: "#bebebe.#c8c8c8", c44: "#288232.#3c4650", c45: "#fff050.#c8dcff", c46: "#ffbe1e.#78aafa", c47: "#464646.#82503c", c48: "#faf0a0.#ffffdc", c49: "#e65a3c.#4696f0", c50: "#dc283c.#285ae6", c51: "#46280a.#82503c", c52: "#961432.#82503c", c53: "#78280a.#82503c", c54: "#aa323c.#b48278", c55: "#f05a46.#4696f0", c56: "#8c6428.#b48278", c57: "#d21e14.#285ae6", c58: "#326414.#82503c", c59: "#64c832.#c8aa78", c60: "#469628.#b48278", c61: "#14320a.#000000", c62: "#0a8ce6.#3c4650", c63: "#5ab4fa.#787882", c64: "#143cc8.#3c4650", c65: "#3c5ae6.#787882", c66: "#82140a.#82503c", c67: "#b44650.#b48278", c68: "#f08282.#c8aa78", c69: "#d27864.#c8aa78", c70: "#fafa82.#f0dca0", c71: "#fffaff.#ffffff", c72: "#b48c50.#c8aa78", c73: "#c8820a.#4696f0", c74: "#f0dc78.#f0dca0", c75: "#504650.#82503c", c76: "#fffad2.#ffffdc", c77: "#963c3c.#b48278", c78: "#d23c50.#285ae6", c79: "#d26e6e.#c8aa78", c80: "#f08278.#c8aa78", c81: "#faf078.#c8dcff", c82: "#c8be82.#f0dca0", c83: "#ff463c.#285ae6", c84: "#ffbe0a.#78aafa", c85: "#fae628.#c8dcff", c86: "#e6960a.#78aafa", c87: "#d21e0a.#285ae6", c88: "#aa500a.#b48278", c89: "#6e4628.#82503c", c90: "#fa5a32.#4696f0", c91: "#c86e6e.#c8aa78", c92: "#fadc50.#c8dcff", c93: "#64280a.#82503c", c94: "#fabe14.#78aafa" },
78 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#e66428.#828296", c6: "#ffa014.#a0a0aa", c7: "#ffdc50.#c8c8dc", c8: "#783232.#82503c", c9: "#ffe6c8.#fffad2", c10: "#8c5032.#a07846", c11: "#dc1414.#6e6e78", c12: "#c8966e.#beaa6e", c13: "#f0c88c.#f0dca0", c14: "#000000.#000000", c15: "#c8c8c8.#c8c8c8", c16: "#3c4650.#3c4650", c17: "#787882.#787882", c18: "#a0640a.#a07846", c19: "#141414.#000000", c20: "#466e3c.#3c4650", c21: "#fffaaa.#fffad2", c22: "#ffdc0a.#a0a0aa", c23: "#149614.#3c4650", c24: "#464646.#3c4650", c25: "#3cd250.#787882", c26: "#fff082.#f0dca0", c27: "#0a1414.#000000", c28: "#b4ffbe.#c8c8c8", c29: "#dcaa0a.#a0a0aa", c30: "#be3c14.#6e6e78", c31: "#960a0a.#82503c", c32: "#ffaa0a.#a0a0aa", c33: "#ff5a14.#828296", c34: "#50643c.#3c4650", c35: "#6ea046.#787882", c36: "#3c3c46.#3c4650", c37: "#8c3c28.#a07846", c38: "#78321e.#82503c", c39: "#e65032.#828296", c40: "#8cc850.#beaa6e", c41: "#b44628.#a07846", c42: "#646e6e.#787882", c43: "#0a0a0a.#000000", c44: "#dce6e6.#fffad2", c45: "#46d250.#787882", c46: "#dc5014.#828296", c47: "#6e6e6e.#787882", c48: "#a0ffaa.#c8c8c8", c49: "#146414.#3c4650", c50: "#969696.#787882", c51: "#6e461e.#82503c", c52: "#d24614.#828296", c53: "#d2d2d2.#c8c8c8", c54: "#fafafa.#ffffff", c55: "#fa3c14.#828296", c56: "#0a0a14.#000000", c57: "#3c3c3c.#3c4650", c58: "#d2788c.#beaa6e", c59: "#f08296.#beaa6e", c60: "#0a640a.#3c4650", c61: "#be4614.#828296", c62: "#148c14.#3c4650", c63: "#96f0aa.#c8c8c8", c64: "#32b43c.#3c4650", c65: "#283c5a.#3c4650", c66: "#465a78.#3c4650", c67: "#648ca0.#787882", c68: "#1eaa14.#3c4650", c69: "#64d21e.#787882", c70: "#82280a.#82503c", c71: "#ff5a32.#828296", c72: "#323c50.#3c4650", c73: "#f0f0f0.#ffffff", c74: "#3c6e3c.#3c4650", c75: "#78c846.#787882", c76: "#c83c14.#6e6e78", c77: "#b4281e.#6e6e78", c78: "#8c1e1e.#82503c", c79: "#a0faaa.#c8c8c8", c80: "#aafaaa.#c8c8c8", c81: "#ff6e5a.#828296", c82: "#ff320a.#6e6e78", c83: "#a0aaaa.#c8c8c8", c84: "#d23214.#6e6e78", c85: "#78d246.#beaa6e", c86: "#96640a.#a07846", c87: "#fadcbe.#fffad2", c88: "#dc9614.#a0a0aa", c89: "#140a0a.#000000", c90: "#aa641e.#a07846", c91: "#ffff82.#f0dca0", c92: "#fac832.#c8c8dc", c93: "#1e1e0a.#000000", c94: "#ffb414.#a0a0aa", c95: "#b4280a.#6e6e78", c96: "#783c1e.#82503c", c97: "#78461e.#82503c", c98: "#ff8c64.#beaa6e", c99: "#466478.#3c4650" },
79 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#6e6464.#6e6464", c6: "#dc6478.#c88ca0", c7: "#aa3c50.#aa7878", c8: "#ffa0a0.#ffd2e6", c9: "#ff8296.#e6b4c8", c10: "#d2c8c8.#d2c8c8", c11: "#141414.#141414", c12: "#781e32.#824650", c13: "#dca064.#dcb45a", c14: "#8c5a14.#8c6e14", c15: "#f0c88c.#f0d282", c16: "#ffe6b4.#fffab4", c17: "#8c3c3c.#aa7878", c18: "#e67878.#c88ca0", c19: "#f05a32.#c88ca0", c20: "#ff825a.#dcb45a", c21: "#ffaaaa.#ffd2e6", c22: "#ffe6e6.#ffffff", c23: "#ffd2d2.#fffab4", c24: "#0a0a0a.#141414", c25: "#fafafa.#ffffff", c26: "#f06e8c.#e6b4c8", c27: "#ffd2dc.#fffab4", c28: "#faa0a0.#ffd2e6", c29: "#f07878.#c88ca0", c30: "#c8bec8.#d2c8c8", c31: "#646464.#6e6464", c32: "#786e46.#6e6464", c33: "#e6dcbe.#fffab4", c34: "#aaa078.#dcb45a", c35: "#faa0b4.#ffd2e6", c36: "#dc7882.#c88ca0", c37: "#fadcdc.#fffab4", c38: "#fad2dc.#fffab4", c39: "#f0a096.#ffd2e6", c40: "#f0a0b4.#ffd2e6", c41: "#aaa06e.#dcb45a", c42: "#6e6446.#6e6464", c43: "#dcdcb4.#d2c8c8", c44: "#8c4646.#aa7878", c45: "#e67882.#c88ca0" },
80 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#783232.#6e3caa", c6: "#e66e78.#826ebe", c7: "#ff9696.#aa96ff", c8: "#141414.#141414", c9: "#ffbeaa.#c8beff", c10: "#dcdcd2.#e6c864", c11: "#50505a.#785028", c12: "#8c9696.#a07828", c13: "#825a1e.#785a28", c14: "#fff0b4.#faf0be", c15: "#f0d282.#e6c88c", c16: "#b4bebe.#c8aa46", c17: "#c8a064.#c8a06e", c18: "#e65028.#e65028", c19: "#b4c85a.#c8a06e", c20: "#508caa.#a07828", c21: "#ffffdc.#ffffff", c22: "#c8dce6.#e6c864", c23: "#8cb4c8.#c8aa46", c24: "#dcf096.#e6c88c", c25: "#78823c.#785a28", c26: "#0a64b4.#785028", c27: "#0a0a0a.#141414", c28: "#46781e.#785a28", c29: "#a0dc50.#c8a06e", c30: "#78a032.#785a28", c31: "#6e7882.#a07828", c32: "#fafafa.#ffffff", c33: "#325014.#141414", c34: "#501e28.#6e3caa", c35: "#963246.#6e3caa", c36: "#dc5a5a.#826ebe", c37: "#3c5a1e.#785028", c38: "#0aa0e6.#a07828", c39: "#befa96.#e6c88c", c40: "#0a3c6e.#785028", c41: "#a0505a.#6e3caa", c42: "#dc7882.#826ebe", c43: "#78a028.#785a28", c44: "#466414.#785a28", c45: "#a0e646.#c8a06e", c46: "#0a50b4.#785028", c47: "#bedcf0.#e6c864", c48: "#5082b4.#a07828", c49: "#f0ffdc.#ffffff", c50: "#c8f096.#e6c88c", c51: "#8c9646.#c8a06e", c52: "#5a8228.#785a28", c53: "#6e963c.#785a28", c54: "#78aa46.#a07828", c55: "#f0f0f0.#ffffff", c56: "#82b4d2.#c8aa46", c57: "#fafaf0.#ffffff", c58: "#50141e.#6e3caa", c59: "#96283c.#6e3caa", c60: "#b4b4be.#c8aa46", c61: "#146ee6.#a07828" },
81 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#8c8c8c.#8c8c8c", c6: "#b4b4b4.#b4b4b4", c7: "#d2d2d2.#d2d2d2", c8: "#504646.#504646", c9: "#3c3232.#3c3232", c10: "#141414.#141414", c11: "#2882aa.#1e1e1e", c12: "#5a8264.#968c50", c13: "#8cb4a0.#c8b496", c14: "#d2fadc.#ffffc8", c15: "#b4d2be.#e6dcaa", c16: "#f01400.#1e1e1e", c17: "#32468c.#1e1e1e", c18: "#6eb4ff.#c8b496", c19: "#64a0fa.#c8b496", c20: "#4678e6.#1e1e1e", c21: "#a0d2ff.#d2d2d2", c22: "#1e285a.#3c3232", c23: "#3c6ed2.#1e1e1e", c24: "#fafafa.#ffffff", c25: "#0a0a0a.#141414", c26: "#be3c8c.#8c8c8c", c27: "#dc5a96.#8c8c8c", c28: "#dcf0ff.#ffffc8", c29: "#aadcfa.#d2d2d2", c30: "#dce6fa.#ffffc8", c31: "#0a3c5a.#3c3232", c32: "#50b4dc.#1e1e1e", c33: "#bebec8.#b4b4b4", c34: "#3c64d2.#1e1e1e", c35: "#96d2fa.#e6dcaa", c36: "#64b4fa.#c8b496", c37: "#8c2864.#504646", c38: "#6496f0.#1e1e1e", c39: "#dc5a8c.#8c8c8c", c40: "#b43c8c.#8c8c8c", c41: "#4678dc.#1e1e1e", c42: "#3c5abe.#1e1e1e", c43: "#323c5a.#504646", c44: "#3c78ff.#1e1e1e", c45: "#5a96fa.#1e1e1e", c46: "#be463c.#1e1e1e", c47: "#dc645a.#8c8c8c", c48: "#f07878.#8c8c8c", c49: "#32465a.#504646", c50: "#4678ff.#1e1e1e", c51: "#be4646.#1e1e1e" },
82 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c3232.#3c3232", c6: "#d2d2d2.#d2d2d2", c7: "#8c8c8c.#8c8c8c", c8: "#504646.#504646", c9: "#141414.#141414", c10: "#b4b4b4.#b4b4b4", c11: "#f01400.#1e1e1e", c12: "#ff8c46.#5a5a5a", c13: "#5a8264.#968c50", c14: "#b4d2be.#e6dcaa", c15: "#d2fadc.#ffffc8", c16: "#8cb4a0.#c8b496", c17: "#2882aa.#1e1e1e", c18: "#50c8fa.#5a5a5a", c19: "#3c78a0.#1e1e1e", c20: "#a0d2f0.#e6dcaa", c21: "#3c5064.#504646", c22: "#6ebedc.#5a5a5a", c23: "#0a0a0a.#141414", c24: "#46a0be.#1e1e1e", c25: "#4696b4.#1e1e1e", c26: "#96d2e6.#e6dcaa", c27: "#64b4dc.#5a5a5a", c28: "#284650.#3c3232", c29: "#a0323c.#504646", c30: "#78283c.#504646", c31: "#dc5a64.#5a5a5a", c32: "#3c6e96.#1e1e1e", c33: "#fafafa.#ffffff", c34: "#827878.#8c8c8c", c35: "#c8c8c8.#d2d2d2", c36: "#c8c8be.#e6dcaa", c37: "#3c3c3c.#3c3232", c38: "#1e82d2.#1e1e1e", c39: "#143c64.#3c3232", c40: "#82c8fa.#5a5a5a", c41: "#3cb4f0.#5a5a5a", c42: "#0a0a14.#141414", c43: "#a03232.#504646", c44: "#782832.#504646", c45: "#322828.#3c3232", c46: "#d26464.#5a5a5a", c47: "#6e6e6e.#968c50", c48: "#d2d2c8.#d2d2d2" },
83 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#826e1e.#c86e5a", c6: "#5a3c00.#6e3c32", c7: "#b49650.#e68c78", c8: "#141414.#141414", c9: "#00a01e.#78a01e", c10: "#e6e6a0.#f0e6a0", c11: "#3cdc3c.#aae646", c12: "#c8c882.#c8c878", c13: "#d2d2d2.#d2d2d2", c14: "#dcbe78.#dcbe78", c15: "#c8ff8c.#e6ff96", c16: "#ffdc6e.#ffd278", c17: "#fab43c.#ffb446", c18: "#be7814.#c8781e", c19: "#aa503c.#c86e5a", c20: "#78463c.#c86e5a", c21: "#784646.#c86e5a", c22: "#ff785a.#ffb446", c23: "#d25a3c.#c8781e", c24: "#aa5046.#c86e5a", c25: "#501e6e.#141414", c26: "#5a1482.#141414", c27: "#823caa.#e68c78", c28: "#b464e6.#d2d2d2", c29: "#0a0a0a.#141414", c30: "#8228be.#e68c78", c31: "#aa46e6.#d2d2d2", c32: "#963cd2.#e68c78", c33: "#fff0a0.#f0e6a0", c34: "#8c6e46.#c86e5a", c35: "#8c6e3c.#c86e5a", c36: "#be9678.#e68c78", c37: "#a046c8.#e68c78", c38: "#a0783c.#e68c78", c39: "#f0503c.#c8781e", c40: "#f0d278.#ffd278", c41: "#ff6450.#ffb446", c42: "#c8a05a.#e68c78", c43: "#c83228.#c8781e", c44: "#aaaaa0.#c8c878", c45: "#faffff.#ffffff", c46: "#dcdcc8.#d2d2d2", c47: "#5a3228.#6e3c32" },
84 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#503c14.#5a7800", c6: "#dcaa78.#c8e664", c7: "#966e5a.#78961e", c8: "#be8c50.#aac83c", c9: "#a08246.#a0a046", c10: "#646464.#646464", c11: "#141414.#141414", c12: "#645014.#646414", c13: "#f0dcaa.#f0e6aa", c14: "#dcbe8c.#dcc88c", c15: "#5a3c64.#646464", c16: "#825082.#646464", c17: "#321e3c.#141414", c18: "#b464b4.#78961e", c19: "#463c5a.#646464", c20: "#0a0a0a.#141414", c21: "#6e4696.#646464", c22: "#5a1e3c.#5a7800", c23: "#aa5082.#78961e", c24: "#8c3264.#78961e", c25: "#c86496.#c8e664", c26: "#5a4664.#646464", c27: "#503c5a.#646464", c28: "#5a466e.#646464", c29: "#6e5096.#646464", c30: "#c8a00a.#aac83c", c31: "#963c5a.#78961e", c32: "#fadc3c.#c8e664", c33: "#f03c14.#aac83c", c34: "#32283c.#5a7800", c35: "#f0ffff.#ffffff", c36: "#d2a00a.#aac83c", c37: "#f06e50.#aac83c", c38: "#782846.#5a7800", c39: "#dc7896.#c8e664", c40: "#281428.#141414", c41: "#6e468c.#646464", c42: "#463250.#5a7800", c43: "#fafafa.#ffffff", c44: "#96325a.#78961e", c45: "#f0320a.#aac83c", c46: "#fadc32.#c8e664", c47: "#ffdc0a.#aac83c" },
85 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c3c3c.#3c3c3c", c6: "#828282.#828282", c7: "#000000.#000000", c8: "#5a3c1e.#466e00", c9: "#c8a050.#a0be32", c10: "#a0785a.#788c14", c11: "#d2c8c8.#d2c8c8", c12: "#645a3c.#a06e00", c13: "#f0dcaa.#fffa8c", c14: "#b4a078.#dca03c", c15: "#f0c878.#c8dc5a", c16: "#b43c3c.#b43c3c", c17: "#fa82a0.#fa82a0", c18: "#ffd2e6.#ffd2e6", c19: "#1e1e3c.#3c3c3c", c20: "#28468c.#3c3c3c", c21: "#0a0a0a.#000000", c22: "#282864.#3c3c3c", c23: "#141414.#000000", c24: "#506eaa.#828282", c25: "#3c3c5a.#3c3c3c", c26: "#3c5aa0.#828282", c27: "#32466e.#3c3c3c", c28: "#281e3c.#3c3c3c", c29: "#b41e1e.#b43c3c", c30: "#821e3c.#466e00", c31: "#461e1e.#466e00", c32: "#3c64a0.#828282", c33: "#323c64.#3c3c3c", c34: "#28283c.#3c3c3c", c35: "#dc505a.#b43c3c", c36: "#8c323c.#b43c3c", c37: "#5a5a3c.#a06e00", c38: "#fadc3c.#c8dc5a", c39: "#78501e.#466e00", c40: "#d28c1e.#a0be32", c41: "#a0a0b4.#dca03c", c42: "#aa963c.#a0be32", c43: "#8c8caa.#828282", c44: "#6e6e78.#828282", c45: "#c8c8dc.#d2c8c8", c46: "#505050.#a06e00", c47: "#f0f0fa.#ffffff", c48: "#32323c.#3c3c3c", c49: "#c8c8c8.#d2c8c8", c50: "#5a2832.#466e00", c51: "#e6e6f0.#ffd2e6", c52: "#3c3c50.#3c3c3c", c53: "#282828.#3c3c3c" },
86 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c5082.#827878", c6: "#e6e6fa.#f0f0e6", c7: "#96a0b4.#b4aaa0", c8: "#d2c8f0.#d2d2c8", c9: "#141414.#141414", c10: "#6e5a14.#6e5a14", c11: "#b4963c.#b4963c", c12: "#fae6be.#fae6be", c13: "#dcc878.#d2be6e", c14: "#d2785a.#d2785a", c15: "#8c321e.#8c321e", c16: "#ffaaaa.#ffaaaa", c17: "#325a14.#6e5a14", c18: "#5a8c5a.#827878", c19: "#a0dc78.#d2be6e", c20: "#46c83c.#b4963c", c21: "#0a0a0a.#141414", c22: "#46c846.#b4963c", c23: "#285a14.#6e5a14", c24: "#826e3c.#6e5a14", c25: "#503c32.#6e5a14", c26: "#aa825a.#b4963c", c27: "#504632.#6e5a14", c28: "#826e46.#6e5a14", c29: "#c8a046.#b4963c", c30: "#503c28.#6e5a14", c31: "#fff078.#d2be6e", c32: "#fad23c.#d2be6e", c33: "#fac83c.#d2be6e", c34: "#a03c46.#8c321e", c35: "#dc5a64.#d2785a", c36: "#a04646.#8c321e", c37: "#fad232.#d2be6e" },
87 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#6e78a0.#969678", c6: "#e6e6fa.#fafae6", c7: "#3c5064.#646446", c8: "#d2c8f0.#d2d2c8", c9: "#a0a0be.#b4b4a0", c10: "#141414.#141414", c11: "#827878.#827878", c12: "#d2c8c8.#d2c8c8", c13: "#a00000.#a00000", c14: "#d2281e.#d2281e", c15: "#28325a.#646446", c16: "#6e646e.#827878", c17: "#506ed2.#969678", c18: "#dcd2dc.#d2d2c8", c19: "#beaabe.#b4b4a0", c20: "#fafafa.#ffffff", c21: "#0a0a0a.#141414", c22: "#324696.#646446", c23: "#645a64.#646446", c24: "#32468c.#646446", c25: "#781e46.#646446", c26: "#5064d2.#969678", c27: "#dc78aa.#b4b4a0", c28: "#ffc8d2.#d2c8c8", c29: "#c81e46.#d2281e", c30: "#f05a3c.#d2281e", c31: "#6e1e46.#646446", c32: "#e65a3c.#d2281e", c33: "#3c3c46.#646446", c34: "#144678.#646446", c35: "#143246.#646446", c36: "#466ea0.#969678", c37: "#6e3c32.#646446", c38: "#ffc8c8.#d2c8c8", c39: "#dca0a0.#d2c8c8", c40: "#c86464.#827878", c41: "#ffa0c8.#d2c8c8" },
88 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5a3278.#467828", c6: "#9646a0.#64963c", c7: "#c88cc8.#a0c882", c8: "#f0aae6.#bee696", c9: "#be78be.#82b464", c10: "#141414.#141414", c11: "#d2d2dc.#d2d2dc", c12: "#3c465a.#3c465a", c13: "#828ca0.#828ca0", c14: "#aab4be.#aab4be", c15: "#b45a6e.#64963c", c16: "#ffbec8.#bee696", c17: "#a05a78.#64963c", c18: "#ffc8d2.#bee696", c19: "#0a0a0a.#141414", c20: "#ff9696.#a0c882", c21: "#78323c.#467828", c22: "#c88ca0.#82b464", c23: "#be8ca0.#82b464", c24: "#fabed2.#bee696", c25: "#aa466e.#64963c", c26: "#8c1e28.#467828", c27: "#f0506e.#82b464", c28: "#c8325a.#64963c", c29: "#783c5a.#467828", c30: "#dc6ea0.#82b464", c31: "#a05078.#64963c", c32: "#6e3c5a.#467828", c33: "#dc6496.#82b464", c34: "#78283c.#467828", c35: "#b46478.#64963c", c36: "#d26478.#82b464", c37: "#b4465a.#64963c", c38: "#f096b4.#a0c882", c39: "#e66478.#82b464", c40: "#fafafa.#ffffff", c41: "#828282.#828ca0", c42: "#aaaaaa.#aab4be", c43: "#d24664.#64963c", c44: "#e6dcfa.#d2d2dc", c45: "#c8bec8.#d2d2dc", c46: "#b4b4b4.#aab4be", c47: "#f08ca0.#a0c882", c48: "#d2bec8.#d2d2dc", c49: "#646464.#3c465a", c50: "#c8b4be.#aab4be", c51: "#8c7878.#828ca0", c52: "#bea0aa.#aab4be", c53: "#e6dcdc.#d2d2dc" },
89 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#9646a0.#5a8c3c", c6: "#f0aae6.#b4dc8c", c7: "#5a3278.#3c781e", c8: "#be78be.#78aa5a", c9: "#c88cc8.#96c878", c10: "#141414.#141414", c11: "#aab4be.#aab4be", c12: "#3c465a.#3c465a", c13: "#828ca0.#828ca0", c14: "#faaa0a.#828ca0", c15: "#5a2828.#3c465a", c16: "#8c6414.#3c465a", c17: "#783c32.#3c465a", c18: "#ffdc5a.#aab4be", c19: "#ffbe0a.#aab4be", c20: "#faf00a.#aab4be", c21: "#fadc0a.#aab4be", c22: "#0a0a0a.#141414", c23: "#64646e.#3c781e", c24: "#784632.#3c465a", c25: "#963c3c.#3c781e", c26: "#6e460a.#3c465a", c27: "#dc7832.#5a8c3c", c28: "#faaa28.#78aa5a", c29: "#fafafa.#ffffff", c30: "#fafa82.#aab4be", c31: "#dcb41e.#828ca0", c32: "#fff0d2.#ffffff", c33: "#fae60a.#aab4be", c34: "#5a4628.#3c465a", c35: "#be5a32.#5a8c3c", c36: "#dcd246.#aab4be", c37: "#be140a.#3c781e", c38: "#aa5a1e.#3c781e", c39: "#faf078.#aab4be", c40: "#3c3c3c.#3c465a", c41: "#e6be82.#aab4be", c42: "#646464.#3c465a", c43: "#c8323c.#5a8c3c", c44: "#b4823c.#828ca0", c45: "#1e1e1e.#141414", c46: "#dc0a0a.#3c781e", c47: "#fadc5a.#aab4be", c48: "#beb4a0.#aab4be", c49: "#966432.#3c465a", c50: "#fabe0a.#aab4be", c51: "#8c640a.#3c465a", c52: "#783c28.#3c465a", c53: "#dca03c.#828ca0", c54: "#964646.#3c781e", c55: "#dc7828.#5a8c3c", c56: "#50505a.#3c465a", c57: "#fff0dc.#ffffff", c58: "#fafaf0.#ffffff", c59: "#e6c8a0.#aab4be", c60: "#3c3c46.#3c465a", c61: "#e6d2a0.#aab4be", c62: "#505050.#3c465a", c63: "#dcd2b4.#aab4be", c64: "#c8b496.#aab4be", c65: "#ffd25a.#aab4be" },
90 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#785a8c.#c85a00", c6: "#dcdcfa.#ffc828", c7: "#463c64.#a03200", c8: "#c8bef0.#ffa000", c9: "#a08cc8.#dc7800", c10: "#141414.#141414", c11: "#6e6e6e.#6e6e6e", c12: "#c8461e.#c8461e", c13: "#781e14.#781e14", c14: "#ff783c.#ff783c", c15: "#3c788c.#6e6e6e", c16: "#1e3c50.#a03200", c17: "#96d2fa.#ffa000", c18: "#5aa0c8.#dc7800", c19: "#284650.#a03200", c20: "#50a0c8.#dc7800", c21: "#a0dcff.#ffa000", c22: "#3c6e82.#6e6e6e", c23: "#3c7896.#6e6e6e", c24: "#82b4d2.#dc7800", c25: "#b4bebe.#ffa000", c26: "#faffff.#ffffff", c27: "#b4b4b4.#dc7800", c28: "#505050.#a03200", c29: "#fafafa.#ffffff", c30: "#0a0a0a.#141414", c31: "#963c28.#781e14", c32: "#461e14.#781e14", c33: "#aa283c.#c8461e", c34: "#782828.#781e14", c35: "#ff9678.#ff783c", c36: "#ff6432.#ff783c", c37: "#ff8282.#ff783c", c38: "#dc466e.#ff783c", c39: "#aadcf0.#ffa000", c40: "#1e4650.#a03200", c41: "#5aa0d2.#dc7800", c42: "#467896.#6e6e6e", c43: "#aa2846.#c8461e" },
91 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#785082.#2864aa", c6: "#c8a0f0.#8cc8ff", c7: "#aa78be.#5aa0e6", c8: "#461e50.#003c82", c9: "#141414.#141414", c10: "#646464.#646464", c11: "#c8c8c8.#c8c8c8", c12: "#3c3c3c.#3c3c3c", c13: "#969696.#969696", c14: "#6e3c82.#6e3c82", c15: "#825aa0.#825aa0", c16: "#50285a.#50285a", c17: "#a078be.#a078be", c18: "#143c3c.#3c3c3c", c19: "#0a0a0a.#141414", c20: "#1e5a78.#646464", c21: "#3278a0.#646464", c22: "#1e5a6e.#3c3c3c", c23: "#3296b4.#825aa0", c24: "#d2c8c8.#c8c8c8", c25: "#0a3c3c.#3c3c3c", c26: "#504614.#3c3c3c", c27: "#a0323c.#2864aa", c28: "#78283c.#50285a", c29: "#b4b464.#969696", c30: "#963c46.#2864aa", c31: "#dc5a64.#2864aa", c32: "#a03c3c.#646464", c33: "#f0e682.#c8c8c8", c34: "#dc9696.#969696", c35: "#6e2828.#003c82", c36: "#8c3c46.#646464", c37: "#d28278.#969696", c38: "#787878.#646464", c39: "#dc6478.#5aa0e6", c40: "#aa3c50.#2864aa", c41: "#fafafa.#ffffff", c42: "#8cb48c.#969696", c43: "#50460a.#3c3c3c", c44: "#aa785a.#969696", c45: "#96823c.#646464", c46: "#785a32.#646464", c47: "#0a2832.#141414", c48: "#828282.#969696", c49: "#aa5050.#2864aa", c50: "#643c1e.#3c3c3c", c51: "#8c323c.#50285a", c52: "#dcaa8c.#c8c8c8", c53: "#fae6be.#c8c8c8", c54: "#8c8c8c.#969696", c55: "#dc8278.#969696" },
92 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#d2aac8.#a0e6ff", c6: "#be96b4.#78c8f0", c7: "#8c6482.#5aa0d2", c8: "#3c283c.#641478", c9: "#141414.#141414", c10: "#78466e.#7846a0", c11: "#8c6482.#aa78c8", c12: "#dcdcdc.#dcdcdc", c13: "#b42814.#b42814", c14: "#dc503c.#dc503c", c15: "#142850.#641478", c16: "#0a0a0a.#141414", c17: "#1450aa.#7846a0", c18: "#143c78.#641478", c19: "#3c78c8.#5aa0d2", c20: "#3c6ebe.#5aa0d2", c21: "#64a0d2.#78c8f0", c22: "#6496d2.#78c8f0", c23: "#d2dce6.#dcdcdc", c24: "#b4dcfa.#dcdcdc", c25: "#0a3264.#641478", c26: "#a0b4dc.#a0e6ff", c27: "#328cbe.#5aa0d2", c28: "#8cb4dc.#78c8f0", c29: "#aa2828.#b42814", c30: "#fa4628.#dc503c", c31: "#7896a0.#5aa0d2", c32: "#b4dcff.#dcdcdc", c33: "#46646e.#7846a0", c34: "#96b4dc.#a0e6ff", c35: "#aa281e.#b42814", c36: "#466478.#7846a0", c37: "#788ca0.#5aa0d2", c38: "#aa1e28.#b42814", c39: "#f05064.#dc503c", c40: "#ff4628.#dc503c", c41: "#fafafa.#ffffff" },
93 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#825a6e.#825a78", c6: "#503c64.#503c6e", c7: "#aa6ec8.#aa6ed2", c8: "#c88cc8.#c88cd2", c9: "#141414.#141414", c10: "#d2d2d2.#d2d2d2", c11: "#b41414.#2864d2", c12: "#dc4632.#5a96ff", c13: "#d2a0dc.#d2a0e6", c14: "#6e0000.#0a32a0", c15: "#821e50.#503c6e", c16: "#ff96a0.#c88cd2", c17: "#fa5078.#5a96ff", c18: "#c82878.#5a96ff", c19: "#0a0a0a.#141414", c20: "#3c4682.#503c6e", c21: "#283250.#503c6e", c22: "#7882be.#aa6ed2", c23: "#6e6eaa.#825a78", c24: "#464682.#503c6e", c25: "#c88c0a.#5a96ff", c26: "#ffd23c.#5a96ff", c27: "#c8bec8.#d2d2d2", c28: "#6e6478.#825a78", c29: "#ffd246.#5a96ff", c30: "#c8bed2.#d2d2d2", c31: "#8c2832.#2864d2", c32: "#c8286e.#5a96ff", c33: "#f0f0f0.#ffffff", c34: "#0adcff.#aa6ed2", c35: "#5affff.#d2d2d2", c36: "#282850.#503c6e", c37: "#a0a0a0.#c88cd2", c38: "#504678.#503c6e", c39: "#7878be.#aa6ed2", c40: "#aa3250.#5a96ff", c41: "#780a28.#0a32a0", c42: "#f03c50.#5a96ff", c43: "#6e141e.#0a32a0", c44: "#646496.#825a78", c45: "#ffdc3c.#5a96ff", c46: "#e6f0e6.#ffffff", c47: "#e6f0f0.#ffffff", c48: "#646478.#825a78", c49: "#dcdcd2.#d2d2d2" },
94 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5a46a0.#5a5a78", c6: "#b48cbe.#9696b4", c7: "#141414.#141414", c8: "#9678b4.#7878a0", c9: "#462846.#3c3c64", c10: "#7864a0.#6e6e8c", c11: "#ff5a5a.#be6e6e", c12: "#ff9696.#f09696", c13: "#beaabe.#beaabe", c14: "#fffaff.#ffffff", c15: "#6e6478.#6e6478", c16: "#dcd2dc.#dcdcdc", c17: "#aa8214.#be6e6e", c18: "#fad250.#f09696", c19: "#3c3c50.#3c3c64", c20: "#0a0a0a.#141414", c21: "#fac850.#f09696", c22: "#645a6e.#6e6478", c23: "#aaaab4.#beaabe", c24: "#787882.#6e6478", c25: "#3c6ea0.#5a5a78", c26: "#28a0dc.#6e6e8c", c27: "#a0bef0.#beaabe", c28: "#8296c8.#7878a0", c29: "#141e3c.#141414", c30: "#6e78a0.#6e6e8c", c31: "#d2e6ff.#dcdcdc", c32: "#a03c28.#3c3c64", c33: "#d24628.#be6e6e", c34: "#6e1428.#3c3c64", c35: "#782828.#3c3c64", c36: "#504646.#3c3c64", c37: "#6e788c.#6e6478", c38: "#6e7896.#6e6e8c", c39: "#3c3232.#3c3c64", c40: "#f0f0f0.#ffffff", c41: "#9696a0.#7878a0", c42: "#bec8dc.#dcdcdc", c43: "#8ca0b4.#7878a0", c44: "#dcdcf0.#dcdcdc", c45: "#50646e.#6e6478", c46: "#bed2f0.#dcdcdc", c47: "#1e1e1e.#141414", c48: "#0a1eaa.#5a5a78", c49: "#0a32ff.#5a5a78", c50: "#dc5028.#be6e6e", c51: "#ff8c46.#be6e6e", c52: "#4664ff.#5a5a78", c53: "#f0140a.#be6e6e", c54: "#50c8fa.#7878a0" },
95 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#beb4b4.#aab450", c6: "#827878.#82963c", c7: "#504646.#6e7814", c8: "#dcd2d2.#c8d264", c9: "#141414.#141414", c10: "#faf0f0.#f0fa82", c11: "#c85a5a.#82963c", c12: "#fa785a.#aab450", c13: "#963c64.#82963c", c14: "#ffb48c.#aab450", c15: "#963c46.#6e7814", c16: "#be5078.#82963c", c17: "#ffa0b4.#aab450", c18: "#e67896.#aab450", c19: "#64283c.#6e7814", c20: "#963c3c.#6e7814", c21: "#964664.#82963c", c22: "#0a0a0a.#141414", c23: "#8c8caa.#82963c", c24: "#d2c8dc.#c8d264", c25: "#d2d2dc.#c8d264", c26: "#ffe678.#c8d264", c27: "#c8aa46.#82963c", c28: "#d2aa46.#82963c", c29: "#642832.#6e7814", c30: "#fafafa.#ffffff", c31: "#96323c.#6e7814", c32: "#b4b4c8.#aab450", c33: "#461e28.#6e7814" },
96 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#aa8c00.#8c646e", c6: "#785a00.#784650", c7: "#000000.#000000", c8: "#fadc00.#e6b4c8", c9: "#d2b446.#be96a0", c10: "#c8a01e.#a07882", c11: "#fff078.#f0c8dc", c12: "#503c1e.#78141e", c13: "#825a3c.#962846", c14: "#a0825a.#b45064", c15: "#8c1e3c.#8c1e3c", c16: "#f03c3c.#f03c3c", c17: "#b4a078.#c86e78", c18: "#28283c.#78141e", c19: "#786478.#b45064", c20: "#c8c8dc.#ffffff", c21: "#141414.#000000", c22: "#5a4664.#962846", c23: "#3c3c46.#78141e", c24: "#50320a.#78141e", c25: "#786e78.#b45064", c26: "#968caa.#c86e78", c27: "#f0500a.#f03c3c", c28: "#be3c0a.#f03c3c", c29: "#f0f0ff.#ffffff", c30: "#d2d2dc.#ffffff", c31: "#6e6478.#962846", c32: "#e6500a.#f03c3c", c33: "#968296.#c86e78", c34: "#963c0a.#784650", c35: "#e6e6fa.#ffffff", c36: "#8c3c0a.#784650", c37: "#c8a0a0.#c86e78", c38: "#b43c0a.#784650", c39: "#8c8caa.#c86e78", c40: "#f06e28.#f03c3c", c41: "#c8460a.#f03c3c", c42: "#0a0a0a.#000000", c43: "#be460a.#f03c3c", c44: "#282832.#78141e", c45: "#aa280a.#8c1e3c", c46: "#503c50.#78141e", c47: "#b4b4c8.#c86e78", c48: "#ff821e.#a07882", c49: "#c88296.#c86e78", c50: "#d2dcf0.#ffffff", c51: "#646478.#962846", c52: "#463246.#78141e", c53: "#e6e6f0.#ffffff", c54: "#64465a.#962846", c55: "#826e78.#b45064", c56: "#64280a.#78141e", c57: "#f05a14.#f03c3c", c58: "#dc3c0a.#f03c3c", c59: "#968cb4.#c86e78", c60: "#96320a.#784650", c61: "#14140a.#000000", c62: "#0a140a.#000000", c63: "#323246.#78141e" },
97 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#8c6432.#823c28", c6: "#a0825a.#8c4632", c7: "#fadc00.#f096b4", c8: "#5a3c28.#5a3c28", c9: "#fff078.#ffaac8", c10: "#dcbe3c.#c86ea0", c11: "#b4961e.#aa5078", c12: "#000000.#000000", c13: "#6e5000.#8c3250", c14: "#c8dcf0.#f0dcc8", c15: "#505a6e.#6e5a50", c16: "#a0aabe.#beaaa0", c17: "#8296a0.#a09682", c18: "#5a143c.#5a3c28", c19: "#d25a96.#8c4632", c20: "#be1e6e.#823c28", c21: "#285a82.#6e5a50", c22: "#50a0c8.#a09682", c23: "#0a0a0a.#000000", c24: "#3c78aa.#6e5a50", c25: "#143c64.#6e5a50", c26: "#0a4646.#6e5a50", c27: "#3cbec8.#a09682", c28: "#28a0aa.#a09682", c29: "#287882.#6e5a50", c30: "#0a5050.#6e5a50", c31: "#32323c.#5a3c28", c32: "#3c3c46.#5a3c28", c33: "#464650.#6e5a50", c34: "#50505a.#6e5a50", c35: "#fafafa.#ffffff", c36: "#282832.#5a3c28", c37: "#3c3c3c.#5a3c28", c38: "#464646.#5a3c28", c39: "#c8c8c8.#f0dcc8", c40: "#dcdcdc.#f0dcc8", c41: "#82145a.#5a3c28", c42: "#460a28.#5a3c28", c43: "#644678.#6e5a50", c44: "#1e1e1e.#000000", c45: "#143264.#6e5a50", c46: "#503c64.#6e5a50", c47: "#d23c82.#8c4632", c48: "#8c1450.#5a3c28", c49: "#820a0a.#5a3c28", c50: "#dc280a.#823c28", c51: "#f06432.#aa5078", c52: "#8c0a0a.#5a3c28", c53: "#961450.#5a3c28" },
98 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#823214.#967800", c6: "#dc5046.#b4a028", c7: "#ffa064.#ffe61e", c8: "#ff7832.#dcc800", c9: "#141414.#141414", c10: "#5a3c1e.#6e6446", c11: "#ffdcbe.#fffadc", c12: "#785014.#82783c", c13: "#e6be8c.#e6c8a0", c14: "#dcdcdc.#dcdcdc", c15: "#b4823c.#bea06e", c16: "#b43c14.#967800", c17: "#78140a.#967800", c18: "#0a0a0a.#141414", c19: "#fa503c.#b4a028", c20: "#322828.#141414", c21: "#5a463c.#6e6446", c22: "#ffdc1e.#ffe61e", c23: "#3c320a.#6e6446", c24: "#282828.#141414", c25: "#c8aa3c.#bea06e", c26: "#a08246.#bea06e", c27: "#ffdc6e.#e6c8a0", c28: "#fac814.#dcc800", c29: "#6e6e6e.#bea06e", c30: "#fff096.#fffadc", c31: "#c8a014.#bea06e", c32: "#505050.#6e6446", c33: "#141e1e.#141414", c34: "#fad232.#ffe61e", c35: "#788c8c.#bea06e", c36: "#966e1e.#82783c", c37: "#3c3c3c.#6e6446", c38: "#323c3c.#6e6446", c39: "#a08c28.#bea06e", c40: "#c8aa46.#bea06e", c41: "#5a4646.#6e6446", c42: "#ffe682.#e6c8a0", c43: "#6e1414.#967800", c44: "#962814.#967800", c45: "#e62832.#b4a028", c46: "#b41e28.#967800", c47: "#6e320a.#967800", c48: "#960a0a.#967800", c49: "#ffc8c8.#fffadc", c50: "#c8320a.#b4a028", c51: "#faf0e6.#ffffff", c52: "#826e5a.#bea06e", c53: "#be6e78.#bea06e", c54: "#1e281e.#141414", c55: "#281e1e.#141414", c56: "#b4b4c8.#dcdcdc", c57: "#3c3228.#6e6446", c58: "#dc1428.#b4a028", c59: "#3c3c32.#6e6446", c60: "#82140a.#967800", c61: "#320a0a.#141414", c62: "#323c32.#6e6446", c63: "#dc6450.#b4a028", c64: "#ffe650.#ffe61e", c65: "#c8c8c8.#dcdcdc", c66: "#bebebe.#dcdcdc", c67: "#323232.#6e6446" },
99 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#c86e5a.#6e7832", c6: "#82280a.#465a00", c7: "#f08c46.#8ca046", c8: "#fac88c.#b4c878", c9: "#141414.#141414", c10: "#46321e.#46321e", c11: "#5a3c32.#5a3c32", c12: "#785014.#6e640a", c13: "#ffe6b4.#e6fac8", c14: "#f0be8c.#c8d278", c15: "#b4785a.#968c3c", c16: "#dcdcfa.#dcdcfa", c17: "#ffc83c.#8ca046", c18: "#82641e.#6e640a", c19: "#46463c.#5a3c32", c20: "#c8a03c.#8ca046", c21: "#963c28.#465a00", c22: "#78501e.#6e640a", c23: "#d23232.#6e7832", c24: "#6e3228.#5a3c32", c25: "#be3c28.#465a00", c26: "#e66e50.#6e7832", c27: "#fabe50.#8ca046", c28: "#fa6432.#8ca046", c29: "#d29628.#8ca046", c30: "#e63c32.#6e7832", c31: "#0a0a0a.#141414", c32: "#aa3c50.#6e7832", c33: "#d2a03c.#8ca046", c34: "#5a1e0a.#46321e", c35: "#fa8c8c.#c8d278", c36: "#fafafa.#ffffff", c37: "#464646.#5a3c32", c38: "#c8645a.#6e7832", c39: "#e64632.#6e7832", c40: "#dc5028.#6e7832", c41: "#c85a6e.#6e7832", c42: "#ff96a0.#c8d278", c43: "#28281e.#141414", c44: "#dcbe5a.#c8d278", c45: "#c8d2e6.#dcdcfa", c46: "#463c3c.#5a3c32", c47: "#ff783c.#8ca046", c48: "#785028.#6e640a", c49: "#fffa78.#b4c878", c50: "#c8b4aa.#c8d278", c51: "#d2d2e6.#dcdcfa", c52: "#503c3c.#5a3c32", c53: "#a03246.#465a00", c54: "#dcc8be.#e6fac8", c55: "#c8d2dc.#dcdcfa", c56: "#bec8d2.#dcdcfa", c57: "#8c8c8c.#968c3c" },
100 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#821414.#000078", c7: "#d2323c.#2814be", c8: "#ff501e.#0050ff", c9: "#f03c32.#323cf0", c10: "#ff825a.#5a82ff", c11: "#ffaaa0.#a0aaff", c12: "#dcd2d2.#dcd2d2", c13: "#b4aabe.#b4aabe", c14: "#465a78.#141414", c15: "#82a0b4.#b4aabe", c16: "#bec8dc.#dcd2d2", c17: "#f0f0ff.#ffffff", c18: "#783228.#000078", c19: "#c84632.#2814be", c20: "#d24632.#2814be", c21: "#0a0a0a.#141414", c22: "#be8282.#b4aabe", c23: "#3c82f0.#b4aabe", c24: "#4682f0.#b4aabe", c25: "#505aaa.#b4aabe", c26: "#5a788c.#b4aabe", c27: "#96b4ff.#b4aabe", c28: "#fafafa.#ffffff", c29: "#465064.#141414", c30: "#dcdcdc.#dcd2d2", c31: "#dc3c3c.#2814be", c32: "#f0f0f0.#ffffff", c33: "#1496be.#b4aabe", c34: "#aab4be.#b4aabe", c35: "#5ac8e6.#b4aabe", c36: "#e6828c.#a0aaff", c37: "#0a6496.#141414", c38: "#e6968c.#a0aaff" },
101 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5a5050.#5a5050", c6: "#c8c8dc.#c8c8dc", c7: "#f0f0f0.#f0f0f0", c8: "#141414.#141414", c9: "#a0a0a0.#a0a0a0", c10: "#d28296.#828cdc", c11: "#c8283c.#3c46d2", c12: "#faa08c.#96aaf0", c13: "#ff501e.#1e78ff", c14: "#e63c32.#3264f0", c15: "#821414.#143282", c16: "#503c14.#5a5050", c17: "#a07878.#a0a0a0", c18: "#ffff96.#f0f0f0", c19: "#6e6e50.#5a5050", c20: "#8c9664.#a0a0a0", c21: "#a0aa78.#a0a0a0", c22: "#dcc896.#96aaf0", c23: "#503c0a.#143282", c24: "#0a0a0a.#141414", c25: "#faf0f0.#f0f0f0", c26: "#c8c8c8.#c8c8dc", c27: "#e6dc96.#96aaf0", c28: "#a07846.#5a5050", c29: "#c8a078.#828cdc", c30: "#be1414.#3c46d2", c31: "#96786e.#a0a0a0", c32: "#646450.#5a5050", c33: "#a06e5a.#5a5050", c34: "#645a50.#5a5050", c35: "#5a463c.#5a5050", c36: "#be9678.#828cdc", c37: "#8c8c64.#a0a0a0", c38: "#825050.#5a5050", c39: "#dcb46e.#96aaf0", c40: "#a0a08c.#a0a0a0", c41: "#82826e.#a0a0a0", c42: "#f0e6a0.#96aaf0", c43: "#f0d2a0.#96aaf0", c44: "#fafa96.#96aaf0", c45: "#d2a06e.#828cdc", c46: "#dc1e1e.#3c46d2", c47: "#f0c882.#96aaf0", c48: "#a0786e.#a0a0a0", c49: "#d2be82.#96aaf0", c50: "#bebeaa.#a0a0a0", c51: "#dcaa82.#96aaf0", c52: "#826450.#5a5050", c53: "#d2d2d2.#c8c8dc", c54: "#aa3246.#3c46d2", c55: "#fafafa.#ffffff", c56: "#f0f0e6.#f0f0f0", c57: "#f0f0dc.#f0f0f0", c58: "#b41414.#3c46d2", c59: "#505a64.#5a5050", c60: "#dcb4d2.#c8c8dc", c61: "#966e8c.#a0a0a0", c62: "#b48caa.#a0a0a0", c63: "#9678aa.#a0a0a0", c64: "#78506e.#5a5050", c65: "#46283c.#5a5050", c66: "#644678.#5a5050", c67: "#beb4c8.#c8c8dc" },
102 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#963232.#b47800", c6: "#141414.#141414", c7: "#ffd2aa.#fff014", c8: "#ffb48c.#fac814", c9: "#f08264.#f0aa00", c10: "#e6a000.#e6a000", c11: "#ffc846.#ffc846", c12: "#ffe6c8.#ffffbe", c13: "#dcdcdc.#dcdcdc", c14: "#828282.#f0aa00", c15: "#0a0a0a.#141414", c16: "#826414.#b47800", c17: "#f0dc14.#ffc846", c18: "#c8b40a.#e6a000", c19: "#b48214.#e6a000", c20: "#f0f0dc.#ffffbe", c21: "#e6d2c8.#dcdcdc", c22: "#784614.#b47800", c23: "#c8beb4.#dcdcdc", c24: "#143c78.#141414", c25: "#5a5a5a.#b47800", c26: "#2878c8.#b47800", c27: "#c8c8c8.#dcdcdc", c28: "#d2aa0a.#e6a000", c29: "#faf078.#fff014", c30: "#fafafa.#ffffff", c31: "#b4960a.#e6a000", c32: "#d2beb4.#fff014", c33: "#505050.#b47800", c34: "#dcbea0.#fff014", c35: "#6e4614.#b47800", c36: "#e6dc14.#ffc846", c37: "#0a1414.#141414", c38: "#e6e6dc.#dcdcdc", c39: "#c8b4b4.#dcdcdc", c40: "#dcd2be.#dcdcdc", c41: "#966414.#b47800", c42: "#c8aa0a.#e6a000", c43: "#be820a.#e6a000", c44: "#aa6e0a.#b47800", c45: "#a02846.#b47800", c46: "#1e64aa.#141414", c47: "#78beff.#dcdcdc", c48: "#f0f0e6.#dcdcdc", c49: "#8c7878.#b47800", c50: "#323246.#141414", c51: "#281e28.#141414", c52: "#464664.#b47800", c53: "#b46e0a.#e6a000", c54: "#646482.#b47800" },
103 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#506428.#a03c14", c6: "#141414.#141414", c7: "#a0d246.#e68246", c8: "#78aa32.#c8643c", c9: "#783c14.#783c14", c10: "#e6aa5a.#e6aa5a", c11: "#ffdc6e.#ffdc6e", c12: "#a06e1e.#a06e1e", c13: "#fff0a0.#fff0a0", c14: "#8c783c.#c8aa00", c15: "#503c14.#967800", c16: "#b4a046.#f0e646", c17: "#c8c8c8.#c8c8c8", c18: "#b43214.#783c14", c19: "#fa5a50.#e6aa5a", c20: "#a0aac8.#c8c8c8", c21: "#ff968c.#e6aa5a", c22: "#fafafa.#ffffff", c23: "#6e6e82.#c8aa00", c24: "#c8c8e6.#c8c8c8", c25: "#282832.#141414", c26: "#787882.#c8aa00", c27: "#464650.#a03c14", c28: "#1e3c14.#141414", c29: "#3c5a28.#a03c14", c30: "#508246.#a03c14", c31: "#143c14.#141414", c32: "#78320a.#783c14", c33: "#326428.#a03c14", c34: "#64646e.#c8aa00", c35: "#d2283c.#a06e1e", c36: "#3c3c3c.#967800", c37: "#a0d296.#c8c8c8", c38: "#c8d2e6.#c8c8c8", c39: "#fa5064.#e6aa5a", c40: "#78a064.#c8643c", c41: "#3c1e0a.#967800", c42: "#a0141e.#783c14", c43: "#142814.#141414", c44: "#b4c8b4.#c8c8c8", c45: "#649650.#c8643c", c46: "#b41428.#783c14", c47: "#a0aabe.#c8c8c8", c48: "#0a0a0a.#141414" },
104 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#8c826e.#828278", c6: "#50503c.#465046", c7: "#141414.#282828", c8: "#c8c8d2.#c8bebe", c9: "#e6e6f0.#e6dcdc", c10: "#966e5a.#466432", c11: "#503c14.#1e3c00", c12: "#c8a046.#6e8c46", c13: "#c8aa8c.#bea08c", c14: "#fad2b4.#e6d2b4", c15: "#dcbe6e.#a0aa6e", c16: "#32645a.#465046", c17: "#32a078.#828278", c18: "#6ebe8c.#828278", c19: "#64b48c.#828278", c20: "#a0dcb4.#c8bebe", c21: "#282828.#282828", c22: "#0a0a0a.#282828", c23: "#a0d2aa.#c8bebe", c24: "#32966e.#465046", c25: "#78c8a0.#bea08c", c26: "#78a082.#828278", c27: "#5a3c1e.#1e3c00", c28: "#3c2814.#1e3c00", c29: "#8c6432.#466432", c30: "#64503c.#465046", c31: "#966432.#466432", c32: "#8caa78.#828278", c33: "#465a50.#465046", c34: "#be9664.#6e8c46", c35: "#3c3c3c.#465046", c36: "#f0d2a0.#e6d2b4", c37: "#826e3c.#466432", c38: "#f0e6a0.#e6d2b4", c39: "#d2b478.#a0aa6e", c40: "#fae6aa.#e6d2b4", c41: "#fafafa.#ffffff", c42: "#645028.#465046", c43: "#e6d296.#e6d2b4", c44: "#6e5032.#465046", c45: "#fff0d2.#e6dcdc", c46: "#82643c.#466432", c47: "#b48c64.#6e8c46", c48: "#f0ffff.#ffffff", c49: "#5a461e.#1e3c00", c50: "#826e46.#466432", c51: "#d2b46e.#a0aa6e", c52: "#645046.#465046", c53: "#faffff.#ffffff", c54: "#f0e6aa.#e6d2b4", c55: "#fafaf0.#ffffff", c56: "#8c6464.#466432", c57: "#fff0dc.#e6dcdc", c58: "#dca096.#bea08c", c59: "#820a0a.#1e3c00", c60: "#d2a0a0.#bea08c", c61: "#e6fafa.#e6dcdc", c62: "#463c46.#465046", c63: "#78b48c.#828278", c64: "#5a8264.#828278", c65: "#8c8c6e.#828278", c66: "#646450.#465046", c67: "#503c28.#1e3c00", c68: "#5a5032.#465046", c69: "#8c643c.#466432", c70: "#463c28.#1e3c00", c71: "#f0faff.#ffffff", c72: "#be6464.#466432", c73: "#aa280a.#1e3c00", c74: "#28645a.#465046", c75: "#28a078.#828278", c76: "#64be96.#828278", c77: "#46280a.#1e3c00", c78: "#a0641e.#466432", c79: "#3c323c.#465046", c80: "#e6c8a0.#e6d2b4", c81: "#6e4614.#1e3c00", c82: "#c8aa64.#a0aa6e", c83: "#fae6dc.#e6dcdc" },
105 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#8c8c6e.#788c78", c6: "#50463c.#3c4646", c7: "#e6e6e6.#e6dcdc", c8: "#c8c8c8.#c8bebe", c9: "#141414.#141414", c10: "#5a3c14.#3c6e00", c11: "#c8a046.#a0c846", c12: "#966e50.#6ea03c", c13: "#c83c14.#c83c14", c14: "#dcbe6e.#c8f078", c15: "#e69650.#dca050", c16: "#be783c.#b4823c", c17: "#fac896.#f0d296", c18: "#323c46.#3c4646", c19: "#3c5a6e.#3c4646", c20: "#0a0a0a.#141414", c21: "#96e6f0.#c8bebe", c22: "#505a82.#3c4646", c23: "#78a0b4.#788c78", c24: "#82a0b4.#788c78", c25: "#aae6f0.#c8bebe", c26: "#3c3c50.#3c4646", c27: "#0a0a14.#141414", c28: "#50a0dc.#788c78", c29: "#506496.#788c78", c30: "#5064a0.#788c78", c31: "#323c50.#3c4646", c32: "#14140a.#141414", c33: "#0a283c.#141414", c34: "#64a0dc.#c8bebe", c35: "#3c506e.#3c4646", c36: "#640a0a.#3c6e00", c37: "#6eb4fa.#c8bebe", c38: "#aa4646.#6ea03c", c39: "#ff8282.#dca050", c40: "#820a0a.#3c6e00", c41: "#465a64.#3c4646", c42: "#f0ffff.#ffffff", c43: "#0a2832.#141414", c44: "#96b4c8.#c8bebe", c45: "#3c5a64.#3c4646", c46: "#322828.#141414", c47: "#3c5a5a.#3c4646", c48: "#fafafa.#ffffff", c49: "#648296.#788c78", c50: "#0a141e.#141414", c51: "#8cdce6.#c8bebe", c52: "#505050.#3c4646", c53: "#1e2832.#141414", c54: "#141e28.#141414", c55: "#78b4c8.#c8bebe", c56: "#326e8c.#3c4646", c57: "#aae6e6.#c8bebe", c58: "#465a6e.#3c4646", c59: "#143c5a.#3c4646", c60: "#3c82b4.#788c78", c61: "#1e1e28.#141414", c62: "#50aac8.#788c78", c63: "#f0fafa.#ffffff", c64: "#aa6e6e.#6ea03c", c65: "#e6968c.#c8f078", c66: "#780a28.#3c6e00", c67: "#d25078.#b4823c", c68: "#be5a5a.#b4823c", c69: "#96b4d2.#c8bebe", c70: "#e6a096.#f0d296", c71: "#780a0a.#3c6e00", c72: "#50788c.#788c78", c73: "#323250.#3c4646", c74: "#1478c8.#788c78" },
106 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#786464.#786464", c6: "#d2c8c8.#d2c8c8", c7: "#282828.#282828", c8: "#643c14.#283c00", c9: "#a07878.#64780a", c10: "#c8a082.#96aa28", c11: "#825a3c.#3c5a00", c12: "#78781e.#6e781e", c13: "#f0ff96.#e6ff96", c14: "#c8c878.#bec878", c15: "#5a4628.#5a3c28", c16: "#f0c8a0.#bec846", c17: "#f0e6b4.#f0dcb4", c18: "#beb46e.#bea06e", c19: "#5a64a0.#786464", c20: "#283264.#282828", c21: "#a08cf0.#d2c8c8", c22: "#780a0a.#283c00", c23: "#aa1e32.#3c5a00", c24: "#b4a0ff.#d2c8c8", c25: "#141414.#282828", c26: "#7878c8.#64780a", c27: "#dc3c6e.#64780a", c28: "#6e6e78.#786464", c29: "#3c3c50.#282828", c30: "#282832.#282828", c31: "#0a0a0a.#282828", c32: "#ffdc0a.#bec878", c33: "#aa960a.#6e781e", c34: "#c85096.#64780a", c35: "#464650.#5a3c28", c36: "#c8aa0a.#6e781e", c37: "#f0d20a.#bea06e", c38: "#8c780a.#6e781e", c39: "#fad20a.#bea06e", c40: "#a0326e.#786464", c41: "#465082.#786464", c42: "#3c466e.#786464", c43: "#8c78dc.#64780a", c44: "#8c82dc.#d2c8c8", c45: "#3c3c46.#282828", c46: "#968ca0.#64780a", c47: "#5a5064.#786464", c48: "#b4b4c8.#d2c8c8", c49: "#6e6478.#786464", c50: "#8c3232.#3c5a00", c51: "#5a1414.#283c00", c52: "#dc3232.#3c5a00", c53: "#fadc5a.#bec878", c54: "#beaa3c.#bea06e", c55: "#fafafa.#ffffff", c56: "#dc0a1e.#3c5a00", c57: "#aa1e0a.#283c00", c58: "#aa5050.#3c5a00", c59: "#465050.#5a3c28" },
107 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5a3c14.#6e780a", c6: "#141414.#141414", c7: "#c8b478.#c8d264", c8: "#f0d2a0.#e6fa8c", c9: "#a08c78.#96a03c", c10: "#dcc8dc.#d2c8dc", c11: "#fffaff.#fafaff", c12: "#644678.#5a4678", c13: "#8c1e00.#003296", c14: "#ff965a.#3cb4ff", c15: "#e66446.#1482d2", c16: "#be3246.#005ab4", c17: "#a0a0a0.#a0a0a0", c18: "#c8b4c8.#beb4c8", c19: "#5a5064.#5a4678", c20: "#8c8c96.#a0a0a0", c21: "#3c3232.#6e780a", c22: "#5a3c3c.#6e780a", c23: "#f0fafa.#fafaff", c24: "#bebec8.#beb4c8", c25: "#e6e6e6.#d2c8dc", c26: "#a06e46.#96a03c", c27: "#3c5a8c.#5a4678", c28: "#5096c8.#a0a0a0", c29: "#643232.#6e780a", c30: "#a0643c.#005ab4", c31: "#e696be.#beb4c8", c32: "#78463c.#6e780a", c33: "#322828.#141414", c34: "#a06478.#96a03c", c35: "#e6e6be.#e6fa8c", c36: "#b4a082.#c8d264", c37: "#aa7850.#96a03c", c38: "#be825a.#96a03c", c39: "#8c968c.#96a03c", c40: "#0a0a0a.#141414", c41: "#3264a0.#5a4678", c42: "#bec8be.#beb4c8", c43: "#3ca0d2.#a0a0a0", c44: "#f0f0f0.#fafaff", c45: "#ffffff.#fafaff", c46: "#f0e6e6.#fafaff", c47: "#14140a.#141414", c48: "#e6dcaa.#e6fa8c", c49: "#f0e6aa.#e6fa8c", c50: "#8c96aa.#a0a0a0", c51: "#8296aa.#a0a0a0" },
108 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#c85032.#a0a00a", c6: "#141414.#141414", c7: "#ffc8b4.#ffffa0", c8: "#ffa0a0.#f0f05a", c9: "#f0786e.#c8be28", c10: "#781414.#787800", c11: "#ffa096.#ffaaa0", c12: "#e64614.#dc6464", c13: "#a01e14.#8c3c3c", c14: "#ff8250.#ff8278", c15: "#e6d278.#e6d278", c16: "#ffffa0.#ffffa0", c17: "#c8c8c8.#dcd2dc", c18: "#5a3c46.#787800", c19: "#be466e.#a0a00a", c20: "#f05a64.#c8be28", c21: "#963c6e.#a0a00a", c22: "#3278a0.#141414", c23: "#323c64.#141414", c24: "#96466e.#a0a00a", c25: "#8cd2ff.#dcd2dc", c26: "#46a0d2.#dcd2dc", c27: "#ff96b4.#f0f05a", c28: "#ffd264.#e6d278", c29: "#64643c.#787800", c30: "#646446.#787800", c31: "#b49646.#a0a00a", c32: "#502832.#787800", c33: "#e6646e.#c8be28", c34: "#0a0a0a.#141414", c35: "#283264.#141414", c36: "#5a64a0.#dcd2dc", c37: "#8cdcff.#dcd2dc", c38: "#6496e6.#dcd2dc", c39: "#ffdc64.#e6d278", c40: "#6e501e.#787800", c41: "#be8c46.#a0a00a" },
109 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#f0d26e.#b478b4", c6: "#faf096.#dca0d2", c7: "#c8b428.#8c468c", c8: "#5a2850.#3c505a", c9: "#dca0d2.#b4e6f0", c10: "#be78b4.#8cb4be", c11: "#96508c.#648282", c12: "#141414.#141414", c13: "#dcdcdc.#dcdcdc", c14: "#d23c1e.#d23c1e", c15: "#ff6446.#ff6446", c16: "#faf096.#faf096", c17: "#d2c86e.#d2c86e", c18: "#50783c.#3c505a", c19: "#0a0a0a.#141414", c20: "#c8fa8c.#dca0d2", c21: "#96b43c.#8c468c", c22: "#aadc6e.#d2c86e", c23: "#d2fa8c.#dca0d2", c24: "#a0820a.#8c468c", c25: "#ffe650.#b478b4", c26: "#a0d246.#8c468c", c27: "#ffa01e.#8c468c", c28: "#78a064.#648282", c29: "#aa3c46.#d23c1e", c30: "#dc466e.#ff6446", c31: "#beff78.#d2c86e", c32: "#f06478.#ff6446", c33: "#324628.#141414", c34: "#78dc78.#d2c86e", c35: "#dc3c5a.#ff6446", c36: "#96323c.#3c505a", c37: "#3c6e3c.#3c505a", c38: "#faffff.#ffffff", c39: "#5aa05a.#648282", c40: "#3c5028.#3c505a", c41: "#781e28.#3c505a", c42: "#78be78.#d2c86e", c43: "#505a3c.#3c505a", c44: "#507832.#3c505a", c45: "#a0e664.#d2c86e", c46: "#e69646.#8c468c", c47: "#ffc850.#b478b4", c48: "#ffd278.#b478b4", c49: "#8c8c0a.#8c468c", c50: "#ffbe28.#8c468c", c51: "#8cb432.#8c468c", c52: "#a03c32.#d23c1e", c53: "#d24646.#d23c1e", c54: "#ff785a.#ff6446", c55: "#14140a.#141414", c56: "#468c5a.#3c505a", c57: "#a02832.#d23c1e", c58: "#14463c.#141414", c59: "#e63c5a.#ff6446", c60: "#46be82.#648282", c61: "#143c3c.#141414", c62: "#f05a78.#ff6446", c63: "#1e461e.#141414", c64: "#5aa064.#648282", c65: "#326e3c.#3c505a" },
110 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#f0d26e.#b478b4", c6: "#c8b428.#8c468c", c7: "#faf096.#dca0d2", c8: "#643278.#144646", c9: "#141414.#141414", c10: "#be8cc8.#78b4aa", c11: "#a06eb4.#508c82", c12: "#8c50aa.#326e6e", c13: "#d2a0dc.#a0d2c8", c14: "#dcdcdc.#dcdcdc", c15: "#d2c86e.#d2c86e", c16: "#a01e00.#a01e00", c17: "#dc641e.#dc641e", c18: "#aaa014.#aaa014", c19: "#325032.#141414", c20: "#3c7846.#144646", c21: "#3c6432.#141414", c22: "#509646.#aaa014", c23: "#0a0a0a.#141414", c24: "#64aa46.#aaa014", c25: "#8cc878.#d2c86e", c26: "#145046.#141414", c27: "#50a0b4.#508c82", c28: "#3c828c.#144646", c29: "#3c823c.#144646", c30: "#5ab464.#aaa014", c31: "#8cdc8c.#d2c86e", c32: "#a0f08c.#d2c86e", c33: "#c8960a.#aaa014", c34: "#50963c.#aaa014", c35: "#f0e66e.#b478b4", c36: "#dcbe3c.#8c468c", c37: "#64be5a.#aaa014", c38: "#b4fab4.#dcdcdc", c39: "#78323c.#144646", c40: "#b42832.#a01e00", c41: "#781e32.#a01e00", c42: "#c83c3c.#dc641e", c43: "#fadc50.#b478b4", c44: "#822832.#a01e00", c45: "#5a783c.#144646", c46: "#f05064.#dc641e", c47: "#dc3c28.#dc641e", c48: "#b43c3c.#dc641e", c49: "#966e46.#aaa014", c50: "#fa6e50.#dc641e", c51: "#be8c6e.#d2c86e", c52: "#285032.#141414", c53: "#469650.#144646", c54: "#3c6e46.#144646", c55: "#3c8296.#144646", c56: "#5aaac8.#508c82", c57: "#8cd278.#d2c86e", c58: "#468250.#144646", c59: "#28641e.#141414", c60: "#64b446.#aaa014", c61: "#8ce696.#d2c86e", c62: "#78be78.#d2c86e", c63: "#467846.#144646", c64: "#468c32.#aaa014", c65: "#d28c50.#8c468c", c66: "#ffdc50.#b478b4", c67: "#beffb4.#dcdcdc", c68: "#ffe646.#b478b4", c69: "#c8a00a.#aaa014", c70: "#282828.#141414", c71: "#e64628.#dc641e", c72: "#821e32.#a01e00", c73: "#be4646.#dc641e", c74: "#c83c46.#dc641e", c75: "#d23232.#dc641e", c76: "#ff7850.#dc641e", c77: "#e6505a.#dc641e", c78: "#46783c.#144646", c79: "#0a140a.#141414", c80: "#465032.#144646", c81: "#6ebe5a.#aaa014", c82: "#64aa50.#aaa014" },
111 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5a5a78.#78321e", c6: "#141414.#141414", c7: "#bebec8.#c89678", c8: "#e6e6f0.#fac8a0", c9: "#8282aa.#a06446", c10: "#3c3c50.#461400", c11: "#aa3c28.#aa3c28", c12: "#1e461e.#141414", c13: "#3ca03c.#78321e", c14: "#82c86e.#a06446", c15: "#0a0a0a.#141414", c16: "#b4e696.#c89678", c17: "#328232.#461400", c18: "#3c823c.#461400", c19: "#144628.#141414", c20: "#146428.#461400", c21: "#46aa46.#78321e", c22: "#c8a00a.#aa3c28", c23: "#e6dc3c.#c89678", c24: "#be1e1e.#aa3c28", c25: "#288232.#461400", c26: "#e6463c.#aa3c28", c27: "#46a046.#78321e", c28: "#82d26e.#a06446", c29: "#dc645a.#aa3c28", c30: "#ffaaa0.#c89678", c31: "#a01e1e.#aa3c28", c32: "#ff6e50.#aa3c28", c33: "#5a500a.#461400", c34: "#5a5014.#461400", c35: "#d2820a.#aa3c28", c36: "#d2a00a.#aa3c28", c37: "#e6dc46.#c89678", c38: "#286428.#461400", c39: "#fafafa.#ffffff", c40: "#82c864.#a06446", c41: "#8c2828.#aa3c28", c42: "#ffe66e.#c89678", c43: "#503c0a.#141414", c44: "#64460a.#aa3c28", c45: "#144614.#141414", c46: "#32823c.#461400", c47: "#28781e.#461400", c48: "#325a1e.#461400", c49: "#e64632.#aa3c28", c50: "#3c641e.#461400", c51: "#5a781e.#461400", c52: "#beff78.#c89678", c53: "#a0d246.#a06446", c54: "#78aa32.#78321e", c55: "#f0786e.#aa3c28", c56: "#d2503c.#aa3c28", c57: "#c8823c.#aa3c28", c58: "#ffc850.#c89678", c59: "#fff0b4.#fac8a0", c60: "#78645a.#78321e", c61: "#28461e.#141414" },
112 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#8c8c96.#a0a078", c6: "#141414.#141414", c7: "#c8c8be.#dcd2b4", c8: "#50505a.#786e46", c9: "#e6e6dc.#fffad2", c10: "#785a32.#785a32", c11: "#fff0c8.#fff0c8", c12: "#b4a078.#b4a078", c13: "#a03214.#a03214", c14: "#e6503c.#e6503c", c15: "#781e14.#781e14", c16: "#e6d2aa.#e6d2aa", c17: "#145a3c.#786e46", c18: "#32aa3c.#786e46", c19: "#1e7846.#786e46", c20: "#503c28.#785a32", c21: "#a07850.#785a32", c22: "#faf08c.#e6d2aa", c23: "#e6c896.#e6d2aa", c24: "#785a3c.#785a32", c25: "#788246.#785a32", c26: "#506446.#786e46", c27: "#46c828.#785a32", c28: "#783c46.#785a32", c29: "#ffb43c.#b4a078", c30: "#ff3c3c.#e6503c", c31: "#6ed232.#b4a078", c32: "#ff783c.#e6503c", c33: "#0a0a0a.#141414", c34: "#aafa3c.#b4a078", c35: "#aafa46.#b4a078", c36: "#828282.#a0a078", c37: "#ff7846.#e6503c", c38: "#32aa46.#786e46", c39: "#ff4646.#e6503c", c40: "#d2be82.#b4a078", c41: "#145a46.#786e46", c42: "#c8be6e.#b4a078", c43: "#6ed228.#b4a078", c44: "#783246.#785a32", c45: "#ffb432.#e6503c", c46: "#28aa3c.#786e46" },
113 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#ffaaaa.#f0c896", c6: "#e67878.#d2aa5a", c7: "#ffe6e6.#fffae6", c8: "#ffd2d2.#fff0c8", c9: "#8c3c3c.#5a823c", c10: "#141414.#141414", c11: "#ff825a.#96dc32", c12: "#f05a32.#6eb414", c13: "#786e46.#786e46", c14: "#e6dcbe.#e6dcbe", c15: "#aaa078.#aaa078", c16: "#ffaaaa.#c8ff6e", c17: "#a0c8f0.#e6dcbe", c18: "#bedcff.#fffae6", c19: "#6e96b4.#aaa078", c20: "#3c5064.#786e46", c21: "#0a0a0a.#141414", c22: "#ff7878.#d2aa5a", c23: "#d2d2d2.#e6dcbe", c24: "#a08246.#786e46", c25: "#ffffaa.#e6dcbe", c26: "#dcc846.#96dc32", c27: "#fafaaa.#e6dcbe", c28: "#fafafa.#ffffff", c29: "#c85050.#6eb414" },
114 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#1e3c50.#145a14", c6: "#3c7896.#1ea01e", c7: "#5aa0c8.#5ac80a", c8: "#96d2fa.#8cff5a", c9: "#141414.#141414", c10: "#b4b4b4.#b4b4b4", c11: "#782828.#782828", c12: "#aa283c.#aa283c", c13: "#dc466e.#dc5a6e", c14: "#ff8282.#ff9682", c15: "#aa8c0a.#aa283c", c16: "#8c501e.#782828", c17: "#0a0a0a.#141414", c18: "#f0be32.#ff9682", c19: "#fadc6e.#ff9682", c20: "#d2a03c.#ff9682", c21: "#8c785a.#aa283c", c22: "#6e5032.#782828", c23: "#ffdc78.#ff9682", c24: "#aa4614.#aa283c", c25: "#e65a1e.#dc5a6e", c26: "#ff8c32.#ff9682", c27: "#aa3c14.#aa283c", c28: "#ffc850.#ff9682", c29: "#ffaa50.#ff9682", c30: "#d2463c.#aa283c", c31: "#784614.#782828", c32: "#aa820a.#aa283c", c33: "#ff783c.#ff9682", c34: "#783228.#782828", c35: "#282832.#145a14", c36: "#5a283c.#782828", c37: "#ffa03c.#ff9682", c38: "#be506e.#dc5a6e", c39: "#c8463c.#aa283c", c40: "#e6460a.#aa283c", c41: "#d2be96.#b4b4b4", c42: "#823214.#782828", c43: "#b49678.#b4b4b4", c44: "#ffdc96.#b4b4b4", c45: "#c8501e.#aa283c", c46: "#f0dc64.#ff9682", c47: "#6e5028.#782828", c48: "#e6b428.#ff9682", c49: "#dc5a1e.#aa283c", c50: "#fa8c28.#ff9682", c51: "#faaa50.#ff9682", c52: "#fafafa.#ffffff", c53: "#0a0a14.#141414", c54: "#b48c78.#b4b4b4", c55: "#ffd2b4.#b4b4b4", c56: "#dcbe8c.#b4b4b4" },
115 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#a07878.#a08c78", c6: "#503c14.#786450", c7: "#6e6e50.#465a28", c8: "#141414.#141414", c9: "#dcc896.#f0d296", c10: "#a0aa78.#8caa50", c11: "#8c9664.#788c3c", c12: "#ffff96.#ffffa0", c13: "#c8a078.#beb4a0", c14: "#be1414.#be1414", c15: "#d2be82.#e6d2c8", c16: "#966e8c.#966e8c", c17: "#dcb4d2.#dcb4d2", c18: "#c8c8c8.#c8c8c8", c19: "#463c14.#786450", c20: "#aa8232.#788c3c", c21: "#8c6414.#465a28", c22: "#d2aa1e.#beb4a0", c23: "#fad21e.#e6d2c8", c24: "#0a0a1e.#141414", c25: "#5a460a.#786450", c26: "#96780a.#465a28", c27: "#505050.#465a28", c28: "#8c8c8c.#966e8c", c29: "#dcd2b4.#c8c8c8", c30: "#dcdcdc.#c8c8c8", c31: "#0a0a0a.#141414", c32: "#d2aa28.#beb4a0", c33: "#b48c0a.#788c3c", c34: "#28140a.#141414", c35: "#aaaa8c.#8caa50", c36: "#be961e.#788c3c", c37: "#46320a.#786450", c38: "#aa8228.#788c3c", c39: "#281e14.#141414", c40: "#fae6b4.#ffffa0", c41: "#8c826e.#788c3c", c42: "#fafaf0.#ffffff", c43: "#5a503c.#465a28", c44: "#bea064.#beb4a0", c45: "#c8b478.#e6d2c8", c46: "#6e5014.#786450", c47: "#beb48c.#e6d2c8", c48: "#d2c8c8.#c8c8c8" },
116 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c5064.#006e5a", c6: "#bedcff.#5afae6", c7: "#a0c8f0.#28c8b4", c8: "#6e96b4.#148c8c", c9: "#141414.#141414", c10: "#ff7878.#ff7878", c11: "#d2d2d2.#d2d2d2", c12: "#dcc846.#ff9696", c13: "#a08246.#c86e64", c14: "#ffffaa.#ffc8c8", c15: "#d25a3c.#c86e64", c16: "#ff6e3c.#ff7878", c17: "#ffa03c.#ff9696", c18: "#a03214.#c86e64", c19: "#8c3c32.#c86e64", c20: "#dc5a28.#c86e64", c21: "#ff965a.#ff7878", c22: "#ff7846.#ff7878", c23: "#a0783c.#c86e64", c24: "#fad264.#ff9696", c25: "#5a3c32.#006e5a", c26: "#c8963c.#c86e64", c27: "#ffdca0.#ffc8c8", c28: "#fab450.#ff9696", c29: "#5a4646.#006e5a", c30: "#dcdcc8.#d2d2d2", c31: "#a08c82.#c86e64", c32: "#0a0a0a.#141414", c33: "#786e5a.#c86e64", c34: "#a07828.#c86e64", c35: "#f0dc78.#ff9696", c36: "#be8c3c.#c86e64", c37: "#6e6e78.#006e5a", c38: "#a0280a.#c86e64", c39: "#d2be96.#d2d2d2", c40: "#f0be46.#ff9696", c41: "#d2a032.#ff9696", c42: "#6e5014.#c86e64", c43: "#faf0a0.#ffc8c8", c44: "#b49678.#c86e64", c45: "#d23232.#c86e64", c46: "#82786e.#c86e64", c47: "#ffd264.#ff9696", c48: "#f06428.#ff7878", c49: "#d22828.#c86e64", c50: "#646e50.#006e5a", c51: "#aa4646.#c86e64", c52: "#fa8ca0.#ff7878", c53: "#ff6464.#ff7878", c54: "#dcdcd2.#d2d2d2" },
117 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#6e82a0.#5050a0", c6: "#1e3c5a.#0a1464", c7: "#78641e.#d26e64", c8: "#a0c8e6.#8ca0f0", c9: "#141414.#000000", c10: "#dcc850.#ff9696", c11: "#82aac8.#6e78d2", c12: "#ffffaa.#ffc8c8", c13: "#466e82.#323c8c", c14: "#a0a0a0.#a0a0a0", c15: "#822828.#d26e64", c16: "#be4646.#d26e64", c17: "#ff8264.#ff9696", c18: "#beb496.#a0a0a0", c19: "#968264.#a0a0a0", c20: "#dcdcb4.#ffc8c8", c21: "#f06464.#ff9696", c22: "#645050.#d26e64", c23: "#e63c3c.#d26e64", c24: "#645046.#d26e64", c25: "#a08c82.#a0a0a0", c26: "#0a0a0a.#000000", c27: "#282828.#000000", c28: "#dca050.#ff9696", c29: "#fad264.#ff9696", c30: "#fadc64.#ff9696", c31: "#be3c3c.#d26e64", c32: "#6e96d2.#6e78d2", c33: "#8c643c.#d26e64", c34: "#b43c32.#d26e64", c35: "#8c7864.#5050a0", c36: "#2878d2.#323c8c", c37: "#ff6e46.#ff9696", c38: "#fafafa.#ffffff", c39: "#be8c3c.#ff9696", c40: "#e6a0a0.#a0a0a0", c41: "#ff460a.#d26e64", c42: "#ffdc28.#ff9696", c43: "#b4a0a0.#a0a0a0", c44: "#aa968c.#a0a0a0", c45: "#ffa00a.#ff9696", c46: "#503232.#0a1464", c47: "#c8b4a0.#a0a0a0", c48: "#505064.#323c8c", c49: "#c8c8dc.#8ca0f0", c50: "#961e14.#d26e64", c51: "#505050.#0a1464", c52: "#be463c.#d26e64", c53: "#f06e64.#ff9696", c54: "#967864.#5050a0", c55: "#fa8c5a.#ff9696", c56: "#822832.#d26e64", c57: "#962828.#d26e64", c58: "#a08264.#a0a0a0", c59: "#5a2828.#d26e64", c60: "#d2b4b4.#a0a0a0", c61: "#ff6e50.#ff9696", c62: "#e6a050.#ff9696", c63: "#f0d2aa.#ffc8c8", c64: "#f0786e.#ff9696", c65: "#0aa0e6.#6e78d2", c66: "#d2b4a0.#a0a0a0", c67: "#dc3c3c.#d26e64", c68: "#ff6464.#ff9696", c69: "#dc6432.#d26e64", c70: "#f0a050.#ff9696", c71: "#e6aa5a.#ff9696", c72: "#a0d2fa.#8ca0f0", c73: "#ffe6a0.#ffc8c8", c74: "#ffd26e.#ff9696", c75: "#0a78dc.#323c8c", c76: "#0a3c64.#0a1464", c77: "#ffd25a.#ff9696", c78: "#3c2832.#0a1464", c79: "#50281e.#000000", c80: "#96786e.#5050a0", c81: "#463c28.#0a1464", c82: "#b4b4b4.#a0a0a0", c83: "#968c82.#a0a0a0", c84: "#504646.#0a1464", c85: "#dc783c.#ff9696", c86: "#a07846.#d26e64", c87: "#f0f0f0.#ffffff", c88: "#828282.#5050a0", c89: "#966432.#d26e64", c90: "#8c5a28.#d26e64", c91: "#646464.#323c8c" },
118 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#50505a.#50505a", c6: "#8c8c96.#8c8c96", c7: "#f0f0f0.#f0f0e6", c8: "#d2d2dc.#dcdcc8", c9: "#ffc878.#fff05a", c10: "#141414.#141414", c11: "#f0783c.#ffa01e", c12: "#c8b478.#c8b478", c13: "#d23c14.#e66e00", c14: "#aa1400.#963c00", c15: "#006e64.#006e64", c16: "#3caaa0.#3caaa0", c17: "#aa5078.#ff8c96", c18: "#fa828c.#e65a5a", c19: "#326e96.#3caaa0", c20: "#3ca0dc.#3caaa0", c21: "#78c8f0.#dcdcc8", c22: "#0a0a0a.#141414", c23: "#b4dcf0.#dcdcc8", c24: "#285a78.#006e64", c25: "#6482a0.#8c8c96", c26: "#c8dcfa.#dcdcc8", c27: "#3296d2.#3caaa0", c28: "#145a8c.#006e64", c29: "#b4e6ff.#dcdcc8", c30: "#a0bee6.#dcdcc8", c31: "#5ab4f0.#3caaa0", c32: "#78d2f0.#dcdcc8", c33: "#46a0dc.#3caaa0", c34: "#f08232.#ffa01e", c35: "#32788c.#3caaa0", c36: "#aa5a1e.#e66e00", c37: "#ffaa3c.#ffa01e", c38: "#faf0f0.#f0f0e6", c39: "#503c28.#50505a", c40: "#46463c.#50505a", c41: "#788caa.#8c8c96", c42: "#6e1428.#963c00", c43: "#641e28.#50505a", c44: "#f08296.#e65a5a", c45: "#28141e.#141414", c46: "#aa500a.#e66e00", c47: "#ffaa46.#ffa01e", c48: "#d2506e.#ff8c96", c49: "#b45a5a.#ff8c96", c50: "#823c3c.#50505a", c51: "#e67878.#e65a5a", c52: "#462814.#141414", c53: "#a05a14.#e66e00", c54: "#646e8c.#8c8c96", c55: "#281414.#141414", c56: "#a05a6e.#ff8c96", c57: "#6e3246.#50505a", c58: "#3ca0d2.#3caaa0", c59: "#3ca0c8.#3caaa0", c60: "#285aa0.#006e64", c61: "#3c96dc.#3caaa0", c62: "#3282c8.#3caaa0", c63: "#5ab4e6.#3caaa0", c64: "#78d2ff.#dcdcc8", c65: "#324682.#50505a", c66: "#a0bedc.#dcdcc8", c67: "#8ca0b4.#8c8c96", c68: "#0a6482.#006e64", c69: "#bee6fa.#dcdcc8", c70: "#b4e6f0.#dcdcc8", c71: "#828cb4.#8c8c96", c72: "#7878a0.#8c8c96", c73: "#6e283c.#50505a", c74: "#faffff.#ffffff", c75: "#964614.#963c00", c76: "#f08228.#ffa01e", c77: "#c86478.#ff8c96", c78: "#fab428.#ffa01e", c79: "#d27828.#ffa01e", c80: "#f09646.#ffa01e", c81: "#ffb450.#fff05a", c82: "#8c785a.#ff8c96", c83: "#646e82.#50505a", c84: "#b44650.#ff8c96" },
119 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#8c7882.#82a050", c6: "#fafaff.#fafffa", c7: "#dcdce6.#c8f0a0", c8: "#5a5a64.#5a6e50", c9: "#50505a.#50505a", c10: "#c8c8c8.#aac878", c11: "#141414.#141414", c12: "#963214.#824600", c13: "#e6783c.#e68c32", c14: "#fa9664.#ffb45a", c15: "#c83c28.#be6e14", c16: "#ffdcbe.#ffe682", c17: "#fa785a.#fa785a", c18: "#ffc8c8.#ffc8c8", c19: "#a03c3c.#a03c3c", c20: "#0a0a0a.#141414", c21: "#50506e.#5a6e50", c22: "#8282a0.#82a050", c23: "#282832.#141414", c24: "#323246.#50505a", c25: "#32323c.#50505a", c26: "#46b4aa.#82a050", c27: "#0a5a64.#50505a", c28: "#aaf0f0.#c8f0a0", c29: "#96d2d2.#aac878", c30: "#ffffff.#fafffa", c31: "#e66e0a.#e68c32", c32: "#323250.#50505a", c33: "#3c78a0.#5a6e50", c34: "#f08c32.#e68c32", c35: "#963c14.#824600", c36: "#ffaa5a.#ffb45a", c37: "#50a0a0.#82a050", c38: "#64280a.#824600", c39: "#aa323c.#a03c3c", c40: "#3c8c8c.#5a6e50", c41: "#dc828c.#ffb45a", c42: "#a0aac8.#aac878", c43: "#962814.#824600", c44: "#c86e6e.#fa785a", c45: "#b4c8f0.#aac878", c46: "#d23c28.#be6e14", c47: "#6e3c3c.#50505a", c48: "#502832.#50505a", c49: "#281414.#141414", c50: "#a05050.#a03c3c", c51: "#96a0b4.#82a050", c52: "#785a3c.#5a6e50", c53: "#505064.#50505a", c54: "#509696.#82a050", c55: "#82d2d2.#aac878", c56: "#6496a0.#82a050", c57: "#6ebebe.#aac878", c58: "#fa783c.#e68c32", c59: "#ffa050.#ffb45a", c60: "#d25a1e.#be6e14", c61: "#aaaad2.#aac878", c62: "#dcdcff.#c8f0a0", c63: "#c8c8f0.#c8f0a0" },
120 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#643232.#3c3c28", c6: "#dcb464.#d2dcc8", c7: "#a06e3c.#828c78", c8: "#000000.#000000", c9: "#78503c.#646e50", c10: "#d2a050.#aab4a0", c11: "#826e3c.#826e3c", c12: "#f0dc32.#f0dc32", c13: "#fffaa0.#fffaa0", c14: "#c89628.#c89628", c15: "#5a3c32.#5a3c32", c16: "#aa1e14.#1482c8", c17: "#fac8be.#96e6ff", c18: "#fa3c3c.#46aafa", c19: "#141414.#000000", c20: "#504650.#5a3c32", c21: "#6e6e8c.#826e3c", c22: "#0a0a0a.#000000", c23: "#322832.#5a3c32", c24: "#5a5a8c.#646e50", c25: "#82a0dc.#96e6ff", c26: "#5a82c8.#826e3c", c27: "#824628.#646e50", c28: "#fab43c.#f0dc32", c29: "#f0823c.#aab4a0", c30: "#325082.#5a3c32", c31: "#a0c8dc.#96e6ff", c32: "#f08246.#aab4a0", c33: "#c86478.#828c78", c34: "#be6432.#828c78", c35: "#fab446.#d2dcc8", c36: "#fab464.#d2dcc8", c37: "#6e283c.#3c3c28", c38: "#aabeb4.#96e6ff", c39: "#dcf0e6.#ffffff", c40: "#6e2846.#3c3c28", c41: "#6e7878.#826e3c", c42: "#501e32.#3c3c28", c43: "#8c505a.#646e50", c44: "#6e786e.#826e3c", c45: "#aaa0b4.#96e6ff", c46: "#c8c8dc.#96e6ff", c47: "#f0f0f0.#ffffff", c48: "#3c5082.#5a3c32", c49: "#283264.#5a3c32", c50: "#82a0c8.#96e6ff", c51: "#506ea0.#646e50", c52: "#3282c8.#826e3c", c53: "#5aaae6.#96e6ff", c54: "#8cd2ff.#ffffff", c55: "#d27846.#aab4a0", c56: "#ffd246.#f0dc32", c57: "#8c6446.#826e3c", c58: "#faa046.#aab4a0", c59: "#a0465a.#828c78", c60: "#aabee6.#96e6ff", c61: "#c8e6ff.#ffffff" },
121 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5a50a0.#325a8c", c6: "#323c78.#1e286e", c7: "#d2aaf0.#8cc8fa", c8: "#8c78be.#5078aa", c9: "#000000.#000000", c10: "#b48cd2.#6ea0d2", c11: "#5a3c32.#a0141e", c12: "#c8961e.#e66e78", c13: "#f0c846.#ff8c96", c14: "#ffe696.#ffbec8", c15: "#96783c.#c83c46", c16: "#fa5078.#3278ff", c17: "#f0b4c8.#6eaaff", c18: "#c81e5a.#1446c8", c19: "#8c1450.#1e14a0", c20: "#822846.#1e14a0", c21: "#ff7896.#3278ff", c22: "#d24678.#3278ff", c23: "#0a0a0a.#000000", c24: "#32783c.#a0141e", c25: "#8ce68c.#ffbec8", c26: "#78be78.#c83c46", c27: "#141414.#000000", c28: "#b4fa96.#ffbec8", c29: "#b43c64.#1446c8", c30: "#325a3c.#a0141e", c31: "#e664d2.#6ea0d2", c32: "#a096c8.#6ea0d2", c33: "#f0bef0.#8cc8fa", c34: "#a01e96.#1446c8", c35: "#c8c8e6.#8cc8fa", c36: "#b40a46.#1446c8", c37: "#ffc8d2.#6eaaff", c38: "#46145a.#1e286e", c39: "#ff1e6e.#3278ff", c40: "#fafaff.#6eaaff", c41: "#788cb4.#5078aa", c42: "#820a32.#1e14a0", c43: "#500a1e.#a0141e", c44: "#5a6e8c.#325a8c", c45: "#1e5028.#a0141e", c46: "#64b478.#c83c46", c47: "#bec8dc.#8cc8fa", c48: "#96e6a0.#ffbec8", c49: "#3c825a.#1e286e", c50: "#5aa05a.#c83c46", c51: "#fafafa.#6eaaff", c52: "#6e82a0.#5078aa", c53: "#e6e6fa.#8cc8fa", c54: "#c8d2dc.#8cc8fa", c55: "#285a46.#1e286e", c56: "#a0aac8.#6ea0d2", c57: "#646478.#325a8c", c58: "#be323c.#1446c8", c59: "#fa6464.#3278ff", c60: "#a0b4c8.#6ea0d2", c61: "#785050.#a0141e", c62: "#ffa082.#ffbec8", c63: "#e6503c.#3278ff", c64: "#327846.#a0141e", c65: "#c8ffaa.#ffbec8", c66: "#3c6e50.#1e286e", c67: "#6eb482.#5078aa", c68: "#d2f0be.#ffbec8", c69: "#96e696.#ffbec8", c70: "#f0f0fa.#8cc8fa", c71: "#786ea0.#5078aa", c72: "#c8c8dc.#8cc8fa", c73: "#bebed2.#8cc8fa", c74: "#8296b4.#5078aa", c75: "#7882a0.#5078aa", c76: "#f0f0ff.#8cc8fa", c77: "#821e3c.#1e14a0", c78: "#d2d2e6.#8cc8fa" },
122 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#143246.#143c46", c6: "#144678.#145078", c7: "#648cbe.#6496be", c8: "#141414.#141414", c9: "#6e3c32.#6e3c32", c10: "#fff0f0.#fffaf0", c11: "#ffc8c8.#ffd2c8", c12: "#dca0a0.#dcaaa0", c13: "#c8c8d2.#c8d2d2", c14: "#ff5a6e.#82d232", c15: "#78323c.#467800", c16: "#be4678.#64a000", c17: "#ffaab4.#b4e65a", c18: "#822846.#467800", c19: "#ff7896.#82d232", c20: "#d24678.#64a000", c21: "#0a0a0a.#141414", c22: "#32783c.#143c46", c23: "#b4fa96.#c8d2d2", c24: "#78be78.#6496be", c25: "#8ce68c.#c8d2d2", c26: "#327846.#143c46", c27: "#7882aa.#6496be", c28: "#aa2850.#64a000", c29: "#0a460a.#141414", c30: "#c8c8e6.#c8d2d2", c31: "#a0b4c8.#c8d2d2", c32: "#f0f0ff.#fffaf0", c33: "#46a05a.#6496be", c34: "#d2d2e6.#c8d2d2", c35: "#96aad2.#c8d2d2", c36: "#962814.#467800", c37: "#ffa082.#dcaaa0", c38: "#e6503c.#82d232", c39: "#c8ffaa.#c8d2d2", c40: "#96e696.#c8d2d2", c41: "#fa788c.#82d232", c42: "#d2466e.#64a000", c43: "#785050.#467800", c44: "#28783c.#143c46", c45: "#b4bed2.#c8d2d2", c46: "#b4f08c.#c8d2d2", c47: "#6eb46e.#6496be", c48: "#d2ffaa.#c8d2d2", c49: "#f0faff.#ffffff", c50: "#d2dcf0.#c8d2d2", c51: "#c8c8dc.#c8d2d2", c52: "#505a6e.#145078", c53: "#faffff.#ffffff", c54: "#8cdc8c.#c8d2d2", c55: "#6e82aa.#6496be", c56: "#fafafa.#ffffff", c57: "#c8d2dc.#c8d2d2", c58: "#6e7896.#6496be", c59: "#8296b4.#6496be", c60: "#3c465a.#143c46", c61: "#a0b4d2.#c8d2d2" },
123 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c5a1e.#324600", c6: "#bee678.#8cd23c", c7: "#141414.#141414", c8: "#a08c32.#a08232", c9: "#fffad2.#fffad2", c10: "#8cc878.#5abe32", c11: "#e6d2aa.#f0dcb4", c12: "#5aa046.#329600", c13: "#dcdcdc.#dcdce6", c14: "#bebebe.#bebec8", c15: "#e6d2aa.#dc5a78", c16: "#787878.#78788c", c17: "#32783c.#324600", c18: "#b4fa96.#8cd23c", c19: "#8ce68c.#5abe32", c20: "#0a0a0a.#141414", c21: "#78be78.#5abe32", c22: "#7882aa.#78788c", c23: "#3c4664.#324600", c24: "#788cb4.#78788c", c25: "#f0f0ff.#ffffff", c26: "#c8c8e6.#dcdce6", c27: "#d24678.#78788c", c28: "#822846.#324600", c29: "#ff7896.#f0dcb4", c30: "#a0b4c8.#bebec8", c31: "#327846.#324600", c32: "#8ca0be.#bebec8", c33: "#a0b4d2.#bebec8", c34: "#5a648c.#78788c", c35: "#d2d2e6.#dcdce6", c36: "#fafaff.#ffffff", c37: "#8c283c.#324600", c38: "#dce6f0.#dcdce6", c39: "#0a5a0a.#324600", c40: "#aaf0a0.#8cd23c", c41: "#64a05a.#329600", c42: "#3c8232.#324600", c43: "#f0faff.#ffffff", c44: "#d2dcdc.#dcdce6", c45: "#f082b4.#bebec8", c46: "#646e6e.#78788c", c47: "#5a0a32.#141414", c48: "#a0326e.#78788c", c49: "#c85a96.#78788c", c50: "#aab4b4.#bebec8", c51: "#f0fafa.#ffffff", c52: "#504632.#324600", c53: "#aa9664.#a08232", c54: "#dcc882.#f0dcb4", c55: "#0a460a.#141414", c56: "#28783c.#324600", c57: "#f0f0fa.#ffffff", c58: "#96e696.#5abe32", c59: "#c8ffaa.#f0dcb4", c60: "#dc5078.#78788c", c61: "#e6503c.#a08232", c62: "#ffa082.#f0dcb4", c63: "#785050.#78788c", c64: "#c8c8dc.#dcdce6", c65: "#5a8c5a.#329600", c66: "#822850.#78788c", c67: "#8296b4.#78788c", c68: "#d2ffaa.#f0dcb4", c69: "#c8d2dc.#dcdce6" },
124 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#8c5a3c.#8c8c50", c6: "#dcaa32.#dcc896", c7: "#fffabe.#ffffdc", c8: "#ffe650.#fae6b4", c9: "#141414.#000000", c10: "#b46edc.#b46edc", c11: "#643c82.#643c82", c12: "#9646be.#9646be", c13: "#c8c8d2.#c8c8d2", c14: "#822846.#be2864", c15: "#ff7878.#ffa0dc", c16: "#be3264.#dc508c", c17: "#646478.#646478", c18: "#fa325a.#ff78b4", c19: "#466e82.#646478", c20: "#a0d2e6.#c8c8d2", c21: "#1e3c5a.#643c82", c22: "#82aad2.#c8c8d2", c23: "#6e82a0.#646478", c24: "#0a0a0a.#000000", c25: "#aad2f0.#c8c8d2", c26: "#78641e.#8c8c50", c27: "#a0c8e6.#c8c8d2", c28: "#dcc850.#dcc896", c29: "#82aac8.#c8c8d2", c30: "#ffffaa.#ffffdc", c31: "#aad2e6.#c8c8d2", c32: "#8c783c.#8c8c50", c33: "#a0a0a0.#c8c8d2", c34: "#fafafa.#ffffff", c35: "#a0823c.#8c8c50", c36: "#c8d2dc.#c8c8d2" },
125 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5a460a.#a04600", c6: "#c8a014.#c87800", c7: "#fffab4.#ffc83c", c8: "#141414.#141414", c9: "#ffe63c.#ffa014", c10: "#e6c81e.#dc8214", c11: "#28281e.#28281e", c12: "#3c3c50.#46503c", c13: "#6e6e64.#78786e", c14: "#c8c8d2.#d2d2c8", c15: "#b43c6e.#b43c6e", c16: "#e66496.#e66496", c17: "#3c5050.#46503c", c18: "#78c8b4.#d2d2c8", c19: "#7896a0.#78786e", c20: "#507882.#78786e", c21: "#3c825a.#78786e", c22: "#5ab46e.#78786e", c23: "#0a0a0a.#141414", c24: "#788caa.#78786e", c25: "#c8c8dc.#d2d2c8", c26: "#6eb4c8.#d2d2c8", c27: "#f0f0ff.#ffffff", c28: "#a0b4c8.#d2d2c8", c29: "#fafafa.#ffffff", c30: "#e6503c.#b43c6e", c31: "#dc503c.#b43c6e", c32: "#ffa082.#e66496", c33: "#785050.#78786e", c34: "#fa9682.#e66496", c35: "#bec8dc.#d2d2c8", c36: "#96dcaa.#d2d2c8", c37: "#e6e6fa.#ffffff", c38: "#285050.#46503c", c39: "#6edcdc.#d2d2c8", c40: "#5a96a0.#78786e", c41: "#326464.#46503c", c42: "#32825a.#78786e", c43: "#325050.#46503c", c44: "#46b46e.#78786e", c45: "#5a8c82.#78786e", c46: "#78beb4.#d2d2c8", c47: "#82d2a0.#d2d2c8", c48: "#1e1e1e.#28281e", c49: "#781e28.#a04600", c50: "#aa1e32.#b43c6e", c51: "#783c3c.#a04600", c52: "#e6323c.#b43c6e", c53: "#5ab478.#78786e", c54: "#46a064.#78786e", c55: "#3c8250.#78786e", c56: "#285032.#46503c", c57: "#646e8c.#78786e", c58: "#c8281e.#b43c6e", c59: "#fa6e64.#e66496", c60: "#b4321e.#b43c6e", c61: "#78c8be.#d2d2c8", c62: "#7896aa.#78786e", c63: "#64b46e.#78786e", c64: "#c8d2dc.#d2d2c8", c65: "#6e82a0.#78786e", c66: "#dc283c.#b43c6e", c67: "#78505a.#78786e", c68: "#fafaf0.#ffffff", c69: "#aab4d2.#d2d2c8", c70: "#7882aa.#78786e", c71: "#c8c8e6.#d2d2c8", c72: "#fa7878.#e66496", c73: "#822846.#b43c6e", c74: "#ff7896.#e66496", c75: "#d24678.#b43c6e" },
126 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#785032.#d23c46", c6: "#000000.#000000", c7: "#fff046.#ffc8dc", c8: "#c87814.#fa7878", c9: "#e6be32.#faa0be", c10: "#646464.#646464", c11: "#c8c8c8.#c8c8c8", c12: "#6e1e1e.#aa3232", c13: "#c8143c.#dc3c50", c14: "#ff4632.#ff6e78", c15: "#ff8c64.#ff8282", c16: "#ffc8be.#ffc8be", c17: "#fffac8.#fff0ff", c18: "#aab4c8.#c8c8c8", c19: "#828c96.#646464", c20: "#a0a0d2.#c8c8c8", c21: "#d2d2e6.#c8c8c8", c22: "#dcdcdc.#c8c8c8", c23: "#a0a0c8.#c8c8c8", c24: "#8296aa.#646464", c25: "#141414.#000000", c26: "#5a503c.#d23c46", c27: "#fad282.#ffc8be", c28: "#dcb478.#ff8282", c29: "#b4965a.#faa0be", c30: "#5a5046.#d23c46", c31: "#786e5a.#646464", c32: "#6e645a.#646464", c33: "#5a5050.#646464", c34: "#f0c88c.#ffc8be", c35: "#b48c46.#fa7878", c36: "#0a0a0a.#000000", c37: "#c8c8e6.#c8c8c8", c38: "#7882aa.#646464", c39: "#bebebe.#c8c8c8", c40: "#787878.#646464", c41: "#968278.#646464", c42: "#827864.#646464", c43: "#dcb46e.#ff8282", c44: "#beb4aa.#c8c8c8", c45: "#be9646.#fa7878", c46: "#8c8278.#646464", c47: "#aaa08c.#c8c8c8", c48: "#6e6450.#646464", c49: "#ffd278.#ffc8dc", c50: "#aa968c.#c8c8c8" },
127 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#827864.#bea05a", c6: "#b4a096.#d2aa6e", c7: "#f0e6c8.#faf0b4", c8: "#000000.#000000", c9: "#463c3c.#8c7814", c10: "#d2c8b4.#f0d28c", c11: "#826e50.#463c82", c12: "#5a3c32.#321464", c13: "#c8aa8c.#968cc8", c14: "#e6d2b4.#c8b4f0", c15: "#a08c6e.#5a50aa", c16: "#7882aa.#d2aa6e", c17: "#5a3c82.#8c7814", c18: "#d2d2ff.#ffffff", c19: "#aaaac8.#d2aa6e", c20: "#3c3c82.#8c7814", c21: "#f0f0ff.#ffffff", c22: "#be3246.#463c82", c23: "#ff503c.#5a50aa", c24: "#141414.#000000", c25: "#aaaad2.#f0d28c", c26: "#464682.#8c7814", c27: "#dcdcdc.#faf0b4", c28: "#3c8ce6.#d2aa6e", c29: "#3c6e96.#bea05a", c30: "#dcdcff.#ffffff", c31: "#14a096.#bea05a", c32: "#be1e14.#321464", c33: "#64aadc.#d2aa6e", c34: "#1e506e.#8c7814", c35: "#e6463c.#463c82", c36: "#0a0a0a.#000000", c37: "#ff5046.#5a50aa", c38: "#c80a32.#321464", c39: "#5a4682.#bea05a", c40: "#468ce6.#d2aa6e" },
128 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c3c46.#3c3c46", c6: "#a0a0aa.#a0a0aa", c7: "#6e6e82.#6e6e82", c8: "#463c28.#005a00", c9: "#000000.#000000", c10: "#644632.#32a000", c11: "#503c14.#825000", c12: "#aa8c78.#a0ff6e", c13: "#8c6e50.#64c832", c14: "#dca046.#e6f046", c15: "#b48232.#c8be28", c16: "#8c641e.#aa8c00", c17: "#e6c878.#ffffb4", c18: "#c8c8dc.#c8c8dc", c19: "#8c785a.#64c832", c20: "#0a0a0a.#000000", c21: "#faf078.#ffffb4", c22: "#3c645a.#3c3c46", c23: "#bea050.#e6f046", c24: "#46645a.#3c3c46", c25: "#dcc85a.#ffffb4", c26: "#5abe78.#6e6e82", c27: "#5a9678.#6e6e82", c28: "#3c5a50.#3c3c46", c29: "#78d282.#a0a0aa", c30: "#a0f0a0.#a0a0aa", c31: "#c8dc78.#ffffb4", c32: "#a04682.#6e6e82", c33: "#d264aa.#a0ff6e", c34: "#fafafa.#ffffff", c35: "#78325a.#32a000", c36: "#141414.#000000", c37: "#640a0a.#825000", c38: "#781414.#825000", c39: "#a01e14.#aa8c00", c40: "#fa5a46.#e6f046", c41: "#c85032.#c8be28", c42: "#f0786e.#e6f046", c43: "#fa968c.#ffffb4", c44: "#ffa0a0.#ffffb4", c45: "#a03c82.#6e6e82", c46: "#b45a3c.#c8be28", c47: "#e66446.#e6f046", c48: "#8c463c.#32a000", c49: "#f05046.#c8be28", c50: "#b41e3c.#aa8c00", c51: "#dc5a78.#a0ff6e", c52: "#963c78.#6e6e82", c53: "#ffc8b4.#ffffb4", c54: "#b46e46.#c8be28", c55: "#786e46.#64c832", c56: "#f06e46.#e6f046", c57: "#5a5050.#32a000" },
129 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#786450.#786450", c6: "#fff0a0.#fff0a0", c7: "#be1e50.#d27800", c8: "#ffdc28.#ffdc28", c9: "#fa6414.#ffdc00", c10: "#82003c.#a03c00", c11: "#c8aa78.#c8aa78", c12: "#000000.#000000", c13: "#505064.#505064", c14: "#be3c3c.#f0a014", c15: "#8c8ca0.#8c8ca0", c16: "#c8c8d2.#c8c8d2", c17: "#ffa064.#ffff8c", c18: "#ffe6c8.#ffffb4", c19: "#3c4682.#505064", c20: "#141414.#000000", c21: "#96b4f0.#c8c8d2", c22: "#466ea0.#505064", c23: "#508cd2.#8c8ca0", c24: "#78b4fa.#c8c8d2", c25: "#ff6e6e.#ffff8c", c26: "#d24650.#f0a014", c27: "#824646.#786450", c28: "#3c508c.#505064", c29: "#323250.#505064", c30: "#aac8f0.#c8c8d2", c31: "#0a0a0a.#000000", c32: "#4682d2.#8c8ca0", c33: "#82a0f0.#8c8ca0", c34: "#82d2ff.#c8c8d2", c35: "#5a82b4.#8c8ca0", c36: "#3c64b4.#505064", c37: "#786e78.#786450", c38: "#dcdcdc.#c8c8d2", c39: "#aaaaaa.#8c8ca0", c40: "#464682.#505064", c41: "#5aa0ff.#8c8ca0", c42: "#f0f0f0.#ffffff", c43: "#5aa0fa.#8c8ca0", c44: "#5a505a.#505064", c45: "#968c96.#8c8ca0", c46: "#c8c8c8.#c8c8d2", c47: "#d2d2d2.#c8c8d2" },
130 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#146496.#a0000a", c7: "#787878.#787878", c8: "#d2dcfa.#f0dcdc", c9: "#143c78.#780000", c10: "#3cb4f0.#e63c46", c11: "#1e8caa.#be143c", c12: "#fafafa.#fafafa", c13: "#78d2f0.#ff6e6e", c14: "#fae6aa.#fadcaa", c15: "#c8b478.#c8aa78", c16: "#5a3c1e.#5a3c1e", c17: "#be3264.#be3264", c18: "#6e141e.#6e141e", c19: "#f0643c.#f0643c", c20: "#646e8c.#787878", c21: "#3c3c6e.#780000", c22: "#ffffff.#fafafa", c23: "#a0a0aa.#c8aa78", c24: "#dcdcdc.#f0dcdc", c25: "#5a96d2.#e63c46", c26: "#4678b4.#be143c", c27: "#0a0a0a.#141414", c28: "#323c6e.#780000", c29: "#3c648c.#a0000a", c30: "#c8c8c8.#f0dcdc", c31: "#4682d2.#be143c", c32: "#3c64b4.#a0000a", c33: "#8cbee6.#ff6e6e", c34: "#82d2ff.#ff6e6e", c35: "#5aa0ff.#e63c46", c36: "#323c78.#780000", c37: "#82c8ff.#ff6e6e", c38: "#325a82.#a0000a", c39: "#28325a.#780000", c40: "#5aa0fa.#e63c46", c41: "#82c8fa.#ff6e6e", c42: "#82b4e6.#ff6e6e", c43: "#508cd2.#e63c46", c44: "#3c6eaa.#be143c", c45: "#5a6482.#787878", c46: "#fffffa.#fafafa", c47: "#968c96.#787878", c48: "#786e78.#787878", c49: "#9696a0.#787878", c50: "#d24650.#be3264", c51: "#d2d2d2.#f0dcdc", c52: "#8c8c8c.#787878", c53: "#6e646e.#787878", c54: "#824646.#5a3c1e", c55: "#ff7896.#c8aa78", c56: "#1e3250.#780000", c57: "#aaaaaa.#c8aa78", c58: "#fa6464.#f0643c", c59: "#ff6e6e.#f0643c", c60: "#1e2832.#141414", c61: "#64aafa.#e63c46", c62: "#508cdc.#e63c46", c63: "#8cd2ff.#ff6e6e", c64: "#32323c.#5a3c1e", c65: "#466e8c.#a0000a", c66: "#aadcff.#f0dcdc", c67: "#6e6e78.#787878", c68: "#282828.#141414", c69: "#5096e6.#e63c46", c70: "#783c3c.#5a3c1e", c71: "#14141e.#141414", c72: "#502846.#5a3c1e", c73: "#d23c46.#be3264", c74: "#aa5050.#be3264", c75: "#5078c8.#be143c", c76: "#ff648c.#f0643c", c77: "#322846.#5a3c1e", c78: "#ffb4c8.#fadcaa", c79: "#282832.#141414", c80: "#c8c8dc.#f0dcdc", c81: "#322832.#141414", c82: "#283c50.#780000", c83: "#32283c.#141414", c84: "#a0dcff.#ff6e6e", c85: "#283250.#780000", c86: "#325064.#780000", c87: "#96a0be.#ff6e6e", c88: "#b4bec8.#f0dcdc", c89: "#d2dcf0.#f0dcdc", c90: "#6e7882.#787878", c91: "#e6f0f0.#fafafa", c92: "#dcf0f0.#f0dcdc" },
131 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#143c50.#280064", c6: "#000000.#000000", c7: "#3ca0e6.#aa82fa", c8: "#3c78a0.#6e32a0", c9: "#78c8fa.#c8aaff", c10: "#faf0e6.#faf0e6", c11: "#6e5014.#504646", c12: "#dcc882.#fabe96", c13: "#8ca096.#8c5ac8", c14: "#5a463c.#5a463c", c15: "#50506e.#50506e", c16: "#d2c8c8.#d2c8c8", c17: "#a09696.#a09696", c18: "#fadcaa.#ffd2be", c19: "#323c64.#280064", c20: "#3c6496.#6e32a0", c21: "#4682c8.#6e32a0", c22: "#0a0a0a.#000000", c23: "#78a0fa.#c8aaff", c24: "#a0c8fa.#c8aaff", c25: "#463c32.#5a463c", c26: "#5a5046.#5a463c", c27: "#141414.#000000", c28: "#28281e.#280064", c29: "#786e78.#50506e", c30: "#dcdcdc.#d2c8c8", c31: "#aaaaaa.#a09696", c32: "#c8c8c8.#d2c8c8", c33: "#466496.#6e32a0", c34: "#968c96.#a09696", c35: "#323c78.#50506e", c36: "#285a6e.#50506e", c37: "#5aa0ff.#aa82fa", c38: "#82d2ff.#c8aaff", c39: "#3c64b4.#6e32a0", c40: "#143c46.#280064", c41: "#c8dcff.#faf0e6", c42: "#142832.#280064", c43: "#c8dcfa.#d2c8c8", c44: "#d24650.#504646", c45: "#824646.#5a463c", c46: "#4682d2.#aa82fa", c47: "#3c6e82.#6e32a0", c48: "#323250.#280064", c49: "#aac8f0.#c8aaff", c50: "#82a0f0.#c8aaff", c51: "#3c508c.#50506e", c52: "#d2d2d2.#d2c8c8", c53: "#3c3228.#5a463c", c54: "#5a82b4.#6e32a0", c55: "#d2dcfa.#faf0e6", c56: "#6e5a50.#5a463c", c57: "#1e465a.#280064", c58: "#1e3c46.#280064", c59: "#f0f0f0.#faf0e6" },
132 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#a05ab4.#3c8cbe", c6: "#5a1496.#285aa0", c7: "#000000.#000000", c8: "#ffc8ff.#c8ffff", c9: "#c878e6.#78c8ff", c10: "#b46ec8.#64a0dc", c11: "#e6a0fa.#a0e6ff", c12: "#644632.#285aa0", c13: "#c88c3c.#3c8cbe", c14: "#a06432.#3c8cbe", c15: "#3c3214.#000000", c16: "#c8be82.#64a0dc", c17: "#fff0be.#c8ffff", c18: "#ffffff.#c8ffff", c19: "#141414.#000000", c20: "#f05a46.#3c8cbe", c21: "#c8c8c8.#a0e6ff", c22: "#828282.#3c8cbe", c23: "#a01e14.#285aa0", c24: "#c88278.#3c8cbe", c25: "#f0a096.#64a0dc", c26: "#5a3c28.#000000", c27: "#64320a.#000000", c28: "#3c1e0a.#000000", c29: "#825014.#285aa0", c30: "#505082.#285aa0", c31: "#50a0f0.#64a0dc", c32: "#6464b4.#3c8cbe", c33: "#505050.#285aa0" },
133 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#a06446.#aaa0a0", c6: "#784646.#827878", c7: "#d2a046.#d2d2c8", c8: "#000000.#000000", c9: "#50321e.#5a5046", c10: "#bea078.#bec8ff", c11: "#e6c896.#d2dcff", c12: "#ffe6aa.#dce6ff", c13: "#a050a0.#aaa0a0", c14: "#c878be.#bec8ff", c15: "#784678.#827878", c16: "#503c6e.#827878", c17: "#64b43c.#aaa0a0", c18: "#bed23c.#d2d2c8", c19: "#ffdc14.#d2d2c8", c20: "#503c50.#827878", c21: "#ffdc0a.#d2d2c8", c22: "#326446.#5a5046", c23: "#468c3c.#827878", c24: "#286446.#5a5046", c25: "#141414.#000000", c26: "#0a0a0a.#000000", c27: "#283c28.#5a5046", c28: "#323c32.#5a5046", c29: "#3c3c3c.#5a5046", c30: "#a0826e.#bec8ff", c31: "#826e64.#aaa0a0", c32: "#b4a096.#bec8ff", c33: "#966e64.#aaa0a0", c34: "#6e5a50.#827878", c35: "#82505a.#827878" },
134 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#144664.#64143c", c6: "#147896.#823c5a", c7: "#beaa5a.#beaa5a", c8: "#6e641e.#6e641e", c9: "#141414.#141414", c10: "#8c8c8c.#8c8c8c", c11: "#ffe6a0.#ffe68c", c12: "#c8c8c8.#c8c8c8", c13: "#82dcff.#ffbeff", c14: "#5ac8e6.#e696e6", c15: "#3ca0be.#be64d2", c16: "#501478.#a03ca0", c17: "#780a28.#780a28", c18: "#d25078.#d25078", c19: "#3c3c3c.#64143c", c20: "#0a0a0a.#141414", c21: "#828282.#8c8c8c", c22: "#5a5a5a.#6e641e", c23: "#144678.#64143c", c24: "#46a0f0.#e696e6", c25: "#2878a0.#823c5a", c26: "#4696e6.#be64d2", c27: "#145078.#64143c", c28: "#286e96.#823c5a", c29: "#50a0f0.#e696e6", c30: "#b4f0f0.#ffbeff", c31: "#96c8f0.#ffbeff", c32: "#d2d2d2.#c8c8c8", c33: "#dca0aa.#c8c8c8", c34: "#dc3c3c.#d25078", c35: "#8c0a0a.#780a28", c36: "#a03232.#780a28", c37: "#fafafa.#ffffff", c38: "#78befa.#ffbeff", c39: "#aaf0ff.#ffbeff", c40: "#be8c8c.#8c8c8c", c41: "#8cd2fa.#ffbeff", c42: "#b4b464.#beaa5a", c43: "#aa3232.#780a28", c44: "#dc4646.#d25078", c45: "#503c1e.#6e641e", c46: "#e6e6a0.#ffe68c", c47: "#be3c3c.#d25078", c48: "#dcdc96.#ffe68c", c49: "#dcdcdc.#c8c8c8", c50: "#f0f0f0.#ffffff", c51: "#140a6e.#64143c", c52: "#a00a0a.#780a28", c53: "#d22828.#d25078", c54: "#fa9678.#beaa5a", c55: "#0a96ff.#be64d2", c56: "#6ec8fa.#e696e6", c57: "#0a3250.#64143c", c58: "#0a6eaa.#823c5a", c59: "#641414.#780a28", c60: "#0a8cdc.#be64d2", c61: "#0a5082.#64143c", c62: "#323246.#64143c", c63: "#323232.#141414", c64: "#464646.#64143c", c65: "#28323c.#64143c", c66: "#282828.#141414", c67: "#6e82a0.#8c8c8c", c68: "#b4bec8.#c8c8c8", c69: "#ff0a0a.#d25078", c70: "#e6dce6.#c8c8c8", c71: "#1e1e32.#141414", c72: "#d2dce6.#c8c8c8", c73: "#6e6e64.#8c8c8c", c74: "#505a78.#64143c", c75: "#b4b48c.#beaa5a", c76: "#1e1e28.#141414", c77: "#e6e6be.#ffe68c", c78: "#aaa0aa.#8c8c8c", c79: "#bebebe.#c8c8c8", c80: "#0a3c5a.#64143c", c81: "#0aaadc.#be64d2", c82: "#14283c.#141414", c83: "#14141e.#141414", c84: "#0aa0f0.#be64d2", c85: "#0a4682.#64143c", c86: "#283250.#64143c", c87: "#0abeff.#e696e6", c88: "#0a78a0.#823c5a", c89: "#0a78b4.#823c5a", c90: "#5ad2ff.#e696e6", c91: "#a0e6ff.#ffbeff", c92: "#dcf0ff.#ffffff", c93: "#1e1e1e.#141414", c94: "#787896.#8c8c8c", c95: "#5a6464.#6e641e", c96: "#64646e.#8c8c8c", c97: "#0a1e46.#64143c", c98: "#0a3264.#64143c", c99: "#144696.#64143c", c100: "#a00a14.#780a28", c101: "#ff3c3c.#d25078", c102: "#be2828.#780a28", c103: "#f00a0a.#780a28", c104: "#8c0a14.#780a28", c105: "#8c6432.#6e641e", c106: "#6e6e6e.#8c8c8c", c107: "#c8b464.#beaa5a", c108: "#b4b45a.#beaa5a", c109: "#f0dc82.#ffe68c", c110: "#a08c64.#beaa5a", c111: "#e6e696.#ffe68c", c112: "#dcd2a0.#ffe68c", c113: "#a06e14.#6e641e", c114: "#ffdc6e.#ffe68c", c115: "#ffc80a.#beaa5a", c116: "#645a32.#6e641e", c117: "#321414.#141414", c118: "#b45a1e.#6e641e", c119: "#8c5028.#6e641e", c120: "#96463c.#6e641e", c121: "#782828.#780a28" },
135 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#000000.#000000", c6: "#5a4614.#3c6400", c7: "#c8aa46.#a0c83c", c8: "#aa8c3c.#82aa28", c9: "#826e28.#648c0a", c10: "#ffff8c.#d2ff6e", c11: "#ffdc50.#c8f046", c12: "#460a78.#000000", c13: "#c8c8c8.#c8c8c8", c14: "#50505a.#505050", c15: "#8c8c96.#82aa28", c16: "#f0faff.#ffffff", c17: "#f0f0f0.#ffffff", c18: "#d2d2dc.#c8c8c8", c19: "#0a0a0a.#000000", c20: "#ffc878.#c8f046", c21: "#c8b478.#a0c83c", c22: "#f0783c.#a0c83c", c23: "#141414.#000000", c24: "#d23c14.#648c0a", c25: "#dcc8a0.#c8c8c8", c26: "#aa140a.#3c6400", c27: "#faf0b4.#d2ff6e", c28: "#d2b478.#a0c83c", c29: "#d23c0a.#648c0a", c30: "#3caaa0.#505050", c31: "#aa0a0a.#3c6400", c32: "#0a6e64.#505050", c33: "#aa5078.#82aa28", c34: "#fa828c.#a0c83c", c35: "#82140a.#3c6400", c36: "#fab4b4.#c8c8c8", c37: "#e6e6d2.#c8c8c8", c38: "#8c280a.#3c6400", c39: "#bebeb4.#c8c8c8", c40: "#d27878.#a0c83c", c41: "#ffb4b4.#c8c8c8", c42: "#d2dce6.#c8c8c8", c43: "#b4320a.#648c0a", c44: "#f07846.#a0c83c", c45: "#d24614.#82aa28", c46: "#46aaa0.#505050" },
136 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#781e14.#642800", c6: "#d23c50.#b47832", c7: "#000000.#000000", c8: "#c8a06e.#c8a050", c9: "#fa7846.#dca03c", c10: "#785a3c.#785a28", c11: "#fff0a0.#fffa96", c12: "#dcbe8c.#ffc878", c13: "#1e1e6e.#1e1e6e", c14: "#a03c50.#8c5014", c15: "#324650.#1e1e6e", c16: "#323c50.#1e1e6e", c17: "#5096aa.#785a28", c18: "#3c6e82.#1e1e6e", c19: "#141414.#000000", c20: "#8cc8d2.#ffc878", c21: "#3c5a64.#1e1e6e", c22: "#82a0b4.#c8a050", c23: "#6e8296.#785a28", c24: "#466e82.#785a28", c25: "#0a0a0a.#000000", c26: "#781414.#642800", c27: "#14141e.#000000", c28: "#aa3c14.#642800", c29: "#c8c8d2.#ffc878", c30: "#5a6464.#785a28", c31: "#46d2dc.#ffc878", c32: "#3cd2dc.#ffc878", c33: "#3caac8.#c8a050", c34: "#aad2dc.#ffc878", c35: "#c8d2d2.#ffc878", c36: "#1e1e1e.#000000", c37: "#c87878.#c8a050", c38: "#5a140a.#642800", c39: "#dcdcdc.#ffffff", c40: "#dc5a28.#b47832", c41: "#f0f0f0.#ffffff", c42: "#d27878.#c8a050", c43: "#d25032.#b47832", c44: "#fafafa.#ffffff" },
137 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#c83c5a.#1e46dc", c6: "#fad2c8.#8ce6ff", c7: "#78283c.#0a1eb4", c8: "#f0aaa0.#50a0ff", c9: "#ff6464.#286eff", c10: "#0a5a78.#963c64", c11: "#5abee6.#ffc8e6", c12: "#000000.#000000", c13: "#0a82a0.#be78a0", c14: "#0aaad2.#e6b4c8", c15: "#c8c8c8.#c8c8c8", c16: "#8cd2f0.#fff0ff", c17: "#32468c.#963c64", c18: "#5a6ebe.#be78a0", c19: "#0a2850.#963c64", c20: "#8c8cbe.#ffc8e6", c21: "#b4befa.#fff0ff", c22: "#3c468c.#963c64", c23: "#0a141e.#000000", c24: "#142850.#963c64", c25: "#788cd2.#ffc8e6", c26: "#788cc8.#ffc8e6", c27: "#14141e.#000000", c28: "#141414.#000000", c29: "#aa3246.#1e46dc", c30: "#dca014.#286eff", c31: "#ffff14.#50a0ff", c32: "#1e3c96.#963c64", c33: "#3c6ebe.#be78a0", c34: "#a0dcfa.#fff0ff", c35: "#7896be.#ffc8e6", c36: "#5a140a.#0a1eb4", c37: "#787882.#0a1eb4", c38: "#dc5a28.#1e46dc", c39: "#aa2846.#1e46dc", c40: "#c8c8d2.#c8c8c8", c41: "#283246.#963c64", c42: "#506e8c.#963c64", c43: "#3c5064.#963c64", c44: "#5a0a0a.#0a1eb4", c45: "#0a0a0a.#000000", c46: "#28468c.#963c64", c47: "#506ebe.#be78a0", c48: "#5096dc.#ffc8e6", c49: "#283278.#963c64", c50: "#78281e.#0a1eb4", c51: "#1e1e1e.#000000", c52: "#fff00a.#50a0ff", c53: "#f0a00a.#286eff", c54: "#beb4c8.#c8c8c8", c55: "#ffff0a.#50a0ff", c56: "#648cd2.#ffc8e6", c57: "#968ca0.#c8c8c8", c58: "#f0f0f0.#ffffff", c59: "#aa3c14.#0a1eb4", c60: "#640a0a.#0a1eb4", c61: "#8c2814.#0a1eb4", c62: "#642814.#0a1eb4", c63: "#f0b4c8.#8ce6ff", c64: "#b43c28.#1e46dc", c65: "#c82846.#1e46dc", c66: "#dcdcdc.#c8c8c8", c67: "#6e7882.#963c64", c68: "#28286e.#963c64", c69: "#dc5032.#1e46dc", c70: "#a00a46.#0a1eb4", c71: "#fa5a1e.#286eff", c72: "#8c0a46.#0a1eb4", c73: "#c8d2d2.#c8c8c8", c74: "#50505a.#0a1eb4", c75: "#5a6e8c.#963c64" },
138 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#a0826e.#a08264", c6: "#fff0c8.#ffe6be", c7: "#645032.#6e5028", c8: "#c8aa78.#c8a06e", c9: "#e6dc82.#f0c878", c10: "#000000.#000000", c11: "#3c6eaa.#8c5096", c12: "#3c3c82.#783278", c13: "#a0e6fa.#e6d2ff", c14: "#64befa.#d2a0fa", c15: "#6e6e6e.#6e6e6e", c16: "#3ca0c8.#be78c8", c17: "#c8c8c8.#c8c8c8", c18: "#282850.#783278", c19: "#141414.#000000", c20: "#5a64aa.#8c5096", c21: "#3c3c8c.#783278", c22: "#7878c8.#8c5096", c23: "#0a0a0a.#000000", c24: "#787882.#6e6e6e", c25: "#464650.#6e5028", c26: "#c89614.#a08264", c27: "#5a646e.#6e6e6e", c28: "#ffd214.#f0c878", c29: "#46468c.#783278", c30: "#3c3c50.#783278", c31: "#7878d2.#8c5096", c32: "#c8c8d2.#c8c8c8", c33: "#ffd246.#f0c878", c34: "#646e8c.#6e6e6e", c35: "#bebebe.#c8c8c8", c36: "#dcaa0a.#c8a06e", c37: "#50506e.#783278", c38: "#1e1e1e.#000000", c39: "#faffff.#ffffff", c40: "#c8d2d2.#c8c8c8", c41: "#c84632.#a08264", c42: "#d2d2d2.#c8c8c8", c43: "#785a0a.#6e5028", c44: "#82640a.#6e5028", c45: "#fafafa.#ffffff", c46: "#dcaa14.#c8a06e", c47: "#be3c3c.#a08264", c48: "#6e3c5a.#6e5028", c49: "#e64632.#a08264", c50: "#be7878.#a08264", c51: "#5a140a.#6e5028", c52: "#502846.#6e5028", c53: "#96505a.#6e6e6e", c54: "#8c2832.#6e5028", c55: "#be3c46.#a08264", c56: "#fff050.#f0c878", c57: "#28141e.#000000", c58: "#dc6e50.#a08264", c59: "#50465a.#6e5028", c60: "#322832.#6e5028", c61: "#645082.#6e6e6e", c62: "#8278a0.#6e6e6e", c63: "#b48c28.#a08264", c64: "#f0be14.#c8a06e", c65: "#bebec8.#c8c8c8", c66: "#f0f0f0.#ffffff", c67: "#aa463c.#6e5028", c68: "#dc5028.#a08264", c69: "#8c96dc.#d2a0fa", c70: "#5a281e.#6e5028", c71: "#786e78.#6e6e6e", c72: "#1e1e3c.#000000", c73: "#d2a00a.#c8a06e", c74: "#fff0a0.#ffe6be", c75: "#8c8c8c.#a08264", c76: "#505050.#6e5028", c77: "#5a460a.#6e5028", c78: "#323232.#6e5028", c79: "#822828.#6e5028", c80: "#ff6450.#c8a06e", c81: "#283250.#783278", c82: "#e6e6e6.#ffe6be" },
139 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#a0826e.#aa965a", c6: "#e6dc82.#faf06e", c7: "#64503c.#6e6e32", c8: "#c8aa78.#d2be64", c9: "#000000.#000000", c10: "#fff0c8.#ffffb4", c11: "#3c6eaa.#a046a0", c12: "#3c3c82.#641e78", c13: "#3ca0c8.#aa6ec8", c14: "#64befa.#d296f0", c15: "#3c3c3c.#3c3c3c", c16: "#fffaa0.#ffff82", c17: "#82320a.#6e6e32", c18: "#dc3c3c.#aa965a", c19: "#ffbebe.#ffffb4", c20: "#fa826e.#d2be64", c21: "#141414.#000000", c22: "#dcbe28.#d2be64", c23: "#6e4614.#6e6e32", c24: "#f0aa28.#d2be64", c25: "#ff7878.#d2be64", c26: "#781e1e.#6e6e32", c27: "#a0505a.#aa965a", c28: "#f0a0aa.#d2be64", c29: "#e66e82.#d2be64", c30: "#5a3232.#6e6e32", c31: "#fff0a0.#ffff82", c32: "#fff050.#faf06e", c33: "#be6e32.#aa965a", c34: "#8c4650.#6e6e32", c35: "#dcbe50.#d2be64", c36: "#faf0a0.#ffff82", c37: "#aa8c50.#aa965a", c38: "#a06e14.#6e6e32", c39: "#5aa03c.#6e6e32", c40: "#325a28.#3c3c3c", c41: "#fa8ca0.#d2be64", c42: "#82dc78.#d2be64", c43: "#647832.#6e6e32", c44: "#3c5028.#3c3c3c", c45: "#be646e.#aa965a", c46: "#8caa50.#aa965a", c47: "#14503c.#3c3c3c", c48: "#1eb4a0.#aa6ec8", c49: "#284646.#3c3c3c", c50: "#50a0aa.#aa6ec8", c51: "#14786e.#a046a0", c52: "#0a0a0a.#000000", c53: "#3c7878.#a046a0", c54: "#5ad2c8.#d296f0", c55: "#78bec8.#d296f0", c56: "#285a50.#3c3c3c", c57: "#649678.#aa965a", c58: "#82dc96.#d2be64", c59: "#285a1e.#3c3c3c", c60: "#64b446.#aa965a", c61: "#3c8c28.#6e6e32", c62: "#8cc8dc.#d296f0", c63: "#a0e6f0.#d296f0", c64: "#5a96a0.#a046a0", c65: "#1e8c6e.#a046a0", c66: "#64646e.#6e6e32", c67: "#b4b4be.#d2be64", c68: "#1e643c.#3c3c3c", c69: "#5ac850.#aa965a", c70: "#64280a.#6e6e32", c71: "#aaaaaa.#d2be64", c72: "#dc4646.#aa965a", c73: "#14783c.#3c3c3c", c74: "#6ebe46.#aa965a", c75: "#64c83c.#aa965a", c76: "#c8c8c8.#ffffb4", c77: "#3c140a.#000000", c78: "#78f0e6.#d296f0", c79: "#145046.#3c3c3c", c80: "#fffaff.#ffffff", c81: "#a0d282.#d2be64", c82: "#fae6fa.#ffffff", c83: "#dcd2be.#ffffb4", c84: "#82280a.#6e6e32", c85: "#be6e28.#aa965a", c86: "#ff8278.#d2be64", c87: "#640a0a.#3c3c3c", c88: "#96f096.#faf06e", c89: "#0a503c.#3c3c3c", c90: "#5aa032.#6e6e32", c91: "#284614.#3c3c3c", c92: "#3c6e1e.#6e6e32", c93: "#82f0dc.#d296f0", c94: "#1e8c78.#a046a0", c95: "#50c8aa.#aa6ec8", c96: "#0a786e.#a046a0" },
140 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#785028.#3c9600", c6: "#462800.#146e00", c7: "#000000.#000000", c8: "#c88228.#8ce614", c9: "#a06e28.#64be3c", c10: "#ff8caa.#ff8caa", c11: "#ff4682.#ff4682", c12: "#bea000.#bea000", c13: "#f0c800.#f0c800", c14: "#143c6e.#143c6e", c15: "#5a96b4.#143c6e", c16: "#c8e6f0.#ffffff", c17: "#3c5a64.#143c6e", c18: "#8cc8c8.#ff8caa", c19: "#141414.#000000", c20: "#1464b4.#143c6e", c21: "#143c78.#143c6e", c22: "#0a0a0a.#000000", c23: "#4682fa.#143c6e", c24: "#f0463c.#ff4682", c25: "#c81e14.#64be3c", c26: "#fafafa.#ffffff", c27: "#828282.#64be3c", c28: "#ffa08c.#ff8caa", c29: "#d2d2d2.#ffffff", c30: "#dcfafa.#ffffff", c31: "#dcf0f0.#ffffff", c32: "#bed2c8.#ffffff", c33: "#8cc8d2.#ffffff" },
141 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#464664.#46505a", c6: "#b4aaa0.#a0aaa0", c7: "#000000.#000000", c8: "#503214.#326400", c9: "#c8a078.#d2ff64", c10: "#785028.#5a8c00", c11: "#e6e6d2.#dce6d2", c12: "#be8c3c.#b4e63c", c13: "#966e32.#82b432", c14: "#5a4646.#3c5a28", c15: "#464646.#3c5a28", c16: "#a0a0a0.#a0aaa0", c17: "#787878.#46505a", c18: "#0a0a0a.#000000", c19: "#282828.#326400", c20: "#505050.#3c5a28", c21: "#ffc85a.#d2ff64", c22: "#ffdc8c.#dce6d2", c23: "#785a28.#5a8c00", c24: "#828282.#a0aaa0", c25: "#d2a046.#b4e63c", c26: "#dc963c.#b4e63c", c27: "#c8c8c8.#dce6d2", c28: "#a0a096.#a0aaa0", c29: "#a0466e.#82b432", c30: "#be648c.#d2ff64", c31: "#969696.#a0aaa0", c32: "#96783c.#82b432", c33: "#d29646.#b4e63c", c34: "#fadc8c.#dce6d2", c35: "#d282aa.#a0aaa0", c36: "#964664.#82b432", c37: "#fafafa.#ffffff", c38: "#b4648c.#d2ff64", c39: "#826428.#5a8c00", c40: "#fffaff.#ffffff", c41: "#fabe5a.#d2ff64", c42: "#f0b46e.#d2ff64", c43: "#323232.#326400", c44: "#141414.#000000", c45: "#5a5a5a.#3c5a28", c46: "#646464.#46505a", c47: "#463c3c.#3c5a28", c48: "#78465a.#3c5a28", c49: "#dc9646.#b4e63c", c50: "#a04664.#82b432", c51: "#823250.#3c5a28", c52: "#8c501e.#5a8c00", c53: "#a08250.#b4e63c", c54: "#d2aa64.#d2ff64", c55: "#d2d2d2.#dce6d2", c56: "#f0be78.#d2ff64", c57: "#ffd278.#d2ff64", c58: "#ffa0b4.#a0aaa0", c59: "#642828.#326400", c60: "#aa3c46.#82b432", c61: "#dc6e78.#d2ff64", c62: "#822832.#5a8c00", c63: "#6e6e6e.#46505a" },
142 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#9682a0.#b478b4", c6: "#503c78.#783c6e", c7: "#c8c8e6.#ffc8fa", c8: "#aaaad2.#dca0d2", c9: "#32146e.#140aa0", c10: "#000000.#000000", c11: "#785096.#141ebe", c12: "#9664c8.#3c64ff", c13: "#aa82dc.#6e96ff", c14: "#c8c8c8.#c8c8c8", c15: "#327828.#327828", c16: "#821e3c.#821e3c", c17: "#c83c46.#c83c46", c18: "#e68ca0.#e68ca0", c19: "#823c5a.#821e3c", c20: "#f0aab4.#e68ca0", c21: "#c87896.#e68ca0", c22: "#be5082.#c83c46", c23: "#be6414.#c83c46", c24: "#f0783c.#c83c46", c25: "#ffd28c.#e68ca0", c26: "#ffaa6e.#e68ca0", c27: "#643c82.#783c6e", c28: "#0a0a0a.#000000", c29: "#a082c8.#6e96ff", c30: "#7864b4.#141ebe", c31: "#3c3c3c.#783c6e", c32: "#641446.#821e3c", c33: "#96468c.#141ebe", c34: "#141414.#000000", c35: "#6e501e.#821e3c", c36: "#f0d264.#e68ca0", c37: "#d2a032.#c83c46", c38: "#e6aa0a.#c83c46", c39: "#ffdc28.#e68ca0", c40: "#b478a0.#b478b4", c41: "#b4aae6.#dca0d2", c42: "#fffa78.#c8c8c8", c43: "#e6a0dc.#ffc8fa" },
143 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#000000.#000000", c6: "#143c3c.#0a3278", c7: "#508caa.#3278c8", c8: "#325a78.#1e46a0", c9: "#78a0be.#3c8cc8", c10: "#fae6be.#fae6aa", c11: "#e6c8aa.#e6c8a0", c12: "#787878.#787878", c13: "#a07850.#a07846", c14: "#fad2be.#f0dca0", c15: "#c8c8c8.#c8c8c8", c16: "#785a1e.#786414", c17: "#643c1e.#644614", c18: "#c8a05a.#c8a050", c19: "#963c64.#a07846", c20: "#ffd2f0.#ffffff", c21: "#ffa0aa.#e6c8a0", c22: "#c86496.#a07846", c23: "#0a0a0a.#000000", c24: "#f06e8c.#c8a050", c25: "#501e32.#644614", c26: "#141414.#000000", c27: "#3c6e50.#1e46a0", c28: "#b45078.#a07846", c29: "#a0e68c.#c8c8c8", c30: "#78c878.#787878", c31: "#50a05a.#787878", c32: "#a06450.#a07846", c33: "#fa6e1e.#c8a050", c34: "#ffd2aa.#f0dca0", c35: "#ffaa78.#e6c8a0", c36: "#fffa78.#fae6aa", c37: "#fad23c.#c8a050", c38: "#c8a032.#c8a050", c39: "#5a8c64.#787878", c40: "#46645a.#1e46a0", c41: "#78be6e.#787878", c42: "#8ce678.#c8a050", c43: "#a07814.#786414", c44: "#ffdc28.#c8a050", c45: "#e6aa0a.#c8a050", c46: "#964664.#a07846", c47: "#ffdce6.#fae6aa", c48: "#ffb4c8.#f0dca0", c49: "#be64aa.#787878", c50: "#e682c8.#e6c8a0", c51: "#327846.#1e46a0", c52: "#aaf0a0.#c8c8c8", c53: "#8cdc8c.#3c8cc8", c54: "#967814.#786414", c55: "#d2aa1e.#c8a050", c56: "#fff078.#e6c8a0", c57: "#fadc32.#c8a050", c58: "#50aa6e.#787878", c59: "#0a0a14.#000000" },
144 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#005078.#1478d2", c6: "#96c8ff.#bef0ff", c7: "#4682d2.#78aaff", c8: "#000000.#000000", c9: "#6eaafa.#aad2ff", c10: "#003250.#0a3c78", c11: "#0078be.#46a0ff", c12: "#5a3c14.#5a3c14", c13: "#b49678.#b49678", c14: "#8c6e50.#8c6e50", c15: "#be283c.#be283c", c16: "#c8e6ff.#e6ffff", c17: "#c8c8c8.#c8c8c8", c18: "#141414.#000000", c19: "#b4b4be.#c8c8c8", c20: "#6e6e78.#8c6e50", c21: "#783c3c.#505050", c22: "#501e28.#5a3c14", c23: "#d23c6e.#be283c", c24: "#50505a.#505050", c25: "#6e3c3c.#505050", c26: "#fa5050.#be283c", c27: "#5a785a.#505050", c28: "#8caa8c.#b49678", c29: "#aac8aa.#c8c8c8", c30: "#ff5050.#be283c", c31: "#dc3246.#be283c", c32: "#788c78.#8c6e50", c33: "#3c3c46.#505050", c34: "#646478.#505050", c35: "#fafafa.#ffffff", c36: "#dcdcdc.#c8c8c8", c37: "#465a46.#505050", c38: "#8c2832.#be283c", c39: "#3c3c3c.#505050", c40: "#5a6e5a.#505050", c41: "#323c32.#505050", c42: "#0a0a0a.#000000", c43: "#aa5a50.#8c6e50", c44: "#1e1e1e.#000000", c45: "#466450.#505050", c46: "#aad2aa.#c8c8c8", c47: "#787882.#8c6e50", c48: "#965046.#8c6e50", c49: "#6e826e.#8c6e50", c50: "#ff7850.#b49678", c51: "#dc501e.#be283c", c52: "#3c5a3c.#505050", c53: "#78323c.#5a3c14", c54: "#9696a0.#b49678", c55: "#dc2846.#be283c" },
145 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#503c14.#782800", c6: "#a07814.#aa6400", c7: "#ffd23c.#ffc800", c8: "#141414.#000000", c9: "#d2aa0a.#d29600", c10: "#dcdcdc.#dcdcdc", c11: "#fa9614.#fa6414", c12: "#c86e14.#c83c14", c13: "#786e14.#786e14", c14: "#a08c32.#a08c32", c15: "#6e6e6e.#6e6e6e", c16: "#5a5a8c.#6e6e6e", c17: "#7878aa.#6e6e6e", c18: "#8c8cbe.#6e6e6e", c19: "#bebedc.#dcdcdc", c20: "#0a0a0a.#000000", c21: "#3c3c50.#782800", c22: "#a0141e.#782800", c23: "#6e6e78.#6e6e6e", c24: "#b4b4be.#dcdcdc", c25: "#f04664.#c83c14", c26: "#96a0c8.#dcdcdc", c27: "#7882a0.#6e6e6e", c28: "#464650.#782800", c29: "#323232.#782800", c30: "#3c4650.#782800", c31: "#ff6446.#fa6414", c32: "#be3c0a.#c83c14", c33: "#dcb464.#ffc800", c34: "#6e643c.#786e14", c35: "#ffdc6e.#ffc800", c36: "#fff0a0.#dcdcdc", c37: "#dcbe5a.#ffc800", c38: "#aa505a.#6e6e6e", c39: "#78323c.#782800", c40: "#a04650.#6e6e6e", c41: "#dca0aa.#dcdcdc", c42: "#6e0a0a.#782800", c43: "#503c1e.#782800", c44: "#821414.#782800", c45: "#8c8c96.#6e6e6e", c46: "#dc4646.#c83c14", c47: "#c8c8e6.#dcdcdc", c48: "#6e6e96.#6e6e6e", c49: "#505082.#6e6e6e", c50: "#b4bee6.#dcdcdc", c51: "#828cb4.#6e6e6e", c52: "#323246.#782800", c53: "#6e6eb4.#6e6e6e", c54: "#b4b4b4.#dcdcdc", c55: "#aa0a0a.#782800", c56: "#fa3c3c.#c83c14", c57: "#dcaa64.#ffc800", c58: "#506e8c.#6e6e6e", c59: "#a0bedc.#dcdcdc", c60: "#642814.#782800", c61: "#8caad2.#dcdcdc", c62: "#6e8cb4.#6e6e6e", c63: "#dc5a6e.#c83c14", c64: "#ff8caa.#dcdcdc", c65: "#ffdc82.#ffc800", c66: "#28323c.#000000", c67: "#787878.#6e6e6e", c68: "#0a0a14.#000000", c69: "#14140a.#000000", c70: "#1e1414.#000000", c71: "#f0fafa.#ffffff", c72: "#f0f0f0.#ffffff" },
146 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#d20a0a.#d20a0a", c6: "#783c14.#aa4650", c7: "#000000.#000000", c8: "#dc9614.#e68ca0", c9: "#f0643c.#f0643c", c10: "#ffa046.#ffa046", c11: "#ffd264.#ffd264", c12: "#ffc846.#ffbec8", c13: "#fff064.#ffdce6", c14: "#503c28.#820000", c15: "#8c6446.#aa1414", c16: "#c8c8c8.#c8c8c8", c17: "#b48c64.#dc3c3c", c18: "#646464.#646464", c19: "#8c7882.#dc3c3c", c20: "#fafaff.#ffffff", c21: "#5a5a64.#646464", c22: "#50505a.#646464", c23: "#dcdce6.#c8c8c8", c24: "#141414.#000000", c25: "#d2c8c8.#c8c8c8", c26: "#0a0a0a.#000000", c27: "#78828c.#646464", c28: "#b4b4c8.#c8c8c8", c29: "#bebec8.#c8c8c8", c30: "#ffdcbe.#c8c8c8", c31: "#963214.#aa4650", c32: "#e6783c.#f0643c", c33: "#fa9664.#ffa046", c34: "#c83c28.#d20a0a", c35: "#962814.#aa4650", c36: "#b45a64.#dc3c3c", c37: "#ffc8c8.#c8c8c8", c38: "#a03c3c.#aa1414", c39: "#d28c8c.#dc3c3c", c40: "#e67846.#f0643c", c41: "#8c8c96.#dc3c3c", c42: "#fabec8.#c8c8c8", c43: "#fa785a.#f0643c", c44: "#a0323c.#aa1414", c45: "#c84628.#f0643c", c46: "#ffc8d2.#c8c8c8", c47: "#a03c46.#aa1414" },
147 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#a0968c.#a0968c", c6: "#5a5a5a.#5a5a5a", c7: "#000000.#000000", c8: "#dcd2dc.#dcd2dc", c9: "#5a64be.#b43c82", c10: "#283282.#961464", c11: "#b4c8ff.#ffa0f0", c12: "#8ca0fa.#f082c8", c13: "#7882d2.#d25abe", c14: "#284678.#961464", c15: "#4682be.#b43c82", c16: "#78aaf0.#f082c8", c17: "#3c465a.#5a5a5a", c18: "#d2dce6.#dcd2dc", c19: "#3c64a0.#b43c82", c20: "#0a0a0a.#000000", c21: "#8296a0.#a0968c", c22: "#6e7882.#5a5a5a", c23: "#a0aab4.#a0968c", c24: "#141414.#000000", c25: "#4678aa.#b43c82", c26: "#647882.#5a5a5a", c27: "#a0b4be.#a0968c", c28: "#780a0a.#5a5a5a", c29: "#78788c.#a0968c", c30: "#e64646.#a0968c", c31: "#be1414.#5a5a5a", c32: "#822828.#5a5a5a", c33: "#28323c.#961464", c34: "#b44650.#5a5a5a", c35: "#f08282.#a0968c", c36: "#465a6e.#5a5a5a", c37: "#506478.#5a5a5a", c38: "#506464.#5a5a5a", c39: "#466496.#b43c82", c40: "#1e2832.#000000" },
148 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#000000.#000000", c6: "#a0a0a0.#a0a0a0", c7: "#5a505a.#5a505a", c8: "#dcd2dc.#dcd2dc", c9: "#143278.#963278", c10: "#466ec8.#be5aaa", c11: "#5a8cf0.#dc82c8", c12: "#78aaff.#f0a0dc", c13: "#820a3c.#820a3c", c14: "#b40a46.#b40a46", c15: "#142878.#dc8200", c16: "#78c8ff.#fae664", c17: "#3c5aff.#ffbe00", c18: "#787878.#5a505a", c19: "#505050.#5a505a", c20: "#f0f0f0.#ffffff", c21: "#0a0a0a.#000000", c22: "#bed2dc.#dcd2dc", c23: "#1e3278.#963278", c24: "#1e3c78.#963278", c25: "#3c3c3c.#5a505a", c26: "#a0a096.#a0a0a0", c27: "#64645a.#5a505a", c28: "#788282.#a0a0a0", c29: "#82bef0.#fae664", c30: "#3296dc.#dc82c8", c31: "#3c82d2.#be5aaa", c32: "#141414.#000000", c33: "#323232.#5a505a", c34: "#1e5aa0.#963278", c35: "#78aaf0.#f0a0dc", c36: "#8ca0a0.#a0a0a0", c37: "#828278.#a0a0a0", c38: "#283c78.#963278", c39: "#464646.#5a505a", c40: "#0a5aaa.#963278", c41: "#3c82dc.#be5aaa", c42: "#0a82dc.#be5aaa", c43: "#bedcdc.#dcd2dc", c44: "#0a3278.#963278", c45: "#322828.#000000", c46: "#b4d2dc.#dcd2dc", c47: "#285aaa.#be5aaa", c48: "#b42832.#b40a46", c49: "#fa5064.#b40a46", c50: "#963232.#820a3c", c51: "#78788c.#a0a0a0", c52: "#ff6450.#b40a46", c53: "#8c8c8c.#a0a0a0", c54: "#d2dce6.#dcd2dc", c55: "#a0b4be.#a0a0a0", c56: "#50aaf0.#dc82c8", c57: "#d22832.#b40a46", c58: "#ff5064.#b40a46", c59: "#0a78be.#be5aaa" },
149 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5a3c1e.#14280a", c6: "#fff0be.#fae6c8", c7: "#000000.#000000", c8: "#f0a03c.#78a05a", c9: "#f0be8c.#e6b4a0", c10: "#dc783c.#507832", c11: "#a05a46.#3c5a14", c12: "#fabe5a.#96c88c", c13: "#146e64.#c878be", c14: "#c8c8c8.#c8c8c8", c15: "#1ea078.#f0aaf0", c16: "#143c32.#a04696", c17: "#aa8c3c.#a08250", c18: "#646464.#646464", c19: "#3c3c46.#a04696", c20: "#64646e.#646464", c21: "#0a0a0a.#000000", c22: "#8282a0.#646464", c23: "#141414.#000000", c24: "#c8c8dc.#c8c8c8", c25: "#8c8ca0.#646464", c26: "#785a3c.#3c5a14", c27: "#ffc878.#e6b4a0", c28: "#c8a05a.#a08250", c29: "#3c3246.#a04696", c30: "#3c323c.#a04696", c31: "#d2d2d2.#c8c8c8", c32: "#fafaff.#ffffff", c33: "#463c3c.#14280a", c34: "#fafafa.#ffffff", c35: "#282832.#a04696", c36: "#1e1e1e.#a04696", c37: "#1e1e28.#a04696", c38: "#5078c8.#f0aaf0", c39: "#50a0f0.#f0aaf0", c40: "#5ad2fa.#c8c8c8", c41: "#323232.#a04696", c42: "#6464b4.#646464", c43: "#785a32.#3c5a14", c44: "#505082.#646464", c45: "#dc3c3c.#507832", c46: "#463232.#14280a", c47: "#781e28.#14280a", c48: "#ffd278.#e6b4a0", c49: "#fad264.#96c88c" },
150 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#0A0A0A.#0A0A0A", c6: "#281E2D.#281E2D", c7: "#371E50.#19640a", c8: "#373750.#414141", c9: "#503C6E.#19640a", c10: "#643C8C.#414141", c11: "#69329B.#50960a", c12: "#783C82.#50960a", c13: "#827D9B.#8C8C8C", c14: "#963214.#19640a", c15: "#963CBE.#7DCD32", c16: "#9646BE.#7DCD32", c17: "#9664BE.#7DCD32", c18: "#AA8CB4.#BEB4B4", c19: "#AF82D2.#7DCD32", c20: "#B44BF0.#A5E65A", c21: "#B464C8.#7DCD32", c22: "#B4AAC3.#BEB4B4", c23: "#BE8CA0.#7DCD32", c24: "#DCA0BE.#A5E65A", c25: "#DCD7E6.#DCDCDC" },
151 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#b46496.#4678aa", c6: "#5a2850.#143c82", c7: "#ffb4d2.#a0dcff", c8: "#f082b4.#78aad2", c9: "#000000.#000000", c10: "#ffd2f0.#c8ffff", c11: "#143c6e.#143c6e", c12: "#c8c8c8.#c8c8c8", c13: "#2864e6.#2864e6", c14: "#82aafa.#82aafa", c15: "#5a6478.#143c82", c16: "#f0f0ff.#ffffff", c17: "#0a0a0a.#000000", c18: "#e6e6fa.#c8ffff", c19: "#d2d2f0.#c8c8c8", c20: "#d2d2e6.#c8c8c8", c21: "#141414.#000000", c22: "#5a3c32.#143c82", c23: "#a08264.#4678aa", c24: "#a0826e.#4678aa", c25: "#786446.#143c82", c26: "#e6dcb4.#c8c8c8", c27: "#b4b48c.#c8c8c8", c28: "#f0dcbe.#c8c8c8", c29: "#beb496.#c8c8c8", c30: "#827864.#4678aa", c31: "#6e7882.#4678aa", c32: "#96a0aa.#4678aa", c33: "#963c5a.#143c82", c34: "#dc82a0.#78aad2", c35: "#c85a82.#4678aa", c36: "#8c3c5a.#143c82", c37: "#dc8296.#78aad2", c38: "#5a1e28.#143c82", c39: "#321e1e.#143c82", c40: "#ffaac8.#a0dcff", c41: "#463228.#143c82", c42: "#5a3c46.#143c82", c43: "#968c6e.#4678aa", c44: "#823c50.#143c82", c45: "#281e1e.#000000", c46: "#828caa.#4678aa", c47: "#3c3232.#143c82", c48: "#1e1e1e.#000000", c49: "#968c8c.#4678aa", c50: "#f0e6e6.#c8ffff", c51: "#c8c8be.#c8c8c8", c52: "#281e14.#000000", c53: "#787864.#4678aa", c54: "#5a4632.#143c82", c55: "#503c28.#143c82", c56: "#8c6e50.#4678aa", c57: "#c8aa96.#c8c8c8", c58: "#966464.#4678aa", c59: "#dcaaa0.#78aad2", c60: "#aa8c6e.#4678aa", c61: "#fafafa.#ffffff", c62: "#5a4646.#143c82", c63: "#d2d2b4.#c8c8c8", c64: "#faf0d2.#c8ffff", c65: "#6e6446.#143c82", c66: "#8c3246.#143c82", c67: "#c85078.#4678aa", c68: "#969678.#4678aa" },
152 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#648c28.#c8783c", c6: "#3c6414.#a05014", c7: "#82e632.#ffdc96", c8: "#6eb428.#f0a06e", c9: "#000000.#000000", c10: "#3c5a14.#826e00", c11: "#829650.#beaa1e", c12: "#d2fa8c.#faff64", c13: "#f0ffc8.#ffffc8", c14: "#b4c86e.#c8c83c", c15: "#c8c8c8.#c8c8c8", c16: "#643c5a.#643c5a", c17: "#c82828.#c82828", c18: "#f07878.#f07878", c19: "#141414.#000000", c20: "#324646.#826e00", c21: "#a0d2dc.#c8c8c8", c22: "#5ab4c8.#c8c8c8", c23: "#785a28.#c8783c", c24: "#e6c88c.#faff64", c25: "#f0e6a0.#faff64", c26: "#648caa.#beaa1e", c27: "#beaa5a.#c8c83c", c28: "#820a0a.#c82828", c29: "#d2d2d2.#c8c8c8", c30: "#5ab4d2.#c8c8c8", c31: "#aa140a.#c82828", c32: "#3c6e8c.#643c5a", c33: "#ffa08c.#f07878", c34: "#e63c32.#c82828", c35: "#96c8e6.#c8c8c8", c36: "#dce6f0.#ffffff", c37: "#e6d28c.#faff64", c38: "#e64632.#c82828", c39: "#fafafa.#ffffff", c40: "#a0140a.#c82828", c41: "#c83c14.#c82828", c42: "#fa7846.#f07878", c43: "#c81e14.#c82828", c44: "#f0463c.#c82828", c45: "#0a0a0a.#000000", c46: "#5a78a0.#643c5a", c47: "#8caac8.#c8c8c8", c48: "#b4c8dc.#c8c8c8", c49: "#643c6e.#643c5a", c50: "#a046aa.#643c5a", c51: "#e6a0d2.#c8c8c8", c52: "#be64c8.#f07878", c53: "#f0bef0.#c8c8c8", c54: "#0aa078.#c8783c", c55: "#3c3c82.#643c5a", c56: "#f0f0ff.#ffffff", c57: "#d2d2ff.#c8c8c8", c58: "#14c8a0.#beaa1e", c59: "#aaaac8.#c8c8c8", c60: "#3c6e96.#643c5a", c61: "#14a096.#beaa1e", c62: "#0a643c.#a05014", c63: "#be3246.#c82828" },
153 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#28500a.#645000", c6: "#50780a.#c89600", c7: "#8cbe32.#f0c832", c8: "#6ea014.#dcaa14", c9: "#141414.#141414", c10: "#a08214.#c8783c", c11: "#6e5000.#a04614", c12: "#fae646.#ffbe8c", c13: "#dcbe28.#f0a06e", c14: "#ffff8c.#ffdcaa", c15: "#aa3200.#aa3200", c16: "#d28c50.#d28c50", c17: "#646464.#646464", c18: "#c8c8c8.#c8c8c8", c19: "#283c3c.#645000", c20: "#505a78.#646464", c21: "#3c466e.#646464", c22: "#7878aa.#646464", c23: "#0a0a0a.#141414", c24: "#646482.#646464", c25: "#8c8caa.#646464", c26: "#fafafa.#ffffff", c27: "#d2dcf0.#c8c8c8", c28: "#b4b4d2.#c8c8c8", c29: "#782832.#a04614", c30: "#c8281e.#aa3200", c31: "#ff7878.#d28c50", c32: "#46505a.#646464", c33: "#28323c.#141414", c34: "#a0aab4.#c8c8c8", c35: "#646e78.#646464", c36: "#78788c.#646464", c37: "#3c3c50.#646464", c38: "#323246.#141414", c39: "#283246.#141414", c40: "#6e78aa.#646464", c41: "#3c4664.#646464", c42: "#1e2828.#141414", c43: "#788ca0.#646464", c44: "#506e78.#646464", c45: "#d2dce6.#c8c8c8", c46: "#325050.#646464", c47: "#8c8ca0.#646464", c48: "#bebec8.#c8c8c8", c49: "#fa786e.#d28c50", c50: "#dce6e6.#c8c8c8", c51: "#46506e.#646464", c52: "#641414.#a04614", c53: "#bed2dc.#c8c8c8", c54: "#dc0a14.#aa3200", c55: "#fa7864.#d28c50", c56: "#9696aa.#c8c8c8", c57: "#788282.#646464", c58: "#e6c8d2.#c8c8c8" },
154 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#644600.#644600", c6: "#ffdc1e.#ffdc1e", c7: "#141414.#141414", c8: "#e6aa00.#e6aa00", c9: "#147832.#787814", c10: "#beff78.#ffffb4", c11: "#a0e650.#fafa0a", c12: "#64be3c.#c8c800", c13: "#c8c8c8.#c8c8c8", c14: "#78143c.#a01e00", c15: "#ff3c5a.#ff8200", c16: "#faa0a0.#ffb432", c17: "#c81e3c.#d25000", c18: "#6e6e6e.#6e6e6e", c19: "#6e6e5a.#6e6e6e", c20: "#8c8c78.#6e6e6e", c21: "#464646.#6e6e6e", c22: "#0a0a0a.#141414", c23: "#3c3c3c.#141414", c24: "#283232.#141414", c25: "#3c4646.#787814", c26: "#46463c.#644600", c27: "#323228.#141414", c28: "#788278.#6e6e6e", c29: "#828278.#6e6e6e", c30: "#8c8278.#6e6e6e", c31: "#5a6e64.#6e6e6e", c32: "#dcd2aa.#c8c8c8", c33: "#ffffe6.#ffffff", c34: "#8c826e.#6e6e6e", c35: "#b4b496.#c8c8c8", c36: "#f0e6c8.#c8c8c8", c37: "#786e64.#6e6e6e", c38: "#dcc8aa.#c8c8c8", c39: "#b43250.#d25000", c40: "#ff4614.#ff8200", c41: "#fff0b4.#c8c8c8", c42: "#968c78.#6e6e6e", c43: "#ffbeaa.#ffb432", c44: "#6e5a50.#6e6e6e", c45: "#c8b48c.#ffb432", c46: "#505046.#6e6e6e", c47: "#ffa08c.#ffb432", c48: "#ffaabe.#ffb432" },
155 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#dc0000.#dc0000", c6: "#ff5a00.#ff5a00", c7: "#285050.#782800", c8: "#3c6478.#a0461e", c9: "#6482a0.#c8823c", c10: "#ffa000.#ffa000", c11: "#141414.#141414", c12: "#ffdc00.#ffdc00", c13: "#143c46.#500a00", c14: "#c8a06e.#c8a03c", c15: "#fff0a0.#ffdc96", c16: "#78641e.#785a14", c17: "#e6c86e.#e6be5a", c18: "#aaaaaa.#aaaaaa", c19: "#968c82.#aaaaaa", c20: "#6e5a46.#785a14", c21: "#645046.#785a14", c22: "#dcdcc8.#ffdc96", c23: "#a09682.#c8a03c", c24: "#dcd2c8.#ffdc96", c25: "#503c32.#782800", c26: "#0a0a0a.#141414", c27: "#beb4a0.#aaaaaa", c28: "#64645a.#a0461e", c29: "#464646.#782800", c30: "#826e6e.#c8823c", c31: "#a0a096.#aaaaaa", c32: "#8c8c78.#c8823c", c33: "#ff6e78.#c8a03c", c34: "#828278.#c8823c", c35: "#dc143c.#dc0000", c36: "#646450.#785a14", c37: "#828c78.#c8823c", c38: "#46463c.#782800", c39: "#ff645a.#c8a03c", c40: "#dc1414.#dc0000", c41: "#fa826e.#c8a03c", c42: "#e60a14.#dc0000", c43: "#a08c82.#c8a03c", c44: "#6e5046.#785a14", c45: "#dcc8be.#ffdc96", c46: "#aaaa96.#aaaaaa", c47: "#82826e.#c8823c", c48: "#3c3c3c.#782800", c49: "#ff0a0a.#dc0000", c50: "#ff6e6e.#c8a03c" },
156 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#dc0000.#dc0000", c6: "#ff5a00.#ff5a00", c7: "#ffa000.#ffa000", c8: "#ffd200.#ffd200", c9: "#141414.#141414", c10: "#8c641e.#8c5a14", c11: "#b4a050.#b48c3c", c12: "#3c508c.#a05028", c13: "#283c64.#78320a", c14: "#142850.#5a1400", c15: "#a0a0a0.#a0a0a0", c16: "#fff0a0.#ffdc96", c17: "#e6c86e.#e6b45a", c18: "#827878.#a0a0a0", c19: "#645a64.#a05028", c20: "#aaa0a0.#a0a0a0", c21: "#3c3c3c.#78320a", c22: "#645050.#78320a", c23: "#a07828.#8c5a14", c24: "#0a0a0a.#141414", c25: "#dcb432.#b48c3c", c26: "#5a5032.#8c5a14", c27: "#5a4632.#8c5a14", c28: "#c8c8aa.#a0a0a0", c29: "#463c3c.#78320a", c30: "#64645a.#a05028", c31: "#503c32.#78320a", c32: "#aaaaa0.#a0a0a0", c33: "#dcb46e.#e6b45a", c34: "#c8a050.#b48c3c", c35: "#d2beb4.#a0a0a0", c36: "#aaaa8c.#a0a0a0", c37: "#504646.#78320a", c38: "#1e1e28.#141414", c39: "#be321e.#dc0000", c40: "#be3214.#dc0000", c41: "#fa0a0a.#dc0000", c42: "#d2c8aa.#ffdc96", c43: "#8c8c6e.#b48c3c", c44: "#282828.#141414", c45: "#5a5a64.#a05028" },
157 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#dc0000.#dc0000", c6: "#ffdc00.#ffdc00", c7: "#ff6400.#ff6400", c8: "#ffa000.#ffa000", c9: "#141414.#141414", c10: "#0a1e5a.#5a0014", c11: "#3c5a96.#aa465a", c12: "#a08c46.#a0783c", c13: "#5a78be.#d2788c", c14: "#d2c878.#c8b464", c15: "#fff096.#fadc82", c16: "#6e5028.#644614", c17: "#1e3c6e.#821e3c", c18: "#0a0a0a.#141414", c19: "#323250.#821e3c", c20: "#5a4678.#aa465a", c21: "#8282be.#d2788c", c22: "#f0f0ff.#ffffff", c23: "#3c3c5a.#821e3c", c24: "#645078.#aa465a", c25: "#7864aa.#d2788c", c26: "#bebee6.#ffffff", c27: "#5a466e.#aa465a", c28: "#e6e6fa.#ffffff", c29: "#b4b4dc.#c8b464", c30: "#8282b4.#d2788c", c31: "#6e64aa.#d2788c", c32: "#64323c.#644614", c33: "#dc3232.#dc0000", c34: "#e66482.#a0783c", c35: "#fa96b4.#c8b464", c36: "#dc6482.#a0783c", c37: "#ffa0b4.#c8b464", c38: "#be3250.#644614", c39: "#8c82d2.#d2788c", c40: "#5078c8.#d2788c", c41: "#6ebec8.#d2788c", c42: "#5078be.#d2788c", c43: "#be1e1e.#dc0000", c44: "#64b4c8.#d2788c", c45: "#ffaabe.#fadc82", c46: "#5a96d2.#d2788c", c47: "#3c50aa.#aa465a", c48: "#e63264.#dc0000", c49: "#6ebed2.#d2788c", c50: "#8ce6f0.#ffffff", c51: "#a0a0b4.#d2788c", c52: "#282850.#5a0014", c53: "#323232.#141414", c54: "#463264.#821e3c", c55: "#827896.#d2788c", c56: "#642832.#644614", c57: "#dc2828.#dc0000", c58: "#645a78.#aa465a" },
158 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3282c8.#46b48c", c6: "#325a82.#0a825a", c7: "#6eb4e6.#6ee6aa", c8: "#96d2ff.#96ffd2", c9: "#141414.#141414", c10: "#b4b4b4.#b4b4b4", c11: "#781400.#003c96", c12: "#b44650.#b44650", c13: "#c83c1e.#2878c8", c14: "#e67878.#e67878", c15: "#aa8228.#aa8228", c16: "#ffc850.#ffc850", c17: "#283ca0.#0a825a", c18: "#1e78dc.#46b48c", c19: "#323c5a.#0a825a", c20: "#5a82f0.#6ee6aa", c21: "#96aaff.#96ffd2", c22: "#1450c8.#46b48c", c23: "#322882.#0a825a", c24: "#0a0a0a.#141414", c25: "#1e6edc.#46b48c", c26: "#283c96.#0a825a", c27: "#b4aab4.#b4b4b4", c28: "#827882.#0a825a", c29: "#5a82e6.#46b48c", c30: "#8caafa.#6ee6aa", c31: "#d2c8dc.#b4b4b4", c32: "#f0e6ff.#ffffff", c33: "#826e82.#b44650", c34: "#e6dcfa.#ffffff", c35: "#504646.#0a825a", c36: "#3c2832.#141414", c37: "#783246.#b44650", c38: "#d2646e.#e67878", c39: "#f0a0aa.#b4b4b4", c40: "#c8c8dc.#b4b4b4", c41: "#aaa0be.#b4b4b4", c42: "#782828.#003c96", c43: "#285078.#0a825a", c44: "#dc466e.#b44650", c45: "#f06e78.#e67878", c46: "#b44664.#b44650", c47: "#e66e8c.#e67878", c48: "#823250.#b44650", c49: "#d26482.#e67878", c50: "#5a3c46.#0a825a", c51: "#fa96a0.#e67878", c52: "#6e4650.#b44650", c53: "#dc96a0.#e67878", c54: "#faaab4.#b4b4b4", c55: "#0aaadc.#46b48c", c56: "#0a96c8.#46b48c", c57: "#3c3232.#141414", c58: "#ffc8be.#b4b4b4", c59: "#1450d2.#46b48c", c60: "#d2d2dc.#b4b4b4", c61: "#502832.#003c96", c62: "#321e1e.#141414", c63: "#b43282.#b44650", c64: "#e678be.#e67878", c65: "#640a0a.#003c96", c66: "#aa2828.#2878c8", c67: "#c85a5a.#b44650", c68: "#2832a0.#0a825a", c69: "#1496d2.#46b48c", c70: "#143250.#141414", c71: "#1e82b4.#46b48c", c72: "#0a4678.#0a825a", c73: "#0a5aa0.#0a825a", c74: "#aaa0aa.#b4b4b4", c75: "#c8bed2.#b4b4b4", c76: "#5aa0f0.#6ee6aa", c77: "#5aa0d2.#6ee6aa", c78: "#beb4b4.#b4b4b4", c79: "#828282.#b4b4b4", c80: "#1482c8.#46b48c", c81: "#969696.#b4b4b4", c82: "#a0c8e6.#96ffd2", c83: "#e6dcdc.#ffffff", c84: "#dce6e6.#ffffff" },
159 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#82000a.#00288c", c6: "#ff8c82.#96c8ff", c7: "#141414.#141414", c8: "#fa505a.#5a96ff", c9: "#c8283c.#146ec8", c10: "#3c4682.#146e46", c11: "#3282c8.#32be96", c12: "#5aaae6.#5af0c8", c13: "#82c8ff.#96ffff", c14: "#e63c1e.#e63c1e", c15: "#ffe68c.#ffe664", c16: "#6e5000.#a0780a", c17: "#c8be64.#e6b450", c18: "#5a5a64.#146e46", c19: "#82828c.#146e46", c20: "#e6e6f0.#ffffff", c21: "#b4b4be.#96ffff", c22: "#f0f0f0.#ffffff", c23: "#3c3c3c.#141414", c24: "#0a0a0a.#141414", c25: "#82780a.#a0780a", c26: "#fff05a.#ffe664", c27: "#c8bec8.#96ffff", c28: "#dcdce6.#ffffff", c29: "#dcc83c.#e6b450", c30: "#78640a.#a0780a", c31: "#e6be28.#e6b450", c32: "#505064.#146e46", c33: "#6e6e6e.#146e46", c34: "#fffa5a.#ffe664", c35: "#283246.#141414", c36: "#bea014.#e6b450", c37: "#5a6478.#146e46", c38: "#3c3c50.#146e46", c39: "#324646.#146e46", c40: "#326450.#146e46", c41: "#506464.#146e46", c42: "#0aa00a.#a0780a", c43: "#c80a3c.#146ec8", c44: "#0ae60a.#a0780a", c45: "#1e7850.#146e46", c46: "#a02814.#00288c", c47: "#dcfadc.#ffffff", c48: "#c80a32.#146ec8", c49: "#28d20a.#a0780a", c50: "#1e3232.#141414", c51: "#1e2828.#141414", c52: "#82f082.#e6b450", c53: "#323c50.#146e46", c54: "#1e0a0a.#141414", c55: "#b48c0a.#a0780a", c56: "#dcffdc.#ffffff", c57: "#bea03c.#e6b450", c58: "#fae63c.#e6b450", c59: "#b4821e.#e63c1e", c60: "#e6be32.#e6b450", c61: "#8c5a28.#a0780a", c62: "#646e82.#146e46", c63: "#788296.#32be96", c64: "#64646e.#146e46", c65: "#144632.#141414", c66: "#1e2832.#141414", c67: "#fae66e.#ffe664" },
160 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#82000a.#0014a0", c6: "#ff8c82.#78a0ff", c7: "#141414.#141414", c8: "#fa505a.#4678ff", c9: "#28468c.#007864", c10: "#5ab4fa.#46dcc8", c11: "#3c8cc8.#14aaa0", c12: "#8cd2ff.#78fff0", c13: "#c8c8c8.#c8c8c8", c14: "#ffe68c.#f0f06e", c15: "#6e5000.#968200", c16: "#c8be64.#c8c828", c17: "#96aa5a.#c8c828", c18: "#3c5a28.#968200", c19: "#0a0a0a.#141414", c20: "#dce68c.#f0f06e", c21: "#bec882.#c8c828", c22: "#64463c.#968200", c23: "#8c6e3c.#968200", c24: "#3ca03c.#968200", c25: "#78d26e.#c8c828", c26: "#fae65a.#f0f06e", c27: "#3ca046.#007864", c28: "#c8be3c.#c8c828", c29: "#5a783c.#968200", c30: "#b48250.#c8c828", c31: "#782832.#0014a0", c32: "#aa2828.#0014a0", c33: "#8c6e46.#968200", c34: "#d2645a.#4678ff", c35: "#bed282.#c8c828", c36: "#b44650.#4678ff", c37: "#ffd26e.#f0f06e", c38: "#e67878.#78a0ff", c39: "#5a7846.#968200", c40: "#969628.#c8c828", c41: "#dc7878.#78a0ff", c42: "#c84664.#4678ff", c43: "#96506e.#4678ff", c44: "#32a03c.#968200", c45: "#325a28.#968200", c46: "#644632.#968200", c47: "#bec88c.#c8c828", c48: "#bed28c.#c8c828", c49: "#c8be32.#c8c828", c50: "#96aa6e.#c8c828", c51: "#b4c88c.#c8c828" },
161 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#46321e.#781428", c6: "#3c0a00.#3c0000", c7: "#643c32.#aa3c5a", c8: "#141414.#141414", c9: "#b41e3c.#c8645a", c10: "#dc3c46.#e6785a", c11: "#8c5a3c.#c8a06e", c12: "#c8a082.#faf0aa", c13: "#be825a.#ffd282", c14: "#a07846.#dcbe82", c15: "#3c1414.#5a000a", c16: "#c8c8c8.#e6d2aa", c17: "#3c8c3c.#aa3c5a", c18: "#64b46e.#dcbe82", c19: "#3c5a28.#781428", c20: "#325a28.#781428", c21: "#328c3c.#aa3c5a", c22: "#0a0a0a.#141414", c23: "#3c8c46.#aa3c5a", c24: "#64463c.#aa3c5a", c25: "#b48250.#ffd282", c26: "#8c6e3c.#c8a06e", c27: "#644632.#aa3c5a", c28: "#dcb43c.#ffd282", c29: "#f0d23c.#faf0aa", c30: "#1e320a.#141414", c31: "#8c6e46.#c8a06e", c32: "#dcb446.#ffd282", c33: "#6e8c46.#dcbe82", c34: "#96643c.#c8a06e", c35: "#aac864.#faf0aa", c36: "#96aa5a.#dcbe82", c37: "#f0d246.#faf0aa", c38: "#f0dc3c.#faf0aa", c39: "#8c5a28.#c8a06e", c40: "#d2d2d2.#e6d2aa", c41: "#969696.#faf0aa", c42: "#dcdcdc.#e6d2aa", c43: "#be5082.#ffd282", c44: "#f08cb4.#faf0aa", c45: "#829650.#dcbe82", c46: "#f0f0dc.#ffffff", c47: "#fffad2.#ffffff", c48: "#fffae6.#ffffff" },
162 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#50281e.#78003c", c6: "#e6c846.#ffb4be", c7: "#783c3c.#a0326e", c8: "#1e1e28.#1e1e28", c9: "#a06446.#dc5a8c", c10: "#c8a03c.#f0a0a0", c11: "#fff096.#fff0dc", c12: "#aa8228.#dc7878", c13: "#ffffc8.#fff0fa", c14: "#787878.#787878", c15: "#a00000.#a00000", c16: "#ff9664.#ff9664", c17: "#0a0a0a.#1e1e28", c18: "#146414.#1e1e28", c19: "#288c32.#787878", c20: "#3caa3c.#787878", c21: "#328c3c.#787878", c22: "#3c5a28.#78003c", c23: "#141414.#1e1e28", c24: "#46aa46.#787878", c25: "#644632.#a0326e", c26: "#64463c.#a0326e", c27: "#a0a0a0.#787878", c28: "#6e7878.#787878", c29: "#8c6e3c.#dc5a8c", c30: "#e6e6e6.#ffffff", c31: "#bebebe.#fff0dc", c32: "#1e6428.#1e1e28", c33: "#645032.#a0326e", c34: "#b48250.#dc5a8c", c35: "#325a32.#78003c", c36: "#8c6e46.#dc5a8c", c37: "#b4beaa.#fff0dc", c38: "#325a28.#78003c", c39: "#0a3c0a.#1e1e28", c40: "#969696.#787878", c41: "#46505a.#a0326e", c42: "#5a783c.#a0326e", c43: "#5a7846.#787878", c44: "#bebeb4.#fff0dc", c45: "#645028.#a0326e", c46: "#46321e.#78003c", c47: "#3c783c.#a0326e", c48: "#be643c.#dc5a8c", c49: "#ff6e3c.#ff9664", c50: "#c87882.#ff9664", c51: "#465a3c.#a0326e", c52: "#5a5032.#a0326e", c53: "#e6788c.#ff9664", c54: "#a0281e.#a00000" },
163 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#3c3c3c.#3c3c3c", c7: "#a06e32.#dcbe46", c8: "#784614.#c88c46", c9: "#503200.#784614", c10: "#be8c3c.#f0d23c", c11: "#c8a078.#fff078", c12: "#6e3214.#6e3214", c13: "#fa6432.#fa6432", c14: "#be5a28.#be5a28", c15: "#f0aa96.#f0aa96", c16: "#dcbea0.#f0ff82", c17: "#ffe6c8.#faffc8", c18: "#787878.#787878", c19: "#783c14.#c88c46", c20: "#b46e28.#dcbe46", c21: "#dc820a.#fa6432", c22: "#0a0a0a.#141414", c23: "#0a8c46.#3c3c3c", c24: "#ffaa50.#fff078", c25: "#c86e28.#be5a28", c26: "#0ad264.#787878", c27: "#0ab45a.#787878", c28: "#f0783c.#fa6432", c29: "#ffa064.#f0aa96", c30: "#0aff82.#787878", c31: "#dcb450.#fff078", c32: "#96780a.#dcbe46", c33: "#e63c3c.#fa6432", c34: "#f06e6e.#fa6432", c35: "#e63232.#fa6432", c36: "#ffe6aa.#faffc8", c37: "#fafafa.#ffffff", c38: "#a03232.#be5a28", c39: "#e63c46.#fa6432", c40: "#ffd232.#f0d23c", c41: "#646478.#787878", c42: "#a0aaaa.#f0ff82", c43: "#783c0a.#c88c46", c44: "#a02828.#c88c46", c45: "#e6323c.#fa6432", c46: "#c8c8c8.#f0ff82", c47: "#e62828.#fa6432", c48: "#ffb432.#f0d23c" },
164 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#a0826e.#d2a032", c6: "#785a46.#be6e14", c7: "#fffab4.#faff96", c8: "#a0785a.#787800", c9: "#dcb46e.#c8d246", c10: "#f0dc6e.#e6e678", c11: "#3c281e.#503c00", c12: "#be9664.#a0aa32", c13: "#c8c8c8.#c8c8c8", c14: "#643c32.#8c5014", c15: "#c83214.#c83214", c16: "#141414.#141414", c17: "#646464.#646464", c18: "#643c6e.#646464", c19: "#be64c8.#d2a032", c20: "#e6a0d2.#c8c8c8", c21: "#f0bef0.#c8c8c8", c22: "#0a643c.#503c00", c23: "#b450be.#d2a032", c24: "#503c5a.#8c5014", c25: "#e68cc8.#c8c8c8", c26: "#0aa078.#646464", c27: "#a046aa.#d2a032", c28: "#14c8a0.#646464", c29: "#0a0a0a.#141414", c30: "#f0b4e6.#c8c8c8", c31: "#3c283c.#503c00", c32: "#0a503c.#503c00", c33: "#0aaa78.#646464", c34: "#0a9664.#646464", c35: "#b4648c.#d2a032", c36: "#ff6e50.#a0aa32", c37: "#dc3c28.#c83214", c38: "#a05aaa.#d2a032", c39: "#b4140a.#c83214", c40: "#0a5a6e.#646464", c41: "#d2d2d2.#c8c8c8", c42: "#ff5a46.#c83214", c43: "#dc3c14.#c83214", c44: "#82468c.#646464", c45: "#969696.#d2a032", c46: "#8c2814.#8c5014", c47: "#f0f0dc.#ffffff", c48: "#50325a.#8c5014", c49: "#e68cd2.#c8c8c8", c50: "#0a5032.#503c00", c51: "#f0b4f0.#c8c8c8", c52: "#fafafa.#ffffff", c53: "#dc3c0a.#c83214", c54: "#ff5a3c.#c83214", c55: "#f0f0ff.#ffffff" },
165 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#5a5050.#5a5050", c7: "#6e2814.#aa5000", c8: "#b43c32.#d27828", c9: "#fa5a14.#ffaa00", c10: "#ffa01e.#ffc83c", c11: "#d2c8c8.#d2c8c8", c12: "#aaa0a0.#aaa0a0", c13: "#d2b478.#c8be6e", c14: "#ffe6a0.#fafa96", c15: "#ffffbe.#faffaa", c16: "#a07800.#a08200", c17: "#6e64b4.#82643c", c18: "#463278.#503c1e", c19: "#8c783c.#a08200", c20: "#5a3214.#aa5000", c21: "#dc320a.#ffaa00", c22: "#f0c8aa.#fafa96", c23: "#c8a078.#c8be6e", c24: "#dc3c0a.#ffaa00", c25: "#a0643c.#d27828", c26: "#d28c1e.#ffc83c", c27: "#5a280a.#aa5000", c28: "#a05014.#d27828", c29: "#d28c28.#ffc83c", c30: "#643c0a.#aa5000", c31: "#6e3c0a.#aa5000", c32: "#0a0a0a.#141414", c33: "#f0a03c.#ffc83c", c34: "#c83c14.#d27828", c35: "#ffd23c.#ffc83c", c36: "#8c6e3c.#5a5050", c37: "#1446a0.#503c1e", c38: "#f0d2aa.#fafa96", c39: "#f0c896.#fafa96", c40: "#c8966e.#c8be6e", c41: "#6e5a14.#aa5000", c42: "#c89678.#c8be6e", c43: "#785a14.#aa5000", c44: "#0a78c8.#82643c", c45: "#c89664.#c8be6e", c46: "#1450b4.#503c1e", c47: "#1478dc.#82643c", c48: "#ffc83c.#ffc83c", c49: "#0a46a0.#503c1e", c50: "#dce6e6.#d2c8c8", c51: "#c8dcdc.#d2c8c8", c52: "#646478.#5a5050", c53: "#fafafa.#ffffff", c54: "#b4281e.#d27828", c55: "#dc3228.#d27828", c56: "#8c8c8c.#aaa0a0", c57: "#fac83c.#ffc83c", c58: "#dcc8a0.#d2c8c8" },
166 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#505050.#6e6e6e", c7: "#c83c5a.#c86428", c8: "#ff8282.#ffc83c", c9: "#781e14.#a03200", c10: "#ff463c.#ffa000", c11: "#00145a.#00145a", c12: "#006edc.#006edc", c13: "#b4b4b4.#b4b4b4", c14: "#a07800.#968c00", c15: "#c8b43c.#bec828", c16: "#fae678.#f0fa64", c17: "#d2d2d2.#d2d2d2", c18: "#e68c50.#bec828", c19: "#f08c50.#ffc83c", c20: "#e63c3c.#ffa000", c21: "#dc3c3c.#c86428", c22: "#ffdc50.#f0fa64", c23: "#46140a.#141414", c24: "#e68c5a.#ffc83c", c25: "#143c78.#00145a", c26: "#f0280a.#ffa000", c27: "#3c78a0.#006edc", c28: "#ffa028.#bec828", c29: "#ffb428.#bec828", c30: "#0a0a0a.#141414", c31: "#825a0a.#968c00", c32: "#6e3c14.#a03200", c33: "#c8a01e.#bec828", c34: "#a0643c.#968c00", c35: "#6e6e82.#6e6e6e", c36: "#bec8dc.#d2d2d2", c37: "#fa8c46.#ffc83c", c38: "#822832.#a03200", c39: "#787882.#6e6e6e", c40: "#d2dcf0.#d2d2d2", c41: "#fadc50.#f0fa64", c42: "#28648c.#6e6e6e", c43: "#f0f0f0.#ffffff", c44: "#641e14.#a03200", c45: "#f06432.#ffa000", c46: "#8c7882.#6e6e6e", c47: "#aa3c1e.#a03200", c48: "#fafafa.#ffffff", c49: "#3c506e.#6e6e6e", c50: "#d2b4c8.#d2d2d2", c51: "#50648c.#6e6e6e", c52: "#8c5014.#968c00", c53: "#d2781e.#968c00", c54: "#ffc846.#f0fa64", c55: "#1e2832.#141414", c56: "#c81e0a.#a03200", c57: "#ff5028.#ffa000", c58: "#be3c32.#c86428", c59: "#144678.#00145a", c60: "#faffff.#ffffff", c61: "#a06446.#c86428", c62: "#e63c46.#ffa000", c63: "#c83228.#c86428", c64: "#b45032.#c86428", c65: "#d27846.#bec828", c66: "#5a1e0a.#a03200", c67: "#643c14.#a03200", c68: "#e69664.#ffc83c", c69: "#a0783c.#968c00", c70: "#beb43c.#bec828", c71: "#a08c46.#bec828", c72: "#283c5a.#6e6e6e", c73: "#4678c8.#006edc", c74: "#96283c.#a03200", c75: "#822828.#a03200", c76: "#aa283c.#c86428", c77: "#821e28.#a03200", c78: "#8c8c96.#b4b4b4", c79: "#e6e6e6.#d2d2d2", c80: "#1e468c.#00145a", c81: "#a0461e.#a03200", c82: "#464646.#6e6e6e", c83: "#0a2850.#00145a", c84: "#50505a.#6e6e6e", c85: "#bebec8.#b4b4b4", c86: "#8c6428.#968c00", c87: "#464650.#6e6e6e", c88: "#82501e.#a03200", c89: "#1e283c.#141414", c90: "#e6e6f0.#ffffff", c91: "#5a3214.#a03200", c92: "#502814.#a03200" },
167 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#324614.#1e3c78", c7: "#507828.#4664a0", c8: "#8ce632.#8cb4f0", c9: "#aaf064.#a0c8ff", c10: "#50b46e.#6e82be", c11: "#6e6e78.#787878", c12: "#826e28.#a03278", c13: "#c8b414.#d278aa", c14: "#bec8c8.#bec8c8", c15: "#ffe646.#e6aadc", c16: "#78323c.#78323c", c17: "#f05a5a.#ff82a0", c18: "#b43c46.#f03278", c19: "#144678.#787878", c20: "#3c78aa.#787878", c21: "#1e64a0.#787878", c22: "#0a3246.#141414", c23: "#328cd2.#6e82be", c24: "#6ea0e6.#bec8c8", c25: "#1e6496.#787878", c26: "#1e5082.#787878", c27: "#bec8dc.#bec8c8", c28: "#647896.#787878", c29: "#8c8c8c.#787878", c30: "#a0d2fa.#bec8c8", c31: "#64a0c8.#6e82be", c32: "#c8c8c8.#bec8c8", c33: "#0a2846.#141414", c34: "#0a6e78.#6e82be", c35: "#bed2dc.#bec8c8", c36: "#0a0a0a.#141414", c37: "#fac83c.#e6aadc", c38: "#aa823c.#a03278", c39: "#fff0c8.#ffffff", c40: "#644614.#78323c", c41: "#466ea0.#787878", c42: "#aa8232.#a03278", c43: "#824646.#78323c", c44: "#0a3c64.#141414", c45: "#dc646e.#ff82a0", c46: "#fad246.#e6aadc", c47: "#0a4682.#787878", c48: "#826478.#787878", c49: "#c8a0be.#bec8c8", c50: "#825a78.#787878", c51: "#fac8f0.#ffffff", c52: "#bee6ff.#bec8c8", c53: "#14466e.#1e3c78", c54: "#faffff.#ffffff", c55: "#286eaa.#787878", c56: "#d2f0ff.#ffffff", c57: "#14508c.#787878", c58: "#466482.#787878", c59: "#3278b4.#787878", c60: "#0a1e32.#141414", c61: "#325a78.#787878", c62: "#8296a0.#787878", c63: "#145082.#787878", c64: "#828ca0.#787878", c65: "#466e96.#787878", c66: "#78465a.#78323c", c67: "#d278aa.#bec8c8", c68: "#78b4dc.#bec8c8", c69: "#a0141e.#78323c", c70: "#d2aa64.#a0c8ff", c71: "#be6496.#ff82a0", c72: "#e6281e.#f03278", c73: "#be9650.#d278aa", c74: "#6eb4f0.#bec8c8", c75: "#aa2828.#f03278", c76: "#d2dce6.#bec8c8", c77: "#0a3c6e.#141414", c78: "#1482d2.#6e82be", c79: "#5a7896.#787878", c80: "#fafafa.#ffffff", c81: "#aadcf0.#bec8c8", c82: "#c8821e.#d278aa", c83: "#fff096.#e6aadc", c84: "#faf03c.#e6aadc", c85: "#78a0aa.#787878", c86: "#64460a.#1e3c78", c87: "#ffd214.#e6aadc", c88: "#0a0a14.#141414", c89: "#64a0d2.#bec8c8", c90: "#5a96c8.#787878" },
168 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#6e5014.#6e5014", c6: "#ffdc3c.#ffdc3c", c7: "#000000.#000000", c8: "#c8b446.#beaa3c", c9: "#a05ac8.#5aa0ff", c10: "#be82e6.#96c8ff", c11: "#6432a0.#286ec8", c12: "#8c1e00.#780a78", c13: "#c83c3c.#b428aa", c14: "#ff5a46.#e664dc", c15: "#ff8c78.#faa0fa", c16: "#6e6e6e.#6e6e6e", c17: "#dce6dc.#ffffff", c18: "#a06e3c.#b428aa", c19: "#78503c.#6e5014", c20: "#643232.#6e5014", c21: "#dcb464.#beaa3c", c22: "#0a0a0a.#000000", c23: "#d2a050.#beaa3c", c24: "#826e3c.#6e5014", c25: "#5a3c32.#6e5014", c26: "#646482.#6e6e6e", c27: "#fffaa0.#bebebe", c28: "#f0dc32.#ffdc3c", c29: "#505050.#6e6e6e", c30: "#8c96be.#5aa0ff", c31: "#50321e.#6e5014", c32: "#968c8c.#6e6e6e", c33: "#c89628.#beaa3c", c34: "#8c6e96.#6e6e6e", c35: "#f0be5a.#ffdc3c", c36: "#b48cbe.#96c8ff", c37: "#aa1e14.#780a78", c38: "#141414.#000000", c39: "#fac8be.#bebebe", c40: "#fa3c3c.#e664dc", c41: "#dca050.#beaa3c", c42: "#826e46.#6e6e6e", c43: "#fffaaa.#ffffff", c44: "#5a4632.#6e5014", c45: "#d29628.#beaa3c", c46: "#fa4646.#e664dc", c47: "#aa2814.#780a78", c48: "#fafafa.#ffffff", c49: "#828c82.#6e6e6e", c50: "#a0a0a0.#bebebe" },
169 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#641478.#a0508c", c6: "#141414.#141414", c7: "#a05ac8.#ffb4fa", c8: "#b478c8.#ffd2f0", c9: "#0a3c6e.#648200", c10: "#7846a0.#d282c8", c11: "#1e6e96.#8ca00a", c12: "#c8001e.#960a1e", c13: "#d29600.#d29600", c14: "#ffd200.#ffd200", c15: "#a0a0a0.#a0a0a0", c16: "#6e6e6e.#6e6e6e", c17: "#be8c6e.#a0a0a0", c18: "#ffe682.#a0a0a0", c19: "#78503c.#6e6e6e", c20: "#f0c864.#ffd200", c21: "#0a0a0a.#141414", c22: "#141e3c.#141414", c23: "#1e3c6e.#648200", c24: "#3c78b4.#8ca00a", c25: "#64a0fa.#ffd2f0", c26: "#1e5a96.#8ca00a", c27: "#a0c8ff.#ffd2f0", c28: "#785046.#6e6e6e", c29: "#82b4ff.#ffd2f0", c30: "#dcf0ff.#ffffff", c31: "#f0d264.#ffd200", c32: "#1e466e.#648200", c33: "#142846.#648200", c34: "#fac850.#ffd200", c35: "#1e1414.#141414", c36: "#321e14.#141414", c37: "#963246.#a0508c", c38: "#dc5a5a.#d29600", c39: "#3c6496.#8ca00a", c40: "#64aab4.#a0a0a0", c41: "#aad2dc.#a0a0a0", c42: "#143250.#648200", c43: "#e68c8c.#a0a0a0", c44: "#b46e6e.#6e6e6e", c45: "#dce6fa.#ffffff", c46: "#faffff.#ffffff", c47: "#466496.#8ca00a", c48: "#bec8dc.#a0a0a0", c49: "#bed2dc.#a0a0a0" },
170 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#285096.#145aa0", c6: "#6ea0e6.#3caafa", c7: "#141414.#000000", c8: "#5a78c8.#3278d2", c9: "#0a285a.#00285a", c10: "#826450.#3c6e14", c11: "#ffc850.#c8ff32", c12: "#502814.#1e3c0a", c13: "#78bee6.#5ac8e6", c14: "#e6b428.#aae63c", c15: "#fff082.#f0ff78", c16: "#c89600.#8cc83c", c17: "#b40000.#b40000", c18: "#96c8e6.#82dcf0", c19: "#285a96.#145aa0", c20: "#78503c.#3c6e14", c21: "#a0c8ff.#82dcf0", c22: "#78a0f0.#3caafa", c23: "#508ce6.#3caafa", c24: "#ffe682.#f0ff78", c25: "#be8c6e.#3c6e14", c26: "#0a0a0a.#000000", c27: "#141e3c.#00285a", c28: "#f0c864.#c8ff32", c29: "#785046.#3c6e14", c30: "#f0d264.#c8ff32", c31: "#faffff.#82dcf0", c32: "#3c3c3c.#1e3c0a", c33: "#143c78.#00285a", c34: "#465aaa.#145aa0", c35: "#282828.#000000", c36: "#28465a.#00285a", c37: "#ffffff.#82dcf0", c38: "#e6e6e6.#82dcf0", c39: "#0a1428.#000000", c40: "#a0d2ff.#82dcf0", c41: "#4678aa.#3278d2", c42: "#141e46.#00285a", c43: "#141e32.#000000", c44: "#dcf0ff.#82dcf0", c45: "#505050.#3c6e14", c46: "#506eaa.#3278d2", c47: "#dcf0fa.#82dcf0", c48: "#0a3278.#00285a", c49: "#324650.#00285a", c50: "#505a50.#3c6e14", c51: "#1e2832.#000000", c52: "#0a1e46.#00285a", c53: "#468cdc.#3278d2", c54: "#1e4678.#145aa0", c55: "#1e1e28.#000000", c56: "#283c5a.#00285a", c57: "#32465a.#00285a", c58: "#1e4664.#00285a", c59: "#6e500a.#1e3c0a", c60: "#5082aa.#3278d2", c61: "#0a0a14.#000000", c62: "#1e2828.#000000", c63: "#140a0a.#000000" },
171 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#786446.#6e8228", c6: "#ffdc64.#f0ff64", c7: "#e6b450.#c8dc1e", c8: "#4678c8.#8250a0", c9: "#78aaf0.#d282f0", c10: "#aa963c.#a0b41e", c11: "#283278.#460a5a", c12: "#6496e6.#a06ebe", c13: "#000000.#000000", c14: "#3c3214.#325000", c15: "#a0c8ff.#faaaff", c16: "#a03246.#a03246", c17: "#f0645a.#f0645a", c18: "#c8c8d2.#c8c8d2", c19: "#4650a0.#8250a0", c20: "#323246.#460a5a", c21: "#3c50a0.#460a5a", c22: "#6478be.#8250a0", c23: "#8ca0e6.#d282f0", c24: "#aabefa.#faaaff", c25: "#0a0a0a.#000000", c26: "#141414.#000000", c27: "#82b4dc.#d282f0", c28: "#6482be.#8250a0", c29: "#b4d2f0.#faaaff", c30: "#962832.#a03246", c31: "#dc5050.#f0645a", c32: "#ffa096.#c8dc1e", c33: "#ff6e6e.#f0645a", c34: "#ff9696.#f0645a", c35: "#ff6e78.#f0645a", c36: "#5a141e.#325000", c37: "#280a14.#325000", c38: "#141428.#000000" },
172 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#1e1e32.#1e1e32", c6: "#503c3c.#503c3c", c7: "#a0780a.#be7800", c8: "#c8aa14.#dca03c", c9: "#fae650.#ffd200", c10: "#825a28.#8c4600", c11: "#faf096.#fff06e", c12: "#644614.#5a1e00", c13: "#000000.#000000", c14: "#968c78.#968c78", c15: "#f0e6c8.#f0e6c8", c16: "#e67896.#ff323c", c17: "#8c1e1e.#8c1e1e", c18: "#be2828.#be2828", c19: "#be3c50.#be2828", c20: "#781e14.#8c1e1e", c21: "#f08c78.#ff323c", c22: "#783228.#8c1e1e", c23: "#0a0a0a.#000000", c24: "#f0788c.#ff323c", c25: "#e65a64.#ff323c", c26: "#f0505a.#ff323c", c27: "#283c46.#1e1e32", c28: "#141414.#1e1e32", c29: "#be3250.#be2828", c30: "#82aafa.#968c78", c31: "#5a78d2.#968c78", c32: "#5a281e.#5a1e00", c33: "#144682.#1e1e32", c34: "#3264aa.#968c78", c35: "#3c1414.#1e1e32", c36: "#ffffff.#f0e6c8", c37: "#82beff.#f0e6c8", c38: "#c8dcf0.#f0e6c8", c39: "#3c8cff.#968c78", c40: "#5aa0ff.#968c78", c41: "#0a3c6e.#1e1e32", c42: "#78aadc.#968c78", c43: "#3c465a.#503c3c", c44: "#323c46.#503c3c", c45: "#78a0e6.#968c78", c46: "#5a78c8.#968c78", c47: "#c8c8d2.#f0e6c8", c48: "#fafafa.#f0e6c8", c49: "#1e283c.#1e1e32", c50: "#3c64aa.#968c78", c51: "#c8c8dc.#f0e6c8", c52: "#aac8f0.#f0e6c8", c53: "#465a64.#503c3c", c54: "#5a6478.#968c78", c55: "#1e2832.#1e1e32", c56: "#3c5064.#503c3c", c57: "#fafffa.#f0e6c8", c58: "#6ea0e6.#968c78", c59: "#646478.#968c78", c60: "#32465a.#503c3c", c61: "#c8d2dc.#f0e6c8" },
173 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#c8463c.#d26e8c", c6: "#641e14.#963c5a", c7: "#ffc8aa.#ffd2fa", c8: "#ffa096.#fab4d2", c9: "#141414.#141414", c10: "#503200.#0a6e0a", c11: "#dc786e.#e68cb4", c12: "#c88c28.#64f06e", c13: "#a06e00.#3cc850", c14: "#6e4632.#1ea03c", c15: "#143250.#141414", c16: "#0a0a0a.#141414", c17: "#326ea0.#1ea03c", c18: "#144664.#141414", c19: "#6e6e6e.#1ea03c", c20: "#32505a.#1ea03c", c21: "#285064.#1ea03c", c22: "#3c82aa.#1ea03c", c23: "#f0f0f0.#ffffff", c24: "#826446.#1ea03c", c25: "#aaaaaa.#fab4d2", c26: "#f0dc96.#ffd2fa", c27: "#e6c86e.#fab4d2", c28: "#b49646.#64f06e", c29: "#285082.#1ea03c", c30: "#0a3c78.#141414", c31: "#0a64a0.#1ea03c", c32: "#aa9664.#e68cb4", c33: "#f0dc82.#ffd2fa", c34: "#0a82be.#1ea03c", c35: "#786e3c.#1ea03c", c36: "#bebebe.#ffd2fa", c37: "#504632.#1ea03c", c38: "#285078.#1ea03c", c39: "#8c6446.#1ea03c", c40: "#dcc882.#ffd2fa", c41: "#5a5032.#1ea03c", c42: "#beb464.#e68cb4", c43: "#b48c5a.#e68cb4", c44: "#dcbe6e.#fab4d2", c45: "#0a1e32.#141414", c46: "#503c28.#1ea03c", c47: "#825a3c.#1ea03c", c48: "#befafa.#ffffff", c49: "#5aa0aa.#e68cb4", c50: "#64a0be.#e68cb4", c51: "#8cc8e6.#ffd2fa", c52: "#dcdcdc.#ffffff", c53: "#50a0c8.#e68cb4", c54: "#646464.#1ea03c", c55: "#82d2e6.#ffffff", c56: "#fffabe.#ffd2fa", c57: "#c8c8c8.#ffd2fa", c58: "#508ca0.#1ea03c", c59: "#828282.#e68cb4", c60: "#b4aaaa.#fab4d2", c61: "#828278.#e68cb4", c62: "#5a5a5a.#1ea03c", c63: "#5a5050.#1ea03c", c64: "#e6dcdc.#ffffff", c65: "#78aac8.#ffd2fa", c66: "#645a50.#1ea03c", c67: "#8c7864.#1ea03c", c68: "#0a323c.#141414", c69: "#0a82a0.#1ea03c", c70: "#504628.#1ea03c", c71: "#ffd282.#ffd2fa", c72: "#b4a05a.#64f06e", c73: "#8c6e3c.#1ea03c", c74: "#a0f0ff.#ffffff", c75: "#64c8dc.#ffd2fa", c76: "#506464.#1ea03c", c77: "#aab4b4.#ffd2fa", c78: "#323c28.#0a6e0a", c79: "#968250.#64f06e", c80: "#8c643c.#1ea03c" },
174 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#b45078.#c85a82", c6: "#a01450.#a03250", c7: "#ffc8d2.#ffe6ff", c8: "#e682a0.#e682b4", c9: "#ffaabe.#ffbefa", c10: "#141414.#141414", c11: "#e62814.#e62814", c12: "#640000.#640000", c13: "#be0000.#be0000", c14: "#5a285a.#a03250", c15: "#f096be.#ffbefa", c16: "#0a0a0a.#141414", c17: "#825a3c.#c85a82", c18: "#5a5032.#640000", c19: "#d264a0.#e682b4", c20: "#dcbe6e.#e682b4", c21: "#b48c5a.#c85a82", c22: "#506464.#c85a82", c23: "#dcdcdc.#ffe6ff", c24: "#aab4b4.#e682b4", c25: "#5a5a5a.#c85a82", c26: "#641e64.#a03250", c27: "#aaaaaa.#e682b4", c28: "#6e6e6e.#c85a82", c29: "#828278.#c85a82", c30: "#5a5050.#a03250", c31: "#a02878.#c85a82", c32: "#f0f0f0.#ffffff", c33: "#e6dcdc.#ffe6ff", c34: "#b4aaaa.#e682b4", c35: "#aa64a0.#c85a82", c36: "#c83cb4.#c85a82", c37: "#8c6446.#c85a82", c38: "#f0dc82.#ffbefa", c39: "#beb464.#e682b4", c40: "#786e3c.#c85a82", c41: "#f08caa.#e682b4", c42: "#dc5aa0.#e682b4", c43: "#504628.#141414", c44: "#ffd282.#ffbefa", c45: "#fafaf0.#ffffff", c46: "#504632.#141414", c47: "#dcc882.#ffbefa", c48: "#aa9664.#c85a82", c49: "#323c28.#141414", c50: "#968250.#c85a82", c51: "#8c286e.#a03250", c52: "#ffaadc.#ffbefa", c53: "#b4a05a.#c85a82", c54: "#e678be.#e682b4", c55: "#8c6e3c.#c85a82", c56: "#8c643c.#c85a82", c57: "#503c28.#141414", c58: "#ffa0c8.#ffbefa", c59: "#dc6ea0.#e682b4", c60: "#8c0a5a.#a03250", c61: "#c83ca0.#c85a82", c62: "#be328c.#c85a82" },
175 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#96785a.#a06e5a", c6: "#000000.#000000", c7: "#faf0c8.#fad2c8", c8: "#c8a078.#c88c6e", c9: "#784646.#784646", c10: "#fad2a0.#fabe96", c11: "#aa1e1e.#aa2828", c12: "#788c96.#a08c82", c13: "#d2dcdc.#dcd2d2", c14: "#4682c8.#f06e6e", c15: "#dc786e.#46a0b4", c16: "#c83c3c.#3278a0", c17: "#b4b4c8.#c8b4b4", c18: "#3264aa.#c83c3c", c19: "#0a0a0a.#000000", c20: "#78648c.#a08c82", c21: "#463c3c.#784646", c22: "#463c50.#784646", c23: "#a082be.#c8b4b4", c24: "#aa8c78.#c88c6e", c25: "#826e5a.#a06e5a", c26: "#141414.#000000", c27: "#beaa5a.#c88c6e", c28: "#8c7828.#a06e5a", c29: "#50461e.#784646", c30: "#f0dc78.#fabe96", c31: "#fafafa.#ffffff", c32: "#967832.#a06e5a", c33: "#faf0f0.#ffffff", c34: "#5a5032.#784646", c35: "#3c3c3c.#784646", c36: "#c8b450.#c88c6e", c37: "#3c3232.#784646", c38: "#828246.#a06e5a", c39: "#b4a05a.#c88c6e", c40: "#504682.#c83c3c", c41: "#786eb4.#a08c82", c42: "#aaaaaa.#c8b4b4", c43: "#a08c5a.#a06e5a", c44: "#6e6432.#784646", c45: "#3c3246.#784646", c46: "#f0f0f0.#ffffff", c47: "#463c28.#784646", c48: "#a0825a.#a06e5a", c49: "#82643c.#784646", c50: "#1e1e1e.#000000", c51: "#645096.#c83c3c", c52: "#32285a.#784646", c53: "#c8b43c.#c88c6e", c54: "#aa8cd2.#c8b4b4", c55: "#b4aaaa.#c8b4b4", c56: "#8c8250.#a06e5a", c57: "#8c6eb4.#a08c82", c58: "#64320a.#784646", c59: "#c8783c.#46a0b4", c60: "#d28c50.#46a0b4", c61: "#505050.#784646", c62: "#f0e682.#fabe96", c63: "#ffffc8.#fad2c8", c64: "#64645a.#784646", c65: "#dcaa64.#c88c6e", c66: "#282828.#000000", c67: "#785a8c.#a08c82", c68: "#6e5a78.#784646", c69: "#503c1e.#784646", c70: "#5a4664.#784646", c71: "#322828.#000000", c72: "#50463c.#784646", c73: "#b4a096.#c88c6e", c74: "#78645a.#a06e5a", c75: "#a05014.#aa2828", c76: "#645a64.#784646", c77: "#dcdcdc.#dcd2d2", c78: "#146414.#000000", c79: "#8c8c8c.#a08c82", c80: "#d2d2c8.#dcd2d2", c81: "#328c3c.#784646", c82: "#3c3264.#784646", c83: "#787850.#a06e5a", c84: "#dcd296.#fabe96", c85: "#aaa078.#c88c6e", c86: "#503c32.#784646", c87: "#282832.#000000", c88: "#8c825a.#a06e5a", c89: "#e6e6e6.#dcd2d2", c90: "#32323c.#784646", c91: "#50505a.#784646", c92: "#503264.#784646", c93: "#8250b4.#a08c82", c94: "#aa6edc.#c8b4b4", c95: "#b4b4be.#c8b4b4", c96: "#beaa82.#c88c6e", c97: "#968250.#a06e5a", c98: "#826ec8.#a08c82", c99: "#50466e.#784646", c100: "#a0a0a0.#a08c82", c101: "#c8b482.#c88c6e" },
176 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#787882.#82785a", c6: "#000000.#000000", c7: "#aac8be.#c8b4a0", c8: "#d2f0f0.#e6dcc8", c9: "#dc3c3c.#2896e6", c10: "#be140a.#1464be", c11: "#2896e6.#dc3c3c", c12: "#1464be.#be140a", c13: "#5a3c64.#82785a", c14: "#141414.#000000", c15: "#c882dc.#c8b4a0", c16: "#965ab4.#82785a", c17: "#e6aaf0.#e6dcc8", c18: "#0a9664.#be140a", c19: "#46c8a0.#dc3c3c", c20: "#6e4678.#82785a", c21: "#c8c8c8.#c8b4a0", c22: "#825a50.#82785a", c23: "#fafafa.#ffffff", c24: "#b4140a.#1464be", c25: "#dc3c28.#2896e6", c26: "#828282.#82785a", c27: "#dc4628.#2896e6" },
177 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#822800.#824600", c6: "#282828.#282828", c7: "#d23232.#d26e0a", c8: "#ff3c46.#ff9600", c9: "#286e28.#3c781e", c10: "#78be3c.#a0d23c", c11: "#96d23c.#c8fa64", c12: "#46963c.#64aa3c", c13: "#82641e.#82641e", c14: "#d2aa28.#d2aa28", c15: "#ffdc28.#ffdc28", c16: "#c8c8c8.#c8c8c8", c17: "#282832.#282828", c18: "#0a0a0a.#282828", c19: "#50505a.#3c781e", c20: "#a096a0.#c8c8c8", c21: "#8c1e14.#824600", c22: "#640a0a.#824600", c23: "#be3c3c.#d26e0a", c24: "#3c3c50.#282828", c25: "#646464.#64aa3c", c26: "#fafafa.#ffffff", c27: "#642828.#824600", c28: "#460a0a.#282828", c29: "#8c5a3c.#82641e", c30: "#aa3c46.#d26e0a", c31: "#dc8282.#ff9600", c32: "#e68c3c.#d2aa28", c33: "#fa9628.#d2aa28", c34: "#b4641e.#82641e", c35: "#141414.#282828", c36: "#5a2828.#282828" },
178 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#46963c.#78c83c", c6: "#96d23c.#c8fa6e", c7: "#286e28.#50a000", c8: "#b48c1e.#be961e", c9: "#78be3c.#a0dc50", c10: "#ffbe32.#ffd23c", c11: "#8c5a00.#8c5a00", c12: "#141414.#282828", c13: "#969696.#969696", c14: "#822800.#8c3c00", c15: "#b43200.#c86e00", c16: "#c8c8c8.#c8c8c8", c17: "#f03c00.#ff8c00", c18: "#50461e.#505050", c19: "#96821e.#be961e", c20: "#e6be46.#ffd23c", c21: "#787878.#969696", c22: "#aaa0b4.#969696", c23: "#dcdcdc.#c8c8c8", c24: "#3c3c46.#505050", c25: "#6e1414.#8c3c00", c26: "#503c1e.#505050", c27: "#c83232.#c86e00", c28: "#0a0a0a.#282828", c29: "#464646.#505050", c30: "#963246.#8c3c00", c31: "#e6be3c.#ffd23c", c32: "#3c3c3c.#505050", c33: "#966428.#8c5a00", c34: "#646478.#505050", c35: "#fff0be.#ffffff", c36: "#d2a03c.#be961e", c37: "#f0d246.#ffd23c", c38: "#dc6e28.#be961e", c39: "#96323c.#8c3c00", c40: "#786e82.#969696", c41: "#3c3c50.#505050", c42: "#5a1e1e.#8c3c00", c43: "#282828.#282828", c44: "#5a5a64.#505050", c45: "#1e1e32.#282828", c46: "#a09650.#be961e", c47: "#b4b4be.#c8c8c8", c48: "#82281e.#8c3c00", c49: "#8c8c8c.#969696", c50: "#a096aa.#969696", c51: "#5a5a6e.#505050", c52: "#8c283c.#8c3c00", c53: "#fff08c.#c8c8c8", c54: "#646464.#505050", c55: "#464650.#505050", c56: "#786e1e.#8c5a00", c57: "#b43246.#c86e00", c58: "#501e28.#282828", c59: "#78323c.#505050", c60: "#c82832.#c86e00", c61: "#fafafa.#ffffff", c62: "#323232.#282828", c63: "#e6e6e6.#ffffff" },
179 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#c8b48c.#c896b4", c6: "#e6aa00.#dcaa00", c7: "#ffdc00.#fadc00", c8: "#827850.#a05078", c9: "#141414.#141414", c10: "#ffe6be.#ffc8ff", c11: "#e6c8a0.#e6b4dc", c12: "#a0a0a0.#a0a0a0", c13: "#004696.#144696", c14: "#1e96be.#328cbe", c15: "#3caae6.#50aae6", c16: "#78c8fa.#82c8fa", c17: "#b47800.#aa7800", c18: "#5a50a0.#505050", c19: "#323c78.#505050", c20: "#b48cd2.#a0a0a0", c21: "#8c78be.#a0a0a0", c22: "#0a0a0a.#141414", c23: "#d2aaf0.#e6b4dc", c24: "#282850.#505050", c25: "#464682.#505050", c26: "#a00a0a.#aa7800", c27: "#fa5078.#c896b4", c28: "#f0b4c8.#e6b4dc", c29: "#5a3c32.#505050", c30: "#c81e5a.#a05078", c31: "#96783c.#a05078", c32: "#f0c846.#fadc00", c33: "#c8961e.#dcaa00", c34: "#ffe696.#ffc8ff", c35: "#8c1450.#505050", c36: "#322864.#505050", c37: "#b496f0.#82c8fa", c38: "#fafafa.#ffffff", c39: "#c8325a.#a05078", c40: "#283278.#144696", c41: "#dcaaf0.#ffc8ff", c42: "#8c6ebe.#a0a0a0", c43: "#b48cdc.#a0a0a0", c44: "#5a3c28.#505050", c45: "#fac8dc.#ffc8ff", c46: "#966e46.#a05078", c47: "#f0b4d2.#e6b4dc", c48: "#d21e5a.#a05078", c49: "#8c0a50.#505050", c50: "#3c3c78.#505050", c51: "#464664.#505050" },
180 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#bebed2.#d2d2be", c6: "#82788c.#8c8278", c7: "#dce6fa.#faf0dc", c8: "#46465a.#5a5a46", c9: "#141414.#141414", c10: "#dc3c64.#c87896", c11: "#ffa0a0.#ffb4c8", c12: "#ff7878.#dc96a0", c13: "#ffbebe.#ffd2e6", c14: "#a00014.#aa5064", c15: "#5082c8.#00c81e", c16: "#82c8ff.#78f082", c17: "#283c8c.#008200", c18: "#32323c.#5a5a46", c19: "#646478.#8c8278", c20: "#786450.#5a5a46", c21: "#ffe65a.#ffb4c8", c22: "#464664.#5a5a46", c23: "#b4a05a.#8c8278", c24: "#0a0a0a.#141414", c25: "#282850.#5a5a46", c26: "#78aafa.#78f082", c27: "#6478b4.#00c81e", c28: "#963c50.#c87896", c29: "#e64650.#c87896", c30: "#464678.#5a5a46", c31: "#f08c96.#ffb4c8", c32: "#78bee6.#78f082", c33: "#bebebe.#d2d2be", c34: "#323246.#5a5a46", c35: "#fafafa.#ffffff" },
181 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#646e6e.#646e6e", c7: "#ffc814.#d2a0c8", c8: "#825a32.#8c4678", c9: "#c88c14.#b478a0", c10: "#fff046.#ffc8f0", c11: "#c83c00.#326ef0", c12: "#ff6400.#78b4fa", c13: "#8c1e00.#0a3cc8", c14: "#aaaaaa.#aaaaaa", c15: "#5a0000.#001496", c16: "#e6e6e6.#e6e6e6", c17: "#5a5a64.#646e6e", c18: "#0a0a0a.#141414", c19: "#464646.#646e6e", c20: "#505046.#646e6e", c21: "#8c8c8c.#aaaaaa", c22: "#c8c8c8.#aaaaaa", c23: "#323232.#141414", c24: "#6e6e6e.#646e6e", c25: "#b4b4b4.#aaaaaa", c26: "#fafafa.#ffffff", c27: "#828296.#646e6e", c28: "#1e1e1e.#141414", c29: "#969696.#aaaaaa", c30: "#787878.#646e6e", c31: "#82828c.#646e6e", c32: "#646464.#646e6e", c33: "#d2d2d2.#e6e6e6", c34: "#6ebeff.#aaaaaa", c35: "#a0a0aa.#aaaaaa", c36: "#6e6e78.#646e6e", c37: "#9696a0.#aaaaaa", c38: "#6e2828.#0a3cc8", c39: "#dc5050.#326ef0", c40: "#a0323c.#8c4678", c41: "#5aa0dc.#aaaaaa", c42: "#64aac8.#aaaaaa", c43: "#0a1e1e.#141414", c44: "#326496.#646e6e", c45: "#50a0e6.#aaaaaa", c46: "#78c8ff.#aaaaaa", c47: "#aa465a.#8c4678", c48: "#e66464.#b478a0", c49: "#a03246.#8c4678", c50: "#5a5a5a.#646e6e", c51: "#dcdcdc.#e6e6e6", c52: "#fffaff.#ffffff", c53: "#468cdc.#aaaaaa", c54: "#3c3c32.#141414", c55: "#964664.#8c4678", c56: "#d278aa.#aaaaaa" },
182 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#d21e00.#e65aa0", c6: "#fa6e00.#ffa0dc", c7: "#820000.#aa326e", c8: "#e6d26e.#e6ff78", c9: "#141414.#141414", c10: "#b4a03c.#b4c83c", c11: "#827814.#82a01e", c12: "#78aa32.#b46ec8", c13: "#a0d246.#d2a0ff", c14: "#506428.#782882", c15: "#3c9600.#288c3c", c16: "#50c832.#50c878", c17: "#145014.#145a1e", c18: "#82283c.#aa326e", c19: "#325a5a.#782882", c20: "#ffa0b4.#e6ff78", c21: "#c83c46.#e65aa0", c22: "#5a7850.#782882", c23: "#6ea078.#b46ec8", c24: "#dc6478.#b4c83c", c25: "#96d2a0.#d2a0ff", c26: "#dcff8c.#e6ff78", c27: "#b4dc78.#e6ff78", c28: "#c8ffd2.#ffffff", c29: "#50641e.#782882", c30: "#285a5a.#782882", c31: "#0a0a0a.#141414", c32: "#6eaa78.#b46ec8", c33: "#8ca050.#b46ec8", c34: "#fafafa.#ffffff", c35: "#8cd296.#d2a0ff", c36: "#64a06e.#b46ec8", c37: "#822832.#aa326e", c38: "#ffaab4.#e6ff78", c39: "#d23246.#e65aa0", c40: "#dc6e6e.#b4c83c", c41: "#dc646e.#b4c83c", c42: "#faa0b4.#e6ff78", c43: "#8caa50.#b46ec8", c44: "#dcfa8c.#e6ff78", c45: "#b4dc6e.#d2a0ff", c46: "#82be64.#d2a0ff", c47: "#8c8c8c.#b4c83c", c48: "#e6e6e6.#ffffff", c49: "#a02828.#aa326e", c50: "#ffb4b4.#e6ff78", c51: "#e67878.#b4c83c", c52: "#d2ff82.#e6ff78", c53: "#5a825a.#782882", c54: "#96c896.#d2a0ff", c55: "#d23232.#e65aa0", c56: "#aadc78.#d2a0ff", c57: "#963232.#aa326e", c58: "#c83232.#e65aa0", c59: "#fab4b4.#e6ff78", c60: "#5a461e.#782882", c61: "#466e14.#782882", c62: "#aadc6e.#d2a0ff", c63: "#d2fa82.#e6ff78", c64: "#789646.#b46ec8", c65: "#78963c.#b46ec8", c66: "#96b464.#d2a0ff", c67: "#466414.#782882", c68: "#6e6e6e.#782882", c69: "#d2c8c8.#ffffff", c70: "#642828.#782882", c71: "#282828.#141414" },
183 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#326eaa.#46c878", c6: "#5aa0f0.#96ff96", c7: "#8cbefa.#c8ffbe", c8: "#143c78.#32783c", c9: "#3c82c8.#64e678", c10: "#961414.#961400", c11: "#be2832.#d24600", c12: "#dc3c50.#fa8200", c13: "#141414.#141414", c14: "#b4d2ff.#dce6dc", c15: "#646464.#646464", c16: "#b4c8c8.#c8dce6", c17: "#785050.#646464", c18: "#0a0a0a.#141414", c19: "#642828.#961400", c20: "#ffe6b4.#ffffff", c21: "#dcbe8c.#c8dce6", c22: "#f06e78.#fa8200", c23: "#b43c50.#d24600", c24: "#ffffe6.#ffffff", c25: "#e65064.#fa8200", c26: "#323232.#141414", c27: "#3caad2.#64e678", c28: "#641428.#961400", c29: "#c84650.#fa8200", c30: "#e63c64.#fa8200", c31: "#b41e50.#d24600", c32: "#323246.#32783c", c33: "#0a0a14.#141414", c34: "#3caadc.#96ff96", c35: "#0a78a0.#46c878", c36: "#785032.#646464", c37: "#dcb48c.#c8dce6", c38: "#0a64b4.#46c878", c39: "#503232.#141414", c40: "#823c3c.#961400", c41: "#d2be8c.#c8dce6", c42: "#5a5a5a.#646464", c43: "#0a465a.#32783c", c44: "#5ac8f0.#96ff96", c45: "#505050.#646464", c46: "#bea078.#c8dce6", c47: "#a06450.#646464", c48: "#0a6478.#32783c", c49: "#0a323c.#141414", c50: "#a03246.#d24600", c51: "#6e3c32.#961400", c52: "#aa2828.#d24600", c53: "#f04646.#fa8200", c54: "#282828.#141414", c55: "#825a46.#646464", c56: "#fffaf0.#ffffff", c57: "#fff0aa.#ffffff", c58: "#0ab4f0.#64e678", c59: "#46463c.#646464", c60: "#dcc88c.#c8dce6", c61: "#fafae6.#ffffff", c62: "#966e6e.#646464", c63: "#ffdca0.#c8dce6", c64: "#be2846.#d24600", c65: "#641e28.#961400", c66: "#0a7896.#46c878", c67: "#f06482.#fa8200", c68: "#3ca0d2.#64e678", c69: "#dcb482.#c8dce6", c70: "#0a648c.#32783c", c71: "#0a78aa.#46c878", c72: "#fffad2.#ffffff", c73: "#14141e.#141414", c74: "#faf0aa.#c8dce6", c75: "#787878.#646464", c76: "#0a82aa.#46c878", c77: "#dcd296.#c8dce6" },
184 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#143c78.#a07800", c6: "#5aa0f0.#ffdc00", c7: "#141414.#141414", c8: "#326eaa.#e6aa0a", c9: "#961414.#a0000a", c10: "#be2832.#c82800", c11: "#dc3c50.#e65000", c12: "#3c82c8.#fac800", c13: "#8cbefa.#fae650", c14: "#c8c8d2.#d2c8c8", c15: "#d2dcfa.#e6dce6", c16: "#78a0c8.#dcbe64", c17: "#642828.#a0000a", c18: "#0a0a0a.#141414", c19: "#dc8296.#d2c8c8", c20: "#be506e.#e65000", c21: "#286478.#a07800", c22: "#82c8e6.#fae650", c23: "#3c82a0.#e6aa0a", c24: "#a03c46.#c82800", c25: "#46a0c8.#fac800", c26: "#285a6e.#a07800", c27: "#dc828c.#e65000", c28: "#b45064.#e65000", c29: "#a0e6fa.#fae650", c30: "#aa3c50.#c82800", c31: "#3282a0.#e6aa0a", c32: "#aaaaa0.#dcbe64", c33: "#82d2e6.#fae650", c34: "#46a0d2.#fac800", c35: "#f0f0e6.#ffffff", c36: "#1e1e1e.#141414", c37: "#829696.#dcbe64", c38: "#4682a0.#e6aa0a", c39: "#5a5a5a.#a07800", c40: "#14506e.#a07800", c41: "#6ebedc.#dcbe64", c42: "#46a0b4.#fac800", c43: "#a06464.#e65000", c44: "#82c8dc.#fae650", c45: "#fab4c8.#d2c8c8", c46: "#fa96a0.#d2c8c8", c47: "#aaaaaa.#d2c8c8", c48: "#64645a.#a07800", c49: "#e6e6dc.#e6dce6", c50: "#32788c.#e6aa0a", c51: "#b4f0f0.#e6dce6", c52: "#fafafa.#ffffff", c53: "#3c788c.#e6aa0a", c54: "#6e1414.#a0000a", c55: "#e67896.#e65000", c56: "#c85078.#e65000", c57: "#aa2846.#c82800", c58: "#641414.#a0000a", c59: "#e65a64.#e65000", c60: "#c83c46.#e65000", c61: "#327896.#e6aa0a", c62: "#be7846.#e65000", c63: "#dc7850.#e65000", c64: "#784632.#a0000a", c65: "#1e506e.#a07800", c66: "#78d2f0.#fae650", c67: "#a02846.#c82800", c68: "#ff9664.#e65000", c69: "#50a0d2.#ffdc00", c70: "#283c3c.#141414", c71: "#dcd2f0.#e6dce6", c72: "#145064.#a07800", c73: "#46b4e6.#ffdc00", c74: "#bebeaa.#d2c8c8", c75: "#148cc8.#fac800", c76: "#a05a32.#c82800", c77: "#0a5a82.#a07800", c78: "#aaa0be.#dcbe64", c79: "#6ed2f0.#fae650", c80: "#96141e.#a0000a", c81: "#646e6e.#e6aa0a", c82: "#8c8c8c.#dcbe64", c83: "#dcdcdc.#d2c8c8", c84: "#828278.#dcbe64", c85: "#bebebe.#d2c8c8", c86: "#f0faff.#ffffff" },
185 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#645a46.#507814", c6: "#c8a046.#c8e65a", c7: "#141414.#141414", c8: "#aa825a.#aac83c", c9: "#325a14.#961400", c10: "#96d278.#ffb478", c11: "#46c83c.#fa643c", c12: "#5a8c5a.#c83c1e", c13: "#8c783c.#82a032", c14: "#c82814.#fa9696", c15: "#ffc800.#ffc800", c16: "#e6b446.#dc9600", c17: "#464646.#507814", c18: "#6e6e78.#c83c1e", c19: "#d2dcf0.#ffb478", c20: "#282828.#141414", c21: "#a0a0aa.#ffb478", c22: "#ffffff.#ffb478", c23: "#6e6e82.#c83c1e", c24: "#326464.#c83c1e", c25: "#28aabe.#c83c1e", c26: "#0a0a0a.#141414", c27: "#78788c.#c83c1e", c28: "#464650.#507814", c29: "#9696b4.#ffb478", c30: "#64646e.#507814", c31: "#d2dce6.#ffb478", c32: "#8c8c8c.#aac83c", c33: "#fafafa.#ffb478", c34: "#143c3c.#141414", c35: "#288c96.#c83c1e", c36: "#145064.#507814", c37: "#1e788c.#c83c1e", c38: "#3ca0be.#c83c1e", c39: "#28aab4.#c83c1e", c40: "#0aa0e6.#c83c1e", c41: "#3c1e1e.#141414", c42: "#643232.#507814", c43: "#8c4646.#507814", c44: "#dc5050.#aac83c", c45: "#1ebed2.#c83c1e", c46: "#0a646e.#c83c1e", c47: "#288c8c.#c83c1e", c48: "#964646.#82a032", c49: "#5a1e1e.#141414", c50: "#8c8cb4.#ffb478", c51: "#963232.#fa9696", c52: "#c85050.#aac83c", c53: "#1e8296.#c83c1e", c54: "#6e6e8c.#c83c1e", c55: "#0a465a.#961400", c56: "#e6dcdc.#ffb478", c57: "#3c0a0a.#141414", c58: "#820a0a.#fa9696", c59: "#e65a46.#aac83c", c60: "#a03c3c.#fa9696", c61: "#3c4646.#507814" },
186 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#507878.#828282", c6: "#78a0ff.#bec8ff", c7: "#141414.#141414", c8: "#6ea014.#6e96d2", c9: "#327800.#3c64a0", c10: "#bef078.#aaf0ff", c11: "#8cc814.#78c8ff", c12: "#c8c8c8.#c8c8c8", c13: "#b41432.#b41432", c14: "#8c5a00.#b4508c", c15: "#ffe66e.#ffc8fa", c16: "#e66e32.#e66e32", c17: "#d2b464.#e68ce6", c18: "#ff96c8.#ff96c8", c19: "#1e1e32.#141414", c20: "#28323c.#141414", c21: "#0a0a0a.#141414", c22: "#780a32.#b41432", c23: "#1e2832.#141414", c24: "#aa143c.#b41432", c25: "#14141e.#141414", c26: "#283246.#141414", c27: "#461428.#141414", c28: "#aa1446.#b41432", c29: "#282832.#141414", c30: "#782846.#b41432", c31: "#d2d2d2.#c8c8c8", c32: "#8c0a3c.#b41432", c33: "#78283c.#b41432", c34: "#c8465a.#e66e32", c35: "#64646e.#828282", c36: "#787882.#828282", c37: "#464650.#828282", c38: "#32323c.#141414", c39: "#141432.#141414", c40: "#c83246.#b41432", c41: "#14b4b4.#828282", c42: "#149696.#828282", c43: "#147878.#828282", c44: "#328282.#828282", c45: "#3c3c3c.#141414", c46: "#3c3246.#141414", c47: "#3c0a14.#141414", c48: "#e6e6e6.#ffffff", c49: "#5adcdc.#bec8ff", c50: "#c8c8e6.#c8c8c8", c51: "#14aadc.#bec8ff", c52: "#1e1e28.#141414", c53: "#1e6e6e.#828282", c54: "#0a3232.#141414", c55: "#0a5050.#141414", c56: "#323232.#141414", c57: "#50e6e6.#bec8ff", c58: "#aaaaaa.#c8c8c8", c59: "#e6465a.#e66e32", c60: "#646464.#828282", c61: "#be143c.#b41432", c62: "#6e283c.#b41432", c63: "#141428.#141414", c64: "#465050.#828282", c65: "#781432.#b41432", c66: "#96320a.#b4508c", c67: "#78140a.#b41432", c68: "#e68296.#ff96c8", c69: "#28141e.#141414", c70: "#1e1e1e.#141414", c71: "#d2465a.#e66e32", c72: "#b4bedc.#c8c8c8", c73: "#969696.#828282" },
187 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#50823c.#6ea014", c6: "#64be5a.#a0d250", c7: "#a0dc5a.#bee65a", c8: "#3c5a14.#3c7814", c9: "#000000.#000000", c10: "#b46478.#50a014", c11: "#faa0b4.#96dc28", c12: "#8c0a3c.#0a6e00", c13: "#ff7896.#6ec814", c14: "#ffff00.#ffff00", c15: "#ffc800.#ffc800", c16: "#8c2846.#0a6e00", c17: "#fa8caa.#96dc28", c18: "#0a0a0a.#000000", c19: "#8c5a6e.#50a014", c20: "#f0a0aa.#96dc28", c21: "#f0dcdc.#96dc28", c22: "#fafafa.#96dc28", c23: "#643c3c.#3c7814", c24: "#dc5a78.#50a014", c25: "#e6a0b4.#96dc28", c26: "#e6788c.#6ec814", c27: "#141414.#000000", c28: "#285a96.#6ea014", c29: "#508cc8.#a0d250", c30: "#e68296.#6ec814", c31: "#5a6eb4.#50a014", c32: "#823246.#0a6e00", c33: "#b4646e.#50a014", c34: "#b4dcf0.#96dc28", c35: "#ffbec8.#96dc28", c36: "#32465a.#6ea014", c37: "#f0b4be.#96dc28", c38: "#50648c.#6ea014", c39: "#6496d2.#a0d250", c40: "#64c8f0.#a0d250", c41: "#324678.#6ea014", c42: "#aabed2.#96dc28", c43: "#78c8f0.#96dc28", c44: "#8cbed2.#96dc28", c45: "#507896.#6ea014", c46: "#6478b4.#50a014", c47: "#fff0f0.#96dc28", c48: "#f096aa.#96dc28", c49: "#6eaac8.#a0d250", c50: "#fabec8.#96dc28", c51: "#96c8dc.#96dc28", c52: "#5082c8.#a0d250", c53: "#c86478.#50a014", c54: "#6e646e.#6ea014", c55: "#faf0f0.#96dc28", c56: "#aa646e.#50a014", c57: "#f0a0b4.#96dc28", c58: "#dcc8c8.#96dc28", c59: "#b4b4b4.#96dc28", c60: "#648cc8.#50a014", c61: "#ffffff.#96dc28", c62: "#3c5a96.#6ea014", c63: "#826e78.#50a014", c64: "#325a96.#6ea014", c65: "#e6c8c8.#96dc28", c66: "#e6d2e6.#96dc28", c67: "#aa8c8c.#50a014", c68: "#285aa0.#6ea014", c69: "#e6828c.#6ec814", c70: "#46befa.#a0d250", c71: "#96dcfa.#96dc28", c72: "#5a828c.#a0d250", c73: "#f08c78.#6ec814", c74: "#fafaf0.#96dc28", c75: "#d2c8c8.#96dc28", c76: "#8cb4c8.#96dc28", c77: "#aad2e6.#96dc28", c78: "#82646e.#50a014", c79: "#96320a.#0a6e00", c80: "#c8b4be.#96dc28", c81: "#645a5a.#6ea014", c82: "#964650.#50a014", c83: "#b45064.#50a014", c84: "#822846.#0a6e00", c85: "#78b4dc.#a0d250", c86: "#a0dcf0.#96dc28", c87: "#dc7896.#6ec814", c88: "#d26e82.#50a014", c89: "#3c6ea0.#6ea014", c90: "#8c6482.#50a014", c91: "#78d2f0.#96dc28", c92: "#aaa0aa.#50a014", c93: "#5aa0f0.#a0d250", c94: "#3c5078.#6ea014", c95: "#788ca0.#50a014", c96: "#fafaff.#96dc28", c97: "#c8c8d2.#96dc28", c98: "#dcd2d2.#96dc28", c99: "#326ec8.#6ea014", c100: "#a0c8ff.#96dc28", c101: "#5a4650.#6ea014", c102: "#be6e82.#50a014" },
188 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#8c5000.#8c4600", c6: "#000000.#000000", c7: "#fff000.#ffe600", c8: "#ffd200.#ffc800", c9: "#faa014.#faa014", c10: "#b4d2dc.#b4d2dc", c11: "#146e00.#961478", c12: "#64d232.#e678c8", c13: "#8cfa46.#f08cdc", c14: "#3cb41e.#c846be", c15: "#ff6400.#ff6400", c16: "#a05096.#b4d2dc", c17: "#dc96fa.#b4d2dc", c18: "#5a286e.#8c4600", c19: "#d278f0.#b4d2dc", c20: "#141414.#000000", c21: "#287896.#c846be", c22: "#0a4664.#961478", c23: "#0a0a0a.#000000", c24: "#78785a.#8c4600", c25: "#3c96c8.#b4d2dc", c26: "#e6e6d2.#b4d2dc", c27: "#640a0a.#8c4600", c28: "#c8c8a0.#b4d2dc", c29: "#e63c32.#ff6400", c30: "#aa140a.#8c4600", c31: "#3c0a0a.#000000", c32: "#4696c8.#b4d2dc", c33: "#323232.#961478", c34: "#f0b4ff.#b4d2dc", c35: "#aa5096.#b4d2dc", c36: "#289678.#c846be", c37: "#0a6446.#961478", c38: "#3cc8b4.#b4d2dc", c39: "#dcaae6.#b4d2dc", c40: "#c8c8aa.#b4d2dc" },
189 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#b48c32.#be50be", c6: "#d2be5a.#c88cc8", c7: "#fffab4.#f0c8f0", c8: "#f0e6a0.#e6b4f0", c9: "#ffffdc.#ffdcfa", c10: "#288246.#32965a", c11: "#141414.#141414", c12: "#82c878.#82c878", c13: "#3c78c8.#f08caa", c14: "#78a0ff.#ffa0be", c15: "#144678.#96326e", c16: "#8cb4ff.#ffbec8", c17: "#f03c50.#f05a00", c18: "#c8323c.#c83c00", c19: "#323c6e.#96326e", c20: "#5aa0ff.#ffa0be", c21: "#4682d2.#f08caa", c22: "#3c64b4.#f08caa", c23: "#82828c.#82c878", c24: "#0a0a0a.#141414", c25: "#b4b4b4.#e6b4f0", c26: "#96a0b4.#82c878", c27: "#5a506e.#96326e", c28: "#faf0f0.#ffdcfa", c29: "#dcdcdc.#ffdcfa", c30: "#c8bec8.#e6b4f0", c31: "#a03264.#c83c00", c32: "#fa1414.#c83c00", c33: "#ffffff.#ffdcfa", c34: "#323c78.#96326e", c35: "#8c8ca0.#82c878", c36: "#285096.#96326e", c37: "#ffc832.#c88cc8", c38: "#78283c.#c83c00", c39: "#f0f0f0.#ffdcfa", c40: "#dcdce6.#ffdcfa", c41: "#dc3278.#f05a00", c42: "#1e285a.#96326e", c43: "#bebed2.#ffbec8", c44: "#3c78be.#f08caa", c45: "#82c8ff.#ffbec8", c46: "#a08c96.#82c878", c47: "#32468c.#96326e", c48: "#7896dc.#ffa0be", c49: "#8c2878.#c83c00", c50: "#3c5aaa.#f08caa", c51: "#bec8f0.#ffbec8", c52: "#28285a.#96326e", c53: "#b49628.#be50be", c54: "#e6c83c.#c88cc8", c55: "#d2bed2.#e6b4f0", c56: "#5a5064.#96326e", c57: "#a096aa.#82c878", c58: "#f0e6f0.#ffdcfa", c59: "#323c64.#96326e", c60: "#3264aa.#f08caa", c61: "#3c82dc.#f08caa", c62: "#ff0a0a.#c83c00", c63: "#aa2864.#c83c00", c64: "#28508c.#96326e", c65: "#50a0ff.#ffa0be", c66: "#782832.#c83c00", c67: "#8c96a0.#82c878", c68: "#ffd232.#c88cc8", c69: "#6ed2ff.#ffbec8", c70: "#d2c8dc.#ffdcfa", c71: "#82d2ff.#ffbec8", c72: "#fffa28.#c88cc8", c73: "#bed2d2.#e6b4f0" },
190 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#823caa.#c83c82", c6: "#be78dc.#fa82b4", c7: "#000000.#000000", c8: "#501e6e.#960032", c9: "#a05ac8.#e664a0", c10: "#8c6e3c.#a0503c", c11: "#be8c64.#e67864", c12: "#c8aa6e.#ffaaa0", c13: "#ffdca0.#ffdcc8", c14: "#aaaaa0.#8c8c8c", c15: "#0a0a0a.#000000", c16: "#143246.#960032", c17: "#144678.#960032", c18: "#648cbe.#e664a0", c19: "#141414.#000000", c20: "#6e3c32.#a0503c", c21: "#8c8296.#8c8c8c", c22: "#6e3232.#a0503c", c23: "#ffc8c8.#ffdcc8", c24: "#c8c8d2.#8c8c8c", c25: "#fff0f0.#ffffff", c26: "#ff5a6e.#e67864", c27: "#a06e6e.#e67864", c28: "#dca0a0.#8c8c8c", c29: "#be4678.#e67864", c30: "#ffaab4.#ffdcc8", c31: "#aa6e6e.#e67864", c32: "#ffd2d2.#ffdcc8", c33: "#d2d2d2.#ffdcc8", c34: "#dcaaa0.#8c8c8c", c35: "#78323c.#a0503c", c36: "#6e323c.#960032", c37: "#c8d2dc.#8c8c8c", c38: "#3c3c3c.#960032", c39: "#c8c8e6.#fa82b4", c40: "#ff7882.#e67864", c41: "#e6a096.#ffaaa0", c42: "#d2d2dc.#ffffff", c43: "#d2c8d2.#ffdcc8", c44: "#c8c8c8.#8c8c8c" },
191 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#50a03c.#82a03c", c6: "#a0fa3c.#d2fa3c", c7: "#1e6414.#3c6414", c8: "#78d228.#aad228", c9: "#141414.#141414", c10: "#6e6432.#784628", c11: "#ffff00.#ffdc00", c12: "#b4a032.#c88c32", c13: "#d2c832.#e6be32", c14: "#78788c.#78788c", c15: "#504628.#643214", c16: "#be3232.#784628", c17: "#781e28.#643214", c18: "#5a141e.#643214", c19: "#ff786e.#c88c32", c20: "#ff1e28.#c88c32", c21: "#0a0a0a.#141414", c22: "#a06e32.#784628", c23: "#ffc832.#e6be32", c24: "#fabebe.#ffffff", c25: "#fa6e64.#c88c32", c26: "#786464.#78788c", c27: "#fa1e28.#c88c32", c28: "#bebed2.#ffffff", c29: "#3c3c3c.#643214", c30: "#5a5a5a.#784628", c31: "#ffd232.#e6be32", c32: "#aaa0a0.#78788c", c33: "#96828c.#78788c", c34: "#a02828.#784628", c35: "#bebec8.#ffffff", c36: "#b48c3c.#c88c32", c37: "#6e6464.#78788c", c38: "#ffbebe.#ffffff", c39: "#463c3c.#643214", c40: "#fafafa.#ffffff", c41: "#962828.#784628", c42: "#fab4b4.#ffffff", c43: "#b43232.#784628", c44: "#e66464.#c88c32", c45: "#ff780a.#c88c32", c46: "#968c8c.#78788c", c47: "#323232.#643214", c48: "#fa8c6e.#e6be32", c49: "#f0f0f0.#ffffff", c50: "#b4b4d2.#78788c", c51: "#8c828c.#78788c", c52: "#fac832.#e6be32", c53: "#966432.#784628", c54: "#d28cc8.#78788c", c55: "#dcdcdc.#ffffff", c56: "#fa5a50.#c88c32", c57: "#ffdc8c.#e6be32", c58: "#ffbe0a.#e6be32", c59: "#aa96a0.#78788c", c60: "#781e0a.#643214", c61: "#fa7882.#c88c32", c62: "#fa281e.#c88c32", c63: "#641e28.#643214", c64: "#aa2828.#784628", c65: "#aa283c.#784628", c66: "#d23246.#784628", c67: "#822828.#643214", c68: "#ff7882.#c88c32", c69: "#ff5046.#c88c32", c70: "#785a64.#78788c", c71: "#3c3c32.#643214", c72: "#be820a.#c88c32", c73: "#fae650.#e6be32", c74: "#d23c46.#c88c32", c75: "#826e6e.#78788c", c76: "#c83250.#784628", c77: "#c8c8d2.#ffffff", c78: "#5a4646.#643214", c79: "#140a0a.#141414", c80: "#a07882.#78788c", c81: "#a0788c.#78788c" },
192 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#825a14.#6e500a", c6: "#141414.#141414", c7: "#fffa14.#ffff8c", c8: "#dca014.#d2b43c", c9: "#f0c80a.#fac864", c10: "#ffffa0.#fffaa0", c11: "#e6dc5a.#e6c85a", c12: "#dc3c00.#dc3c00", c13: "#506428.#646414", c14: "#a0d246.#b4be50", c15: "#78aa32.#969632", c16: "#78283c.#6e500a", c17: "#e65078.#dc3c00", c18: "#285046.#646414", c19: "#5abe8c.#969632", c20: "#468278.#646414", c21: "#28503c.#646414", c22: "#0a0a0a.#141414", c23: "#fadc0a.#fac864", c24: "#c8a00a.#d2b43c", c25: "#96dcb4.#b4be50", c26: "#509682.#969632", c27: "#468c6e.#646414", c28: "#826432.#6e500a", c29: "#8ce6b4.#b4be50", c30: "#501e1e.#141414", c31: "#dcd2e6.#fffaa0", c32: "#a02850.#6e500a", c33: "#ffffff.#fffaa0", c34: "#8c2828.#6e500a", c35: "#64500a.#6e500a", c36: "#be648c.#b4be50", c37: "#78788c.#969632", c38: "#96646e.#6e500a", c39: "#fafafa.#fffaa0", c40: "#5a3c46.#646414", c41: "#e696aa.#e6c85a", c42: "#50465a.#646414", c43: "#dcd2f0.#fffaa0", c44: "#323c46.#646414", c45: "#968214.#6e500a", c46: "#1e503c.#646414", c47: "#a02828.#6e500a", c48: "#1e5a5a.#646414", c49: "#288c64.#646414", c50: "#14503c.#646414", c51: "#64be82.#969632", c52: "#328278.#646414", c53: "#5abe78.#969632", c54: "#28be8c.#969632", c55: "#1e8c64.#646414", c56: "#78e6b4.#b4be50", c57: "#3c503c.#646414", c58: "#0a2832.#141414", c59: "#faf064.#e6c85a", c60: "#f0aa0a.#d2b43c", c61: "#c8aa0a.#d2b43c", c62: "#fa6464.#d2b43c", c63: "#aa2850.#6e500a", c64: "#fa5078.#dc3c00", c65: "#fff00a.#ffff8c", c66: "#826428.#6e500a", c67: "#e6a014.#d2b43c", c68: "#dcd20a.#fac864", c69: "#a0e696.#b4be50", c70: "#c89664.#e6c85a", c71: "#e65050.#dc3c00", c72: "#b4a096.#b4be50", c73: "#ffe632.#ffff8c", c74: "#f04664.#dc3c00", c75: "#641e28.#6e500a", c76: "#a01e3c.#6e500a", c77: "#6e828c.#969632", c78: "#826e32.#6e500a", c79: "#5a1414.#141414", c80: "#a01e1e.#6e500a", c81: "#be64aa.#e6c85a", c82: "#323c3c.#646414", c83: "#782832.#6e500a", c84: "#0a321e.#141414", c85: "#a06e78.#969632", c86: "#dc8cb4.#e6c85a", c87: "#dca0a0.#e6c85a", c88: "#fffaaa.#fffaa0" },
193 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#96aabe.#96aabe", c6: "#e6ffff.#e6ffff", c7: "#ffbea0.#78d2ff", c8: "#642800.#143caa", c9: "#fa5a50.#3ca0f0", c10: "#141414.#141414", c11: "#aa3214.#2878d2", c12: "#ff8c64.#32aaff", c13: "#c8d2f0.#c8d2f0", c14: "#3c5a28.#326e00", c15: "#78a046.#50b41e", c16: "#b4f078.#aaff5a", c17: "#78d25a.#8ce646", c18: "#6e7882.#6e7882", c19: "#464650.#464650", c20: "#8ca0b4.#96aabe", c21: "#3c3c50.#464650", c22: "#dcf0ff.#e6ffff", c23: "#8296aa.#96aabe", c24: "#b4c8d2.#c8d2f0", c25: "#bec8dc.#c8d2f0", c26: "#bed2dc.#c8d2f0", c27: "#788caa.#6e7882", c28: "#1e3c6e.#464650", c29: "#a0c8dc.#96aabe", c30: "#3c5a6e.#464650", c31: "#d2e6fa.#c8d2f0", c32: "#a0d2fa.#c8d2f0", c33: "#64a0c8.#96aabe", c34: "#1e5a96.#464650", c35: "#1e466e.#464650", c36: "#3c78b4.#6e7882", c37: "#0a3c6e.#464650", c38: "#0a5082.#464650", c39: "#50a0be.#96aabe", c40: "#96dcf0.#c8d2f0", c41: "#6ea0e6.#96aabe", c42: "#5a6478.#6e7882", c43: "#fa503c.#3ca0f0", c44: "#96140a.#2878d2", c45: "#e63c1e.#3ca0f0", c46: "#c8140a.#2878d2", c47: "#142846.#141414", c48: "#96323c.#2878d2", c49: "#fa5046.#3ca0f0", c50: "#0a5a96.#464650", c51: "#ffa0b4.#78d2ff", c52: "#c81e0a.#2878d2", c53: "#faaaa0.#78d2ff", c54: "#1e46ff.#6e7882", c55: "#0a78b4.#6e7882", c56: "#32aaf0.#96aabe", c57: "#4682ff.#96aabe", c58: "#506eff.#96aabe", c59: "#0a0a0a.#141414", c60: "#3278b4.#6e7882", c61: "#9696b4.#96aabe", c62: "#c8d2e6.#c8d2f0", c63: "#283c64.#464650", c64: "#1e2846.#464650", c65: "#e6e6f0.#e6ffff", c66: "#6496aa.#6e7882", c67: "#96d2e6.#c8d2f0", c68: "#ffffff.#e6ffff", c69: "#3c5078.#464650", c70: "#ff323c.#3ca0f0", c71: "#5a646e.#6e7882", c72: "#3c82ff.#96aabe", c73: "#fafafa.#e6ffff", c74: "#4664b4.#6e7882" },
194 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#144682.#b46478", c6: "#643c6e.#96280a", c7: "#78beff.#fac8d2", c8: "#d25ad2.#f07850", c9: "#50a0e6.#e6b4be", c10: "#3c78c8.#d2a0a0", c11: "#141414.#141414", c12: "#f078e6.#ffa078", c13: "#b43c3c.#b43c3c", c14: "#ff6e78.#ff6e78", c15: "#786482.#96280a", c16: "#32323c.#141414", c17: "#f0e6fa.#ffffff", c18: "#787878.#96280a", c19: "#f0e6ff.#ffffff", c20: "#3c3c3c.#96280a", c21: "#787896.#96280a", c22: "#a0bec8.#fac8d2", c23: "#f0faff.#ffffff", c24: "#a0a0a0.#f07850", c25: "#a0a0b4.#fac8d2", c26: "#c8b4d2.#ffa078", c27: "#b496b4.#f07850", c28: "#faf0ff.#ffffff", c29: "#6e7878.#96280a", c30: "#dce6f0.#ffffff", c31: "#aaaab4.#fac8d2", c32: "#0a0a0a.#141414", c33: "#bec8dc.#fac8d2", c34: "#f0f0f0.#ffffff", c35: "#aa8caa.#f07850", c36: "#8c5096.#96280a", c37: "#c8140a.#b43c3c", c38: "#502850.#96280a", c39: "#d2b4d2.#ffa078", c40: "#fa5046.#ff6e78", c41: "#78466e.#96280a", c42: "#e63c46.#b43c3c", c43: "#b46eb4.#f07850", c44: "#be6ed2.#f07850", c45: "#f08c8c.#ff6e78", c46: "#a0465a.#b43c3c", c47: "#fa503c.#ff6e78", c48: "#a0a0be.#fac8d2", c49: "#fa5050.#ff6e78", c50: "#501e50.#96280a", c51: "#faa0a0.#ff6e78", c52: "#643250.#96280a", c53: "#bed2dc.#fac8d2", c54: "#a01e14.#b43c3c", c55: "#5a5a5a.#96280a", c56: "#6e6e6e.#96280a", c57: "#6e6e78.#96280a", c58: "#323232.#141414", c59: "#e61e0a.#b43c3c", c60: "#be6edc.#f07850", c61: "#786478.#96280a", c62: "#786e82.#96280a", c63: "#b48ca0.#f07850", c64: "#8c8c96.#d2a0a0", c65: "#d2b4dc.#ffa078", c66: "#f0dcff.#ffffff", c67: "#b4a0c8.#f07850", c68: "#c864dc.#f07850", c69: "#965096.#96280a", c70: "#aac8dc.#fac8d2", c71: "#dcf0ff.#ffffff", c72: "#b4b4be.#fac8d2", c73: "#e63c0a.#b43c3c", c74: "#f0c846.#ff6e78", c75: "#a064a0.#f07850", c76: "#c88cc8.#f07850", c77: "#8c506e.#96280a", c78: "#321428.#141414", c79: "#be6eaa.#f07850", c80: "#be78aa.#f07850", c81: "#bea0b4.#f07850" },
195 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c5082.#3c1450", c6: "#64a0be.#c878dc", c7: "#82d2fa.#f0a0fa", c8: "#aae6ff.#ffc8ff", c9: "#fafafa.#fafafa", c10: "#141414.#141414", c11: "#143c3c.#783282", c12: "#145a6e.#781478", c13: "#3296a0.#aa50aa", c14: "#6e5a8c.#7864a0", c15: "#6478a0.#a06ea0", c16: "#3c3c46.#783282", c17: "#32323c.#783282", c18: "#78500a.#783282", c19: "#fff0c8.#fafafa", c20: "#d2a00a.#7864a0", c21: "#6e1414.#141414", c22: "#ffd20a.#7864a0", c23: "#6e6e78.#7864a0", c24: "#ff3c50.#7864a0", c25: "#c82846.#7864a0", c26: "#a01e3c.#7864a0", c27: "#0a0a0a.#141414", c28: "#9696a0.#a06ea0", c29: "#c8d2d2.#ffc8ff", c30: "#ffffd2.#fafafa", c31: "#aa780a.#7864a0", c32: "#c8a00a.#7864a0", c33: "#96640a.#7864a0", c34: "#6e460a.#141414", c35: "#fac80a.#7864a0", c36: "#c88c0a.#7864a0", c37: "#3c3c3c.#783282", c38: "#c8c8d2.#ffc8ff", c39: "#50505a.#3c1450", c40: "#5a5a5a.#3c1450", c41: "#ff4650.#7864a0", c42: "#5a3214.#141414", c43: "#50140a.#141414", c44: "#282828.#141414", c45: "#46465a.#3c1450", c46: "#8c0a1e.#141414", c47: "#e60a1e.#7864a0", c48: "#a0a0aa.#c878dc", c49: "#ff2814.#7864a0", c50: "#a0140a.#141414", c51: "#643c14.#141414", c52: "#464646.#783282", c53: "#1e1e28.#141414", c54: "#282832.#783282", c55: "#828296.#a06ea0", c56: "#fff0a0.#fafafa", c57: "#96a0aa.#c878dc" },
196 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#784678.#147800", c6: "#f0bef0.#a0ff3c", c7: "#e6a0d2.#78d23c", c8: "#141414.#141414", c9: "#b478b4.#50aa1e", c10: "#323c78.#3c6478", c11: "#4678b4.#468ca0", c12: "#c81e50.#ff7800", c13: "#8c1e50.#c83c00", c14: "#8264b4.#783cc8", c15: "#c8c8c8.#c8c8c8", c16: "#3c465a.#3c6478", c17: "#aaaac8.#c8c8c8", c18: "#c8a050.#50aa1e", c19: "#78641e.#c83c00", c20: "#d2c8d2.#c8c8c8", c21: "#fad25a.#c8c8c8", c22: "#fafafa.#ffffff", c23: "#8c96aa.#50aa1e", c24: "#e6ffff.#ffffff", c25: "#c8a028.#ff7800", c26: "#1e826e.#3c6478", c27: "#46a064.#468ca0", c28: "#ffc832.#c8c8c8", c29: "#145a46.#3c6478", c30: "#826e28.#147800", c31: "#0a0a0a.#141414", c32: "#fad228.#c8c8c8", c33: "#aa8c28.#147800", c34: "#ffe6a0.#c8c8c8", c35: "#be9650.#50aa1e", c36: "#f0d25a.#c8c8c8", c37: "#6e788c.#783cc8", c38: "#f0f0f0.#ffffff", c39: "#1e8264.#3c6478", c40: "#f0d28c.#c8c8c8", c41: "#32503c.#3c6478", c42: "#dcdcdc.#c8c8c8", c43: "#f0d250.#c8c8c8", c44: "#f0e6d2.#a0ff3c", c45: "#3c9646.#3c6478", c46: "#286446.#3c6478", c47: "#78a0aa.#783cc8", c48: "#468c46.#3c6478", c49: "#288c46.#3c6478", c50: "#b4d2dc.#c8c8c8", c51: "#6e6e82.#147800", c52: "#e6e6fa.#ffffff", c53: "#1e2832.#141414", c54: "#f05a6e.#ff7800", c55: "#3c4646.#3c6478", c56: "#1e1e28.#141414", c57: "#3c3c50.#3c6478", c58: "#aaaabe.#c8c8c8", c59: "#8cb4c8.#c8c8c8", c60: "#ffdce6.#a0ff3c", c61: "#e65a64.#ff7800", c62: "#f07882.#50aa1e", c63: "#fa8c96.#78d23c", c64: "#7878a0.#783cc8", c65: "#5ac8fa.#468ca0", c66: "#786478.#147800", c67: "#64788c.#468ca0", c68: "#d24632.#ff7800", c69: "#c8e6ff.#a0ff3c", c70: "#5abef0.#468ca0", c71: "#b4bec8.#c8c8c8", c72: "#82d2fa.#c8c8c8", c73: "#96dcff.#c8c8c8", c74: "#3ca096.#468ca0", c75: "#ff8c96.#78d23c", c76: "#646482.#147800", c77: "#b4b4be.#c8c8c8", c78: "#dcdce6.#a0ff3c", c79: "#be4650.#ff7800", c80: "#aae6ff.#c8c8c8", c81: "#3c82a0.#468ca0", c82: "#5abe78.#468ca0", c83: "#283c32.#141414", c84: "#0a2814.#141414", c85: "#146450.#3c6478", c86: "#0a3c32.#141414", c87: "#281e14.#141414", c88: "#503c28.#141414", c89: "#1e7864.#3c6478", c90: "#82643c.#147800", c91: "#1e7850.#3c6478", c92: "#323246.#3c6478", c93: "#46aa46.#468ca0", c94: "#14141e.#141414", c95: "#288c3c.#3c6478", c96: "#d2d2d2.#c8c8c8", c97: "#828caa.#783cc8", c98: "#0a140a.#141414", c99: "#141e14.#141414", c100: "#647882.#147800", c101: "#0a1414.#141414", c102: "#a0a0be.#50aa1e", c103: "#0a0a14.#141414", c104: "#ff96b4.#78d23c", c105: "#f0788c.#50aa1e", c106: "#b42850.#ff7800", c107: "#a0e6fa.#c8c8c8", c108: "#3282d2.#468ca0" },
197 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#283246.#32323c", c6: "#646478.#64646e", c7: "#141414.#141414", c8: "#3c3c50.#50505a", c9: "#505000.#285a8c", c10: "#f0d250.#6ebedc", c11: "#b49628.#468cb4", c12: "#6e1e14.#c87800", c13: "#fff0dc.#fffadc", c14: "#aa3c46.#ffc800", c15: "#504646.#50505a", c16: "#828282.#64646e", c17: "#aab4be.#fffadc", c18: "#dce6f0.#fffadc", c19: "#323232.#32323c", c20: "#505050.#50505a", c21: "#0a0a0a.#141414", c22: "#1e1e1e.#141414", c23: "#96283c.#ffc800", c24: "#500a0a.#c87800", c25: "#148caa.#64646e", c26: "#e63c28.#ffc800", c27: "#28e6ff.#64646e", c28: "#ffffff.#fffadc", c29: "#962846.#ffc800", c30: "#8c8278.#64646e", c31: "#a0a0a0.#64646e", c32: "#c8c8c8.#fffadc", c33: "#64506e.#64646e", c34: "#14141e.#141414", c35: "#282832.#32323c", c36: "#463c50.#50505a", c37: "#5a5064.#64646e", c38: "#787878.#64646e", c39: "#786e6e.#64646e", c40: "#781414.#c87800", c41: "#460a0a.#c87800", c42: "#b4bec8.#fffadc", c43: "#bec8c8.#fffadc", c44: "#c82828.#ffc800", c45: "#0a6ed2.#64646e", c46: "#0abeff.#64646e", c47: "#28281e.#141414", c48: "#32283c.#32323c", c49: "#3c3c5a.#50505a", c50: "#505a64.#64646e", c51: "#f06e64.#ffc800", c52: "#e61414.#ffc800", c53: "#141432.#141414", c54: "#282850.#32323c", c55: "#280a28.#141414" },
198 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#28283c.#6e3264", c6: "#3c64a0.#c864b4", c7: "#141414.#141414", c8: "#323c64.#a03278", c9: "#5a461e.#783c14", c10: "#f0d282.#fffa64", c11: "#d2be50.#ffd23c", c12: "#ffaa8c.#ffaa8c", c13: "#d23c50.#f03c3c", c14: "#78283c.#aa141e", c15: "#b4a01e.#d2a028", c16: "#502846.#6e3264", c17: "#783c8c.#c864b4", c18: "#c8b4ff.#ffffff", c19: "#a082be.#c864b4", c20: "#a05ac8.#c864b4", c21: "#6e460a.#783c14", c22: "#f0be0a.#d2a028", c23: "#c8820a.#d2a028", c24: "#0a0a0a.#141414", c25: "#783228.#aa141e", c26: "#fa501e.#f03c3c", c27: "#b43c1e.#f03c3c", c28: "#787878.#c864b4", c29: "#78468c.#c864b4", c30: "#d2b4ff.#ffffff", c31: "#1e1e1e.#141414", c32: "#b4461e.#f03c3c", c33: "#c8c8c8.#fffa64", c34: "#3c3c46.#6e3264", c35: "#f0f0f0.#ffffff" },
199 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#64646e.#6e6464", c7: "#d2d2d2.#dcdcc8", c8: "#aaa0a0.#aaa0a0", c9: "#b42814.#a03c78", c10: "#f0786e.#dc78aa", c11: "#c85050.#b45a8c", c12: "#ffa096.#ffa0dc", c13: "#aa6414.#966e14", c14: "#dcb432.#c8be3c", c15: "#ffff8c.#f0ffa0", c16: "#e63c1e.#005ac8", c17: "#ff5a46.#288cff", c18: "#46466e.#6e6464", c19: "#3c5a78.#6e6464", c20: "#bebed2.#dcdcc8", c21: "#7878a0.#6e6464", c22: "#0a3c50.#141414", c23: "#dc280a.#005ac8", c24: "#b4d2e6.#dcdcc8", c25: "#f0fafa.#ffffff", c26: "#0a0a0a.#141414", c27: "#ff6432.#288cff", c28: "#ffa032.#c8be3c", c29: "#648ca0.#6e6464", c30: "#1eb4fa.#aaa0a0", c31: "#b43214.#a03c78", c32: "#3cb4fa.#aaa0a0", c33: "#f05a3c.#288cff", c34: "#e68c8c.#ffa0dc", c35: "#f078a0.#ffa0dc", c36: "#fadcdc.#dcdcc8", c37: "#78788c.#6e6464", c38: "#b4aabe.#aaa0a0", c39: "#464650.#6e6464", c40: "#0a8cc8.#6e6464", c41: "#505a6e.#6e6464", c42: "#788caa.#aaa0a0", c43: "#e6f0fa.#ffffff", c44: "#b4bed2.#dcdcc8", c45: "#c8c8d2.#dcdcc8", c46: "#bec8c8.#dcdcc8" },
200 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#64143c.#b47800", c6: "#141414.#141414", c7: "#dc64a0.#ffc800", c8: "#a03c46.#e6a000", c9: "#4682a0.#c8d264", c10: "#14283c.#647814", c11: "#324664.#8ca03c", c12: "#3c6482.#aabe50", c13: "#be9632.#ffc80a", c14: "#a0285a.#be1e14", c15: "#f0e664.#fffa50", c16: "#dc3c82.#ff5a28", c17: "#781432.#781e00", c18: "#5a321e.#b47800", c19: "#e67878.#ffc800", c20: "#a05050.#e6a000", c21: "#a08278.#ffc800", c22: "#78463c.#e6a000", c23: "#ffd2be.#ffffff", c24: "#ffaaaa.#ffc800", c25: "#969696.#c8d264", c26: "#0a0a0a.#141414", c27: "#641e0a.#781e00", c28: "#aa6432.#e6a000", c29: "#ffc8a0.#fffa50", c30: "#8c4614.#e6a000", c31: "#f03c3c.#ff5a28", c32: "#b43c28.#e6a000", c33: "#d28250.#ffc80a", c34: "#ff968c.#ffc800", c35: "#f0463c.#ff5a28", c36: "#78280a.#781e00", c37: "#f05a46.#ff5a28", c38: "#c8c8c8.#ffffff", c39: "#c88250.#ffc80a", c40: "#8c3c14.#e6a000" },
201 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#505050.#145096", c6: "#dcdcdc.#dcdcdc", c7: "#a0a0a0.#64a0e6", c8: "#141414.#141414", c9: "#787878.#286ebe", c10: "#a08c32.#286ebe", c11: "#fffad2.#ffffff", c12: "#0a0a0a.#141414", c13: "#8cc878.#64a0e6", c14: "#3c5a1e.#145096", c15: "#5aa046.#286ebe", c16: "#8cd278.#64a0e6", c17: "#e6d2aa.#dcdcdc", c18: "#bebebe.#dcdcdc", c19: "#5a503c.#145096", c20: "#b4a082.#64a0e6", c21: "#465a1e.#145096", c22: "#bee678.#64a0e6", c23: "#c8fa5a.#64a0e6", c24: "#46823c.#145096", c25: "#283c14.#141414", c26: "#f0dcb4.#dcdcdc", c27: "#a09696.#64a0e6", c28: "#aa5a64.#286ebe", c29: "#c8be46.#64a0e6", c30: "#d26478.#64a0e6", c31: "#b42814.#145096", c32: "#fff08c.#dcdcdc", c33: "#f0f0f0.#ffffff", c34: "#c81e0a.#145096", c35: "#821e0a.#145096", c36: "#5a1414.#141414", c37: "#645a50.#145096", c38: "#a08c28.#286ebe", c39: "#aaaaaa.#64a0e6", c40: "#d2be46.#64a0e6", c41: "#5a5028.#145096", c42: "#c81414.#145096", c43: "#b4280a.#145096", c44: "#fadca0.#dcdcdc", c45: "#8c3c1e.#145096", c46: "#c83c14.#145096" },
202 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#1e508c.#822864", c6: "#141414.#141414", c7: "#a0dcff.#ffa0f0", c8: "#78befa.#e678d2", c9: "#50aaf0.#c86ebe", c10: "#3296f0.#be50a0", c11: "#a01400.#a01400", c12: "#dc5000.#dc5000", c13: "#ff8c00.#ff8c00", c14: "#828282.#828282", c15: "#0a0a0a.#141414", c16: "#1e1e28.#141414", c17: "#14141e.#141414", c18: "#50505a.#505050", c19: "#32323c.#505050", c20: "#282832.#141414", c21: "#0a6ebe.#822864", c22: "#323232.#141414", c23: "#3c3c46.#505050", c24: "#0ac8ff.#be50a0", c25: "#6efaff.#ffa0f0", c26: "#fafafa.#ffffff", c27: "#c80a0a.#a01400", c28: "#960a0a.#a01400", c29: "#b4b4b4.#828282", c30: "#6e6e78.#828282", c31: "#283232.#141414", c32: "#5a5a64.#505050", c33: "#0aa0dc.#be50a0", c34: "#dcc8c8.#ffa0f0", c35: "#143c50.#505050", c36: "#3c4650.#505050", c37: "#8c1414.#a01400", c38: "#ff0a14.#dc5000", c39: "#dc7878.#828282", c40: "#c8c8dc.#ffa0f0", c41: "#e6f0fa.#ffffff", c42: "#a0a0aa.#828282", c43: "#faffff.#ffffff", c44: "#505064.#505050", c45: "#0a5afa.#be50a0", c46: "#6efffa.#ffa0f0", c47: "#0ac8f0.#be50a0", c48: "#6e0a0a.#a01400", c49: "#e60a0a.#a01400", c50: "#e6e6e6.#ffffff", c51: "#b4bedc.#ffa0f0" },
203 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c4678.#5078a0", c6: "#aab4d2.#b4d2e6", c7: "#6e8cb4.#96b4c8", c8: "#463c3c.#50321e", c9: "#a0783c.#be7800", c10: "#c8a03c.#dca014", c11: "#f0dc50.#ffd20a", c12: "#a03c5a.#5082e6", c13: "#141414.#141414", c14: "#c86e96.#82beff", c15: "#96786e.#aa825a", c16: "#645050.#785a3c", c17: "#d2c83c.#f0be0a", c18: "#8c785a.#966e5a", c19: "#6e8296.#96b4c8", c20: "#143c50.#50321e", c21: "#c8c8c8.#b4d2e6", c22: "#dcfaff.#ffffff", c23: "#96a0aa.#96b4c8", c24: "#bee6ff.#ffffff", c25: "#828282.#aa825a", c26: "#ffe60a.#ffd20a", c27: "#282832.#50321e", c28: "#787878.#aa825a", c29: "#a0b4c8.#b4d2e6", c30: "#fffaa0.#ffd20a", c31: "#8c7828.#be7800", c32: "#c8b40a.#dca014", c33: "#a0b4d2.#b4d2e6", c34: "#fafafa.#ffffff", c35: "#0a0a0a.#141414", c36: "#464650.#50321e", c37: "#bec8a0.#b4d2e6", c38: "#3c3c50.#50321e", c39: "#8c825a.#966e5a", c40: "#325064.#5078a0", c41: "#d2d2d2.#b4d2e6", c42: "#aad2f0.#b4d2e6", c43: "#64788c.#96b4c8", c44: "#d2b40a.#f0be0a", c45: "#dcdcf0.#ffffff" },
204 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c78a0.#aa785a", c6: "#82d2d2.#f0c85a", c7: "#284678.#82501e", c8: "#50aab4.#c8965a", c9: "#141414.#141414", c10: "#b4f0fa.#ffe678", c11: "#c8c8c8.#a0a0a0", c12: "#962800.#ff00ff", c13: "#ff463c.#ff463c", c14: "#f08cb4.#a0a0a0", c15: "#faaac8.#a0a0a0", c16: "#285050.#82501e", c17: "#78a08c.#c8965a", c18: "#287850.#82501e", c19: "#8c8c96.#c8965a", c20: "#0a0a0a.#141414", c21: "#d2c8dc.#a0a0a0", c22: "#6ea08c.#c8965a", c23: "#d2c8e6.#a0a0a0", c24: "#8c82a0.#c8965a", c25: "#783c5a.#82501e", c26: "#ff6482.#ff463c", c27: "#3c4682.#82501e", c28: "#5078f0.#c8965a", c29: "#be3c6e.#ff463c", c30: "#3ca064.#aa785a", c31: "#fad246.#a0a0a0", c32: "#be466e.#ff463c", c33: "#465abe.#aa785a", c34: "#aa9628.#ff463c", c35: "#822850.#ff00ff", c36: "#b42864.#ff463c", c37: "#fa3c64.#ff463c", c38: "#a0e6aa.#f0c85a", c39: "#dcbe28.#ff463c", c40: "#aa8c28.#ff00ff", c41: "#5aa078.#c8965a", c42: "#a08c32.#ff00ff", c43: "#dcaa32.#ff463c", c44: "#f0f0f0.#ffffff", c45: "#3264aa.#aa785a", c46: "#828282.#aa785a", c47: "#e66e96.#ff463c", c48: "#464682.#82501e", c49: "#b4aabe.#a0a0a0", c50: "#8c7896.#aa785a", c51: "#c8d2d2.#a0a0a0", c52: "#fafafa.#ffffff", c53: "#beb4c8.#a0a0a0", c54: "#faf078.#a0a0a0", c55: "#be3c64.#ff463c", c56: "#32a064.#aa785a", c57: "#78325a.#82501e", c58: "#e6be3c.#ff463c", c59: "#b47828.#ff463c", c60: "#6e6e6e.#aa785a", c61: "#28325a.#82501e", c62: "#506ef0.#aa785a", c63: "#141e3c.#141414" },
205 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#8278a0.#b4a03c", c6: "#e6c8fa.#f0e682", c7: "#503c64.#8c6e14", c8: "#141414.#141414", c9: "#c8a0dc.#d2c864", c10: "#fadcf0.#faffaa", c11: "#be283c.#a07828", c12: "#fa6478.#bea046", c13: "#821432.#785000", c14: "#ffa0a0.#dcbe6e", c15: "#6e6e6e.#6e6e6e", c16: "#c8c8e6.#f0e682", c17: "#5a5a64.#6e6e6e", c18: "#0a0a0a.#141414", c19: "#3c3c5a.#8c6e14", c20: "#8250aa.#b4a03c", c21: "#64503c.#8c6e14", c22: "#bea00a.#a07828", c23: "#a078dc.#d2c864", c24: "#ffdc0a.#dcbe6e", c25: "#d2c8f0.#f0e682", c26: "#5a3c78.#8c6e14", c27: "#6e6e8c.#b4a03c", c28: "#963c5a.#a07828", c29: "#322850.#8c6e14", c30: "#e64650.#a07828", c31: "#d2b4ff.#f0e682", c32: "#641e32.#785000", c33: "#b4323c.#a07828", c34: "#fff046.#dcbe6e", c35: "#a082c8.#b4a03c", c36: "#fff082.#dcbe6e", c37: "#f0d246.#dcbe6e", c38: "#5a1428.#785000", c39: "#826eb4.#b4a03c", c40: "#5a508c.#8c6e14", c41: "#6e1e3c.#785000", c42: "#3c0a28.#141414", c43: "#c85a46.#a07828", c44: "#dcb43c.#bea046", c45: "#463c5a.#8c6e14", c46: "#5a4678.#8c6e14" },
206 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#785a3c.#826e46", c6: "#fae678.#fae678", c7: "#dcbe3c.#dcbe3c", c8: "#be8c1e.#be8c1e", c9: "#141414.#141414", c10: "#d2e6fa.#fad2d2", c11: "#5a6478.#785a5a", c12: "#faffff.#fffafa", c13: "#fffac8.#fffac8", c14: "#6ebec8.#ff96c8", c15: "#328ca0.#d25a8c", c16: "#bec8e6.#e6c8be", c17: "#1e6e82.#aa286e", c18: "#826e5a.#826e46", c19: "#503c3c.#826e46", c20: "#64463c.#826e46", c21: "#f0dca0.#fae678", c22: "#0a0a0a.#141414", c23: "#b47846.#be8c1e", c24: "#8c5a3c.#826e46", c25: "#e6dca0.#fae678", c26: "#c8a078.#dcbe3c", c27: "#82645a.#826e46", c28: "#8c5a46.#826e46", c29: "#bea078.#dcbe3c", c30: "#783c3c.#826e46", c31: "#c85a78.#826e46", c32: "#783c46.#826e46", c33: "#e65a46.#be8c1e", c34: "#fafafa.#fffafa", c35: "#644646.#826e46", c36: "#f05a46.#be8c1e", c37: "#ffffff.#fffafa", c38: "#c8323c.#826e46", c39: "#f03c50.#be8c1e", c40: "#c84632.#be8c1e", c41: "#6e4632.#826e46", c42: "#968264.#826e46", c43: "#64503c.#826e46", c44: "#965046.#826e46", c45: "#642828.#826e46", c46: "#c8966e.#dcbe3c", c47: "#c8783c.#be8c1e", c48: "#d2783c.#be8c1e", c49: "#824628.#826e46", c50: "#dcbe8c.#fae678", c51: "#fa463c.#be8c1e", c52: "#c86e3c.#be8c1e", c53: "#f0e6aa.#fffac8", c54: "#784628.#826e46", c55: "#6e6450.#826e46", c56: "#0a0a14.#141414" },
207 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#643246.#3c46a0", c6: "#e6a0c8.#aabef0", c7: "#141414.#141414", c8: "#dc82b4.#8ca0e6", c9: "#aa6496.#7878c8", c10: "#465a78.#5a5a5a", c11: "#aabec8.#c8c8d2", c12: "#4678be.#465abe", c13: "#284678.#141e82", c14: "#6ea0f0.#6482e6", c15: "#be6e5a.#d25a3c", c16: "#ffa082.#ff966e", c17: "#325a32.#3c46a0", c18: "#0a0a0a.#141414", c19: "#821e3c.#3c46a0", c20: "#a0dc96.#c8c8d2", c21: "#82b478.#c8c8d2", c22: "#ff828c.#ff966e", c23: "#fa646e.#ff966e", c24: "#be3246.#d25a3c", c25: "#649650.#5a5a5a", c26: "#fadcaa.#aabef0", c27: "#1e5032.#141414", c28: "#b4a078.#d25a3c", c29: "#dcbe8c.#ff966e", c30: "#64463c.#3c46a0", c31: "#466e3c.#5a5a5a", c32: "#143c28.#141414", c33: "#aa1e3c.#3c46a0", c34: "#46783c.#5a5a5a", c35: "#326e50.#5a5a5a", c36: "#78aa64.#d25a3c", c37: "#507846.#5a5a5a", c38: "#1e6e46.#141e82", c39: "#78b478.#c8c8d2", c40: "#329664.#5a5a5a", c41: "#6e1e1e.#3c46a0", c42: "#fa6464.#d25a3c", c43: "#dc3c46.#d25a3c", c44: "#d2b496.#ff966e", c45: "#645046.#3c46a0", c46: "#dcbea0.#aabef0", c47: "#789632.#d25a3c", c48: "#3c4614.#141414", c49: "#b49682.#7878c8", c50: "#aad264.#c8c8d2", c51: "#96be46.#d25a3c", c52: "#aa3214.#3c46a0", c53: "#f07846.#d25a3c", c54: "#d24628.#d25a3c", c55: "#fadcb4.#aabef0", c56: "#fadcbe.#aabef0", c57: "#fafafa.#ffffff", c58: "#a08250.#d25a3c", c59: "#d2aa6e.#ff966e", c60: "#fad278.#ff966e", c61: "#fff0a0.#ff966e", c62: "#1e3214.#141414", c63: "#641414.#3c46a0" },
208 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#7896a0.#c8b464", c6: "#46648c.#96783c", c7: "#bec8c8.#f0e678", c8: "#141414.#141414", c9: "#dce6dc.#ffffa0", c10: "#3c3c50.#6e4614", c11: "#ff00ff.#ff00ff", c12: "#d2503c.#d2503c", c13: "#9696a0.#c8b464", c14: "#a01e3c.#d2503c", c15: "#c83250.#d2503c", c16: "#d23250.#d2503c", c17: "#0a0a0a.#141414", c18: "#646450.#6e4614", c19: "#aab4b4.#f0e678", c20: "#787878.#c8b464", c21: "#282828.#141414", c22: "#dcdcd2.#ffffa0", c23: "#bebebe.#f0e678", c24: "#6e1428.#6e4614", c25: "#82643c.#d2503c", c26: "#e6aa46.#d2503c", c27: "#8c3c50.#d2503c", c28: "#dc325a.#d2503c", c29: "#ffd264.#f0e678", c30: "#821e32.#6e4614", c31: "#ffe6b4.#ffffa0", c32: "#5a5a5a.#6e4614", c33: "#1e1e28.#141414", c34: "#823c3c.#6e4614", c35: "#3c3c3c.#6e4614", c36: "#dcdcdc.#ffffa0", c37: "#1e1e1e.#141414", c38: "#6e503c.#6e4614", c39: "#28323c.#6e4614", c40: "#fae6d2.#ffffa0", c41: "#b4965a.#d2503c", c42: "#5a503c.#6e4614", c43: "#6e7878.#96783c", c44: "#82828c.#c8b464", c45: "#141e1e.#141414", c46: "#aaaaaa.#f0e678" },
209 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#465a5a.#a02850", c7: "#f06e78.#9696b4", c8: "#aa323c.#646482", c9: "#788282.#c85a8c", c10: "#ffaab4.#c8c8e6", c11: "#ffc8c8.#dcdcff", c12: "#dcdcdc.#dcdcdc", c13: "#78aae6.#f0a0c8", c14: "#b4dcfa.#f0bee6", c15: "#5a320a.#6e0032", c16: "#be6e0a.#a02828", c17: "#ffb450.#ff8228", c18: "#3c323c.#a02850", c19: "#787882.#c85a8c", c20: "#5a5064.#a02850", c21: "#0a0a0a.#141414", c22: "#b4aabe.#dcdcdc", c23: "#a0a0a0.#c85a8c", c24: "#1e1e28.#141414", c25: "#aa283c.#646482", c26: "#e66478.#9696b4", c27: "#503c0a.#6e0032", c28: "#c83c5a.#646482", c29: "#785a28.#6e0032", c30: "#d2a03c.#ff8228", c31: "#f0be5a.#ff8228", c32: "#a07814.#a02828", c33: "#827896.#c85a8c", c34: "#a0a0b4.#f0a0c8", c35: "#6e5a78.#c85a8c", c36: "#463246.#a02850", c37: "#3c2846.#a02850", c38: "#b4b4be.#dcdcdc", c39: "#aa2832.#646482", c40: "#c8465a.#646482", c41: "#501e0a.#6e0032", c42: "#dcb432.#ff8228", c43: "#a0640a.#a02828", c44: "#c88c28.#a02828", c45: "#a06414.#a02828", c46: "#8c4614.#646482", c47: "#a02832.#646482", c48: "#dcb43c.#ff8228", c49: "#c85064.#9696b4", c50: "#281e28.#141414" },
210 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#643c5a.#78463c", c7: "#d2aad2.#e6c8b4", c8: "#d2aad2.#c8aa96", c9: "#aa82aa.#be9696", c10: "#8c5a82.#a06e5a", c11: "#d2d2dc.#d2d2dc", c12: "#6e1e14.#823c00", c13: "#6e7878.#788282", c14: "#3c3c46.#3c4650", c15: "#28aabe.#788282", c16: "#5ac8be.#be9696", c17: "#783c1e.#823c00", c18: "#c84614.#823c00", c19: "#f07828.#a06e5a", c20: "#28b4c8.#788282", c21: "#5ac8dc.#be9696", c22: "#dc461e.#823c00", c23: "#ffaa82.#e6c8b4", c24: "#3278f0.#788282", c25: "#0a3caa.#3c4650", c26: "#befaf0.#d2d2dc", c27: "#bebebe.#e6c8b4", c28: "#ffdcd2.#d2d2dc", c29: "#faaa82.#e6c8b4", c30: "#b4b4b4.#e6c8b4", c31: "#f0f0f0.#ffffff", c32: "#0a14aa.#3c4650", c33: "#0a64f0.#788282", c34: "#a0f0e6.#d2d2dc", c35: "#0a46aa.#3c4650", c36: "#464650.#3c4650" },
211 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#144650.#82288c", c6: "#78aab4.#f096e6", c7: "#141414.#141414", c8: "#3c8296.#c86ebe", c9: "#3c6464.#a03c8c", c10: "#c8c8c8.#bec8c8", c11: "#960000.#960000", c12: "#ffa096.#ffa096", c13: "#d25064.#d25064", c14: "#dcdc96.#fac8ff", c15: "#c8c878.#faaaff", c16: "#a0aa6e.#dca0e6", c17: "#6e5032.#b478aa", c18: "#468c64.#a03c8c", c19: "#32643c.#a03c8c", c20: "#468264.#a03c8c", c21: "#285046.#82288c", c22: "#5ab478.#c86ebe", c23: "#fafffa.#ffffff", c24: "#d2f0c8.#bec8c8", c25: "#50a078.#c86ebe", c26: "#3c8c5a.#a03c8c", c27: "#3c7850.#a03c8c", c28: "#0a5a28.#82288c", c29: "#3caa6e.#c86ebe", c30: "#f0faf0.#ffffff", c31: "#dc6464.#d25064", c32: "#a05050.#d25064", c33: "#5a8264.#a03c8c", c34: "#467850.#a03c8c", c35: "#0a0a0a.#141414", c36: "#ffa0a0.#ffa096", c37: "#a0be8c.#dca0e6", c38: "#82b482.#dca0e6", c39: "#783c3c.#b478aa", c40: "#327846.#a03c8c", c41: "#50b478.#c86ebe", c42: "#82c88c.#f096e6", c43: "#82dca0.#f096e6", c44: "#1edc64.#c86ebe", c45: "#14b450.#a03c8c", c46: "#dcbe78.#faaaff", c47: "#28643c.#82288c", c48: "#46a064.#c86ebe", c49: "#6ec846.#dca0e6", c50: "#c8a064.#dca0e6", c51: "#b4c828.#dca0e6", c52: "#d23c3c.#d25064", c53: "#aa1e1e.#960000", c54: "#a07850.#dca0e6", c55: "#0a963c.#a03c8c", c56: "#141e14.#141414", c57: "#642828.#b478aa", c58: "#a0be96.#dca0e6", c59: "#6e1e1e.#b478aa", c60: "#5a2828.#b478aa", c61: "#c85050.#d25064", c62: "#825a1e.#b478aa", c63: "#645032.#b478aa", c64: "#f0b478.#ffa096", c65: "#d28c50.#d25064", c66: "#28140a.#141414", c67: "#3c1e14.#141414" },
212 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#642828.#5a7814", c6: "#fa6e6e.#dcff6e", c7: "#141414.#141414", c8: "#3c3c46.#006e14", c9: "#d23c3c.#c8e632", c10: "#b4b4c8.#c8d2c8", c11: "#9696a0.#46b46e", c12: "#a02828.#96a01e", c13: "#dcc814.#ffd214", c14: "#a06e1e.#be8c28", c15: "#8c5a3c.#be8c28", c16: "#dcaa32.#ffd214", c17: "#ffe650.#ffd214", c18: "#fffabe.#ffffff", c19: "#0a0a0a.#141414", c20: "#643c82.#006e14", c21: "#b46edc.#c8d2c8", c22: "#9646be.#46b46e", c23: "#c8c8d2.#c8d2c8", c24: "#be3264.#c8e632", c25: "#822846.#5a7814", c26: "#ff7878.#dcff6e", c27: "#96783c.#be8c28", c28: "#fae6a0.#c8d2c8", c29: "#d2be6e.#46b46e", c30: "#fafadc.#ffffff", c31: "#646478.#006e14", c32: "#fa325a.#c8e632", c33: "#bebec8.#c8d2c8", c34: "#fafafa.#ffffff", c35: "#8c6446.#be8c28" },
213 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#be8c28.#be8c28", c6: "#ffff5a.#ffff5a", c7: "#f0c846.#f0c846", c8: "#785014.#785014", c9: "#141414.#141414", c10: "#821e00.#0028aa", c11: "#6e643c.#143c8c", c12: "#d2c8b4.#b4c8fa", c13: "#beaa96.#82a0e6", c14: "#b43228.#0a50d2", c15: "#e6463c.#328cff", c16: "#503c3c.#143c8c", c17: "#5a321e.#785014", c18: "#786e64.#143c8c", c19: "#a08278.#82a0e6", c20: "#78463c.#143c8c", c21: "#a05050.#0a50d2", c22: "#e67878.#82a0e6", c23: "#dc6464.#328cff", c24: "#8c4650.#143c8c", c25: "#ffc8b4.#b4c8fa", c26: "#f09696.#82a0e6", c27: "#ffaaaa.#b4c8fa", c28: "#ffd2be.#b4c8fa", c29: "#464646.#143c8c", c30: "#d278a0.#82a0e6", c31: "#503246.#143c8c", c32: "#a05a5a.#143c8c", c33: "#50463c.#143c8c", c34: "#e6786e.#328cff", c35: "#be5a78.#328cff", c36: "#dc3c5a.#328cff", c37: "#463c3c.#143c8c", c38: "#0a0a0a.#141414", c39: "#786464.#143c8c", c40: "#ffaaa0.#b4c8fa", c41: "#d2788c.#82a0e6", c42: "#f03c3c.#328cff", c43: "#b43c28.#0a50d2", c44: "#ff6e28.#328cff", c45: "#828282.#82a0e6", c46: "#c8c8c8.#b4c8fa", c47: "#969696.#82a0e6", c48: "#bebebe.#b4c8fa", c49: "#f050ff.#b4c8fa", c50: "#f0a0ff.#b4c8fa", c51: "#78d2ff.#b4c8fa", c52: "#640af0.#143c8c", c53: "#a064ff.#82a0e6", c54: "#be6e78.#82a0e6", c55: "#fafafa.#ffffff", c56: "#960a1e.#0028aa", c57: "#0a78f0.#143c8c", c58: "#aa646e.#143c8c", c59: "#825078.#143c8c" },
214 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#96beff.#ffa0ff", c7: "#323c64.#8c2896", c8: "#6e96c8.#e682dc", c9: "#3c6496.#b450c8", c10: "#6e5a1e.#8c6e00", c11: "#ffff8c.#ffff8c", c12: "#bea032.#c8a028", c13: "#646464.#6e6e6e", c14: "#a0a0a0.#a0a0a0", c15: "#be8c50.#c8a028", c16: "#966432.#8c6e00", c17: "#aa965a.#c8a028", c18: "#6e5046.#6e6e6e", c19: "#e6dcc8.#ffffff", c20: "#e6dcd2.#ffffff", c21: "#6e5a3c.#8c6e00", c22: "#c8b48c.#a0a0a0", c23: "#c8b496.#a0a0a0", c24: "#0a0a0a.#141414", c25: "#6e503c.#8c6e00", c26: "#14463c.#8c2896", c27: "#6ea050.#6e6e6e", c28: "#467846.#6e6e6e", c29: "#503228.#8c6e00", c30: "#6e4632.#8c6e00", c31: "#144614.#141414", c32: "#3c783c.#6e6e6e", c33: "#50a046.#6e6e6e", c34: "#e6e6e6.#ffffff", c35: "#503c28.#8c6e00", c36: "#966e3c.#8c6e00", c37: "#faf0f0.#ffffff", c38: "#e6820a.#c8a028", c39: "#aa4664.#6e6e6e", c40: "#aa6e14.#c8a028", c41: "#d27882.#a0a0a0", c42: "#78503c.#8c6e00", c43: "#e6b478.#ffff8c", c44: "#966e46.#6e6e6e", c45: "#dc8c1e.#c8a028", c46: "#3c281e.#141414", c47: "#783246.#8c6e00", c48: "#dc9696.#a0a0a0", c49: "#823246.#8c6e00", c50: "#bebea0.#a0a0a0", c51: "#282828.#141414", c52: "#6e6e5a.#6e6e6e", c53: "#c8be8c.#a0a0a0", c54: "#aa8c5a.#c8a028", c55: "#dcdcc8.#ffffff", c56: "#646450.#6e6e6e", c57: "#beb48c.#a0a0a0", c58: "#787864.#6e6e6e", c59: "#b49678.#a0a0a0", c60: "#5a503c.#8c6e00", c61: "#1e3c1e.#141414", c62: "#327832.#8c6e00", c63: "#143c14.#141414", c64: "#5a5a46.#6e6e6e", c65: "#c86e82.#a0a0a0", c66: "#8c643c.#8c6e00", c67: "#ffe6d2.#ffffff", c68: "#50503c.#8c6e00", c69: "#fafafa.#ffffff", c70: "#dc820a.#c8a028", c71: "#6e5032.#8c6e00", c72: "#fadcc8.#ffffff", c73: "#c8783c.#c8a028", c74: "#aa6414.#8c6e00", c75: "#d28250.#c8a028", c76: "#f0be8c.#ffff8c", c77: "#8c6e50.#6e6e6e", c78: "#32281e.#141414", c79: "#f0b48c.#ffff8c", c80: "#dc9664.#c8a028", c81: "#e6965a.#c8a028", c82: "#3c321e.#141414", c83: "#8c283c.#8c6e00", c84: "#c8aa96.#a0a0a0", c85: "#463c28.#8c6e00", c86: "#645a46.#6e6e6e", c87: "#b49650.#c8a028", c88: "#e6e6d2.#ffffff", c89: "#d2b48c.#a0a0a0", c90: "#6e5a46.#6e6e6e", c91: "#a06e50.#6e6e6e", c92: "#3cb450.#6e6e6e", c93: "#e68c0a.#c8a028", c94: "#b4aa8c.#a0a0a0" },
215 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#821e50.#a06e14", c6: "#c82878.#dcaa5a", c7: "#1e325a.#a01446", c8: "#fa5078.#ffe664", c9: "#326478.#c850a0", c10: "#3c96aa.#f0a0c8", c11: "#000000.#000000", c12: "#3c82a0.#e678a0", c13: "#a0783c.#78aaf0", c14: "#dcc878.#c8faff", c15: "#bebec8.#bebec8", c16: "#464646.#5a5a5a", c17: "#fafaff.#fafaff", c18: "#8cc8c8.#ffc8f0", c19: "#8c323c.#a06e14", c20: "#50281e.#5a5a5a", c21: "#1e1e28.#a01446", c22: "#14141e.#000000", c23: "#0a0a0a.#000000", c24: "#141414.#000000", c25: "#8c3246.#a06e14", c26: "#c85050.#dcaa5a", c27: "#e67878.#ffe664", c28: "#be5050.#78aaf0", c29: "#502828.#5a5a5a", c30: "#3c5aa0.#e678a0", c31: "#3c3c5a.#5a5a5a", c32: "#787882.#e678a0", c33: "#ffffff.#fafaff", c34: "#b4b4b4.#bebec8", c35: "#dc786e.#ffe664", c36: "#505064.#5a5a5a", c37: "#50505a.#5a5a5a", c38: "#32141e.#000000", c39: "#3c1e28.#5a5a5a", c40: "#505050.#5a5a5a", c41: "#fafafa.#fafaff", c42: "#dc788c.#ffe664", c43: "#964664.#a06e14", c44: "#a04678.#dcaa5a", c45: "#a05a6e.#78aaf0", c46: "#8c968c.#ffc8f0", c47: "#f08ca0.#ffe664", c48: "#824650.#a06e14", c49: "#bec8c8.#bebec8", c50: "#e67896.#ffe664", c51: "#8c8c8c.#e678a0", c52: "#b4bec8.#bebec8", c53: "#bec8d2.#bebec8", c54: "#be4650.#dcaa5a", c55: "#dc7878.#ffe664", c56: "#f08c8c.#ffe664", c57: "#5a645a.#5a5a5a", c58: "#5a323c.#5a5a5a", c59: "#dcdcdc.#bebec8", c60: "#506e8c.#e678a0", c61: "#6e503c.#5a5a5a", c62: "#141428.#000000", c63: "#c8be82.#c8faff", c64: "#283246.#a01446", c65: "#1e1e32.#a01446", c66: "#5a1e32.#5a5a5a", c67: "#461e1e.#5a5a5a", c68: "#5a1428.#a06e14", c69: "#827850.#78aaf0", c70: "#1e1428.#000000", c71: "#5a1e28.#5a5a5a", c72: "#f07878.#ffe664", c73: "#3c0a14.#000000", c74: "#465064.#5a5a5a", c75: "#5a5a5a.#5a5a5a", c76: "#828c8c.#e678a0", c77: "#280a0a.#000000", c78: "#282832.#a01446", c79: "#be6450.#78aaf0", c80: "#beb4b4.#bebec8", c81: "#f0e696.#c8faff", c82: "#d27882.#ffe664", c83: "#8c8c96.#ffc8f0", c84: "#d2d2d2.#bebec8", c85: "#6e1414.#a06e14", c86: "#6e4646.#5a5a5a", c87: "#ffa0a0.#c8faff", c88: "#be2846.#dcaa5a", c89: "#dc96a0.#c8faff", c90: "#beb43c.#78aaf0" },
216 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#6e3c14.#3c823c", c6: "#b4641e.#64aa6e", c7: "#ff823c.#a0f082", c8: "#dc7832.#8cd278", c9: "#141414.#141414", c10: "#dcc8a0.#d2fa96", c11: "#ffe6a0.#ffffb4", c12: "#6e6e78.#6e6e78", c13: "#f0aa50.#ffe66e", c14: "#dcdcdc.#dcdcdc", c15: "#b4b4be.#b4b4be", c16: "#3c3c3c.#3c823c", c17: "#3296aa.#6e6e78", c18: "#284646.#141414", c19: "#1e6e78.#6e6e78", c20: "#464650.#6e6e78", c21: "#b48232.#64aa6e", c22: "#ffbe32.#ffe66e", c23: "#6e5a1e.#3c823c", c24: "#1e1e1e.#141414", c25: "#ff321e.#8cd278", c26: "#a01e3c.#3c823c", c27: "#1e3c46.#141414", c28: "#0a96c8.#6e6e78", c29: "#b4dce6.#dcdcdc", c30: "#82c8d2.#b4b4be", c31: "#0a5078.#6e6e78", c32: "#0a0a0a.#141414", c33: "#d2a03c.#ffe66e", c34: "#787878.#6e6e78", c35: "#ffe678.#ffffb4", c36: "#b4beb4.#b4b4be", c37: "#6e5a32.#3c823c", c38: "#0a648c.#6e6e78", c39: "#fa321e.#8cd278", c40: "#a00a28.#3c823c", c41: "#dcaa50.#ffe66e", c42: "#fae68c.#ffffb4", c43: "#64646e.#6e6e78", c44: "#969696.#b4b4be", c45: "#b4b4b4.#b4b4be", c46: "#fafafa.#ffffff" },
217 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#643c28.#50a03c", c6: "#96501e.#78be00", c7: "#3c2814.#146e00", c8: "#78788c.#78788c", c9: "#141414.#141414", c10: "#be783c.#96dc00", c11: "#fff082.#faffa0", c12: "#dcdcdc.#dcdcdc", c13: "#b4b4be.#b4b4be", c14: "#c8a046.#c8b450", c15: "#fac864.#fadc78", c16: "#6e503c.#50a03c", c17: "#ffdc50.#fadc78", c18: "#0a0a0a.#141414", c19: "#14283c.#141414", c20: "#c8aa0a.#c8b450", c21: "#3c50b4.#78788c", c22: "#283c78.#50a03c", c23: "#3c3c3c.#50a03c", c24: "#a082a0.#78788c", c25: "#786e6e.#78788c", c26: "#a08214.#96dc00", c27: "#ffe61e.#fadc78", c28: "#aa8caa.#b4b4be", c29: "#c8aa32.#c8b450", c30: "#aa8214.#96dc00", c31: "#64648c.#78788c", c32: "#fafafa.#ffffff", c33: "#505a78.#78788c", c34: "#dcdcf0.#dcdcdc" },
218 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#781400.#505046", c7: "#ffa032.#dcdcd2", c8: "#fa6432.#b4b4aa", c9: "#c83c14.#828278", c10: "#ffd278.#ffd278", c11: "#faa000.#faa000", c12: "#5a5a5a.#505046", c13: "#323232.#141414", c14: "#0a0a0a.#141414", c15: "#b4bebe.#ffd278", c16: "#82828c.#ffd278", c17: "#145032.#141414", c18: "#1e8c50.#141414", c19: "#0ab45a.#141414", c20: "#0a5032.#141414", c21: "#0a4632.#141414", c22: "#0a8250.#141414", c23: "#0aa064.#141414", c24: "#0a6446.#141414", c25: "#0a9664.#141414", c26: "#143c28.#141414", c27: "#3c3c3c.#141414", c28: "#a0a0a0.#ffd278", c29: "#6e6e6e.#828278", c30: "#1e1e1e.#141414", c31: "#c8c8c8.#ffffff", c32: "#f0be46.#dcdcd2", c33: "#c88c28.#dcdcd2", c34: "#bebec8.#ffd278", c35: "#5a6464.#505046", c36: "#d2821e.#b4b4aa", c37: "#fabe46.#dcdcd2", c38: "#e6aa32.#dcdcd2", c39: "#ffd264.#ffd278" },
219 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#dc5a1e.#c864be", c6: "#ff8246.#e696dc", c7: "#ffc800.#ffc800", c8: "#fff0a0.#fff0a0", c9: "#961e00.#963c8c", c10: "#646464.#a03c14", c11: "#3c3c3c.#780a00", c12: "#141414.#141414", c13: "#828282.#c86e28", c14: "#aaaaaa.#ff8c14", c15: "#a06e5a.#a06e5a", c16: "#ffbe6e.#fabeff", c17: "#3c2878.#780a00", c18: "#7850e6.#c86e28", c19: "#3c28be.#a03c14", c20: "#a08ce6.#ff8c14", c21: "#c8befa.#ff8c14", c22: "#5014be.#a03c14", c23: "#ffffff.#fff0a0", c24: "#6e78f0.#ff8c14", c25: "#3c64d2.#c86e28", c26: "#3246be.#a03c14", c27: "#7882fa.#ff8c14", c28: "#c8dcff.#ff8c14", c29: "#3c1e64.#780a00", c30: "#8cb4ff.#ff8c14", c31: "#5a5adc.#c86e28", c32: "#0a0a0a.#141414", c33: "#787878.#c86e28", c34: "#c8c8c8.#ff8c14", c35: "#e6e6ff.#fff0a0", c36: "#e6e6f0.#fff0a0", c37: "#b4b4d2.#ff8c14", c38: "#7882b4.#c86e28", c39: "#827882.#c86e28", c40: "#786e0a.#963c8c", c41: "#ffe61e.#ffc800", c42: "#aac8fa.#ff8c14", c43: "#a02832.#963c8c", c44: "#b4a0b4.#ff8c14", c45: "#e65082.#e696dc", c46: "#c88c0a.#c864be", c47: "#646e6e.#a03c14", c48: "#323232.#780a00", c49: "#dcdcdc.#fff0a0", c50: "#5a5a5a.#a03c14", c51: "#b4b4b4.#ff8c14", c52: "#78640a.#963c8c", c53: "#fad23c.#fabeff", c54: "#463c82.#a03c14", c55: "#7878be.#c86e28", c56: "#3c46be.#a03c14", c57: "#8caad2.#ff8c14", c58: "#be5082.#a06e5a" },
220 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c320a.#506e50", c6: "#c8a078.#bed2aa", c7: "#141414.#141414", c8: "#a0786e.#a0b496", c9: "#784632.#789678", c10: "#3c2800.#32463c", c11: "#fa8ca0.#ffbe82", c12: "#b47878.#dc8c50", c13: "#965a5a.#b46428", c14: "#327896.#a0b496", c15: "#6ebedc.#bed2aa", c16: "#14506e.#141414", c17: "#46a0b4.#a0b496", c18: "#be7846.#a0b496", c19: "#dc7850.#dc8c50", c20: "#50505a.#789678", c21: "#0a0a0a.#141414", c22: "#ff9664.#bed2aa", c23: "#323232.#506e50", c24: "#828282.#a0b496", c25: "#464646.#789678", c26: "#ffffff.#ffbe82", c27: "#dcd2f0.#ffbe82", c28: "#1e1e1e.#141414", c29: "#a08cb4.#dc8c50", c30: "#a05a32.#b46428", c31: "#b4b4d2.#bed2aa", c32: "#6e6e64.#b46428", c33: "#aaa0be.#bed2aa", c34: "#c8c8c8.#ffbe82", c35: "#829696.#a0b496", c36: "#a08228.#b46428", c37: "#785ad2.#a0b496", c38: "#fff03c.#bed2aa", c39: "#c8c8d2.#ffbe82", c40: "#826ee6.#dc8c50", c41: "#c8befa.#ffbe82", c42: "#968caa.#dc8c50", c43: "#dce6f0.#ffbe82", c44: "#9682fa.#dc8c50", c45: "#786e0a.#789678", c46: "#e6e6f0.#ffbe82", c47: "#f0ff0a.#bed2aa", c48: "#ffe61e.#bed2aa", c49: "#bea0ff.#ffbe82", c50: "#1e2828.#141414", c51: "#465050.#789678" },
221 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#786450.#c8c846", c6: "#3c3c32.#826e00", c7: "#c8a078.#faffa0", c8: "#aa825a.#e6f078", c9: "#96785a.#d2d264", c10: "#141414.#141414", c11: "#78323c.#aa5a14", c12: "#fa96a0.#ffbe82", c13: "#beb4b4.#b4bebe", c14: "#c8d2d2.#dce6e6", c15: "#b46478.#dc8c50", c16: "#46463c.#646e78", c17: "#7850e6.#dc8c50", c18: "#3c28b4.#646e78", c19: "#aaa0fa.#dce6e6", c20: "#323232.#826e00", c21: "#5a5a5a.#c8c846", c22: "#0a0a0a.#141414", c23: "#461ea0.#646e78", c24: "#7850f0.#dc8c50", c25: "#5a46a0.#c8c846", c26: "#788c8c.#d2d264", c27: "#463c78.#646e78", c28: "#aaa0f0.#dce6e6", c29: "#ffe61e.#faffa0", c30: "#464646.#646e78", c31: "#827878.#d2d264", c32: "#fffad2.#ffffff", c33: "#c8b414.#e6f078", c34: "#96aab4.#b4bebe", c35: "#e6c8fa.#dce6e6", c36: "#d2d2f0.#dce6e6", c37: "#5a5a64.#c8c846", c38: "#fffab4.#dce6e6", c39: "#fae632.#faffa0", c40: "#505a5a.#646e78", c41: "#aaaabe.#b4bebe" },
222 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#ffc8e6.#aaffff", c7: "#be0046.#3c50a0", c8: "#ffa0c8.#78e6ff", c9: "#e66496.#6eaac8", c10: "#fa78b4.#6ec8e6", c11: "#dce6fa.#e6e6f0", c12: "#be0046.#be0046", c13: "#aac8dc.#aabec8", c14: "#5a78aa.#6478a0", c15: "#500a0a.#141414", c16: "#0a0a0a.#141414", c17: "#c80a0a.#3c50a0", c18: "#8c0a0a.#3c50a0", c19: "#3c3c46.#141414", c20: "#505064.#6478a0", c21: "#3c3c0a.#141414", c22: "#322814.#141414", c23: "#bec850.#6eaac8", c24: "#c8be28.#6eaac8", c25: "#28283c.#141414", c26: "#a0aa14.#6eaac8", c27: "#fae63c.#78e6ff", c28: "#646e14.#141414", c29: "#783c46.#3c50a0", c30: "#32323c.#141414", c31: "#501414.#141414", c32: "#5a4614.#141414", c33: "#781414.#3c50a0", c34: "#e62828.#3c50a0", c35: "#281e28.#141414", c36: "#3c323c.#141414", c37: "#5a5050.#6478a0", c38: "#a0a0a0.#aabec8", c39: "#50500a.#141414", c40: "#46140a.#141414", c41: "#dc0a0a.#3c50a0", c42: "#96961e.#6eaac8", c43: "#781e14.#3c50a0", c44: "#b4b432.#6eaac8", c45: "#5a460a.#141414", c46: "#dcdc32.#6eaac8", c47: "#8c8c14.#3c50a0", c48: "#828c14.#6478a0", c49: "#b4aa32.#6eaac8", c50: "#282832.#141414", c51: "#46465a.#6478a0", c52: "#786e14.#141414", c53: "#140a0a.#141414", c54: "#46460a.#141414", c55: "#fffae6.#ffffff", c56: "#be505a.#6eaac8", c57: "#a0aa32.#6eaac8", c58: "#bec85a.#6eaac8", c59: "#e68282.#6eaac8", c60: "#fafafa.#ffffff", c61: "#646414.#141414", c62: "#464614.#141414", c63: "#faffff.#ffffff", c64: "#6e6e78.#6478a0", c65: "#64640a.#141414", c66: "#46500a.#141414", c67: "#962828.#3c50a0", c68: "#3c460a.#141414", c69: "#d24646.#3c50a0", c70: "#646e1e.#141414", c71: "#646e0a.#141414" },
223 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#648ca0.#a05abe", c6: "#285a82.#7832a0", c7: "#82c8b4.#c8a0c8", c8: "#d2fafa.#f0c8ff", c9: "#b4dcd2.#d2aaf0", c10: "#141414.#141414", c11: "#8caabe.#be82d2", c12: "#782828.#8c0000", c13: "#aaaab4.#aaa0b4", c14: "#787882.#787882", c15: "#821414.#8c0000", c16: "#ff5028.#8c0000", c17: "#ff501e.#8c0000", c18: "#d2323c.#8c0000", c19: "#f03c32.#8c0000", c20: "#f04632.#8c0000", c21: "#dc3246.#8c0000", c22: "#ff825a.#aaa0b4", c23: "#ffaaa0.#aaa0b4", c24: "#dcd2d2.#d2aaf0", c25: "#0a0a0a.#141414", c26: "#faaa96.#aaa0b4", c27: "#b4aabe.#aaa0b4", c28: "#dcdcdc.#d2aaf0", c29: "#ffaa96.#aaa0b4", c30: "#dc3c0a.#8c0000", c31: "#5a5050.#8c0000", c32: "#aa140a.#8c0000", c33: "#8c8282.#787882", c34: "#ff5a3c.#8c0000", c35: "#5a0a0a.#8c0000", c36: "#ff965a.#aaa0b4", c37: "#e61e28.#8c0000", c38: "#fff0a0.#d2aaf0", c39: "#967878.#787882", c40: "#f0f0f0.#ffffff", c41: "#463c3c.#8c0000", c42: "#beb4b4.#aaa0b4" },
224 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#503c14.#787800", c6: "#5a1e28.#825a00", c7: "#f0e6aa.#dcfa50", c8: "#c8a05a.#beb428", c9: "#a03214.#aa823c", c10: "#e65a46.#c8b446", c11: "#141414.#141414", c12: "#5a5a5a.#5a5a5a", c13: "#c8a014.#beb428", c14: "#5a460a.#787800", c15: "#ffe63c.#beb428", c16: "#fffab4.#dcfa50", c17: "#6e5a14.#787800", c18: "#bea014.#beb428", c19: "#fadc3c.#beb428", c20: "#0a0a0a.#141414", c21: "#faf0b4.#dcfa50", c22: "#e6c81e.#beb428", c23: "#e6c850.#beb428", c24: "#645a14.#787800", c25: "#3c3c50.#5a5a5a", c26: "#5a6478.#5a5a5a", c27: "#6e6e64.#5a5a5a", c28: "#5a6e78.#5a5a5a", c29: "#28281e.#141414", c30: "#c8c8d2.#dcfa50", c31: "#b43c6e.#c8b446", c32: "#e66496.#c8b446", c33: "#646464.#5a5a5a", c34: "#fafafa.#ffffff", c35: "#bebed2.#dcfa50", c36: "#c8c8dc.#dcfa50", c37: "#b43c64.#c8b446", c38: "#dc648c.#c8b446", c39: "#c81450.#c8b446", c40: "#c86e82.#beb428", c41: "#78786e.#5a5a5a", c42: "#3c4650.#5a5a5a", c43: "#d2d2dc.#dcfa50", c44: "#d21450.#c8b446", c45: "#c87882.#beb428" },
225 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5a5a5a.#785a3c", c6: "#82828c.#a0826e", c7: "#141414.#141414", c8: "#aaaab4.#c8be8c", c9: "#fa5a3c.#f078d2", c10: "#be2800.#be32aa", c11: "#c88c28.#c88c28", c12: "#783c00.#783c00", c13: "#ffc83c.#ffc83c", c14: "#d2d2d2.#e6e6a0", c15: "#781400.#961478", c16: "#dc4628.#d25abe", c17: "#28788c.#785a3c", c18: "#82c8c8.#c8be8c", c19: "#14506e.#785a3c", c20: "#5aa0a0.#a0826e", c21: "#145064.#785a3c", c22: "#14141e.#141414", c23: "#0a0a0a.#141414", c24: "#0a3c50.#141414", c25: "#145a78.#785a3c", c26: "#1e3c50.#785a3c", c27: "#fff0a0.#e6e6a0", c28: "#dcc896.#e6e6a0", c29: "#beaa78.#c8be8c", c30: "#a07828.#c88c28", c31: "#468c82.#a0826e", c32: "#6e3c0a.#783c00", c33: "#a0d2dc.#e6e6a0", c34: "#c8a050.#c88c28", c35: "#143c5a.#785a3c", c36: "#dc1414.#be32aa", c37: "#e66428.#f078d2", c38: "#285050.#785a3c", c39: "#503c0a.#783c00", c40: "#ffdc50.#ffc83c", c41: "#ffa014.#ffc83c", c42: "#506e78.#785a3c", c43: "#e6c846.#ffc83c", c44: "#faf050.#ffc83c", c45: "#0a6478.#785a3c", c46: "#1e788c.#785a3c", c47: "#0a5064.#785a3c", c48: "#d2b478.#c8be8c", c49: "#b4a05a.#c88c28", c50: "#286e64.#785a3c", c51: "#82d2dc.#c8be8c", c52: "#0a4650.#141414", c53: "#286e78.#785a3c", c54: "#82c8d2.#c8be8c", c55: "#dcd296.#e6e6a0", c56: "#141e1e.#141414", c57: "#6e460a.#783c00", c58: "#aa9650.#c88c28" },
226 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#5a6edc.#2864dc", c7: "#465096.#1450be", c8: "#dcc8e6.#c8dcff", c9: "#aaa0c8.#a0aae6", c10: "#323c5a.#0a3ca0", c11: "#505a6e.#5a5a78", c12: "#aab4c8.#b4c8ff", c13: "#781e0a.#141414", c14: "#3c0a0a.#141414", c15: "#dc6e28.#5a5a78", c16: "#dc7828.#5a5a78", c17: "#be4628.#5a5a78", c18: "#be5028.#5a5a78", c19: "#0a140a.#141414", c20: "#0a0a0a.#141414", c21: "#ff965a.#a0aae6", c22: "#fabe78.#b4c8ff", c23: "#6e1e0a.#141414", c24: "#b44628.#5a5a78", c25: "#5a320a.#141414", c26: "#e6966e.#a0aae6", c27: "#fa8c5a.#a0aae6", c28: "#a0783c.#5a5a78", c29: "#825032.#5a5a78", c30: "#be785a.#5a5a78", c31: "#dc8c5a.#a0aae6", c32: "#b46450.#5a5a78", c33: "#fab48c.#c8dcff", c34: "#b47850.#5a5a78", c35: "#e69664.#a0aae6", c36: "#dc5a3c.#5a5a78", c37: "#6e3c28.#0a3ca0", c38: "#d28264.#a0aae6", c39: "#643c14.#0a3ca0", c40: "#ffe6b4.#c8dcff", c41: "#a0503c.#5a5a78", c42: "#e6786e.#a0aae6", c43: "#462814.#141414", c44: "#ffdc96.#c8dcff", c45: "#fadcb4.#c8dcff", c46: "#e6c882.#b4c8ff", c47: "#32140a.#141414", c48: "#bec8d2.#b4c8ff", c49: "#788c96.#a0aae6", c50: "#fafaff.#ffffff", c51: "#78320a.#141414", c52: "#c8e6f0.#c8dcff", c53: "#aa5a0a.#5a5a78", c54: "#4678aa.#1450be", c55: "#96bed2.#b4c8ff", c56: "#508ca0.#1450be", c57: "#b4785a.#5a5a78", c58: "#faffff.#ffffff", c59: "#c87828.#5a5a78", c60: "#648278.#5a5a78", c61: "#b4c8c8.#b4c8ff", c62: "#46645a.#5a5a78", c63: "#8caaa0.#a0aae6" },
227 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#7896be.#a09678", c6: "#dcf0ff.#f0f0c8", c7: "#325078.#50461e", c8: "#bec8e6.#e6dcb4", c9: "#a0b4d2.#c8b4a0", c10: "#141414.#141414", c11: "#961414.#1e7800", c12: "#c83246.#468c0a", c13: "#ff8296.#96f05a", c14: "#6478aa.#787850", c15: "#f05a64.#5ac83c", c16: "#c89600.#c89600", c17: "#ffdc00.#ffdc00", c18: "#82141e.#c8321e", c19: "#bebebe.#c8b4a0", c20: "#fafafa.#ffffff", c21: "#5a5a5a.#50461e", c22: "#787878.#787850", c23: "#6e7882.#787850", c24: "#0a0a0a.#141414", c25: "#c8c8c8.#e6dcb4", c26: "#781e3c.#c8321e", c27: "#dc3c78.#5ac83c", c28: "#963250.#468c0a", c29: "#3c3c3c.#50461e", c30: "#282828.#141414", c31: "#963264.#468c0a", c32: "#faaac8.#96f05a", c33: "#f05aa0.#96f05a", c34: "#be4682.#5ac83c", c35: "#1e1e1e.#141414", c36: "#323232.#141414", c37: "#464646.#50461e", c38: "#6e6e6e.#787850", c39: "#c8c8b4.#e6dcb4", c40: "#6e2846.#c8321e", c41: "#ffa0dc.#96f05a", c42: "#e65096.#5ac83c", c43: "#823246.#c8321e", c44: "#a03c64.#468c0a", c45: "#465050.#50461e", c46: "#dc6482.#5ac83c", c47: "#646e78.#787850", c48: "#be2864.#468c0a", c49: "#283232.#141414", c50: "#a0aaaa.#c8b4a0", c51: "#c8d2d2.#e6dcb4", c52: "#281e1e.#141414", c53: "#fafaff.#ffffff", c54: "#5a5050.#50461e", c55: "#46323c.#50461e", c56: "#dcdcf0.#f0f0c8", c57: "#d2d2dc.#e6dcb4", c58: "#5a5a64.#50461e" },
228 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#14141e.#32508c", c6: "#0a0a0a.#141414", c7: "#464650.#6e96dc", c8: "#282832.#466eaa", c9: "#a0a0aa.#bea0a0", c10: "#282828.#6e5a5a", c11: "#faa078.#ffe68c", c12: "#783c28.#966414", c13: "#aa7850.#c8a03c", c14: "#5a5a5a.#6e96dc", c15: "#465a64.#6e96dc", c16: "#fafafa.#ffffff", c17: "#bebebe.#bea0a0", c18: "#141414.#32508c", c19: "#b4bec8.#bea0a0", c20: "#e6e6e6.#ffffff", c21: "#aaaaaa.#bea0a0", c22: "#829696.#bea0a0", c23: "#dce6f0.#ffffff", c24: "#a0a0a0.#bea0a0", c25: "#505050.#6e96dc", c26: "#6e8296.#bea0a0", c27: "#5a646e.#6e96dc", c28: "#8ca0aa.#bea0a0", c29: "#b4c8d2.#bea0a0", c30: "#a06e0a.#966414", c31: "#dcf0f0.#ffffff", c32: "#c8a03c.#c8a03c", c33: "#f0d282.#ffe68c", c34: "#96503c.#966414", c35: "#464646.#6e96dc", c36: "#f08296.#ffe68c", c37: "#ffa0a0.#ffe68c", c38: "#b4646e.#c8a03c", c39: "#dc6e78.#ffe68c", c40: "#f08ca0.#ffe68c", c41: "#e68c8c.#ffe68c", c42: "#323232.#466eaa", c43: "#aa5a78.#c8a03c", c44: "#b46478.#c8a03c", c45: "#6e1e1e.#966414", c46: "#8c5a46.#c8a03c", c47: "#c88c78.#ffe68c", c48: "#6e3c28.#966414", c49: "#be646e.#c8a03c", c50: "#e6825a.#ffe68c", c51: "#8c3c50.#966414", c52: "#3c3232.#466eaa", c53: "#f0a08c.#ffe68c", c54: "#5a5050.#6e96dc", c55: "#a0461e.#966414", c56: "#5a5a50.#6e96dc", c57: "#642814.#966414", c58: "#fadc8c.#ffe68c", c59: "#fae696.#ffe68c", c60: "#dca050.#ffe68c", c61: "#d26e3c.#c8a03c", c62: "#dc8ca0.#ffe68c", c63: "#dcb450.#ffe68c", c64: "#dc8246.#c8a03c", c65: "#64463c.#966414", c66: "#f09646.#ffe68c", c67: "#823c1e.#966414", c68: "#642832.#966414", c69: "#aaaab4.#bea0a0", c70: "#b4b4b4.#bea0a0", c71: "#785046.#966414", c72: "#dc7864.#ffe68c", c73: "#787878.#c8a03c", c74: "#a06450.#c8a03c", c75: "#d2c8c8.#bea0a0", c76: "#965a32.#966414", c77: "#f0c882.#ffe68c" },
229 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#82788c.#78788c", c6: "#c8d2d2.#d2d2dc", c7: "#a0a0aa.#a0a0b4", c8: "#000000.#000000", c9: "#141e28.#2828a0", c10: "#464650.#6478fa", c11: "#32323c.#3c46c8", c12: "#a05a46.#e6a050", c13: "#faa082.#ffc878", c14: "#82141e.#c8783c", c15: "#642814.#a06414", c16: "#3c3232.#3c46c8", c17: "#823228.#c8783c", c18: "#aaaaaa.#a0a0b4", c19: "#828282.#78788c", c20: "#0a0a0a.#000000", c21: "#141414.#2828a0", c22: "#ff6e50.#ffc878", c23: "#b4b4b4.#a0a0b4", c24: "#b44632.#e6a050", c25: "#5a5a5a.#6478fa", c26: "#a0a0a0.#a0a0b4", c27: "#282828.#2828a0", c28: "#3c3c3c.#3c46c8", c29: "#323232.#3c46c8", c30: "#464646.#6478fa", c31: "#1e1e1e.#2828a0", c32: "#322828.#3c46c8", c33: "#646464.#6478fa", c34: "#645a5a.#6478fa", c35: "#823c32.#c8783c", c36: "#463c3c.#6478fa", c37: "#b4643c.#e6a050", c38: "#f07864.#ffc878", c39: "#dc6446.#e6a050", c40: "#965032.#e6a050", c41: "#f0d264.#ffc878", c42: "#e6643c.#e6a050", c43: "#ffd250.#ffc878", c44: "#5a6464.#6478fa", c45: "#d29650.#ffc878", c46: "#b49632.#e6a050", c47: "#b4463c.#e6a050", c48: "#78641e.#e6a050", c49: "#b4281e.#c8783c", c50: "#781414.#c8783c", c51: "#f05a28.#e6a050", c52: "#46141e.#a06414", c53: "#82320a.#a06414", c54: "#140a14.#2828a0", c55: "#ffe6d2.#ffffff", c56: "#ff7846.#ffc878", c57: "#ff6428.#e6a050", c58: "#c85028.#e6a050", c59: "#f0dca0.#d2d2dc", c60: "#dc785a.#ffc878", c61: "#d26450.#e6a050", c62: "#822814.#c8783c", c63: "#c88c3c.#e6a050", c64: "#e68c64.#ffc878", c65: "#825a3c.#e6a050", c66: "#788c8c.#78788c", c67: "#c88c1e.#e6a050", c68: "#b43c28.#e6a050", c69: "#96aaaa.#a0a0b4", c70: "#fac832.#ffc878", c71: "#faf0e6.#ffffff", c72: "#826414.#e6a050", c73: "#8c2814.#c8783c", c74: "#c8321e.#e6a050", c75: "#e6be64.#ffc878", c76: "#ff6446.#ffc878", c77: "#c8c8c8.#d2d2dc", c78: "#8c8282.#78788c", c79: "#f0f0f0.#ffffff", c80: "#463c14.#a06414", c81: "#8c5a0a.#e6a050", c82: "#ffdc50.#ffc878", c83: "#fafafa.#ffffff", c84: "#c89614.#e6a050", c85: "#fab446.#ffc878", c86: "#be5a1e.#e6a050", c87: "#ffe65a.#ffc878", c88: "#f08228.#e6a050", c89: "#3c4646.#6478fa", c90: "#a0b4b4.#a0a0b4", c91: "#5a5a64.#6478fa", c92: "#504646.#6478fa", c93: "#beb4b4.#a0a0b4", c94: "#3c3c50.#6478fa", c95: "#aaa096.#a0a0b4", c96: "#78828c.#78788c", c97: "#282832.#3c46c8", c98: "#827878.#78788c", c99: "#46140a.#a06414", c100: "#fa3228.#e6a050", c101: "#82321e.#c8783c", c102: "#505a64.#6478fa", c103: "#788282.#78788c", c104: "#b43c1e.#e6a050", c105: "#d28c14.#e6a050", c106: "#8c640a.#e6a050", c107: "#a03c1e.#e6a050", c108: "#5a1414.#a06414", c109: "#64280a.#a06414", c110: "#c84628.#e6a050", c111: "#ff503c.#e6a050", c112: "#f06e3c.#e6a050", c113: "#f05a3c.#e6a050", c114: "#c8281e.#c8783c", c115: "#961e14.#c8783c", c116: "#d28c1e.#e6a050", c117: "#ffdc5a.#ffc878", c118: "#b4aaaa.#a0a0b4", c119: "#fffab4.#d2d2dc", c120: "#e6e6d2.#d2d2dc", c121: "#b48c28.#e6a050", c122: "#fac850.#ffc878", c123: "#a0aaaa.#a0a0b4", c124: "#50461e.#a06414", c125: "#c88c32.#e6a050", c126: "#825a14.#e6a050", c127: "#644614.#a06414" },
230 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#465a96.#6e3c96", c6: "#64a0c8.#a06ec8", c7: "#141414.#141414", c8: "#8cbef0.#c88ce6", c9: "#c8e6fa.#f0d2ff", c10: "#aad2ff.#d2aafa", c11: "#be3c32.#be3c32", c12: "#787878.#787878", c13: "#d2d2d2.#d2d2d2", c14: "#aa6e00.#aa6400", c15: "#fae646.#fadc46", c16: "#e6aa3c.#e6a03c", c17: "#3c3c3c.#141414", c18: "#0a0a0a.#141414", c19: "#323232.#141414", c20: "#f0e68c.#fadc46", c21: "#b4aa6e.#e6a03c", c22: "#464650.#6e3c96", c23: "#64643c.#787878", c24: "#283228.#141414", c25: "#dc6e3c.#be3c32", c26: "#646450.#787878", c27: "#aa8c5a.#787878", c28: "#50321e.#141414", c29: "#e6963c.#e6a03c", c30: "#faf0b4.#d2d2d2", c31: "#825a32.#be3c32", c32: "#b47846.#be3c32", c33: "#aaaa78.#787878", c34: "#64503c.#787878", c35: "#dcc896.#d2d2d2", c36: "#785032.#be3c32", c37: "#b48c64.#787878", c38: "#beb48c.#d2d2d2", c39: "#464646.#6e3c96", c40: "#f06e28.#e6a03c", c41: "#aa460a.#aa6400", c42: "#1e1e1e.#141414", c43: "#f08c28.#e6a03c", c44: "#a05a14.#aa6400", c45: "#faf0be.#d2d2d2", c46: "#8c826e.#787878", c47: "#fffadc.#ffffff", c48: "#505050.#787878", c49: "#645a46.#787878", c50: "#3c140a.#141414", c51: "#32281e.#141414", c52: "#a05a50.#be3c32", c53: "#6e3c28.#be3c32", c54: "#d2a05a.#e6a03c", c55: "#beb482.#e6a03c", c56: "#b47832.#aa6400", c57: "#3c3c32.#141414", c58: "#fadc8c.#fadc46", c59: "#f0e6aa.#d2d2d2", c60: "#b4aa78.#787878", c61: "#e68c0a.#e6a03c", c62: "#d2c882.#fadc46", c63: "#fa781e.#e6a03c", c64: "#a05a28.#be3c32", c65: "#282828.#141414", c66: "#b47864.#787878", c67: "#78503c.#787878", c68: "#968c6e.#787878", c69: "#82785a.#787878", c70: "#fadc64.#fadc46", c71: "#dc9678.#e6a03c" },
231 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5078b4.#6e96c8", c6: "#505096.#5a5aa0", c7: "#aad2f0.#dcffff", c8: "#a0bef0.#c8e6ff", c9: "#141414.#141414", c10: "#820000.#820000", c11: "#be3c32.#be3c32", c12: "#fa6e50.#fa6e50", c13: "#6ea0c8.#8cbef0", c14: "#8c8c8c.#8c8c8c", c15: "#d2d2d2.#d2d2d2", c16: "#a0280a.#820000", c17: "#781e0a.#820000", c18: "#c8463c.#be3c32", c19: "#280a14.#141414", c20: "#0a0a0a.#141414", c21: "#f07814.#fa6e50", c22: "#32323c.#141414", c23: "#dc643c.#fa6e50", c24: "#0a0a3c.#141414", c25: "#14141e.#141414", c26: "#281e5a.#141414", c27: "#646464.#5a5aa0", c28: "#fa9632.#fa6e50", c29: "#0a6ea0.#6e96c8", c30: "#0ac8ff.#8cbef0", c31: "#e6e6e6.#d2d2d2", c32: "#0a64a0.#5a5aa0", c33: "#b4b4b4.#d2d2d2", c34: "#d2e6e6.#d2d2d2", c35: "#968cc8.#8cbef0", c36: "#5a6496.#5a5aa0", c37: "#145064.#5a5aa0", c38: "#96c8d2.#c8e6ff", c39: "#5096a0.#6e96c8", c40: "#1e5a64.#5a5aa0", c41: "#464650.#5a5aa0", c42: "#3c7882.#5a5aa0", c43: "#3c6e82.#5a5aa0", c44: "#8c320a.#820000", c45: "#e66432.#fa6e50", c46: "#a01e0a.#820000", c47: "#1e1e28.#141414", c48: "#c8503c.#be3c32", c49: "#78140a.#820000", c50: "#787878.#8c8c8c", c51: "#1e1e1e.#141414", c52: "#fa7850.#fa6e50", c53: "#3c3c46.#141414", c54: "#780a14.#820000", c55: "#d26450.#fa6e50", c56: "#faa03c.#fa6e50", c57: "#faa050.#fa6e50", c58: "#3c3c3c.#141414", c59: "#464646.#5a5aa0", c60: "#8c0a14.#820000", c61: "#50505a.#5a5aa0", c62: "#f06e0a.#fa6e50", c63: "#fac88c.#d2d2d2", c64: "#8c8c82.#8c8c8c", c65: "#d2d2c8.#d2d2d2", c66: "#643c3c.#820000", c67: "#50140a.#820000", c68: "#f0f0f0.#ffffff", c69: "#bebebe.#d2d2d2", c70: "#c8c8c8.#d2d2d2", c71: "#0a78a0.#6e96c8", c72: "#b43c0a.#be3c32", c73: "#281e14.#141414", c74: "#0a3c5a.#141414", c75: "#0a82aa.#6e96c8", c76: "#781e1e.#820000", c77: "#6e6e78.#8c8c8c", c78: "#0ad2ff.#8cbef0", c79: "#0a82b4.#6e96c8", c80: "#96dcdc.#dcffff", c81: "#6ea0aa.#8cbef0", c82: "#284650.#141414", c83: "#f06e14.#fa6e50", c84: "#1e6478.#5a5aa0", c85: "#64a0aa.#8cbef0", c86: "#788c8c.#8c8c8c", c87: "#a0d2dc.#dcffff", c88: "#468296.#6e96c8" },
232 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#465050.#aa5a1e", c6: "#3c3c3c.#8c3c0a", c7: "#829696.#faaa46", c8: "#6e7878.#c88232", c9: "#141414.#141414", c10: "#a0a0a0.#a0aa78", c11: "#d2dcd2.#c8dc96", c12: "#788282.#788c50", c13: "#821e28.#963246", c14: "#c83c14.#e66478", c15: "#3c3c3c.#464650", c16: "#bec8c8.#bec882", c17: "#dcdcdc.#dcdcdc", c18: "#505050.#aa5a1e", c19: "#281e28.#141414", c20: "#5a5050.#aa5a1e", c21: "#282828.#8c3c0a", c22: "#505a64.#aa5a1e", c23: "#3c64a0.#c88232", c24: "#6496dc.#faaa46", c25: "#1e325a.#8c3c0a", c26: "#14326e.#8c3c0a", c27: "#782814.#963246", c28: "#a03c32.#963246", c29: "#3c3c46.#8c3c0a", c30: "#143264.#8c3c0a", c31: "#648cdc.#faaa46", c32: "#283c6e.#aa5a1e", c33: "#783c50.#963246", c34: "#a03c6e.#c88232", c35: "#1e648c.#aa5a1e", c36: "#5a96be.#faaa46", c37: "#1e2846.#8c3c0a", c38: "#6e2814.#963246", c39: "#508cb4.#faaa46", c40: "#643c6e.#aa5a1e", c41: "#50281e.#8c3c0a", c42: "#8c5a82.#c88232", c43: "#963c32.#963246", c44: "#0a0a0a.#141414", c45: "#783c28.#963246", c46: "#963c64.#963246", c47: "#6e3c50.#aa5a1e", c48: "#6e3c64.#aa5a1e", c49: "#b43278.#963246" },
233 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#963c6e.#3c5af0", c6: "#f05a64.#6496ff", c7: "#5a3c46.#0a1eb4", c8: "#3278a0.#c896b4", c9: "#ff96b4.#8cd2ff", c10: "#8cd2ff.#ffd2fa", c11: "#46a0d2.#dcb4d2", c12: "#323c64.#a06e82", c13: "#141414.#141414", c14: "#d2d2d2.#d2d2d2", c15: "#6e6e78.#6e6e78", c16: "#281e28.#141414", c17: "#505050.#0a1eb4", c18: "#0a0a0a.#141414", c19: "#3c3c3c.#0a1eb4", c20: "#463c46.#0a1eb4", c21: "#282828.#141414", c22: "#505a64.#6e6e78", c23: "#3c3c46.#0a1eb4", c24: "#14326e.#a06e82", c25: "#3c64a0.#c896b4", c26: "#6496dc.#dcb4d2", c27: "#782814.#0a1eb4", c28: "#a04632.#3c5af0", c29: "#e6dcdc.#d2d2d2", c30: "#1e3c5a.#a06e82", c31: "#aaaaaa.#d2d2d2", c32: "#5a96be.#dcb4d2", c33: "#1e2846.#a06e82", c34: "#5082c8.#dcb4d2", c35: "#283c6e.#a06e82", c36: "#1e648c.#c896b4", c37: "#a03c32.#3c5af0", c38: "#783c50.#0a1eb4", c39: "#a03c6e.#3c5af0", c40: "#8c5a82.#3c5af0", c41: "#500a0a.#141414", c42: "#641e3c.#0a1eb4", c43: "#281e1e.#141414", c44: "#641e46.#0a1eb4" },
234 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#b48232.#82be3c", c6: "#ffdc50.#f0f03c", c7: "#783c00.#3c8200", c8: "#e6a01e.#e6e61e", c9: "#141414.#141414", c10: "#464646.#8c1414", c11: "#b4b4b4.#dc6e5a", c12: "#787878.#b43c32", c13: "#e6b45a.#c8f028", c14: "#ffd278.#e6ff50", c15: "#781414.#781414", c16: "#ffffaa.#ffffc8", c17: "#ffdc82.#fafa82", c18: "#281e28.#141414", c19: "#461e8c.#8c1414", c20: "#be5078.#b43c32", c21: "#641e46.#8c1414", c22: "#6e6e6e.#b43c32", c23: "#505050.#8c1414", c24: "#3c3c3c.#8c1414", c25: "#281450.#8c1414", c26: "#a08cdc.#dc6e5a", c27: "#5a5a5a.#8c1414", c28: "#282828.#141414", c29: "#0a0a0a.#141414", c30: "#463c46.#8c1414", c31: "#8c2864.#8c1414", c32: "#5a82c8.#b43c32", c33: "#14326e.#8c1414", c34: "#96befa.#dc6e5a", c35: "#5a82d2.#b43c32", c36: "#3c5aa0.#b43c32", c37: "#641e3c.#781414", c38: "#6e50aa.#b43c32", c39: "#a04632.#82be3c", c40: "#a03c32.#3c8200", c41: "#8c8c8c.#b43c32", c42: "#782814.#781414", c43: "#1e3c5a.#8c1414", c44: "#f0f0f0.#ffffff", c45: "#e6dcdc.#ffffff", c46: "#5a1e14.#781414", c47: "#a0a0a0.#dc6e5a", c48: "#a03c6e.#b43c32", c49: "#dc8c8c.#c8f028", c50: "#466eb4.#b43c32", c51: "#f06e82.#c8f028", c52: "#ffa0a0.#e6ff50", c53: "#462846.#8c1414", c54: "#323c64.#8c1414", c55: "#7882c8.#dc6e5a", c56: "#d2d2d2.#dc6e5a", c57: "#641432.#781414", c58: "#aa3c64.#b43c32", c59: "#281e1e.#141414", c60: "#3c323c.#8c1414", c61: "#781e46.#781414", c62: "#143264.#8c1414", c63: "#325a82.#8c1414", c64: "#5a82b4.#b43c32", c65: "#8cbee6.#dc6e5a", c66: "#96325a.#b43c32", c67: "#be5064.#82be3c", c68: "#963232.#781414", c69: "#781e1e.#781414", c70: "#281414.#141414", c71: "#283c6e.#8c1414", c72: "#fffafa.#ffffff", c73: "#6496dc.#dc6e5a", c74: "#3c64a0.#b43c32", c75: "#28285a.#8c1414", c76: "#508cd2.#b43c32", c77: "#285aa0.#b43c32", c78: "#c8645a.#82be3c", c79: "#643c6e.#8c1414", c80: "#783228.#781414", c81: "#8c5a82.#b43c32", c82: "#783c50.#8c1414" },
235 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#8c8250.#a0825a", c6: "#dcdcbe.#fffaa0", c7: "#463c14.#503214", c8: "#6e5a32.#785032", c9: "#aaaa8c.#e6c864", c10: "#141414.#141414", c11: "#c8c8c8.#c8c8c8", c12: "#14a000.#be3c46", c13: "#6edc3c.#ff8282", c14: "#9696a0.#9696a0", c15: "#3cc814.#f0505a", c16: "#0a6400.#a01e32", c17: "#b40000.#b40000", c18: "#fa8200.#fa8200", c19: "#c87814.#fa8200", c20: "#fff046.#fffaa0", c21: "#785032.#785032", c22: "#0a0a0a.#141414", c23: "#e6be32.#fa8200", c24: "#ff4632.#fa8200", c25: "#fffac8.#fffaa0", c26: "#646464.#785032", c27: "#6e1e1e.#503214", c28: "#c8143c.#b40000", c29: "#ff8c64.#e6c864", c30: "#ffc8be.#fffaa0", c31: "#d21446.#b40000", c32: "#ffd2be.#fffaa0", c33: "#fffad2.#ffffff" },
236 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#a06ea0.#8c8c78", c6: "#82325a.#646446", c7: "#f0c8ff.#d2d2be", c8: "#c8a0be.#aaa0a0", c9: "#141414.#141414", c10: "#ffdcff.#f0f0d2", c11: "#b43200.#b43200", c12: "#e68c3c.#e68c3c", c13: "#a0a0aa.#8c8c8c", c14: "#dcdcdc.#dcdcdc", c15: "#784600.#2846be", c16: "#503200.#0a32a0", c17: "#a0783c.#3278dc", c18: "#d2a046.#46b4fa", c19: "#7878a0.#8c8c78", c20: "#8c2846.#646446", c21: "#0a0a0a.#141414", c22: "#f0f0ff.#ffffff", c23: "#c8c8f0.#dcdcdc", c24: "#c84650.#3278dc", c25: "#b4b4e6.#aaa0a0", c26: "#ff6464.#e68c3c", c27: "#be3c3c.#b43200", c28: "#aaa0d2.#aaa0a0", c29: "#ffa078.#46b4fa", c30: "#ff8282.#e68c3c", c31: "#c8a046.#46b4fa", c32: "#fafafa.#ffffff", c33: "#ffc85a.#46b4fa", c34: "#9696be.#8c8c8c", c35: "#e6e6f0.#dcdcdc", c36: "#dcdcf0.#dcdcdc", c37: "#961428.#b43200", c38: "#fa3c50.#e68c3c", c39: "#ff4650.#e68c3c", c40: "#dc283c.#b43200", c41: "#e6aa1e.#e68c3c", c42: "#ffc83c.#46b4fa", c43: "#b4b4dc.#aaa0a0", c44: "#78aaf0.#8c8c8c", c45: "#5a78b4.#8c8c78", c46: "#4696f0.#8c8c8c", c47: "#286ebe.#8c8c78", c48: "#d24650.#3278dc", c49: "#d2d2f0.#dcdcdc", c50: "#786ea0.#8c8c78", c51: "#ffaa78.#46b4fa", c52: "#aaaad2.#aaa0a0", c53: "#d2aa46.#46b4fa", c54: "#ffd25a.#46b4fa", c55: "#be3c46.#646446", c56: "#f05028.#e68c3c", c57: "#f06e5a.#e68c3c", c58: "#f08228.#e68c3c", c59: "#a03246.#646446", c60: "#fac80a.#e68c3c", c61: "#f05a0a.#e68c3c", c62: "#c8c8e6.#dcdcdc", c63: "#c8a01e.#46b4fa", c64: "#fad20a.#46b4fa", c65: "#505082.#646446", c66: "#faa078.#46b4fa", c67: "#5a6eb4.#8c8c78" },
237 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#9696a0.#9696a0", c6: "#64646e.#64646e", c7: "#c8c8c8.#c8c8c8", c8: "#4682c8.#a050b4", c9: "#64aaf0.#d278c8", c10: "#8cd2ff.#faa0dc", c11: "#505a96.#8c3278", c12: "#826414.#786e50", c13: "#141414.#141414", c14: "#e6c878.#d2d2c8", c15: "#bea050.#aaa0a0", c16: "#fff0a0.#f0f0e6", c17: "#283278.#8c3278", c18: "#0a0a0a.#141414", c19: "#968c96.#9696a0", c20: "#6e646e.#64646e", c21: "#5078d2.#a050b4", c22: "#f0f0f0.#ffffff", c23: "#b4b4aa.#c8c8c8", c24: "#4664b4.#8c3278", c25: "#5aa0ff.#d278c8", c26: "#dcd2c8.#c8c8c8", c27: "#a0c8ff.#faa0dc", c28: "#dcdcdc.#c8c8c8", c29: "#c83c5a.#aaa0a0", c30: "#ff5a50.#aaa0a0", c31: "#fafafa.#ffffff", c32: "#8c8c82.#9696a0", c33: "#dce6fa.#ffffff", c34: "#dcd2d2.#c8c8c8", c35: "#8c9696.#9696a0", c36: "#d2dcdc.#c8c8c8", c37: "#646e6e.#64646e", c38: "#282878.#8c3278", c39: "#b4bec8.#c8c8c8", c40: "#faffff.#ffffff", c41: "#a0d2ff.#faa0dc", c42: "#1e64b4.#a050b4", c43: "#64aafa.#d278c8", c44: "#0a3c78.#8c3278", c45: "#4696f0.#d278c8", c46: "#c8325a.#786e50", c47: "#3282d2.#a050b4", c48: "#dc283c.#786e50", c49: "#a0dcff.#faa0dc", c50: "#ff4650.#aaa0a0", c51: "#0a0aff.#a050b4" },
238 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#968214.#a08c28", c6: "#ffe650.#ffff96", c7: "#000000.#000000", c8: "#dcc832.#ffff64", c9: "#beaa28.#dcc846", c10: "#8c145a.#a03c78", c11: "#dc4678.#fa7896", c12: "#ff96a0.#ffbebe", c13: "#d2d2d2.#d2d2d2", c14: "#b4b4b4.#b4b4b4", c15: "#ffc8a0.#ffd2b4", c16: "#8c8246.#a0965a", c17: "#dcc882.#fadca0", c18: "#fae6aa.#ffffd2", c19: "#826414.#a08c28", c20: "#141414.#000000", c21: "#b4460a.#a08c28", c22: "#ffa03c.#ffff64", c23: "#f08228.#dcc846", c24: "#fae678.#ffff96", c25: "#e6c850.#ffff64", c26: "#d2a046.#dcc846", c27: "#826e28.#a08c28", c28: "#c8a046.#dcc846", c29: "#e6c86e.#fadca0", c30: "#ff7814.#dcc846", c31: "#d2a050.#dcc846", c32: "#0a0a0a.#000000", c33: "#aa500a.#a08c28", c34: "#ff6e28.#dcc846", c35: "#ff9632.#ffff64", c36: "#fff0b4.#ffffd2", c37: "#b4140a.#a03c78", c38: "#dc1e14.#a03c78", c39: "#fafafa.#ffffff", c40: "#8c0a0a.#a03c78", c41: "#ffaa32.#ffff64", c42: "#ff9614.#ffff64", c43: "#faa03c.#ffff64", c44: "#be5a1e.#a08c28", c45: "#785a28.#a08c28", c46: "#14140a.#000000", c47: "#faf0aa.#ffffd2", c48: "#e6c878.#fadca0", c49: "#b4500a.#a08c28", c50: "#a08232.#a0965a", c51: "#fa961e.#ffff64", c52: "#fff0d2.#ffffd2", c53: "#82320a.#a08c28", c54: "#fff06e.#ffff96", c55: "#dc7814.#dcc846", c56: "#d26414.#a08c28", c57: "#f0c850.#ffff96", c58: "#281e1e.#000000", c59: "#dc2814.#fa7896", c60: "#d2aa3c.#dcc846", c61: "#dc3c32.#fa7896", c62: "#8c323c.#a03c78", c63: "#fa7878.#ffbebe", c64: "#f00a46.#fa7896", c65: "#ff326e.#fa7896", c66: "#b40a32.#a03c78", c67: "#785a0a.#a08c28", c68: "#783c14.#a08c28", c69: "#96460a.#a08c28", c70: "#d2aa46.#dcc846", c71: "#fff08c.#ffffd2", c72: "#f0dc78.#fadca0", c73: "#dcbe50.#ffff64", c74: "#c89646.#dcc846", c75: "#e68228.#dcc846" },
239 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#785000.#786e0a", c6: "#b46e00.#aa9600", c7: "#ffc832.#e6dc3c", c8: "#c88c00.#d2b40a", c9: "#141414.#141414", c10: "#a0a0a0.#aaa0a0", c11: "#c8c8c8.#d2c8c8", c12: "#6e6e6e.#787850", c13: "#e6aa14.#dcc81e", c14: "#323232.#3c3c32", c15: "#643c3c.#3c3c32", c16: "#ff7846.#dcc81e", c17: "#0a0a0a.#141414", c18: "#be6e6e.#aaa0a0", c19: "#6ec8dc.#aaa0a0", c20: "#5096aa.#787850", c21: "#3c5064.#787850", c22: "#ffb496.#d2c8c8", c23: "#783c8c.#787850", c24: "#a064b4.#aaa0a0", c25: "#c8c8d2.#d2c8c8", c26: "#784632.#786e0a", c27: "#505050.#787850", c28: "#78786e.#787850", c29: "#a04646.#787850", c30: "#fa9678.#e6dc3c", c31: "#6496a0.#aaa0a0", c32: "#be82be.#aaa0a0", c33: "#283c46.#3c3c32", c34: "#dc8264.#aaa0a0", c35: "#6e6482.#787850", c36: "#504650.#3c3c32", c37: "#c8c8dc.#d2c8c8", c38: "#a0dcf0.#d2c8c8", c39: "#a0321e.#786e0a", c40: "#e66446.#d2b40a", c41: "#fa8264.#e6dc3c", c42: "#d23c28.#aa9600", c43: "#463c78.#787850", c44: "#148ca0.#787850", c45: "#50140a.#3c3c32", c46: "#32aac8.#aaa0a0", c47: "#5ac8dc.#aaa0a0", c48: "#78dcf0.#d2c8c8", c49: "#0a6e82.#787850", c50: "#78508c.#787850", c51: "#9678dc.#aaa0a0", c52: "#dcd2ff.#ffffff", c53: "#6e50b4.#787850", c54: "#3c28a0.#787850", c55: "#322832.#3c3c32", c56: "#6e2828.#786e0a", c57: "#c85a6e.#787850", c58: "#ffaa96.#d2c8c8", c59: "#ff6450.#dcc81e", c60: "#3296b4.#787850", c61: "#82e6fa.#d2c8c8", c62: "#64d2dc.#aaa0a0", c63: "#325064.#3c3c32", c64: "#3cc8dc.#aaa0a0", c65: "#1e96be.#787850", c66: "#9650be.#aaa0a0", c67: "#64323c.#3c3c32", c68: "#c86464.#787850", c69: "#285a64.#3c3c32", c70: "#285064.#3c3c32", c71: "#ff643c.#dcc81e", c72: "#ffb48c.#d2c8c8", c73: "#50326e.#787850", c74: "#96dcf0.#d2c8c8", c75: "#aa64b4.#aaa0a0", c76: "#0a96aa.#787850", c77: "#282828.#3c3c32", c78: "#3c3c3c.#3c3c32", c79: "#78328c.#787850", c80: "#787864.#787850", c81: "#0aa0b4.#787850", c82: "#0a6478.#3c3c32" },
240 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#d2503c.#f08c00", c6: "#ff7864.#ffdc32", c7: "#96321e.#aa4600", c8: "#141414.#141414", c9: "#c8c8c8.#c8c8c8", c10: "#ffffb4.#ffffc8", c11: "#fad23c.#fffa5a", c12: "#d2aa00.#fac81e", c13: "#787878.#787878", c14: "#aa8200.#be8c14", c15: "#aa8232.#be8c14", c16: "#0a0a0a.#141414", c17: "#ffff96.#ffffc8", c18: "#ffe65a.#fffa5a", c19: "#e6be50.#fffa5a", c20: "#50aac8.#787878", c21: "#32788c.#787878", c22: "#64d2dc.#c8c8c8", c23: "#3c8296.#787878", c24: "#6e7878.#787878", c25: "#64c8d2.#c8c8c8", c26: "#e6f0fa.#ffffff", c27: "#c8c8dc.#c8c8c8", c28: "#a0a0aa.#c8c8c8", c29: "#50b4d2.#787878", c30: "#6e96be.#787878", c31: "#8c3c3c.#aa4600", c32: "#dcb450.#fffa5a", c33: "#dc6464.#ffdc32", c34: "#d24664.#f08c00", c35: "#dc6478.#ffdc32", c36: "#fa78a0.#ffdc32", c37: "#787882.#787878", c38: "#e64614.#f08c00", c39: "#a01e14.#aa4600", c40: "#be3c64.#f08c00", c41: "#82c8f0.#c8c8c8", c42: "#ff8250.#ffdc32", c43: "#4646a0.#787878", c44: "#2864a0.#787878", c45: "#505050.#787878", c46: "#821e1e.#aa4600", c47: "#aa2828.#aa4600", c48: "#dc828c.#ffdc32", c49: "#966482.#787878", c50: "#aa78a0.#787878", c51: "#dca0d2.#c8c8c8", c52: "#78501e.#aa4600", c53: "#a06e1e.#be8c14", c54: "#505a5a.#787878", c55: "#ffdc46.#fffa5a", c56: "#dcb43c.#fffa5a", c57: "#1e506e.#787878", c58: "#142850.#141414", c59: "#1e6478.#787878", c60: "#3ca0be.#787878", c61: "#50c8dc.#c8c8c8", c62: "#a08228.#be8c14", c63: "#6e5a0a.#aa4600", c64: "#ffdc78.#fffa5a", c65: "#e6c85a.#fffa5a", c66: "#fad250.#fffa5a", c67: "#50aad2.#787878", c68: "#dcf0f0.#ffffff", c69: "#b4bedc.#c8c8c8", c70: "#0a6464.#141414", c71: "#28aaa0.#787878", c72: "#50c8c8.#c8c8c8", c73: "#8c3246.#aa4600", c74: "#c86478.#ffdc32", c75: "#8c96a0.#787878", c76: "#96a0aa.#c8c8c8", c77: "#c8d2dc.#c8c8c8", c78: "#0a141e.#141414", c79: "#50646e.#787878", c80: "#8ca0b4.#c8c8c8", c81: "#bedcbe.#c8c8c8", c82: "#96c8a0.#c8c8c8", c83: "#c80a0a.#aa4600", c84: "#c8a046.#fffa5a", c85: "#f05050.#f08c00" },
241 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5a5a64.#a0461e", c6: "#000000.#000000", c7: "#aaaab4.#aaaab4", c8: "#323232.#6e1400", c9: "#a0646e.#7882a0", c10: "#fab4a0.#c8dcff", c11: "#d2aa78.#b4b496", c12: "#d28c82.#96aad2", c13: "#6e3c3c.#5a6e82", c14: "#1e78c8.#1e78c8", c15: "#f0d2be.#dce6ff", c16: "#fff0b4.#fafae6", c17: "#78643c.#6e643c", c18: "#ffd282.#d2d2be", c19: "#8c8c82.#7882a0", c20: "#e6dcdc.#dce6ff", c21: "#6e645a.#a0461e", c22: "#96dc8c.#aaaab4", c23: "#78b482.#aaaab4", c24: "#c8beb4.#aaaab4", c25: "#0a0a0a.#000000", c26: "#46825a.#a0461e", c27: "#3c7850.#a0461e", c28: "#b4dc78.#b4b496", c29: "#141414.#000000", c30: "#78aa5a.#6e643c", c31: "#64463c.#5a6e82", c32: "#b48c64.#96aad2", c33: "#d2b482.#b4b496", c34: "#464646.#6e1400", c35: "#78786e.#a0461e", c36: "#c8dcc8.#dce6ff", c37: "#fffff0.#ffffff", c38: "#bec8c8.#aaaab4", c39: "#b4a082.#b4b496", c40: "#c8bea0.#aaaab4", c41: "#a08278.#7882a0", c42: "#969696.#aaaab4", c43: "#828282.#7882a0", c44: "#467850.#a0461e", c45: "#787864.#a0461e", c46: "#6e6e64.#a0461e", c47: "#504646.#5a6e82", c48: "#a08c78.#7882a0", c49: "#f0fae6.#ffffff", c50: "#5a5050.#a0461e", c51: "#bec8be.#aaaab4", c52: "#282828.#6e1400", c53: "#d2dcd2.#dce6ff", c54: "#8cdc78.#aaaab4", c55: "#fffffa.#ffffff", c56: "#6eb46e.#a0461e", c57: "#78463c.#5a6e82", c58: "#dcc88c.#b4b496", c59: "#aa9678.#96aad2", c60: "#a07850.#7882a0", c61: "#bea078.#b4b496", c62: "#d2bea0.#c8dcff" },
242 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#8c3c3c.#c82832", c6: "#c85a64.#e66478", c7: "#ffc8c8.#fffafa", c8: "#141414.#141414", c9: "#ffaac8.#ffd2d2", c10: "#dc82a0.#ffaab4", c11: "#d24664.#d24664", c12: "#6e6e6e.#64646e", c13: "#dcd2d2.#dcdcff", c14: "#b4b4b4.#b4b4d2", c15: "#503c32.#c82832", c16: "#b49650.#e66478", c17: "#8c5a32.#c82832", c18: "#be8246.#e66478", c19: "#f0d28c.#fffafa", c20: "#aa9678.#ffaab4", c21: "#e6d2a0.#fffafa", c22: "#3c2814.#141414", c23: "#fafafa.#ffffff", c24: "#c8b464.#ffaab4", c25: "#be8c3c.#e66478", c26: "#3c3c32.#141414", c27: "#0a0a0a.#141414", c28: "#f03c3c.#d24664", c29: "#d21e28.#d24664", c30: "#64503c.#c82832", c31: "#32281e.#141414", c32: "#c8c8b4.#b4b4d2", c33: "#463c32.#c82832", c34: "#8c5a28.#c82832", c35: "#5a463c.#c82832", c36: "#3c3228.#141414", c37: "#aa8c78.#e66478", c38: "#5a3c32.#c82832", c39: "#dc4646.#d24664", c40: "#463228.#141414", c41: "#e6a050.#e66478", c42: "#dcc8a0.#b4b4d2", c43: "#462814.#141414", c44: "#6e4628.#c82832", c45: "#c8b4aa.#b4b4d2", c46: "#32820a.#141414", c47: "#644632.#c82832", c48: "#5aaa32.#64646e", c49: "#14aae6.#64646e", c50: "#1e8cbe.#64646e", c51: "#a06e3c.#c82832" },
243 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#826ea0.#c8a03c", c6: "#be8cc8.#e6c85a", c7: "#50286e.#82780a", c8: "#6e6e6e.#6e6e6e", c9: "#141414.#141414", c10: "#a0a0a0.#a0a0a0", c11: "#d2d2d2.#d2d2d2", c12: "#8c6414.#8c460a", c13: "#a0d2ff.#c8c8d2", c14: "#c80000.#c80000", c15: "#ffc83c.#ffa03c", c16: "#d2a028.#d27814", c17: "#fff096.#ffc88c", c18: "#144678.#82780a", c19: "#6eb4ff.#c8c8d2", c20: "#46a0f0.#c8c8d2", c21: "#0a0a0a.#141414", c22: "#2878a0.#6e6e6e", c23: "#3c3c3c.#82780a", c24: "#5a5a5a.#6e6e6e", c25: "#dc3c3c.#c80000", c26: "#a03232.#8c460a", c27: "#828282.#6e6e6e", c28: "#b4b4b4.#a0a0a0", c29: "#dcbebe.#d2d2d2", c30: "#821414.#c80000", c31: "#fadcdc.#d2d2d2", c32: "#8c823c.#8c460a", c33: "#ff6464.#d27814", c34: "#dcdcdc.#d2d2d2", c35: "#dcc878.#ffc88c", c36: "#dc82a0.#e6c85a", c37: "#0a3c5a.#82780a", c38: "#0a78b4.#c8a03c", c39: "#0aaadc.#c8a03c", c40: "#dc4646.#d27814", c41: "#64646e.#6e6e6e", c42: "#a00a14.#c80000", c43: "#bebebe.#d2d2d2", c44: "#323246.#82780a", c45: "#787896.#c8a03c", c46: "#f00a0a.#c80000", c47: "#f0f0f0.#ffffff", c48: "#c8b464.#d27814", c49: "#f0dc82.#ffc88c" },
244 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#502800.#502800", c6: "#c89600.#c89600", c7: "#ffe696.#ffd296", c8: "#825046.#825046", c9: "#c8a064.#c89664", c10: "#ffc800.#ffc800", c11: "#b48246.#b47846", c12: "#141414.#141414", c13: "#e62800.#646464", c14: "#ff7828.#a0a0a0", c15: "#6e6e6e.#786e6e", c16: "#ffffff.#e6f0e6", c17: "#aaaaaa.#a0aa96", c18: "#d2d2d2.#c8c8aa", c19: "#a00000.#780000", c20: "#0a0a0a.#141414", c21: "#6e461e.#825046", c22: "#8c7850.#825046", c23: "#c8b496.#a0aa96", c24: "#dcc8be.#c8c8aa", c25: "#503c28.#502800", c26: "#b4a078.#c89664", c27: "#966e64.#786e6e", c28: "#e6d2c8.#c8c8aa", c29: "#5a3c32.#825046", c30: "#b49678.#c89664", c31: "#785028.#825046", c32: "#e68c96.#c89664", c33: "#e6d2a0.#ffd296", c34: "#be5a6e.#b47846", c35: "#c8c8c8.#c8c8aa", c36: "#d2b48c.#c89664", c37: "#783c50.#825046", c38: "#6e501e.#825046", c39: "#d2b496.#a0aa96", c40: "#b4966e.#c89664", c41: "#bebebe.#a0aa96", c42: "#8c6e46.#825046", c43: "#fafafa.#e6f0e6", c44: "#a0a0a0.#a0aa96", c45: "#464646.#825046", c46: "#8c8c8c.#786e6e", c47: "#ffa08c.#c89664", c48: "#d2786e.#c89664", c49: "#8c3246.#825046", c50: "#787878.#786e6e", c51: "#dcdcf0.#c8c8aa", c52: "#c8dcbe.#c8c8aa" },
245 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#323c8c.#3c4696", c6: "#141414.#141414", c7: "#78beff.#a0c8ff", c8: "#5a78d2.#7896d2", c9: "#785ab4.#283ca0", c10: "#503c78.#0a1482", c11: "#aa6ed2.#3c64f0", c12: "#c896dc.#64a0fa", c13: "#505050.#50505a", c14: "#828282.#8c8c96", c15: "#ffffff.#dcf0d2", c16: "#d21414.#d21414", c17: "#bef0ff.#bedcf0", c18: "#dcdcdc.#e6e6f0", c19: "#bebebe.#c8c8c8", c20: "#3c3c3c.#50505a", c21: "#5a5a50.#50505a", c22: "#e6e6e6.#e6e6f0", c23: "#d2d2d2.#e6e6f0", c24: "#783232.#50505a", c25: "#ff465a.#d21414", c26: "#a03c46.#d21414", c27: "#ff6464.#d21414", c28: "#d23c32.#d21414", c29: "#642828.#50505a", c30: "#a04650.#50505a", c31: "#8c6e46.#8c8c96", c32: "#78503c.#50505a", c33: "#785028.#50505a", c34: "#503c1e.#50505a", c35: "#a08264.#8c8c96", c36: "#50321e.#50505a", c37: "#464646.#50505a", c38: "#50461e.#50505a", c39: "#8c465a.#50505a", c40: "#c86496.#3c64f0", c41: "#aa8264.#8c8c96" },
246 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#78a064.#a0aa1e", c6: "#465a3c.#646e00", c7: "#d2e6c8.#e6ff64", c8: "#aac8a0.#c8f014", c9: "#141414.#141414", c10: "#6e1e00.#641e3c", c11: "#be3c1e.#aa3c78", c12: "#f05028.#e65a8c", c13: "#ffa05a.#faa0a0", c14: "#b4a096.#c8f014", c15: "#827864.#a0aa1e", c16: "#f0e6c8.#e6ff64", c17: "#3c2814.#141414", c18: "#5a4632.#646e00", c19: "#d2c8b4.#e6ff64", c20: "#f0e6d2.#e6ff64", c21: "#0a0a0a.#141414", c22: "#6e5a50.#646e00", c23: "#503c32.#646e00", c24: "#dcc8b4.#e6ff64", c25: "#5a3c32.#646e00", c26: "#463c32.#646e00", c27: "#463c3c.#646e00", c28: "#6e6e64.#a0aa1e", c29: "#aaa08c.#c8f014", c30: "#826e50.#a0aa1e", c31: "#a08c6e.#a0aa1e", c32: "#c8aa8c.#c8f014", c33: "#3c1e0a.#141414", c34: "#e6d2b4.#e6ff64", c35: "#96785a.#a0aa1e", c36: "#463c28.#646e00", c37: "#b49664.#a0aa1e", c38: "#645032.#646e00", c39: "#beaa8c.#c8f014", c40: "#8c6e50.#a0aa1e", c41: "#c8b48c.#c8f014", c42: "#321e14.#141414", c43: "#dcbea0.#c8f014", c44: "#e6dcb4.#e6ff64", c45: "#aa8c6e.#a0aa1e", c46: "#b4aa96.#c8f014", c47: "#0a0a14.#141414", c48: "#dcdcdc.#e6ff64", c49: "#beb4be.#c8f014", c50: "#78645a.#646e00", c51: "#aa968c.#c8f014", c52: "#c8beb4.#c8f014" },
247 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#285a82.#6e3ca0", c6: "#141414.#141414", c7: "#8cc8f0.#be96fa", c8: "#bee6ff.#dcb4ff", c9: "#78a0c8.#a06ed2", c10: "#aaaaaa.#aaaaaa", c11: "#b43c00.#b43c00", c12: "#324678.#6e3ca0", c13: "#4682b4.#a06ed2", c14: "#64a0c8.#a06ed2", c15: "#0a0a0a.#141414", c16: "#1e2846.#141414", c17: "#283c78.#6e3ca0", c18: "#328cdc.#a06ed2", c19: "#325a96.#6e3ca0", c20: "#6eb4e6.#be96fa", c21: "#3278b4.#6e3ca0", c22: "#1e3246.#141414", c23: "#b4bec8.#aaaaaa", c24: "#326ea0.#6e3ca0", c25: "#64a0d2.#a06ed2", c26: "#96c8f0.#be96fa", c27: "#3c5078.#6e3ca0", c28: "#6e6446.#6e3ca0", c29: "#828ca0.#a06ed2", c30: "#f0d2a0.#aaaaaa", c31: "#4678a0.#6e3ca0", c32: "#3c6e96.#6e3ca0", c33: "#96141e.#b43c00", c34: "#d22828.#b43c00", c35: "#326496.#6e3ca0", c36: "#faf0c8.#ffffff", c37: "#dc4650.#b43c00", c38: "#e6646e.#aaaaaa", c39: "#fff0d2.#ffffff", c40: "#0a0a28.#141414", c41: "#fffae6.#ffffff", c42: "#fff0c8.#ffffff", c43: "#d2b482.#aaaaaa", c44: "#c8b482.#aaaaaa", c45: "#b4b4e6.#be96fa", c46: "#a08c64.#aaaaaa", c47: "#3c465a.#6e3ca0", c48: "#32321e.#141414", c49: "#782832.#b43c00", c50: "#aa3c50.#b43c00", c51: "#e66e78.#aaaaaa", c52: "#28466e.#6e3ca0", c53: "#dcdcdc.#dcb4ff" },
248 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#465a3c.#786e32", c6: "#aac8a0.#e6d296", c7: "#141414.#141414", c8: "#dce6c8.#faf0be", c9: "#78a064.#b4a078", c10: "#c8c8c8.#c8c8c8", c11: "#787878.#787878", c12: "#962800.#962800", c13: "#d25000.#d25000", c14: "#1e78be.#a06ebe", c15: "#00468c.#823c96", c16: "#46a0e6.#c896dc", c17: "#786450.#787878", c18: "#b4a05a.#b4a078", c19: "#ffe65a.#e6d296", c20: "#32323c.#786e32", c21: "#464664.#786e32", c22: "#3c3c6e.#786e32", c23: "#78aafa.#c896dc", c24: "#6478b4.#787878", c25: "#0a0a0a.#141414", c26: "#285082.#823c96", c27: "#5082c8.#c896dc", c28: "#1e1e28.#141414", c29: "#6eb4dc.#c896dc", c30: "#d2aa3c.#b4a078", c31: "#826e28.#786e32", c32: "#64a0b4.#c896dc", c33: "#6e8278.#787878", c34: "#e64650.#d25000", c35: "#963c50.#787878", c36: "#6e785a.#787878", c37: "#d2d2d2.#c8c8c8", c38: "#501e0a.#141414", c39: "#aa283c.#962800", c40: "#3c5a6e.#786e32", c41: "#3c505a.#786e32", c42: "#323228.#141414", c43: "#3c4650.#786e32", c44: "#50505a.#786e32", c45: "#d27882.#787878", c46: "#f08296.#c8c8c8", c47: "#3c3c46.#786e32", c48: "#646478.#787878", c49: "#c8283c.#d25000", c50: "#f07882.#e6d296", c51: "#a0c8ff.#c8c8c8", c52: "#e6c86e.#e6d296", c53: "#282828.#141414", c54: "#fafaf0.#ffffff", c55: "#78c8f0.#c896dc", c56: "#284682.#823c96", c57: "#3c3c64.#786e32", c58: "#284664.#786e32", c59: "#64b4d2.#c896dc", c60: "#3c78b4.#a06ebe", c61: "#6e500a.#962800", c62: "#ffd23c.#e6d296", c63: "#bea032.#b4a078", c64: "#323246.#786e32", c65: "#961428.#962800", c66: "#c82828.#d25000", c67: "#1e1e32.#141414", c68: "#46465a.#786e32" },
249 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#a0aae6.#a0b4fa", c6: "#647878.#6478be", c7: "#d2e6fa.#dcf0ff", c8: "#141414.#141414", c9: "#28328c.#96143c", c10: "#505aaa.#dc5a8c", c11: "#b4c8fa.#bed2ff", c12: "#8282c8.#ff8cbe", c13: "#78a0fa.#f0b4c8", c14: "#5a78ff.#ff78a0", c15: "#003c82.#aa2846", c16: "#a03c46.#a03c00", c17: "#f0463c.#f05a00", c18: "#0064be.#d2508c", c19: "#786450.#6478be", c20: "#b4a05a.#6478be", c21: "#ffe65a.#f05a00", c22: "#32323c.#141414", c23: "#464664.#96143c", c24: "#78aafa.#f0b4c8", c25: "#646478.#6478be", c26: "#6478b4.#dc5a8c", c27: "#963c50.#a03c00", c28: "#e64650.#f05a00", c29: "#dcdcdc.#dcf0ff", c30: "#fafafa.#ffffff", c31: "#464678.#96143c", c32: "#b4b4b4.#a0b4fa", c33: "#0a0a0a.#141414", c34: "#781432.#a03c00" },
250 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#149614.#b41e0a", c6: "#3cd250.#ff5a14", c7: "#960a00.#a04600", c8: "#141414.#141414", c9: "#ffaa00.#ffff3c", c10: "#ff5a14.#ffc800", c11: "#b4ffbe.#ffaa00", c12: "#be3c14.#e68c00", c13: "#a06400.#787878", c14: "#fff082.#e6e6f0", c15: "#ffdc00.#c8c8d2", c16: "#dcaa00.#a0a0aa", c17: "#c8c8c8.#c8c8c8", c18: "#6e6e6e.#6e6e6e", c19: "#a0141e.#a04600", c20: "#e67882.#c8c8c8", c21: "#ffc8c8.#c8c8c8", c22: "#ffaaa0.#c8c8c8", c23: "#6e5064.#6e6e6e", c24: "#0a0a0a.#141414", c25: "#14468c.#6e6e6e", c26: "#e6e6e6.#ffffff", c27: "#1478c8.#6e6e6e", c28: "#be505a.#e68c00", c29: "#14b4f0.#ff5a14", c30: "#3282ff.#6e6e6e", c31: "#f08ca0.#c8c8c8", c32: "#c8f0ff.#ffffff", c33: "#dc6e64.#ffc800", c34: "#500a14.#141414", c35: "#fafafa.#ffffff", c36: "#d2d2d2.#c8c8c8", c37: "#a0320a.#e68c00", c38: "#8c141e.#a04600", c39: "#281e1e.#141414", c40: "#8c2832.#a04600", c41: "#f0b4b4.#c8c8c8", c42: "#fad2d2.#c8c8c8", c43: "#783c14.#787878", c44: "#d28296.#c8c8c8", c45: "#325028.#141414", c46: "#1e8c28.#b41e0a", c47: "#286e28.#b41e0a", c48: "#fffafa.#ffffff", c49: "#ffc8d2.#c8c8c8", c50: "#146478.#6e6e6e", c51: "#3c32a0.#6e6e6e", c52: "#7864dc.#6e6e6e", c53: "#1e96aa.#6e6e6e", c54: "#9682ff.#c8c8c8", c55: "#e63232.#e68c00", c56: "#14c8be.#ff5a14", c57: "#d23c32.#e68c00", c58: "#c83232.#e68c00", c59: "#96320a.#a04600", c60: "#c8beff.#c8c8c8" },
251 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#78a032.#c864a0", c6: "#a0dc50.#fa82a0", c7: "#141414.#141414", c8: "#508caa.#50aa50", c9: "#8cb4c8.#78dc6e", c10: "#0064b4.#28783c", c11: "#46781e.#a03250", c12: "#c8dce6.#befab4", c13: "#ffffdc.#ffdce6", c14: "#b4c85a.#c8aab4", c15: "#dcf096.#e6c8c8", c16: "#6e7882.#6e7882", c17: "#505a64.#6e7882", c18: "#8c96a0.#78dc6e", c19: "#d2d2d2.#befab4", c20: "#3c3c46.#a03250", c21: "#505a6e.#6e7882", c22: "#0a0a0a.#141414", c23: "#c8c8d2.#befab4", c24: "#645050.#6e7882", c25: "#786e6e.#6e7882", c26: "#3c2828.#141414", c27: "#dcd2d2.#befab4", c28: "#a08c8c.#6e7882", c29: "#beaaaa.#78dc6e", c30: "#463c3c.#a03250", c31: "#326ea0.#50aa50", c32: "#6ebeff.#78dc6e", c33: "#505064.#6e7882", c34: "#464646.#a03250", c35: "#787896.#6e7882" },
252 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#32468c.#327846", c6: "#6eb4ff.#96fa82", c7: "#64a0fa.#78d26e", c8: "#4678e6.#50a03c", c9: "#141414.#141414", c10: "#be3c8c.#be503c", c11: "#dc5a96.#dc6e5a", c12: "#a0d2ff.#c8ffbe", c13: "#3c6ed2.#3c8228", c14: "#dcf0ff.#faffe6", c15: "#1e285a.#145000", c16: "#6e6e6e.#327846", c17: "#ffffff.#faffe6", c18: "#0a0a0a.#141414", c19: "#c8d2d2.#faffe6", c20: "#788296.#3c8228", c21: "#464646.#145000", c22: "#6e646e.#327846", c23: "#c8c8d2.#c8ffbe", c24: "#a0a0aa.#dc6e5a", c25: "#6e6e78.#327846", c26: "#787882.#327846", c27: "#c8d2dc.#faffe6", c28: "#8c8c8c.#be503c", c29: "#968c8c.#dc6e5a", c30: "#aaaaaa.#c8ffbe", c31: "#dcd2d2.#faffe6", c32: "#3c3c46.#145000", c33: "#828ca0.#3c8228", c34: "#3c4650.#145000", c35: "#3c4646.#145000", c36: "#46505a.#327846", c37: "#323c3c.#145000", c38: "#282832.#141414", c39: "#6ebeff.#96fa82", c40: "#b4aaaa.#dc6e5a", c41: "#3c3c3c.#145000", c42: "#aa3c46.#be503c", c43: "#beaaaa.#dc6e5a", c44: "#aaaab4.#c8ffbe", c45: "#dc6e6e.#dc6e5a", c46: "#78c8ff.#96fa82", c47: "#aadcff.#c8ffbe", c48: "#787878.#327846", c49: "#969696.#dc6e5a", c50: "#64323c.#145000", c51: "#b43c50.#be503c", c52: "#e67878.#dc6e5a", c53: "#964664.#be503c", c54: "#d278aa.#dc6e5a" },
253 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c5064.#78005a", c6: "#3c78a0.#a01482", c7: "#a0d2f0.#ffa0fa", c8: "#6ebedc.#e678d2", c9: "#000000.#141414", c10: "#46a0be.#be3cc8", c11: "#a0323c.#a0323c", c12: "#78283c.#78283c", c13: "#dc5a64.#dc5a64", c14: "#827878.#827878", c15: "#c8c8c8.#c8c8c8", c16: "#783c3c.#78283c", c17: "#1e1e1e.#141414", c18: "#c85a46.#dc5a64", c19: "#f0783c.#dc5a64", c20: "#ff9678.#dc5a64", c21: "#503232.#78283c", c22: "#784646.#78283c", c23: "#ffffff.#c8c8c8", c24: "#ffc8be.#c8c8c8", c25: "#0a0a0a.#141414", c26: "#462828.#78283c", c27: "#50140a.#78283c", c28: "#6e1e0a.#78283c", c29: "#823c3c.#78283c", c30: "#461e1e.#78283c", c31: "#782828.#78283c", c32: "#9696a0.#827878", c33: "#3c3c32.#78005a", c34: "#828282.#827878", c35: "#a0aaa0.#c8c8c8", c36: "#646464.#827878", c37: "#505050.#78005a", c38: "#6e6464.#827878", c39: "#3c140a.#141414", c40: "#d2beb4.#c8c8c8", c41: "#a03c46.#a0323c", c42: "#b4a096.#c8c8c8", c43: "#968c8c.#827878", c44: "#aa463c.#a0323c", c45: "#f07846.#dc5a64", c46: "#141414.#141414", c47: "#aa3214.#a0323c", c48: "#3c1e0a.#141414", c49: "#28140a.#141414", c50: "#64281e.#78283c", c51: "#5a5a5a.#78005a", c52: "#e6e6dc.#c8c8c8", c53: "#d2d2c8.#c8c8c8", c54: "#b4a0a0.#c8c8c8", c55: "#464632.#78005a", c56: "#c87878.#dc5a64", c57: "#ffbe78.#c8c8c8", c58: "#f0a046.#dc5a64", c59: "#c84632.#a0323c", c60: "#f0f0e6.#c8c8c8", c61: "#3c3c28.#78005a" },
254 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#78463c.#78463c", c6: "#aa503c.#aa503c", c7: "#ff785a.#ff3c8c", c8: "#141414.#000000", c9: "#dcbe78.#ffb48c", c10: "#fff0a0.#fff0d2", c11: "#8c6e3c.#a0503c", c12: "#501e6e.#960032", c13: "#823caa.#c83c82", c14: "#b464e6.#e678aa", c15: "#a046c8.#d25a96", c16: "#be9678.#ffa08c", c17: "#aaaaa0.#aaaaa0", c18: "#465046.#78463c", c19: "#6e7878.#a0503c", c20: "#0a0a0a.#000000", c21: "#6ec86e.#aaaaa0", c22: "#469646.#a0503c", c23: "#3c3c3c.#78463c", c24: "#32323c.#000000", c25: "#96dc82.#aaaaa0", c26: "#787878.#a0503c", c27: "#787850.#a0503c", c28: "#326432.#78463c", c29: "#beaa78.#ffa08c", c30: "#e6d28c.#ffb48c", c31: "#ffffa0.#fff0d2", c32: "#282832.#000000", c33: "#786e3c.#a0503c", c34: "#b4b4b4.#aaaaa0", c35: "#505050.#78463c", c36: "#d2d2d2.#fff0d2", c37: "#328c64.#a0503c", c38: "#bebedc.#aaaaa0", c39: "#fffab4.#fff0d2", c40: "#8ce6b4.#aaaaa0", c41: "#fafafa.#ffffff", c42: "#6e643c.#78463c", c43: "#828282.#ffa08c", c44: "#a0a0a0.#aaaaa0", c45: "#dcdc82.#ffb48c", c46: "#78783c.#a0503c", c47: "#824632.#78463c", c48: "#64c896.#aaaaa0", c49: "#b4503c.#aa503c", c50: "#faa08c.#ffb48c", c51: "#faf0e6.#ffffff", c52: "#463c32.#78463c", c53: "#fafaaa.#fff0d2", c54: "#283c28.#000000", c55: "#e6e682.#fff0d2", c56: "#fafaa0.#fff0d2", c57: "#fffae6.#ffffff", c58: "#faf0dc.#ffffff", c59: "#64281e.#78463c", c60: "#b4463c.#aa503c" },
255 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5a3c64.#786400", c6: "#825082.#aaa01e", c7: "#b464b4.#dcc83c", c8: "#321e3c.#32321e", c9: "#141414.#0a0a0a", c10: "#463c5a.#6e6e28", c11: "#6e4696.#a0a032", c12: "#c8a000.#c8a000", c13: "#963c5a.#963c5a", c14: "#fadc3c.#fadc3c", c15: "#f03c14.#f03c14", c16: "#505078.#786400", c17: "#b4c8ff.#ffffff", c18: "#0a0a0a.#0a0a0a", c19: "#d2dcff.#ffffff", c20: "#82a0c8.#dcc83c", c21: "#aaaac8.#dcc83c", c22: "#50506e.#786400", c23: "#b4d2ff.#ffffff", c24: "#a0aac8.#dcc83c", c25: "#b4c8fa.#ffffff", c26: "#82a0be.#dcc83c", c27: "#c8dcff.#ffffff", c28: "#645046.#786400", c29: "#967864.#aaa01e", c30: "#aaa06e.#aaa01e", c31: "#f0f0a0.#ffffff", c32: "#d2c882.#fadc3c", c33: "#f0f0aa.#ffffff", c34: "#dcd282.#fadc3c", c35: "#b4aa6e.#dcc83c", c36: "#b4a06e.#dcc83c", c37: "#e6e6a0.#ffffff", c38: "#aa9664.#aaa01e", c39: "#e6dce6.#ffffff", c40: "#d2d282.#fadc3c", c41: "#8c7864.#aaa01e", c42: "#dcdcdc.#ffffff", c43: "#ff7882.#dcc83c", c44: "#fafafa.#ffffff", c45: "#f0f0f0.#ffffff", c46: "#e67864.#dcc83c", c47: "#c85078.#963c5a", c48: "#b46e6e.#aaa01e", c49: "#b45a5a.#963c5a", c50: "#ff6e78.#dcc83c", c51: "#823c50.#963c5a", c52: "#c8506e.#963c5a", c53: "#fa7882.#dcc83c" },
256 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#281e3c.#6e1478", c6: "#3c5aa0.#d246c8", c7: "#3c3c5a.#963278", c8: "#141414.#141414", c9: "#a0a0b4.#a0a0b4", c10: "#aa963c.#aa963c", c11: "#fadc3c.#fadc3c", c12: "#dc505a.#dc505a", c13: "#5a5a3c.#5a5a3c", c14: "#f0f0fa.#f0f0fa", c15: "#461e1e.#461e1e", c16: "#8c323c.#8c323c", c17: "#32323c.#32323c", c18: "#96d2ff.#a0a0b4", c19: "#64aae6.#a0a0b4", c20: "#465064.#505050", c21: "#0a0a0a.#141414", c22: "#829696.#a0a0b4", c23: "#fafaff.#ffffff", c24: "#d2c8dc.#f0f0fa", c25: "#5a82aa.#d246c8", c26: "#464664.#963278", c27: "#f0e6fa.#f0f0fa", c28: "#dcd2f0.#f0f0fa", c29: "#828c8c.#a0a0b4", c30: "#fafafa.#ffffff", c31: "#827850.#aa963c", c32: "#f0dc6e.#fadc3c", c33: "#bea078.#aa963c", c34: "#aaa0be.#a0a0b4", c35: "#6e1e28.#461e1e", c36: "#d25a5a.#dc505a", c37: "#4678aa.#d246c8", c38: "#dc788c.#dc505a", c39: "#d2d2dc.#f0f0fa", c40: "#6ea0d2.#a0a0b4", c41: "#f0d26e.#fadc3c", c42: "#bea046.#aa963c", c43: "#82283c.#8c323c", c44: "#8c5064.#8c323c", c45: "#96d2fa.#a0a0b4", c46: "#c85046.#dc505a", c47: "#78140a.#461e1e", c48: "#e67878.#dc505a", c49: "#d2648c.#dc505a", c50: "#dc786e.#dc505a", c51: "#a04614.#8c323c", c52: "#967846.#aa963c", c53: "#d27846.#dc505a", c54: "#c87882.#dc505a", c55: "#f0a0b4.#a0a0b4", c56: "#be7878.#dc505a", c57: "#3c463c.#32323c" },
257 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#325a14.#96323c", c6: "#5a8c5a.#c82864", c7: "#a0dc78.#fa96aa", c8: "#46c83c.#e65a78", c9: "#000000.#000000", c10: "#826e3c.#968c3c", c11: "#503c32.#5a4628", c12: "#aa825a.#beaa5a", c13: "#c8a046.#d2c846", c14: "#fff078.#ffff8c", c15: "#fac83c.#ffdc46", c16: "#a03c46.#a03c46", c17: "#0a0a0a.#000000", c18: "#a0a0b4.#fa96aa", c19: "#6e6e82.#c82864", c20: "#503c14.#5a4628", c21: "#644632.#5a4628", c22: "#aa8c78.#beaa5a", c23: "#8c6e50.#968c3c", c24: "#3c3c46.#5a4628", c25: "#a0a0aa.#fa96aa", c26: "#c8c8dc.#fa96aa", c27: "#141414.#000000", c28: "#321e0a.#5a4628", c29: "#463c28.#5a4628", c30: "#8c641e.#968c3c", c31: "#e6c878.#ffff8c", c32: "#ffffff.#ffff8c", c33: "#dca046.#d2c846", c34: "#b48232.#beaa5a", c35: "#5a4664.#5a4628", c36: "#a07846.#beaa5a", c37: "#963214.#a03c46", c38: "#d25a32.#a03c46", c39: "#645014.#5a4628", c40: "#a03232.#a03c46", c41: "#282828.#5a4628", c42: "#504632.#5a4628", c43: "#3c321e.#5a4628", c44: "#786e64.#968c3c", c45: "#505046.#5a4628", c46: "#a0968c.#beaa5a" },
258 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#6e646e.#6e646e", c6: "#dcd2dc.#dcd2dc", c7: "#beaabe.#beaabe", c8: "#000000.#000000", c9: "#324696.#3c966e", c10: "#28325a.#285a3c", c11: "#506ed2.#5ac88c", c12: "#781e46.#783c78", c13: "#dc78aa.#e6a0be", c14: "#ffc8d2.#ffd2dc", c15: "#c81e46.#c81ea0", c16: "#f05a3c.#f06e32", c17: "#505064.#6e646e", c18: "#141414.#000000", c19: "#d2d2d2.#dcd2dc", c20: "#aaaab4.#beaabe", c21: "#0a0a0a.#000000", c22: "#787882.#6e646e", c23: "#505078.#6e646e", c24: "#828278.#6e646e", c25: "#f0f0d2.#dcd2dc", c26: "#f0f0e6.#ffffff", c27: "#c8c8b4.#beaabe", c28: "#c8c8c8.#dcd2dc", c29: "#a096aa.#beaabe", c30: "#645a46.#6e646e", c31: "#505a50.#6e646e", c32: "#46463c.#285a3c", c33: "#787864.#6e646e", c34: "#c8c80a.#f06e32", c35: "#787878.#6e646e", c36: "#463c3c.#285a3c", c37: "#ffffc8.#ffffff", c38: "#fafa0a.#f06e32", c39: "#f0e664.#ffd2dc", c40: "#bebe0a.#f06e32", c41: "#646464.#6e646e", c42: "#786e64.#6e646e", c43: "#968c82.#6e646e", c44: "#f0f00a.#f06e32", c45: "#be5a1e.#f06e32", c46: "#fa7846.#f06e32", c47: "#aa283c.#c81ea0", c48: "#50463c.#285a3c", c49: "#be3c50.#c81ea0", c50: "#64323c.#783c78", c51: "#b45a1e.#f06e32", c52: "#6e3c3c.#783c78", c53: "#c85078.#e6a0be" },
259 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#a05a78.#a05a8c", c6: "#ffc8d2.#ffd2fa", c7: "#141414.#141414", c8: "#c88ca0.#dc96c8", c9: "#783c5a.#6e3c6e", c10: "#dc6ea0.#e696c8", c11: "#a05078.#be6ebe", c12: "#c8bec8.#d2bedc", c13: "#0a0a0a.#141414", c14: "#464646.#6e3c6e", c15: "#6e6e78.#a05a8c", c16: "#282828.#141414", c17: "#d2dcf0.#d2bedc", c18: "#64646e.#6e3c6e", c19: "#d2dce6.#d2bedc", c20: "#464650.#6e3c6e", c21: "#8c8c8c.#a05a8c", c22: "#969696.#dc96c8", c23: "#28aabe.#a05a8c", c24: "#a0a0aa.#dc96c8", c25: "#fafafa.#ffffff", c26: "#326464.#6e3c6e", c27: "#28aab4.#a05a8c", c28: "#1ebed2.#d2bedc", c29: "#0a646e.#6e3c6e", c30: "#96dce6.#d2bedc", c31: "#8c8cb4.#dc96c8" },
260 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#1e5a78.#3c64be", c6: "#143c3c.#324682", c7: "#3278a0.#3c82dc", c8: "#000000.#000000", c9: "#3296b4.#50aaf0", c10: "#c8c8c8.#c8c8c8", c11: "#504614.#504614", c12: "#b4b464.#b4b464", c13: "#f0e682.#f0e682", c14: "#0a0a0a.#000000", c15: "#6e6e78.#3c82dc", c16: "#464646.#504614", c17: "#464650.#324682", c18: "#282828.#324682", c19: "#d2dcf0.#c8c8c8", c20: "#141414.#000000", c21: "#a0a0aa.#c8c8c8", c22: "#64646e.#3c64be", c23: "#d2dce6.#c8c8c8", c24: "#326464.#3c64be", c25: "#28aabe.#50aaf0", c26: "#6e6e82.#3c82dc", c27: "#8c8c8c.#b4b464", c28: "#fafafa.#ffffff", c29: "#28aab4.#50aaf0", c30: "#288c96.#3c82dc", c31: "#78788c.#3c82dc", c32: "#9696b4.#c8c8c8", c33: "#1ebed2.#50aaf0", c34: "#0a646e.#3c64be", c35: "#288c8c.#3c82dc", c36: "#8c8cb4.#c8c8c8", c37: "#145064.#3c64be", c38: "#1e8296.#3c82dc", c39: "#1e788c.#3c82dc", c40: "#3ca0be.#50aaf0", c41: "#6e6e8c.#3c82dc", c42: "#0a465a.#324682" },
261 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#143c78.#005078", c6: "#1450aa.#0082aa", c7: "#3c78c8.#0aa0c8", c8: "#64a0d2.#6eb4e6", c9: "#142850.#003c64", c10: "#000000.#000000", c11: "#a0b4dc.#6eaadc", c12: "#b4dcff.#a0d2f0", c13: "#7896a0.#7896a0", c14: "#466478.#466478", c15: "#6e1e3c.#003c64", c16: "#aa143c.#466478", c17: "#46141e.#003c64", c18: "#0a0a0a.#000000", c19: "#3c3c50.#003c64", c20: "#1e1e32.#003c64", c21: "#5a5a78.#466478", c22: "#8c143c.#466478", c23: "#32323c.#003c64", c24: "#dc3c64.#7896a0", c25: "#8c82aa.#7896a0", c26: "#aa1446.#466478", c27: "#46465a.#466478", c28: "#141414.#000000", c29: "#9696b4.#7896a0", c30: "#464650.#466478", c31: "#14b4b4.#0aa0c8", c32: "#328282.#466478", c33: "#d2466e.#7896a0", c34: "#787896.#7896a0", c35: "#323246.#003c64", c36: "#d23c6e.#7896a0", c37: "#14141e.#000000", c38: "#a09696.#7896a0", c39: "#3c0a14.#000000", c40: "#e6e6e6.#ffffff", c41: "#bed2dc.#a0d2f0", c42: "#dcdcdc.#a0d2f0", c43: "#a01e28.#466478", c44: "#d25a5a.#7896a0", c45: "#d2141e.#466478", c46: "#641e3c.#003c64", c47: "#c8285a.#466478", c48: "#505a6e.#466478", c49: "#64648c.#466478", c50: "#3c4650.#003c64", c51: "#0a96dc.#0aa0c8", c52: "#fafafa.#ffffff", c53: "#3cb4e6.#6eb4e6", c54: "#781e28.#003c64" },
262 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#821e50.#a06e14", c6: "#c82878.#dcaa5a", c7: "#ff96a0.#fffaa0", c8: "#fa5078.#ffe664", c9: "#141414.#141414", c10: "#3c4682.#c850a0", c11: "#7882be.#f0a0c8", c12: "#6e6eaa.#e678a0", c13: "#283250.#783c6e", c14: "#c88c0a.#b48c28", c15: "#ffd23c.#f0c864", c16: "#c8bec8.#c8bec8", c17: "#6e6478.#6e6478", c18: "#dc503c.#ffe664", c19: "#8c280a.#a06e14", c20: "#ff963c.#f0c864", c21: "#ffc864.#f0c864", c22: "#ff9646.#f0c864", c23: "#144632.#783c6e", c24: "#e63c0a.#b48c28", c25: "#3ca078.#6e6478", c26: "#0a3c8c.#c850a0", c27: "#fa963c.#f0c864", c28: "#96c8dc.#c8bec8", c29: "#148cb4.#c850a0", c30: "#0a0a0a.#141414", c31: "#ffd20a.#f0c864", c32: "#faa00a.#b48c28", c33: "#32aaf0.#f0a0c8", c34: "#1e0a0a.#141414", c35: "#b4b4b4.#c8bec8", c36: "#fa1e0a.#ffe664", c37: "#ffa00a.#b48c28", c38: "#ffd278.#f0c864", c39: "#f0c85a.#f0c864", c40: "#fff00a.#f0c864", c41: "#e6aa5a.#f0c864", c42: "#f0646e.#ffe664", c43: "#ff828c.#fffaa0", c44: "#b45a28.#b48c28", c45: "#c8c8c8.#c8bec8", c46: "#dc3c0a.#b48c28", c47: "#f0a00a.#b48c28", c48: "#fad20a.#f0c864", c49: "#fa8c3c.#f0c864", c50: "#fabe64.#f0c864", c51: "#fa9646.#f0c864", c52: "#0a1e50.#783c6e", c53: "#dc460a.#b48c28", c54: "#fae6fa.#ffffff", c55: "#3c140a.#141414", c56: "#dcaa5a.#f0c864", c57: "#fafafa.#ffffff", c58: "#8cc8dc.#c8bec8", c59: "#ffd26e.#f0c864", c60: "#ffbe3c.#f0c864", c61: "#dca014.#b48c28", c62: "#dc4628.#b48c28", c63: "#ff8c32.#b48c28", c64: "#821e0a.#a06e14", c65: "#ffbe5a.#f0c864", c66: "#a09696.#f0a0c8", c67: "#0a3c28.#141414", c68: "#32a06e.#6e6478", c69: "#e6280a.#b48c28", c70: "#820a3c.#a06e14", c71: "#dc6ea0.#fffaa0", c72: "#a05078.#6e6478", c73: "#ffc832.#f0c864", c74: "#e6aa50.#f0c864", c75: "#fad264.#f0c864", c76: "#78500a.#a06e14", c77: "#be5a78.#dcaa5a", c78: "#fadc96.#fffaa0", c79: "#e68246.#b48c28", c80: "#646464.#6e6478", c81: "#0a0a14.#141414" },
263 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#aa8214.#beb450", c6: "#fac850.#faf08c", c7: "#645a6e.#78505a", c8: "#141414.#141414", c9: "#aaaab4.#beaab4", c10: "#787882.#8c7882", c11: "#3c3c50.#503c50", c12: "#8296c8.#c8c8d2", c13: "#a0bef0.#dce6e6", c14: "#6e78a0.#b4b4be", c15: "#d24628.#64b4c8", c16: "#a03c28.#5a96aa", c17: "#782828.#5a7882", c18: "#787878.#8c7882", c19: "#e6dce6.#ffffff", c20: "#783c14.#5a7882", c21: "#8c3c3c.#5a96aa", c22: "#aaa0aa.#beaab4", c23: "#ffaabe.#beaab4", c24: "#c86e64.#64b4c8", c25: "#fa7896.#beaab4", c26: "#be7896.#beaab4", c27: "#824646.#5a96aa", c28: "#0a0a0a.#141414", c29: "#644664.#78505a", c30: "#dc8296.#beaab4", c31: "#6e6e6e.#78505a", c32: "#966414.#beb450", c33: "#8c3c50.#5a96aa", c34: "#f0788c.#beaab4", c35: "#6e3c14.#5a7882", c36: "#c86478.#8c7882", c37: "#a06e1e.#beb450", c38: "#faaabe.#beaab4", c39: "#1e5a64.#503c50", c40: "#d26464.#64b4c8", c41: "#50a08c.#b4b4be", c42: "#282832.#141414", c43: "#c8645a.#64b4c8", c44: "#e63232.#64b4c8", c45: "#0a2828.#141414", c46: "#1e505a.#503c50", c47: "#144646.#503c50", c48: "#a0641e.#beb450", c49: "#6e460a.#5a7882", c50: "#dc3232.#64b4c8", c51: "#822832.#5a7882", c52: "#aa3c46.#5a96aa", c53: "#3caad2.#c8c8d2", c54: "#0a78a0.#b4b4be", c55: "#beaabe.#beaab4", c56: "#d26e64.#64b4c8", c57: "#8c4646.#5a96aa", c58: "#784614.#5a7882", c59: "#ffdcc8.#ffffff", c60: "#78461e.#5a7882", c61: "#50aa8c.#b4b4be", c62: "#285a64.#503c50", c63: "#1478c8.#b4b4be", c64: "#14468c.#503c50", c65: "#96dcc8.#dce6e6", c66: "#14b4f0.#c8c8d2" },
264 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#963c64.#a0a00a", c6: "#be5078.#c8be46", c7: "#ffa0b4.#ffff8c", c8: "#e67896.#fafa64", c9: "#141414.#141414", c10: "#64283c.#787800", c11: "#963c3c.#963c3c", c12: "#fa785a.#fa785a", c13: "#c85a5a.#c85a5a", c14: "#ffb48c.#ffb48c", c15: "#d2c8dc.#e6d2c8", c16: "#8c8caa.#b49678", c17: "#ffe678.#fffad2", c18: "#c8aa46.#fad28c", c19: "#78a046.#fad28c", c20: "#0a0a0a.#141414", c21: "#b4f078.#fffad2", c22: "#3c5a28.#787800", c23: "#d2e6b4.#e6d2c8", c24: "#78d25a.#fad28c", c25: "#a0be78.#fad28c", c26: "#a03246.#963c3c", c27: "#fa5a82.#fafa64", c28: "#325a28.#787800", c29: "#96820a.#963c3c", c30: "#e6be3c.#fad28c", c31: "#fff06e.#fffad2", c32: "#1e5046.#141414", c33: "#327864.#787800", c34: "#469678.#b49678", c35: "#e6be32.#fad28c", c36: "#c80a32.#963c3c", c37: "#fa6464.#fa785a", c38: "#287864.#787800" },
265 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#6e6478.#78785a", c6: "#3c3c46.#6e643c", c7: "#141414.#141414", c8: "#f0f0ff.#fffaf0", c9: "#503200.#5a461e", c10: "#5a4664.#969678", c11: "#28283c.#28283c", c12: "#f05000.#e6dc3c", c13: "#786e78.#bebea0", c14: "#963c00.#8c783c", c15: "#968caa.#b4aa82", c16: "#c8c8dc.#dcd2c8", c17: "#aa2800.#aa1e3c", c18: "#be3c00.#b4a03c", c19: "#0a0a0a.#141414", c20: "#3c5028.#6e643c", c21: "#a0dc78.#b4aa82", c22: "#78c85a.#bebea0", c23: "#5a9650.#bebea0", c24: "#50963c.#bebea0", c25: "#96dc6e.#b4aa82", c26: "#285a14.#5a461e", c27: "#a03246.#8c783c", c28: "#6ebe5a.#bebea0", c29: "#ffa0be.#dcd2c8", c30: "#fa5a82.#b4aa82", c31: "#285032.#6e643c", c32: "#325032.#6e643c", c33: "#d2e6b4.#dcd2c8", c34: "#a0b4a0.#b4aa82", c35: "#285a96.#969678", c36: "#5096d2.#b4aa82", c37: "#64beff.#dcd2c8", c38: "#6e8c64.#bebea0", c39: "#dce6b4.#dcd2c8", c40: "#aac88c.#b4aa82", c41: "#ffffff.#fffaf0", c42: "#282828.#28283c", c43: "#1e1e1e.#141414", c44: "#32503c.#6e643c", c45: "#c8a01e.#e6dc3c", c46: "#fae646.#dcd2c8", c47: "#1e321e.#141414", c48: "#50823c.#969678", c49: "#c83c3c.#b4a03c", c50: "#648250.#bebea0", c51: "#ff7882.#b4aa82", c52: "#fa5064.#e6dc3c", c53: "#0a1e14.#141414", c54: "#f0be50.#e6dc3c", c55: "#ffdc78.#dcd2c8", c56: "#0a6ec8.#78785a", c57: "#1ec8ff.#b4aa82", c58: "#0aa0f0.#b4aa82", c59: "#5a963c.#bebea0", c60: "#649646.#bebea0", c61: "#fad246.#e6dc3c", c62: "#64b4ff.#b4aa82" },
266 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#143c64.#146414", c6: "#50a0c8.#6ec846", c7: "#3c78aa.#3cb432", c8: "#000000.#000000", c9: "#285a82.#32821e", c10: "#464650.#464650", c11: "#32323c.#32323c", c12: "#5a143c.#6e143c", c13: "#be1e6e.#be1e3c", c14: "#d25a96.#c8465a", c15: "#c8d2e6.#ffffff", c16: "#5a5a64.#464650", c17: "#8c6e1e.#464650", c18: "#ffdc0a.#c8465a", c19: "#141414.#000000", c20: "#783ca0.#3cb432", c21: "#46286e.#464650", c22: "#643282.#464650", c23: "#966ee6.#6ec846", c24: "#c8b40a.#c8465a", c25: "#8c96a0.#6ec846", c26: "#c8b4ff.#ffffff", c27: "#46326e.#464650", c28: "#0a0a0a.#000000", c29: "#d2b40a.#c8465a", c30: "#50326e.#464650", c31: "#642882.#464650", c32: "#fadc0a.#c8465a" },
267 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#781400.#004682", c6: "#000000.#000000", c7: "#b43c14.#3296c8", c8: "#fa503c.#64c8f0", c9: "#a08246.#a05a14", c10: "#322828.#322828", c11: "#ffdc1e.#faaa1e", c12: "#5a463c.#5a3c3c", c13: "#fff096.#ffd278", c14: "#c8aa3c.#c8781e", c15: "#b4b4c8.#b4b4c8", c16: "#6e6e6e.#6e6e6e", c17: "#826e5a.#6e6e6e", c18: "#c8a078.#c8781e", c19: "#f0dca0.#ffd278", c20: "#141414.#000000", c21: "#b47846.#a05a14", c22: "#783c3c.#5a3c3c", c23: "#8c5a3c.#a05a14", c24: "#503c3c.#5a3c3c", c25: "#ff8ca0.#b4b4c8", c26: "#0a0a0a.#000000", c27: "#c85a78.#a05a14", c28: "#3c323c.#322828", c29: "#503232.#5a3c3c", c30: "#78323c.#5a3c3c", c31: "#8c5a46.#a05a14", c32: "#783c46.#5a3c3c", c33: "#fafafa.#ffffff", c34: "#f0f0f0.#ffffff" },
268 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#82641e.#be5a64", c6: "#ffc83c.#ffb4c8", c7: "#c8a03c.#fa828c", c8: "#d23232.#e6465a", c9: "#fa6432.#ff8296", c10: "#46463c.#46463c", c11: "#aa3c50.#a03c50", c12: "#6e3228.#643228", c13: "#e63c32.#fa6478", c14: "#141414.#141414", c15: "#ff96a0.#ff96a0", c16: "#c85a6e.#c85a6e", c17: "#c8d2e6.#c8d2e6", c18: "#ffdc28.#ffb4c8", c19: "#fff0a0.#ff96a0", c20: "#786450.#be5a64", c21: "#820a3c.#643228", c22: "#be1e50.#a03c50", c23: "#fa6414.#ff8296", c24: "#0a0a0a.#141414", c25: "#ffa064.#ffb4c8", c26: "#505064.#46463c", c27: "#c8c8d2.#c8d2e6", c28: "#8c8ca0.#c85a6e", c29: "#c8aa78.#fa828c", c30: "#786e50.#be5a64", c31: "#be3c3c.#e6465a", c32: "#ffe6c8.#ffffff", c33: "#bea050.#fa828c", c34: "#785a3c.#be5a64", c35: "#c83c3c.#e6465a", c36: "#be285a.#a03c50", c37: "#aa1446.#a03c50", c38: "#fa9664.#ff96a0", c39: "#8c0a32.#643228", c40: "#fa641e.#ff8296", c41: "#d2d2d2.#c8d2e6", c42: "#fafafa.#ffffff", c43: "#be4646.#a03c50", c44: "#fafffa.#ffffff", c45: "#d2d2dc.#c8d2e6", c46: "#5a5064.#46463c", c47: "#be3c46.#a03c50", c48: "#e68ca0.#ff96a0", c49: "#ffbec8.#ff96a0", c50: "#820a46.#643228" },
269 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#82a0b4.#b4a078", c6: "#783228.#1464be", c7: "#f0f0ff.#ffffff", c8: "#465a78.#82785a", c9: "#c84632.#2896e6", c10: "#bec8dc.#d2d2a0", c11: "#141414.#141414", c12: "#3c82f0.#dc3c3c", c13: "#96b4ff.#e68264", c14: "#be8282.#78b4d2", c15: "#505aaa.#be140a", c16: "#786446.#1464be", c17: "#5a463c.#1464be", c18: "#faf0d2.#ffffff", c19: "#f0d2b4.#d2d2a0", c20: "#c8a082.#78b4d2", c21: "#5a4646.#1464be", c22: "#0a0a0a.#141414", c23: "#82785a.#78b4d2", c24: "#644632.#1464be", c25: "#6e5a50.#82785a", c26: "#f0dcbe.#d2d2a0", c27: "#f0c88c.#78b4d2", c28: "#ffe6aa.#ffffff", c29: "#d2a05a.#78b4d2", c30: "#82a078.#b4a078", c31: "#d2b496.#78b4d2", c32: "#966e32.#2896e6", c33: "#506e3c.#82785a", c34: "#506e46.#82785a", c35: "#c8c896.#d2d2a0", c36: "#96b478.#78b4d2", c37: "#966e28.#2896e6", c38: "#dcaa5a.#78b4d2", c39: "#a0be8c.#b4a078", c40: "#d2d2a0.#d2d2a0", c41: "#644628.#1464be", c42: "#78aa6e.#b4a078", c43: "#8cc882.#b4a078", c44: "#96aa8c.#b4a078", c45: "#5a8246.#82785a", c46: "#dc643c.#2896e6", c47: "#3c5028.#1464be", c48: "#ff7850.#2896e6", c49: "#462832.#1464be", c50: "#a04646.#2896e6", c51: "#dc6464.#78b4d2", c52: "#faf0dc.#ffffff", c53: "#324628.#141414", c54: "#64785a.#82785a", c55: "#3c5032.#1464be", c56: "#647850.#82785a", c57: "#c83c14.#2896e6", c58: "#ff5a1e.#2896e6" },
270 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#1e3c14.#142846", c6: "#141414.#141414", c7: "#3c5a28.#3c5078", c8: "#508246.#5078a0", c9: "#a0aac8.#a0aac8", c10: "#787882.#787882", c11: "#464650.#464650", c12: "#b43214.#a0145a", c13: "#fa5a50.#f01e8c", c14: "#783200.#780a3c", c15: "#ff968c.#fa6eb4", c16: "#c8c8e6.#c8c8e6", c17: "#78a064.#6e96c8", c18: "#282832.#282832", c19: "#3c4678.#464650", c20: "#14325a.#282832", c21: "#a0aad2.#a0aac8", c22: "#0a0a0a.#141414", c23: "#8282aa.#787882", c24: "#0a1e32.#282832", c25: "#645a8c.#787882", c26: "#7878a0.#787882", c27: "#3c468c.#464650", c28: "#504678.#464650", c29: "#3c8caa.#787882", c30: "#78b4d2.#a0aac8", c31: "#b48c0a.#a0145a", c32: "#282828.#282832", c33: "#3c286e.#464650", c34: "#e6be50.#fa6eb4", c35: "#64bee6.#a0aac8", c36: "#3c78aa.#787882", c37: "#fadc1e.#fa6eb4", c38: "#dc960a.#f01e8c", c39: "#283250.#282832", c40: "#283c50.#464650", c41: "#822832.#780a3c", c42: "#aa3c46.#a0145a", c43: "#be646e.#f01e8c", c44: "#b43278.#f01e8c", c45: "#ff78be.#fa6eb4", c46: "#d23c82.#f01e8c", c47: "#f06ea0.#fa6eb4", c48: "#ff82aa.#fa6eb4", c49: "#828c96.#787882", c50: "#323264.#464650", c51: "#9696dc.#a0aac8", c52: "#6464aa.#787882", c53: "#7878b4.#787882", c54: "#46468c.#464650", c55: "#78d2f0.#a0aac8", c56: "#e6b43c.#fa6eb4", c57: "#aae6ff.#c8c8e6", c58: "#f0dc5a.#fa6eb4", c59: "#1e3246.#282832", c60: "#821e3c.#780a3c", c61: "#ffa0be.#fa6eb4", c62: "#f082a0.#fa6eb4", c63: "#c85078.#f01e8c", c64: "#468caa.#787882", c65: "#4678aa.#787882", c66: "#b4960a.#a0145a", c67: "#dcbe3c.#fa6eb4", c68: "#1e1e46.#282832" },
271 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#32645a.#0a966e", c6: "#6ebe8c.#5ae682", c7: "#141414.#141414", c8: "#32a078.#14c878", c9: "#64503c.#64503c", c10: "#5a3c1e.#5a501e", c11: "#f0d2a0.#fad296", c12: "#be9664.#d29646", c13: "#966432.#968232", c14: "#3c2814.#323214", c15: "#f0ffff.#f0ffff", c16: "#826e3c.#826e3c", c17: "#d2b478.#e6b464", c18: "#3c3c3c.#3c3c3c", c19: "#3c8c5a.#14c878", c20: "#32643c.#0a966e", c21: "#5ab478.#5ae682", c22: "#82dca0.#5ae682", c23: "#3ca064.#14c878", c24: "#e6ffdc.#f0ffff", c25: "#5a825a.#0a966e", c26: "#3c7850.#0a966e", c27: "#468c5a.#14c878", c28: "#327846.#0a966e", c29: "#c8e6be.#fad296", c30: "#b4c8a0.#e6b464", c31: "#6e6428.#64503c", c32: "#3caa6e.#14c878", c33: "#a0aa8c.#5ae682", c34: "#beb43c.#d29646", c35: "#e6dc78.#fad296", c36: "#46a064.#14c878", c37: "#28643c.#0a966e", c38: "#96dcaa.#5ae682", c39: "#96e6aa.#5ae682", c40: "#fafafa.#f0ffff", c41: "#ffffff.#f0ffff", c42: "#a0a032.#d29646", c43: "#647864.#826e3c", c44: "#6e641e.#64503c", c45: "#783c3c.#64503c", c46: "#a0dc96.#5ae682", c47: "#d2f0c8.#fad296", c48: "#a0be96.#5ae682", c49: "#b4aa28.#d29646", c50: "#0a0a0a.#141414", c51: "#f0dc64.#e6b464", c52: "#b43c3c.#968232", c53: "#faffff.#f0ffff", c54: "#d2e6be.#fad296", c55: "#b4d2a0.#e6b464", c56: "#0a5a28.#3c3c3c", c57: "#963246.#968232", c58: "#aa1e1e.#968232", c59: "#c83c50.#968232", c60: "#141e14.#141414", c61: "#326446.#0a966e", c62: "#d23c3c.#968232", c63: "#a0b48c.#5ae682", c64: "#c84650.#968232" },
272 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#78a0b4.#a0c8c8", c7: "#96e6f0.#e6ffff", c8: "#505a82.#646e96", c9: "#5064a0.#2882d2", c10: "#3c3c50.#3c3c50", c11: "#50a0dc.#3cc8f0", c12: "#323c46.#323c46", c13: "#3c5a6e.#1478c8", c14: "#f0ffff.#f0ffff", c15: "#96b4c8.#b4c8d2", c16: "#3ca064.#1478c8", c17: "#5ab478.#a0c8c8", c18: "#82dca0.#b4c8d2", c19: "#327846.#1478c8", c20: "#e6ffdc.#f0ffff", c21: "#468c5a.#1478c8", c22: "#647864.#646e96", c23: "#a0dc96.#b4c8d2", c24: "#82a078.#a0c8c8", c25: "#c8dcb4.#b4c8d2", c26: "#a0be8c.#b4c8d2", c27: "#28643c.#323c46", c28: "#ffffff.#f0ffff", c29: "#144628.#323c46", c30: "#46a064.#1478c8", c31: "#285028.#323c46", c32: "#3c7850.#1478c8", c33: "#0a5a28.#323c46", c34: "#0a0a0a.#141414", c35: "#3caa6e.#1478c8", c36: "#5a825a.#1478c8", c37: "#d2f0c8.#f0ffff", c38: "#a0be96.#b4c8d2", c39: "#783c3c.#3c3c50", c40: "#142814.#141414", c41: "#b43c3c.#3c3c50", c42: "#96dcaa.#b4c8d2", c43: "#b44646.#646e96", c44: "#aa1e1e.#3c3c50", c45: "#d23c3c.#646e96", c46: "#faffff.#f0ffff", c47: "#96fabe.#e6ffff" },
273 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5a64a0.#1e78aa", c6: "#a08cf0.#78b4f0", c7: "#283264.#145078", c8: "#b4a0ff.#a0c8fa", c9: "#7878c8.#3ca0dc", c10: "#141414.#141414", c11: "#780a00.#a0821e", c12: "#aa1e32.#c8be1e", c13: "#dc3c6e.#f0e678", c14: "#aa9600.#aa8c00", c15: "#ffdc00.#ffd200", c16: "#3c3c50.#32323c", c17: "#c85096.#c84678", c18: "#6e6e78.#464650", c19: "#144614.#141414", c20: "#50a046.#464650", c21: "#788c78.#464650", c22: "#465a50.#32323c", c23: "#dce6f0.#ffffff", c24: "#96b4a0.#3ca0dc", c25: "#3c783c.#32323c", c26: "#a0aa82.#464650", c27: "#d2e6dc.#ffffff", c28: "#64966e.#464650", c29: "#dce6c8.#ffffff", c30: "#78826e.#464650", c31: "#dcdcbe.#ffffff", c32: "#788264.#464650", c33: "#c8c8d2.#a0c8fa", c34: "#0a461e.#141414", c35: "#b4b4be.#78b4f0", c36: "#3caa46.#464650", c37: "#1e7850.#32323c", c38: "#aa6e14.#aa8c00", c39: "#d2d2d2.#a0c8fa", c40: "#a0a0aa.#3ca0dc", c41: "#e6820a.#aa8c00", c42: "#fafafa.#ffffff", c43: "#467846.#32323c", c44: "#3c3c46.#32323c", c45: "#64c85a.#464650", c46: "#b4641e.#aa8c00", c47: "#aa6414.#aa8c00", c48: "#0a5028.#141414", c49: "#fa8214.#aa8c00", c50: "#0a0a0a.#141414", c51: "#dc820a.#aa8c00" },
274 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#78463c.#6e781e", c6: "#a06e46.#a0b41e", c7: "#3c3232.#3c3232", c8: "#f0fafa.#f0fafa", c9: "#8c8c96.#82a08c", c10: "#3c5a8c.#467878", c11: "#bebec8.#b4dcdc", c12: "#5096c8.#64aab4", c13: "#141414.#141414", c14: "#5a5064.#5a5064", c15: "#5a3c3c.#646e0a", c16: "#e6dcaa.#e6f0aa", c17: "#e696be.#f0a0a0", c18: "#a06478.#be6e64", c19: "#b4a082.#c8d282", c20: "#8c7832.#a0b41e", c21: "#0a0a0a.#141414", c22: "#dcbe82.#c8d282", c23: "#c8a05a.#c8d282", c24: "#1e1e1e.#141414", c25: "#ffffff.#f0fafa", c26: "#3c3c46.#3c3232", c27: "#503c14.#3c3232", c28: "#282828.#3c3232", c29: "#281e1e.#141414", c30: "#505064.#5a5064", c31: "#b4b4be.#b4dcdc", c32: "#a06e3c.#a0b41e", c33: "#643c14.#646e0a", c34: "#d2a064.#c8d282", c35: "#282832.#3c3232", c36: "#ffbe5a.#e6f0aa", c37: "#503228.#3c3232", c38: "#3c3c50.#3c3232", c39: "#aa505a.#a0b41e", c40: "#be5a64.#be6e64", c41: "#d2a050.#c8d282", c42: "#d2d2dc.#b4dcdc", c43: "#8c6e32.#a0b41e", c44: "#c87878.#be6e64", c45: "#b4323c.#6e781e", c46: "#dcb482.#c8d282", c47: "#be965a.#c8d282", c48: "#dc96a0.#f0a0a0", c49: "#8c3c46.#6e781e", c50: "#b4b4b4.#b4dcdc", c51: "#f0f0e6.#f0fafa", c52: "#64646e.#5a5064", c53: "#dc82a0.#f0a0a0", c54: "#f096a0.#f0a0a0", c55: "#c86e78.#be6e64", c56: "#e68ca0.#f0a0a0", c57: "#aa8c64.#c8d282", c58: "#a04650.#a0b41e", c59: "#50501e.#646e0a", c60: "#1e1e28.#141414", c61: "#645032.#6e781e", c62: "#32323c.#3c3232", c63: "#ffc86e.#e6f0aa", c64: "#be9650.#a0b41e", c65: "#5a5a64.#5a5064", c66: "#828296.#82a08c", c67: "#aa3c50.#a0b41e", c68: "#dc6478.#be6e64" },
275 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5a3c46.#00148c", c6: "#963c6e.#1e3cd2", c7: "#f05a64.#6496ff", c8: "#141414.#141414", c9: "#be466e.#3c5af0", c10: "#ff96b4.#8cd2ff", c11: "#323c64.#965a78", c12: "#3278a0.#b47896", c13: "#ffd264.#faf06e", c14: "#8cd2ff.#ffc8e6", c15: "#46a0d2.#e6c8d2", c16: "#64643c.#5a643c", c17: "#b49646.#b4aa46", c18: "#6478b4.#b47896", c19: "#bec8ff.#ffc8e6", c20: "#8cb4f0.#ffc8e6", c21: "#463c78.#965a78", c22: "#781e5a.#00148c", c23: "#b450a0.#3c5af0", c24: "#d278be.#8cd2ff", c25: "#f082dc.#8cd2ff", c26: "#646464.#5a643c", c27: "#d2d2d2.#ffffff", c28: "#fafafa.#ffffff", c29: "#bed2ff.#ffc8e6", c30: "#0a0a0a.#141414", c31: "#e6e6e6.#ffffff", c32: "#464678.#965a78" },
276 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#50783c.#506482", c6: "#000000.#000000", c7: "#c8fa8c.#b4e6f0", c8: "#96b43c.#5ab48c", c9: "#aadc6e.#8cdcbe", c10: "#a08200.#a08200", c11: "#ffa01e.#ffa01e", c12: "#ffe650.#ffe650", c13: "#dc466e.#e6bea0", c14: "#aa3c46.#be8278", c15: "#f06478.#fff0c8", c16: "#324628.#a03c28", c17: "#3c6e3c.#d2463c", c18: "#5aa05a.#ff6e5a", c19: "#503c14.#a03c28", c20: "#8c7832.#a08200", c21: "#c8a05a.#5ab48c", c22: "#dcbe82.#8cdcbe", c23: "#0a0a0a.#000000", c24: "#141414.#000000", c25: "#5a5a6e.#506482", c26: "#282832.#a03c28", c27: "#14141e.#000000", c28: "#c8c8c8.#b4e6f0", c29: "#967828.#a08200", c30: "#5a320a.#a03c28", c31: "#b4b4be.#b4e6f0", c32: "#aa8c46.#5ab48c", c33: "#e6be82.#b4e6f0", c34: "#d2a050.#5ab48c", c35: "#3c3c3c.#a03c28", c36: "#bebebe.#b4e6f0", c37: "#b4505a.#be8278", c38: "#460a1e.#a03c28", c39: "#643c3c.#a03c28", c40: "#3c323c.#a03c28", c41: "#6e1428.#be8278", c42: "#c87878.#fff0c8", c43: "#fa5a6e.#fff0c8", c44: "#f096a0.#fff0c8", c45: "#8c3c3c.#be8278", c46: "#e67878.#fff0c8", c47: "#785a1e.#506482", c48: "#786446.#506482", c49: "#a08278.#5ab48c", c50: "#b4968c.#8cdcbe", c51: "#503246.#a03c28", c52: "#0a0a14.#000000", c53: "#ff96aa.#fff0c8", c54: "#8c646e.#be8278", c55: "#b4a05a.#5ab48c", c56: "#be9650.#5ab48c", c57: "#645032.#506482", c58: "#ffc86e.#ffe650", c59: "#a06e3c.#be8278", c60: "#503228.#a03c28", c61: "#643c14.#a03c28", c62: "#32323c.#a03c28", c63: "#50505a.#d2463c", c64: "#ffbe5a.#ffe650", c65: "#d2a064.#fff0c8", c66: "#aaaab4.#8cdcbe", c67: "#1e1e28.#a03c28", c68: "#dc6478.#fff0c8", c69: "#fafafa.#ffffff", c70: "#ff8296.#fff0c8", c71: "#643232.#a03c28", c72: "#c86e78.#fff0c8", c73: "#d27878.#fff0c8", c74: "#aa3c50.#be8278", c75: "#8c3c46.#be8278", c76: "#784646.#be8278", c77: "#8c5a46.#be8278", c78: "#323232.#a03c28", c79: "#e6e6e6.#ffffff" },
277 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#325032.#783c1e", c6: "#509646.#ff7850", c7: "#3c7846.#c84646", c8: "#000000.#000000", c9: "#3c6432.#144650", c10: "#64aa46.#5aaa82", c11: "#8cc878.#8ce6d2", c12: "#50963c.#468278", c13: "#c8960a.#c8960a", c14: "#f0e66e.#f0e66e", c15: "#78323c.#825a3c", c16: "#c83c3c.#c8aa8c", c17: "#5a783c.#3c7878", c18: "#f05064.#e6c8a0", c19: "#141414.#000000", c20: "#323232.#783c1e", c21: "#505050.#144650", c22: "#3c3c3c.#783c1e", c23: "#0a0a0a.#000000", c24: "#1e1e28.#783c1e", c25: "#50505a.#c84646", c26: "#aa0a0a.#c8aa8c", c27: "#ff0a0a.#c8aa8c", c28: "#fa0a0a.#c8aa8c", c29: "#8c321e.#825a3c", c30: "#5a0a0a.#825a3c", c31: "#f0645a.#e6c8a0", c32: "#faaa28.#c8960a", c33: "#8c5a1e.#825a3c", c34: "#fff0d2.#f0e66e", c35: "#ffdc78.#f0e66e", c36: "#c88214.#c8960a", c37: "#3c280a.#783c1e", c38: "#dcdcdc.#f0e66e", c39: "#d2a028.#c8960a", c40: "#645028.#825a3c", c41: "#ffe650.#f0e66e", c42: "#faff8c.#f0e66e", c43: "#fafafa.#f0e66e", c44: "#c8963c.#c8960a" },
278 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#1e461e.#3c5a5a", c6: "#b4e696.#befaff", c7: "#3ca03c.#64b4a0", c8: "#000000.#000000", c9: "#3c823c.#5a968c", c10: "#82c86e.#a0dcf0", c11: "#c8a00a.#d24632", c12: "#e6dc3c.#ff6e50", c13: "#be1e1e.#c8823c", c14: "#e6463c.#ffbe50", c15: "#5a500a.#8c2828", c16: "#144628.#3c5a5a", c17: "#288232.#64b4a0", c18: "#146428.#5a968c", c19: "#46aa46.#a0dcf0", c20: "#78500a.#8c2828", c21: "#141414.#000000", c22: "#c8aa0a.#d24632", c23: "#fadc3c.#ff6e50", c24: "#ffff78.#ff6e50", c25: "#0a0a0a.#000000", c26: "#a0820a.#d24632", c27: "#fff082.#ff6e50", c28: "#dcb446.#ff6e50", c29: "#fff06e.#ff6e50", c30: "#828c50.#a0dcf0", c31: "#0a3264.#3c5a5a", c32: "#646ee6.#a0dcf0", c33: "#dcdcf0.#befaff", c34: "#325ac8.#5a968c", c35: "#f0faff.#befaff", c36: "#6eaadc.#befaff", c37: "#0a468c.#3c5a5a", c38: "#fafafa.#befaff", c39: "#6e500a.#8c2828", c40: "#faf03c.#ff6e50", c41: "#beaa14.#d24632", c42: "#0a3c5a.#3c5a5a", c43: "#ffffff.#befaff", c44: "#1e78c8.#5a968c", c45: "#dcb40a.#d24632", c46: "#aa6e32.#d24632", c47: "#b4960a.#d24632", c48: "#285064.#3c5a5a", c49: "#96780a.#d24632" },
279 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#aa8c00.#c83c32", c6: "#f0be32.#fa6e32", c7: "#fadc6e.#ffa03c", c8: "#000000.#000000", c9: "#aa3c14.#a07850", c10: "#ff8c32.#ffe664", c11: "#e65a1e.#d2a050", c12: "#ffaa50.#fff0be", c13: "#784614.#784614", c14: "#aa8c00.#aa8278", c15: "#fadc6e.#fac88c", c16: "#f0be32.#c8aa8c", c17: "#8c501e.#8c501e", c18: "#8c8c96.#8c501e", c19: "#5a5a64.#8c501e", c20: "#141414.#000000", c21: "#965a0a.#8c501e", c22: "#f0aa3c.#fa6e32", c23: "#c8c8c8.#ffffff", c24: "#c87814.#c83c32", c25: "#6e3c0a.#784614", c26: "#ffe678.#ffa03c", c27: "#0a0a0a.#000000", c28: "#a0281e.#a07850", c29: "#c86e14.#d2a050", c30: "#dc5a50.#d2a050", c31: "#fafafa.#ffffff", c32: "#e6aa3c.#fa6e32", c33: "#f0a08c.#fff0be", c34: "#ffdcc8.#ffffff", c35: "#b4463c.#a07850", c36: "#f0aa46.#fff0be", c37: "#d27814.#d2a050", c38: "#ffd278.#ffa03c", c39: "#ffdcd2.#ffffff" },
280 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#dc5a28.#a06e46", c6: "#141414.#141414", c7: "#ff7846.#ff7828", c8: "#a03214.#50321e", c9: "#a07828.#a07828", c10: "#f0dc78.#fffa96", c11: "#f0be46.#ffc85a", c12: "#d23232.#82461e", c13: "#6e6e78.#6e6e78", c14: "#dcdcc8.#dcdcc8", c15: "#a08c82.#a08c82", c16: "#5a4646.#5a4646", c17: "#82786e.#82786e", c18: "#143c1e.#141414", c19: "#0ab45a.#6e6e78", c20: "#149650.#6e6e78", c21: "#1e7846.#5a4646", c22: "#5a5a5a.#5a4646", c23: "#a0a0a0.#a08c82", c24: "#b4bebe.#dcdcc8", c25: "#8c8c8c.#a08c82", c26: "#3c3c3c.#5a4646", c27: "#285046.#5a4646", c28: "#28c85a.#6e6e78", c29: "#1e825a.#5a4646", c30: "#f0f0f0.#ffffff", c31: "#646464.#6e6e78", c32: "#c8c8c8.#dcdcc8", c33: "#1e6e3c.#5a4646", c34: "#0a0a0a.#141414", c35: "#8c8c82.#a08c82", c36: "#b48c3c.#a07828", c37: "#e6e6e6.#dcdcc8", c38: "#96968c.#a08c82", c39: "#d2a050.#ffc85a", c40: "#ffdc64.#fffa96", c41: "#aa8c64.#a08c82", c42: "#78643c.#5a4646" },
281 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#be3c3c.#821e0a", c6: "#000000.#000000", c7: "#beb496.#dcc8c8", c8: "#968264.#a08278", c9: "#f06464.#b4321e", c10: "#ff8264.#dc5a3c", c11: "#dcdcb4.#fffafa", c12: "#645046.#6e5a50", c13: "#822828.#3c2814", c14: "#fad264.#ffc832", c15: "#dca050.#d28c28", c16: "#2878d2.#1e2832", c17: "#a08c82.#968278", c18: "#8c643c.#a05a3c", c19: "#323c28.#6e5a50", c20: "#646e46.#6e5a50", c21: "#0a0a0a.#000000", c22: "#46503c.#6e5a50", c23: "#3c4632.#6e5a50", c24: "#1e2814.#000000", c25: "#465a3c.#6e5a50", c26: "#6e7850.#a05a3c", c27: "#465032.#6e5a50", c28: "#96a05a.#a08278", c29: "#6e7846.#a05a3c", c30: "#c80a0a.#821e0a", c31: "#b4b4d2.#dcc8c8", c32: "#640a0a.#3c2814", c33: "#6e9632.#a05a3c", c34: "#82b41e.#a05a3c", c35: "#646464.#6e5a50", c36: "#8ca082.#968278", c37: "#8cb478.#968278", c38: "#d2e696.#fffafa", c39: "#aabe64.#dcc8c8", c40: "#6e1414.#3c2814", c41: "#dc0a14.#821e0a", c42: "#507846.#6e5a50", c43: "#a02814.#3c2814", c44: "#82c86e.#968278", c45: "#8c1414.#3c2814", c46: "#647850.#6e5a50", c47: "#8c323c.#3c2814", c48: "#fa82a0.#dc5a3c", c49: "#460a0a.#000000", c50: "#ff505a.#b4321e", c51: "#dc828c.#dc5a3c", c52: "#a0dc82.#dcc8c8", c53: "#dcf0be.#fffafa", c54: "#8cbe50.#a08278", c55: "#505a46.#6e5a50", c56: "#323c32.#6e5a50", c57: "#96aa82.#968278", c58: "#ffffd2.#ffffff", c59: "#d2e6aa.#fffafa", c60: "#5a1e14.#3c2814", c61: "#d25046.#821e0a", c62: "#96e632.#d28c28", c63: "#282828.#000000", c64: "#6e7864.#a08278", c65: "#82be6e.#968278", c66: "#dce6b4.#fffafa", c67: "#aab478.#dcc8c8", c68: "#508c3c.#6e5a50" },
282 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#326e96.#7832a0", c6: "#78c8f0.#faaaff", c7: "#3ca0dc.#c882fa", c8: "#000000.#000000", c9: "#a0bee6.#dcc864", c10: "#b4dcf0.#ffffff", c11: "#c8dcfa.#fffac8", c12: "#788caa.#c8781e", c13: "#aa5a1e.#aa5a1e", c14: "#32788c.#a050c8", c15: "#f08232.#f08232", c16: "#ffaa3c.#dc963c", c17: "#503c28.#503c28", c18: "#640a0a.#503c28", c19: "#dc3c3c.#aa5a1e", c20: "#141414.#000000", c21: "#324628.#503c28", c22: "#468c46.#a050c8", c23: "#3c6e3c.#503c28", c24: "#6e2832.#503c28", c25: "#b41e1e.#aa5a1e", c26: "#d25046.#aa5a1e", c27: "#787878.#c8781e", c28: "#823232.#503c28", c29: "#a0a0a0.#c8781e", c30: "#283c28.#503c28", c31: "#5a5a50.#503c28", c32: "#3c3c3c.#503c28", c33: "#6e965a.#c8781e", c34: "#465a3c.#503c28", c35: "#46506e.#7832a0", c36: "#aaaaaa.#c8781e", c37: "#6e6478.#c8781e", c38: "#f0b4b4.#fffac8", c39: "#501e1e.#503c28", c40: "#464646.#503c28", c41: "#c86e6e.#f08232", c42: "#dc463c.#aa5a1e", c43: "#965064.#aa5a1e", c44: "#5a323c.#503c28", c45: "#d2828c.#f08232", c46: "#0a0a0a.#000000", c47: "#be5050.#aa5a1e", c48: "#282828.#503c28" },
283 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#000000.#000000", c6: "#8282a0.#a050aa", c7: "#50506e.#642882", c8: "#46b4aa.#dc78f0", c9: "#0a5a64.#824696", c10: "#96d2d2.#f08cff", c11: "#aaf0f0.#ffb4ff", c12: "#963c14.#dc8200", c13: "#f08c32.#fffa00", c14: "#e66e0a.#ffbe00", c15: "#50a0a0.#b446c8", c16: "#a0aac8.#bebec8", c17: "#3c78a0.#642882", c18: "#b4c8f0.#dcdcf0", c19: "#146e78.#824696", c20: "#82c8c8.#f08cff", c21: "#82d2d2.#f08cff", c22: "#5aaaa0.#b446c8", c23: "#146e64.#824696", c24: "#14141e.#000000", c25: "#0a4650.#824696", c26: "#0a0a0a.#000000", c27: "#28828c.#642882", c28: "#146e6e.#824696", c29: "#0a3c50.#824696", c30: "#1e7896.#642882", c31: "#fff0a0.#ffffff", c32: "#288c8c.#642882", c33: "#0a3c3c.#824696", c34: "#0a5a6e.#824696", c35: "#dcd296.#bebec8", c36: "#0a5a82.#824696", c37: "#6e3c0a.#dc8200", c38: "#c8a050.#fffa00", c39: "#dcc896.#bebec8", c40: "#ffdc78.#fffa00", c41: "#a07828.#dc8200", c42: "#78aaaa.#a050aa", c43: "#6eb4b4.#dc78f0", c44: "#6e460a.#dc8200", c45: "#8cc8be.#f08cff", c46: "#5aa0a0.#b446c8", c47: "#1e323c.#824696", c48: "#82bebe.#f08cff", c49: "#785014.#dc8200", c50: "#d29646.#fffa00", c51: "#aa7850.#fffa00", c52: "#c8b46e.#fffa00", c53: "#0a7896.#642882" },
284 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#504650.#781e96", c6: "#141414.#141414", c7: "#6e6e8c.#9646a0", c8: "#5a82c8.#be50be", c9: "#82a0dc.#dc78d2", c10: "#824628.#824628", c11: "#f0823c.#f0823c", c12: "#fab43c.#fab43c", c13: "#a0c8dc.#ffa0fa", c14: "#5a5a8c.#5a1464", c15: "#c86478.#c86478", c16: "#6e283c.#6e283c", c17: "#aabeb4.#c8c8fa", c18: "#6e7878.#6e7878", c19: "#dcf0e6.#e6e6ff", c20: "#969696.#c8c8fa", c21: "#d2d2d2.#e6e6ff", c22: "#ffffff.#e6e6ff", c23: "#5a6482.#5a1464", c24: "#aac8f0.#ffa0fa", c25: "#8caac8.#dc78d2", c26: "#823228.#824628", c27: "#f05a32.#f0823c", c28: "#b44628.#824628", c29: "#28323c.#781e96", c30: "#3c4646.#781e96", c31: "#282828.#141414", c32: "#bea046.#f0823c", c33: "#b44632.#824628", c34: "#3c3c3c.#781e96", c35: "#aabef0.#ffa0fa", c36: "#f0f0f0.#e6e6ff", c37: "#fafafa.#e6e6ff", c38: "#ff6e50.#f0823c", c39: "#323232.#781e96", c40: "#8c8c8c.#6e7878", c41: "#6e281e.#6e283c", c42: "#ff7846.#f0823c", c43: "#0a0a0a.#141414", c44: "#464646.#781e96", c45: "#ffd250.#fab43c", c46: "#e65028.#f0823c", c47: "#aa3c1e.#824628", c48: "#96281e.#824628", c49: "#8c463c.#824628", c50: "#dc6e64.#c86478", c51: "#fa8232.#f0823c", c52: "#fac83c.#fab43c", c53: "#64281e.#6e283c", c54: "#ff503c.#f0823c", c55: "#8c2814.#824628", c56: "#b43c28.#824628", c57: "#fa6e46.#f0823c", c58: "#c83c1e.#824628", c59: "#465064.#781e96", c60: "#ffc83c.#fab43c", c61: "#96b4f0.#ffa0fa", c62: "#ffdc50.#fab43c", c63: "#788cb4.#be50be", c64: "#8ca0b4.#dc78d2", c65: "#6e78aa.#9646a0", c66: "#c8d2e6.#e6e6ff", c67: "#64788c.#9646a0", c68: "#c8c8dc.#ffa0fa", c69: "#506482.#5a1464", c70: "#8296be.#dc78d2", c71: "#aac8ff.#ffa0fa", c72: "#46140a.#141414", c73: "#a04650.#824628", c74: "#be5a32.#824628", c75: "#823c28.#824628", c76: "#fa643c.#f0823c", c77: "#5a4632.#781e96", c78: "#787864.#6e7878", c79: "#fafaf0.#e6e6ff", c80: "#821e0a.#824628", c81: "#dcd2b4.#c8c8fa", c82: "#f0d26e.#fab43c", c83: "#ff7850.#f0823c", c84: "#d2c8be.#c8c8fa", c85: "#82786e.#6e7878", c86: "#d25028.#f0823c", c87: "#463c3c.#781e96", c88: "#bed2e6.#ffa0fa", c89: "#f0f0ff.#e6e6ff", c90: "#ffd246.#fab43c", c91: "#1e1e1e.#141414", c92: "#1e1e28.#141414", c93: "#d2a0a0.#c8c8fa", c94: "#3c6482.#5a1464", c95: "#a0a0b4.#c8c8fa", c96: "#a0d2ff.#ffa0fa", c97: "#d2c8aa.#c8c8fa", c98: "#78a0c8.#dc78d2" },
285 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#822846.#785032", c6: "#ff7896.#ffc85a", c7: "#d24678.#e68232", c8: "#141414.#141414", c9: "#78be78.#46a0c8", c10: "#32783c.#1478aa", c11: "#b4fa96.#c8fafa", c12: "#8ce68c.#8cc8e6", c13: "#c8c8e6.#d2aadc", c14: "#a096c8.#b478c8", c15: "#fafaff.#fafaff", c16: "#788cb4.#8c50a0", c17: "#96501e.#785032", c18: "#ffc83c.#ffc85a", c19: "#be8c28.#e68232", c20: "#8c781e.#785032", c21: "#e6be3c.#ffc85a", c22: "#c8a032.#46a0c8", c23: "#0a0a0a.#141414", c24: "#a05014.#785032", c25: "#ffbe28.#ffc85a", c26: "#fac828.#ffc85a", c27: "#c89614.#e68232", c28: "#8c5a0a.#785032", c29: "#ffdc50.#c8fafa", c30: "#646464.#1478aa", c31: "#be821e.#e68232", c32: "#282828.#141414", c33: "#464646.#1478aa", c34: "#be8c14.#e68232", c35: "#8c3c1e.#785032", c36: "#282832.#141414", c37: "#141e28.#141414", c38: "#fa643c.#e68232", c39: "#323232.#141414", c40: "#be4628.#785032", c41: "#823228.#785032", c42: "#3c4646.#1478aa", c43: "#fafafa.#fafaff", c44: "#ff6e50.#ffc85a", c45: "#dcb414.#46a0c8", c46: "#64281e.#785032", c47: "#6e321e.#785032", c48: "#969696.#8c50a0", c49: "#dcdcdc.#d2aadc", c50: "#ff503c.#e68232", c51: "#dc503c.#e68232", c52: "#a03c32.#785032", c53: "#b43c28.#785032", c54: "#fae632.#c8fafa", c55: "#beaa28.#46a0c8", c56: "#3c3c46.#1478aa", c57: "#1e1e28.#141414", c58: "#8c2814.#785032", c59: "#fa6e46.#e68232", c60: "#b44632.#785032", c61: "#283232.#141414", c62: "#c83c1e.#785032", c63: "#dc5a46.#e68232", c64: "#6e2814.#785032", c65: "#465064.#1478aa", c66: "#6e78aa.#8c50a0", c67: "#96b4f0.#b478c8", c68: "#c8503c.#e68232", c69: "#ffffff.#fafaff", c70: "#ff8c78.#ffc85a", c71: "#c8dcf0.#d2aadc", c72: "#aabef0.#d2aadc", c73: "#64646e.#1478aa", c74: "#96a0aa.#b478c8", c75: "#e6c86e.#c8fafa", c76: "#aa9650.#46a0c8", c77: "#645a32.#1478aa", c78: "#8296be.#8c50a0", c79: "#aac8f0.#d2aadc", c80: "#aac8ff.#d2aadc", c81: "#506482.#8c50a0", c82: "#8ca0d2.#b478c8", c83: "#8caac8.#b478c8", c84: "#6e82b4.#8c50a0", c85: "#5a6482.#8c50a0", c86: "#b4321e.#785032", c87: "#822814.#785032", c88: "#3c3c3c.#1478aa", c89: "#dc501e.#e68232", c90: "#ff6e3c.#e68232", c91: "#d28c14.#e68232", c92: "#f0b428.#ffc85a", c93: "#ffc828.#ffc85a", c94: "#a0a0a0.#b478c8", c95: "#828282.#8c50a0", c96: "#a05a14.#785032", c97: "#dca028.#e68232", c98: "#82140a.#785032", c99: "#ff6450.#e68232", c100: "#d23228.#e68232", c101: "#ffd246.#c8fafa", c102: "#463c3c.#1478aa", c103: "#82786e.#46a0c8", c104: "#d2d2d2.#d2aadc", c105: "#a0c8f0.#d2aadc", c106: "#82a0c8.#8c50a0", c107: "#dca01e.#e68232", c108: "#8c6414.#785032", c109: "#646478.#8c50a0", c110: "#fa9678.#ffc85a" },
286 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#822846.#785032", c6: "#32783c.#146eaa", c7: "#ff7896.#ffc85a", c8: "#d24678.#e67832", c9: "#141414.#141414", c10: "#b4fa96.#c8fafa", c11: "#78be78.#46a0c8", c12: "#8ce68c.#8cbee6", c13: "#7882aa.#8c50a0", c14: "#c8c8e6.#d2aadc", c15: "#6e1e0a.#785032", c16: "#aa280a.#785032", c17: "#fa140a.#e67832", c18: "#d23c14.#785032", c19: "#ff6e64.#ffc85a", c20: "#82828c.#8c50a0", c21: "#0a0a0a.#141414", c22: "#d2140a.#785032", c23: "#50505a.#146eaa", c24: "#641e0a.#785032", c25: "#dcdce6.#d2aadc", c26: "#f06e46.#e67832", c27: "#b4b4b4.#d2aadc", c28: "#f08c3c.#ffc85a", c29: "#5a3c14.#785032", c30: "#b4783c.#e67832", c31: "#8c6428.#785032", c32: "#323c3c.#146eaa", c33: "#f0f0f0.#ffffff", c34: "#a0aaa0.#8c50a0", c35: "#32323c.#141414", c36: "#0a8cdc.#8c50a0", c37: "#0ad2ff.#8c50a0", c38: "#f0fafa.#ffffff", c39: "#dcdcdc.#d2aadc", c40: "#14141e.#141414", c41: "#1e6e8c.#146eaa", c42: "#aaaaaa.#8c50a0", c43: "#148cb4.#8c50a0", c44: "#0ad2fa.#8c50a0", c45: "#6e6464.#785032", c46: "#6e6e6e.#8c50a0", c47: "#3c140a.#141414", c48: "#824632.#785032", c49: "#1e1e1e.#141414", c50: "#aa8250.#e67832", c51: "#64281e.#785032", c52: "#aa140a.#785032", c53: "#f03214.#e67832", c54: "#282828.#141414", c55: "#465050.#146eaa", c56: "#825a32.#785032", c57: "#fafad2.#ffffff", c58: "#1e0a0a.#141414" },
287 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#32783c.#1478aa", c6: "#b4fa96.#c8fafa", c7: "#8ce68c.#8cc8e6", c8: "#78be78.#46a0c8", c9: "#788cb4.#8c50a0", c10: "#000000.#000000", c11: "#f0f0ff.#fffaff", c12: "#c8c8e6.#d2aadc", c13: "#d24678.#e68232", c14: "#ff7896.#ffc85a", c15: "#a0b4c8.#b478c8", c16: "#822846.#785032", c17: "#6482c8.#8c50a0", c18: "#3c3c78.#1478aa", c19: "#aac8ff.#d2aadc", c20: "#5aaaf0.#8c50a0", c21: "#0a0a0a.#000000", c22: "#641450.#785032", c23: "#aa50aa.#e68232", c24: "#c864b4.#ffc85a", c25: "#963c78.#785032", c26: "#5aaae6.#8c50a0", c27: "#8c3c78.#785032", c28: "#c86eb4.#ffc85a", c29: "#141414.#000000", c30: "#aac8fa.#d2aadc", c31: "#fafafa.#ffffff", c32: "#d2d2d2.#d2aadc", c33: "#646464.#1478aa", c34: "#783c50.#785032", c35: "#be648c.#e68232", c36: "#f0a0c8.#d2aadc", c37: "#aaaaaa.#b478c8", c38: "#505050.#1478aa", c39: "#a01e14.#785032", c40: "#ffd2dc.#fffaff", c41: "#ffa096.#ffc85a", c42: "#ff8250.#ffc85a", c43: "#e64614.#e68232", c44: "#bef0fa.#d2aadc", c45: "#96b4be.#b478c8", c46: "#3278a0.#8c50a0", c47: "#1e3c50.#1478aa", c48: "#8cc8e6.#b478c8", c49: "#50a0d2.#8c50a0", c50: "#f0f0f0.#fffaff", c51: "#d26eb4.#ffc85a" },
288 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#7896a0.#a0a0a0", c7: "#78c8b4.#c8c8c8", c8: "#507882.#6e6e6e", c9: "#3c5050.#143c8c", c10: "#3c825a.#5078e6", c11: "#5ab46e.#78aaf0", c12: "#788caa.#a078b4", c13: "#c8c8dc.#e6c8fa", c14: "#f0f0ff.#fffaff", c15: "#a0b4c8.#c8a0dc", c16: "#e6503c.#e68232", c17: "#ffa082.#ffc85a", c18: "#785050.#786450", c19: "#322828.#141414", c20: "#0a1414.#141414", c21: "#785046.#786450", c22: "#d2a082.#ffc85a", c23: "#be826e.#ffc85a", c24: "#503c3c.#143c8c", c25: "#c8be0a.#e68232", c26: "#ffff0a.#ffc85a", c27: "#6e6414.#786450", c28: "#d2c8c8.#e6c8fa", c29: "#e6aa32.#ffc85a", c30: "#82641e.#786450", c31: "#ffd214.#ffc85a", c32: "#6e5050.#786450", c33: "#a08278.#a0a0a0", c34: "#826e64.#786450", c35: "#f0281e.#e68232", c36: "#bea0a0.#c8a0dc", c37: "#f0c83c.#ffc85a", c38: "#50463c.#143c8c", c39: "#b46e5a.#e68232", c40: "#be8278.#ffc85a", c41: "#645050.#786450", c42: "#6e5046.#786450", c43: "#826464.#786450", c44: "#e6be32.#ffc85a", c45: "#785a50.#786450", c46: "#6e645a.#786450", c47: "#6e3232.#786450" },
289 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#a0a0c8.#c8b4c8", c6: "#8296aa.#967896", c7: "#d2d2e6.#fadcfa", c8: "#5a503c.#643c32", c9: "#dcb478.#fae6a0", c10: "#b4965a.#f0be82", c11: "#141414.#141414", c12: "#fad282.#ffffe6", c13: "#968278.#b4826e", c14: "#786e5a.#8c6446", c15: "#beb4aa.#fac88c", c16: "#aaa08c.#dca08c", c17: "#3c3c50.#643c32", c18: "#8c78d2.#c8b4c8", c19: "#785aaa.#967896", c20: "#5a4696.#8c6446", c21: "#aaa0fa.#c8b4c8", c22: "#788cb4.#967896", c23: "#fafafa.#ffffff", c24: "#0a0a0a.#141414", c25: "#b4e6fa.#fadcfa", c26: "#82c8d2.#c8b4c8", c27: "#dce6e6.#fadcfa", c28: "#3c96a0.#967896", c29: "#6e64dc.#967896", c30: "#bedcfa.#fadcfa", c31: "#968ce6.#c8b4c8", c32: "#6e50a0.#967896", c33: "#bec8d2.#fadcfa", c34: "#645078.#8c6446", c35: "#d2c8d2.#fadcfa", c36: "#c8141e.#643c32", c37: "#a0323c.#643c32", c38: "#505a78.#8c6446", c39: "#ff788c.#fae6a0", c40: "#6e82aa.#967896", c41: "#ff96aa.#fae6a0", c42: "#6e1e28.#643c32", c43: "#c83c78.#b4826e", c44: "#e65a8c.#b4826e", c45: "#ff465a.#f0be82", c46: "#ffaab4.#ffffe6", c47: "#461414.#141414", c48: "#8c0a14.#643c32", c49: "#dc2864.#b4826e", c50: "#78143c.#643c32", c51: "#e66e8c.#fae6a0", c52: "#3c286e.#643c32", c53: "#aaaafa.#c8b4c8", c54: "#643c64.#643c32", c55: "#dcaadc.#fadcfa", c56: "#8c648c.#b4826e", c57: "#be82b4.#c8b4c8", c58: "#8c6ed2.#c8b4c8", c59: "#a06ea0.#b4826e", c60: "#b4e6ff.#fadcfa", c61: "#4696a0.#967896", c62: "#786e8c.#b4826e", c63: "#dcdcdc.#fadcfa" },
290 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#8c785a.#966446", c6: "#3c645a.#3c645a", c7: "#000000.#141414", c8: "#faf078.#fff082", c9: "#bea050.#c88c3c", c10: "#5abe78.#5abe78", c11: "#5a9678.#5a9678", c12: "#dcc85a.#e6aa46", c13: "#c8dc78.#c8dc78", c14: "#78d282.#78d282", c15: "#a0f0a0.#a0f0a0", c16: "#a03c82.#506ed2", c17: "#d264aa.#6e96f0", c18: "#787878.#966446", c19: "#1e8caa.#5a9678", c20: "#fafafa.#ffffff", c21: "#143c78.#3c645a", c22: "#78d2f0.#a0f0a0", c23: "#0a0a0a.#141414", c24: "#3cb4f0.#5abe78", c25: "#d2dcfa.#ffffff", c26: "#141414.#141414", c27: "#146496.#3c645a", c28: "#b4bed2.#a0f0a0", c29: "#8c96aa.#5a9678", c30: "#be3264.#506ed2", c31: "#5a3c1e.#3c645a", c32: "#6e141e.#3c645a", c33: "#fae6aa.#fff082", c34: "#c8b478.#c8dc78", c35: "#5a6478.#3c645a", c36: "#5a5a5a.#3c645a", c37: "#5a0a14.#141414", c38: "#aab4be.#a0f0a0", c39: "#f0643c.#c88c3c", c40: "#461414.#141414", c41: "#5a646e.#3c645a", c42: "#c8d2dc.#a0f0a0", c43: "#1482a0.#5a9678", c44: "#aab4c8.#a0f0a0", c45: "#0aaad2.#5abe78", c46: "#78dcf0.#a0f0a0", c47: "#144678.#3c645a", c48: "#5a461e.#3c645a", c49: "#be1e78.#506ed2", c50: "#46b4f0.#5abe78", c51: "#fadcaa.#fff082", c52: "#c8aa64.#c88c3c", c53: "#d2aa78.#e6aa46", c54: "#f06446.#c88c3c", c55: "#d2b478.#e6aa46" },
291 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#508cd2.#aaa0b4", c6: "#3c4682.#5a5064", c7: "#96b4f0.#f0f0fa", c8: "#466ea0.#787882", c9: "#141414.#141414", c10: "#78b4fa.#c8c8d2", c11: "#ff6e6e.#ff6e6e", c12: "#824646.#824646", c13: "#ffffff.#ffffbe", c14: "#d24650.#d24650", c15: "#dcdcdc.#ffdc5a", c16: "#786e78.#8c3c00", c17: "#aaaaaa.#c8780a", c18: "#968c96.#aa5000", c19: "#641e32.#824646", c20: "#be3250.#d24650", c21: "#960a46.#824646", c22: "#783246.#824646", c23: "#32323c.#141414", c24: "#1e1e28.#141414", c25: "#640a32.#824646", c26: "#960a3c.#824646", c27: "#0a0a0a.#141414", c28: "#8c0a3c.#824646", c29: "#e66478.#ff6e6e", c30: "#d23264.#d24650", c31: "#be2850.#d24650", c32: "#faaac8.#ffdc5a", c33: "#fa64a0.#ff6e6e", c34: "#641e28.#824646", c35: "#ff96a0.#ff6e6e", c36: "#78283c.#824646", c37: "#282832.#141414", c38: "#78323c.#824646", c39: "#ffbec8.#ffdc5a", c40: "#0a463c.#141414", c41: "#323232.#141414", c42: "#822846.#824646", c43: "#0a965a.#787882", c44: "#8c5a0a.#824646", c45: "#0a6432.#141414", c46: "#0a9646.#5a5064", c47: "#d2a00a.#d24650", c48: "#fffafa.#ffffbe", c49: "#0a4632.#141414", c50: "#ff96aa.#ff6e6e", c51: "#0a7832.#141414", c52: "#5a5a64.#8c3c00", c53: "#0a3c28.#141414", c54: "#0a783c.#5a5064", c55: "#a00a46.#824646", c56: "#f0b40a.#ff6e6e", c57: "#be8c0a.#d24650", c58: "#0a6e3c.#5a5064", c59: "#96780a.#824646", c60: "#fabe0a.#ff6e6e", c61: "#50503c.#824646" },
292 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#646e8c.#6e0000", c6: "#c8c8c8.#dc7800", c7: "#141414.#141414", c8: "#ffffff.#ffd200", c9: "#3c3c6e.#5a5064", c10: "#a0a0aa.#c85000", c11: "#4678b4.#aaa0b4", c12: "#8cbee6.#f0f0fa", c13: "#5a96d2.#c8c8d2", c14: "#3c648c.#787882", c15: "#d24650.#d24650", c16: "#824646.#824646", c17: "#ff7896.#ff6e6e", c18: "#dcdcdc.#f0a000", c19: "#5a4664.#5a5064", c20: "#0a0a0a.#141414", c21: "#8278a0.#6e0000", c22: "#282828.#141414", c23: "#504650.#5a5064", c24: "#aa96c8.#c85000", c25: "#be5096.#d24650", c26: "#b4aad2.#dc7800", c27: "#c8145a.#d24650", c28: "#786478.#6e0000", c29: "#464650.#5a5064", c30: "#828296.#6e0000", c31: "#323232.#141414", c32: "#e664d2.#ff6e6e", c33: "#c80a50.#d24650", c34: "#3c3c50.#5a5064", c35: "#78648c.#6e0000", c36: "#32323c.#5a5064", c37: "#282832.#141414", c38: "#5a5064.#5a5064", c39: "#b4b4d2.#dc7800", c40: "#1e1e1e.#141414", c41: "#a00a50.#824646", c42: "#e6aa14.#d24650", c43: "#aa820a.#824646", c44: "#963c78.#824646", c45: "#ffff0a.#ff6e6e", c46: "#fadc0a.#d24650", c47: "#be8c0a.#d24650", c48: "#fffafa.#ffd200", c49: "#78788c.#6e0000", c50: "#d23c82.#d24650", c51: "#a00a3c.#824646" },
293 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#323c64.#463c50", c6: "#141414.#141414", c7: "#a0c8fa.#e6e6f0", c8: "#78a0fa.#c8c8c8", c9: "#4682c8.#a0a0aa", c10: "#3c6496.#786e78", c11: "#c8c8c8.#ffd200", c12: "#786e78.#b43c00", c13: "#aaaaaa.#e6a000", c14: "#dcdcdc.#ffff64", c15: "#c8dcfa.#ffffff", c16: "#d24650.#d24650", c17: "#824646.#824646", c18: "#968c96.#c86e00", c19: "#641414.#824646", c20: "#6e1e6e.#824646", c21: "#460a0a.#141414", c22: "#c8145a.#d24650", c23: "#8c3ca0.#b43c00", c24: "#aa2878.#d24650", c25: "#a0143c.#824646", c26: "#820a46.#824646", c27: "#1e2832.#141414", c28: "#3c4664.#463c50", c29: "#3c3c46.#463c50", c30: "#e6286e.#d24650", c31: "#e63c64.#d24650", c32: "#0a0a0a.#141414", c33: "#961464.#824646", c34: "#b43cb4.#c86e00", c35: "#dcaa14.#d24650", c36: "#460a1e.#141414", c37: "#3c1446.#463c50", c38: "#dc326e.#d24650", c39: "#aa50be.#c86e00", c40: "#dc1e64.#d24650", c41: "#f03278.#d24650", c42: "#640a0a.#141414", c43: "#323246.#463c50", c44: "#a00a3c.#824646", c45: "#8c32a0.#b43c00", c46: "#be5ad2.#c86e00", c47: "#82640a.#824646", c48: "#96780a.#824646", c49: "#141e1e.#141414", c50: "#141e28.#141414", c51: "#1e2828.#141414", c52: "#dcaa0a.#d24650", c53: "#645a28.#824646", c54: "#780a32.#824646", c55: "#46145a.#463c50", c56: "#961446.#824646", c57: "#dc1464.#d24650", c58: "#64141e.#824646", c59: "#5a326e.#463c50", c60: "#a03caa.#b43c00", c61: "#3c5064.#463c50", c62: "#a01446.#824646", c63: "#3c3246.#463c50", c64: "#dc8214.#d24650", c65: "#ffc80a.#d24650", c66: "#1e1e1e.#141414", c67: "#dcdcf0.#ffff64" },
294 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c3214.#3c3214", c6: "#a06432.#b48c32", c7: "#c88c3c.#dcb45a", c8: "#644632.#8c640a", c9: "#141414.#141414", c10: "#c8be82.#e6d2b4", c11: "#fff0be.#fffad2", c12: "#5a3c28.#784650", c13: "#f05a46.#ff826e", c14: "#c8c8c8.#c8c8c8", c15: "#828282.#828282", c16: "#784614.#8c640a", c17: "#ffaa50.#dcb45a", c18: "#463228.#3c3214", c19: "#aa5a32.#b48c32", c20: "#64463c.#8c640a", c21: "#96645a.#b48c32", c22: "#fa9650.#dcb45a", c23: "#be7846.#dcb45a", c24: "#3c3c3c.#784650", c25: "#504646.#8c640a", c26: "#0a0a0a.#141414", c27: "#fafafa.#ffffff", c28: "#8c8c82.#828282", c29: "#786464.#828282", c30: "#c8500a.#b48c32", c31: "#dc8228.#dcb45a", c32: "#ff8228.#ff826e", c33: "#827878.#828282", c34: "#bebebe.#c8c8c8", c35: "#8c8c8c.#828282", c36: "#e6e6e6.#ffffff", c37: "#140a0a.#141414", c38: "#8c460a.#b48c32", c39: "#3c323c.#784650", c40: "#6e5046.#8c640a", c41: "#8c6e50.#b48c32", c42: "#f0821e.#dcb45a", c43: "#aa8278.#828282", c44: "#c8a082.#e6d2b4", c45: "#aaaaaa.#c8c8c8", c46: "#281e14.#141414", c47: "#8c5a46.#b48c32", c48: "#46463c.#784650", c49: "#6e3c5a.#8c640a", c50: "#785064.#8c640a", c51: "#d296a0.#e6d2b4", c52: "#b4966e.#e6d2b4", c53: "#643c46.#8c640a", c54: "#6e1432.#784650", c55: "#32281e.#3c3214", c56: "#aa5a5a.#b48c32", c57: "#faaab4.#c8c8c8", c58: "#dc8282.#e6d2b4", c59: "#ff9682.#e6d2b4", c60: "#a05a64.#b48c32", c61: "#dc8c96.#e6d2b4", c62: "#82506e.#828282", c63: "#aa6e6e.#828282" },
295 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#c878be.#78c8c8", c6: "#a050a0.#50a0b4", c7: "#64b43c.#be3cc8", c8: "#bed23c.#dc64aa", c9: "#ffdc14.#ffa0b4", c10: "#326446.#783c78", c11: "#468c3c.#aa3cbe", c12: "#141414.#141414", c13: "#323c32.#461e50", c14: "#784678.#508c82", c15: "#503c6e.#46785a", c16: "#503c50.#503c50", c17: "#b4a096.#b4a096", c18: "#a0826e.#a0826e", c19: "#826e64.#826e64", c20: "#0a0a0a.#141414", c21: "#96501e.#826e64", c22: "#f0a05a.#dc64aa", c23: "#50141e.#461e50", c24: "#504650.#503c50", c25: "#963c50.#508c82", c26: "#6e2832.#503c50", c27: "#aa6446.#a0826e", c28: "#fafafa.#78c8c8", c29: "#be7846.#a0826e", c30: "#f0f0f0.#b4a096", c31: "#a0a096.#b4a096", c32: "#bebebe.#b4a096", c33: "#965028.#826e64", c34: "#f08c3c.#dc64aa", c35: "#c8c8c8.#b4a096", c36: "#828296.#a0826e", c37: "#641e0a.#461e50", c38: "#c86446.#a0826e", c39: "#322828.#461e50", c40: "#460a14.#141414", c41: "#6e1428.#503c50", c42: "#c85064.#a0826e", c43: "#1e1414.#141414", c44: "#963228.#503c50", c45: "#be5a5a.#a0826e", c46: "#963246.#508c82", c47: "#82465a.#508c82", c48: "#3c2832.#461e50", c49: "#786e78.#826e64", c50: "#c86e8c.#78c8c8", c51: "#dc96a0.#b4a096", c52: "#5a3246.#503c50", c53: "#501e1e.#461e50", c54: "#783232.#503c50", c55: "#96968c.#b4a096", c56: "#a05050.#826e64", c57: "#fac85a.#dc64aa", c58: "#c86464.#a0826e", c59: "#be6432.#a0826e", c60: "#ffb482.#b4a096", c61: "#e6965a.#a0826e", c62: "#ffc8a0.#b4a096", c63: "#46323c.#461e50", c64: "#64505a.#503c50", c65: "#321e28.#461e50", c66: "#500a1e.#141414", c67: "#28141e.#141414", c68: "#b46e78.#a0826e", c69: "#3c3c3c.#461e50", c70: "#b4b4b4.#b4a096", c71: "#6e465a.#508c82", c72: "#828282.#a0826e", c73: "#6e3c50.#503c50", c74: "#646464.#826e64", c75: "#aa648c.#50a0b4", c76: "#966428.#826e64", c77: "#f0aa50.#dc64aa", c78: "#8c8c82.#a0826e", c79: "#46463c.#461e50", c80: "#64283c.#503c50", c81: "#46141e.#461e50", c82: "#a04664.#508c82", c83: "#be7864.#a0826e", c84: "#c8bebe.#b4a096" },
296 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#144678.#786e1e", c6: "#46a0f0.#e6f078", c7: "#141414.#141414", c8: "#2878a0.#aaa028", c9: "#3c3c3c.#3c505a", c10: "#5a5a5a.#507882", c11: "#828282.#648ca0", c12: "#a03232.#a03c64", c13: "#dc3c3c.#dc508c", c14: "#b4b464.#5a82aa", c15: "#e6e6a0.#78b4c8", c16: "#d2d2d2.#aac8c8", c17: "#c88c5a.#5a82aa", c18: "#966446.#a03c64", c19: "#fff0a0.#78b4c8", c20: "#f0c86e.#78b4c8", c21: "#ff785a.#dc508c", c22: "#0a0a0a.#141414", c23: "#b45a32.#a03c64", c24: "#d28c5a.#5a82aa", c25: "#464646.#3c505a", c26: "#3c3232.#3c505a", c27: "#ffd26e.#78b4c8", c28: "#787878.#648ca0", c29: "#8cd2ff.#aac8c8", c30: "#3c96d2.#e6f078", c31: "#dcdcdc.#aac8c8", c32: "#b4aaaa.#aac8c8", c33: "#14141e.#141414", c34: "#dca05a.#5a82aa", c35: "#ff7850.#dc508c", c36: "#b43c32.#a03c64", c37: "#504646.#3c505a", c38: "#281e1e.#141414", c39: "#8c7878.#648ca0", c40: "#322828.#3c505a", c41: "#5a5050.#507882", c42: "#b43c28.#a03c64" },
297 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#323c50.#0a2864", c6: "#5096aa.#1482c8", c7: "#8cc8d2.#3ca0fa", c8: "#3c6e82.#0a5082", c9: "#141414.#14141e", c10: "#3cd2dc.#3cd2dc", c11: "#c8c8d2.#c8c8d2", c12: "#3caac8.#3caac8", c13: "#5a6464.#5a6464", c14: "#781414.#781428", c15: "#c87878.#c87878", c16: "#dc5a28.#e6c828", c17: "#aa3c14.#a08c14", c18: "#5a1400.#503c00", c19: "#0a0a0a.#14141e", c20: "#787882.#5a6464", c21: "#a0a0aa.#3ca0fa", c22: "#32323c.#0a2864", c23: "#3c3c3c.#0a2864", c24: "#787896.#1482c8", c25: "#dcf0fa.#ffffff", c26: "#c8d2e6.#c8c8d2", c27: "#461e1e.#503c00", c28: "#783c46.#5a6464", c29: "#50505a.#5a6464", c30: "#78788c.#5a6464", c31: "#28283c.#0a2864", c32: "#aaaad2.#3ca0fa", c33: "#c8d2d2.#c8c8d2", c34: "#50506e.#5a6464", c35: "#785a96.#5a6464", c36: "#dcfafa.#ffffff", c37: "#aaaac8.#3ca0fa", c38: "#e6e6fa.#ffffff", c39: "#2882be.#3caac8", c40: "#a0a0be.#3ca0fa", c41: "#c8c8e6.#c8c8d2", c42: "#463246.#0a2864", c43: "#bec8dc.#c8c8d2", c44: "#a0a0b4.#3ca0fa", c45: "#64bef0.#3cd2dc", c46: "#786478.#5a6464", c47: "#8c8296.#1482c8", c48: "#5a465a.#5a6464", c49: "#c8c8dc.#c8c8d2", c50: "#c8a0b4.#c8c8d2", c51: "#e6f0ff.#ffffff", c52: "#a0dcff.#3ca0fa", c53: "#c8e6fa.#c8c8d2", c54: "#a096dc.#3ca0fa", c55: "#fafafa.#ffffff", c56: "#468cc8.#3caac8", c57: "#78a0e6.#3ca0fa", c58: "#a0c8ff.#3ca0fa", c59: "#aaa0b4.#3ca0fa", c60: "#968296.#c87878", c61: "#826482.#5a6464", c62: "#1ea0b4.#3caac8", c63: "#5ac8e6.#3cd2dc", c64: "#96d2ff.#3ca0fa" },
298 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#142850.#141450", c6: "#3c468c.#3228a0", c7: "#5a6ebe.#3c3cc8", c8: "#8c8cbe.#7896be", c9: "#b4befa.#a0dcfa", c10: "#788cc8.#5a5af0", c11: "#141414.#14141e", c12: "#ffff14.#ffff14", c13: "#dca014.#dca014", c14: "#5a1400.#501400", c15: "#aa3246.#aa3c14", c16: "#c8c8d2.#c8c8d2", c17: "#dc5a28.#f06e0a", c18: "#787882.#787882", c19: "#5078b4.#3c3cc8", c20: "#3c508c.#3228a0", c21: "#78b4d2.#5a5af0", c22: "#966446.#aa3c14", c23: "#8c8caa.#7896be", c24: "#f0c86e.#dca014", c25: "#6e3232.#501400", c26: "#3c3c6e.#3228a0", c27: "#fafafa.#ffffff", c28: "#0a0a0a.#14141e", c29: "#c88c5a.#f06e0a", c30: "#e67846.#f06e0a", c31: "#c8c8dc.#c8c8d2", c32: "#c8281e.#aa3c14", c33: "#46508c.#3228a0", c34: "#7832a0.#3228a0", c35: "#646482.#787882", c36: "#c8d2dc.#c8c8d2", c37: "#46466e.#3228a0", c38: "#463278.#3228a0", c39: "#ffd25a.#ffff14", c40: "#dc963c.#dca014", c41: "#3c3232.#141450", c42: "#0a1428.#14141e", c43: "#281e32.#141450", c44: "#464646.#141450", c45: "#46145a.#141450", c46: "#64328c.#3228a0", c47: "#962828.#aa3c14", c48: "#a082be.#7896be", c49: "#b4b4c8.#c8c8d2" },
299 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c3c8c.#3c3c78", c6: "#7878c8.#788cbe", c7: "#c89614.#c89614", c8: "#282850.#141e3c", c9: "#5a64aa.#5a6ea0", c10: "#ffd214.#ffd214", c11: "#141414.#141414", c12: "#6e3c5a.#6e4628", c13: "#787882.#787882", c14: "#c8c8d2.#c8c8d2", c15: "#be7878.#be7878", c16: "#e64632.#dc5a28", c17: "#5a1400.#5a1400", c18: "#be3c3c.#aa3c14", c19: "#465a1e.#141e3c", c20: "#8caa32.#c89614", c21: "#a0d246.#c89614", c22: "#c8e678.#c8c8d2", c23: "#0a5a3c.#141e3c", c24: "#50a03c.#787882", c25: "#0a0a0a.#141414", c26: "#78b446.#787882", c27: "#328246.#141e3c", c28: "#6e8c28.#c89614", c29: "#8cbe5a.#787882", c30: "#323250.#141e3c", c31: "#5a6e82.#787882", c32: "#283c46.#141e3c", c33: "#7896a0.#787882", c34: "#505a96.#5a6ea0", c35: "#645aaa.#5a6ea0", c36: "#82a0aa.#788cbe", c37: "#96b4c8.#c8c8d2", c38: "#46508c.#3c3c78", c39: "#466e82.#5a6ea0", c40: "#f0aaaa.#c8c8d2", c41: "#961e28.#aa3c14", c42: "#f03c32.#dc5a28", c43: "#dc2832.#dc5a28", c44: "#e64646.#dc5a28", c45: "#b44646.#aa3c14", c46: "#b42832.#aa3c14", c47: "#dc8282.#be7878", c48: "#505a6e.#3c3c78", c49: "#323c64.#141e3c", c50: "#3c4678.#3c3c78", c51: "#647896.#787882", c52: "#a06ea0.#787882", c53: "#505a28.#6e4628", c54: "#963232.#aa3c14", c55: "#faf0d2.#ffffff", c56: "#dc463c.#dc5a28", c57: "#3c5064.#3c3c78", c58: "#dc1e14.#dc5a28" },
300 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#000000.#141414", c6: "#787878.#b45a82", c7: "#a0a096.#d282aa", c8: "#464646.#781e3c", c9: "#dc963c.#dc963c", c10: "#ffc85a.#ffc85a", c11: "#505050.#963c64", c12: "#785a28.#826428", c13: "#c8c8c8.#c8c8c8", c14: "#ffdc8c.#ffdc8c", c15: "#a0466e.#b43c28", c16: "#be648c.#dc463c", c17: "#d282aa.#ff645a", c18: "#781e1e.#826428", c19: "#0a0a0a.#141414", c20: "#f05050.#dc963c", c21: "#d23232.#b43c28", c22: "#c82828.#b43c28", c23: "#322828.#781e3c", c24: "#504646.#781e3c", c25: "#786464.#b45a82", c26: "#e6505a.#dc463c", c27: "#141414.#141414", c28: "#647864.#b45a82", c29: "#fafafa.#ffffff", c30: "#b4b4b4.#c8c8c8", c31: "#5a32dc.#b45a82", c32: "#5032aa.#b45a82", c33: "#783c46.#826428", c34: "#3c288c.#963c64", c35: "#5064dc.#b45a82", c36: "#ffaab4.#ff645a", c37: "#be6478.#dc463c" },
301 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#823c5a.#be6414", c6: "#f0aab4.#ffd28c", c7: "#c87896.#ffaa6e", c8: "#be5082.#f0783c", c9: "#643c82.#148250", c10: "#7864b4.#46b496", c11: "#000000.#141414", c12: "#3c3c3c.#3c3c3c", c13: "#6e501e.#6e501e", c14: "#f0d264.#ffdc28", c15: "#d2a032.#e6aa00", c16: "#a082c8.#78dcaa", c17: "#b4aae6.#b4fac8", c18: "#143c50.#3c3c3c", c19: "#0a0a0a.#141414", c20: "#78c8fa.#b4fac8", c21: "#3ca0e6.#46b496", c22: "#3c78a0.#46b496", c23: "#3282b4.#46b496", c24: "#326e8c.#148250", c25: "#3c6e82.#148250", c26: "#141414.#141414", c27: "#faf0e6.#ffd28c", c28: "#283c5a.#3c3c3c", c29: "#50506e.#148250", c30: "#d2c8c8.#ffd28c", c31: "#3c8cc8.#46b496", c32: "#6e5014.#6e501e", c33: "#a09696.#ffaa6e", c34: "#ffffff.#ffd28c", c35: "#640a0a.#6e501e", c36: "#785a28.#6e501e", c37: "#aa2832.#be6414", c38: "#5a463c.#3c3c3c", c39: "#dcc882.#ffdc28", c40: "#e65a64.#f0783c", c41: "#fadcaa.#ffd28c", c42: "#8ca096.#78dcaa", c43: "#dcbe82.#ffdc28", c44: "#c83c32.#be6414", c45: "#f0dcaa.#ffd28c", c46: "#a03c6e.#be6414", c47: "#beb4aa.#ffd28c", c48: "#3278aa.#46b496", c49: "#641e46.#be6414", c50: "#dc6e8c.#ffaa6e", c51: "#d2d2d2.#b4fac8", c52: "#dc5a28.#e6aa00", c53: "#a00a0a.#6e501e", c54: "#e6d296.#ffd28c", c55: "#5a1414.#3c3c3c", c56: "#282832.#3c3c3c", c57: "#786464.#be6414", c58: "#3c96c8.#46b496", c59: "#142832.#3c3c3c", c60: "#3278a0.#46b496", c61: "#504646.#3c3c3c", c62: "#d2d2c8.#ffd28c", c63: "#46aae6.#46b496", c64: "#5a4646.#3c3c3c", c65: "#826e3c.#6e501e", c66: "#8c7832.#6e501e", c67: "#8ca082.#ffaa6e" },
302 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#963c64.#a06450", c6: "#ffd2f0.#ffd2aa", c7: "#ffa0aa.#ffaa78", c8: "#c86496.#fa6e1e", c9: "#000000.#141414", c10: "#f06e8c.#dc783c", c11: "#78c878.#dc82a0", c12: "#3c6e50.#96326e", c13: "#a0e68c.#faaac8", c14: "#50a05a.#be5a96", c15: "#fad23c.#ffdc28", c16: "#fffa78.#fffa78", c17: "#c8a032.#e6aa00", c18: "#a07814.#a07814", c19: "#825014.#a07814", c20: "#fae632.#ffdc28", c21: "#d2aa14.#e6aa00", c22: "#141414.#141414", c23: "#fffa96.#fffa78", c24: "#0a0a0a.#141414", c25: "#d2be64.#e6aa00", c26: "#8c7832.#a07814", c27: "#be6478.#fa6e1e", c28: "#783c46.#a06450", c29: "#ffffff.#ffd2aa", c30: "#ffaab4.#ffaa78", c31: "#fafafa.#ffd2aa", c32: "#647864.#96326e", c33: "#3c3c3c.#96326e", c34: "#b4b4b4.#faaac8" },
303 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#b4b4be.#b4b4c8", c7: "#6e6e78.#6e6e82", c8: "#8caa8c.#f0c882", c9: "#788c78.#c8a064", c10: "#783c3c.#8c506e", c11: "#ff5050.#fa7878", c12: "#dc3246.#d2503c", c13: "#aac8aa.#ffe6aa", c14: "#dcdcdc.#dcdce6", c15: "#5a785a.#b48246", c16: "#be8296.#b4b4c8", c17: "#785a64.#6e6e82", c18: "#fac8dc.#dcdce6", c19: "#dcb482.#ffe6aa", c20: "#faf0c8.#dcdce6", c21: "#a06e64.#6e6e82", c22: "#a03246.#8c506e", c23: "#dc5a78.#fa7878", c24: "#f08ca0.#b4b4c8", c25: "#963c46.#8c506e", c26: "#dc506e.#fa7878", c27: "#a0786e.#c8a064", c28: "#a03c46.#8c506e", c29: "#faf0d2.#dcdce6", c30: "#dcb496.#b4b4c8", c31: "#f0828c.#fa7878", c32: "#ffaaaa.#b4b4c8", c33: "#d2788c.#b4b4c8", c34: "#dc8ca0.#b4b4c8", c35: "#dcb4a0.#b4b4c8", c36: "#783c46.#8c506e", c37: "#8c6e5a.#6e6e82", c38: "#fae6dc.#dcdce6", c39: "#ffaab4.#dcdce6", c40: "#be6478.#d2503c", c41: "#0a0a0a.#141414", c42: "#fafafa.#ffffff", c43: "#dc8296.#b4b4c8", c44: "#964650.#8c506e", c45: "#f0c8d2.#dcdce6", c46: "#f0aabe.#b4b4c8", c47: "#6e3c3c.#8c506e", c48: "#e68c64.#fa7878", c49: "#d25064.#d2503c", c50: "#fa7896.#fa7878", c51: "#f0aa82.#b4b4c8" },
304 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5a5a8c.#96505a", c6: "#141414.#141414", c7: "#bebedc.#fac8b4", c8: "#8c8cbe.#d2a08c", c9: "#6e6e78.#b43228", c10: "#3c3c50.#782828", c11: "#b4b4be.#bea0a0", c12: "#7878aa.#aa6e78", c13: "#f04664.#ff6446", c14: "#a0141e.#be3c00", c15: "#dcdcdc.#dcdcdc", c16: "#dcb464.#c8a064", c17: "#ffdc6e.#ffd278", c18: "#464678.#96505a", c19: "#96dce6.#fac8b4", c20: "#50aac8.#d2a08c", c21: "#aa8cc8.#d2a08c", c22: "#c8c8e6.#fac8b4", c23: "#3c7878.#96505a", c24: "#0a0a0a.#141414", c25: "#828cc8.#d2a08c", c26: "#5a50aa.#96505a", c27: "#327878.#96505a", c28: "#96dcf0.#fac8b4", c29: "#50a0c8.#d2a08c", c30: "#4682b4.#aa6e78", c31: "#82bedc.#d2a08c", c32: "#1e5082.#96505a", c33: "#a08cc8.#d2a08c", c34: "#5064a0.#96505a", c35: "#b4a0dc.#fac8b4", c36: "#1e2828.#141414", c37: "#783c46.#782828", c38: "#f0b4dc.#dcdcdc", c39: "#8282be.#d2a08c", c40: "#be6478.#ff6446", c41: "#ffaab4.#dcdcdc", c42: "#8c78aa.#aa6e78", c43: "#28326e.#782828", c44: "#6e6eb4.#aa6e78", c45: "#fafafa.#ffffff", c46: "#963c50.#be3c00", c47: "#dc7896.#ff6446", c48: "#dcdce6.#dcdcdc", c49: "#6464b4.#aa6e78", c50: "#32325a.#782828" },
305 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#284678.#6e1e28", c6: "#4682be.#be3c50", c7: "#3c64a0.#963232", c8: "#141414.#141414", c9: "#78aaf0.#f06e78", c10: "#78788c.#78788c", c11: "#a0b4be.#bebea0", c12: "#d2dce6.#d2dce6", c13: "#8296a0.#a0a082", c14: "#647882.#828264", c15: "#3c465a.#6e6e46", c16: "#be1414.#aa3c3c", c17: "#e64646.#c86464", c18: "#14321e.#141414", c19: "#144632.#6e6e46", c20: "#286e46.#6e6e46", c21: "#0a0a0a.#141414", c22: "#468c6e.#828264", c23: "#1e503c.#6e6e46", c24: "#50463c.#6e6e46", c25: "#a08c78.#78788c", c26: "#786450.#828264", c27: "#f050a0.#c86464", c28: "#beb46e.#a0a082", c29: "#8c7846.#828264", c30: "#286e50.#6e6e46", c31: "#be3278.#c86464", c32: "#0a8ce6.#be3c50", c33: "#145a82.#6e1e28", c34: "#0a3232.#141414", c35: "#5a463c.#6e6e46", c36: "#aa8c6e.#78788c", c37: "#d2dcdc.#d2dce6", c38: "#0aa0dc.#be3c50", c39: "#a0c8aa.#bebea0", c40: "#a0a0a0.#a0a082", c41: "#f02878.#c86464", c42: "#505a5a.#6e6e46", c43: "#785a50.#828264", c44: "#d2dcd2.#d2dce6", c45: "#c8d2c8.#d2dce6", c46: "#14141e.#141414", c47: "#146496.#963232" },
306 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#1e3c78.#6e1e28", c6: "#3c82d2.#be3c50", c7: "#141414.#141414", c8: "#1e5aa0.#963232", c9: "#78aaf0.#f06e78", c10: "#788282.#788282", c11: "#64645a.#646446", c12: "#bed2dc.#bed2dc", c13: "#3c3c3c.#3c3c32", c14: "#828278.#8c8278", c15: "#b42832.#b42832", c16: "#fa5064.#fa5064", c17: "#a0a096.#aaaa96", c18: "#b446d2.#aaaa96", c19: "#821e96.#646446", c20: "#286e46.#3c3c32", c21: "#5a463c.#3c3c32", c22: "#0a0a0a.#141414", c23: "#6e3278.#646446", c24: "#a08c78.#8c8278", c25: "#be3278.#fa5064", c26: "#aa64aa.#aaaa96", c27: "#78645a.#646446", c28: "#f050a0.#fa5064", c29: "#786e5a.#646446", c30: "#a08c6e.#8c8278", c31: "#464646.#3c3c32", c32: "#787878.#788282", c33: "#dcd2d2.#bed2dc", c34: "#bebebe.#bed2dc", c35: "#b43278.#b42832", c36: "#e650a0.#fa5064", c37: "#bea082.#aaaa96", c38: "#3c3232.#3c3c32", c39: "#146e82.#963232", c40: "#969696.#aaaa96", c41: "#6e6e6e.#646446", c42: "#be2882.#fa5064", c43: "#0aaad2.#be3c50", c44: "#146482.#963232", c45: "#b4b4b4.#aaaa96", c46: "#fafafa.#ffffff", c47: "#fa6eaa.#fa5064", c48: "#14321e.#141414", c49: "#144632.#3c3c32", c50: "#286446.#3c3c32", c51: "#143c28.#141414", c52: "#14648c.#963232", c53: "#0aaadc.#be3c50", c54: "#287850.#646446", c55: "#325032.#3c3c32", c56: "#0a3c1e.#141414", c57: "#467850.#646446", c58: "#aaaaa0.#aaaa96", c59: "#282828.#141414", c60: "#dcb48c.#aaaa96", c61: "#463c32.#3c3c32" },
307 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c3c46.#32286e", c6: "#64646e.#3c5a8c", c7: "#141414.#141414", c8: "#8c8ca0.#788caa", c9: "#d2d2d2.#d2d2d2", c10: "#1e1e1e.#141428", c11: "#c8a05a.#bec832", c12: "#ffc878.#faff78", c13: "#785a3c.#787828", c14: "#282832.#141e3c", c15: "#463c3c.#463c3c", c16: "#64463c.#787828", c17: "#d29628.#bec832", c18: "#ffd250.#faff78", c19: "#f0be28.#bec832", c20: "#783c3c.#787828", c21: "#fa3c46.#bec832", c22: "#c89628.#bec832", c23: "#be3c46.#787828", c24: "#ffc850.#faff78", c25: "#be3c3c.#787828", c26: "#ffe6b4.#d2d2d2", c27: "#28285a.#32286e", c28: "#3246a0.#3c5a8c", c29: "#4678be.#788caa", c30: "#a0bed2.#d2d2d2", c31: "#3c78be.#788caa", c32: "#ff8282.#faff78", c33: "#fa3c3c.#bec832", c34: "#502828.#463c3c", c35: "#8c5a5a.#787828" },
308 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c3c46.#32285a", c6: "#d2d2d2.#d2d2d2", c7: "#8c8ca0.#8c8ca0", c8: "#141414.#141414", c9: "#64646e.#3c648c", c10: "#282832.#141e3c", c11: "#e6c83c.#e6c83c", c12: "#82785a.#82785a", c13: "#c8a05a.#bec832", c14: "#ffc878.#faff78", c15: "#1e1e1e.#141428", c16: "#785a3c.#787828", c17: "#b43c46.#b43246", c18: "#323c78.#32285a", c19: "#506ebe.#8c8ca0", c20: "#283c50.#32285a", c21: "#3c5096.#3c648c", c22: "#5078be.#8c8ca0", c23: "#283c78.#32285a", c24: "#0a0a0a.#141414", c25: "#506eb4.#8c8ca0", c26: "#3c508c.#3c648c", c27: "#325096.#3c648c", c28: "#283250.#32285a", c29: "#643c46.#787828", c30: "#dcb43c.#e6c83c", c31: "#ffdc64.#faff78", c32: "#e6dcfa.#d2d2d2", c33: "#aaaa96.#8c8ca0", c34: "#ffffff.#d2d2d2", c35: "#beb4c8.#d2d2d2", c36: "#aaa0b4.#8c8ca0", c37: "#786e82.#3c648c", c38: "#aa3c50.#b43246", c39: "#323c6e.#32285a", c40: "#ff0a3c.#b43246", c41: "#aaaab4.#8c8ca0", c42: "#5a2832.#32285a", c43: "#aaaa8c.#8c8ca0", c44: "#fadc64.#faff78", c45: "#fa0a3c.#b43246", c46: "#ff0a32.#b43246", c47: "#aa3250.#b43246", c48: "#e66e78.#bec832", c49: "#6e6478.#3c648c", c50: "#dcdcf0.#d2d2d2", c51: "#e66478.#bec832", c52: "#461428.#141e3c", c53: "#ff140a.#b43246", c54: "#dc6478.#bec832", c55: "#82788c.#8c8ca0", c56: "#3c5a82.#3c648c", c57: "#6eaac8.#8c8ca0", c58: "#3c82a0.#3c648c", c59: "#324678.#32285a", c60: "#a0785a.#82785a", c61: "#c8aa5a.#bec832", c62: "#464650.#32285a", c63: "#646478.#3c648c", c64: "#786450.#787828", c65: "#3c3c50.#32285a", c66: "#967846.#82785a", c67: "#786e78.#3c648c", c68: "#78283c.#787828", c69: "#78323c.#787828", c70: "#96786e.#82785a", c71: "#a096a0.#8c8ca0", c72: "#dcc8fa.#d2d2d2" },
309 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#5a6478.#826428", c7: "#f0f0ff.#f0dcaa", c8: "#5a3c32.#3c3232", c9: "#a0826e.#96786e", c10: "#d2d2f0.#e6b464", c11: "#786446.#785a50", c12: "#f0dcbe.#d2c8b4", c13: "#beb496.#bea096", c14: "#963c5a.#a03214", c15: "#dc82a0.#fa8c5a", c16: "#c85a82.#e6643c", c17: "#28323c.#3c3232", c18: "#46505a.#826428", c19: "#0a0a0a.#141414", c20: "#0a0a32.#141414", c21: "#14503c.#141414", c22: "#32b48c.#826428", c23: "#785a46.#785a50", c24: "#462828.#3c3232", c25: "#1e966e.#826428", c26: "#aa7850.#96786e", c27: "#28785a.#826428", c28: "#be8c64.#96786e", c29: "#501e28.#3c3232", c30: "#646478.#826428", c31: "#283250.#3c3232", c32: "#0a5a5a.#826428", c33: "#46c8aa.#826428", c34: "#149678.#826428", c35: "#8c5a3c.#785a50", c36: "#280a14.#141414", c37: "#643232.#3c3232", c38: "#be9664.#96786e", c39: "#a06478.#96786e", c40: "#ffb4c8.#d2c8b4", c41: "#14143c.#141414", c42: "#be2846.#a03214", c43: "#d23228.#a03214", c44: "#f06e1e.#e6643c", c45: "#141e1e.#141414", c46: "#1e1e28.#141414", c47: "#645046.#785a50", c48: "#fa8c28.#96786e", c49: "#64645a.#785a50", c50: "#32a06e.#826428", c51: "#c8a078.#bea096", c52: "#324650.#3c3232", c53: "#463c32.#3c3232", c54: "#28643c.#3c3232", c55: "#78dc6e.#bea096", c56: "#3c3c3c.#3c3232", c57: "#322814.#141414", c58: "#145028.#141414", c59: "#0a963c.#826428", c60: "#644628.#3c3232", c61: "#967864.#96786e", c62: "#c8506e.#e6643c", c63: "#f0788c.#fa8c5a", c64: "#f0a0a0.#fa8c5a", c65: "#e65a64.#e6643c", c66: "#505046.#3c3232" },
310 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c466e.#a03c32", c6: "#283c3c.#6e0a0a", c7: "#7878aa.#e68c78", c8: "#505a78.#c86e5a", c9: "#000000.#141414", c10: "#8c8caa.#bea0c8", c11: "#646482.#785a8c", c12: "#b4b4d2.#dcbef0", c13: "#d2dcf0.#f0dcfa", c14: "#782832.#148278", c15: "#c8281e.#32a096", c16: "#ff7878.#50b4be", c17: "#28281e.#6e0a0a", c18: "#0a461e.#6e0a0a", c19: "#a07850.#785a8c", c20: "#1eaa64.#c86e5a", c21: "#322814.#6e0a0a", c22: "#141414.#141414", c23: "#785a3c.#148278", c24: "#0a0a0a.#141414", c25: "#503c28.#6e0a0a", c26: "#0a783c.#6e0a0a", c27: "#5a3c32.#148278", c28: "#be965a.#50b4be", c29: "#3c281e.#6e0a0a", c30: "#b4825a.#50b4be", c31: "#0a3c0a.#6e0a0a", c32: "#1eaa3c.#6e0a0a", c33: "#1e783c.#6e0a0a", c34: "#28140a.#141414", c35: "#14503c.#6e0a0a", c36: "#0a8250.#6e0a0a", c37: "#282828.#6e0a0a", c38: "#140a0a.#141414", c39: "#644628.#148278", c40: "#8c5a3c.#148278", c41: "#825a50.#785a8c", c42: "#ff5050.#50b4be", c43: "#ffaaaa.#50b4be", c44: "#323232.#6e0a0a", c45: "#f03c28.#32a096", c46: "#fa968c.#50b4be", c47: "#141e28.#6e0a0a", c48: "#d21e1e.#32a096", c49: "#ff7896.#50b4be", c50: "#50321e.#148278", c51: "#28323c.#6e0a0a", c52: "#f0788c.#50b4be", c53: "#aa5064.#785a8c", c54: "#0aa064.#c86e5a", c55: "#141e1e.#6e0a0a", c56: "#324650.#6e0a0a", c57: "#a08c6e.#bea0c8" },
311 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#6e6e5a.#b4280a", c6: "#323228.#640000", c7: "#46463c.#820000", c8: "#828278.#dc4628", c9: "#0a0a0a.#141414", c10: "#ffffe6.#ffffe6", c11: "#dcd2aa.#d2c8a0", c12: "#b4b496.#b4b496", c13: "#968c78.#968c78", c14: "#f0e6c8.#fff0b4", c15: "#ff4614.#ff4614", c16: "#b43250.#b43250", c17: "#6e5a50.#6e5a50", c18: "#5a280a.#640000", c19: "#141414.#141414", c20: "#8c3c14.#b43250", c21: "#823c14.#6e5a50", c22: "#aa503c.#b43250", c23: "#ffbe3c.#d2c8a0", c24: "#ff780a.#ff4614", c25: "#ffbe46.#d2c8a0", c26: "#ff6e0a.#ff4614", c27: "#c87828.#ff4614", c28: "#c87846.#968c78", c29: "#faf0be.#fff0b4", c30: "#c86e28.#ff4614", c31: "#d26e46.#b43250", c32: "#dc4628.#ff4614", c33: "#fa820a.#ff4614", c34: "#466e78.#b4280a", c35: "#143246.#640000", c36: "#7882a0.#dc4628", c37: "#32505a.#820000", c38: "#b45ac8.#968c78", c39: "#466478.#b4280a", c40: "#a0a0c8.#b4b496" },
312 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#6e5a46.#6e5046", c6: "#a09682.#968278", c7: "#503c32.#503c32", c8: "#beb4a0.#aaaaa0", c9: "#dcd2c8.#dcc8be", c10: "#141414.#141414", c11: "#64645a.#a02828", c12: "#a0a096.#f07864", c13: "#8c8c78.#c8503c", c14: "#464646.#820a00", c15: "#826e6e.#786464", c16: "#ff6e78.#ff6e6e", c17: "#dc143c.#ff0000", c18: "#2882d2.#c8503c", c19: "#d26ea0.#ff6e6e", c20: "#b45082.#786464", c21: "#b46ec8.#f07864", c22: "#a05ab4.#f07864", c23: "#f0bee6.#dcc8be", c24: "#e696d2.#dcc8be", c25: "#e6a0fa.#dcc8be", c26: "#c878e6.#aaaaa0", c27: "#6e285a.#6e5046", c28: "#64328c.#a02828", c29: "#5a1496.#820a00", c30: "#0a0a0a.#141414", c31: "#8246aa.#786464", c32: "#ffc8ff.#ffffff", c33: "#dc8cf0.#dcc8be", c34: "#b464c8.#f07864", c35: "#5a328c.#a02828", c36: "#fab4ff.#dcc8be", c37: "#78140a.#503c32", c38: "#b42832.#ff0000", c39: "#fa5064.#ff6e6e", c40: "#6e32aa.#786464", c41: "#141450.#141414", c42: "#b44650.#ff0000", c43: "#a03246.#6e5046", c44: "#3c5028.#503c32", c45: "#fa5a82.#ff6e6e", c46: "#a0b4a0.#f07864", c47: "#d2e6b4.#dcc8be", c48: "#ffa0be.#dcc8be", c49: "#6e1eaa.#786464", c50: "#969696.#f07864", c51: "#dcdcdc.#dcc8be", c52: "#787878.#786464", c53: "#c8c8c8.#dcc8be", c54: "#8228d2.#786464", c55: "#b446f0.#f07864", c56: "#c86ef0.#aaaaa0", c57: "#ffd2ff.#ffffff", c58: "#b46ed2.#f07864", c59: "#646464.#a02828", c60: "#aaaaaa.#aaaaa0", c61: "#dc78be.#aaaaa0", c62: "#822832.#503c32", c63: "#64141e.#503c32", c64: "#aa3c46.#ff0000", c65: "#be646e.#786464", c66: "#d23c28.#ff0000" },
313 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5a4632.#645a1e", c6: "#a07828.#a09628", c7: "#dcb432.#dcd246", c8: "#3c3c3c.#1e3c5a", c9: "#000000.#000000", c10: "#645a64.#325a78", c11: "#aaa0a0.#96aab4", c12: "#827878.#6e788c", c13: "#645050.#465064", c14: "#c8c8aa.#aabed2", c15: "#be3214.#be325a", c16: "#504646.#323c50", c17: "#5a286e.#465064", c18: "#aa5abe.#96aab4", c19: "#643278.#325a78", c20: "#141414.#000000", c21: "#b45ad2.#96aab4", c22: "#643c6e.#325a78", c23: "#8c32a0.#6e788c", c24: "#a046be.#6e788c", c25: "#8246a0.#6e788c", c26: "#824696.#6e788c", c27: "#aa82be.#96aab4", c28: "#0a0a0a.#000000", c29: "#6e646e.#325a78", c30: "#642864.#465064", c31: "#aa8caa.#96aab4", c32: "#b450be.#96aab4", c33: "#dcb4e6.#aabed2", c34: "#a08ca0.#96aab4", c35: "#dcbedc.#aabed2", c36: "#8c28a0.#325a78", c37: "#aa96aa.#96aab4", c38: "#463c3c.#1e3c5a", c39: "#be8cbe.#96aab4", c40: "#645a5a.#325a78", c41: "#d2b4d2.#aabed2", c42: "#aa3cb4.#6e788c", c43: "#dcb4dc.#aabed2", c44: "#646464.#325a78", c45: "#6e5078.#325a78", c46: "#5a3c3c.#645a1e", c47: "#d2a046.#dcd246", c48: "#c8b43c.#dcd246", c49: "#28281e.#1e3c5a", c50: "#fafafa.#aabed2", c51: "#ffdc50.#dcd246", c52: "#825082.#6e788c", c53: "#ffe60a.#dcd246", c54: "#322828.#1e3c5a", c55: "#fac80a.#dcd246", c56: "#3c2828.#1e3c5a", c57: "#d2b43c.#dcd246", c58: "#c8b450.#dcd246", c59: "#ffffff.#aabed2", c60: "#6e5a5a.#325a78", c61: "#ffff0a.#dcd246", c62: "#ffe646.#dcd246", c63: "#82283c.#645a1e", c64: "#fadc5a.#dcd246", c65: "#a04646.#a09628", c66: "#c83c46.#be325a", c67: "#320a3c.#1e3c5a", c68: "#8c5096.#6e788c", c69: "#5a285a.#323c50", c70: "#8c6e96.#6e788c", c71: "#505046.#323c50", c72: "#c8a0dc.#aabed2", c73: "#503c5a.#323c50", c74: "#786478.#6e788c", c75: "#8c780a.#a09628", c76: "#ffdc0a.#dcd246", c77: "#282828.#1e3c5a", c78: "#283228.#1e3c5a", c79: "#1e1e14.#000000", c80: "#b4645a.#a09628", c81: "#aa646e.#6e788c", c82: "#f0a0aa.#aabed2" },
314 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#283ca0.#5a1e78", c6: "#1450c8.#9650a0", c7: "#323c5a.#3c0a5a", c8: "#5a82f0.#b482dc", c9: "#b4aab4.#b4aab4", c10: "#d2c8dc.#d2c8dc", c11: "#827882.#827882", c12: "#1e78dc.#a078c8", c13: "#96aaff.#c8a0e6", c14: "#504646.#504646", c15: "#f0e6ff.#f0e6ff", c16: "#141414.#141414", c17: "#285078.#5a1464", c18: "#282828.#141414", c19: "#5a5a5a.#504646", c20: "#3c3c3c.#504646", c21: "#821e1e.#504646", c22: "#0a0a0a.#141414", c23: "#e63232.#827882", c24: "#ffdc50.#b4aab4", c25: "#6e3c78.#504646", c26: "#be1e32.#504646", c27: "#be6ec8.#b4aab4", c28: "#8c5096.#827882", c29: "#287864.#5a1464", c30: "#3caa96.#827882", c31: "#50dcbe.#b482dc", c32: "#321e1e.#141414", c33: "#5a4646.#504646", c34: "#7846a0.#827882", c35: "#b464d2.#b4aab4", c36: "#463232.#504646", c37: "#1e1e1e.#141414", c38: "#0aa08c.#5a1464", c39: "#502878.#3c0a5a", c40: "#0a646e.#5a1464", c41: "#aa3250.#504646", c42: "#be1e1e.#504646", c43: "#fab43c.#b4aab4", c44: "#bebebe.#b4aab4", c45: "#fafafa.#f0e6ff", c46: "#462846.#504646", c47: "#b42832.#504646", c48: "#c8beaa.#b4aab4", c49: "#8c826e.#827882", c50: "#965abe.#827882", c51: "#780a1e.#504646", c52: "#fa4646.#827882", c53: "#be1432.#504646", c54: "#fadc0a.#b4aab4", c55: "#503c3c.#504646", c56: "#ffc80a.#b4aab4", c57: "#fff00a.#b4aab4", c58: "#283246.#3c0a5a", c59: "#784682.#827882", c60: "#d2a00a.#827882", c61: "#fa8c82.#b4aab4", c62: "#dcbe28.#827882", c63: "#c882e6.#b4aab4", c64: "#3cd2b4.#a078c8", c65: "#323c46.#3c0a5a", c66: "#0a3c3c.#3c0a5a", c67: "#505a64.#504646", c68: "#462828.#504646", c69: "#281414.#141414", c70: "#1e826e.#5a1464", c71: "#8c5046.#504646", c72: "#643c32.#504646", c73: "#0a3c32.#141414", c74: "#321e50.#3c0a5a", c75: "#826ebe.#827882", c76: "#6e6e5a.#827882", c77: "#64508c.#827882", c78: "#64140a.#504646", c79: "#dce6e6.#f0e6ff", c80: "#be2832.#504646", c81: "#b4b4aa.#b4aab4", c82: "#dcc80a.#827882", c83: "#6e6e64.#827882", c84: "#aa785a.#827882", c85: "#f0dcd2.#d2c8dc", c86: "#e6b48c.#b4aab4" },
315 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#82828c.#aa823c", c6: "#e6e6f0.#fffa8c", c7: "#141414.#141414", c8: "#b4b4be.#dcc83c", c9: "#5a5a64.#6e501e", c10: "#fff05a.#fff05a", c11: "#bea014.#bea014", c12: "#5a6478.#5a6478", c13: "#3c3c50.#3c3c50", c14: "#827800.#827800", c15: "#c8003c.#c8003c", c16: "#00e600.#00e600", c17: "#00a000.#00a000", c18: "#dcc83c.#dcc83c", c19: "#788296.#788296", c20: "#c8c8e6.#fffa8c", c21: "#ffffff.#fffa8c", c22: "#3c6e82.#5a6478", c23: "#a0a0c8.#dcc83c", c24: "#64aae6.#dcc83c", c25: "#78c8ff.#dcc83c", c26: "#5a96c8.#788296", c27: "#828296.#aa823c", c28: "#f0f0fa.#fffa8c", c29: "#5a8cc8.#788296", c30: "#64aadc.#788296", c31: "#78c8fa.#dcc83c", c32: "#3c6482.#5a6478", c33: "#aadcfa.#fffa8c", c34: "#aae6ff.#fffa8c", c35: "#0a0a0a.#141414", c36: "#14a0c8.#788296", c37: "#14b4f0.#788296", c38: "#d2d2dc.#fffa8c", c39: "#b4b4dc.#dcc83c", c40: "#9696be.#dcc83c", c41: "#fafafa.#fffa8c", c42: "#5a82c8.#788296", c43: "#325a82.#5a6478", c44: "#78bef0.#dcc83c", c45: "#64a0e6.#788296", c46: "#be4646.#c8003c", c47: "#5a5a78.#5a6478", c48: "#d2d2e6.#fffa8c", c49: "#faffff.#fffa8c", c50: "#be3c28.#c8003c" },
316 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3ca03c.#648c46", c6: "#3c5a28.#28505a", c7: "#78d26e.#8cbe78", c8: "#64463c.#64503c", c9: "#000000.#000000", c10: "#8c6e3c.#8c783c", c11: "#5a783c.#3c7878", c12: "#b48250.#b4a050", c13: "#96aa5a.#5aaa96", c14: "#dce68c.#a0e6c8", c15: "#bec882.#82c8b4", c16: "#fae65a.#f0fa3c", c17: "#c8be3c.#c8c83c", c18: "#a0a0c8.#82c8b4", c19: "#7878a0.#5aaa96", c20: "#dce6f0.#ffffff", c21: "#0a0a0a.#000000", c22: "#466496.#3c7878", c23: "#5ac8ff.#8cbe78", c24: "#14a0c8.#8cbe78", c25: "#283c5a.#28505a", c26: "#a0dcff.#ffffff", c27: "#aab4c8.#82c8b4", c28: "#c8c8e6.#ffffff", c29: "#dcdcf0.#ffffff", c30: "#f0faff.#ffffff", c31: "#c8c8d2.#a0e6c8", c32: "#6e82be.#8cbe78", c33: "#78aaf0.#82c8b4", c34: "#aadcff.#ffffff", c35: "#280a1e.#000000", c36: "#d26e6e.#b4a050", c37: "#828296.#5aaa96", c38: "#821e0a.#64503c", c39: "#141414.#000000", c40: "#dc5a64.#b4a050", c41: "#aa3232.#8c783c", c42: "#ff643c.#b4a050", c43: "#0aa0d2.#8cbe78", c44: "#28325a.#28505a", c45: "#1496be.#648c46", c46: "#fafafa.#ffffff", c47: "#3cbeff.#8cbe78", c48: "#dcdce6.#ffffff", c49: "#d2d2e6.#ffffff", c50: "#6ec8ff.#8cbe78" },
317 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c8c3c.#648c46", c6: "#3c5a28.#3c5a28", c7: "#64b46e.#8cbe78", c8: "#141414.#141414", c9: "#64463c.#28505a", c10: "#b48250.#5aaa96", c11: "#8c6e3c.#3c7878", c12: "#dcb43c.#82c8b4", c13: "#f0d23c.#a0e6c8", c14: "#6e8c46.#8c783c", c15: "#aac864.#f0fa3c", c16: "#96aa5a.#c8c83c", c17: "#d2d2d2.#d2d2d2", c18: "#969696.#969696", c19: "#5a3c64.#28505a", c20: "#f0dcff.#ffffff", c21: "#d2a0dc.#d2d2d2", c22: "#0a0a0a.#141414", c23: "#826e82.#969696", c24: "#f0dcf0.#ffffff", c25: "#827882.#969696", c26: "#504650.#28505a", c27: "#faf0fa.#ffffff", c28: "#826482.#969696", c29: "#beaabe.#d2d2d2", c30: "#c8aac8.#d2d2d2", c31: "#5a505a.#28505a", c32: "#e6c8e6.#d2d2d2", c33: "#d2aad2.#d2d2d2", c34: "#9682b4.#969696", c35: "#645a82.#28505a", c36: "#8c78b4.#969696", c37: "#b4a0e6.#d2d2d2", c38: "#64be46.#8cbe78", c39: "#96dc78.#f0fa3c", c40: "#50963c.#648c46", c41: "#64c850.#8cbe78", c42: "#289646.#648c46", c43: "#645082.#28505a", c44: "#32b432.#648c46", c45: "#1e821e.#648c46", c46: "#9682be.#969696", c47: "#3ce63c.#8cbe78", c48: "#8c648c.#969696", c49: "#468c3c.#648c46", c50: "#286414.#3c5a28", c51: "#f0d2f0.#d2d2d2", c52: "#dcbedc.#d2d2d2", c53: "#c8a0d2.#d2d2d2", c54: "#b4f082.#f0fa3c", c55: "#3c285a.#28505a", c56: "#6e140a.#28505a", c57: "#5a3c5a.#28505a", c58: "#c896f0.#d2d2d2", c59: "#beb4f0.#d2d2d2", c60: "#826eaa.#969696", c61: "#9678dc.#969696", c62: "#c83c14.#3c7878", c63: "#64648c.#969696", c64: "#5a5078.#28505a", c65: "#6e50a0.#969696", c66: "#328c3c.#648c46", c67: "#a0505a.#3c7878", c68: "#3c643c.#3c5a28", c69: "#463c5a.#28505a", c70: "#783c46.#28505a", c71: "#dc8c8c.#969696", c72: "#8cf0aa.#f0fa3c", c73: "#e6a0aa.#d2d2d2", c74: "#aad2ff.#d2d2d2", c75: "#5aaafa.#969696", c76: "#fff0ff.#ffffff", c77: "#826478.#3c7878", c78: "#f0f0f0.#ffffff", c79: "#8c6e8c.#969696", c80: "#dcbed2.#d2d2d2", c81: "#5a465a.#28505a", c82: "#8c6496.#969696", c83: "#c8aad2.#d2d2d2", c84: "#644678.#28505a", c85: "#e6d2f0.#d2d2d2", c86: "#c8aadc.#d2d2d2", c87: "#645078.#28505a", c88: "#b496aa.#969696", c89: "#b482b4.#969696", c90: "#82e66e.#f0fa3c", c91: "#64a046.#8c783c", c92: "#0ab432.#648c46", c93: "#1e7850.#648c46", c94: "#288c3c.#648c46", c95: "#b4c85a.#f0fa3c", c96: "#8c6eaa.#969696", c97: "#5ad250.#8cbe78", c98: "#64be64.#8cbe78", c99: "#145a0a.#3c5a28", c100: "#50b432.#648c46", c101: "#be96e6.#d2d2d2", c102: "#966ebe.#969696", c103: "#a082c8.#969696", c104: "#8264be.#969696", c105: "#b4a0c8.#d2d2d2", c106: "#6e6496.#969696", c107: "#6e46a0.#969696", c108: "#5a4696.#28505a", c109: "#968cc8.#969696", c110: "#d2befa.#d2d2d2" },
318 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#146414.#32641e", c6: "#328c3c.#648c46", c7: "#3caa3c.#8cbe78", c8: "#141414.#141414", c9: "#a0a0a0.#a0a0a0", c10: "#6e7878.#6e7878", c11: "#e6e6e6.#e6e6e6", c12: "#64463c.#645a28", c13: "#8c6e3c.#828232", c14: "#b48250.#c8c83c", c15: "#3c5a28.#32643c", c16: "#46505a.#46505a", c17: "#827882.#6e7878", c18: "#beaabe.#bebebe", c19: "#f0dcf0.#e6e6e6", c20: "#504650.#46505a", c21: "#78a028.#828232", c22: "#96be50.#c8c83c", c23: "#826482.#6e7878", c24: "#64783c.#828232", c25: "#faf0fa.#e6e6e6", c26: "#e6c8e6.#e6e6e6", c27: "#d2aad2.#bebebe", c28: "#8c648c.#6e7878", c29: "#645064.#46505a", c30: "#826e82.#6e7878", c31: "#c8aad2.#bebebe", c32: "#fafafa.#e6e6e6", c33: "#c8aac8.#bebebe", c34: "#503c50.#46505a", c35: "#e6d2e6.#e6e6e6", c36: "#0a0a0a.#141414", c37: "#644678.#46505a", c38: "#8c6ea0.#6e7878", c39: "#1e1e1e.#141414", c40: "#f0d2f0.#e6e6e6", c41: "#5a3c64.#46505a", c42: "#32781e.#32643c", c43: "#46b432.#8cbe78", c44: "#647846.#828232", c45: "#d2e6a0.#bebebe", c46: "#1e821e.#32641e", c47: "#a08caa.#a0a0a0", c48: "#3ce63c.#8cbe78", c49: "#1e7850.#648c46", c50: "#3c7828.#648c46", c51: "#d24678.#c8c83c", c52: "#46d214.#8cbe78", c53: "#28781e.#32641e", c54: "#0abe3c.#8cbe78", c55: "#ff7896.#c8c83c", c56: "#50d228.#8cbe78", c57: "#32b432.#8cbe78", c58: "#821e0a.#645a28", c59: "#b4f082.#bebebe", c60: "#b4321e.#828232", c61: "#64aa32.#8cbe78", c62: "#507846.#648c46", c63: "#aa7882.#a0a0a0", c64: "#64c850.#8cbe78", c65: "#aadc82.#a0a0a0", c66: "#82be50.#8cbe78", c67: "#be82b4.#a0a0a0", c68: "#d2f08c.#bebebe", c69: "#dc8c82.#c8c83c", c70: "#645a82.#6e7878", c71: "#b4a0e6.#bebebe", c72: "#8c78b4.#a0a0a0", c73: "#e67896.#a0a0a0", c74: "#6e50a0.#6e7878", c75: "#a05a6e.#c8c83c", c76: "#d26464.#c8c83c", c77: "#c896f0.#bebebe", c78: "#f08c78.#c8c83c", c79: "#9678dc.#a0a0a0", c80: "#be96e6.#bebebe", c81: "#b482b4.#a0a0a0", c82: "#6e46a0.#6e7878", c83: "#966ebe.#a0a0a0", c84: "#8c64b4.#a0a0a0", c85: "#a082dc.#a0a0a0", c86: "#be8cf0.#bebebe", c87: "#8c6e96.#6e7878", c88: "#826478.#6e7878", c89: "#f0f0f0.#e6e6e6", c90: "#dcbed2.#bebebe", c91: "#b496aa.#a0a0a0", c92: "#dcd2e6.#e6e6e6", c93: "#5a465a.#46505a", c94: "#6e5078.#6e7878", c95: "#f0e6f0.#e6e6e6", c96: "#8c6e8c.#6e7878", c97: "#28823c.#648c46", c98: "#5ab45a.#8cbe78", c99: "#6ebe64.#8cbe78", c100: "#64a046.#8cbe78", c101: "#aac878.#a0a0a0", c102: "#b4c85a.#c8c83c", c103: "#6e6e46.#828232", c104: "#dce6aa.#bebebe", c105: "#aabe78.#a0a0a0", c106: "#6e6496.#6e7878", c107: "#d2b4f0.#e6e6e6", c108: "#463c5a.#46505a", c109: "#968cc8.#a0a0a0", c110: "#aa8cbe.#a0a0a0", c111: "#643c96.#6e7878", c112: "#8264be.#a0a0a0", c113: "#b4a0c8.#bebebe", c114: "#8c6eaa.#a0a0a0" },
319 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#b46e28.#aa1450", c6: "#dc8200.#d23264", c7: "#783c14.#6e1428", c8: "#ffaa50.#fa5a78", c9: "#141414.#141414", c10: "#96780a.#968228", c11: "#dcb450.#dcc85a", c12: "#ffe6aa.#faf0a0", c13: "#f06e6e.#fa8c46", c14: "#a03232.#a03c46", c15: "#e63c3c.#e63c3c", c16: "#646478.#646478", c17: "#e63232.#e6323c", c18: "#ffd232.#f0e63c", c19: "#bea0be.#faf0a0", c20: "#8c7896.#646478", c21: "#e6dce6.#ffffff", c22: "#5a3c5a.#646478", c23: "#827882.#646478", c24: "#dcc8dc.#faf0a0", c25: "#e6d2e6.#ffffff", c26: "#645064.#646478", c27: "#826482.#646478", c28: "#504650.#646478", c29: "#fafafa.#ffffff", c30: "#e6c8e6.#ffffff", c31: "#beaabe.#faf0a0", c32: "#d2aad2.#faf0a0", c33: "#826e82.#646478", c34: "#503c50.#646478", c35: "#968c96.#646478", c36: "#beb4be.#faf0a0", c37: "#3c643c.#646478", c38: "#8c8c96.#646478", c39: "#328c3c.#646478", c40: "#a078a0.#646478", c41: "#78e682.#dcc85a", c42: "#64648c.#646478", c43: "#463c5a.#646478", c44: "#8c82be.#646478", c45: "#f0e6f0.#ffffff", c46: "#503232.#6e1428", c47: "#783c46.#a03c46", c48: "#5ac83c.#968228", c49: "#dc8c8c.#fa8c46", c50: "#a0505a.#a03c46", c51: "#32781e.#6e1428", c52: "#1e821e.#141414", c53: "#286e1e.#141414", c54: "#46b432.#968228", c55: "#32b432.#646478", c56: "#8c6ebe.#646478", c57: "#b48cf0.#faf0a0", c58: "#64468c.#646478", c59: "#aadc82.#dcc85a", c60: "#96be50.#dcc85a", c61: "#64783c.#646478", c62: "#826ebe.#646478", c63: "#645082.#646478", c64: "#8c64c8.#646478", c65: "#aa82d2.#646478", c66: "#be8cf0.#faf0a0", c67: "#647846.#646478", c68: "#d2e6a0.#faf0a0", c69: "#64aa32.#968228", c70: "#dcfaa0.#faf0a0", c71: "#d26e96.#fa8c46", c72: "#b4dc82.#dcc85a", c73: "#dcbeff.#ffffff", c74: "#463c64.#646478", c75: "#821e0a.#6e1428", c76: "#0a0a0a.#141414", c77: "#8c648c.#646478", c78: "#644678.#646478", c79: "#5a3c64.#646478", c80: "#8c6ea0.#646478", c81: "#c8aac8.#faf0a0", c82: "#f0d2f0.#ffffff", c83: "#645078.#646478", c84: "#826e96.#646478", c85: "#826496.#646478", c86: "#faf0fa.#ffffff", c87: "#beaac8.#faf0a0", c88: "#dcd2e6.#ffffff", c89: "#beaad2.#faf0a0", c90: "#f0f0f0.#ffffff", c91: "#a08caa.#646478", c92: "#b482b4.#fa8c46", c93: "#6e46a0.#646478", c94: "#1e7850.#646478", c95: "#aa8cbe.#646478", c96: "#966ed2.#646478", c97: "#0aaa32.#646478", c98: "#8c64b4.#646478", c99: "#328246.#646478", c100: "#a082dc.#646478", c101: "#64b464.#646478", c102: "#8264b4.#646478", c103: "#507846.#646478", c104: "#82be50.#dcc85a", c105: "#d2f08c.#faf0a0", c106: "#5a3c8c.#646478", c107: "#325a0a.#6e1428", c108: "#aac878.#dcc85a", c109: "#dce6aa.#faf0a0", c110: "#bea0fa.#ffffff", c111: "#32961e.#968228", c112: "#826478.#646478", c113: "#dcbed2.#faf0a0", c114: "#b496aa.#fa8c46", c115: "#5a465a.#646478", c116: "#f0dcf0.#ffffff", c117: "#8c6e8c.#646478", c118: "#64a046.#646478", c119: "#b4c85a.#dcc85a", c120: "#50b432.#968228", c121: "#dce6f0.#ffffff", c122: "#b4a0c8.#faf0a0", c123: "#8c6eaa.#646478", c124: "#6e6496.#646478", c125: "#9682c8.#646478", c126: "#d2e664.#dcc85a", c127: "#a0b450.#dcc85a", c128: "#d2e696.#faf0a0", c129: "#5a6e32.#6e1428" },
320 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#a05014.#d23264", c6: "#d28c28.#fa5a78", c7: "#6e3c0a.#96143c", c8: "#c83c14.#e63c3c", c9: "#141414.#141414", c10: "#785a14.#786414", c11: "#f0c896.#faf0a0", c12: "#8c783c.#968228", c13: "#c89664.#dcc85a", c14: "#ffc83c.#f0e63c", c15: "#1478dc.#aa78d2", c16: "#1450b4.#8250a0", c17: "#dce6e6.#dce6e6", c18: "#f0a03c.#f0a03c", c19: "#645a5a.#968228", c20: "#b43c0a.#e63c3c", c21: "#beb4b4.#faf0a0", c22: "#d2d2c8.#dce6e6", c23: "#f0823c.#f0a03c", c24: "#f0aa6e.#dcc85a", c25: "#0a0a0a.#141414", c26: "#504628.#96143c", c27: "#be643c.#fa5a78", c28: "#e6dcaa.#faf0a0", c29: "#f0e6dc.#dce6e6", c30: "#968c78.#dcc85a", c31: "#b4aa96.#dcc85a", c32: "#aa5028.#d23264", c33: "#6e280a.#96143c", c34: "#c8c8aa.#faf0a0", c35: "#e6dcd2.#dce6e6", c36: "#a09696.#dcc85a", c37: "#b4460a.#d23264", c38: "#503c1e.#96143c", c39: "#f0783c.#f0a03c", c40: "#d2c8aa.#faf0a0", c41: "#82280a.#96143c", c42: "#f0aa64.#f0a03c", c43: "#be6432.#fa5a78", c44: "#786e50.#968228", c45: "#c8be78.#dcc85a", c46: "#f0f0f0.#dce6e6", c47: "#3c280a.#141414", c48: "#a03c0a.#d23264", c49: "#140a0a.#141414", c50: "#c85a32.#e63c3c", c51: "#8c3c28.#d23264", c52: "#dc7850.#dcc85a", c53: "#e6a08c.#faf0a0", c54: "#b45032.#d23264", c55: "#3c323c.#141414", c56: "#dcd2c8.#dce6e6", c57: "#8c7882.#968228", c58: "#aaa0a0.#dcc85a", c59: "#a08c96.#dcc85a", c60: "#be783c.#fa5a78", c61: "#f0b496.#faf0a0", c62: "#beb4aa.#faf0a0", c63: "#c8c8be.#dce6e6", c64: "#14141e.#141414" },
321 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#825a0a.#968228", c6: "#143c78.#8250a0", c7: "#141414.#141414", c8: "#c8a01e.#dcc85a", c9: "#e63c3c.#e63c3c", c10: "#fa8c46.#fa8c46", c11: "#3c78a0.#aa78d2", c12: "#ffdc50.#faf0a0", c13: "#a0643c.#d23264", c14: "#6e3c14.#96143c", c15: "#e68c5a.#fa5a78", c16: "#bec8dc.#c8c8e6", c17: "#787882.#828ca0", c18: "#822832.#a03c46", c19: "#3c6e8c.#aa78d2", c20: "#0a0a0a.#141414", c21: "#6eb4d2.#c8c8e6", c22: "#a0c8ff.#c8c8e6", c23: "#bef0ff.#c8c8e6", c24: "#5a82aa.#aa78d2", c25: "#283c78.#8250a0", c26: "#ffffaa.#ffffff", c27: "#ffe60a.#faf0a0", c28: "#c8b41e.#dcc85a", c29: "#323c5a.#8250a0", c30: "#fff00a.#faf0a0", c31: "#d2b41e.#dcc85a", c32: "#285a96.#aa78d2", c33: "#64b4dc.#c8c8e6", c34: "#bee6ff.#c8c8e6", c35: "#a0c8fa.#c8c8e6", c36: "#0a3250.#8250a0", c37: "#8278b4.#828ca0", c38: "#a0a0dc.#c8c8e6", c39: "#bed2f0.#c8c8e6", c40: "#ffc80a.#dcc85a", c41: "#5a6478.#828ca0", c42: "#dcffff.#ffffff" },
322 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#1e64a0.#1e7896", c6: "#144678.#145a78", c7: "#6ea0e6.#64c8d2", c8: "#328cd2.#32aabe", c9: "#64a0c8.#64c8c8", c10: "#a0d2fa.#a0faf0", c11: "#bec8dc.#bedcdc", c12: "#647896.#648c96", c13: "#141414.#141414", c14: "#aa823c.#aa963c", c15: "#fff0c8.#fff0c8", c16: "#fac83c.#faf03c", c17: "#644614.#645014", c18: "#0a6e78.#1e7878", c19: "#8ca096.#648c96", c20: "#505a50.#645014", c21: "#dce6dc.#fff0c8", c22: "#0a0a0a.#141414", c23: "#282828.#141414", c24: "#828282.#648c96", c25: "#b4b4b4.#bedcdc", c26: "#d2d2d2.#bedcdc", c27: "#464646.#645014", c28: "#6e6e6e.#648c96", c29: "#82968c.#648c96", c30: "#ff3232.#aa963c", c31: "#dcdcdc.#bedcdc", c32: "#828278.#648c96", c33: "#828c82.#648c96", c34: "#465a5a.#145a78", c35: "#323232.#141414", c36: "#d2c8d2.#bedcdc", c37: "#78786e.#648c96", c38: "#8c826e.#648c96", c39: "#5a5050.#645014", c40: "#e6e6e6.#fff0c8", c41: "#646464.#648c96", c42: "#bebebe.#bedcdc", c43: "#bebeb4.#bedcdc", c44: "#f0f0f0.#ffffff", c45: "#3c3c50.#145a78", c46: "#b4aaaa.#bedcdc", c47: "#5a5a5a.#648c96", c48: "#f01e46.#aa963c", c49: "#ffa0a0.#fff0c8", c50: "#aaaa78.#aa963c", c51: "#dcd2e6.#bedcdc", c52: "#960a28.#645014", c53: "#ff3c3c.#aa963c", c54: "#aaa0a0.#bedcdc", c55: "#aab4aa.#bedcdc", c56: "#a0b4a0.#bedcdc", c57: "#ff7878.#faf03c", c58: "#1e1e28.#141414", c59: "#ffb4a0.#fff0c8", c60: "#ff6478.#aa963c", c61: "#78785a.#aa963c", c62: "#324646.#145a78", c63: "#3c3c46.#145a78", c64: "#fafafa.#ffffff", c65: "#50645a.#648c96" },
323 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#be8c6e.#96963c", c6: "#ffe682.#fffa82", c7: "#78503c.#78783c", c8: "#f0c864.#e6dc5a", c9: "#141414.#141414", c10: "#1e3c6e.#145a78", c11: "#1e5a96.#1e7896", c12: "#64a0fa.#64beaa", c13: "#a0c8ff.#b4faf0", c14: "#dcf0ff.#dcf0ff", c15: "#3c78b4.#1e7878", c16: "#bec8dc.#bec8dc", c17: "#82b4ff.#8cd2c8", c18: "#784646.#78783c", c19: "#d2a046.#96963c", c20: "#8c4632.#78783c", c21: "#0a0a0a.#141414", c22: "#e6c896.#fffa82", c23: "#a06446.#78783c", c24: "#50321e.#78783c", c25: "#ffe6aa.#fffa82", c26: "#bea078.#96963c", c27: "#6e4646.#78783c", c28: "#d29646.#96963c", c29: "#3c1e14.#141414", c30: "#a07850.#96963c", c31: "#6e5032.#78783c", c32: "#e6be78.#e6dc5a", c33: "#b49678.#96963c", c34: "#fadcaa.#fffa82", c35: "#dcbe8c.#e6dc5a", c36: "#c83c28.#78783c", c37: "#e66e5a.#96963c", c38: "#fafafa.#ffffff", c39: "#be3214.#78783c", c40: "#a03c46.#78783c", c41: "#d2506e.#96963c", c42: "#ffaac8.#bec8dc", c43: "#f050a0.#96963c", c44: "#e6b46e.#e6dc5a", c45: "#28140a.#141414", c46: "#32140a.#141414", c47: "#b47828.#96963c", c48: "#825a3c.#78783c", c49: "#0a1446.#141414", c50: "#3c4678.#145a78", c51: "#d28c46.#96963c", c52: "#323250.#145a78", c53: "#d2be3c.#e6dc5a", c54: "#501e14.#141414", c55: "#a0dcdc.#bec8dc", c56: "#96bebe.#bec8dc", c57: "#ff788c.#96963c", c58: "#be5a64.#96963c", c59: "#fae6b4.#fffa82", c60: "#d28c32.#96963c", c61: "#c87832.#96963c", c62: "#78140a.#78783c", c63: "#e67878.#96963c", c64: "#be9678.#96963c", c65: "#d24628.#78783c" },
324 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#be8c6e.#96963c", c6: "#ffe682.#fffa82", c7: "#f0c864.#e6dc5a", c8: "#141414.#141414", c9: "#143c78.#1e7896", c10: "#508ce6.#64beaa", c11: "#4678aa.#64c8d2", c12: "#a0c8ff.#b4faf0", c13: "#dcf0ff.#dcf0ff", c14: "#141e3c.#0a5064", c15: "#285a96.#1e7878", c16: "#78503c.#78783c", c17: "#78a0f0.#8cd2c8", c18: "#781414.#78783c", c19: "#dc465a.#96963c", c20: "#dc6478.#96963c", c21: "#ffc8d2.#dcf0ff", c22: "#a03c3c.#78783c", c23: "#fa8c8c.#96963c", c24: "#fa7878.#96963c", c25: "#faaab4.#fffa82", c26: "#96460a.#78783c", c27: "#ff8228.#e6dc5a", c28: "#142846.#0a5064", c29: "#3c3c64.#1e7896", c30: "#0a0a0a.#141414", c31: "#0a1414.#141414", c32: "#c86414.#78783c", c33: "#6e1e1e.#78783c", c34: "#be5a28.#78783c", c35: "#502828.#78783c", c36: "#1e1e1e.#141414", c37: "#323250.#0a5064", c38: "#f05a64.#96963c", c39: "#5a6482.#64c8d2", c40: "#fa6e6e.#96963c", c41: "#f04650.#96963c", c42: "#f05064.#96963c", c43: "#f0505a.#96963c", c44: "#5a3c28.#78783c", c45: "#e6505a.#96963c", c46: "#faa0a0.#e6dc5a", c47: "#fa8c96.#96963c", c48: "#7882a0.#64c8d2", c49: "#dc6e78.#96963c", c50: "#8c1e14.#78783c", c51: "#f03232.#96963c", c52: "#3c465a.#1e7896", c53: "#be3246.#78783c", c54: "#ff6464.#96963c", c55: "#6e140a.#78783c", c56: "#dc3c50.#96963c", c57: "#a02832.#78783c", c58: "#ffa028.#e6dc5a", c59: "#b4641e.#78783c", c60: "#c88c1e.#96963c", c61: "#3c5050.#1e7896", c62: "#282846.#0a5064", c63: "#46466e.#1e7896" },
325 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c50a0.#826e28", c6: "#323246.#463c0a", c7: "#8ca0e6.#fad25a", c8: "#6478be.#c8a050", c9: "#aabefa.#fff0a0", c10: "#000000.#141414", c11: "#a03246.#a01e28", c12: "#dc5050.#dc5050", c13: "#ff9696.#ffaaa0", c14: "#ff6e78.#ff6e6e", c15: "#5a141e.#5a141e", c16: "#283232.#463c0a", c17: "#0a0a0a.#141414", c18: "#1e1e1e.#463c0a", c19: "#78828c.#c8a050", c20: "#464650.#463c0a", c21: "#505a5a.#463c0a", c22: "#b4bebe.#fff0a0", c23: "#fafafa.#fff0a0", c24: "#141414.#141414", c25: "#14f014.#463c0a", c26: "#64d2be.#fad25a", c27: "#fa2828.#dc5050", c28: "#f0965a.#ff6e6e", c29: "#9664c8.#c8a050", c30: "#0a5ac8.#826e28", c31: "#e6e6b4.#ffaaa0", c32: "#fff0f0.#fff0a0", c33: "#ff0a28.#dc5050", c34: "#0adcff.#fad25a", c35: "#8282be.#c8a050" },
326 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#783228.#783228", c6: "#5a281e.#5a281e", c7: "#141414.#141414", c8: "#f0788c.#f0788c", c9: "#e65a64.#e6465a", c10: "#be3250.#be2850", c11: "#283c46.#283c46", c12: "#c8c8dc.#c8c8dc", c13: "#144682.#503c14", c14: "#3c64aa.#827846", c15: "#5a78c8.#c8a05a", c16: "#82aafa.#fff0a0", c17: "#78a0e6.#fad25a", c18: "#3c465a.#3c465a", c19: "#787878.#827846", c20: "#fafafa.#ffffff", c21: "#0a0a0a.#141414", c22: "#ffaab4.#f0788c", c23: "#963c50.#be2850", c24: "#bebebe.#c8c8dc", c25: "#dc788c.#f0788c", c26: "#786e6e.#3c465a", c27: "#e6dcdc.#c8c8dc", c28: "#8c283c.#783228", c29: "#c8b4b4.#c8c8dc", c30: "#be466e.#be2850", c31: "#fa82a0.#f0788c", c32: "#e66482.#f0788c", c33: "#ffa0b4.#f0788c", c34: "#fad2d2.#c8c8dc", c35: "#aa3c6e.#be2850", c36: "#281e1e.#141414", c37: "#503c32.#5a281e", c38: "#fac8d2.#c8c8dc", c39: "#785046.#783228", c40: "#28281e.#141414", c41: "#e65a96.#f0788c", c42: "#b45a6e.#e6465a", c43: "#3c1e1e.#5a281e", c44: "#5a3c32.#5a281e", c45: "#aa286e.#be2850", c46: "#6e0a3c.#783228", c47: "#642832.#5a281e", c48: "#c85a6e.#e6465a", c49: "#501e28.#5a281e", c50: "#6e463c.#783228", c51: "#ffd2dc.#c8c8dc", c52: "#825a50.#783228", c53: "#322828.#283c46", c54: "#64463c.#783228", c55: "#8c6e5a.#be2850", c56: "#fff0e6.#ffffff", c57: "#8c2828.#783228", c58: "#ffaaaa.#f0788c", c59: "#e6c8b4.#c8c8dc", c60: "#dc6e64.#e6465a", c61: "#463228.#5a281e", c62: "#281e14.#141414", c63: "#c85050.#be2850", c64: "#64503c.#783228" },
327 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#143250.#781e32", c6: "#326ea0.#dc3c5a", c7: "#141414.#141414", c8: "#8c6446.#786450", c9: "#beb464.#aaaaaa", c10: "#f0dc82.#dcdcdc", c11: "#64a0be.#646eb4", c12: "#8cc8e6.#8296f0", c13: "#aaaaaa.#aa2832", c14: "#6e6e6e.#642828", c15: "#f0f0f0.#dc3c50", c16: "#504632.#504632", c17: "#dcc882.#dcc882", c18: "#aa9664.#aa9664", c19: "#503c28.#503c28", c20: "#282828.#141414", c21: "#786464.#642828", c22: "#5a5a5a.#642828", c23: "#3c3c3c.#504632", c24: "#ffffff.#dc3c50", c25: "#e6dcdc.#dc3c50", c26: "#0a0a0a.#141414", c27: "#787878.#642828", c28: "#c8b4be.#aa2832", c29: "#fafafa.#dc3c50", c30: "#963c50.#786450", c31: "#dc788c.#aa9664", c32: "#bebebe.#aa2832", c33: "#e65a82.#aa9664", c34: "#be3264.#786450", c35: "#ffaab4.#dcc882", c36: "#fa82a0.#dcc882", c37: "#ffa0b4.#dcc882", c38: "#e66482.#aa9664", c39: "#322832.#503c28", c40: "#504646.#504632", c41: "#5a5050.#504632", c42: "#e65082.#aa9664", c43: "#323232.#503c28", c44: "#82143c.#503c28", c45: "#8c2828.#503c28", c46: "#c85050.#786450", c47: "#8c6e5a.#786450", c48: "#ffaaaa.#dcc882", c49: "#fff0e6.#dc3c50", c50: "#dc6e64.#aa9664", c51: "#e6c8b4.#dcc882", c52: "#1e281e.#141414", c53: "#5a5a50.#504632", c54: "#505050.#504632" },
328 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#6e6e6e.#642828", c6: "#141414.#141414", c7: "#f0f0f0.#dc3c50", c8: "#aaaaaa.#aa2832", c9: "#8c6446.#786450", c10: "#f0dc82.#dcdcdc", c11: "#000000.#000000", c12: "#beb464.#aaaaaa", c13: "#504632.#504632", c14: "#dcc882.#dcc882", c15: "#aa9664.#aa9664", c16: "#d264a0.#a0a03c", c17: "#f096be.#e6f050", c18: "#503c28.#503c28", c19: "#5a285a.#3c1450", c20: "#aa64a0.#642882", c21: "#965028.#786450", c22: "#dc960a.#aaaaaa", c23: "#5a321e.#503c28", c24: "#f0dc0a.#aaaaaa", c25: "#0a3250.#141414", c26: "#0a0a0a.#141414", c27: "#0a8c96.#642828", c28: "#0a5a6e.#504632", c29: "#c882be.#a0a03c", c30: "#82508c.#642828", c31: "#5a4650.#504632", c32: "#322828.#503c28", c33: "#966e82.#642882", c34: "#46461e.#503c28", c35: "#ffffff.#dc3c50", c36: "#dcc850.#aaaaaa", c37: "#5a281e.#503c28", c38: "#824614.#503c28", c39: "#8c640a.#786450", c40: "#5a5a3c.#504632", c41: "#0a7878.#642828", c42: "#aa6428.#786450", c43: "#ffdc46.#dcdcdc", c44: "#f0d250.#dcdcdc", c45: "#968214.#786450", c46: "#1e505a.#504632", c47: "#82823c.#786450", c48: "#e6320a.#786450", c49: "#fff00a.#dcdcdc", c50: "#3cb4aa.#642828", c51: "#dcb41e.#aaaaaa", c52: "#0a3c46.#141414", c53: "#aaa064.#aa9664", c54: "#0a3c3c.#141414", c55: "#aa6432.#786450", c56: "#465050.#504632", c57: "#1e9696.#642828", c58: "#0abeaa.#642828", c59: "#643c5a.#3c1450", c60: "#82461e.#786450", c61: "#464650.#504632", c62: "#6e3c28.#503c28", c63: "#46505a.#504632", c64: "#b48c96.#aa2832", c65: "#825a64.#642828", c66: "#c896b4.#aa2832", c67: "#509696.#642828", c68: "#8c7882.#642828", c69: "#aa5a8c.#642882", c70: "#50281e.#503c28", c71: "#bebebe.#aa2832", c72: "#1e828c.#642828", c73: "#645a0a.#503c28", c74: "#0a6e6e.#642828", c75: "#14646e.#504632", c76: "#8c5a32.#786450", c77: "#dcaa0a.#aaaaaa", c78: "#faf0c8.#dc3c50", c79: "#e63228.#786450", c80: "#fffae6.#dc3c50", c81: "#501e0a.#503c28", c82: "#322814.#141414", c83: "#e66450.#aa9664", c84: "#f08c64.#aaaaaa", c85: "#fffadc.#dc3c50", c86: "#a06e3c.#786450", c87: "#282828.#141414", c88: "#b4823c.#aa9664", c89: "#1e4646.#504632", c90: "#3c2828.#503c28", c91: "#785a0a.#503c28", c92: "#6e5032.#504632", c93: "#f0e60a.#aaaaaa", c94: "#6e3c64.#3c1450" },
329 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#8c7828.#463c3c", c6: "#fafafa.#bebebe", c7: "#141414.#141414", c8: "#f0dc78.#968c8c", c9: "#beaa5a.#6e6464", c10: "#14141e.#140a14", c11: "#3c3c3c.#3c3232", c12: "#786eb4.#e6c83c", c13: "#504682.#a08c28", c14: "#aaaaaa.#aa2832", c15: "#503c1e.#5a5014", c16: "#6e6432.#826e28", c17: "#a08c5a.#b49650", c18: "#f0f0f0.#dc3c50", c19: "#32285a.#786e14", c20: "#783c78.#a08c28", c21: "#0a0a0a.#141414", c22: "#dcb4d2.#aa2832", c23: "#be8cbe.#aa2832", c24: "#325a82.#a08c28", c25: "#a0dcd2.#aa2832", c26: "#78b4c8.#aa2832", c27: "#9664a0.#e6c83c", c28: "#6496b4.#e6c83c", c29: "#d2f0f0.#dc3c50", c30: "#be7832.#463c3c", c31: "#fadc78.#968c8c", c32: "#a0dcdc.#aa2832", c33: "#a0783c.#463c3c", c34: "#a0781e.#463c3c", c35: "#dcaa28.#6e6464", c36: "#faf08c.#968c8c", c37: "#ffdc64.#968c8c", c38: "#dcb4dc.#dc3c50", c39: "#6eaabe.#e6c83c", c40: "#503278.#a08c28", c41: "#6e3c6e.#a08c28", c42: "#82508c.#e6c83c", c43: "#aa78be.#e6c83c", c44: "#beb46e.#6e6464", c45: "#dcb450.#6e6464", c46: "#aa7814.#463c3c", c47: "#dcbe50.#6e6464", c48: "#6e3c96.#a08c28", c49: "#b4783c.#b49650", c50: "#785028.#826e28", c51: "#d296f0.#aa2832", c52: "#5a3c64.#a08c28", c53: "#dcaa1e.#6e6464", c54: "#aa6ed2.#e6c83c", c55: "#c8a0dc.#aa2832", c56: "#4678a0.#e6c83c", c57: "#78b4aa.#aa2832", c58: "#326464.#a08c28", c59: "#78beb4.#aa2832", c60: "#327878.#a08c28", c61: "#d2f0e6.#dc3c50", c62: "#8ce6dc.#aa2832", c63: "#aa96d2.#aa2832", c64: "#aab4c8.#aa2832", c65: "#0a506e.#786e14", c66: "#3296be.#e6c83c", c67: "#dcbef0.#dc3c50", c68: "#82f0f0.#aa2832", c69: "#5ac8dc.#aa2832", c70: "#825a8c.#e6c83c", c71: "#beb4dc.#aa2832", c72: "#8c325a.#826e28", c73: "#be505a.#b49650", c74: "#643c78.#a08c28", c75: "#e696aa.#aa2832", c76: "#464664.#a08c28", c77: "#ffffff.#bebebe", c78: "#965064.#b49650", c79: "#0a78a0.#a08c28", c80: "#462850.#786e14" },
330 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#640000.#001464", c6: "#000000.#000000", c7: "#be3c3c.#3c50be", c8: "#8c1e14.#141e8c", c9: "#50505a.#50505a", c10: "#a096a0.#a096a0", c11: "#282832.#282832", c12: "#646464.#646464", c13: "#e68c3c.#e6c83c", c14: "#3c3c50.#3c3c50", c15: "#8c5a3c.#8c783c", c16: "#282828.#282828", c17: "#963c32.#8c783c", c18: "#f08c50.#e6c83c", c19: "#141414.#000000", c20: "#50648c.#646464", c21: "#96d2dc.#a096a0", c22: "#505a96.#646464", c23: "#e65028.#3c50be", c24: "#3c3c6e.#3c3c50", c25: "#281e50.#282832", c26: "#a02828.#141e8c", c27: "#0a0a0a.#000000", c28: "#963c3c.#8c783c", c29: "#ff823c.#e6c83c", c30: "#f0aa64.#e6c83c", c31: "#ffd246.#e6c83c", c32: "#fa3c0a.#3c50be", c33: "#465a82.#50505a", c34: "#dc785a.#e6c83c", c35: "#6e96c8.#a096a0", c36: "#6e1e6e.#50505a", c37: "#dc6ea0.#a096a0", c38: "#6496c8.#a096a0", c39: "#96c8d2.#a096a0", c40: "#6ea0c8.#a096a0", c41: "#465a96.#646464", c42: "#82d2dc.#a096a0", c43: "#3c3c78.#3c3c50", c44: "#505a8c.#646464", c45: "#b44696.#a096a0", c46: "#780a6e.#50505a", c47: "#321e5a.#3c3c50", c48: "#641e5a.#3c3c50", c49: "#e664aa.#a096a0", c50: "#5a6eb4.#646464", c51: "#14143c.#282832", c52: "#c832a0.#3c50be", c53: "#64508c.#646464", c54: "#b4468c.#3c50be", c55: "#b4e61e.#e6c83c", c56: "#5a2814.#001464", c57: "#f09650.#e6c83c", c58: "#641464.#3c3c50", c59: "#a06e50.#8c783c", c60: "#823c78.#646464", c61: "#32505a.#3c3c50", c62: "#8cdce6.#a096a0", c63: "#648c96.#a096a0", c64: "#141e28.#282828", c65: "#323246.#3c3c50", c66: "#46506e.#50505a", c67: "#461e32.#282832", c68: "#c850a0.#a096a0", c69: "#643246.#50505a", c70: "#aadc1e.#e6c83c", c71: "#aad21e.#e6c83c", c72: "#dcaa0a.#e6c83c", c73: "#466eaa.#646464", c74: "#8c3278.#646464", c75: "#3c5a8c.#50505a", c76: "#8c326e.#8c783c", c77: "#be960a.#e6c83c", c78: "#dca00a.#e6c83c" },
331 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#503c1e.#50501e", c6: "#3c3c3c.#3c3c3c", c7: "#96821e.#96821e", c8: "#e6be3c.#e6e63c", c9: "#dcdcdc.#dcdcc8", c10: "#141414.#141414", c11: "#787878.#787850", c12: "#6e1414.#32285a", c13: "#c83232.#503cdc", c14: "#aaa0b4.#a0a078", c15: "#96323c.#323ca0", c16: "#3c3c50.#323232", c17: "#646478.#464650", c18: "#282828.#141414", c19: "#781e28.#32285a", c20: "#3c9678.#464650", c21: "#50c8a0.#787850", c22: "#dc3250.#503cdc", c23: "#824614.#323ca0", c24: "#f08c28.#e6e63c", c25: "#823214.#32285a", c26: "#f07828.#e6e63c", c27: "#aa283c.#323ca0", c28: "#be6e1e.#96821e", c29: "#286450.#323232", c30: "#be5a1e.#503cdc", c31: "#dca01e.#e6e63c", c32: "#ffdc28.#e6e63c", c33: "#bebebe.#a0a078", c34: "#ffb464.#e6e63c", c35: "#14a082.#464650", c36: "#82460a.#50501e", c37: "#fafafa.#ffffff", c38: "#0ad2a0.#787850", c39: "#f08c1e.#e6e63c", c40: "#be6e14.#96821e", c41: "#0a0a0a.#141414", c42: "#781428.#32285a", c43: "#b41414.#503cdc", c44: "#0a6450.#323232", c45: "#ffdc1e.#e6e63c", c46: "#dc4632.#503cdc", c47: "#a02850.#323ca0", c48: "#dc8c3c.#e6e63c", c49: "#ffdc0a.#e6e63c", c50: "#dc325a.#503cdc", c51: "#aa3232.#323ca0", c52: "#dc3232.#503cdc", c53: "#a02828.#323ca0", c54: "#fa963c.#e6e63c", c55: "#642828.#50501e", c56: "#f06432.#503cdc", c57: "#78501e.#50501e", c58: "#f08c32.#e6e63c", c59: "#46b496.#787850", c60: "#6ee6c8.#a0a078", c61: "#d23c3c.#503cdc", c62: "#1e9678.#464650", c63: "#b49646.#96821e", c64: "#c8b4b4.#a0a078", c65: "#50d2b4.#a0a078", c66: "#328c82.#464650", c67: "#ffc85a.#e6e63c", c68: "#1e5a50.#323232", c69: "#f0dc3c.#e6e63c", c70: "#641e1e.#32285a", c71: "#645a50.#464650", c72: "#148c64.#323232", c73: "#a03232.#323ca0", c74: "#fad250.#e6e63c", c75: "#a08278.#787850", c76: "#b4b4c8.#a0a078", c77: "#faf0f0.#ffffff", c78: "#e6506e.#503cdc", c79: "#dcc850.#e6e63c" },
332 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#32323c.#32323c", c6: "#141414.#141414", c7: "#646478.#646478", c8: "#464664.#464664", c9: "#78aafa.#ffd250", c10: "#6478b4.#aa9632", c11: "#786450.#643c3c", c12: "#b4a05a.#c87846", c13: "#ffe65a.#ffaa3c", c14: "#464678.#6e5a14", c15: "#e64650.#e64650", c16: "#963c50.#963c50", c17: "#146e32.#32323c", c18: "#0a0a0a.#141414", c19: "#329646.#646478", c20: "#467814.#643c3c", c21: "#1e500a.#32323c", c22: "#96c850.#c87846", c23: "#64be6e.#c87846", c24: "#bedc78.#c87846", c25: "#78a03c.#643c3c", c26: "#64a03c.#643c3c", c27: "#8c6e3c.#643c3c", c28: "#146432.#32323c", c29: "#be9628.#c87846", c30: "#fabe0a.#ffaa3c", c31: "#ffe63c.#ffaa3c", c32: "#fabe14.#ffaa3c", c33: "#466e14.#32323c", c34: "#8c643c.#643c3c", c35: "#ffe60a.#ffaa3c", c36: "#8c641e.#643c3c", c37: "#6ebe64.#c87846", c38: "#dcaa14.#c87846", c39: "#3c8c46.#643c3c", c40: "#3c8c3c.#643c3c", c41: "#146e1e.#32323c", c42: "#6ea032.#643c3c", c43: "#8cbe50.#c87846", c44: "#aadc6e.#c87846", c45: "#0a3c0a.#141414", c46: "#146e28.#32323c", c47: "#289646.#464664", c48: "#8c8c8c.#646478", c49: "#ffffff.#ffd250", c50: "#0a3c14.#141414", c51: "#46780a.#32323c" },
333 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#828296.#a0aa82", c6: "#5a5a64.#828264", c7: "#000000.#141414", c8: "#c8c8c8.#d2d2b4", c9: "#a0a0aa.#bec8a0", c10: "#aaaaaa.#78c8c8", c11: "#8c8c8c.#78c8c8", c12: "#6e6e6e.#50a096", c13: "#6ebeff.#ff648c", c14: "#505046.#287878", c15: "#a0323c.#aa3c46", c16: "#dc5050.#dc6e6e", c17: "#1e500a.#287878", c18: "#141414.#141414", c19: "#64b46e.#78c8c8", c20: "#467814.#287878", c21: "#8cbe64.#78c8c8", c22: "#329650.#828264", c23: "#146e1e.#287878", c24: "#0a0a0a.#141414", c25: "#a0d278.#78c8c8", c26: "#0a280a.#141414", c27: "#78a064.#78c8c8", c28: "#508250.#828264", c29: "#1e5032.#287878", c30: "#46a050.#50a096", c31: "#505050.#287878", c32: "#8c6e3c.#50a096", c33: "#fac80a.#dc6e6e", c34: "#14641e.#287878", c35: "#46aa50.#50a096", c36: "#3c6e46.#287878", c37: "#8cc882.#78c8c8", c38: "#bef082.#d2d2b4", c39: "#fff00a.#dc6e6e", c40: "#466e14.#287878", c41: "#78aa64.#78c8c8", c42: "#fad20a.#dc6e6e", c43: "#a0dc78.#78c8c8", c44: "#a0c882.#78c8c8", c45: "#5aaa5a.#50a096", c46: "#285a1e.#287878", c47: "#326e32.#287878", c48: "#468c46.#287878", c49: "#aad28c.#78c8c8", c50: "#bee6a0.#d2d2b4" },
334 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#325a5a.#0a5ab4", c6: "#6ea078.#50a0ff", c7: "#5a7850.#3278dc", c8: "#141414.#141414", c9: "#96d2a0.#8cc8ff", c10: "#82283c.#c86414", c11: "#dc6478.#ffb414", c12: "#c83c46.#e6a000", c13: "#b4dc78.#aadc78", c14: "#ffa0b4.#ffd232", c15: "#8ca050.#78aa5a", c16: "#82be64.#82be64", c17: "#dcff8c.#d2ff82", c18: "#50641e.#3c6e32", c19: "#f0f0f0.#ffffff", c20: "#5a5050.#3278dc", c21: "#a0a0a0.#8cc8ff", c22: "#c8c8dc.#8cc8ff", c23: "#fafafa.#ffffff", c24: "#ff825a.#ffb414", c25: "#0a0a0a.#141414", c26: "#d2d2dc.#ffffff", c27: "#d2323c.#e6a000", c28: "#f03c32.#e6a000", c29: "#ff501e.#e6a000", c30: "#821414.#c86414", c31: "#c82846.#e6a000", c32: "#c8283c.#e6a000", c33: "#e63c32.#e6a000", c34: "#d28296.#ffb414", c35: "#faa08c.#ffd232", c36: "#d2788c.#ffb414", c37: "#c83c50.#e6a000", c38: "#f06450.#ffb414", c39: "#f03c50.#e6a000", c40: "#d2e6dc.#ffffff", c41: "#e63228.#e6a000", c42: "#820a0a.#c86414" },
335 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#b43c50.#b4465a", c6: "#e65064.#dc3c32", c7: "#323232.#503c3c", c8: "#785050.#966e6e", c9: "#ffe6b4.#ffdca0", c10: "#dcbe8c.#d2aa78", c11: "#000000.#14141e", c12: "#3caad2.#f0be00", c13: "#642828.#3c5a8c", c14: "#ffffe6.#fffac8", c15: "#b43c50.#82a0c8", c16: "#823c3c.#5a78a0", c17: "#f06e78.#b4c8ff", c18: "#0a78a0.#c88200", c19: "#144664.#503c3c", c20: "#147896.#c88200", c21: "#0a0a0a.#14141e", c22: "#beaa5a.#d2aa78", c23: "#3ca0be.#f0be00", c24: "#82dcff.#f0be00", c25: "#5ac8e6.#f0be00", c26: "#141414.#14141e", c27: "#6e641e.#5a78a0", c28: "#ffe6a0.#ffdca0", c29: "#8c8c8c.#966e6e", c30: "#ffffff.#fffac8", c31: "#c8c8c8.#d2aa78", c32: "#fafafa.#fffac8", c33: "#501478.#503c3c", c34: "#0a3246.#503c3c", c35: "#0a283c.#503c3c", c36: "#78c8e6.#f0be00", c37: "#6e6428.#966e6e", c38: "#780a28.#3c5a8c", c39: "#78d2fa.#f0be00", c40: "#d25078.#dc3c32", c41: "#326478.#c88200", c42: "#285064.#503c3c", c43: "#146e8c.#c88200", c44: "#64641e.#966e6e", c45: "#fadca0.#ffdca0", c46: "#b4aa5a.#d2aa78", c47: "#145a78.#c88200", c48: "#dcc882.#d2aa78", c49: "#a0e6ff.#fffac8", c50: "#82dcfa.#f0be00", c51: "#5abedc.#f0be00", c52: "#148cb4.#c88200", c53: "#3c96b4.#f0be00", c54: "#50146e.#503c3c", c55: "#ffe68c.#ffdca0", c56: "#1e1e28.#503c3c", c57: "#646464.#966e6e", c58: "#d2506e.#dc3c32", c59: "#ffa0a0.#d2aa78", c60: "#146e96.#c88200", c61: "#d2d2d2.#ffdca0", c62: "#46a0be.#f0be00", c63: "#0a4664.#503c3c", c64: "#0a7896.#c88200", c65: "#faffff.#fffac8" },
336 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#642828.#6e3c28", c6: "#dc8296.#ff9664", c7: "#be506e.#dc7850", c8: "#a03c46.#b46e3c", c9: "#141414.#141414", c10: "#286478.#003c00", c11: "#3c82a0.#28821e", c12: "#82c8e6.#96f082", c13: "#46a0c8.#5abe50", c14: "#aaaaa0.#aaa0be", c15: "#829696.#829696", c16: "#f0f0e6.#dcd2f0", c17: "#fafafa.#ffffff", c18: "#5a6464.#003c00", c19: "#ff5050.#dc7850", c20: "#be3232.#b46e3c", c21: "#64646e.#003c00", c22: "#823232.#6e3c28", c23: "#f06464.#dc7850", c24: "#966e50.#b46e3c", c25: "#b44646.#b46e3c", c26: "#f0dca0.#dcd2f0", c27: "#bebebe.#aaa0be", c28: "#d2aa64.#ff9664", c29: "#822828.#6e3c28", c30: "#6e0a14.#6e3c28", c31: "#ff4650.#dc7850", c32: "#c80a1e.#b46e3c", c33: "#14141e.#141414", c34: "#322828.#141414", c35: "#dc4650.#dc7850", c36: "#aa1e1e.#b46e3c", c37: "#3c3c32.#6e3c28", c38: "#d2dce6.#dcd2f0", c39: "#e67878.#ff9664", c40: "#dcd2b4.#dcd2f0", c41: "#0a0a0a.#141414", c42: "#968c78.#829696", c43: "#5a503c.#6e3c28", c44: "#646450.#6e3c28", c45: "#e6dcb4.#dcd2f0", c46: "#785a46.#b46e3c", c47: "#aadcd2.#96f082", c48: "#8c323c.#b46e3c", c49: "#dc505a.#dc7850", c50: "#bea078.#aaa0be", c51: "#e6dcbe.#dcd2f0", c52: "#dcc896.#aaa0be", c53: "#786e5a.#b46e3c", c54: "#aaa078.#aaa0be", c55: "#503c32.#6e3c28", c56: "#b4c8c8.#aaa0be", c57: "#5a6450.#003c00", c58: "#463228.#6e3c28", c59: "#96826e.#829696", c60: "#dcbe8c.#aaa0be", c61: "#96c8d2.#96f082", c62: "#bec8d2.#aaa0be", c63: "#f0d296.#aaa0be", c64: "#82a096.#829696", c65: "#f0e6aa.#dcd2f0" },
337 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#464646.#464646", c6: "#282828.#282828", c7: "#141414.#141414", c8: "#6e6e78.#645a50", c9: "#d2dcf0.#d2c88c", c10: "#a0a0aa.#a09678", c11: "#326464.#50781e", c12: "#28aabe.#6edc28", c13: "#78788c.#786e46", c14: "#143c3c.#324614", c15: "#288c96.#6eaa32", c16: "#9696b4.#8c783c", c17: "#964646.#aa3c78", c18: "#dc5050.#dc64a0", c19: "#be3c3c.#dc64a0", c20: "#642828.#464646", c21: "#ffd250.#dc64a0", c22: "#fa6e6e.#dc64a0", c23: "#ffaa64.#dc64a0", c24: "#c8b41e.#dc64a0", c25: "#b4641e.#aa3c78", c26: "#784614.#aa3c78", c27: "#e68228.#dc64a0", c28: "#b4aa64.#a09678", c29: "#dcdcc8.#d2c88c", c30: "#c8bea0.#a09678", c31: "#5a5a5a.#464646", c32: "#3c2814.#282828", c33: "#faf0fa.#ffffff", c34: "#a0a0c8.#8c783c", c35: "#dcc88c.#a09678", c36: "#e6dcb4.#d2c88c", c37: "#be4646.#dc64a0", c38: "#c8c8c8.#d2c88c", c39: "#ffdc50.#a09678", c40: "#fffaff.#ffffff", c41: "#aaaad2.#8c783c", c42: "#d2d2d2.#d2c88c", c43: "#78501e.#aa3c78", c44: "#0a0a0a.#141414", c45: "#b46428.#aa3c78", c46: "#c8b428.#dc64a0", c47: "#e63c3c.#dc64a0", c48: "#a00a0a.#aa3c78", c49: "#ff7878.#dc64a0", c50: "#fffa5a.#a09678", c51: "#dcd23c.#dc64a0", c52: "#c82878.#dc64a0", c53: "#f06ea0.#dc64a0", c54: "#beb41e.#dc64a0", c55: "#fad250.#dc64a0", c56: "#f08c32.#dc64a0", c57: "#a0a0a0.#a09678", c58: "#b48c28.#aa3c78", c59: "#e6e6e6.#d2c88c", c60: "#6e4614.#464646", c61: "#dc8228.#dc64a0", c62: "#faaa64.#dc64a0" },
338 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#28323c.#46141e", c7: "#1e1e32.#1e1414", c8: "#78283c.#3c28a0", c9: "#461428.#28283c", c10: "#aa143c.#7832c8", c11: "#1e1e32.#1e1e32", c12: "#787882.#787882", c13: "#64646e.#64646e", c14: "#464650.#464650", c15: "#c8c8c8.#c8c8c8", c16: "#328282.#a06414", c17: "#14b4b4.#e6c81e", c18: "#c8465a.#b4a0dc", c19: "#6e0a0a.#28283c", c20: "#823232.#3c28a0", c21: "#dc1e1e.#7832c8", c22: "#ff5a46.#b4a0dc", c23: "#b44646.#b4a0dc", c24: "#f06464.#b4a0dc", c25: "#822832.#3c28a0", c26: "#aa1e1e.#7832c8", c27: "#dc4650.#b4a0dc", c28: "#e67878.#b4a0dc", c29: "#be3250.#b4a0dc", c30: "#ff5a64.#b4a0dc", c31: "#503214.#28283c", c32: "#825a28.#3c28a0", c33: "#965032.#3c28a0", c34: "#f0aa64.#b4a0dc", c35: "#aa6e3c.#b4a0dc", c36: "#c88246.#b4a0dc", c37: "#f0be78.#c8c8c8", c38: "#be825a.#b4a0dc", c39: "#fabe82.#c8c8c8", c40: "#6e461e.#3c28a0", c41: "#ffb46e.#c8c8c8", c42: "#fac88c.#c8c8c8", c43: "#d2823c.#b4a0dc", c44: "#a0505a.#b4a0dc", c45: "#64aac8.#e6c81e", c46: "#d2788c.#b4a0dc", c47: "#ffb4c8.#c8c8c8", c48: "#96dcff.#c8c8c8", c49: "#78501e.#3c28a0", c50: "#f0d2dc.#c8c8c8", c51: "#326e8c.#a06414", c52: "#f096be.#c8c8c8", c53: "#96b4d2.#c8c8c8", c54: "#e6a064.#b4a0dc", c55: "#fad2d2.#c8c8c8", c56: "#bedce6.#c8c8c8", c57: "#ffdce6.#c8c8c8", c58: "#f0aabe.#c8c8c8", c59: "#aadcff.#c8c8c8", c60: "#78b4e6.#c8c8c8", c61: "#aadcf0.#c8c8c8", c62: "#ffffff.#c8c8c8", c63: "#fafafa.#c8c8c8", c64: "#b47850.#b4a0dc", c65: "#64463c.#3c28a0", c66: "#ffffb4.#c8c8c8", c67: "#c8dce6.#c8c8c8" },
339 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#8c2846.#1e648c", c6: "#285a96.#961e5a", c7: "#fa8caa.#78dcf0", c8: "#64c8f0.#f064c8", c9: "#141414.#141414", c10: "#508cc8.#c8508c", c11: "#dc5a78.#46aabe", c12: "#8c5a6e.#64788c", c13: "#fff0f0.#f0f0ff", c14: "#dcc8c8.#c8c8dc", c15: "#f08c78.#f08c78", c16: "#aa8c8c.#8c8caa", c17: "#d26482.#46aabe", c18: "#f0b4be.#c8c8dc", c19: "#ffdc96.#c8c8dc", c20: "#d2a046.#f08c78", c21: "#b47882.#8c8caa", c22: "#ffbec8.#c8c8dc", c23: "#82d2ff.#f064c8", c24: "#b47878.#8c8caa", c25: "#c8faff.#f0f0ff", c26: "#fabec8.#c8c8dc", c27: "#aae6fa.#f064c8", c28: "#fff0b4.#c8c8dc", c29: "#d2963c.#f08c78", c30: "#faf0b4.#c8c8dc", c31: "#326ea0.#961e5a", c32: "#ffffff.#f0f0ff", c33: "#dcdcdc.#c8c8dc", c34: "#0a0a0a.#141414", c35: "#64bee6.#f064c8", c36: "#82b4c8.#f064c8", c37: "#506e82.#961e5a", c38: "#3c46a0.#961e5a", c39: "#3c8cf0.#c8508c", c40: "#aadcff.#f064c8", c41: "#1e78aa.#961e5a", c42: "#32b4f0.#f064c8", c43: "#78d2ff.#f064c8", c44: "#2878a0.#961e5a", c45: "#fafafa.#f0f0ff", c46: "#bebebe.#c8c8dc", c47: "#286ea0.#961e5a", c48: "#c8dcdc.#c8c8dc", c49: "#a0dcfa.#f064c8", c50: "#e6e6e6.#f0f0ff", c51: "#c8c8c8.#c8c8dc", c52: "#3cb4f0.#f064c8", c53: "#ff6ed2.#78dcf0", c54: "#1e465a.#961e5a", c55: "#82c8ff.#f064c8", c56: "#8caabe.#8c8caa", c57: "#2896c8.#c8508c", c58: "#96bed2.#f064c8", c59: "#dcf0fa.#f0f0ff", c60: "#dc8c8c.#f08c78", c61: "#c882aa.#8c8caa", c62: "#ffdcc8.#c8c8dc", c63: "#f0bebe.#c8c8dc", c64: "#fadcb4.#c8c8dc", c65: "#82bed2.#f064c8", c66: "#aaf0ff.#f064c8", c67: "#fffaa0.#c8c8dc", c68: "#326496.#961e5a", c69: "#5aa0c8.#c8508c", c70: "#8cd2fa.#f064c8", c71: "#6496be.#c8508c", c72: "#3c6e78.#961e5a", c73: "#d2d2d2.#c8c8dc", c74: "#46a0dc.#c8508c" },
340 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#323c78.#5a0050", c7: "#4682d2.#d25adc", c8: "#285096.#82148c", c9: "#3c64b4.#b43cbe", c10: "#5a506e.#5a506e", c11: "#dcdcdc.#e6dce6", c12: "#a08c96.#a08ca0", c13: "#78283c.#78283c", c14: "#fa1414.#fa1414", c15: "#a03264.#dc1464", c16: "#5aa0ff.#f078fa", c17: "#c8bec8.#d2bed2", c18: "#82c8ff.#fa96ff", c19: "#ffc832.#ffc832", c20: "#6e7896.#a08ca0", c21: "#c8d2f0.#e6dce6", c22: "#aab4d2.#d2bed2", c23: "#8c82b4.#a08ca0", c24: "#6e64aa.#b43cbe", c25: "#fff0b4.#e6dce6", c26: "#e6d28c.#d2bed2", c27: "#e6dcf0.#e6dce6", c28: "#c8c8fa.#e6dce6", c29: "#505a8c.#5a506e", c30: "#faf0ff.#e6dce6", c31: "#828c3c.#5a506e", c32: "#fffad2.#e6dce6", c33: "#f0f0d2.#e6dce6", c34: "#faf0aa.#e6dce6", c35: "#a096dc.#d2bed2", c36: "#328cb4.#d25adc", c37: "#82a0dc.#f078fa", c38: "#fafafa.#e6dce6", c39: "#50c8ff.#f078fa", c40: "#bed2aa.#d2bed2", c41: "#c8c8e6.#e6dce6", c42: "#6478aa.#b43cbe", c43: "#645aa0.#b43cbe", c44: "#fafaaa.#e6dce6", c45: "#0a0a0a.#141414", c46: "#506eb4.#b43cbe", c47: "#32508c.#82148c", c48: "#78dcff.#fa96ff", c49: "#148cdc.#d25adc", c50: "#646464.#5a506e", c51: "#6482dc.#d25adc", c52: "#1e1e1e.#141414", c53: "#78a0e6.#f078fa", c54: "#506e78.#5a506e", c55: "#96b4be.#d2bed2", c56: "#ffffff.#e6dce6", c57: "#6e8c64.#5a506e", c58: "#3c5078.#5a0050", c59: "#bebe50.#ffc832", c60: "#5a78a0.#b43cbe", c61: "#8caad2.#fa96ff", c62: "#d2d2d2.#e6dce6", c63: "#d2f0f0.#e6dce6", c64: "#82bedc.#fa96ff", c65: "#5aaadc.#f078fa", c66: "#5078b4.#b43cbe", c67: "#78786e.#5a506e", c68: "#bee6fa.#e6dce6", c69: "#c8f0f0.#e6dce6", c70: "#3264b4.#b43cbe", c71: "#507896.#b43cbe", c72: "#1e3246.#5a0050", c73: "#8cbed2.#fa96ff", c74: "#466e82.#5a506e", c75: "#64645a.#5a506e", c76: "#aabedc.#d2bed2", c77: "#f0dcfa.#e6dce6", c78: "#b4be50.#ffc832", c79: "#bed2f0.#e6dce6", c80: "#6e3c5a.#5a506e", c81: "#fae6b4.#e6dce6", c82: "#be7878.#a08ca0", c83: "#5a96dc.#d25adc", c84: "#1e3c64.#5a0050", c85: "#a0d2f0.#fa96ff", c86: "#32648c.#82148c", c87: "#96c8f0.#fa96ff", c88: "#0a82be.#b43cbe", c89: "#b4e6f0.#e6dce6", c90: "#78a0b4.#a08ca0" },
341 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#781e28.#3c5a0a", c6: "#000000.#141414", c7: "#a02828.#788c3c", c8: "#ffbebe.#f0ff8c", c9: "#ff1e28.#c8c832", c10: "#ff786e.#e6fa5a", c11: "#be3232.#a0aa32", c12: "#ffc832.#ffc832", c13: "#786464.#78645a", c14: "#bebed2.#c8c8c8", c15: "#a06e32.#a06e32", c16: "#3c3c3c.#3c3c3c", c17: "#96828c.#a08c8c", c18: "#aaa0a0.#aaa0a0", c19: "#826e5a.#78645a", c20: "#141414.#141414", c21: "#f0e6dc.#ffffff", c22: "#c8b4aa.#aaa0a0", c23: "#d2beb4.#c8c8c8", c24: "#827864.#78645a", c25: "#f0e6d2.#f0ff8c", c26: "#322814.#3c3c3c", c27: "#826e50.#78645a", c28: "#644632.#3c3c3c", c29: "#dcaa8c.#aaa0a0", c30: "#783c46.#3c5a0a", c31: "#3c281e.#3c3c3c", c32: "#0a0a0a.#141414", c33: "#b47864.#a08c8c", c34: "#968c82.#a08c8c", c35: "#6e645a.#78645a", c36: "#c85a50.#a0aa32", c37: "#f0968c.#e6fa5a", c38: "#3c3228.#3c3c3c", c39: "#50463c.#3c3c3c", c40: "#64463c.#3c3c3c", c41: "#967864.#78645a", c42: "#e6bea0.#f0ff8c", c43: "#dc96a0.#aaa0a0", c44: "#fafafa.#ffffff", c45: "#8c6450.#78645a", c46: "#e6beb4.#f0ff8c", c47: "#fac8d2.#f0ff8c", c48: "#d296a0.#aaa0a0", c49: "#5aaae6.#c8c8c8", c50: "#c8a096.#aaa0a0", c51: "#ffdcb4.#f0ff8c", c52: "#2878b4.#78645a", c53: "#1482d2.#a08c8c", c54: "#6eb4f0.#c8c8c8", c55: "#c8645a.#a06e32", c56: "#142846.#3c3c3c", c57: "#826e64.#78645a", c58: "#64a0dc.#aaa0a0", c59: "#a0d2fa.#c8c8c8", c60: "#e6dcd2.#f0ff8c", c61: "#c88c78.#aaa0a0", c62: "#8c5046.#78645a", c63: "#b4a0a0.#aaa0a0", c64: "#502832.#3c3c3c", c65: "#d2786e.#e6fa5a", c66: "#503c28.#3c3c3c", c67: "#3282e6.#a08c8c", c68: "#50aaf0.#c8c8c8", c69: "#d28c82.#e6fa5a", c70: "#28140a.#141414", c71: "#8c5a46.#a06e32", c72: "#c88c6e.#e6fa5a", c73: "#dcb48c.#aaa0a0", c74: "#8c6e5a.#78645a", c75: "#463228.#3c3c3c", c76: "#c86e64.#e6fa5a", c77: "#f0a0a0.#f0ff8c", c78: "#508cbe.#a08c8c", c79: "#285a8c.#3c3c3c", c80: "#6e463c.#3c5a0a", c81: "#50b4e6.#c8c8c8", c82: "#e6e6e6.#ffffff", c83: "#b46464.#a06e32", c84: "#321e1e.#3c3c3c", c85: "#dc786e.#e6fa5a" },
342 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#4a8373.#323232", c6: "#c8aa0a.#c8aa0a", c7: "#e6506e.#e6506e", c8: "#5abe8c.#464646", c9: "#96dcb4.#aaa0a0", c10: "#28503c.#1e1e1e", c11: "#a02850.#a02850", c12: "#96dcb4.#828282", c13: "#28be8c.#464646", c14: "#32826e.#1e1e1e", c15: "#78e6b4.#aaa0a0", c16: "#78e6b4.#aaa0a0", c17: "#3cb464.#464646", c18: "#1e6e5a.#1e1e1e", c19: "#3c64b4.#3c64b4" },
343 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#8ca0b4.#a0aa78", c6: "#bec8dc.#bec8aa", c7: "#3c3c50.#787846", c8: "#dcf0ff.#f0ffe6", c9: "#141414.#141414", c10: "#1e3c6e.#0a6e78", c11: "#1e5a96.#0a96a0", c12: "#64a0c8.#78bea0", c13: "#a0d2fa.#a0fa96", c14: "#fa503c.#fa503c", c15: "#3c78b4.#14c8c8", c16: "#6ea0e6.#5ae6fa", c17: "#1e46ff.#3c82ff", c18: "#322814.#141414", c19: "#786e5a.#787846", c20: "#826e5a.#787846", c21: "#f0e6dc.#f0ffe6", c22: "#c8b4aa.#bec8aa", c23: "#644632.#787846", c24: "#826e50.#787846", c25: "#a0968c.#a0aa78", c26: "#0a0a0a.#141414", c27: "#b4b4b4.#a0aa78", c28: "#78283c.#787846", c29: "#fafafa.#f0ffe6", c30: "#aaa08c.#a0aa78", c31: "#640a14.#141414", c32: "#aa0a28.#fa503c", c33: "#fa2832.#fa503c", c34: "#e60a3c.#fa503c", c35: "#786464.#787846", c36: "#e6e6dc.#f0ffe6", c37: "#c8beaa.#bec8aa", c38: "#aa9696.#a0aa78", c39: "#f08296.#fa503c", c40: "#fa2878.#fa503c", c41: "#5a3c3c.#787846", c42: "#0a1414.#141414", c43: "#82505a.#787846", c44: "#960a0a.#787846", c45: "#96283c.#787846", c46: "#6e1428.#787846", c47: "#c83c46.#fa503c", c48: "#ffffff.#f0ffe6", c49: "#503c32.#787846", c50: "#785a50.#787846", c51: "#8c786e.#a0aa78", c52: "#e63c3c.#fa503c", c53: "#64321e.#787846", c54: "#be643c.#fa503c", c55: "#f0823c.#fa503c", c56: "#f0aa6e.#fa503c", c57: "#beaaa0.#a0aa78", c58: "#826e6e.#a0aa78", c59: "#780a1e.#787846", c60: "#64323c.#787846", c61: "#5a1e1e.#787846", c62: "#e60a1e.#fa503c", c63: "#786e64.#787846", c64: "#3c281e.#141414", c65: "#a06464.#fa503c", c66: "#82323c.#787846", c67: "#503232.#787846", c68: "#786450.#787846", c69: "#fa3250.#fa503c", c70: "#fa3232.#fa503c", c71: "#f0e6e6.#f0ffe6", c72: "#827878.#a0aa78", c73: "#dcdcdc.#bec8aa", c74: "#f0c8d2.#bec8aa", c75: "#b4aaaa.#a0aa78", c76: "#282828.#141414" },
344 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#bec8dc.#b4aadc", c6: "#a0a0b4.#c86e78", c7: "#3c3c3c.#463c3c", c8: "#dce6f0.#dcdcff", c9: "#c8b4d2.#dca0a0", c10: "#787878.#6e5a64", c11: "#a0a0a0.#b4b4be", c12: "#141414.#141414", c13: "#f0e6ff.#ffdcf0", c14: "#8c5096.#aa3250", c15: "#fa503c.#fa503c", c16: "#faf0ff.#faf0ff", c17: "#be6ed2.#d2648c", c18: "#faa0a0.#faa0a0", c19: "#3c3c32.#463c3c", c20: "#82786e.#6e5a64", c21: "#0a0a0a.#141414", c22: "#78b45a.#6e5a64", c23: "#467832.#463c3c", c24: "#c8faa0.#b4aadc", c25: "#645a50.#463c3c", c26: "#fffffa.#ffffff", c27: "#3c8c78.#6e5a64", c28: "#96785a.#6e5a64", c29: "#c8b496.#b4b4be", c30: "#32c8a0.#6e5a64", c31: "#aaa08c.#b4b4be", c32: "#fafafa.#ffffff", c33: "#32461e.#463c3c", c34: "#b45064.#aa3250", c35: "#dc788c.#faa0a0", c36: "#dcd2be.#dca0a0", c37: "#325028.#463c3c", c38: "#14280a.#141414", c39: "#5a5050.#463c3c", c40: "#826e64.#6e5a64", c41: "#288228.#463c3c", c42: "#b4f096.#b4aadc", c43: "#6eb450.#6e5a64", c44: "#fafaf0.#ffffff", c45: "#beb48c.#b4b4be", c46: "#32bea0.#6e5a64" },
345 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c3c46.#32281e", c6: "#785000.#5a5a5a", c7: "#fff0c8.#e6ffff", c8: "#c8a000.#828c96", c9: "#ffd200.#b4bec8", c10: "#6e6e78.#a07832", c11: "#9696a0.#dcaa46", c12: "#c8c8d2.#f0d2aa", c13: "#aa7800.#64646e", c14: "#000000.#141414", c15: "#ff3c50.#3caac8", c16: "#a01e3c.#008296", c17: "#46465a.#463c32", c18: "#5a3214.#003c46", c19: "#0a0a0a.#141414", c20: "#aa503c.#008296", c21: "#463c3c.#32281e", c22: "#827864.#a07832", c23: "#f07850.#3caac8", c24: "#82786e.#a07832", c25: "#645a50.#463c32", c26: "#141414.#141414", c27: "#6e3c3c.#003c46", c28: "#783c3c.#008296", c29: "#3c3232.#32281e", c30: "#d26446.#3caac8", c31: "#faa082.#f0d2aa", c32: "#322828.#32281e", c33: "#c8b496.#dcaa46", c34: "#fffffa.#e6ffff", c35: "#c8325a.#008296", c36: "#fa5078.#3caac8", c37: "#ff82aa.#f0d2aa", c38: "#96785a.#a07832", c39: "#5a5050.#463c32", c40: "#3c3c32.#32281e", c41: "#826e64.#a07832", c42: "#b44632.#008296", c43: "#783232.#003c46", c44: "#f06e50.#3caac8", c45: "#140a0a.#141414", c46: "#46463c.#32281e", c47: "#78463c.#003c46", c48: "#fafaf0.#e6ffff", c49: "#463232.#32281e", c50: "#beb48c.#dcaa46", c51: "#fa5064.#3caac8", c52: "#ff96dc.#f0d2aa", c53: "#aa3c64.#008296" },
346 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#78641e.#3c3c6e", c6: "#1e826e.#288c3c", c7: "#c8a050.#5a6482", c8: "#fad25a.#6e78be", c9: "#141414.#14141e", c10: "#3c465a.#3c465a", c11: "#46a064.#46a064", c12: "#fafafa.#e6ffff", c13: "#d2c8d2.#b4d2dc", c14: "#8c96aa.#78a0aa", c15: "#f05a6e.#f0788c", c16: "#5ac8fa.#5ac8fa", c17: "#b4bec8.#b4bec8", c18: "#6e788c.#6e788c", c19: "#aaaac8.#8cb4c8", c20: "#aa8c3c.#5a6482", c21: "#5a4614.#3c3c6e", c22: "#ffdc50.#6e78be", c23: "#826e28.#3c3c6e", c24: "#ffff8c.#6e78be", c25: "#0a0a0a.#14141e", c26: "#c8aa46.#5a6482", c27: "#826432.#3c3c6e", c28: "#c8c8c8.#b4d2dc", c29: "#fffa96.#6e78be", c30: "#505050.#3c465a", c31: "#ffffff.#e6ffff", c32: "#aa8c0a.#3c3c6e", c33: "#460a78.#3c465a", c34: "#fadc64.#6e78be", c35: "#c8aa5a.#5a6482", c36: "#aa8c46.#5a6482", c37: "#280a46.#14141e", c38: "#78140a.#3c3c6e", c39: "#f05a3c.#f0788c", c40: "#462878.#3c465a", c41: "#f09628.#5a6482", c42: "#dc780a.#5a6482", c43: "#c8640a.#3c3c6e", c44: "#f0aa50.#5a6482", c45: "#b41e14.#3c3c6e", c46: "#b45a32.#3c3c6e", c47: "#824628.#3c3c6e", c48: "#82465a.#3c3c6e", c49: "#d2aa46.#5a6482", c50: "#826428.#3c3c6e", c51: "#3c320a.#14141e", c52: "#5a460a.#3c3c6e", c53: "#aa8c32.#5a6482", c54: "#82828c.#6e788c", c55: "#969696.#78a0aa", c56: "#fadc32.#6e78be", c57: "#643246.#3c465a", c58: "#6e0a0a.#14141e", c59: "#be3232.#f0788c", c60: "#640a0a.#14141e", c61: "#b43232.#3c3c6e", c62: "#646464.#6e788c" },
347 => { c1: "#ffffff.#ffffff", c2: "#323232.#280a46", c3: "#bebebe.#bebebe", c4: "#505050.#3c1478", c5: "#148caa.#0a820a", c6: "#e63c28.#dc148c", c7: "#96283c.#8c286e", c8: "#96283c.#8c286e", c9: "#500a0a.#3c1446", c10: "#28e6ff.#28d214", c11: "#828282.#828282", c12: "#504646.#5a3c64", c13: "#46465a.#3c1446", c14: "#463c50.#3c1464", c15: "#5a5064.#463264"},
348 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#502846.#501e14", c6: "#783c8c.#963228", c7: "#a05ac8.#d23c46", c8: "#141414.#141414", c9: "#c8b4ff.#ffb4c8", c10: "#6e460a.#6e460a", c11: "#f0be00.#f0be00", c12: "#c88200.#c88200", c13: "#a082be.#be7896", c14: "#783228.#3c3c46", c15: "#fa501e.#aaaabe", c16: "#b43c1e.#5a5a78", c17: "#787878.#787878", c18: "#9628be.#d23c46", c19: "#640a82.#963228", c20: "#dc8cf0.#ffb4c8", c21: "#d264e6.#d23c46", c22: "#3264a0.#963228", c23: "#d2f0fa.#ffffff", c24: "#96dcf0.#ffb4c8", c25: "#64b4dc.#be7896", c26: "#961e6e.#963228", c27: "#ffaadc.#ffb4c8", c28: "#dc46aa.#d23c46", c29: "#ff78d2.#ffb4c8", c30: "#f0dc46.#f0be00", c31: "#dcbe14.#f0be00", c32: "#ffff78.#ffffff", c33: "#d2d2d2.#ffb4c8", c34: "#5a2864.#501e14", c35: "#b45ab4.#d23c46", c36: "#82468c.#963228", c37: "#5a2878.#963228", c38: "#8250a0.#963228", c39: "#9664be.#d23c46", c40: "#500a5a.#501e14", c41: "#0a0a0a.#141414", c42: "#0a8cb4.#787878", c43: "#6e14b4.#963228", c44: "#aa46dc.#d23c46", c45: "#5aa0c8.#be7896", c46: "#32508c.#963228", c47: "#32bedc.#be7896", c48: "#78e6f0.#ffb4c8", c49: "#8c641e.#6e460a", c50: "#96d2dc.#ffb4c8", c51: "#dc5a8c.#d23c46", c52: "#963250.#3c3c46", c53: "#fafafa.#ffffff", c54: "#f08cb4.#be7896", c55: "#fa8cbe.#be7896", c56: "#aa3c64.#963228", c57: "#b40aaa.#963228", c58: "#969696.#be7896", c59: "#dc6496.#be7896", c60: "#f046c8.#d23c46", c61: "#f0e664.#f0be00", c62: "#d2aa3c.#f0be00", c63: "#fae678.#f0be00", c64: "#32c8e6.#be7896", c65: "#faa0e6.#ffb4c8", c66: "#0a28aa.#963228", c67: "#f0be78.#f0be00", c68: "#32d2ff.#be7896", c69: "#0aa0e6.#be7896", c70: "#828282.#787878", c71: "#dcb40a.#f0be00", c72: "#fffa28.#f0be00", c73: "#bec8fa.#ffb4c8", c74: "#78641e.#6e460a", c75: "#be8c46.#c88200", c76: "#46bed2.#be7896", c77: "#6ea0c8.#be7896", c78: "#5a285a.#501e14", c79: "#46286e.#501e14", c80: "#823c8c.#963228", c81: "#7846aa.#963228", c82: "#64328c.#963228", c83: "#32468c.#963228", c84: "#8c5ab4.#d23c46", c85: "#96d2e6.#ffb4c8", c86: "#3c1e50.#501e14", c87: "#644678.#963228", c88: "#965aa0.#d23c46", c89: "#3c6478.#787878", c90: "#963246.#3c3c46", c91: "#82c8dc.#ffb4c8", c92: "#a0326e.#963228", c93: "#46506e.#501e14", c94: "#dc5aa0.#d23c46", c95: "#b43c82.#963228", c96: "#f082b4.#be7896", c97: "#6ea0a0.#787878", c98: "#8cd2dc.#ffb4c8", c99: "#b4963c.#c88200", c100: "#6eaad2.#be7896", c101: "#c8aa3c.#c88200", c102: "#e6f05a.#f0be00", c103: "#dcc846.#f0be00", c104: "#f0dc5a.#f0be00", c105: "#dc64aa.#d23c46", c106: "#6e325a.#501e14", c107: "#a04678.#963228", c108: "#f0e65a.#f0be00", c109: "#b4aa50.#787878", c110: "#d2e6e6.#ffb4c8", c111: "#a0b4be.#be7896", c112: "#786e32.#6e460a" },
349 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#7878a0.#8278a0", c6: "#000000.#000000", c7: "#bebed2.#c8b4f0", c8: "#46466e.#46466e", c9: "#7878a0.#a08214", c10: "#46466e.#6e5a46", c11: "#bebed2.#d2c864", c12: "#3cb4fa.#ff323c", c13: "#be323c.#46466e", c14: "#f03232.#8278a0", c15: "#ff6e6e.#c8b4f0", c16: "#640a0a.#000000", c17: "#96281e.#46466e", c18: "#64140a.#000000", c19: "#c8323c.#46466e", c20: "#ff8250.#8278a0", c21: "#ffd250.#c8b4f0", c22: "#c8aa3c.#8278a0", c23: "#0a0a0a.#000000", c24: "#780a0a.#000000", c25: "#8c0a0a.#46466e", c26: "#ffe6a0.#c8b4f0", c27: "#b42846.#46466e", c28: "#dc6432.#8278a0", c29: "#6e5a14.#46466e", c30: "#b43c3c.#46466e", c31: "#141414.#000000", c32: "#b43c32.#46466e", c33: "#dc6e32.#8278a0", c34: "#d2c832.#c8b4f0", c35: "#fa8250.#8278a0", c36: "#d2d232.#c8b4f0", c37: "#50140a.#000000", c38: "#d2d2d2.#c8b4f0", c39: "#a08ca0.#8278a0", c40: "#fffaff.#ffffff", c41: "#645a46.#46466e", c42: "#aaa082.#8278a0", c43: "#1e140a.#000000", c44: "#6e140a.#000000", c45: "#8c8264.#8278a0", c46: "#be5a28.#46466e", c47: "#e6dcb4.#c8b4f0", c48: "#b44632.#46466e", c49: "#f096c8.#c8b4f0", c50: "#f06ea0.#c8b4f0", c51: "#f09696.#c8b4f0", c52: "#c82878.#8278a0" },
350 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#1e1e28.#323c3c", c6: "#32323c.#3c5a64", c7: "#006ebe.#0aa032", c8: "#00c8ff.#78e682", c9: "#14141e.#1e281e", c10: "#000000.#000000", c11: "#50505a.#3c7882", c12: "#6efaff.#d2ffaa", c13: "#141414.#141414", c14: "#960000.#006478", c15: "#c80000.#00c8ff", c16: "#dcc8c8.#dcc8c8", c17: "#a08c6e.#3c7882", c18: "#fafaf0.#dcc8c8", c19: "#646464.#3c7882", c20: "#be8c28.#3c7882", c21: "#dcd28c.#dcc8c8", c22: "#505050.#3c7882", c23: "#fafabe.#dcc8c8", c24: "#beaa5a.#dcc8c8", c25: "#faf064.#dcc8c8", c26: "#fafad2.#dcc8c8", c27: "#8c6428.#3c7882", c28: "#dcb428.#dcc8c8", c29: "#fadc78.#dcc8c8", c30: "#8c8c5a.#3c7882", c31: "#0abed2.#78e682", c32: "#b48c28.#3c7882", c33: "#fa2828.#00c8ff", c34: "#825a1e.#3c7882", c35: "#c8b432.#dcc8c8", c36: "#faf046.#dcc8c8", c37: "#503c1e.#3c5a64", c38: "#ffd246.#dcc8c8", c39: "#46a0be.#0aa032", c40: "#ffffff.#dcc8c8", c41: "#282828.#323c3c", c42: "#0ab4be.#78e682" },
351 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#6e8296.#5a6ec8", c6: "#143c50.#1e2850", c7: "#dcfaff.#f0faff", c8: "#a0b4c8.#8ca0e6", c9: "#787878.#284650", c10: "#ffe600.#f03cb4", c11: "#bee6ff.#c8d2ff", c12: "#141414.#141414", c13: "#3c3c50.#142832", c14: "#96a0aa.#466e78", c15: "#8c7828.#643c50", c16: "#c8b400.#a03c82", c17: "#c8c8c8.#c8c8c8", c18: "#96780a.#643c50", c19: "#faf032.#f03cb4", c20: "#64500a.#643c50", c21: "#d2b41e.#a03c82", c22: "#fffac8.#ffffff", c23: "#6e6478.#284650", c24: "#0a0a0a.#141414", c25: "#c8b43c.#a03c82", c26: "#dcdcdc.#c8c8c8", c27: "#aaa0aa.#466e78", c28: "#826428.#643c50", c29: "#ffe65a.#f03cb4", c30: "#c8aa46.#a03c82", c31: "#323232.#142832", c32: "#78786e.#284650", c33: "#dcbe1e.#a03c82", c34: "#fafafa.#ffffff", c35: "#960a0a.#643c50", c36: "#f03232.#643c50", c37: "#fff0b4.#c8c8c8", c38: "#aaaaaa.#466e78", c39: "#6e6432.#643c50", c40: "#f0dc6e.#c8c8c8", c41: "#bec8c8.#c8c8c8", c42: "#505050.#142832", c43: "#f0e6aa.#c8c8c8", c44: "#e65a5a.#643c50", c45: "#645a5a.#284650", c46: "#b43232.#643c50", c47: "#a09696.#466e78", c48: "#3c3c3c.#142832", c49: "#aa646e.#284650", c50: "#e6a0aa.#c8c8c8", c51: "#f0461e.#643c50", c52: "#322828.#141414", c53: "#6e6e6e.#284650", c54: "#8c640a.#643c50", c55: "#f0aa14.#a03c82", c56: "#fad23c.#f03cb4", c57: "#5a5a50.#142832", c58: "#969696.#466e78", c59: "#3c3232.#142832", c60: "#c83c28.#643c50", c61: "#dc8c78.#466e78" },
352 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#78a08c.#78a06e", c6: "#287850.#508200", c7: "#d2c8dc.#c8c8d2", c8: "#000000.#000000", c9: "#783c5a.#823ca0", c10: "#be3c6e.#b46ed2", c11: "#ff6482.#dc96ff", c12: "#285050.#1e4600", c13: "#fad246.#f0e646", c14: "#3ca064.#6ea014", c15: "#3c4682.#3c3c46", c16: "#5078f0.#a0a0a0", c17: "#465abe.#6e6e78", c18: "#a0e6aa.#c8ff78", c19: "#96780a.#823ca0", c20: "#f0dc46.#f0e646", c21: "#dcaa1e.#f0e646", c22: "#141414.#000000", c23: "#fff0aa.#c8c8d2", c24: "#64500a.#823ca0", c25: "#0a0a0a.#000000", c26: "#786414.#823ca0", c27: "#fffab4.#ffffff", c28: "#c8aa1e.#f0e646", c29: "#64645a.#823ca0", c30: "#504646.#1e4600", c31: "#bebebe.#c8c8d2", c32: "#fadc46.#f0e646", c33: "#96968c.#78a06e", c34: "#f02832.#b46ed2", c35: "#50463c.#1e4600", c36: "#960a0a.#823ca0", c37: "#fafafa.#ffffff", c38: "#645a5a.#823ca0", c39: "#c8bebe.#c8c8d2", c40: "#f03232.#b46ed2", c41: "#dcdcdc.#c8c8d2", c42: "#a09696.#78a06e", c43: "#323232.#1e4600", c44: "#f0461e.#b46ed2", c45: "#6e6464.#823ca0", c46: "#505050.#1e4600", c47: "#6e6e6e.#823ca0", c48: "#d26478.#b46ed2", c49: "#f08296.#dc96ff" },
353 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#c8c8e6.#c8c8e6", c6: "#5a5a64.#5a5a64", c7: "#141414.#141414", c8: "#3c3c5a.#5a5014", c9: "#5a3c78.#aa961e", c10: "#8250aa.#dcc80a", c11: "#a078dc.#f0e650", c12: "#e64650.#6ec882", c13: "#64503c.#326ea0", c14: "#bea000.#28aadc", c15: "#ffdc0a.#64d2f0", c16: "#a082c8.#f0e650", c17: "#d2b4ff.#fafa96", c18: "#963c5a.#468246", c19: "#c88c46.#28aadc", c20: "#8c3c0a.#326ea0", c21: "#fafafa.#ffffff", c22: "#e6dc64.#64d2f0", c23: "#8c5a0a.#326ea0", c24: "#a05014.#326ea0", c25: "#aaa0a0.#f0e650", c26: "#8c788c.#dcc80a", c27: "#f0dc46.#64d2f0", c28: "#c8a01e.#28aadc", c29: "#dc8c1e.#28aadc", c30: "#d2d2d2.#c8c8e6", c31: "#504646.#326ea0", c32: "#82786e.#5a5a64", c33: "#786e0a.#326ea0", c34: "#fffa96.#ffffff", c35: "#f0dc50.#64d2f0", c36: "#6e460a.#326ea0", c37: "#b49646.#28aadc", c38: "#82828c.#dcc80a", c39: "#0a0a0a.#141414", c40: "#a0640a.#28aadc", c41: "#c8c8c8.#c8c8e6", c42: "#64505a.#5a5a64", c43: "#f0dc3c.#64d2f0", c44: "#b4b4b4.#c8c8e6", c45: "#f03232.#6ec882", c46: "#e69682.#6ec882", c47: "#d25a46.#6ec882", c48: "#786414.#326ea0", c49: "#782828.#326ea0", c50: "#9696a0.#f0e650", c51: "#c8aa1e.#28aadc", c52: "#fadc46.#64d2f0", c53: "#c80a14.#6ec882", c54: "#96463c.#468246", c55: "#6e646e.#5a5a64", c56: "#828282.#5a5a64", c57: "#dcdcdc.#c8c8e6", c58: "#46463c.#326ea0", c59: "#820a0a.#326ea0", c60: "#f0461e.#6ec882", c61: "#6e0a0a.#326ea0", c62: "#f04646.#6ec882", c63: "#ff8282.#6ec882", c64: "#78786e.#5a5a64", c65: "#aa0a14.#468246", c66: "#8c8278.#5a5a64", c67: "#780a14.#326ea0", c68: "#5a5050.#5a5a64", c69: "#282828.#141414", c70: "#960a3c.#468246", c71: "#c81e3c.#6ec882", c72: "#fa323c.#6ec882", c73: "#a04664.#468246", c74: "#fa6e64.#6ec882", c75: "#dca0b4.#c8c8e6", c76: "#a0a0a0.#f0e650", c77: "#5a4646.#326ea0", c78: "#82646e.#5a5a64", c79: "#50320a.#326ea0", c80: "#f08c6e.#6ec882", c81: "#785014.#326ea0", c82: "#ffd246.#64d2f0", c83: "#aa1414.#468246", c84: "#d28c28.#28aadc", c85: "#827882.#dcc80a", c86: "#aab4b4.#f0e650", c87: "#c83228.#6ec882", c88: "#464646.#5a5014", c89: "#f0f0f0.#ffffff", c90: "#a096a0.#f0e650", c91: "#a03c46.#468246", c92: "#3c3c3c.#5a5014", c93: "#969696.#f0e650", c94: "#787878.#5a5a64", c95: "#d26478.#6ec882", c96: "#f08296.#6ec882", c97: "#dce6d2.#c8c8e6", c98: "#28281e.#141414", c99: "#a06e14.#28aadc" },
354 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#826e5a.#82506e", c6: "#f0dca0.#faaaa0", c7: "#141414.#141414", c8: "#503c3c.#503c3c", c9: "#b47846.#be9678", c10: "#8c5a3c.#a06e78", c11: "#783c3c.#783c3c", c12: "#c8a078.#d278a0", c13: "#c85a78.#c85a78", c14: "#64463c.#64463c", c15: "#f05a46.#dc3c8c", c16: "#463250.#503c3c", c17: "#0a0a0a.#141414", c18: "#aa5a96.#c85a78", c19: "#6e3c6e.#783c3c", c20: "#462846.#503c3c", c21: "#8c6e96.#82506e", c22: "#463246.#503c3c", c23: "#8c50a0.#c85a78", c24: "#b46ec8.#c85a78", c25: "#643c6e.#64463c", c26: "#3c5050.#503c3c", c27: "#bed2d2.#faaaa0", c28: "#5a7878.#82506e", c29: "#827878.#82506e", c30: "#8ca0a0.#d278a0", c31: "#c8dcd2.#faaaa0", c32: "#dce6e6.#ffffff", c33: "#463c3c.#503c3c", c34: "#645a5a.#82506e", c35: "#645064.#64463c", c36: "#82aaa0.#d278a0", c37: "#788c8c.#82506e", c38: "#f0e650.#faaaa0", c39: "#fafafa.#ffffff", c40: "#c8d2c8.#faaaa0", c41: "#464646.#503c3c", c42: "#a0a0a0.#d278a0", c43: "#5a5a50.#64463c", c44: "#dce6dc.#ffffff", c45: "#82786e.#82506e", c46: "#6e786e.#82506e", c47: "#d2b432.#be9678", c48: "#fad228.#d278a0", c49: "#3c3c32.#503c3c" },
355 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#1e5032.#782814", c6: "#82b478.#f05a32", c7: "#649650.#aa3c1e", c8: "#821e3c.#be6e14", c9: "#fa646e.#ffe678", c10: "#000000.#000000", c11: "#be3246.#ffbe28", c12: "#b4a078.#aa8c5a", c13: "#64463c.#6e503c", c14: "#dcbe8c.#dca078", c15: "#fadcaa.#ffe68c", c16: "#0a0a0a.#000000", c17: "#506e5a.#aa3c1e", c18: "#c8dcc8.#ffe68c", c19: "#82b48c.#f05a32", c20: "#503250.#6e503c", c21: "#9650a0.#aa8c5a", c22: "#3c5a46.#782814", c23: "#5a645a.#6e503c", c24: "#c864d2.#aa8c5a", c25: "#141414.#000000", c26: "#8caa96.#f05a32", c27: "#96c8a0.#f05a32", c28: "#50645a.#6e503c", c29: "#c8dcd2.#ffe68c", c30: "#3c5a50.#782814", c31: "#6e9678.#f05a32", c32: "#dce6dc.#ffffff", c33: "#468c6e.#aa3c1e", c34: "#e6f0e6.#ffffff", c35: "#f0fff0.#ffffff", c36: "#282828.#782814", c37: "#aac8b4.#dca078", c38: "#b4beaa.#dca078", c39: "#8caa8c.#f05a32", c40: "#643c46.#6e503c", c41: "#be96aa.#aa8c5a", c42: "#966482.#aa8c5a", c43: "#822882.#be6e14", c44: "#e6faf0.#ffffff", c45: "#3c4646.#782814", c46: "#784650.#6e503c", c47: "#5a8264.#aa3c1e", c48: "#e6e6f0.#ffffff", c49: "#323232.#782814", c50: "#6e8c6e.#aa3c1e", c51: "#464646.#6e503c", c52: "#a078a0.#aa8c5a", c53: "#785078.#6e503c", c54: "#5a6464.#6e503c", c55: "#828282.#f05a32", c56: "#dcdcdc.#ffe68c", c57: "#f0f0f0.#ffffff", c58: "#aad2b4.#dca078", c59: "#be3cbe.#ffe678", c60: "#a03ca0.#ffbe28", c61: "#e6b4c8.#ffe68c" },
356 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#9696a0.#fabe3c", c6: "#646450.#d28264", c7: "#000000.#000000", c8: "#a01e3c.#b43c1e", c9: "#c83250.#fa6e14", c10: "#dc325a.#dc4614", c11: "#aab4b4.#e6d296", c12: "#823c3c.#823c3c", c13: "#82643c.#8c6e3c", c14: "#dcdcd2.#fffaaa", c15: "#ffd264.#fad250", c16: "#e6aa46.#d2a046", c17: "#3c3c3c.#82503c", c18: "#787878.#f0a082", c19: "#283c28.#82503c", c20: "#325a46.#82503c", c21: "#5aaa64.#f0a082", c22: "#468250.#d28264", c23: "#1e4628.#82503c", c24: "#46825a.#d28264", c25: "#96dcb4.#e6d296", c26: "#3c7846.#d28264", c27: "#5aa064.#f0a082", c28: "#64be96.#fabe3c", c29: "#14641e.#82503c", c30: "#141414.#000000", c31: "#3cbe50.#d28264", c32: "#32823c.#d28264", c33: "#509678.#f0a082", c34: "#0a0a0a.#000000", c35: "#1e3c1e.#82503c", c36: "#3c7832.#d28264", c37: "#46963c.#d28264", c38: "#325046.#82503c", c39: "#326450.#82503c", c40: "#6eb4a0.#fabe3c", c41: "#5ac896.#fabe3c", c42: "#78d2b4.#e6d296", c43: "#5aaa96.#fabe3c", c44: "#a0f0d2.#fffaaa", c45: "#3c6e64.#d28264", c46: "#46966e.#f0a082", c47: "#82323c.#823c3c", c48: "#ffbec8.#fffaaa", c49: "#dc8c96.#e6d296", c50: "#ff6482.#dc4614", c51: "#a0dcc8.#e6d296", c52: "#c85064.#fa6e14", c53: "#fafafa.#ffffff", c54: "#dc8caa.#e6d296", c55: "#6e2828.#823c3c", c56: "#fac8c8.#fffaaa", c57: "#821e50.#b43c1e", c58: "#fa465a.#dc4614", c59: "#c8828c.#fabe3c", c60: "#8c505a.#823c3c", c61: "#ff6478.#dc4614", c62: "#be466e.#fa6e14", c63: "#b41e28.#b43c1e", c64: "#f05064.#dc4614", c65: "#be3c50.#fa6e14", c66: "#641e28.#823c3c", c67: "#c8c8c8.#fffaaa", c68: "#dc648c.#dc4614", c69: "#c8466e.#dc4614", c70: "#8c6e82.#f0a082", c71: "#dcbed2.#fffaaa" },
357 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5a5064.#286478", c6: "#3c323c.#143c64", c7: "#a0a0a0.#78a0c8", c8: "#787882.#4682a0", c9: "#000000.#141414", c10: "#b4aabe.#a0bee6", c11: "#aa283c.#aa283c", c12: "#c83c5a.#c83c5a", c13: "#e66478.#e66478", c14: "#503c00.#501e00", c15: "#a07814.#a06414", c16: "#d2a03c.#c88c28", c17: "#785a28.#8c4614", c18: "#f0be5a.#dcb43c", c19: "#dcbe8c.#dcb43c", c20: "#c8a06e.#c88c28", c21: "#785a3c.#8c4614", c22: "#fff0a0.#dcb43c", c23: "#141414.#141414", c24: "#bea064.#c88c28", c25: "#6e5a3c.#8c4614", c26: "#fae6a0.#dcb43c", c27: "#dcb48c.#dcb43c", c28: "#781e14.#501e00", c29: "#d23c50.#c83c5a", c30: "#0a0a0a.#141414", c31: "#fa7846.#e66478", c32: "#6e1e14.#501e00", c33: "#f06e46.#e66478", c34: "#1e1e64.#143c64", c35: "#fff0be.#ffffff", c36: "#1e1e6e.#143c64", c37: "#a03c50.#aa283c", c38: "#fa9678.#dcb43c", c39: "#fafafa.#ffffff", c40: "#1e5046.#143c64", c41: "#e6646e.#e66478", c42: "#6e3232.#8c4614", c43: "#645a3c.#8c4614", c44: "#ffe696.#dcb43c", c45: "#b4a064.#c88c28", c46: "#c8aa6e.#dcb43c", c47: "#d2be78.#dcb43c", c48: "#785a46.#8c4614", c49: "#dc4632.#c83c5a", c50: "#ffd296.#dcb43c", c51: "#ffc896.#dcb43c", c52: "#5a0a0a.#501e00", c53: "#a03c3c.#aa283c", c54: "#ff785a.#e66478", c55: "#ff8246.#c88c28", c56: "#fa6e46.#e66478", c57: "#c83c3c.#c83c5a", c58: "#ffaa64.#dcb43c", c59: "#0a0a64.#143c64", c60: "#e6e6e6.#ffffff", c61: "#6e6446.#8c4614", c62: "#dc8264.#e66478", c63: "#a04650.#aa283c", c64: "#d24650.#c83c5a", c65: "#dc463c.#c83c5a" },
358 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#28aabe.#f0a078", c6: "#5ac8be.#fabe8c", c7: "#c84614.#c8003c", c8: "#783c1e.#8c0032", c9: "#f07828.#ff1450", c10: "#ffaa82.#ff78a0", c11: "#141414.#141414", c12: "#3278f0.#50d2ff", c13: "#0a3caa.#0a96c8", c14: "#befaf0.#ffdcbe", c15: "#325a46.#8c0032", c16: "#64be96.#fabe8c", c17: "#fafafa.#ffffff", c18: "#ff6482.#ff78a0", c19: "#b43c5a.#c8003c", c20: "#82323c.#8c0032", c21: "#3c3c3c.#8c0032", c22: "#c85064.#c8003c", c23: "#ffbec8.#bebebe", c24: "#dc8c96.#ff78a0", c25: "#e68296.#ff78a0", c26: "#78283c.#8c0032", c27: "#468c82.#f0a078", c28: "#787878.#8c0032", c29: "#b4bec8.#bebebe", c30: "#823250.#8c0032", c31: "#b45a6e.#c8003c", c32: "#645a6e.#8c0032", c33: "#b4bed2.#bebebe", c34: "#325046.#8c0032", c35: "#0a0a0a.#141414", c36: "#be466e.#c8003c", c37: "#46966e.#f0a078", c38: "#e682aa.#ff78a0", c39: "#325a50.#8c0032", c40: "#328c6e.#f0a078", c41: "#ffdcdc.#ffffff", c42: "#dc8caa.#ff78a0", c43: "#ffa0a0.#ff78a0", c44: "#6ec896.#fabe8c", c45: "#be3c50.#c8003c", c46: "#508c6e.#f0a078", c47: "#509678.#f0a078", c48: "#786e78.#8c0032", c49: "#5ac896.#fabe8c", c50: "#dcc8dc.#bebebe", c51: "#50aa78.#fabe8c", c52: "#50a082.#f0a078", c53: "#6e6e6e.#8c0032", c54: "#6e2828.#8c0032", c55: "#fa6482.#ff78a0", c56: "#be5078.#c8003c", c57: "#3c6e64.#0a96c8", c58: "#ff9696.#ff78a0", c59: "#8c3c64.#8c0032", c60: "#fac8c8.#bebebe", c61: "#6eb4a0.#fabe8c", c62: "#aa505a.#c8003c", c63: "#508c50.#8c0032", c64: "#c8c8c8.#bebebe", c65: "#b4e6c8.#bebebe", c66: "#c8828c.#ff78a0", c67: "#fa465a.#ff1450", c68: "#f0f0f0.#ffffff", c69: "#969696.#bebebe", c70: "#b41e28.#c8003c", c71: "#5a3c50.#8c0032", c72: "#823246.#8c0032", c73: "#dcbed2.#bebebe", c74: "#8c648c.#bebebe", c75: "#b46e78.#ff78a0", c76: "#faa0aa.#ff78a0", c77: "#641e28.#8c0032" },
359 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c8c5a.#326e8c", c6: "#32643c.#323c78", c7: "#5ab478.#8ca0d2", c8: "#468c64.#647850", c9: "#a0be8c.#aaaa78", c10: "#d2f0c8.#dce6aa", c11: "#141414.#141414", c12: "#dc6464.#78fffa", c13: "#a05050.#46aa8c", c14: "#dcbe78.#a0d278", c15: "#c8a064.#64b414", c16: "#783c3c.#821446", c17: "#c85050.#aa3c50", c18: "#646482.#647850", c19: "#46465a.#323c78", c20: "#1e2846.#141414", c21: "#aaaadc.#aaaa78", c22: "#464664.#323c78", c23: "#646e8c.#647850", c24: "#7878a0.#8ca0d2", c25: "#a0a0b4.#aaaa78", c26: "#8c8cb4.#aaaa78", c27: "#6482a0.#8ca0d2", c28: "#3c5a78.#647850", c29: "#6e648c.#647850", c30: "#0a0a0a.#141414", c31: "#fafafa.#ffffff", c32: "#325078.#323c78", c33: "#82aad2.#aaaa78", c34: "#6496be.#8ca0d2", c35: "#8cc8ff.#dce6aa", c36: "#5064be.#647850", c37: "#3c4696.#647850", c38: "#f0f0f0.#ffffff", c39: "#9696aa.#aaaa78", c40: "#6e6e8c.#647850", c41: "#5078a0.#647850", c42: "#a0dcfa.#dce6aa", c43: "#faf0f0.#ffffff", c44: "#6e96dc.#aaaa78", c45: "#b4e6ff.#dce6aa", c46: "#5a5a5a.#323c78", c47: "#c8dcfa.#dce6aa", c48: "#bebebe.#dce6aa", c49: "#1eaadc.#8ca0d2", c50: "#d2d2dc.#dce6aa", c51: "#28286e.#323c78", c52: "#c8dcff.#dce6aa", c53: "#8c96e6.#aaaa78", c54: "#a0beff.#dce6aa", c55: "#b4b4b4.#aaaa78", c56: "#dcdcdc.#dce6aa", c57: "#3278dc.#8ca0d2", c58: "#7882a0.#8ca0d2", c59: "#969696.#aaaa78", c60: "#32aafa.#8ca0d2", c61: "#bebee6.#dce6aa", c62: "#6e6ebe.#8ca0d2", c63: "#3c466e.#323c78", c64: "#78aadc.#aaaa78", c65: "#464682.#647850", c66: "#3c6496.#647850", c67: "#a0a0d2.#aaaa78", c68: "#c8c8fa.#dce6aa", c69: "#7878b4.#8ca0d2", c70: "#2864aa.#647850", c71: "#5a788c.#647850", c72: "#0a0a14.#141414", c73: "#0a50a0.#647850", c74: "#463c5a.#323c78", c75: "#c8e6ff.#dce6aa", c76: "#8cbef0.#dce6aa", c77: "#64646e.#647850", c78: "#d2f0ff.#ffffff", c79: "#96b4d2.#aaaa78", c80: "#46d2ff.#8ca0d2", c81: "#a0a0be.#aaaa78", c82: "#828c96.#aaaa78", c83: "#b4b4be.#aaaa78", c84: "#5a6482.#647850", c85: "#14a0dc.#8ca0d2", c86: "#c8d2e6.#dce6aa", c87: "#aab4c8.#aaaa78", c88: "#0a3caa.#647850", c89: "#1482be.#647850", c90: "#3278f0.#8ca0d2", c91: "#50b4dc.#8ca0d2", c92: "#c8bec8.#dce6aa", c93: "#a0a0aa.#aaaa78", c94: "#e6dce6.#dce6aa", c95: "#b4b4c8.#aaaa78", c96: "#96aad2.#aaaa78", c97: "#8c8ca0.#aaaa78", c98: "#32323c.#323c78", c99: "#d2fafa.#ffffff", c100: "#64788c.#647850", c101: "#3c3c5a.#323c78", c102: "#8caac8.#aaaa78", c103: "#aad2fa.#dce6aa", c104: "#8c82a0.#aaaa78", c105: "#c8e6fa.#dce6aa", c106: "#46a0ff.#8ca0d2", c107: "#1464aa.#647850", c108: "#a096c8.#aaaa78", c109: "#0aa0fa.#8ca0d2", c110: "#788cb4.#aaaa78", c111: "#5abef0.#8ca0d2" },
360 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#aa965a.#a0a078", c6: "#6e5a3c.#786e6e", c7: "#e6dcc8.#fffaf0", c8: "#c8b48c.#c8c8be", c9: "#141414.#141414", c10: "#144614.#1446c8", c11: "#3c783c.#3c78c8", c12: "#50a046.#50a0d2", c13: "#966e3c.#6e5a50", c14: "#503c28.#3c3232", c15: "#aa6e14.#aa6e14", c16: "#78503c.#5a4646", c17: "#e68200.#e6aa00", c18: "#aa4664.#aa4664", c19: "#465a1e.#3c3232", c20: "#aadc3c.#a0a078", c21: "#789632.#50a0d2", c22: "#64961e.#50a0d2", c23: "#dcff5a.#c8c8be", c24: "#0a0a0a.#141414", c25: "#dcf082.#c8c8be", c26: "#465a14.#3c3232", c27: "#3c5a0a.#1446c8", c28: "#789628.#50a0d2", c29: "#c8825a.#a0a078", c30: "#fab482.#c8c8be", c31: "#e6a06e.#c8c8be", c32: "#503228.#3c3232", c33: "#fafafa.#ffffff", c34: "#be8264.#a0a078", c35: "#28140a.#141414", c36: "#f06432.#e6aa00", c37: "#b4b4b4.#c8c8be", c38: "#d2825a.#a0a078", c39: "#785032.#5a4646", c40: "#dca078.#c8c8be", c41: "#963214.#5a4646", c42: "#bebec8.#fffaf0", c43: "#c85028.#aa6e14", c44: "#8c321e.#5a4646", c45: "#d2d2d2.#fffaf0", c46: "#c82814.#aa6e14", c47: "#f0501e.#e6aa00", c48: "#785a3c.#786e6e", c49: "#ff7846.#e6aa00", c50: "#646464.#786e6e", c51: "#8c6450.#6e5a50", c52: "#dcdcdc.#fffaf0", c53: "#f082a0.#c8c8be", c54: "#321e1e.#141414", c55: "#321414.#141414", c56: "#3c2814.#3c3232", c57: "#464646.#3c3232", c58: "#8c5a46.#6e5a50", c59: "#a0a0a0.#c8c8be", c60: "#f08c6e.#c8c8be", c61: "#786e6e.#786e6e", c62: "#bebeaa.#c8c8be", c63: "#e64682.#aa4664", c64: "#f08cb4.#c8c8be", c65: "#f05a96.#aa4664", c66: "#dc3c64.#aa4664", c67: "#326e1e.#3c78c8", c68: "#a0e646.#a0a078", c69: "#28500a.#1446c8", c70: "#96c83c.#a0a078", c71: "#6eaa3c.#50a0d2", c72: "#648c28.#50a0d2", c73: "#503214.#3c3232", c74: "#f0b482.#c8c8be", c75: "#643c1e.#3c3232", c76: "#c88250.#a0a078", c77: "#f0a078.#c8c8be", c78: "#96320a.#aa6e14", c79: "#ff5a3c.#e6aa00", c80: "#644646.#786e6e", c81: "#dc4614.#aa6e14", c82: "#ff783c.#e6aa00", c83: "#503c32.#3c3232", c84: "#503232.#3c3232", c85: "#3c280a.#3c3232", c86: "#785050.#5a4646" },
361 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#8c323c.#6e5032", c6: "#50281e.#463214", c7: "#c85050.#967850", c8: "#14141e.#aa963c", c9: "#1e1e28.#e6c85a", c10: "#141414.#141414", c11: "#e67878.#aa8c5a", c12: "#50505a.#5a5a64", c13: "#b4b4b4.#b4b4b4", c14: "#8c968c.#8c968c", c15: "#bec8c8.#bec8c8", c16: "#505064.#505064", c17: "#787882.#787882", c18: "#787878.#787882", c19: "#d2d2d2.#bec8c8", c20: "#0a0a0a.#141414", c21: "#464646.#5a5a64", c22: "#322850.#e6c85a", c23: "#1e0a1e.#aa963c", c24: "#a08cbe.#b4b4b4", c25: "#644678.#505064", c26: "#828282.#787882", c27: "#6e5078.#505064", c28: "#8c6ea0.#787882", c29: "#fafafa.#ffffff", c30: "#463c50.#5a5a64", c31: "#b43c5a.#967850", c32: "#ffaab4.#bec8c8", c33: "#ff5a5a.#aa8c5a", c34: "#501414.#463214", c35: "#783c28.#6e5032", c36: "#f0bea0.#b4b4b4", c37: "#be966e.#aa8c5a", c38: "#825032.#6e5032", c39: "#be8c6e.#aa8c5a", c40: "#282850.#e6c85a", c41: "#500a0a.#463214", c42: "#f06ea0.#aa8c5a", c43: "#f096c8.#b4b4b4", c44: "#0a0a14.#141414" },
362 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c3c3c.#3c3c6e", c6: "#141414.#141414", c7: "#3296aa.#dc78d2", c8: "#284646.#5a2846", c9: "#1e6e78.#825096", c10: "#ffbe32.#c8c8d2", c11: "#b48232.#788c8c", c12: "#6e5a1e.#284646", c13: "#ff321e.#ff321e", c14: "#a01e3c.#a01e3c", c15: "#787878.#787878", c16: "#b4beb4.#b4beb4", c17: "#963c1e.#a01e3c", c18: "#3c2814.#3c3c6e", c19: "#f06432.#ff321e", c20: "#966428.#284646", c21: "#0a0a0a.#141414", c22: "#643c1e.#284646", c23: "#aadc3c.#c8c8d2", c24: "#465a1e.#284646", c25: "#aa3c14.#a01e3c", c26: "#789632.#788c8c", c27: "#f0aa6e.#c8c8d2", c28: "#64321e.#284646", c29: "#96320a.#a01e3c", c30: "#825032.#284646", c31: "#ff5a3c.#ff321e", c32: "#ffb464.#c8c8d2", c33: "#1e5a0a.#5a2846", c34: "#c85028.#788c8c", c35: "#bed264.#b4beb4", c36: "#5a8c3c.#284646", c37: "#96c850.#788c8c", c38: "#28140a.#141414", c39: "#fafafa.#ffffff", c40: "#6e4628.#284646", c41: "#28500a.#3c3c6e", c42: "#96c83c.#788c8c", c43: "#5a5a5a.#3c3c6e", c44: "#be8250.#788c8c", c45: "#648c28.#284646", c46: "#bebebe.#b4beb4", c47: "#503214.#3c3c6e", c48: "#a06464.#787878", c49: "#be7846.#788c8c", c50: "#f0b482.#b4beb4", c51: "#be7864.#788c8c", c52: "#c8beb4.#b4beb4", c53: "#d28c96.#b4beb4", c54: "#b4b4b4.#b4beb4", c55: "#503c32.#3c3c6e", c56: "#646464.#787878", c57: "#aa3c28.#a01e3c", c58: "#5a503c.#3c3c6e" },
363 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#283c78.#142850", c6: "#14283c.#14283c", c7: "#3c50b4.#143c64", c8: "#141414.#141414", c9: "#3c3c3c.#3c3c3c", c10: "#c8aa00.#f0a000", c11: "#ffdc50.#ffd250", c12: "#a082a0.#646e64", c13: "#6e503c.#6e3c3c", c14: "#a08214.#a07814", c15: "#786e6e.#3c4646", c16: "#ffffff.#b4b4f0", c17: "#8c6e50.#3c4646", c18: "#b49678.#646e64", c19: "#fadcaa.#ffd250", c20: "#0a0a0a.#141414", c21: "#b46e50.#a07814", c22: "#fafaf0.#b4b4f0", c23: "#fafafa.#b4b4f0", c24: "#d2a082.#646e64", c25: "#d2be96.#646e64", c26: "#3c1e14.#141414", c27: "#826e28.#6e3c3c", c28: "#fff0d2.#b4b4f0", c29: "#825032.#6e3c3c", c30: "#64321e.#6e3c3c", c31: "#dc503c.#a07814", c32: "#1e5a0a.#3c3c3c", c33: "#828c82.#3c4646", c34: "#fa646e.#646e64", c35: "#468c28.#6e3c3c", c36: "#6ec850.#3c4646", c37: "#b4beb4.#646e64", c38: "#8cc850.#a07814", c39: "#b4e664.#ffd250", c40: "#825028.#6e3c3c", c41: "#fa323c.#a07814", c42: "#8c645a.#3c4646", c43: "#c8beb4.#646e64", c44: "#5a321e.#3c3c3c", c45: "#b41e28.#6e3c3c", c46: "#8cdc78.#646e64", c47: "#a04650.#6e3c3c", c48: "#c8283c.#6e3c3c", c49: "#b44650.#6e3c3c", c50: "#b4323c.#6e3c3c", c51: "#78643c.#6e3c3c", c52: "#f0dca0.#ffd250", c53: "#b4a064.#646e64", c54: "#d2b48c.#646e64", c55: "#ff0a50.#6e3c3c", c56: "#641e32.#3c3c3c", c57: "#c84650.#6e3c3c", c58: "#32b428.#6e3c3c", c59: "#6e461e.#6e3c3c", c60: "#fff0e6.#b4b4f0", c61: "#bebeb4.#646e64", c62: "#6e6464.#3c4646", c63: "#50a032.#6e3c3c", c64: "#3c280a.#141414", c65: "#1e7814.#3c3c3c", c66: "#1e3c1e.#14283c" },
364 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#faf096", c4: "#505050.#505050", c5: "#82828c.#a09650", c6: "#0ab45a.#e66e78", c7: "#1e8c50.#be5a64", c8: "#82828c.#aaa032", c9: "#145032.#962828", c10: "#5a5a5a.#aaa032", c11: "#0a8250.#962828" },
365 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c2878.#285a78", c6: "#7850e6.#50bee6", c7: "#a08ce6.#78c8f0", c8: "#c8befa.#aae6fa", c9: "#000000.#000000", c10: "#787878.#787878", c11: "#c8c8c8.#c8beb4", c12: "#e6e6ff.#e6e6ff", c13: "#786e0a.#467800", c14: "#ffe61e.#aaff1e", c15: "#783214.#467800", c16: "#f06432.#467800", c17: "#141414.#000000", c18: "#786428.#467800", c19: "#ffd25a.#aaff1e", c20: "#c8aa46.#aaff1e", c21: "#b44628.#467800", c22: "#965028.#467800", c23: "#0a0a0a.#000000", c24: "#e6a046.#aaff1e", c25: "#6e6428.#467800", c26: "#c8963c.#aaff1e", c27: "#782814.#467800", c28: "#ffdc5a.#aaff1e", c29: "#c83c28.#467800", c30: "#5a320a.#467800", c31: "#8c5014.#467800", c32: "#d20a0a.#467800", c33: "#b4461e.#467800", c34: "#bebebe.#c8beb4", c35: "#ff8246.#aaff1e", c36: "#ffc80a.#aaff1e", c37: "#fafafa.#ffffff", c38: "#6e6e6e.#787878", c39: "#50320a.#467800", c40: "#464646.#285a78", c41: "#82460a.#467800", c42: "#3c3c3c.#285a78", c43: "#a0828c.#787878", c44: "#d2bebe.#c8beb4", c45: "#0a0a14.#000000", c46: "#824614.#467800", c47: "#aa643c.#467800", c48: "#46280a.#000000", c49: "#282828.#000000", c50: "#b4641e.#467800", c51: "#1e1e1e.#000000", c52: "#1e281e.#000000", c53: "#3c463c.#285a78", c54: "#644628.#467800", c55: "#ffdc64.#aaff1e", c56: "#c8a046.#aaff1e", c57: "#6e321e.#467800", c58: "#b4823c.#467800", c59: "#645a28.#467800", c60: "#e6643c.#467800", c61: "#ffdc46.#aaff1e", c62: "#aa5032.#467800", c63: "#c8aa3c.#aaff1e", c64: "#6e280a.#467800", c65: "#dc4614.#467800", c66: "#b43214.#467800", c67: "#787882.#787878", c68: "#3c3c46.#285a78", c69: "#c8c8dc.#c8beb4", c70: "#6e6e78.#787878", c71: "#321e0a.#000000", c72: "#6e461e.#467800", c73: "#dcdcdc.#c8beb4", c74: "#5a321e.#467800", c75: "#b46e46.#787878", c76: "#8c4632.#467800", c77: "#14140a.#000000" },
366 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#000000.#000000", c6: "#323232.#3c321e", c7: "#464646.#50463c", c8: "#828282.#969682", c9: "#c8c8d2.#c8c8d2", c10: "#826ee6.#b46ee6", c11: "#968caa.#968caa", c12: "#c8befa.#c8befa", c13: "#786e0a.#0a5064", c14: "#ffe61e.#1ec8f0", c15: "#dce6f0.#dce6f0", c16: "#ffa01e.#1ec8f0", c17: "#ffd21e.#1ec8f0", c18: "#fa5a28.#0a5064", c19: "#c83c28.#0a5064", c20: "#8c1e1e.#0a5064", c21: "#b43c1e.#0a5064", c22: "#ffdc5a.#1ec8f0", c23: "#826428.#0a5064", c24: "#b48232.#0a5064", c25: "#6e2814.#3c321e", c26: "#782814.#0a5064", c27: "#8c6428.#0a5064", c28: "#8c3228.#0a5064", c29: "#ffdc50.#1ec8f0", c30: "#aa643c.#0a5064", c31: "#f06428.#0a5064", c32: "#8c280a.#0a5064", c33: "#0a0a0a.#000000", c34: "#f0b43c.#1ec8f0", c35: "#642814.#3c321e", c36: "#141414.#000000", c37: "#ff5a1e.#0a5064", c38: "#641e14.#3c321e", c39: "#0a1414.#000000", c40: "#e6a046.#1ec8f0", c41: "#785a28.#0a5064", c42: "#dcb446.#1ec8f0", c43: "#6e6e6e.#969682", c44: "#3c3c3c.#3c321e", c45: "#c8461e.#0a5064", c46: "#50280a.#3c321e", c47: "#aa3c32.#0a5064", c48: "#b48c3c.#0a5064", c49: "#783c1e.#0a5064", c50: "#461414.#3c321e", c51: "#c83c32.#0a5064", c52: "#dc8246.#969682", c53: "#a0281e.#0a5064", c54: "#bebebe.#c8c8d2", c55: "#fafafa.#dce6f0", c56: "#ffffff.#dce6f0", c57: "#646464.#50463c", c58: "#282828.#3c321e", c59: "#d2bebe.#c8c8d2", c60: "#501e14.#3c321e", c61: "#645a5a.#50463c", c62: "#822828.#50463c", c63: "#f06e1e.#1ec8f0", c64: "#5a1414.#3c321e", c65: "#641e1e.#3c321e", c66: "#505046.#50463c", c67: "#8c501e.#0a5064", c68: "#505050.#50463c", c69: "#641414.#3c321e", c70: "#e6643c.#0a5064", c71: "#644628.#50463c", c72: "#aa5032.#0a5064", c73: "#ffdc64.#1ec8f0", c74: "#b4823c.#0a5064", c75: "#641e0a.#3c321e", c76: "#dc3c14.#0a5064", c77: "#645a28.#0a5064", c78: "#b43214.#0a5064", c79: "#fadc3c.#1ec8f0", c80: "#beaa32.#1ec8f0", c81: "#f0f0f0.#dce6f0", c82: "#321414.#3c321e", c83: "#5a5a5a.#50463c", c84: "#b4bec8.#c8c8d2", c85: "#3c3c46.#50463c", c86: "#8c643c.#0a5064", c87: "#465050.#50463c", c88: "#821e1e.#50463c", c89: "#b43c32.#0a5064", c90: "#823232.#50463c", c91: "#5a321e.#3c321e", c92: "#8c4632.#0a5064", c93: "#be3232.#0a5064", c94: "#6e6e78.#969682", c95: "#785032.#0a5064" },
367 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c28b4.#be5014", c6: "#7850e6.#ff8c14", c7: "#aaa0fa.#fab43c", c8: "#141414.#141414", c9: "#323232.#323c28", c10: "#5a5a5a.#5a6e5a", c11: "#c8d2d2.#c8fac8", c12: "#788c8c.#6ea06e", c13: "#ffe61e.#e66ea0", c14: "#326478.#5a6e5a", c15: "#64dcff.#fab43c", c16: "#50a0be.#6ea06e", c17: "#fff08c.#c8fac8", c18: "#c8be6e.#6ea06e", c19: "#787878.#6ea06e", c20: "#fafafa.#ffffff", c21: "#bebebe.#c8fac8", c22: "#0a0a0a.#141414", c23: "#286482.#5a6e5a", c24: "#6e6e6e.#5a6e5a", c25: "#0a78a0.#be5014", c26: "#1ec8e6.#6ea06e", c27: "#0a5a82.#be5014", c28: "#b4f0ff.#c8fac8", c29: "#dcbe0a.#e66ea0", c30: "#fff078.#e66ea0", c31: "#0aa0c8.#6ea06e", c32: "#ffd26e.#e66ea0", c33: "#6ec8e6.#fab43c", c34: "#14283c.#323c28", c35: "#3c8caa.#6ea06e", c36: "#b4820a.#e66ea0", c37: "#dc9628.#e66ea0", c38: "#82828c.#6ea06e", c39: "#fff06e.#e66ea0", c40: "#8c8246.#5a6e5a", c41: "#fafadc.#ffffff", c42: "#465050.#5a6e5a", c43: "#64283c.#323c28", c44: "#969696.#6ea06e", c45: "#964650.#5a6e5a", c46: "#0a50a0.#be5014", c47: "#c8c8c8.#c8fac8", c48: "#966464.#5a6e5a", c49: "#f078a0.#c8fac8", c50: "#be5a78.#6ea06e", c51: "#c8786e.#6ea06e", c52: "#282828.#323c28", c53: "#505050.#5a6e5a", c54: "#461428.#323c28", c55: "#465a6e.#5a6e5a", c56: "#ffaac8.#c8fac8" },
368 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#500000.#500000", c6: "#000000.#000000", c7: "#8c0000.#8c0000", c8: "#3c3c46.#32323c", c9: "#c80000.#c80000", c10: "#3c3c00.#32281e", c11: "#505064.#505064", c12: "#bec850.#828282", c13: "#646e14.#46463c", c14: "#a0aa14.#6e6e6e", c15: "#783c46.#28283c", c16: "#28283c.#141414", c17: "#0a82a0.#505064", c18: "#c83c5a.#28283c", c19: "#78283c.#28283c", c20: "#466ebe.#505064", c21: "#822864.#28283c", c22: "#8cd2f0.#ffffff", c23: "#f0aaa0.#828282", c24: "#ff6464.#828282", c25: "#82e6e6.#ffffff", c26: "#fa82c8.#ffffff", c27: "#e62864.#c80000", c28: "#0a5a78.#505064", c29: "#0aaad2.#505064", c30: "#28506e.#505064", c31: "#28bec8.#505064", c32: "#0a0a0a.#000000", c33: "#fad2c8.#ffffff", c34: "#ffc8fa.#ffffff", c35: "#5abee6.#505064", c36: "#782846.#28283c", c37: "#c8c8c8.#ffffff", c38: "#781e32.#28283c", c39: "#ffa0b4.#ffffff", c40: "#fa82a0.#828282", c41: "#0a50b4.#505064", c42: "#f05a82.#828282", c43: "#6edcff.#ffffff", c44: "#fafafa.#ffffff", c45: "#50c8f0.#ffffff", c46: "#14aaf0.#505064", c47: "#d2dcdc.#ffffff", c48: "#0aa0d2.#505064", c49: "#1482dc.#505064", c50: "#0ab4e6.#505064", c51: "#be3c6e.#28283c", c52: "#f0d2c8.#ffffff", c53: "#e6aae6.#ffffff", c54: "#82325a.#28283c", c55: "#287896.#505064", c56: "#96e6f0.#ffffff", c57: "#50dcfa.#ffffff", c58: "#dcdcdc.#ffffff", c59: "#be2850.#28283c", c60: "#0a7896.#505064", c61: "#be3250.#28283c" },
369 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#145a78.#283c3c", c6: "#003c50.#141e1e", c7: "#28788c.#3c465a", c8: "#28788c.#5a6e6e", c9: "#145064.#283c3c", c10: "#82c8c8.#a0bebe", c11: "#5aa0a0.#788c8c", c12: "#14141e.#14141e", c13: "#fff0a0.#aaff3c", c14: "#beaa78.#6ebe00", c15: "#dcc896.#8cdc1e", c16: "#6e3c00.#5a3c0a", c17: "#c8a050.#b49664", c18: "#a07828.#8c6e3c", c19: "#787878.#788c8c", c20: "#fafafa.#aaff3c", c21: "#bebebe.#8cdc1e", c22: "#141414.#14141e", c23: "#0a5a6e.#283c3c", c24: "#0a6eaa.#3c465a", c25: "#0a4678.#283c3c", c26: "#3cc8f0.#a0bebe", c27: "#0a285a.#141e1e", c28: "#5a5a5a.#283c3c", c29: "#fafadc.#aaff3c", c30: "#0aa0d2.#3c465a", c31: "#bea032.#b49664", c32: "#fff06e.#aaff3c", c33: "#145082.#283c3c", c34: "#2896b4.#3c465a", c35: "#b4b4a0.#6ebe00", c36: "#326eb4.#3c465a", c37: "#f0d250.#b49664", c38: "#1e325a.#141e1e", c39: "#a08c14.#8c6e3c", c40: "#50a0d2.#788c8c", c41: "#ffffff.#aaff3c", c42: "#965064.#8c6e3c", c43: "#643c3c.#5a3c0a", c44: "#dcbe3c.#b49664", c45: "#82d2e6.#a0bebe", c46: "#f0b43c.#b49664", c47: "#dc6478.#b49664", c48: "#e6968c.#6ebe00", c49: "#c88c14.#8c6e3c", c50: "#dca03c.#b49664", c51: "#f0c850.#b49664", c52: "#faf06e.#aaff3c", c53: "#ffaabe.#8cdc1e", c54: "#0a0a1e.#14141e", c55: "#14283c.#141e1e", c56: "#0a3c6e.#283c3c", c57: "#0a64a0.#3c465a", c58: "#32aae6.#788c8c", c59: "#505050.#283c3c", c60: "#3282a0.#3c465a", c61: "#1e5a6e.#283c3c", c62: "#c8c8c8.#8cdc1e", c63: "#969696.#6ebe00" },
370 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#781e3c.#826428", c6: "#963250.#b48c32", c7: "#dc3c78.#ffc850", c8: "#141414.#141414", c9: "#3c3c3c.#32b464", c10: "#787878.#82e6a0", c11: "#282828.#288246", c12: "#5a5a5a.#5a5a5a", c13: "#fafafa.#fafafa", c14: "#1e1e1e.#145028", c15: "#be5064.#ffc850", c16: "#1e285a.#32b464", c17: "#786e3c.#5a5a5a", c18: "#b4f0ff.#fafafa", c19: "#f0788c.#ffc850", c20: "#82323c.#826428", c21: "#fff0aa.#fafafa", c22: "#beb464.#bebebe", c23: "#ffb4be.#bebebe", c24: "#3c64c8.#82e6a0", c25: "#0aaae6.#82e6a0", c26: "#324696.#5a5a5a", c27: "#64dcff.#bebebe", c28: "#0a0a0a.#141414", c29: "#c8be78.#bebebe", c30: "#6e643c.#5a5a5a", c31: "#468cc8.#82e6a0", c32: "#8c96b4.#bebebe", c33: "#bebedc.#bebebe", c34: "#96a0d2.#bebebe", c35: "#788282.#82e6a0", c36: "#c8bee6.#bebebe", c37: "#c8d2dc.#bebebe", c38: "#14285a.#32b464", c39: "#be4664.#ffc850", c40: "#284696.#5a5a5a", c41: "#a0a0b4.#bebebe", c42: "#e60a0a.#b48c32", c43: "#c8dcdc.#bebebe", c44: "#0a96c8.#82e6a0", c45: "#6e6e3c.#5a5a5a", c46: "#3c8ce6.#82e6a0", c47: "#466ef0.#82e6a0", c48: "#f0f0f0.#fafafa", c49: "#14466e.#32b464", c50: "#0a0a28.#141414", c51: "#e6d28c.#bebebe", c52: "#3282aa.#82e6a0", c53: "#145a96.#5a5a5a", c54: "#64bedc.#bebebe", c55: "#0a325a.#32b464", c56: "#b4963c.#82e6a0", c57: "#a0a096.#bebebe", c58: "#dce6e6.#fafafa", c59: "#641e28.#826428", c60: "#a05a6e.#b48c32", c61: "#ffffff.#fafafa", c62: "#f0828c.#ffc850", c63: "#823232.#826428", c64: "#14788c.#5a5a5a", c65: "#46bedc.#bebebe", c66: "#141e5a.#288246", c67: "#323c82.#5a5a5a", c68: "#46463c.#32b464", c69: "#fff0d2.#fafafa", c70: "#3250d2.#82e6a0", c71: "#5ab4e6.#bebebe", c72: "#505050.#5a5a5a", c73: "#969696.#82e6a0", c74: "#c85064.#ffc850", c75: "#968c78.#82e6a0", c76: "#ff788c.#ffc850" },
371 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5a5a5a.#5a5a46", c6: "#fafafa.#fafafa", c7: "#bebebe.#bebe96", c8: "#141414.#141414", c9: "#aaaaaa.#aaaa82", c10: "#e6e6e6.#e6e6b4", c11: "#f08296.#82d2f0", c12: "#b4646e.#6496b4", c13: "#282828.#282828", c14: "#f0d282.#f0d282", c15: "#c8a03c.#c8a03c", c16: "#e6825a.#e6825a", c17: "#96503c.#96503c", c18: "#b4b4b4.#b4b4b4", c19: "#beaaa0.#aaaa82", c20: "#d2c8c8.#bebe96", c21: "#828282.#6496b4", c22: "#f0dcd2.#e6e6b4", c23: "#aa503c.#96503c", c24: "#5a323c.#505050", c25: "#f0823c.#e6825a", c26: "#0a0a0a.#141414", c27: "#ffaa6e.#f0d282", c28: "#c86446.#6496b4", c29: "#3c3c3c.#282828", c30: "#faaa64.#e6825a", c31: "#e6823c.#e6825a", c32: "#323232.#282828", c33: "#646464.#5a5a46", c34: "#ff1e1e.#e6825a", c35: "#1e1e1e.#141414", c36: "#642828.#282828", c37: "#d26446.#e6825a", c38: "#6e2828.#96503c", c39: "#fa1e1e.#96503c", c40: "#a01e14.#96503c", c41: "#aa5050.#96503c", c42: "#dc8278.#e6825a", c43: "#b4aaa0.#aaaa82", c44: "#e6dcd2.#e6e6b4", c45: "#d2d2c8.#bebe96", c46: "#646e78.#5a5a46", c47: "#5a2832.#282828", c48: "#c85a3c.#96503c", c49: "#aa5032.#96503c", c50: "#964646.#96503c", c51: "#505a5a.#5a5a46", c52: "#50505a.#505050", c53: "#8c3c0a.#96503c", c54: "#ff3c0a.#e6825a", c55: "#be5a5a.#6496b4" },
372 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#b4b4b4.#e6b482", c7: "#5a5a5a.#963232", c8: "#3c3c3c.#641e1e", c9: "#828282.#aa825a", c10: "#b44632.#b43232", c11: "#ff6e50.#ff5050", c12: "#823228.#822828", c13: "#78641e.#78641e", c14: "#ffd250.#ffd250", c15: "#b49632.#b49632", c16: "#32281e.#141414", c17: "#645046.#963232", c18: "#503c32.#641e1e", c19: "#14140a.#141414", c20: "#aa6446.#b43232", c21: "#6e5a32.#78641e", c22: "#322814.#141414", c23: "#ffbe96.#ffd250", c24: "#8c4628.#822828", c25: "#6e3232.#822828", c26: "#f08c64.#ff5050", c27: "#0a0a0a.#141414", c28: "#fff0b4.#e6b482", c29: "#281e14.#141414", c30: "#f0b43c.#ffd250", c31: "#5a463c.#641e1e", c32: "#6e5a46.#963232", c33: "#3c3232.#641e1e", c34: "#785a5a.#963232", c35: "#fafafa.#e6b482", c36: "#5a4646.#963232", c37: "#463228.#641e1e", c38: "#a0783c.#b49632", c39: "#78463c.#822828", c40: "#aa6450.#b43232", c41: "#dc8c78.#ff5050", c42: "#fac864.#ffd250", c43: "#ffb4aa.#e6b482", c44: "#dca050.#b49632", c45: "#ffe6b4.#e6b482", c46: "#fadc8c.#ffd250", c47: "#ffd232.#ffd250", c48: "#e6c896.#e6b482", c49: "#faaa3c.#ffd250", c50: "#463c1e.#641e1e", c51: "#f0d2a0.#e6b482", c52: "#b4645a.#b43232", c53: "#dcd2dc.#e6b482", c54: "#ffffff.#e6b482", c55: "#dcbe8c.#e6b482", c56: "#8c788c.#aa825a", c57: "#b4aa82.#e6b482", c58: "#dc7864.#ff5050", c59: "#be6450.#b43232", c60: "#aa5a46.#b43232", c61: "#ffa082.#ff5050", c62: "#dc8278.#ff5050", c63: "#8c463c.#822828", c64: "#82463c.#822828", c65: "#783228.#822828", c66: "#ff9696.#ff5050", c67: "#fab428.#ffd250", c68: "#e6a01e.#b49632" },
373 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#3c3c3c.#3c3c3c", c7: "#b4aa6e.#aaaaaa", c8: "#f0e68c.#e6e6e6", c9: "#64643c.#5a5a5a", c10: "#64643c.#64643c", c11: "#f0e68c.#5a5a5a", c12: "#64643c.#e6e6e6", c13: "#141414.#e6e6e6", c14: "#f08c28.#8c8c8c", c15: "#a05a14.#646464", c16: "#50321e.#50321e", c17: "#b47846.#b47846", c18: "#825a32.#825a32", c19: "#644678.#5a5a5a", c20: "#a08cbe.#aaaaaa", c21: "#d2aadc.#e6e6e6", c22: "#fadcff.#e6e6e6", c23: "#f0c8ff.#e6e6e6", c24: "#643c8c.#3c3c3c", c25: "#aa8cc8.#aaaaaa", c26: "#0a0a0a.#141414", c27: "#fadcfa.#e6e6e6", c28: "#e6befa.#e6e6e6", c29: "#ffffff.#e6e6e6", c30: "#aac8c8.#aaaaaa", c31: "#e6e6e6.#e6e6e6", c32: "#64503c.#5a5a5a", c33: "#a08278.#aaaaaa", c34: "#c8aa8c.#aaaaaa", c35: "#643c28.#50321e", c36: "#aabebe.#aaaaaa", c37: "#fafafa.#e6e6e6", c38: "#e6d2aa.#e6e6e6", c39: "#dcd2aa.#e6e6e6", c40: "#beaa8c.#aaaaaa", c41: "#a08264.#b47846" },
374 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#a0280a.#aa780a", c6: "#c8463c.#c8a014", c7: "#781e00.#8c5a0a", c8: "#32323c.#32323c", c9: "#14141e.#14141e", c10: "#f07814.#f0be14", c11: "#646464.#787896", c12: "#b4b4b4.#b4d2dc", c13: "#e6e6e6.#e6e6e6", c14: "#006ea0.#00aa46", c15: "#00c8ff.#00ff78", c16: "#145064.#143264", c17: "#5096a0.#5064a0", c18: "#96c8d2.#9682d2", c19: "#3c7882.#3c4682", c20: "#503c1e.#32323c", c21: "#322814.#14141e", c22: "#645028.#32323c", c23: "#281e0a.#14141e", c24: "#141414.#14141e", c25: "#0a0a0a.#14141e", c26: "#281414.#14141e", c27: "#503228.#32323c", c28: "#644628.#32323c", c29: "#f0966e.#f0be14", c30: "#8c4632.#aa780a", c31: "#be6450.#c8a014", c32: "#32281e.#32323c", c33: "#5a281e.#8c5a0a", c34: "#505050.#787896", c35: "#783c28.#8c5a0a", c36: "#b45a3c.#c8a014", c37: "#786464.#787896", c38: "#3c3c3c.#32323c", c39: "#d26e64.#c8a014", c40: "#8c3c28.#aa780a", c41: "#28140a.#14141e", c42: "#ffaa82.#b4d2dc", c43: "#dc6e46.#c8a014", c44: "#f08c6e.#f0be14", c45: "#503c28.#32323c", c46: "#6e5032.#787896", c47: "#aa783c.#c8a014", c48: "#321e1e.#14141e", c49: "#784628.#8c5a0a", c50: "#dc9632.#f0be14", c51: "#f0a078.#b4d2dc", c52: "#ffdc46.#f0be14", c53: "#be5a3c.#c8a014", c54: "#783228.#8c5a0a", c55: "#b47832.#c8a014", c56: "#dc785a.#c8a014", c57: "#faf0be.#e6e6e6", c58: "#dcaa5a.#f0be14", c59: "#dc8c50.#f0be14", c60: "#785a28.#787896", c61: "#f0be6e.#b4d2dc", c62: "#fac846.#f0be14", c63: "#be7832.#c8a014", c64: "#dca050.#f0be14", c65: "#aa6e1e.#c8a014", c66: "#f0a00a.#f0be14", c67: "#fff06e.#b4d2dc", c68: "#e69632.#f0be14" },
375 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#281e28.#3c2828", c6: "#5a5050.#78645a", c7: "#141414.#141414", c8: "#505050.#645a50", c9: "#3c3c3c.#503c3c", c10: "#14326e.#282814", c11: "#6496dc.#78a046", c12: "#3c64a0.#5a6e32", c13: "#782814.#782814", c14: "#a03c32.#a03c32", c15: "#783c50.#643ca0", c16: "#a03c6e.#a064c8", c17: "#825a6e.#a064c8", c18: "#fff0f0.#78a046", c19: "#fad2dc.#78a046", c20: "#dcb4c8.#78a046", c21: "#aa5064.#a064c8", c22: "#f0b4c8.#78a046", c23: "#dc6e8c.#a064c8", c24: "#ffc8dc.#78a046", c25: "#fafafa.#78a046", c26: "#e68ca0.#a064c8", c27: "#dc5082.#a064c8", c28: "#825a64.#643ca0", c29: "#a0325a.#a064c8", c30: "#e6648c.#a064c8", c31: "#ffa0be.#78a046", c32: "#f0d2d2.#78a046", c33: "#dca0b4.#78a046", c34: "#faf0f0.#78a046", c35: "#ffdce6.#78a046", c36: "#823c46.#643ca0", c37: "#dcaaaa.#78a046", c38: "#ffe6e6.#78a046", c39: "#968296.#a064c8", c40: "#ffb4c8.#78a046", c41: "#be7896.#a064c8", c42: "#f0dce6.#78a046", c43: "#aa788c.#a064c8", c44: "#c83c64.#a064c8", c45: "#0a0a0a.#141414", c46: "#c882a0.#a064c8", c47: "#faa0be.#78a046", c48: "#e6bec8.#78a046", c49: "#96506e.#a064c8", c50: "#fac8d2.#78a046", c51: "#fafaf0.#78a046", c52: "#d2c8d2.#78a046", c53: "#e6aabe.#78a046", c54: "#961e32.#a03c32", c55: "#fa3c6e.#a064c8", c56: "#e63c64.#a064c8", c57: "#aa2846.#a03c32", c58: "#fa82a0.#a064c8", c59: "#f04678.#a064c8", c60: "#8c3246.#643ca0", c61: "#640a1e.#782814", c62: "#be1e46.#a03c32", c63: "#f08caa.#a064c8", c64: "#b43c3c.#a03c32", c65: "#f06e78.#a064c8" },
376 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#281e28.#3c2828", c6: "#3c3c3c.#503c3c", c7: "#505050.#645a50", c8: "#141414.#141414", c9: "#3c64a0.#5a6e32", c10: "#14326e.#282814", c11: "#6496dc.#78a046", c12: "#782814.#782814", c13: "#a03c32.#a03c32", c14: "#e6dcdc.#e6dcdc", c15: "#a03c6e.#643ca0", c16: "#641e3c.#3c1e64", c17: "#aaaaaa.#aaaaaa", c18: "#fabed2.#e6dcdc", c19: "#fadce6.#e6dcdc", c20: "#e6e6be.#e6dcdc", c21: "#fafad2.#e6dcdc", c22: "#641428.#3c1e64", c23: "#0a0a0a.#141414", c24: "#d24678.#643ca0", c25: "#aa2850.#a03c32", c26: "#aadcbe.#aaaaaa", c27: "#f082aa.#aaaaaa", c28: "#aa285a.#643ca0", c29: "#641e28.#3c1e64", c30: "#beffdc.#e6dcdc", c31: "#fafafa.#e6dcdc", c32: "#e63c64.#643ca0", c33: "#ff8caa.#aaaaaa", c34: "#aa2846.#a03c32", c35: "#f06496.#643ca0", c36: "#f0a0b4.#aaaaaa", c37: "#befaff.#e6dcdc", c38: "#aae6e6.#e6dcdc", c39: "#e696aa.#aaaaaa", c40: "#8c3c50.#a03c32", c41: "#f096aa.#aaaaaa", c42: "#b46e82.#643ca0", c43: "#783c50.#3c1e64", c44: "#ffc8dc.#e6dcdc", c45: "#d28ca0.#aaaaaa", c46: "#8c3c5a.#643ca0", c47: "#dcb4be.#e6dcdc", c48: "#643c32.#3c1e64", c49: "#825a50.#645a50", c50: "#d2aabe.#aaaaaa", c51: "#b48c8c.#aaaaaa", c52: "#825a78.#643ca0", c53: "#965a14.#a03c32", c54: "#be3264.#643ca0", c55: "#f0466e.#643ca0", c56: "#640a1e.#3c1e64", c57: "#961e32.#a03c32", c58: "#b45a8c.#643ca0", c59: "#fff0f0.#e6dcdc", c60: "#d23c3c.#a03c32", c61: "#e6648c.#643ca0", c62: "#e678be.#aaaaaa", c63: "#faf0f0.#e6dcdc", c64: "#822846.#3c1e64", c65: "#8c3246.#a03c32", c66: "#c86482.#643ca0", c67: "#c83c64.#643ca0", c68: "#fabee6.#e6dcdc", c69: "#8c5064.#643ca0", c70: "#fad2f0.#e6dcdc", c71: "#ffa0be.#e6dcdc", c72: "#c88ca0.#aaaaaa", c73: "#fac8dc.#e6dcdc", c74: "#ffdce6.#e6dcdc", c75: "#f0b4c8.#e6dcdc", c76: "#dc8ca0.#aaaaaa", c77: "#c8bec8.#e6dcdc", c78: "#be3c6e.#643ca0", c79: "#f05096.#643ca0", c80: "#786e78.#645a50", c81: "#825a64.#643ca0", c82: "#faaaf0.#e6dcdc", c83: "#46141e.#3c2828", c84: "#b42846.#a03c32" },
377 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c3c3c.#503c3c", c6: "#281e28.#3c2828", c7: "#505050.#645a50", c8: "#141414.#141414", c9: "#8c2864.#643ca0", c10: "#be5078.#a064c8", c11: "#641e3c.#3c1e64", c12: "#14326e.#282814", c13: "#5a82c8.#78a046", c14: "#3c5aa0.#5a6e32", c15: "#a03c32.#a03c32", c16: "#782814.#782814", c17: "#e6dcdc.#e6dcdc", c18: "#781e28.#782814", c19: "#b42832.#a03c32", c20: "#0a0a0a.#141414", c21: "#e66478.#a064c8", c22: "#e63c46.#a064c8", c23: "#e63c3c.#a03c32", c24: "#78640a.#782814", c25: "#bea00a.#a03c32", c26: "#1e1e1e.#3c2828", c27: "#8c640a.#a03c32", c28: "#64460a.#782814", c29: "#fad20a.#a03c32", c30: "#f0a00a.#a03c32", c31: "#ffe66e.#e6dcdc", c32: "#ffd20a.#a03c32", c33: "#be820a.#a03c32", c34: "#ffc80a.#a03c32", c35: "#fff050.#e6dcdc", c36: "#f0aa0a.#a03c32", c37: "#64645a.#645a50", c38: "#ffffff.#e6dcdc", c39: "#464646.#503c3c", c40: "#aaaaa0.#78a046", c41: "#c8be82.#e6dcdc", c42: "#787850.#645a50", c43: "#82783c.#645a50", c44: "#fffab4.#e6dcdc", c45: "#f0dc6e.#e6dcdc", c46: "#c8b464.#a064c8", c47: "#823c0a.#782814", c48: "#5a141e.#3c1e64", c49: "#641428.#3c1e64", c50: "#dc3c50.#a064c8", c51: "#6e501e.#782814", c52: "#ffd21e.#a064c8", c53: "#b48c1e.#a03c32", c54: "#5a5a5a.#645a50", c55: "#9696aa.#78a046", c56: "#786432.#645a50", c57: "#a08c46.#a03c32", c58: "#faf0aa.#e6dcdc", c59: "#a01e32.#a03c32", c60: "#dcb46e.#a064c8" },
378 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#7878a0.#786e8c", c6: "#f0f0ff.#f0f0ff", c7: "#000000.#141414", c8: "#c8c8f0.#c8c8e6", c9: "#8c2846.#a03c00", c10: "#c84650.#ffaa00", c11: "#ff6464.#ffdc00", c12: "#be3c3c.#e68200", c13: "#ffa078.#ffbe78", c14: "#c8a046.#3ca01e", c15: "#ffc85a.#00be46", c16: "#aaa0d2.#a0a0c8", c17: "#78aaf0.#78dc96", c18: "#5a78b4.#3caa64", c19: "#783c28.#a03c00", c20: "#e66478.#ffdc00", c21: "#dc283c.#e68200", c22: "#6e5028.#a03c00", c23: "#1e1e1e.#141414", c24: "#fac814.#00be46", c25: "#b49614.#3ca01e", c26: "#0a0a0a.#141414", c27: "#c85a14.#e68200", c28: "#fa781e.#ffdc00", c29: "#961428.#a03c00", c30: "#e6646e.#ffdc00", c31: "#be1e32.#e68200", c32: "#464646.#a03c00", c33: "#969696.#786e8c", c34: "#e6e6e6.#f0f0ff", c35: "#b45028.#e68200", c36: "#820a14.#a03c00", c37: "#646464.#786e8c", c38: "#aa141e.#a03c00", c39: "#c81e28.#e68200", c40: "#bebebe.#a0a0c8", c41: "#fad214.#00be46", c42: "#783228.#a03c00", c43: "#aa4614.#e68200", c44: "#645028.#a03c00", c45: "#fad20a.#00be46", c46: "#82640a.#a03c00", c47: "#b4960a.#3ca01e", c48: "#966e1e.#e68200", c49: "#6e461e.#a03c00", c50: "#c89614.#3ca01e", c51: "#ffdc50.#00be46", c52: "#b41e28.#e68200", c53: "#a01e32.#a03c00", c54: "#141414.#141414", c55: "#643214.#a03c00", c56: "#e62832.#e68200", c57: "#fa8c3c.#3ca01e", c58: "#d25a1e.#e68200", c59: "#8c321e.#a03c00", c60: "#fab432.#00be46", c61: "#3c3c3c.#a03c00", c62: "#6e6e6e.#786e8c", c63: "#e6961e.#3ca01e", c64: "#c8c8c8.#c8c8e6", c65: "#dc501e.#e68200", c66: "#786432.#a03c00", c67: "#dc9628.#3ca01e", c68: "#ffc80a.#00be46", c69: "#6e4628.#a03c00", c70: "#dcdcf0.#c8c8e6" },
379 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#968c96.#a0a0a0", c6: "#dcd2c8.#f0faff", c7: "#6e646e.#6e646e", c8: "#b4b4aa.#c8d2dc", c9: "#dcdcdc.#fafaff", c10: "#4664b4.#1ea078", c11: "#a0c8ff.#a0ffc8", c12: "#141414.#141414", c13: "#283278.#006450", c14: "#5aa0ff.#78f0c8", c15: "#5078d2.#46bea0", c16: "#c83c5a.#e66e00", c17: "#ff5a50.#ffa03c", c18: "#a0826e.#a0a0a0", c19: "#645032.#6e646e", c20: "#fff0c8.#fafaff", c21: "#e6dc82.#f0faff", c22: "#c8aa78.#c8d2dc", c23: "#3c3c82.#006450", c24: "#3c6eaa.#1ea078", c25: "#64befa.#78f0c8", c26: "#a0e6fa.#a0ffc8", c27: "#6e6e6e.#6e646e", c28: "#3ca0c8.#46bea0", c29: "#c8c8c8.#f0faff", c30: "#0a0a0a.#141414", c31: "#fafafa.#ffffff" },
380 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#be6e6e.#c8c83c", c6: "#ffb496.#ffffbe", c7: "#ff7846.#fff03c", c8: "#643c3c.#786414", c9: "#6ec8dc.#78d2aa", c10: "#3c5064.#3c645a", c11: "#5096aa.#46a078", c12: "#a064b4.#0032c8", c13: "#141414.#141414", c14: "#c8c8d2.#c8c8d2", c15: "#783c8c.#6e0aa0", c16: "#78786e.#78786e", c17: "#14500a.#141414", c18: "#3c963c.#505050", c19: "#82c878.#78786e", c20: "#64b46e.#78786e", c21: "#287846.#3c645a", c22: "#145032.#3c645a", c23: "#325014.#786414", c24: "#aaf096.#c8c8d2", c25: "#0a0a0a.#141414", c26: "#32783c.#505050", c27: "#3c9650.#3c645a", c28: "#64be32.#78786e", c29: "#468c28.#505050", c30: "#3c506e.#3c645a", c31: "#3282a0.#46a078", c32: "#64a0dc.#78d2aa", c33: "#96b4dc.#78d2aa", c34: "#78d246.#78786e", c35: "#323c64.#3c645a", c36: "#46aa28.#505050", c37: "#28508c.#3c645a", c38: "#3278a0.#46a078", c39: "#285014.#141414", c40: "#28783c.#3c645a", c41: "#96783c.#78786e", c42: "#283c78.#3c645a", c43: "#ffdc78.#ffffbe", c44: "#dcb43c.#fff03c", c45: "#fffaff.#ffffff", c46: "#3c7896.#46a078", c47: "#826432.#786414", c48: "#c8a032.#fff03c", c49: "#b4c8dc.#c8c8d2", c50: "#329632.#505050", c51: "#6e96e6.#78d2aa", c52: "#821e1e.#786414", c53: "#dc3232.#fff03c", c54: "#d2aa3c.#fff03c", c55: "#327896.#46a078", c56: "#82d278.#78786e", c57: "#32506e.#3c645a", c58: "#ffe632.#ffffbe", c59: "#ffd246.#ffffbe", c60: "#8c7832.#78786e", c61: "#508cd2.#46a078", c62: "#2882a0.#46a078", c63: "#508246.#505050", c64: "#f0be46.#fff03c", c65: "#b47846.#c8c83c", c66: "#50a0d2.#46a078", c67: "#32465a.#3c645a", c68: "#dcb432.#fff03c", c69: "#323c5a.#3c645a" },
381 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#aa8232.#b48214", c6: "#000000.#141414", c7: "#ffff96.#ffdc6e", c8: "#ffe65a.#fafa8c", c9: "#e6be50.#f0c846", c10: "#50aac8.#dc3c0a", c11: "#32788c.#b41400", c12: "#64d2dc.#fa643c", c13: "#c8c8dc.#dcaab4", c14: "#e6f0fa.#fadcdc", c15: "#6e7878.#786e6e", c16: "#a0a0aa.#aaa0a0", c17: "#6e8c3c.#b48214", c18: "#3c501e.#141414", c19: "#aad264.#f0c846", c20: "#8caa3c.#b48214", c21: "#285a32.#b41400", c22: "#0a0a0a.#141414", c23: "#468c46.#786e6e", c24: "#466428.#786e6e", c25: "#96323c.#b48214", c26: "#64aa50.#786e6e", c27: "#82c850.#b48214", c28: "#aad23c.#f0c846", c29: "#ff7896.#f0c846", c30: "#788c3c.#b48214", c31: "#8cb432.#b48214", c32: "#c83c64.#b48214", c33: "#b4ff78.#ffdc6e", c34: "#5a6e32.#786e6e", c35: "#78bea0.#aaa0a0", c36: "#469664.#b41400", c37: "#aadcb4.#dcaab4", c38: "#828ca0.#aaa0a0", c39: "#b4b4be.#aaa0a0", c40: "#be6478.#b48214", c41: "#fafafa.#ffffff", c42: "#e68296.#aaa0a0", c43: "#a0dcb4.#dcaab4", c44: "#3c7864.#b41400", c45: "#ffaab4.#dcaab4", c46: "#6eb4a0.#dc3c0a", c47: "#5a966e.#786e6e", c48: "#c83c5a.#b48214", c49: "#82283c.#b48214", c50: "#c8c8d2.#dcaab4", c51: "#82c896.#aaa0a0", c52: "#96463c.#b48214", c53: "#d24632.#b48214", c54: "#ff786e.#f0c846", c55: "#bee6b4.#dcaab4", c56: "#dcffc8.#fadcdc", c57: "#6e8c46.#786e6e" },
382 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c7850.#507832", c6: "#000000.#282828", c7: "#b4dc78.#aaf064", c8: "#6e6e64.#82785a", c9: "#78aa5a.#78aa3c", c10: "#fffff0.#fffa82", c11: "#828282.#a08c78", c12: "#bec8c8.#faa050", c13: "#fffffa.#fffab4", c14: "#504646.#645046", c15: "#c8dcc8.#ffd278", c16: "#64463c.#6e463c", c17: "#c8bea0.#d2c896", c18: "#a08278.#8c6450", c19: "#aa9678.#b4a078", c20: "#8c645a.#82785a", c21: "#ffe696.#d2c896", c22: "#141414.#282828", c23: "#f0dc8c.#d2c896", c24: "#dcbe6e.#aaf064", c25: "#be8c6e.#b4a078", c26: "#6e5a50.#82785a", c27: "#0a0a0a.#282828", c28: "#786e5a.#82785a", c29: "#faf0aa.#ffd278", c30: "#aa8c6e.#b4a078", c31: "#78965a.#78aa3c", c32: "#466e46.#507832", c33: "#e6d282.#d2c896", c34: "#beaa78.#b4a078", c35: "#dcd28c.#d2c896", c36: "#faf0a0.#ffd278", c37: "#aae678.#aaf064", c38: "#d2ff8c.#aaf064", c39: "#a0c864.#aaf064", c40: "#bea078.#b4a078", c41: "#5a8c50.#507832", c42: "#466450.#507832", c43: "#befa78.#aaf064", c44: "#a08264.#8c6450", c45: "#5a6e46.#507832", c46: "#bef082.#aaf064", c47: "#a0d278.#aaf064", c48: "#96be50.#78aa3c", c49: "#96e664.#aaf064", c50: "#78b45a.#78aa3c", c51: "#c8ff8c.#aaf064", c52: "#c8a078.#b4a078", c53: "#8c7850.#82785a", c54: "#beaa6e.#b4a078", c55: "#6e965a.#78aa3c", c56: "#ffffff.#fffab4", c57: "#466446.#507832", c58: "#648250.#82785a", c59: "#6e8c5a.#82785a", c60: "#ffaa78.#d2c896", c61: "#0a0a14.#282828", c62: "#a04632.#6e463c", c63: "#644628.#6e463c", c64: "#faa064.#b4a078", c65: "#3c3c32.#645046", c66: "#3c3228.#645046", c67: "#b48c6e.#b4a078", c68: "#dc7850.#b4a078", c69: "#826e5a.#82785a", c70: "#826450.#82785a", c71: "#aa8c64.#b4a078", c72: "#faaa78.#d2c896", c73: "#c86e3c.#8c6450", c74: "#f08c50.#b4a078", c75: "#c88278.#b4a078", c76: "#8c6e50.#82785a", c77: "#a04650.#6e463c", c78: "#fafafa.#fffab4", c79: "#d2d2d2.#ffd278", c80: "#c8825a.#b4a078", c81: "#e682a0.#d2c896", c82: "#b4b4b4.#faa050", c83: "#8c503c.#6e463c", c84: "#c88c64.#b4a078", c85: "#f0aa78.#d2c896", c86: "#c88c96.#b4a078", c87: "#faf096.#d2c896" },
383 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5a3c32.#6e5032", c6: "#be8246.#c8a050", c7: "#141414.#141414", c8: "#8c5a32.#96783c", c9: "#aa9678.#c8b4a0", c10: "#e6d2a0.#f0e6be", c11: "#c8c8b4.#c8c8b4", c12: "#3c3228.#3c3228", c13: "#64503c.#784650", c14: "#dc4646.#ff826e", c15: "#3c3c32.#463c3c", c16: "#787878.#c8b4a0", c17: "#8c8c8c.#c8b4a0", c18: "#323232.#3c3228", c19: "#fafafa.#ffffff", c20: "#f0f0f0.#ffffff", c21: "#6e6e6e.#784650", c22: "#961446.#96783c", c23: "#c8c8c8.#c8c8b4", c24: "#6e5a50.#784650", c25: "#642828.#6e5032", c26: "#6e2828.#6e5032", c27: "#bea096.#c8b4a0", c28: "#462828.#3c3228", c29: "#fab4d2.#f0e6be", c30: "#b4786e.#c8b4a0", c31: "#8c5046.#96783c", c32: "#282828.#3c3228", c33: "#503c3c.#6e5032", c34: "#3c3c3c.#463c3c", c35: "#aa786e.#c8b4a0", c36: "#6e3c3c.#6e5032", c37: "#3c1414.#3c3228", c38: "#785050.#784650", c39: "#826464.#96783c", c40: "#a08282.#c8b4a0", c41: "#0a0a0a.#141414", c42: "#b4b4b4.#c8c8b4", c43: "#be8c8c.#c8b4a0" },
384 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#144678.#786e1e", c7: "#2878a0.#aaa028", c8: "#46a0f0.#e6f078", c9: "#3c3c3c.#3c505a", c10: "#5a5a5a.#507882", c11: "#a03232.#a03c64", c12: "#dc3c3c.#dc508c", c13: "#8c823c.#5a82aa", c14: "#dcc878.#78b4c8", c15: "#828282.#648ca0", c16: "#b4b4b4.#aac8c8", c17: "#b4285a.#a03c64", c18: "#28a0b4.#aaa028", c19: "#64aa28.#5a82aa", c20: "#1482aa.#aaa028", c21: "#dc6e14.#dc508c", c22: "#c8aa28.#5a82aa", c23: "#823ca0.#648ca0", c24: "#f0f0f0.#ffffff", c25: "#82143c.#a03c64", c26: "#146478.#786e1e", c27: "#3c6e14.#3c505a", c28: "#0a506e.#786e1e", c29: "#8c460a.#a03c64", c30: "#826e14.#5a82aa", c31: "#501464.#3c505a", c32: "#961446.#a03c64", c33: "#f0648c.#dc508c", c34: "#d2286e.#dc508c", c35: "#fac8d2.#ffffff", c36: "#c8f0f0.#ffffff", c37: "#d2fabe.#aac8c8", c38: "#c8f0fa.#ffffff", c39: "#fae6c8.#ffffff", c40: "#faf0b4.#ffffff", c41: "#f0c8fa.#ffffff", c42: "#ffdcf0.#ffffff", c43: "#6e1432.#a03c64", c44: "#fab4d2.#aac8c8", c45: "#ffc8dc.#ffffff", c46: "#f0a0b4.#aac8c8", c47: "#a0faf0.#aac8c8", c48: "#b4fa8c.#78b4c8", c49: "#8cdcf0.#aac8c8", c50: "#fac882.#78b4c8", c51: "#faf078.#78b4c8", c52: "#dc96fa.#aac8c8", c53: "#c83c6e.#dc508c", c54: "#78dce6.#e6f078", c55: "#96dc50.#78b4c8", c56: "#32b4dc.#e6f078", c57: "#faaa3c.#78b4c8", c58: "#fadc46.#78b4c8", c59: "#b46edc.#aac8c8", c60: "#642828.#3c505a", c61: "#8cbe5a.#5a82aa", c62: "#648c50.#5a82aa", c63: "#f0ffbe.#ffffff", c64: "#d2fa78.#78b4c8", c65: "#32641e.#3c505a", c66: "#a01e50.#a03c64", c67: "#aadc64.#78b4c8", c68: "#0a0a0a.#141414", c69: "#b4f06e.#78b4c8", c70: "#fff082.#78b4c8", c71: "#b45a78.#648ca0", c72: "#d2d2d2.#aac8c8", c73: "#823c50.#a03c64", c74: "#fafafa.#ffffff", c75: "#c8b45a.#78b4c8", c76: "#fadcdc.#ffffff", c77: "#faffc8.#ffffff", c78: "#96823c.#5a82aa", c79: "#ffe664.#78b4c8", c80: "#f0b4c8.#aac8c8", c81: "#f08cb4.#aac8c8", c82: "#a03246.#a03c64", c83: "#d22850.#dc508c", c84: "#fffab4.#ffffff", c85: "#a01446.#a03c64", c86: "#dcd264.#78b4c8", c87: "#a06ed2.#aac8c8", c88: "#785096.#648ca0", c89: "#503c6e.#507882", c90: "#f0d2ff.#ffffff", c91: "#c8aaff.#aac8c8", c92: "#b496f0.#aac8c8", c93: "#dcbeff.#ffffff" },
385 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#503c28.#503c28", c6: "#000000.#000000", c7: "#dcc8be.#f0a0fa", c8: "#c8b496.#c878c8", c9: "#b4a078.#a05aaa", c10: "#6e461e.#6e461e", c11: "#8c7850.#784664", c12: "#c8c8c8.#c8c8c8", c13: "#a0a0a0.#a0a0a0", c14: "#e68c96.#ff7878", c15: "#be5a6e.#e64646", c16: "#783c50.#a0141e", c17: "#961e14.#6e461e", c18: "#0a0a0a.#000000", c19: "#c83c3c.#e64646", c20: "#ff5046.#e64646", c21: "#ffdc28.#a05aaa", c22: "#ffa00a.#a05aaa", c23: "#ff3c0a.#e64646", c24: "#ff826e.#ff7878", c25: "#141414.#000000", c26: "#d22850.#e64646", c27: "#b4b4b4.#c8c8c8", c28: "#0a5aff.#a0a0a0", c29: "#ffaa0a.#a05aaa", c30: "#6e6e6e.#784664", c31: "#d23c3c.#e64646", c32: "#ff9678.#ff7878", c33: "#e63c14.#e64646", c34: "#fafafa.#ffffff", c35: "#fae6fa.#ffffff", c36: "#b48c5a.#a05aaa", c37: "#e6c8aa.#f0a0fa", c38: "#c8aa78.#a05aaa", c39: "#e6d2aa.#f0a0fa", c40: "#d2aa78.#a05aaa", c41: "#6e646e.#784664", c42: "#e6aa5a.#a05aaa", c43: "#ffd26e.#c878c8", c44: "#fa7878.#ff7878", c45: "#c8323c.#e64646", c46: "#8c0a0a.#6e461e", c47: "#ff8c6e.#ff7878", c48: "#fa5a3c.#e64646", c49: "#0a2878.#503c28", c50: "#78140a.#6e461e", c51: "#5a4628.#503c28", c52: "#b48c64.#a05aaa", c53: "#6e500a.#6e461e", c54: "#646450.#784664", c55: "#be6446.#e64646" },
386 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#783232.#783c0a", c6: "#ff465a.#ff8c1e", c7: "#a03c46.#c84614", c8: "#141414.#141414", c9: "#5a5a50.#645a3c", c10: "#d2d2d2.#f0d282", c11: "#ffffff.#fffff0", c12: "#8c6e46.#8c783c", c13: "#78503c.#785a28", c14: "#3c3c3c.#463c32", c15: "#e6e6e6.#f0e6aa", c16: "#828282.#a09678", c17: "#503c1e.#50461e", c18: "#c86496.#f0785a", c19: "#a08264.#aa8c64", c20: "#28460a.#50461e", c21: "#64a03c.#8c783c", c22: "#78c850.#aa8c64", c23: "#3c6e14.#50461e", c24: "#aaf096.#f0d282", c25: "#5a501e.#50461e", c26: "#e6e6b4.#f0d282", c27: "#b4aa78.#aa8c64", c28: "#46a0dc.#a09678", c29: "#fafafa.#fffff0", c30: "#c8783c.#aa8c64", c31: "#a05a5a.#8c783c", c32: "#b4dcfa.#f0d282", c33: "#5a3214.#50461e", c34: "#dca05a.#aa8c64", c35: "#827846.#8c783c", c36: "#8c5a3c.#8c783c", c37: "#0a0a0a.#141414", c38: "#d23c46.#c84614", c39: "#780a14.#783c0a", c40: "#ffaa96.#f0d282", c41: "#ff6e5a.#ff8c1e", c42: "#faaa8c.#f0785a", c43: "#465046.#645a3c", c44: "#283228.#463c32", c45: "#788c8c.#a09678", c46: "#a0aaaa.#a09678" },
387 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#324678.#8c46a0", c6: "#64a0c8.#dcb4e6", c7: "#4682b4.#be96e6", c8: "#325a96.#a078be", c9: "#1e3246.#5a1e78", c10: "#000000.#141414", c11: "#b4bec8.#b4bec8", c12: "#f0d2a0.#f0d2a0", c13: "#6e6446.#6e6446", c14: "#fff0c8.#fff0c8", c15: "#828ca0.#828ca0", c16: "#c8b482.#c8b482", c17: "#a08c64.#a08c64", c18: "#aa3c6e.#a08c64", c19: "#fa8cb4.#f0d2a0", c20: "#ffc8dc.#fff0c8", c21: "#dc50a0.#a08c64", c22: "#141414.#141414", c23: "#fafafa.#ffffff", c24: "#faf0fa.#ffffff", c25: "#f08cb4.#f0d2a0", c26: "#f0f0f0.#ffffff", c27: "#5a505a.#6e6446", c28: "#b4a0b4.#b4bec8", c29: "#827882.#828ca0", c30: "#dcb45a.#c8b482", c31: "#0a0a0a.#141414", c32: "#6e1e46.#6e6446", c33: "#b48250.#a08c64", c34: "#ffe664.#f0d2a0", c35: "#fac8dc.#fff0c8", c36: "#dc5a96.#a08c64", c37: "#503c50.#8c46a0", c38: "#8c5078.#6e6446", c39: "#dc5046.#a08c64", c40: "#645a6e.#6e6446", c41: "#8c8296.#828ca0", c42: "#e6a0b4.#f0d2a0", c43: "#e6788c.#c8b482", c44: "#aaa0b4.#b4bec8", c45: "#961e14.#6e6446", c46: "#787878.#828ca0", c47: "#828278.#a08c64", c48: "#6e5032.#6e6446", c49: "#b4aaa0.#c8b482", c50: "#e6b450.#c8b482", c51: "#463c64.#8c46a0", c52: "#bebebe.#b4bec8", c53: "#aaa0d2.#b4bec8", c54: "#96823c.#a08c64", c55: "#786e96.#828ca0", c56: "#f0d264.#c8b482", c57: "#3c323c.#5a1e78", c58: "#dc2846.#a08c64", c59: "#d2966e.#c8b482", c60: "#f0d2dc.#fff0c8", c61: "#e6c846.#c8b482", c62: "#963c64.#6e6446", c63: "#6e8c8c.#828ca0", c64: "#bed2d2.#b4bec8", c65: "#e6f0f0.#ffffff", c66: "#0a0a14.#141414", c67: "#a08ca0.#828ca0", c68: "#aa3c78.#a08c64", c69: "#e66eaa.#c8b482", c70: "#f0aac8.#f0d2a0", c71: "#e6dcdc.#fff0c8", c72: "#505050.#6e6446", c73: "#9696aa.#828ca0", c74: "#6e6e78.#6e6446", c75: "#f04646.#a08c64", c76: "#966e3c.#6e6446", c77: "#f0dc78.#f0d2a0", c78: "#bebec8.#b4bec8", c79: "#fffafa.#ffffff" },
388 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c3c6e.#784632", c6: "#141414.#141414", c7: "#78aafa.#ffd250", c8: "#6478b4.#aa9632", c9: "#786450.#643c3c", c10: "#b4a05a.#c87846", c11: "#ffe65a.#ff821e", c12: "#e64650.#e64678", c13: "#963c50.#963c64", c14: "#464664.#464664", c15: "#32323c.#32323c", c16: "#e6aadc.#ffffff", c17: "#783c32.#963c64", c18: "#c8788c.#c87846", c19: "#a05a64.#963c64", c20: "#fa96b4.#c87846", c21: "#e678a0.#e64678", c22: "#0a0a0a.#141414", c23: "#ffc8d2.#ffffff", c24: "#a06e50.#643c3c", c25: "#285afa.#aa9632", c26: "#3246aa.#784632", c27: "#be5078.#e64678", c28: "#963250.#963c64", c29: "#fa82c8.#c87846", c30: "#0a140a.#141414", c31: "#aa3232.#963c64", c32: "#dc5a64.#e64678", c33: "#965064.#963c64", c34: "#be4664.#e64678", c35: "#8c3246.#963c64", c36: "#ff96b4.#c87846", c37: "#aa466e.#963c64", c38: "#822846.#963c64", c39: "#8c2846.#963c64", c40: "#faaabe.#ffffff", c41: "#b43c78.#963c64", c42: "#6e2846.#963c64", c43: "#f082aa.#c87846", c44: "#f096b4.#c87846", c45: "#d25082.#e64678", c46: "#e64682.#e64678", c47: "#8c1e46.#963c64", c48: "#3c0a14.#141414", c49: "#fff0fa.#ffffff", c50: "#dc3c78.#e64678", c51: "#ffaabe.#ffffff", c52: "#ffa0be.#ffffff", c53: "#32468c.#784632", c54: "#46a0dc.#ffd250", c55: "#ff8ca0.#c87846", c56: "#fa78aa.#e64678", c57: "#283c96.#784632", c58: "#fadcfa.#ffffff", c59: "#c878aa.#c87846", c60: "#ffdce6.#ffffff", c61: "#ffd2dc.#ffffff", c62: "#f0b4e6.#ffffff", c63: "#3264aa.#aa9632", c64: "#b43c8c.#963c64", c65: "#a06450.#643c3c", c66: "#fac8d2.#ffffff", c67: "#6e3c32.#963c64", c68: "#e66ea0.#e64678", c69: "#782828.#963c64", c70: "#e6bedc.#ffffff", c71: "#e6648c.#e64678", c72: "#ffc8c8.#ffffff", c73: "#aa5a5a.#963c64", c74: "#c86e8c.#c87846", c75: "#645aff.#aa9632", c76: "#823c6e.#963c64", c77: "#d26e82.#e64678", c78: "#fa8cb4.#c87846", c79: "#ffbebe.#ffffff", c80: "#963c3c.#963c64", c81: "#e678aa.#c87846", c82: "#8c50dc.#aa9632", c83: "#788cdc.#ffd250", c84: "#8c6eb4.#aa9632", c85: "#8caaff.#ffd250" },
389 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#32323c.#32323c", c6: "#646478.#646478", c7: "#141414.#141414", c8: "#464664.#464664", c9: "#464678.#784632", c10: "#78aafa.#ffd250", c11: "#6478b4.#aa9632", c12: "#786450.#643c3c", c13: "#b4a05a.#c87846", c14: "#ffe65a.#ff821e", c15: "#963c50.#963c50", c16: "#e64650.#e64650", c17: "#5a3214.#32323c", c18: "#0a0a0a.#141414", c19: "#dca05a.#c87846", c20: "#c8783c.#c87846", c21: "#a05a5a.#963c50", c22: "#d23c46.#e64650", c23: "#ffaa96.#ff821e", c24: "#ff6e5a.#e64650", c25: "#780a14.#963c50", c26: "#5a2814.#32323c", c27: "#32281e.#32323c", c28: "#b4aa78.#c87846", c29: "#5a501e.#32323c", c30: "#827846.#643c3c", c31: "#d2c88c.#c87846", c32: "#d23246.#e64650", c33: "#e6e6b4.#ffffff", c34: "#a05a1e.#963c50", c35: "#3c3232.#32323c", c36: "#bebebe.#ffd250", c37: "#646464.#646478" },
390 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#505a6e.#6e6e5a", c6: "#c8c8d2.#d2d2be", c7: "#8c96a0.#a0a096", c8: "#3c3c46.#3c3c28", c9: "#000000.#000000", c10: "#326ea0.#a03c32", c11: "#6ebeff.#ff648c", c12: "#505064.#146e50", c13: "#787896.#32826e", c14: "#a0826e.#a0a096", c15: "#64503c.#146e50", c16: "#e6dc82.#d2d2be", c17: "#c8aa78.#a0a096", c18: "#0a0a0a.#000000", c19: "#141414.#000000", c20: "#fff0c8.#ffffff", c21: "#645032.#3c3c28", c22: "#3c6eaa.#a03c32", c23: "#64befa.#ff648c", c24: "#3ca0c8.#a03c32", c25: "#3c3c82.#6e6e5a", c26: "#fffaa0.#d2d2be", c27: "#3c64aa.#a03c32", c28: "#a0e6fa.#d2d2be", c29: "#96d2ff.#ff648c", c30: "#3c3c3c.#3c3c28", c31: "#b4963c.#a0a096", c32: "#323c82.#6e6e5a", c33: "#32a0d2.#a03c32", c34: "#e6dc96.#d2d2be" },
391 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#6e6e78.#828264", c6: "#788296.#a0aa82", c7: "#c8c8d2.#d2d2b4", c8: "#000000.#141414", c9: "#3c4650.#3c3c32", c10: "#a0a0aa.#bec8a0", c11: "#3c3c3c.#0a645a", c12: "#6e6e6e.#287878", c13: "#aaaaaa.#78c8c8", c14: "#8c8c8c.#50a096", c15: "#6ebeff.#ff648c", c16: "#aa3c46.#aa3c46", c17: "#dc6e6e.#dc6e6e", c18: "#8c6e0a.#aa3c46", c19: "#ffe682.#d2d2b4", c20: "#141414.#141414", c21: "#c8a00a.#dc6e6e", c22: "#ffd20a.#dc6e6e", c23: "#a06e0a.#aa3c46", c24: "#d25a3c.#aa3c46", c25: "#ff7850.#dc6e6e", c26: "#dcbe3c.#dc6e6e", c27: "#0a0a0a.#141414", c28: "#965a0a.#aa3c46", c29: "#ffffb4.#ffffff", c30: "#8c3c0a.#aa3c46", c31: "#fafafa.#ffffff", c32: "#c87814.#aa3c46", c33: "#e69632.#dc6e6e", c34: "#963c0a.#aa3c46", c35: "#f0a032.#dc6e6e", c36: "#c8780a.#aa3c46", c37: "#e6e6e6.#ffffff", c38: "#8c640a.#aa3c46", c39: "#fafab4.#ffffff", c40: "#fadc82.#d2d2b4", c41: "#46140a.#0a645a", c42: "#fad20a.#dc6e6e", c43: "#fa6e50.#dc6e6e", c44: "#823c28.#aa3c46", c45: "#dcb43c.#dc6e6e", c46: "#960a14.#aa3c46", c47: "#8c5a0a.#aa3c46", c48: "#96640a.#aa3c46", c49: "#b4961e.#dc6e6e", c50: "#467832.#3c3c32", c51: "#1e460a.#0a645a", c52: "#be780a.#aa3c46", c53: "#64a03c.#287878", c54: "#a07850.#287878", c55: "#78321e.#aa3c46", c56: "#ffdcbe.#d2d2b4", c57: "#fac8a0.#d2d2b4", c58: "#e6b482.#78c8c8", c59: "#fafa8c.#d2d2b4", c60: "#fa9682.#dc6e6e", c61: "#dcdcdc.#d2d2b4", c62: "#324628.#0a645a", c63: "#d2a00a.#dc6e6e", c64: "#96460a.#aa3c46", c65: "#c8c8c8.#d2d2b4", c66: "#be7850.#dc6e6e", c67: "#8c5032.#aa3c46", c68: "#ffbe14.#dc6e6e", c69: "#fff064.#d2d2b4", c70: "#dc960a.#dc6e6e", c71: "#d25a32.#aa3c46", c72: "#e6b48c.#78c8c8", c73: "#bebec8.#d2d2b4", c74: "#643c32.#0a645a", c75: "#c8785a.#dc6e6e", c76: "#965a46.#aa3c46", c77: "#140a0a.#141414", c78: "#f064b4.#dc6e6e" },
392 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#c85a46.#5a786e", c6: "#ff9678.#a0d2be", c7: "#f0783c.#78aaa0", c8: "#783c3c.#14463c", c9: "#1e1e1e.#1e1e1e", c10: "#c8c8c8.#82dc64", c11: "#a0aaa0.#5ab43c", c12: "#828282.#3c9614", c13: "#3c3c32.#3c3c32", c14: "#141414.#1e1e1e", c15: "#8c781e.#14463c", c16: "#b48228.#5a786e", c17: "#b4a046.#5a786e", c18: "#ffe682.#a0d2be", c19: "#82500a.#14463c", c20: "#dcb46e.#a0d2be", c21: "#fadc82.#a0d2be", c22: "#6e5a14.#14463c", c23: "#96781e.#5a786e", c24: "#0a0a0a.#1e1e1e", c25: "#dcb464.#a0d2be", c26: "#f0503c.#78aaa0", c27: "#bea046.#78aaa0", c28: "#a0140a.#14463c", c29: "#fab496.#a0d2be", c30: "#fafafa.#ffffff", c31: "#dcdcdc.#82dc64", c32: "#785a14.#14463c", c33: "#ffffaa.#82dc64", c34: "#fa503c.#78aaa0", c35: "#ffbea0.#a0d2be", c36: "#fa5046.#78aaa0", c37: "#1e1e32.#1e1e1e", c38: "#64461e.#14463c", c39: "#5a3c0a.#3c3c32", c40: "#fafaaa.#82dc64", c41: "#28281e.#1e1e1e", c42: "#a0640a.#5a786e", c43: "#a08250.#5a786e", c44: "#463c3c.#3c3c32", c45: "#781414.#14463c", c46: "#c83c32.#5a786e", c47: "#3c2814.#1e1e1e", c48: "#8c5a0a.#14463c", c49: "#e6be6e.#a0d2be", c50: "#783c0a.#14463c", c51: "#e6c86e.#a0d2be", c52: "#8c783c.#14463c", c53: "#b48c46.#5a786e", c54: "#501e1e.#3c3c32", c55: "#8c7878.#3c9614", c56: "#8c7814.#14463c", c57: "#8c8c8c.#3c9614", c58: "#d2b464.#a0d2be", c59: "#aa821e.#5a786e", c60: "#78500a.#14463c", c61: "#fae682.#a0d2be", c62: "#f05046.#5a786e", c63: "#fabe96.#a0d2be", c64: "#960a0a.#14463c" },
393 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c3c3c.#505050", c6: "#000000.#141414", c7: "#6e7878.#a0a0a0", c8: "#469646.#c85a1e", c9: "#465046.#787878", c10: "#6ec86e.#f0783c", c11: "#787850.#78783c", c12: "#beaa78.#beb478", c13: "#bebedc.#bebedc", c14: "#e6d28c.#e6dc8c", c15: "#ffffa0.#ffffb4", c16: "#96dc82.#ffa064", c17: "#141414.#141414", c18: "#8c5a0a.#78783c", c19: "#787878.#a0a0a0", c20: "#ffe6b4.#ffffb4", c21: "#dcbe82.#e6dc8c", c22: "#fad246.#e6dc8c", c23: "#dca032.#beb478", c24: "#fff0be.#ffffb4", c25: "#fadca0.#e6dc8c", c26: "#dcb450.#beb478", c27: "#fff0b4.#ffffb4", c28: "#fadc8c.#e6dc8c", c29: "#322832.#505050", c30: "#281e1e.#505050", c31: "#0a0a0a.#141414", c32: "#6e283c.#505050", c33: "#965a14.#78783c", c34: "#e6a050.#beb478", c35: "#ffd246.#e6dc8c", c36: "#6e5032.#787878", c37: "#a05a64.#78783c", c38: "#ffe6a0.#ffffb4", c39: "#f0f0a0.#ffffb4", c40: "#f0dc64.#e6dc8c", c41: "#fafafa.#ffffff", c42: "#ffdc64.#e6dc8c", c43: "#786446.#78783c", c44: "#f0be3c.#beb478", c45: "#f0dcb4.#e6dc8c", c46: "#f0a03c.#beb478", c47: "#f0dc96.#e6dc8c", c48: "#dcdcdc.#bebedc", c49: "#dcb46e.#beb478", c50: "#825a0a.#78783c", c51: "#c83c28.#78783c", c52: "#fa785a.#beb478", c53: "#fae6b4.#ffffb4", c54: "#f0dc8c.#e6dc8c", c55: "#a0503c.#78783c", c56: "#be8228.#78783c", c57: "#fff0c8.#ffffb4", c58: "#8c5a28.#78783c", c59: "#fae6aa.#ffffb4", c60: "#fad264.#e6dc8c", c61: "#ffd25a.#e6dc8c", c62: "#dca064.#beb478", c63: "#785a14.#78783c", c64: "#faf0be.#ffffb4", c65: "#dcb464.#beb478", c66: "#e6c88c.#e6dc8c", c67: "#ffbe14.#beb478", c68: "#b48228.#78783c", c69: "#8c500a.#78783c", c70: "#78323c.#787878", c71: "#8c6e1e.#78783c", c72: "#783c3c.#787878", c73: "#a05050.#78783c", c74: "#ffdc50.#e6dc8c", c75: "#d26e78.#beb478", c76: "#e6a0aa.#e6dc8c", c77: "#aa5050.#78783c", c78: "#e6aa50.#beb478", c79: "#966e32.#78783c", c80: "#dc6e6e.#beb478", c81: "#fffaff.#ffffff", c82: "#d2c8d2.#bebedc", c83: "#c8820a.#78783c" },
394 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#505078.#504664", c6: "#82a0c8.#a0a0aa", c7: "#b4c8ff.#c8d2f0", c8: "#000000.#141414", c9: "#645046.#785078", c10: "#f0f0a0.#e6c8e6", c11: "#aaa06e.#a078aa", c12: "#d2c882.#c8a0c8", c13: "#967864.#a07896", c14: "#e6dce6.#e6dce6", c15: "#ff7882.#e67864", c16: "#c85078.#b46e6e", c17: "#32506e.#504664", c18: "#0a0a0a.#141414", c19: "#a0c8ff.#c8d2f0", c20: "#8caad2.#a0a0aa", c21: "#ffffa0.#e6c8e6", c22: "#7878b4.#a0a0aa", c23: "#d2d26e.#c8a0c8", c24: "#d2d2d2.#e6dce6", c25: "#141414.#141414", c26: "#325ab4.#504664", c27: "#0a8cbe.#504664", c28: "#46a096.#a0a0aa", c29: "#143c82.#504664", c30: "#28a0d2.#a0a0aa", c31: "#dc1414.#b46e6e", c32: "#8c0a0a.#785078", c33: "#786e14.#785078", c34: "#ffaaaa.#e67864", c35: "#0aaab4.#a0a0aa", c36: "#2864b4.#504664", c37: "#5a96e6.#a0a0aa", c38: "#3282e6.#a0a0aa", c39: "#144678.#504664", c40: "#6e6e14.#785078", c41: "#a0a03c.#a078aa", c42: "#787814.#785078", c43: "#fa6e6e.#e67864", c44: "#0a646e.#504664", c45: "#0a1e3c.#141414", c46: "#aab43c.#a078aa", c47: "#fafafa.#ffffff", c48: "#641414.#785078", c49: "#320a0a.#141414", c50: "#aadcfa.#c8d2f0", c51: "#b43c50.#b46e6e", c52: "#fa6e82.#e67864", c53: "#6e1e28.#785078", c54: "#50645a.#785078", c55: "#6e968c.#a0a0aa", c56: "#8cc8b4.#a0a0aa", c57: "#645a8c.#504664", c58: "#282846.#785078", c59: "#a0b4dc.#a0a0aa", c60: "#b4b4b4.#a0a0aa", c61: "#7896b4.#a0a0aa", c62: "#78faf0.#c8d2f0", c63: "#bee6f0.#c8d2f0", c64: "#50aac8.#a0a0aa", c65: "#8caadc.#a0a0aa", c66: "#a0c8fa.#c8d2f0", c67: "#aac8ff.#c8d2f0", c68: "#aaaa64.#a078aa", c69: "#b42828.#b46e6e", c70: "#3c82a0.#504664", c71: "#1e4664.#504664", c72: "#781414.#785078", c73: "#3c320a.#785078", c74: "#faffa0.#e6c8e6", c75: "#64643c.#785078", c76: "#dc1e1e.#b46e6e", c77: "#823232.#785078", c78: "#dc5050.#b46e6e", c79: "#dcdc6e.#c8a0c8", c80: "#aaaa3c.#a078aa", c81: "#dcdcdc.#e6dce6", c82: "#ffffaa.#e6c8e6", c83: "#dc4646.#b46e6e", c84: "#e6bed2.#e6dce6", c85: "#d296b4.#c8a0c8", c86: "#82141e.#785078", c87: "#fa6eaa.#e67864", c88: "#f0f08c.#e6c8e6", c89: "#f0aac8.#e6dce6", c90: "#465ac8.#504664", c91: "#3ca0f0.#a0a0aa", c92: "#46b4f0.#a0a0aa", c93: "#283cb4.#504664", c94: "#3c3c46.#785078", c95: "#28506e.#504664", c96: "#dc2828.#b46e6e", c97: "#8c1414.#785078", c98: "#bebebe.#c8a0c8", c99: "#786e0a.#785078", c100: "#6e643c.#785078", c101: "#fafad2.#e6dce6", c102: "#e6dcaa.#e6c8e6", c103: "#b4a06e.#a078aa", c104: "#a0a032.#a078aa" },
395 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#829696.#829696", c6: "#465064.#3c6e50", c7: "#fafaff.#f0e6fa", c8: "#d2c8dc.#dcd2f0", c9: "#000000.#141414", c10: "#a0a0b4.#aaa0be", c11: "#5a82aa.#5aa05a", c12: "#f0dc6e.#f0c86e", c13: "#bea078.#bea046", c14: "#64aae6.#5ad246", c15: "#96d2ff.#82ff8c", c16: "#827850.#96783c", c17: "#6e460a.#96783c", c18: "#0a0a0a.#141414", c19: "#c86e50.#bea046", c20: "#141414.#141414", c21: "#6e4628.#96783c", c22: "#783c0a.#96783c", c23: "#dca078.#bea046", c24: "#ffc882.#f0c86e", c25: "#d2aaa0.#bea046", c26: "#fadcb4.#dcd2f0", c27: "#c87846.#bea046", c28: "#dca06e.#bea046", c29: "#fffac8.#f0e6fa", c30: "#6e3c0a.#96783c", c31: "#fabe82.#f0c86e", c32: "#be6e46.#96783c", c33: "#fafac8.#f0e6fa", c34: "#644628.#3c6e50", c35: "#dcdcdc.#dcd2f0", c36: "#f0dcb4.#dcd2f0", c37: "#d2aa96.#bea046", c38: "#b43c32.#96783c", c39: "#f07864.#bea046", c40: "#f0b48c.#f0c86e", c41: "#faf0c8.#f0e6fa", c42: "#fafafa.#f0e6fa", c43: "#e66e64.#bea046", c44: "#ffaaaa.#dcd2f0", c45: "#e67878.#bea046", c46: "#e6b48c.#bea046", c47: "#ffd2be.#dcd2f0", c48: "#78460a.#96783c", c49: "#fffad2.#f0e6fa", c50: "#b44632.#96783c" },
396 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#505064.#147814", c6: "#141414.#141414", c7: "#d2d2d2.#b4d2b4", c8: "#aaaab4.#8cc88c", c9: "#787882.#46a03c", c10: "#505a50.#645a46", c11: "#463c3c.#463c3c", c12: "#f0e664.#c8c800", c13: "#ffffc8.#fafa00", c14: "#787878.#787864", c15: "#aa283c.#be5a1e", c16: "#64323c.#6e3c3c", c17: "#be3c50.#fa7846", c18: "#5a320a.#6e3c3c", c19: "#3c3c3c.#463c3c", c20: "#a06e6e.#787864", c21: "#c88c5a.#fa7846", c22: "#ffffff.#fafa00", c23: "#e6b48c.#c8c800", c24: "#0a0a0a.#141414", c25: "#a00a0a.#be5a1e", c26: "#e6bea0.#b4d2b4", c27: "#c8c8c8.#b4d2b4", c28: "#5a5a5a.#645a46", c29: "#64461e.#6e3c3c", c30: "#be4632.#fa7846", c31: "#ffe6b4.#fafa00", c32: "#e6be96.#c8c800", c33: "#ff965a.#c8c800", c34: "#ffffd2.#fafa00", c35: "#6e461e.#6e3c3c", c36: "#fac86e.#c8c800", c37: "#d28c5a.#fa7846", c38: "#464646.#463c3c", c39: "#e67878.#fa7846", c40: "#ffaaaa.#b4d2b4" },
397 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#464646.#464646", c6: "#141414.#141414", c7: "#6e6e78.#6e6e78", c8: "#d2dcf0.#d2c88c", c9: "#282828.#282828", c10: "#969696.#a09678", c11: "#326464.#6eaa32", c12: "#28aabe.#6edc28", c13: "#c8aa64.#a09678", c14: "#fffaa0.#ffffff", c15: "#78641e.#464646", c16: "#dcc878.#a09678", c17: "#783c14.#464646", c18: "#f08c46.#a09678", c19: "#ffb450.#a09678", c20: "#c85050.#6e6e78", c21: "#6e641e.#464646", c22: "#faf0a0.#d2c88c", c23: "#6e6e6e.#6e6e78", c24: "#beaa64.#a09678", c25: "#0a0a0a.#141414", c26: "#be9632.#a09678", c27: "#fffffa.#ffffff", c28: "#dcdcd2.#d2c88c", c29: "#6e3c14.#464646", c30: "#be5050.#6e6e78", c31: "#646464.#6e6e78", c32: "#e68c46.#a09678", c33: "#fab450.#a09678", c34: "#505050.#464646", c35: "#d2d2d2.#d2c88c", c36: "#fafaf0.#ffffff", c37: "#645032.#464646", c38: "#78281e.#464646", c39: "#c87846.#a09678", c40: "#f08282.#a09678", c41: "#281428.#282828", c42: "#323232.#282828", c43: "#787864.#6e6e78", c44: "#1e0a0a.#141414", c45: "#fffadc.#ffffff", c46: "#dcd278.#a09678", c47: "#6e5028.#464646", c48: "#e6d2a0.#d2c88c", c49: "#c8b464.#a09678", c50: "#be9664.#a09678", c51: "#78320a.#464646", c52: "#783c0a.#464646", c53: "#c8a078.#a09678", c54: "#be6e50.#6e6e78", c55: "#64461e.#464646", c56: "#ffa06e.#a09678", c57: "#ffc850.#a09678", c58: "#f07832.#a09678", c59: "#d2d2c8.#d2c88c", c60: "#fafafa.#ffffff", c61: "#8c5a28.#464646", c62: "#c84646.#6e6e78", c63: "#ff788c.#a09678", c64: "#fa783c.#a09678", c65: "#141e28.#141414" },
398 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#464646.#464646", c6: "#282828.#282828", c7: "#141414.#141414", c8: "#6e6e78.#6e6e78", c9: "#d2dcf0.#d2c88c", c10: "#a0a0aa.#a09678", c11: "#326464.#50781e", c12: "#28aabe.#6edc28", c13: "#78788c.#645050", c14: "#143c3c.#324614", c15: "#288c96.#6eaa32", c16: "#644628.#464646", c17: "#ffdcaa.#d2c88c", c18: "#d2a08c.#a09678", c19: "#643c1e.#464646", c20: "#0a0a0a.#141414", c21: "#be8c64.#a09678", c22: "#463228.#282828", c23: "#c8505a.#6e6e78", c24: "#aa6e50.#6e6e78", c25: "#a03232.#464646", c26: "#f07832.#6e6e78", c27: "#ffa06e.#a09678", c28: "#aa641e.#6e6e78", c29: "#1e1414.#141414", c30: "#c8c8c8.#d2c88c", c31: "#322828.#282828", c32: "#826e64.#6e6e78", c33: "#64140a.#282828", c34: "#3c140a.#282828", c35: "#3c1e14.#282828", c36: "#281414.#141414", c37: "#dcdcd2.#d2c88c", c38: "#6e6e6e.#6e6e78", c39: "#fffffa.#ffffff", c40: "#321e14.#282828", c41: "#281e14.#282828", c42: "#be321e.#464646", c43: "#fafafa.#ffffff", c44: "#501414.#282828", c45: "#281e1e.#282828", c46: "#322814.#282828", c47: "#fa643c.#6e6e78", c48: "#96641e.#464646", c49: "#e6781e.#6e6e78", c50: "#fae6c8.#d2c88c", c51: "#3c281e.#282828", c52: "#1e1e14.#141414", c53: "#dcbeaa.#a09678", c54: "#c8321e.#464646", c55: "#82460a.#464646", c56: "#321414.#282828", c57: "#3c1e0a.#282828", c58: "#321e1e.#282828", c59: "#463c1e.#282828", c60: "#3c3228.#282828", c61: "#46281e.#282828", c62: "#32281e.#282828", c63: "#5a2814.#282828", c64: "#3c2828.#282828", c65: "#502814.#282828", c66: "#8c4614.#464646", c67: "#fffa96.#d2c88c", c68: "#6e5028.#464646", c69: "#64461e.#464646", c70: "#e6d2a0.#d2c88c", c71: "#f0c878.#a09678", c72: "#c8a078.#a09678", c73: "#be6e50.#6e6e78", c74: "#8c283c.#464646", c75: "#645a5a.#6e6e78", c76: "#c88282.#a09678", c77: "#f0a0aa.#a09678", c78: "#8c5a14.#464646", c79: "#d2a050.#a09678", c80: "#640a0a.#282828", c81: "#f07828.#6e6e78", c82: "#6e5a50.#6e6e78" },
399 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#6e1e3c.#0078c8", c6: "#aa143c.#0ab4d2", c7: "#5a5a78.#644646", c8: "#1e1e32.#1e1e32", c9: "#141414.#141414", c10: "#3c3c50.#463232", c11: "#14b4b4.#aa143c", c12: "#328282.#6e1e3c", c13: "#32323c.#32323c", c14: "#c8503c.#0ab4d2", c15: "#823214.#0078c8", c16: "#f0b45a.#0ab4d2", c17: "#f08228.#0ab4d2", c18: "#0a3c50.#32323c", c19: "#14506e.#463232", c20: "#dc3c14.#0ab4d2", c21: "#0a0a0a.#141414", c22: "#1e788c.#6e1e3c", c23: "#e64614.#0ab4d2", c24: "#c81e1e.#0ab4d2", c25: "#d25046.#0ab4d2", c26: "#28aab4.#aa143c", c27: "#1e7896.#6e1e3c", c28: "#d25014.#0ab4d2", c29: "#b43c1e.#0ab4d2", c30: "#faa050.#0ab4d2", c31: "#f0a014.#0ab4d2", c32: "#f0dc78.#ffffff", c33: "#fad214.#0ab4d2", c34: "#82321e.#0078c8", c35: "#c8c8c8.#ffffff", c36: "#287896.#6e1e3c", c37: "#d2d2d2.#ffffff", c38: "#0a4650.#32323c", c39: "#b43c3c.#0ab4d2", c40: "#fafafa.#ffffff", c41: "#fabe64.#ffffff", c42: "#e63c14.#0ab4d2", c43: "#646464.#644646", c44: "#1e6e8c.#6e1e3c", c45: "#faa014.#0ab4d2", c46: "#3c1e28.#32323c", c47: "#a03250.#0ab4d2", c48: "#ffd214.#0ab4d2", c49: "#dc6478.#0ab4d2", c50: "#f0643c.#0ab4d2", c51: "#dc6e32.#0ab4d2", c52: "#28a0b4.#aa143c", c53: "#fadc96.#ffffff", c54: "#1ea0c8.#aa143c", c55: "#a0a0a0.#644646", c56: "#beb4b4.#ffffff", c57: "#8c0a14.#0ab4d2", c58: "#ffa00a.#0ab4d2", c59: "#ffdc0a.#0ab4d2", c60: "#f07846.#0ab4d2", c61: "#b4788c.#644646", c62: "#0a2832.#1e1e32", c63: "#e68c46.#0ab4d2", c64: "#ffaa32.#0ab4d2", c65: "#dc823c.#0ab4d2", c66: "#0a5a64.#463232", c67: "#82643c.#0078c8", c68: "#6e6e6e.#644646", c69: "#46140a.#141414", c70: "#dcd2d2.#ffffff", c71: "#f05a6e.#0ab4d2", c72: "#c83246.#0ab4d2", c73: "#dc963c.#0ab4d2", c74: "#b4b4b4.#ffffff", c75: "#dcdce6.#ffffff", c76: "#787878.#644646", c77: "#461e0a.#141414", c78: "#aa3c28.#0ab4d2", c79: "#3c505a.#463232", c80: "#d25032.#0ab4d2", c81: "#fae6fa.#ffffff", c82: "#8c0a1e.#0ab4d2", c83: "#828282.#644646", c84: "#822814.#0078c8", c85: "#f0be96.#ffffff", c86: "#f09650.#0ab4d2", c87: "#d2643c.#0ab4d2", c88: "#0a7882.#6e1e3c", c89: "#6e2832.#0078c8", c90: "#280a0a.#141414", c91: "#f096a0.#ffffff", c92: "#a04650.#0ab4d2", c93: "#8c8c8c.#644646", c94: "#145064.#463232", c95: "#e63c0a.#0ab4d2", c96: "#dcb46e.#644646", c97: "#faa00a.#0ab4d2", c98: "#148cb4.#aa143c", c99: "#ffd20a.#0ab4d2", c100: "#c88c3c.#0ab4d2" },
400 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#78a046.#78aa3c", c6: "#b4f078.#f0fa78", c7: "#3c5a28.#3c5a1e", c8: "#000000.#000000", c9: "#78d25a.#a0dc50", c10: "#968200.#a07800", c11: "#fff06e.#fafa78", c12: "#e6be3c.#e6d23c", c13: "#1e5046.#783c82", c14: "#327864.#aa64be", c15: "#469678.#b478dc", c16: "#143c78.#783c82", c17: "#ffffff.#fafa78", c18: "#5082c8.#b478dc", c19: "#b4aabe.#f0fa78", c20: "#646464.#aa64be", c21: "#141414.#000000", c22: "#8ca0e6.#b478dc", c23: "#466496.#aa64be", c24: "#7882b4.#b478dc", c25: "#1e3250.#783c82", c26: "#3c5a82.#aa64be", c27: "#aab4dc.#f0fa78", c28: "#ff6e6e.#e6d23c", c29: "#ffbeaa.#fafa78", c30: "#be5a46.#a07800", c31: "#d2d2d2.#f0fa78", c32: "#0a0a0a.#000000", c33: "#aa3232.#a07800", c34: "#c8c8c8.#f0fa78", c35: "#3c78aa.#b478dc", c36: "#dcdcdc.#f0fa78", c37: "#783c50.#3c5a1e", c38: "#143c6e.#783c82", c39: "#5082be.#b478dc", c40: "#fafafa.#fafa78", c41: "#b4aab4.#f0fa78", c42: "#1e2850.#783c82", c43: "#fab4aa.#fafa78", c44: "#fa6464.#e6d23c", c45: "#b45a46.#a07800", c46: "#3c6eaa.#b478dc" },
401 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5a9650.#78aa1e", c6: "#3c5028.#326e00", c7: "#a0dc78.#c8ff78", c8: "#000000.#141414", c9: "#78c85a.#b4dc50", c10: "#a0b4a0.#c8aa5a", c11: "#d2e6b4.#ffe678", c12: "#a03246.#823ca0", c13: "#ffa0be.#dc96ff", c14: "#fa5a82.#b46ed2", c15: "#285a96.#3c3c46", c16: "#5096d2.#6e6478", c17: "#64beff.#a096a0", c18: "#c8a01e.#c8a01e", c19: "#fae646.#fac83c", c20: "#785a0a.#326e00", c21: "#c8a014.#c8a01e", c22: "#fffac8.#ffe678", c23: "#fac832.#fac83c", c24: "#141414.#141414", c25: "#a0780a.#c8a01e", c26: "#463c0a.#326e00", c27: "#dca050.#c8a01e", c28: "#b4780a.#c8a01e", c29: "#6e6e6e.#78aa1e", c30: "#fad246.#fac83c", c31: "#fafafa.#ffe678", c32: "#3c3c3c.#326e00", c33: "#8c5a0a.#823ca0", c34: "#a0643c.#823ca0", c35: "#ffffff.#ffe678", c36: "#5a3c0a.#326e00", c37: "#d2a00a.#c8a01e" },
402 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#c8d2e6.#c8d2e6", c6: "#5a5a64.#5a5a64", c7: "#141414.#141414", c8: "#783ca0.#e6c814", c9: "#966ee6.#fff06e", c10: "#643282.#c8a00a", c11: "#c8b4ff.#fffab4", c12: "#c8b400.#28aadc", c13: "#8c6e1e.#3c78a0", c14: "#ffdc0a.#64d2f0", c15: "#46326e.#8c6e28", c16: "#143c78.#8c6e28", c17: "#787878.#5a5a64", c18: "#5082c8.#fff06e", c19: "#505050.#5a5a64", c20: "#3c78aa.#5a5a64", c21: "#bebebe.#c8d2e6", c22: "#a0a0a0.#fff06e", c23: "#3c5a82.#5a5a64", c24: "#d2d2dc.#c8d2e6", c25: "#142850.#8c6e28", c26: "#8ca0e6.#fff06e", c27: "#0a0a0a.#141414", c28: "#1e3c64.#8c6e28", c29: "#505a82.#5a5a64", c30: "#7882c8.#fff06e", c31: "#1e3264.#8c6e28", c32: "#b4bee6.#c8d2e6", c33: "#aaaaaa.#c8d2e6" },
403 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#826e5a.#82506e", c6: "#c8a078.#d278a0", c7: "#f0dca0.#faaaa0", c8: "#141414.#141414", c9: "#b47846.#be9678", c10: "#503c3c.#503c3c", c11: "#8c5a3c.#a06e78", c12: "#783c3c.#b4a0a0", c13: "#ff8ca0.#d2c8c8", c14: "#c85a78.#c8b4be", c15: "#3c323c.#3c323c", c16: "#a0a0a0.#d278a0", c17: "#787878.#82506e", c18: "#d2d2dc.#faaaa0", c19: "#bebebe.#faaaa0", c20: "#505050.#503c3c", c21: "#fafafa.#ffffff", c22: "#143c78.#3c323c", c23: "#3c5a82.#503c3c", c24: "#5082c8.#82506e", c25: "#8ca0e6.#d278a0", c26: "#969696.#d278a0", c27: "#fffffa.#ffffff", c28: "#1e3c64.#3c323c", c29: "#0a0a0a.#141414", c30: "#285aaa.#3c323c", c31: "#0a3c8c.#3c323c", c32: "#1e3c5a.#3c323c", c33: "#141446.#141414", c34: "#3296c8.#82506e", c35: "#6ebee6.#d278a0", c36: "#788282.#82506e", c37: "#b4b4b4.#d278a0", c38: "#505a82.#82506e", c39: "#3c78aa.#82506e", c40: "#b4bee6.#faaaa0", c41: "#7882c8.#82506e", c42: "#8c3c14.#b4a0a0", c43: "#f0c83c.#d278a0", c44: "#b4781e.#be9678", c45: "#a0bec8.#d278a0", c46: "#d29628.#be9678", c47: "#788ca0.#82506e", c48: "#283278.#3c323c", c49: "#46280a.#3c323c", c50: "#1e1e5a.#3c323c" },
404 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#786446.#a0783c", c6: "#5a463c.#6e503c", c7: "#f0d2b4.#ffd2a0", c8: "#000000.#141414", c9: "#c8a082.#e6aa6e", c10: "#96b478.#e66414", c11: "#c8c896.#ffa06e", c12: "#82a078.#d23c0a", c13: "#faf0d2.#fffabe", c14: "#506e3c.#960a00", c15: "#aa8c14.#a0783c", c16: "#ffe628.#e6aa6e", c17: "#825a14.#a0783c", c18: "#5a3c0a.#6e503c", c19: "#141414.#141414", c20: "#c8be1e.#e66414", c21: "#aa8228.#a0783c", c22: "#fafaa0.#ffd2a0", c23: "#82640a.#a0783c", c24: "#8c5a0a.#a0783c", c25: "#643c0a.#6e503c", c26: "#ffe60a.#e6aa6e", c27: "#d2be0a.#e6aa6e", c28: "#b4820a.#a0783c", c29: "#dcd282.#ffa06e", c30: "#0a0a0a.#141414", c31: "#8c780a.#a0783c", c32: "#64460a.#6e503c", c33: "#be7828.#a0783c", c34: "#fae628.#e6aa6e", c35: "#fafa96.#ffd2a0", c36: "#dcbe14.#e6aa6e", c37: "#dcd28c.#ffa06e", c38: "#82500a.#a0783c", c39: "#501e0a.#6e503c", c40: "#b42814.#a0783c", c41: "#d2be1e.#e6aa6e", c42: "#fadc28.#e6aa6e", c43: "#c8b41e.#e6aa6e", c44: "#f0f0a0.#ffd2a0", c45: "#967878.#d23c0a", c46: "#46323c.#6e503c", c47: "#64463c.#6e503c", c48: "#d2b450.#e6aa6e" },
405 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#645a8c.#1e7878", c6: "#000000.#14283c", c7: "#a0aad2.#82c8d2", c8: "#8282aa.#64aab4", c9: "#3c4678.#144664", c10: "#7878a0.#328c96", c11: "#14325a.#003250", c12: "#3c8caa.#3c8caa", c13: "#3c78aa.#3c78aa", c14: "#78b4d2.#78b4d2", c15: "#b48c00.#b49600", c16: "#e6be50.#dcbe3c", c17: "#8c7814.#b49600", c18: "#64460a.#b49600", c19: "#fff028.#dcbe3c", c20: "#141414.#14283c", c21: "#5a5a5a.#144664", c22: "#d2be0a.#b49600", c23: "#dcdcdc.#82c8d2", c24: "#ffffff.#82c8d2", c25: "#b4b4b4.#82c8d2", c26: "#e63c28.#b49600", c27: "#5a3c0a.#003250", c28: "#ffbec8.#82c8d2", c29: "#c8be1e.#dcbe3c", c30: "#64500a.#b49600", c31: "#787878.#328c96", c32: "#ffe628.#dcbe3c", c33: "#c8c8c8.#82c8d2", c34: "#fafafa.#82c8d2", c35: "#827814.#b49600", c36: "#fafaa0.#dcbe3c", c37: "#dcbe0a.#b49600", c38: "#ffffbe.#82c8d2", c39: "#0a0a0a.#14283c", c40: "#aa8228.#b49600", c41: "#b47882.#64aab4", c42: "#e6e6e6.#82c8d2", c43: "#78500a.#b49600", c44: "#aa7828.#b49600", c45: "#825a14.#b49600", c46: "#a07828.#b49600", c47: "#c83228.#b49600", c48: "#8c1e14.#b49600", c49: "#8c8c8c.#64aab4", c50: "#fafa78.#dcbe3c", c51: "#d2b40a.#b49600", c52: "#503246.#144664", c53: "#a07878.#328c96", c54: "#6e4646.#144664" },
406 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c8c5a.#1e828c", c6: "#5ab478.#5ab4aa", c7: "#96e6aa.#8cdcff", c8: "#5a825a.#647850", c9: "#c8e6be.#dce6aa", c10: "#141414.#141414", c11: "#6e6428.#c86496", c12: "#a0a032.#dca096", c13: "#e6dc78.#fadcb4", c14: "#a0aa8c.#aaaa78", c15: "#963246.#963246", c16: "#32643c.#326478", c17: "#c83c50.#c83c50", c18: "#b4c8a0.#c8c896", c19: "#785a0a.#c86496", c20: "#ff96aa.#fadcb4", c21: "#fffaaa.#dce6aa", c22: "#5a5a5a.#647850", c23: "#dcdcdc.#dce6aa", c24: "#fff014.#fadcb4", c25: "#b4b4b4.#c8c896", c26: "#ffbec8.#dce6aa", c27: "#5a3c0a.#c86496", c28: "#c8b414.#dca096", c29: "#787878.#647850", c30: "#ffe628.#fadcb4", c31: "#c8be1e.#dca096", c32: "#0a0a0a.#141414", c33: "#c8c8c8.#dce6aa", c34: "#f0f0f0.#ffffff", c35: "#ffb4d2.#dce6aa", c36: "#f082b4.#c8c896", c37: "#b48228.#dca096", c38: "#d2b450.#fadcb4", c39: "#fafaa0.#fadcb4", c40: "#50320a.#c86496", c41: "#d2b414.#dca096", c42: "#827814.#c86496", c43: "#fafafa.#ffffff", c44: "#aa8228.#dca096", c45: "#825a14.#c86496", c46: "#fafa78.#fadcb4", c47: "#b4b46e.#aaaa78", c48: "#825032.#c86496", c49: "#ffa0e6.#dce6aa", c50: "#786e0a.#c86496", c51: "#fff028.#fadcb4", c52: "#d2be0a.#dca096", c53: "#786e14.#c86496", c54: "#5a320a.#c86496", c55: "#d2be14.#dca096", c56: "#fff00a.#fadcb4", c57: "#fffaa0.#fadcb4", c58: "#6e5a0a.#c86496", c59: "#fae614.#fadcb4", c60: "#d2b40a.#dca096", c61: "#3c1e0a.#141414", c62: "#82640a.#c86496", c63: "#be820a.#dca096", c64: "#78460a.#c86496", c65: "#96641e.#c86496", c66: "#faf0aa.#dce6aa", c67: "#46323c.#326478", c68: "#c8aaaa.#c8c896", c69: "#967878.#aaaa78", c70: "#64463c.#c86496", c71: "#d2d2d2.#dce6aa" },
407 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3ca064.#1e828c", c6: "#5ab478.#5ab4aa", c7: "#327846.#326478", c8: "#647864.#647850", c9: "#c8dcb4.#dce6aa", c10: "#a0be8c.#aaaa78", c11: "#141414.#141414", c12: "#82dca0.#8cdcff", c13: "#e6ffdc.#ffffff", c14: "#b43c3c.#aa3c50", c15: "#783c3c.#821446", c16: "#284650.#326478", c17: "#aad2c8.#dce6aa", c18: "#96bebe.#8cdcff", c19: "#6e501e.#821446", c20: "#0a0a0a.#141414", c21: "#78a0a0.#5ab4aa", c22: "#aaa05a.#aaaa78", c23: "#f0e68c.#dce6aa", c24: "#5a786e.#647850", c25: "#c8be64.#aaaa78", c26: "#fafafa.#ffffff", c27: "#f05050.#aa3c50", c28: "#b40a0a.#aa3c50", c29: "#8cb4b4.#aaaa78", c30: "#ff828c.#aaaa78", c31: "#e65050.#aa3c50", c32: "#d2d2d2.#dce6aa", c33: "#32463c.#326478", c34: "#648c8c.#647850", c35: "#46645a.#326478", c36: "#d2be64.#aaaa78", c37: "#6e6446.#647850", c38: "#e6d2b4.#dce6aa", c39: "#b4a082.#aaaa78", c40: "#d2bea0.#dce6aa", c41: "#5a7864.#647850", c42: "#aad2be.#dce6aa", c43: "#6ea0a0.#5ab4aa", c44: "#fa828c.#aaaa78" },
408 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#788c78.#a0783c", c6: "#141414.#141414", c7: "#96b4a0.#c8b48c", c8: "#dce6f0.#fafac8", c9: "#465a50.#6e4600", c10: "#3c783c.#c86428", c11: "#50a046.#f0961e", c12: "#144614.#a0280a", c13: "#c8c8d2.#c8c8d2", c14: "#aa6e14.#5a8214", c15: "#e68200.#78be00", c16: "#827828.#5a8214", c17: "#503c0a.#a0280a", c18: "#f0e68c.#c8c8d2", c19: "#644682.#6e4600", c20: "#c8be64.#c8b48c", c21: "#6e3282.#6e4600", c22: "#0a0a0a.#141414", c23: "#a08cc8.#c8b48c", c24: "#8c78b4.#c8b48c", c25: "#bea0e6.#c8c8d2", c26: "#aaa046.#5a8214", c27: "#d2be64.#c8b48c", c28: "#8c64b4.#a0783c", c29: "#a082d2.#c8b48c", c30: "#c8bee6.#c8c8d2", c31: "#c8dcf0.#fafac8", c32: "#c80a0a.#5a8214", c33: "#a03c78.#a0783c", c34: "#5a3c0a.#a0280a", c35: "#8c781e.#5a8214", c36: "#d2be5a.#c8b48c", c37: "#d2bee6.#c8c8d2", c38: "#6e468c.#a0783c", c39: "#9678b4.#c8b48c", c40: "#d2dcf0.#fafac8", c41: "#c8a0e6.#c8c8d2", c42: "#3c325a.#6e4600", c43: "#b43c82.#a0783c", c44: "#464664.#6e4600", c45: "#e60a0a.#5a8214", c46: "#8c1e1e.#5a8214", c47: "#b48cd2.#c8c8d2", c48: "#d21e1e.#5a8214", c49: "#dc6464.#5a8214", c50: "#323246.#6e4600", c51: "#1e1e1e.#141414", c52: "#1e1e28.#141414", c53: "#a08cd2.#c8b48c", c54: "#821e1e.#5a8214", c55: "#787882.#a0783c", c56: "#505050.#6e4600", c57: "#d2d2e6.#fafac8", c58: "#969696.#c8b48c", c59: "#faffff.#ffffff", c60: "#787878.#a0783c", c61: "#b496dc.#c8c8d2", c62: "#b4bec8.#c8c8d2", c63: "#8c6eb4.#a0783c", c64: "#826e28.#5a8214", c65: "#c8b464.#c8b48c", c66: "#dcc8fa.#fafac8", c67: "#e6dc8c.#c8c8d2", c68: "#ff6464.#78be00", c69: "#be0a0a.#5a8214", c70: "#963c78.#a0783c", c71: "#c8dce6.#fafac8", c72: "#463264.#6e4600", c73: "#fafafa.#ffffff", c74: "#282828.#141414", c75: "#f08cb4.#c8c8d2", c76: "#c8b4dc.#c8c8d2", c77: "#786450.#6e4600", c78: "#e6d2be.#c8c8d2", c79: "#b4a082.#c8b48c" },
409 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#8c7832.#82963c", c6: "#1e1e1e.#1e1e1e", c7: "#dcbe82.#e6dc78", c8: "#503c14.#3c501e", c9: "#141414.#141414", c10: "#c8a05a.#c8c846", c11: "#3c3c46.#3c3c46", c12: "#b4b4be.#b4b4be", c13: "#505064.#505064", c14: "#c87878.#3c96a0", c15: "#465a6e.#505064", c16: "#a0b4b4.#b4b4be", c17: "#0a0a0a.#141414", c18: "#828c96.#b4b4be", c19: "#501e14.#3c501e", c20: "#c8d2dc.#b4b4be", c21: "#e6d278.#e6dc78", c22: "#d28c50.#c8c846", c23: "#32326e.#3c3c46", c24: "#827828.#82963c", c25: "#3c5064.#505064", c26: "#647882.#505064", c27: "#aabedc.#b4b4be", c28: "#faf0a0.#e6dc78", c29: "#aaa03c.#c8c846", c30: "#aaa046.#c8c846", c31: "#d2c864.#e6dc78", c32: "#503c0a.#3c501e", c33: "#6478a0.#505064", c34: "#8296be.#b4b4be", c35: "#c8c864.#e6dc78", c36: "#283c3c.#3c3c46", c37: "#fafaff.#b4b4be", c38: "#aa1414.#3c501e", c39: "#f0323c.#3c96a0", c40: "#320a0a.#141414", c41: "#465064.#505064", c42: "#d2dcf0.#b4b4be", c43: "#aa2864.#3c96a0", c44: "#ffffff.#b4b4be", c45: "#be0a0a.#3c501e", c46: "#c8dcf0.#b4b4be", c47: "#ff463c.#3c96a0", c48: "#e66482.#3c96a0", c49: "#c86450.#3c96a0", c50: "#e6e6f0.#b4b4be", c51: "#fae682.#e6dc78", c52: "#f0e682.#e6dc78", c53: "#a03c28.#82963c", c54: "#faaaa0.#e6dc78", c55: "#64788c.#505064", c56: "#8c5a3c.#82963c", c57: "#464664.#505064", c58: "#32323c.#3c3c46", c59: "#f0e664.#e6dc78", c60: "#c8a03c.#c8c846", c61: "#8c5a28.#82963c", c62: "#be1e1e.#82963c", c63: "#788ca0.#b4b4be", c64: "#50460a.#3c501e", c65: "#96b4c8.#b4b4be", c66: "#fafafa.#b4b4be", c67: "#ff4632.#3c96a0", c68: "#6e640a.#3c501e", c69: "#786450.#82963c", c70: "#e6d2be.#b4b4be", c71: "#b4a082.#c8c846", c72: "#d278aa.#3c96a0", c73: "#b4466e.#3c96a0", c74: "#826e28.#82963c", c75: "#c8dcdc.#b4b4be", c76: "#50505a.#505064", c77: "#505050.#505064" },
410 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#8c7832.#5a3c32", c6: "#503c14.#3c2814", c7: "#c8a05a.#785a3c", c8: "#dcbe82.#826e50", c9: "#282832.#e6d25a", c10: "#b4b4be.#b4b4be", c11: "#14141e.#a0965a", c12: "#141414.#141414", c13: "#5a5a6e.#5a5a6e", c14: "#c87878.#6e78a0", c15: "#f096a0.#8ca0e6", c16: "#c8c8c8.#c8c8c8", c17: "#d2646e.#6e78a0", c18: "#b43c32.#5a3c32", c19: "#781e0a.#3c2814", c20: "#e68c96.#8ca0e6", c21: "#0a0a0a.#141414", c22: "#aa783c.#5a3c32", c23: "#5a3c0a.#3c2814", c24: "#d2be64.#826e50", c25: "#fae678.#826e50", c26: "#78c850.#5a3c32", c27: "#aaf096.#c8c8c8", c28: "#64a03c.#5a3c32", c29: "#966e3c.#5a3c32", c30: "#3c6e14.#3c2814", c31: "#fff0a0.#826e50", c32: "#e6be82.#826e50", c33: "#fff0aa.#826e50", c34: "#fafafa.#ffffff", c35: "#5a320a.#3c2814", c36: "#28460a.#3c2814", c37: "#3c6e0a.#3c2814", c38: "#64aa3c.#5a3c32", c39: "#b43c28.#5a3c32", c40: "#dc646e.#6e78a0" },
411 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#323232.#282846", c6: "#505050.#464682", c7: "#141414.#141414", c8: "#aa0000.#be8228", c9: "#ff0000.#fadc28", c10: "#5a0000.#78461e", c11: "#8c5a1e.#646464", c12: "#ffdc78.#d2d2d2", c13: "#faaa28.#c8c8c8", c14: "#c88214.#8c8c8c", c15: "#dcdcdc.#ffffff", c16: "#5aa0a0.#464682", c17: "#287882.#464682", c18: "#8cc8c8.#ffffff", c19: "#b4e6f0.#ffffff", c20: "#0a0a0a.#141414", c21: "#d2c8c8.#ffffff", c22: "#82280a.#646464", c23: "#8cc8d2.#ffffff", c24: "#5aaaa0.#464682", c25: "#b4faf0.#ffffff", c26: "#96d2c8.#ffffff", c27: "#3c7864.#464682", c28: "#64280a.#78461e", c29: "#be6e0a.#8c8c8c", c30: "#d29650.#c8c8c8", c31: "#286e82.#464682", c32: "#c87828.#8c8c8c", c33: "#e6aa5a.#c8c8c8", c34: "#ffd26e.#d2d2d2", c35: "#d2d2d2.#ffffff", c36: "#d27828.#8c8c8c", c37: "#ffe6a0.#d2d2d2", c38: "#64463c.#464682", c39: "#ffdc6e.#d2d2d2", c40: "#be640a.#8c8c8c", c41: "#c8c8c8.#ffffff", c42: "#46a08c.#464682", c43: "#aaf0f0.#ffffff", c44: "#82d2c8.#ffffff", c45: "#326450.#464682", c46: "#78320a.#646464", c47: "#28140a.#141414", c48: "#c86e0a.#8c8c8c", c49: "#c8bebe.#ffffff", c50: "#50140a.#78461e", c51: "#fafafa.#ffffff", c52: "#a06428.#646464", c53: "#dcaa5a.#c8c8c8", c54: "#dca046.#c8c8c8", c55: "#8c280a.#be8228", c56: "#d28c50.#8c8c8c", c57: "#b4640a.#8c8c8c", c58: "#fad25a.#d2d2d2", c59: "#f01e3c.#fadc28", c60: "#5aa096.#464682", c61: "#6ebeb4.#ffffff" },
412 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#78500a.#64640a", c6: "#141414.#141414", c7: "#fadc3c.#dce650", c8: "#c8aa0a.#bebe14", c9: "#0a3264.#3c145a", c10: "#828c50.#786446", c11: "#dcdcf0.#dcdcf0", c12: "#646ee6.#be46dc", c13: "#325ac8.#7832c8", c14: "#96640a.#64640a", c15: "#6e3c14.#64640a", c16: "#d2a03c.#bebe14", c17: "#b48c28.#bebe14", c18: "#fafafa.#dcdcf0", c19: "#fad232.#dce650", c20: "#fafa8c.#dce650", c21: "#e6463c.#bebe14", c22: "#faaaa0.#dcdcf0", c23: "#a06e28.#64640a", c24: "#785028.#64640a", c25: "#5a3c0a.#64640a", c26: "#dcaa64.#dce650", c27: "#c88228.#bebe14", c28: "#46280a.#141414", c29: "#aa6e1e.#64640a", c30: "#ffffff.#dcdcf0", c31: "#0a0a0a.#141414", c32: "#e6b450.#dce650", c33: "#f0aa46.#dce650", c34: "#d2a050.#bebe14", c35: "#643c0a.#64640a", c36: "#784614.#64640a", c37: "#ffc8d2.#dcdcf0", c38: "#ff4682.#786446", c39: "#ff8caa.#dcdcf0", c40: "#bea00a.#bebe14", c41: "#f0c80a.#bebe14", c42: "#dcb428.#bebe14", c43: "#143c6e.#3c145a", c44: "#fae65a.#dce650", c45: "#c8c8c8.#dcdcf0", c46: "#8c780a.#64640a", c47: "#dca082.#dce650", c48: "#c8c8d2.#dcdcf0", c49: "#6e1432.#64640a", c50: "#0a326e.#3c145a" },
413 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#143c1e.#143c3c", c6: "#00b45a.#008cb4", c7: "#141414.#141414", c8: "#5a5a5a.#465a78", c9: "#b4bebe.#b4bec8", c10: "#1e6e3c.#1e5a6e", c11: "#8c8c8c.#788ca0", c12: "#3c3c3c.#3c3c6e", c13: "#f0f0f0.#f0f0f0", c14: "#c8c8c8.#c8c8c8", c15: "#b48c3c.#c86e32", c16: "#f0be46.#f08c46", c17: "#644632.#3c3c6e", c18: "#a07832.#c86e32", c19: "#0a0a0a.#141414", c20: "#e6e632.#f08c46", c21: "#ffe66e.#f08c46", c22: "#b43c46.#c86e32", c23: "#782828.#3c3c6e", c24: "#d2c850.#f08c46", c25: "#f0a0aa.#c8c8c8", c26: "#3ca050.#1e5a6e", c27: "#0a5a32.#1e5a6e", c28: "#fffaaa.#f0f0f0", c29: "#a0dc82.#b4bec8", c30: "#c86e82.#788ca0", c31: "#6ec850.#788ca0", c32: "#3caa5a.#008cb4", c33: "#f0323c.#c86e32", c34: "#a02828.#465a78", c35: "#0a643c.#1e5a6e", c36: "#64c850.#788ca0", c37: "#503c5a.#465a78", c38: "#ffffff.#f0f0f0", c39: "#dcc8dc.#c8c8c8", c40: "#c8a0c8.#b4bec8", c41: "#fae6dc.#f0f0f0", c42: "#966ea0.#788ca0", c43: "#c88cc8.#b4bec8", c44: "#d2aad2.#c8c8c8", c45: "#bebebe.#b4bec8", c46: "#d26482.#788ca0", c47: "#640a0a.#141414", c48: "#d264d2.#b4bec8", c49: "#821e82.#465a78" },
414 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#323c28.#3c3c28", c6: "#646e46.#786e46", c7: "#46503c.#5a503c", c8: "#000000.#000000", c9: "#96a05a.#c8b478", c10: "#6e7846.#8c7846", c11: "#c80000.#c82878", c12: "#b4b4d2.#b4b4d2", c13: "#640000.#46143c", c14: "#82b41e.#a05082", c15: "#d2e696.#ffff96", c16: "#aabe64.#c8be64", c17: "#6e9632.#783c5a", c18: "#645032.#5a503c", c19: "#141414.#000000", c20: "#145a3c.#3c3c28", c21: "#a07832.#8c7846", c22: "#8cc878.#c8be64", c23: "#46a06e.#8c7846", c24: "#645028.#5a503c", c25: "#14643c.#3c3c28", c26: "#0a0a0a.#000000", c27: "#46a078.#8c7846", c28: "#a07828.#8c7846", c29: "#0a6432.#3c3c28", c30: "#f0d26e.#ffff96", c31: "#faf096.#ffff96", c32: "#dcbe50.#c8be64", c33: "#82140a.#46143c", c34: "#c85a1e.#c82878", c35: "#f08c50.#c8be64", c36: "#b4f0aa.#ffff96", c37: "#96d282.#c8be64", c38: "#bec8c8.#b4b4d2", c39: "#782828.#46143c", c40: "#c86e82.#c8b478", c41: "#dcaa50.#c8be64", c42: "#fafafa.#ffffff", c43: "#f0a0aa.#b4b4d2", c44: "#f0d264.#ffff96", c45: "#b4e6a0.#ffff96" },
415 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#324628.#463c3c", c6: "#468c46.#788c46", c7: "#141414.#141414", c8: "#3c6e3c.#64643c", c9: "#787878.#505050", c10: "#5a5a50.#3c3c3c", c11: "#640000.#0a3c5a", c12: "#dc3c3c.#78bee6", c13: "#3c3c3c.#282828", c14: "#b41e1e.#2896d2", c15: "#a0a0a0.#a0a0a0", c16: "#c86e6e.#c86e6e", c17: "#787878.#787878", c18: "#f0b4b4.#f0b4b4", c19: "#82d2fa.#a0a0a0", c20: "#6eb4e6.#a0a0a0", c21: "#6e1414.#0a3c5a", c22: "#b4281e.#2896d2", c23: "#ff5046.#78bee6", c24: "#3c96aa.#505050", c25: "#1e5082.#3c3c3c", c26: "#0a0a0a.#141414", c27: "#ffc8be.#f0b4b4", c28: "#145082.#282828", c29: "#82823c.#3c3c3c", c30: "#50501e.#463c3c", c31: "#b42814.#2896d2", c32: "#6e0a0a.#0a3c5a", c33: "#d2c896.#f0b4b4", c34: "#b4aa78.#a0a0a0", c35: "#d2d2d2.#f0b4b4", c36: "#505014.#463c3c", c37: "#64b4dc.#a0a0a0", c38: "#82d2f0.#a0a0a0", c39: "#641414.#0a3c5a", c40: "#fafafa.#ffffff", c41: "#3c8caa.#505050", c42: "#fabeb4.#f0b4b4", c43: "#fa5046.#78bee6", c44: "#d2be8c.#f0b4b4", c45: "#b4aa6e.#a0a0a0", c46: "#4696aa.#505050", c47: "#641428.#0a3c5a", c48: "#aa1e46.#2896d2", c49: "#f0bec8.#f0b4b4", c50: "#dc5082.#c86e6e", c51: "#50505a.#3c3c3c", c52: "#bebebe.#a0a0a0", c53: "#786e78.#505050", c54: "#a096a0.#a0a0a0", c55: "#828246.#505050" },
416 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#146e64.#1e5046", c6: "#004650.#141e1e", c7: "#82c8c8.#96bebe", c8: "#14141e.#14141e", c9: "#28828c.#3c465a", c10: "#288c8c.#3c7878", c11: "#5aaaa0.#6ea096", c12: "#146e78.#283c3c", c13: "#fff0a0.#d2ff3c", c14: "#6e3c00.#503c14", c15: "#c8a050.#b49664", c16: "#a07828.#826e3c", c17: "#dcc896.#b4dc1e", c18: "#821414.#503c14", c19: "#0a0a0a.#14141e", c20: "#1e5082.#283c3c", c21: "#ffffff.#d2ff3c", c22: "#ffbeaa.#b4dc1e", c23: "#3c96aa.#3c7878", c24: "#a0dcf0.#96bebe", c25: "#b4281e.#503c14", c26: "#fa3c50.#b49664", c27: "#3c141e.#14141e", c28: "#6eb4e6.#96bebe", c29: "#82c8e6.#96bebe", c30: "#dc3228.#826e3c", c31: "#50505a.#1e5046", c32: "#a096a0.#96bebe", c33: "#141414.#14141e", c34: "#d2323c.#826e3c", c35: "#3c8caa.#3c7878", c36: "#64b4dc.#96bebe", c37: "#82c8dc.#96bebe", c38: "#bebebe.#b4dc1e", c39: "#64b4e6.#96bebe", c40: "#f03c50.#b49664", c41: "#fafafa.#d2ff3c", c42: "#fab4aa.#b4dc1e", c43: "#0a1428.#14141e", c44: "#6e6478.#3c465a", c45: "#786e78.#6ea096", c46: "#d2d2d2.#b4dc1e", c47: "#464650.#1e5046", c48: "#142846.#141e1e", c49: "#3c5064.#1e5046", c50: "#b4b4b4.#b4dc1e", c51: "#50501e.#503c14", c52: "#82823c.#826e3c", c53: "#968ca0.#6ea096", c54: "#b4aa78.#b49664", c55: "#e6d2a0.#b4dc1e", c56: "#a096aa.#96bebe", c57: "#323c46.#141e1e", c58: "#4696aa.#6ea096", c59: "#82d2e6.#96bebe", c60: "#fa4650.#b49664", c61: "#641428.#503c14", c62: "#dc5082.#b49664", c63: "#f0bec8.#b4dc1e", c64: "#aa1e46.#826e3c", c65: "#828246.#826e3c" },
417 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#3c3c3c.#643c3c", c7: "#fafafa.#fafafa", c8: "#823228.#824628", c9: "#ff6e50.#fa825a", c10: "#b44632.#b45a3c", c11: "#ffd250.#ffd250", c12: "#5a6482.#785a3c", c13: "#aabef0.#e6b482", c14: "#788cb4.#aa825a", c15: "#f0f0f0.#ffd246", c16: "#3c3c32.#643c3c", c17: "#6e6e50.#785a3c", c18: "#a09682.#aa825a", c19: "#b4b4a0.#aa825a", c20: "#c8d2aa.#e6b482", c21: "#c8dcc8.#e6b482", c22: "#646450.#785a3c", c23: "#ffffff.#fafafa", c24: "#d2dcb4.#ffd246", c25: "#96a0a0.#aa825a", c26: "#3c3228.#643c3c", c27: "#6e6450.#785a3c", c28: "#463c32.#643c3c", c29: "#c8dcaa.#e6b482", c30: "#0a0a0a.#141414", c31: "#aa6e78.#b45a3c", c32: "#969682.#aa825a", c33: "#6e3c50.#824628", c34: "#faaab4.#ffd246", c35: "#78141e.#824628", c36: "#d2dcd2.#ffd246", c37: "#c83232.#b45a3c", c38: "#e6463c.#b45a3c", c39: "#c8c8c8.#e6b482", c40: "#1e1e1e.#141414", c41: "#e64646.#fa825a" },
418 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#96501e.#966432", c6: "#ffc83c.#e6d25a", c7: "#be8c28.#b4963c", c8: "#141414.#141414", c9: "#282828.#3c1e1e", c10: "#464646.#643c3c", c11: "#823228.#78281e", c12: "#ff6e50.#ff5a3c", c13: "#b44632.#c83c28", c14: "#fafafa.#fafafa", c15: "#788cb4.#aa825a", c16: "#aabef0.#e6b482", c17: "#5a6482.#785a3c", c18: "#969696.#969696", c19: "#463c32.#643c3c", c20: "#6e6e50.#785a3c", c21: "#d2d2aa.#e6b482", c22: "#b4b4a0.#969696", c23: "#0a0a0a.#141414", c24: "#968c78.#969696", c25: "#c8c8c8.#e6b482", c26: "#dcd2dc.#e6b482", c27: "#8c8c8c.#969696", c28: "#ffffff.#fafafa", c29: "#827882.#969696", c30: "#be463c.#c83c28", c31: "#b41e3c.#c83c28", c32: "#e63232.#c83c28", c33: "#d23c6e.#c83c28" },
419 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#6e1e00.#8c5014", c6: "#aa280a.#dc8214", c7: "#d23c14.#ffc832", c8: "#141414.#141414", c9: "#82828c.#82828c", c10: "#b4b4b4.#b4b4b4", c11: "#50505a.#50505a", c12: "#dcdce6.#dcdce6", c13: "#00d2ff.#00ff78", c14: "#008cdc.#00aa46", c15: "#5a3c14.#3c3c1e", c16: "#8c6428.#785a3c", c17: "#b4783c.#96785a", c18: "#32323c.#32323c", c19: "#646e1e.#785a3c", c20: "#464614.#3c3c1e", c21: "#b4be64.#b4b4b4", c22: "#8c963c.#96785a", c23: "#645a32.#785a3c", c24: "#463c1e.#3c3c1e", c25: "#6e6464.#50505a", c26: "#3c3c3c.#32323c", c27: "#aaa06e.#82828c", c28: "#96785a.#96785a", c29: "#3c4614.#3c3c1e", c30: "#8c968c.#82828c", c31: "#b4b4aa.#b4b4b4", c32: "#5a5032.#3c3c1e", c33: "#463c3c.#32323c", c34: "#8c8c78.#82828c", c35: "#6e6e50.#50505a", c36: "#aaaa96.#b4b4b4", c37: "#0a0a0a.#141414", c38: "#6e6e6e.#82828c", c39: "#c8c8c8.#b4b4b4", c40: "#fafafa.#ffffff", c41: "#c8a078.#b4b4b4", c42: "#787878.#82828c", c43: "#504614.#3c3c1e", c44: "#645064.#50505a", c45: "#beb4aa.#b4b4b4", c46: "#5a4614.#3c3c1e", c47: "#d2b45a.#96785a", c48: "#968c82.#82828c", c49: "#a08c50.#96785a", c50: "#dcdcdc.#dcdce6", c51: "#fadc8c.#b4b4b4", c52: "#f0f0f0.#ffffff", c53: "#463c32.#32323c", c54: "#e6c8a0.#b4b4b4", c55: "#bea08c.#b4b4b4", c56: "#d2beb4.#b4b4b4", c57: "#aa965a.#96785a", c58: "#aa8c82.#82828c", c59: "#96786e.#82828c", c60: "#968c50.#96785a", c61: "#b40a0a.#dc8214", c62: "#ff5050.#ffc832", c63: "#b45082.#82828c", c64: "#643232.#3c3c1e", c65: "#aa3c3c.#dc8214", c66: "#8c9646.#96785a", c67: "#d2d2d2.#dcdce6" },
420 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#c8be00.#28a0c8", c6: "#ffff00.#3cc8f0", c7: "#6e6414.#146ea0", c8: "#0a1414.#0a1414", c9: "#503c3c.#503c3c", c10: "#6e5046.#6e5046", c11: "#be826e.#bea06e", c12: "#826e64.#a0823c", c13: "#d2a082.#d2b482", c14: "#f0c83c.#82aaf0", c15: "#d2c8c8.#d2c8c8", c16: "#785a50.#8c5a50", c17: "#a08278.#aa8278", c18: "#bea0a0.#c8a0a0", c19: "#ffa014.#82aaf0", c20: "#ffdc50.#82aaf0", c21: "#e65a28.#bea06e", c22: "#f03232.#bea06e", c23: "#783232.#6e5046", c24: "#e6c88c.#d2b482", c25: "#0a0a0a.#0a1414", c26: "#8c5032.#6e5046", c27: "#fff0c8.#ffffff", c28: "#c8a06e.#d2b482", c29: "#3c4682.#503c3c", c30: "#c8c8d2.#d2c8c8", c31: "#7878a0.#aa8278", c32: "#3c4650.#503c3c", c33: "#c8c8c8.#d2c8c8", c34: "#787882.#a0823c", c35: "#fff0d2.#ffffff", c36: "#e6d28c.#d2b482", c37: "#141414.#0a1414", c38: "#464650.#503c3c", c39: "#a0a0be.#c8a0a0" },
421 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5a4696.#785032", c6: "#aaa0fa.#ffc86e", c7: "#000000.#141414", c8: "#3c3c50.#5a3214", c9: "#8c78d2.#d29650", c10: "#785aaa.#aa783c", c11: "#82c8d2.#fabe00", c12: "#b4e6fa.#ffff82", c13: "#788cb4.#f09632", c14: "#3c96a0.#dc8c00", c15: "#c8141e.#14c846", c16: "#ff96aa.#82ffbe", c17: "#ff465a.#46ff82", c18: "#ffa014.#46ff82", c19: "#ffe65a.#82ffbe", c20: "#e66428.#46ff82", c21: "#dc1414.#14c846", c22: "#ffdc50.#82ffbe", c23: "#783232.#5a3214", c24: "#ffe6c8.#ffffff", c25: "#f0c88c.#82ffbe", c26: "#8c5032.#14c846", c27: "#c8966e.#82ffbe", c28: "#1e1e1e.#141414", c29: "#0a0a0a.#141414", c30: "#fa780a.#46ff82", c31: "#e60a0a.#14c846", c32: "#fa640a.#46ff82", c33: "#e64628.#46ff82", c34: "#fa960a.#46ff82", c35: "#a0641e.#14c846", c36: "#783c0a.#14c846", c37: "#faf0b4.#ffffff", c38: "#fadc1e.#82ffbe", c39: "#fafae6.#ffffff", c40: "#c8c8c8.#ffff82", c41: "#c87828.#46ff82", c42: "#fafafa.#ffffff", c43: "#141414.#141414", c44: "#fae678.#82ffbe", c45: "#fae6c8.#ffffff", c46: "#fabe50.#82ffbe", c47: "#a0783c.#46ff82", c48: "#3c1e0a.#141414", c49: "#463c3c.#5a3214", c50: "#3c4650.#5a3214", c51: "#787882.#aa783c", c52: "#b48c5a.#46ff82", c53: "#46505a.#5a3214", c54: "#96786e.#aa783c", c55: "#5a5a5a.#5a3214", c56: "#969696.#f09632", c57: "#960a0a.#14c846", c58: "#464650.#5a3214" },
422 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#641e32.#3c3c14", c6: "#141414.#141414", c7: "#be3250.#965032", c8: "#96003c.#644628", c9: "#e66478.#b48c14", c10: "#ff96a0.#ffe696", c11: "#0a463c.#28460a", c12: "#78323c.#643c32", c13: "#32323c.#282828", c14: "#00965a.#649600", c15: "#00783c.#507800", c16: "#8c5a00.#8c5a00", c17: "#be8c0a.#be8c0a", c18: "#f0b40a.#f0b40a", c19: "#dc6478.#b48c14", c20: "#aa3c50.#965032", c21: "#781e32.#3c3c14", c22: "#ffa0a0.#ffe696", c23: "#ff8296.#ffe696", c24: "#646464.#643c32", c25: "#6e6464.#643c32", c26: "#ffffff.#ffe696", c27: "#d2c8c8.#ffe696", c28: "#fafafa.#ffe696", c29: "#f0c88c.#ffe696", c30: "#dca064.#b48c14", c31: "#8c5a14.#8c5a00", c32: "#c8c8c8.#ffe696", c33: "#ffe6b4.#ffe696", c34: "#0a0a0a.#141414", c35: "#dcd2d2.#ffe696", c36: "#b4b4b4.#ffe696", c37: "#787878.#643c32", c38: "#aa4650.#965032", c39: "#b43250.#965032", c40: "#82500a.#8c5a00", c41: "#961e32.#644628", c42: "#faffff.#ffe696", c43: "#d2d2d2.#ffe696" },
423 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5a4664.#3c3c46", c6: "#8278a0.#645082", c7: "#000000.#000000", c8: "#aa96c8.#826ea0", c9: "#be5096.#5aa08c", c10: "#c8145a.#32c878", c11: "#3c3c50.#323246", c12: "#32323c.#1e1e28", c13: "#282828.#282828", c14: "#786478.#463c5a", c15: "#e6aa14.#d2325a", c16: "#ffff00.#ff8cbe", c17: "#963c78.#467878", c18: "#a00050.#288c5a", c19: "#464664.#3c3c46", c20: "#0a0a0a.#000000", c21: "#ffffff.#826ea0", c22: "#e6e6d2.#826ea0", c23: "#b4aaa0.#826ea0", c24: "#503214.#282828", c25: "#c8a078.#826ea0", c26: "#966e32.#463c5a", c27: "#be8c3c.#d2325a", c28: "#785028.#3c3c46", c29: "#be8c46.#d2325a", c30: "#ffffc8.#826ea0", c31: "#141414.#000000", c32: "#d2a078.#5aa08c", c33: "#28283c.#1e1e28", c34: "#5a4646.#3c3c46", c35: "#a07832.#463c5a", c36: "#b4b482.#826ea0", c37: "#d2c88c.#826ea0", c38: "#f0e6a0.#826ea0", c39: "#e6dc8c.#826ea0", c40: "#fafabe.#826ea0", c41: "#969696.#645082", c42: "#505050.#3c3c46", c43: "#504650.#3c3c46", c44: "#d2d2d2.#826ea0", c45: "#a096aa.#826ea0", c46: "#b4b4b4.#826ea0", c47: "#502814.#282828", c48: "#d2aa50.#d2325a", c49: "#6e4628.#3c3c46", c50: "#dcdcdc.#826ea0", c51: "#8c6428.#463c5a", c52: "#a07828.#d2325a", c53: "#6e5a64.#463c5a" },
424 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#641414.#641414", c6: "#141414.#000000", c7: "#c8145a.#c82800", c8: "#6e1e6e.#14786e", c9: "#8c3ca0.#3cbeb4", c10: "#a0143c.#a00000", c11: "#aa2878.#82785a", c12: "#460000.#460000", c13: "#1e2832.#1e2832", c14: "#3c4664.#32503c", c15: "#820a46.#503c32", c16: "#3c3c46.#143214", c17: "#dcaa14.#78be1e", c18: "#8caafa.#3cbeb4", c19: "#ffffff.#3cbeb4", c20: "#6478c8.#3cbeb4", c21: "#283c6e.#32503c", c22: "#bec8e6.#3cbeb4", c23: "#d2f0fa.#3cbeb4", c24: "#464678.#32503c", c25: "#b4c8f0.#3cbeb4", c26: "#0a0a0a.#000000", c27: "#aac8ff.#3cbeb4", c28: "#6e4614.#641414", c29: "#966464.#82785a", c30: "#c8320a.#a00000", c31: "#c8821e.#78be1e", c32: "#be3214.#a00000", c33: "#c86e32.#78be1e", c34: "#323c46.#143214", c35: "#aa8c64.#78be1e", c36: "#dcc88c.#78be1e", c37: "#8c5a1e.#a00000", c38: "#6e96c8.#3cbeb4", c39: "#968cf0.#3cbeb4", c40: "#646ec8.#3cbeb4", c41: "#3c3c78.#32503c", c42: "#e6f0e6.#3cbeb4", c43: "#6464c8.#3cbeb4", c44: "#c8d2dc.#3cbeb4", c45: "#dce6f0.#3cbeb4", c46: "#b4c8dc.#3cbeb4", c47: "#8c8cf0.#3cbeb4", c48: "#3c3c82.#32503c", c49: "#c8beff.#3cbeb4", c50: "#a0c8dc.#3cbeb4", c51: "#bebeff.#3cbeb4", c52: "#5a3c0a.#641414", c53: "#5a320a.#641414", c54: "#825046.#14786e", c55: "#c86428.#78be1e", c56: "#c8963c.#78be1e", c57: "#e6be8c.#78be1e", c58: "#be8c3c.#78be1e", c59: "#825028.#641414" },
425 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#784614.#464646", c6: "#ffaa50.#c8c8c8", c7: "#463228.#1e466e", c8: "#3c3c3c.#3c3c3c", c9: "#141414.#141414", c10: "#64463c.#326e96", c11: "#96645a.#5096c8", c12: "#fafafa.#fafafa", c13: "#8c8c8c.#8c8c8c", c14: "#783232.#326e96", c15: "#e66e78.#c8c8c8", c16: "#b45050.#5096c8", c17: "#ff9696.#c8c8c8", c18: "#ffbeaa.#bebebe", c19: "#be1e46.#5096c8", c20: "#8c9696.#8c8c8c", c21: "#50505a.#326e96", c22: "#0a0a0a.#141414", c23: "#b4bebe.#bebebe", c24: "#323232.#3c3c3c", c25: "#dcdcd2.#bebebe", c26: "#781414.#464646", c27: "#ffffff.#fafafa", c28: "#825a1e.#464646", c29: "#fff0b4.#fafafa", c30: "#f0d282.#c8c8c8", c31: "#5a3214.#1e466e", c32: "#c8a064.#c8c8c8", c33: "#aa3c50.#5096c8", c34: "#821e32.#464646", c35: "#3c3c46.#3c3c3c", c36: "#ff8296.#c8c8c8", c37: "#dc6478.#5096c8", c38: "#e65028.#5096c8", c39: "#a00a0a.#464646", c40: "#faa0a0.#bebebe", c41: "#dca064.#c8c8c8", c42: "#8c5a1e.#464646", c43: "#ffe6b4.#fafafa", c44: "#e6c88c.#bebebe", c45: "#faffff.#fafafa", c46: "#d2a064.#c8c8c8", c47: "#781e14.#464646", c48: "#6e1e1e.#464646", c49: "#e6646e.#c8c8c8", c50: "#dc6464.#5096c8", c51: "#ff8c82.#c8c8c8", c52: "#ffaa96.#c8c8c8", c53: "#8c968c.#8c8c8c", c54: "#505050.#326e96", c55: "#dcdce6.#fafafa", c56: "#c8a050.#c8c8c8", c57: "#b4beb4.#bebebe", c58: "#82501e.#464646", c59: "#f0dc82.#c8c8c8", c60: "#e64614.#464646" },
426 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#504650.#464650", c6: "#0a0a0a.#0a0a0a", c7: "#fafafa.#fafafa", c8: "#96501e.#5a5a5a", c9: "#f0a05a.#dcdcdc", c10: "#be7846.#aaaaaa", c11: "#c8c8c8.#c8c8c8", c12: "#50141e.#1e285a", c13: "#963c50.#3c5ab4", c14: "#6e2832.#284682", c15: "#322828.#282832", c16: "#a0a096.#a0a096", c17: "#8c8c8c.#a0a096", c18: "#504646.#464650", c19: "#d2d2d2.#c8c8c8", c20: "#3c3232.#282832", c21: "#2882aa.#464650", c22: "#50c8fa.#c8c8c8", c23: "#141414.#0a0a0a", c24: "#ff8c46.#dcdcdc", c25: "#f0140a.#5a5a5a", c26: "#8cb4a0.#a0a096", c27: "#b4d2be.#c8c8c8", c28: "#dcffe6.#fafafa", c29: "#5a8264.#464650", c30: "#50d2fa.#c8c8c8", c31: "#ffffff.#fafafa", c32: "#b4b4b4.#c8c8c8", c33: "#645a5a.#464650", c34: "#821e14.#284682", c35: "#5a5050.#464650", c36: "#d2fadc.#fafafa", c37: "#d2f0dc.#c8c8c8", c38: "#aa8c8c.#a0a096", c39: "#143c50.#282832", c40: "#b4bec8.#c8c8c8", c41: "#b4140a.#5a5a5a" },
427 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#c88c5a.#46b4c8", c6: "#966446.#14788c", c7: "#fff0a0.#aafaff", c8: "#f0c86e.#82e6ff", c9: "#000000.#281e1e", c10: "#ff785a.#ffdc32", c11: "#3c3232.#3c3232", c12: "#464646.#504646", c13: "#b45a32.#dca000", c14: "#787878.#8c7878", c15: "#8cd2ff.#ffa000", c16: "#3c96d2.#dc4600", c17: "#dcdcdc.#dcdcdc", c18: "#b4aaaa.#b4aaaa", c19: "#504646.#504646", c20: "#8c8c8c.#8c7878", c21: "#0a0a0a.#281e1e", c22: "#2882aa.#dc4600", c23: "#50c8fa.#ffa000", c24: "#8cb4a0.#b4aaaa", c25: "#141414.#281e1e", c26: "#d2fadc.#dcdcdc", c27: "#5a8264.#8c7878", c28: "#b4f0ff.#ffa000", c29: "#aad2b4.#b4aaaa", c30: "#ff8c46.#ffdc32", c31: "#322828.#3c3232", c32: "#f0140a.#dca000", c33: "#bebebe.#b4aaaa", c34: "#28aabe.#dc4600", c35: "#d2d2d2.#dcdcdc", c36: "#5ac8be.#dc4600", c37: "#b4b4b4.#b4aaaa", c38: "#50d2fa.#ffa000", c39: "#fafafa.#ffffff", c40: "#b4d2be.#b4aaaa", c41: "#466446.#504646", c42: "#82a0a0.#b4aaaa", c43: "#50646e.#8c7878", c44: "#dce6f0.#dcdcdc", c45: "#8caab4.#b4aaaa" },
428 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#000000.#28283c", c6: "#787882.#787882", c7: "#3c3c3c.#50505a", c8: "#a0a0aa.#a0a0aa", c9: "#787896.#788c96", c10: "#e6e6fa.#dcf0f0", c11: "#c8c8e6.#c8dcdc", c12: "#aaaac8.#a0b4b4", c13: "#50506e.#50646e", c14: "#2882be.#dc2800", c15: "#64bef0.#ff643c", c16: "#a0dcff.#ff8c64", c17: "#826e1e.#50505a", c18: "#e6e6a0.#c8dcdc", c19: "#5a3c0a.#50505a", c20: "#c8c882.#a0a0aa", c21: "#b49650.#787882", c22: "#141414.#28283c", c23: "#0a0a0a.#28283c", c24: "#0aa01e.#50505a", c25: "#82641e.#50505a", c26: "#0a640a.#50505a", c27: "#b48c50.#787882", c28: "#3cdc3c.#787882", c29: "#dcbe78.#a0a0aa", c30: "#140a0a.#28283c", c31: "#e6f0c8.#dcf0f0", c32: "#bec8a0.#a0a0aa", c33: "#46dc3c.#787882", c34: "#5a5a5a.#50646e", c35: "#d2d2d2.#c8dcdc", c36: "#0a6e14.#50505a", c37: "#6e3c28.#50505a", c38: "#c8fa8c.#a0a0aa", c39: "#be7814.#787882", c40: "#d2ff8c.#c8dcdc", c41: "#aa8c78.#787882", c42: "#f0f0f0.#dcf0f0", c43: "#ffdc6e.#a0a0aa", c44: "#fab43c.#a0a0aa", c45: "#c8ff8c.#c8dcdc", c46: "#fadc64.#a0a0aa", c47: "#f0b43c.#a0a0aa", c48: "#b46e14.#787882", c49: "#fafaff.#ffffff", c50: "#646464.#50646e", c51: "#a03c5a.#787882", c52: "#dc788c.#a0a0aa", c53: "#961e1e.#50505a", c54: "#fac814.#a0a0aa", c55: "#be6e14.#787882", c56: "#dc508c.#a0a0aa", c57: "#c82828.#50505a", c58: "#c8d282.#a0a0aa", c59: "#aaaaaa.#a0a0aa", c60: "#8c1e0a.#50505a", c61: "#c83c1e.#787882", c62: "#96a064.#787882", c63: "#0a7814.#50505a", c64: "#5a320a.#50505a", c65: "#e6c878.#a0a0aa" },
429 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5078b4.#6482a0", c6: "#3c508c.#465a82", c7: "#78b4d2.#82b4c8", c8: "#141414.#141414", c9: "#3c3c6e.#3c5a6e", c10: "#8c8caa.#8ca0aa", c11: "#c8c8dc.#b4c8c8", c12: "#7832a0.#6e468c", c13: "#463278.#503c64", c14: "#dc963c.#dc963c", c15: "#ffd25a.#ffd25a", c16: "#6e3232.#783c78", c17: "#e67846.#f078b4", c18: "#c8281e.#be3c8c", c19: "#645014.#783c78", c20: "#b48c50.#dc963c", c21: "#f0dcaa.#b4c8c8", c22: "#dcbe8c.#ffd25a", c23: "#64281e.#783c78", c24: "#966e5a.#783c78", c25: "#be8c50.#dc963c", c26: "#dcaa78.#ffd25a", c27: "#503c14.#783c78", c28: "#64500a.#783c78", c29: "#a08246.#dc963c", c30: "#646464.#3c5a6e", c31: "#0a0a0a.#141414", c32: "#fafafa.#ffffff" },
430 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#781e1e.#322828", c6: "#f05050.#786464", c7: "#141414.#141414", c8: "#d23232.#504646", c9: "#504646.#d23232", c10: "#322828.#781e1e", c11: "#786464.#f05050", c12: "#647864.#647864", c13: "#fafafa.#fafafa", c14: "#b4b4b4.#b4b4b4", c15: "#783c46.#783c46", c16: "#5a32dc.#5a32dc", c17: "#ffaab4.#ffaab4", c18: "#be6478.#be6478", c19: "#828282.#f05050", c20: "#3c3c3c.#d23232", c21: "#0a0a0a.#141414", c22: "#d2c8c8.#b4b4b4", c23: "#645a3c.#d23232", c24: "#e6dcaa.#ffaab4", c25: "#5a3c1e.#322828", c26: "#c8a050.#be6478", c27: "#a0785a.#f05050", c28: "#b4a078.#be6478", c29: "#ffffff.#fafafa", c30: "#f0dcaa.#ffaab4", c31: "#fa82a0.#ffaab4", c32: "#c89650.#be6478", c33: "#64503c.#d23232", c34: "#a07846.#f05050", c35: "#ffd2e6.#fafafa", c36: "#b43c3c.#504646", c37: "#f0c878.#ffaab4", c38: "#fffffa.#fafafa", c39: "#fad2dc.#fafafa", c40: "#f082a0.#ffaab4", c41: "#1e1e1e.#141414", c42: "#beaa96.#b4b4b4", c43: "#c8c8c8.#b4b4b4" },
431 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#825014.#647864", c6: "#fae632.#fafafa", c7: "#141414.#141414", c8: "#8c7832.#8c7832", c9: "#d2be64.#d2be64", c10: "#fffa96.#fffa96", c11: "#d2aa14.#b4b4b4", c12: "#783c46.#783c46", c13: "#ffaab4.#ffaab4", c14: "#fafafa.#fafafa", c15: "#be6478.#be6478", c16: "#b4b4b4.#d2aa14", c17: "#fafafa.#fae632", c18: "#647864.#825014", c19: "#3c5082.#825014", c20: "#e6e6fa.#fafafa", c21: "#d2c8f0.#fafafa", c22: "#96a0b4.#d2aa14", c23: "#ffffff.#fafafa", c24: "#b4963c.#8c7832", c25: "#6e5a14.#647864", c26: "#fae6be.#fffa96", c27: "#dcc878.#d2be64", c28: "#8c321e.#647864", c29: "#465082.#825014", c30: "#d2785a.#be6478", c31: "#ffaaaa.#ffaab4", c32: "#d2d2f0.#fafafa", c33: "#b49646.#8c7832", c34: "#28aaa0.#825014" },
432 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#a06e64.#a03246", c6: "#faf0c8.#fa96a0", c7: "#dcb482.#dc5a78", c8: "#141414.#141414", c9: "#785a64.#785a64", c10: "#fac8dc.#fac8dc", c11: "#be8296.#be8296", c12: "#a03246.#966e64", c13: "#783c46.#783c46", c14: "#ffaab4.#ffaab4", c15: "#dc5a78.#dcaa82", c16: "#f08ca0.#faf0c8", c17: "#fafafa.#fafafa", c18: "#be6478.#be6478", c19: "#3c5064.#785a64", c20: "#e6e6fa.#fafafa", c21: "#d2c8f0.#fac8dc", c22: "#0a0a0a.#141414", c23: "#6e78a0.#785a64", c24: "#a0a0be.#be8296", c25: "#ffffff.#fafafa", c26: "#827878.#a03246", c27: "#3c5082.#785a64", c28: "#dcdcf0.#fac8dc", c29: "#96a0b4.#be8296", c30: "#bec8e6.#fac8dc", c31: "#f0f0fa.#fafafa", c32: "#d2c8c8.#fac8dc", c33: "#a00a0a.#966e64", c34: "#d2281e.#966e64", c35: "#c8c8c8.#fac8dc", c36: "#643c3c.#783c46", c37: "#a06464.#a03246", c38: "#e6e6f0.#fafafa" },
433 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c7878.#46466e", c6: "#96dce6.#828cc8", c7: "#50aac8.#5a50aa", c8: "#aa8cc8.#aa8cc8", c9: "#c8c8e6.#c8c8e6", c10: "#141414.#141414", c11: "#464678.#3c7878", c12: "#828cc8.#96dce6", c13: "#5a50aa.#50aac8", c14: "#783c46.#783c46", c15: "#ffaab4.#ffaab4", c16: "#fafafa.#fafafa", c17: "#be6478.#be6478", c18: "#a06ea0.#aa8cc8", c19: "#dcaadc.#c8c8e6", c20: "#643c78.#3c7878", c21: "#5a3278.#3c7878", c22: "#9646a0.#50aac8", c23: "#f0aae6.#c8c8e6", c24: "#c88cc8.#aa8cc8", c25: "#be78be.#aa8cc8", c26: "#f0dcf0.#fafafa", c27: "#b48cb4.#aa8cc8", c28: "#784682.#3c7878", c29: "#ffffff.#fafafa", c30: "#d2d2dc.#c8c8e6", c31: "#828ca0.#96dce6", c32: "#3c465a.#3c7878", c33: "#aab4be.#aa8cc8" },
434 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#286e46.#28466e", c6: "#000000.#000000", c7: "#468c6e.#466e8c", c8: "#14321e.#141432", c9: "#a0c8aa.#a0bec8", c10: "#144632.#142846", c11: "#50463c.#50463c", c12: "#786450.#6e7850", c13: "#a08c78.#a0a078", c14: "#f050a0.#dcff50", c15: "#008ce6.#14d282", c16: "#145a82.#0a9650", c17: "#be3278.#aabe32", c18: "#3c3264.#50463c", c19: "#c8c8e6.#a0bec8", c20: "#aaaad2.#a0bec8", c21: "#0a0a0a.#000000", c22: "#9682a0.#a0a078", c23: "#141414.#141432", c24: "#785096.#6e7850", c25: "#786482.#6e7850", c26: "#bebedc.#a0bec8", c27: "#6e6482.#6e7850", c28: "#9664c8.#a0a078", c29: "#503c78.#50463c", c30: "#b4b4dc.#a0bec8", c31: "#968caa.#a0a078", c32: "#a08caa.#a0a078", c33: "#6e508c.#6e7850", c34: "#32146e.#50463c", c35: "#8c64c8.#a0a078", c36: "#6e3c8c.#6e7850", c37: "#321464.#50463c", c38: "#aa82dc.#a0bec8", c39: "#c8c8c8.#a0bec8", c40: "#327828.#28466e", c41: "#0a2814.#141432", c42: "#32323c.#50463c", c43: "#a03246.#aabe32", c44: "#144628.#142846", c45: "#f0645a.#dcff50", c46: "#503264.#50463c", c47: "#fafafa.#ffffff", c48: "#8c3232.#6e7850", c49: "#821e3c.#50463c", c50: "#326e28.#28466e", c51: "#c83c46.#aabe32", c52: "#e68ca0.#dcff50", c53: "#3c1464.#50463c", c54: "#dc6464.#aabe32", c55: "#c8d2dc.#a0bec8", c56: "#6e6478.#6e7850", c57: "#3c3c32.#50463c", c58: "#6e6e50.#6e7850", c59: "#a09682.#a0a078", c60: "#b4b4a0.#a0bec8", c61: "#3c2864.#50463c", c62: "#9664d2.#a0a078", c63: "#d2d2d2.#a0bec8", c64: "#287828.#28466e", c65: "#d23246.#aabe32", c66: "#28146e.#0a9650" },
435 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#786e5a.#6e6e64", c6: "#000000.#000000", c7: "#5a463c.#504646", c8: "#a08c78.#968c82", c9: "#be3278.#b46e14", c10: "#f050a0.#ffbe5a", c11: "#146e82.#3ca03c", c12: "#00aad2.#50f06e", c13: "#143c28.#143c46", c14: "#286e46.#28a0a0", c15: "#144632.#147878", c16: "#787878.#787878", c17: "#9646a0.#b46e14", c18: "#5a3278.#504646", c19: "#c88cc8.#bebebe", c20: "#be78be.#bebebe", c21: "#f0aae6.#bebebe", c22: "#141414.#000000", c23: "#0a0a0a.#000000", c24: "#ffd2fa.#ffffff", c25: "#7846a0.#787878", c26: "#aab4be.#bebebe", c27: "#d2d2dc.#bebebe", c28: "#f0f0f0.#ffffff", c29: "#faf0fa.#ffffff", c30: "#3c465a.#504646", c31: "#828ca0.#787878", c32: "#dcb4dc.#bebebe", c33: "#784682.#787878", c34: "#e6bef0.#bebebe", c35: "#a078aa.#968c82", c36: "#d28cc8.#bebebe", c37: "#c8a0c8.#bebebe", c38: "#644678.#6e6e64", c39: "#d296d2.#bebebe", c40: "#8c4696.#b46e14", c41: "#3c1e50.#504646", c42: "#783c82.#787878", c43: "#1e1e14.#143c46", c44: "#1e1428.#143c46", c45: "#a064aa.#968c82", c46: "#3c4646.#504646", c47: "#6e3c6e.#6e6e64", c48: "#fafafa.#ffffff", c49: "#46465a.#504646", c50: "#50505a.#504646" },
436 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#64463c.#64463c", c6: "#141414.#141414", c7: "#ffc850.#ffc850", c8: "#c89628.#c89628", c9: "#f0be28.#f0be28", c10: "#783c3c.#1e8278", c11: "#be3c3c.#50aaa0", c12: "#3246a0.#78a014", c13: "#3c78be.#a0c814", c14: "#28285a.#3c6e00", c15: "#fa3c46.#64d2c8", c16: "#ff8282.#8cfff0", c17: "#a0bed2.#a0bed2", c18: "#0a3c64.#3c6e00", c19: "#8cb4e6.#a0bed2", c20: "#5a8cc8.#a0c814", c21: "#3c64b4.#a0c814", c22: "#3c78c8.#a0c814", c23: "#1e64aa.#78a014", c24: "#96a0aa.#a0bed2", c25: "#5a8cd2.#a0c814", c26: "#96aae6.#a0bed2", c27: "#464646.#64463c", c28: "#be8250.#c89628", c29: "#8c643c.#1e8278", c30: "#c8c8d2.#a0bed2", c31: "#5a3c14.#64463c", c32: "#0a0a0a.#141414", c33: "#643c14.#64463c", c34: "#8c6446.#1e8278", c35: "#d2d2d2.#a0bed2", c36: "#969696.#a0bed2", c37: "#50aad2.#a0c814", c38: "#fad2a0.#ffc850", c39: "#c8a078.#8cfff0", c40: "#aadcf0.#a0bed2", c41: "#8cbedc.#a0bed2", c42: "#aa8c64.#c89628", c43: "#5a5014.#64463c", c44: "#d2aa46.#c89628", c45: "#5a3214.#64463c", c46: "#e6c878.#ffc850", c47: "#aa8246.#c89628", c48: "#0a3264.#3c6e00", c49: "#aa7846.#c89628", c50: "#b4b4c8.#a0bed2", c51: "#785032.#1e8278", c52: "#64320a.#64463c", c53: "#e6aa3c.#f0be28", c54: "#dcd2a0.#a0bed2", c55: "#96643c.#1e8278", c56: "#321e0a.#141414", c57: "#a03228.#50aaa0", c58: "#d2aa64.#ffc850", c59: "#787882.#a0c814", c60: "#0a64b4.#78a014", c61: "#328cd2.#a0c814", c62: "#c84614.#50aaa0", c63: "#d2d2dc.#a0bed2", c64: "#fafafa.#ffffff", c65: "#966e3c.#1e8278", c66: "#281e0a.#141414", c67: "#963228.#1e8278", c68: "#3c2814.#141414", c69: "#aa323c.#50aaa0", c70: "#46505a.#64463c", c71: "#1e2828.#141414", c72: "#96a0a0.#a0bed2", c73: "#326eb4.#a0c814", c74: "#8c1e1e.#1e8278", c75: "#1e3246.#3c6e00", c76: "#78bed2.#a0bed2", c77: "#0a2846.#3c6e00", c78: "#6e7878.#64463c" },
437 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#323c78.#820082", c6: "#5078be.#d23cd2", c7: "#3c5096.#aa14aa", c8: "#283c50.#5a005a", c9: "#141414.#141414", c10: "#aaaa96.#d2be5a", c11: "#ffdc64.#fffa64", c12: "#aa3c50.#aa3c50", c13: "#ff003c.#ff1400", c14: "#e6dcfa.#e6c8f0", c15: "#aaa0b4.#a096a0", c16: "#e66e78.#e66e78", c17: "#463c64.#820082", c18: "#0a0a0a.#141414", c19: "#785a8c.#aa14aa", c20: "#a08cc8.#a096a0", c21: "#c8bef0.#e6c8f0", c22: "#dcdcfa.#e6c8f0", c23: "#6e6e6e.#aa14aa", c24: "#c8461e.#aa3c50", c25: "#781e14.#aa3c50", c26: "#ff783c.#e66e78", c27: "#828296.#d2be5a", c28: "#781432.#aa3c50", c29: "#c8646e.#e66e78", c30: "#fafafa.#ffffff", c31: "#d2d2e6.#e6c8f0", c32: "#f0aab4.#a096a0" },
438 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#28323c.#28323c", c6: "#141414.#141414", c7: "#46505a.#46505a", c8: "#14503c.#822828", c9: "#5a3c32.#5a5a5a", c10: "#32b48c.#e65046", c11: "#aa7850.#dcdcdc", c12: "#785a46.#aaaaaa", c13: "#a06478.#6496be", c14: "#ffb4c8.#aad2ff", c15: "#3c3c3c.#28323c", c16: "#ffffff.#aad2ff", c17: "#785082.#6496be", c18: "#c8a0f0.#aad2ff", c19: "#aa78be.#6496be", c20: "#501e50.#5a5a5a", c21: "#6e3c82.#46505a", c22: "#502850.#5a5a5a", c23: "#a078be.#6496be", c24: "#461e50.#28323c", c25: "#c8c8c8.#aad2ff", c26: "#825aa0.#6496be", c27: "#c8a0e6.#aad2ff", c28: "#969696.#6496be", c29: "#d2bef0.#aad2ff", c30: "#aa78b4.#6496be", c31: "#646464.#46505a", c32: "#643c6e.#46505a", c33: "#825a8c.#6496be", c34: "#fafafa.#aad2ff", c35: "#8c8c8c.#6496be", c36: "#bebebe.#aad2ff", c37: "#50285a.#46505a", c38: "#643c82.#46505a", c39: "#a078b4.#6496be" },
439 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#32281e.#5a5a5a", c6: "#503c28.#828282", c7: "#6e5032.#aaaaaa", c8: "#a07850.#dcdcdc", c9: "#0a461e.#822828", c10: "#0a7846.#c82828", c11: "#1eaa64.#e64646", c12: "#ff5050.#aa50ff", c13: "#ffaaaa.#d5aaff", c14: "#282828.#282828", c15: "#3c3232.#3c3232", c16: "#aac882.#d54646", c17: "#465a1e.#5a1e1e" },
440 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#643278.#322832", c6: "#b45ad2.#5a505a", c7: "#141414.#141414", c8: "#8246a0.#3c3c3c", c9: "#786478.#286450", c10: "#aa8caa.#64a08c", c11: "#dcbedc.#82dcc8", c12: "#3c3c3c.#3c3c32", c13: "#c8b43c.#c8b43c", c14: "#fafafa.#fafafa", c15: "#646464.#5a5a50", c16: "#ffdc50.#ffdc50", c17: "#825a64.#286450", c18: "#503c64.#322832", c19: "#be8cc8.#64a08c", c20: "#825a6e.#286450", c21: "#c88cc8.#64a08c", c22: "#aa64c8.#5a505a", c23: "#aa6ec8.#5a505a", c24: "#aa78be.#64a08c", c25: "#dcb4c8.#82dcc8", c26: "#dc4632.#c8b43c", c27: "#6e5078.#286450", c28: "#322828.#3c3c32", c29: "#504646.#3c3c32", c30: "#b41414.#322832", c31: "#d2d2d2.#82dcc8", c32: "#ffffff.#fafafa", c33: "#d2a0dc.#82dcc8", c34: "#0a0a0a.#141414", c35: "#6e0a0a.#3c3c32", c36: "#a08c8c.#64a08c", c37: "#640a0a.#141414", c38: "#fff0ff.#fafafa", c39: "#c8b4be.#82dcc8", c40: "#825a8c.#286450", c41: "#c8a0d2.#82dcc8", c42: "#aa82c8.#64a08c", c43: "#c88cd2.#64a08c", c44: "#c8a0c8.#82dcc8", c45: "#dc4628.#c8b43c", c46: "#b41464.#322832", c47: "#dc5aa0.#5a505a", c48: "#787878.#286450", c49: "#504664.#322832", c50: "#aa6ed2.#5a505a" },
441 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#282828.#3c503c", c6: "#5a5a5a.#78dc96", c7: "#141414.#141414", c8: "#6e3c78.#3c2828", c9: "#be6ec8.#78645a", c10: "#3c3c3c.#5a966e", c11: "#3caa96.#821e3c", c12: "#287864.#64141e", c13: "#50dcbe.#be3264", c14: "#fafafa.#fafafa", c15: "#821e1e.#463282", c16: "#e63232.#7864be", c17: "#8c5096.#503c3c", c18: "#ffdc50.#ffdc50", c19: "#462846.#5a966e", c20: "#b48cbe.#78645a", c21: "#9678b4.#78645a", c22: "#7864a0.#503c3c", c23: "#a064aa.#503c3c", c24: "#5a46a0.#3c2828", c25: "#823c8c.#503c3c", c26: "#0a0a0a.#141414", c27: "#be82aa.#78645a", c28: "#ff5a5a.#7864be", c29: "#ff9696.#bebebe", c30: "#3c0a0a.#141414", c31: "#dcd2dc.#bebebe", c32: "#c83c1e.#7864be", c33: "#f0461e.#7864be", c34: "#beaabe.#bebebe", c35: "#fffaff.#fafafa", c36: "#6e6478.#78dc96", c37: "#64326e.#3c2828", c38: "#d2c8d2.#bebebe", c39: "#827896.#503c3c", c40: "#8c0a14.#463282", c41: "#0a0a14.#141414", c42: "#5a3c82.#3c2828", c43: "#a03c3c.#463282", c44: "#be5a6e.#503c3c", c45: "#f01e50.#7864be", c46: "#1e1e32.#3c503c", c47: "#8c6eb4.#503c3c", c48: "#5a4696.#3c2828", c49: "#64508c.#3c2828", c50: "#503c64.#78dc96", c51: "#b48cb4.#78645a", c52: "#fa5a5a.#7864be", c53: "#fa6464.#7864be", c54: "#fa7878.#78645a", c55: "#fa8c8c.#78645a", c56: "#646478.#78dc96", c57: "#b4aab4.#bebebe", c58: "#ffffff.#fafafa", c59: "#c81414.#7864be", c60: "#8c0a28.#463282", c61: "#f0f0f0.#fafafa", c62: "#ffc8c8.#bebebe", c63: "#320a78.#3c2828", c64: "#5014b4.#3c2828", c65: "#5a468c.#3c2828", c66: "#a096d2.#78645a", c67: "#6450a0.#503c3c", c68: "#32285a.#5a966e", c69: "#826eb4.#503c3c", c70: "#be8cd2.#78645a", c71: "#a096c8.#78645a", c72: "#be0a46.#7864be", c73: "#faf0fa.#fafafa", c74: "#961478.#3c2828", c75: "#e650aa.#78645a", c76: "#e63282.#7864be", c77: "#c83264.#7864be", c78: "#fac8dc.#fafafa", c79: "#fa5032.#7864be", c80: "#ffb478.#ffdc50", c81: "#fa503c.#7864be", c82: "#966edc.#78645a", c83: "#82468c.#503c3c", c84: "#d23c1e.#7864be" },
442 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5a96c8.#c8a050", c6: "#3c6e82.#aa781e", c7: "#78c8ff.#fff078", c8: "#a0a0c8.#a0a0c8", c9: "#64aae6.#e6c878", c10: "#141414.#141414", c11: "#c8c8e6.#c8c8e6", c12: "#828296.#828296", c13: "#5a5a78.#5a5a78", c14: "#827878.#828296", c15: "#504646.#5a5a78", c16: "#dcd2d2.#c8c8e6", c17: "#beb4b4.#a0a0c8", c18: "#f0f0f0.#ffffff", c19: "#faf0f0.#ffffff", c20: "#281e1e.#141414", c21: "#0a0a0a.#141414", c22: "#d2c8c8.#c8c8e6", c23: "#323232.#141414", c24: "#aaa0aa.#a0a0c8", c25: "#fafafa.#ffffff", c26: "#282828.#141414", c27: "#3c3c3c.#141414", c28: "#50505a.#5a5a78", c29: "#b4aab4.#a0a0c8", c30: "#463c46.#5a5a78", c31: "#6e6482.#5a5a78", c32: "#c8c8d2.#c8c8e6", c33: "#968c96.#828296", c34: "#b4b4b4.#a0a0c8" },
443 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#466496.#c88c3c", c6: "#000000.#141414", c7: "#14a0c8.#dcaa5a", c8: "#5ac8ff.#ffe664", c9: "#283c5a.#a06e00", c10: "#a0dcff.#ffffa0", c11: "#ffffff.#f0faff", c12: "#7878a0.#828296", c13: "#dce6f0.#dcdcf0", c14: "#aab4c8.#aab4c8", c15: "#c8c8e6.#bebed2", c16: "#0a0a0a.#141414", c17: "#785a0a.#a06e00", c18: "#fff078.#dcdcf0", c19: "#d2b446.#aab4c8", c20: "#faf00a.#aab4c8", c21: "#aa8c0a.#828296", c22: "#fadc0a.#aab4c8", c23: "#503c1e.#a06e00", c24: "#825a3c.#a06e00", c25: "#c8a01e.#828296", c26: "#a0825a.#828296", c27: "#6e503c.#a06e00", c28: "#1e140a.#141414", c29: "#dcbe1e.#aab4c8", c30: "#8c1e3c.#a06e00", c31: "#fafafa.#f0faff", c32: "#f03c3c.#828296", c33: "#8c785a.#828296", c34: "#b4a078.#828296", c35: "#78503c.#a06e00", c36: "#a06e14.#828296", c37: "#a08c0a.#828296", c38: "#6e5a0a.#a06e00", c39: "#f0dc0a.#aab4c8", c40: "#faf06e.#dcdcf0", c41: "#503c14.#a06e00", c42: "#d2aa46.#aab4c8", c43: "#825a46.#828296", c44: "#a08250.#828296", c45: "#50321e.#a06e00", c46: "#c8b446.#aab4c8", c47: "#82143c.#a06e00", c48: "#e63c3c.#828296", c49: "#aa9678.#828296" },
444 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#827882.#8c8c64", c6: "#f0dcf0.#ffffaa", c7: "#beaabe.#c8c882", c8: "#504650.#5a5a3c", c9: "#141414.#141414", c10: "#50963c.#645a96", c11: "#64c850.#8c78c8", c12: "#b4a0e6.#ffb496", c13: "#8c78b4.#c88c78", c14: "#645a82.#966e5a", c15: "#0a0a0a.#141414", c16: "#6e500a.#5a5a3c", c17: "#8c6432.#5a5a3c", c18: "#5a3c28.#5a5a3c", c19: "#b4961e.#645a96", c20: "#fff078.#c8c882", c21: "#dcbe3c.#8c78c8", c22: "#fadc0a.#8c78c8", c23: "#fff0aa.#ffffaa", c24: "#a0825a.#8c8c64", c25: "#ffffff.#ffffaa", c26: "#c8dcf0.#ffffaa", c27: "#6e828c.#8c8c64", c28: "#8296a0.#c88c78", c29: "#505a6e.#966e5a", c30: "#a0aabe.#c8c882", c31: "#fafafa.#ffffaa", c32: "#aa961e.#645a96", c33: "#463c14.#5a5a3c", c34: "#3c4650.#5a5a3c", c35: "#0a1e14.#141414", c36: "#ffa0d2.#ffffaa", c37: "#ffc8dc.#ffffaa", c38: "#a05a14.#5a5a3c", c39: "#f0be28.#8c78c8", c40: "#643c14.#5a5a3c", c41: "#64461e.#5a5a3c", c42: "#dcaa1e.#8c78c8", c43: "#966e5a.#8c8c64", c44: "#c88c1e.#8c8c64", c45: "#645046.#5a5a3c", c46: "#d2a01e.#8c78c8", c47: "#faf0e6.#ffffaa", c48: "#46465a.#5a5a3c", c49: "#1e1e1e.#141414", c50: "#aa8c78.#8c8c64", c51: "#323232.#5a5a3c", c52: "#282828.#141414", c53: "#b49646.#8c8c64", c54: "#96b4c8.#c8c882", c55: "#b4c8d2.#c8c882", c56: "#a0823c.#8c8c64", c57: "#282832.#141414", c58: "#5a5a6e.#966e5a", c59: "#a07814.#645a96", c60: "#828296.#8c8c64", c61: "#323c3c.#5a5a3c", c62: "#643c28.#5a5a3c", c63: "#d25a8c.#8c8c64", c64: "#be5a82.#8c8c64", c65: "#e678a0.#c8c882", c66: "#ff5a82.#c8c882", c67: "#5a4628.#5a5a3c", c68: "#be9614.#645a96", c69: "#ff8caa.#c8c882", c70: "#ffdc1e.#8c78c8", c71: "#f0be1e.#8c78c8", c72: "#dcbe46.#8c78c8", c73: "#826450.#8c8c64", c74: "#5a463c.#5a5a3c", c75: "#8c6428.#5a5a3c", c76: "#785a0a.#5a5a3c", c77: "#788ca0.#c88c78", c78: "#a0b4c8.#c8c882", c79: "#d2dcf0.#ffffaa", c80: "#dce6fa.#ffffaa", c81: "#966e3c.#8c8c64", c82: "#bea032.#8c78c8", c83: "#fae614.#8c78c8", c84: "#fff082.#ffffaa", c85: "#e6c850.#c8c882", c86: "#323c46.#5a5a3c", c87: "#64503c.#5a5a3c", c88: "#506478.#966e5a", c89: "#aa8c64.#8c8c64", c90: "#dcf0ff.#ffffaa", c91: "#b4d2e6.#ffb496", c92: "#646e82.#966e5a", c93: "#8ca0b4.#c88c78" },
445 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#827882.#8c8c64", c6: "#beaabe.#c8c882", c7: "#f0dcf0.#ffffaa", c8: "#504650.#5a5a3c", c9: "#32781e.#3c3c5a", c10: "#46b432.#6e64c8", c11: "#141414.#141414", c12: "#96be50.#8278b4", c13: "#d2e6a0.#beb4dc", c14: "#647846.#645a82", c15: "#b4a0e6.#ffb496", c16: "#645a82.#966e5a", c17: "#8c78b4.#c88c78", c18: "#963232.#5a5a3c", c19: "#ffb48c.#beb4dc", c20: "#f08264.#8278b4", c21: "#ffd2aa.#beb4dc", c22: "#ffe6c8.#ffffaa", c23: "#0a0a0a.#141414", c24: "#e6a00a.#8278b4", c25: "#ffc846.#beb4dc", c26: "#dcdcdc.#ffffaa", c27: "#ffffff.#ffffaa", c28: "#c87896.#c8c882", c29: "#8c1e1e.#5a5a3c", c30: "#ffd2dc.#ffffaa", c31: "#fff08c.#beb4dc", c32: "#c88c0a.#8278b4", c33: "#fff0f0.#ffffaa", c34: "#fafafa.#ffffaa", c35: "#d28c0a.#8278b4" },
446 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#504650.#5a5a3c", c6: "#827882.#8c8c64", c7: "#beaabe.#c8c882", c8: "#e6d2e6.#fafab4", c9: "#fafafa.#fafafa", c10: "#141414.#141414", c11: "#968c96.#aaaa6e", c12: "#32781e.#3c3c5a", c13: "#46b432.#6e64c8", c14: "#8c6ebe.#c88c78", c15: "#b48cf0.#ffb496", c16: "#645082.#966e5a", c17: "#96be50.#8278b4", c18: "#647846.#645a82", c19: "#d2e6a0.#beb4dc", c20: "#0a0a0a.#141414", c21: "#ffffff.#fafafa", c22: "#1e3c3c.#5a5a3c", c23: "#5a8caa.#8c8c64", c24: "#c8c8c8.#c8c882", c25: "#3c5a78.#966e5a", c26: "#325a78.#966e5a", c27: "#508caa.#8c8c64", c28: "#143c3c.#141414", c29: "#1e1e1e.#141414", c30: "#143c46.#5a5a3c", c31: "#6ea0b4.#aaaa6e", c32: "#467896.#966e5a", c33: "#78a0be.#aaaa6e", c34: "#fae6be.#fafab4", c35: "#dcc8b4.#beb4dc", c36: "#f0e6be.#beb4dc", c37: "#fff0c8.#fafab4", c38: "#64a0b4.#aaaa6e", c39: "#f0d2be.#fafab4", c40: "#e6c8aa.#beb4dc", c41: "#787878.#8c8c64", c42: "#785a1e.#645a82", c43: "#fadcbe.#fafab4", c44: "#fad2be.#fafab4", c45: "#a07850.#8c8c64", c46: "#462828.#5a5a3c", c47: "#64461e.#5a5a3c", c48: "#a06e6e.#8c8c64", c49: "#784646.#5a5a3c", c50: "#643c1e.#5a5a3c", c51: "#786e78.#8c8c64", c52: "#d27882.#aaaa6e", c53: "#645046.#5a5a3c", c54: "#a0785a.#8c8c64", c55: "#ffd2b4.#beb4dc", c56: "#d2d2d2.#fafab4", c57: "#dc5a5a.#8c8c64", c58: "#ffb4a0.#beb4dc", c59: "#fa8ca0.#c8c882", c60: "#c8a05a.#8278b4", c61: "#fffadc.#fafafa", c62: "#fff0d2.#fafafa", c63: "#a0a0a0.#aaaa6e", c64: "#a06e50.#8c8c64", c65: "#141e28.#141414", c66: "#aaaaaa.#c8c882", c67: "#822828.#5a5a3c", c68: "#f0f0f0.#fafafa", c69: "#6eaab4.#aaaa6e", c70: "#be9678.#aaaa6e", c71: "#dca0a0.#c8c882", c72: "#fab4b4.#c8c882", c73: "#ff0a0a.#5a5a3c", c74: "#785a28.#645a82", c75: "#fa6e6e.#aaaa6e", c76: "#461414.#141414", c77: "#6e6e78.#8c8c64", c78: "#8c3232.#5a5a3c", c79: "#321414.#141414", c80: "#d2a06e.#8278b4", c81: "#e6d2aa.#beb4dc", c82: "#be1414.#5a5a3c", c83: "#505050.#5a5a3c", c84: "#d2d2dc.#fafab4", c85: "#644628.#5a5a3c", c86: "#aa7850.#8c8c64", c87: "#28506e.#5a5a3c", c88: "#3c7882.#966e5a", c89: "#0a323c.#141414", c90: "#50a0aa.#8c8c64", c91: "#fffad2.#fafafa", c92: "#785a14.#645a82", c93: "#c86e78.#aaaa6e", c94: "#fffafa.#fafafa" },
447 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#b43c00.#b43c00", c7: "#f0823c.#f0823c", c8: "#f0aa6e.#f0aa6e", c9: "#be643c.#c8500a", c10: "#504628.#501e00", c11: "#f0e6dc.#e6aa8c", c12: "#968c78.#6e3c14", c13: "#c8c8aa.#a06e50", c14: "#b4aa96.#82503c", c15: "#f0783c.#f0783c", c16: "#e6dcaa.#be8c64", c17: "#823214.#b43c00", c18: "#ff7832.#f0783c", c19: "#dc5046.#c8500a", c20: "#ffa064.#f0aa6e", c21: "#ffaa64.#f0aa6e", c22: "#dc3c3c.#c8500a", c23: "#5a3c1e.#501e00", c24: "#dc5050.#c8500a", c25: "#dcdcdc.#e6aa8c", c26: "#ffffff.#e6aa8c", c27: "#b48246.#c8500a", c28: "#ffdcbe.#be8c64", c29: "#785014.#501e00", c30: "#e6be8c.#f0aa6e", c31: "#b4823c.#c8500a", c32: "#ffe6c8.#e6aa8c", c33: "#c8aa8c.#82503c", c34: "#fafafa.#e6aa8c", c35: "#0a0a0a.#141414", c36: "#aa8246.#c8500a", c37: "#b45a46.#c8500a", c38: "#a0280a.#b43c00", c39: "#ff8c50.#f0823c", c40: "#ffb48c.#f0aa6e", c41: "#82280a.#b43c00", c42: "#5a461e.#501e00", c43: "#5a3c32.#501e00", c44: "#dc3232.#c8500a", c45: "#ff7828.#f0783c", c46: "#dcaaa0.#a06e50", c47: "#78500a.#501e00", c48: "#d2aa8c.#82503c", c49: "#fffadc.#e6aa8c" },
448 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#6eb4d2.#46c8ff", c6: "#3c6e8c.#0064be", c7: "#5a82aa.#32a0fa", c8: "#000000.#141414", c9: "#bef0ff.#a0ffff", c10: "#283c78.#003278", c11: "#a0c8ff.#78e6fa", c12: "#ffffaa.#ffffaa", c13: "#ffe600.#ffe600", c14: "#c8b41e.#c8b41e", c15: "#c86e5a.#c8b41e", c16: "#82280a.#141414", c17: "#fac88c.#ffffaa", c18: "#f08c46.#c8b41e", c19: "#141414.#141414", c20: "#0a0a14.#141414", c21: "#b45a46.#c8b41e", c22: "#785014.#c8b41e", c23: "#ff8c50.#c8b41e", c24: "#b4785a.#c8b41e", c25: "#46321e.#141414", c26: "#5a3c32.#003278", c27: "#ffe6b4.#ffffaa", c28: "#f08c50.#c8b41e", c29: "#0a0a0a.#141414", c30: "#46281e.#141414", c31: "#f0be8c.#ffffaa", c32: "#dcdcfa.#a0ffff", c33: "#5a3c28.#003278", c34: "#78500a.#c8b41e", c35: "#dcaaa0.#ffffaa", c36: "#a06e3c.#c8b41e", c37: "#fffadc.#ffffff", c38: "#bebee6.#78e6fa" },
449 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#828278.#3c9682", c6: "#464646.#0a5a3c", c7: "#141414.#141414", c8: "#b4aaaa.#64be8c", c9: "#dcdcdc.#c8f0e6", c10: "#828c82.#8c826e", c11: "#bebebe.#aaaa78", c12: "#d2c8d2.#a0e6c8", c13: "#465a5a.#6e6e50", c14: "#ffa0a0.#ffb4a0", c15: "#ff3c3c.#ff6478", c16: "#3c3c50.#46463c", c17: "#0a5078.#46463c", c18: "#96c8ff.#a0e6c8", c19: "#6eaafa.#aaaa78", c20: "#0a3250.#46463c", c21: "#2878be.#6e6e50", c22: "#0a78be.#6e6e50", c23: "#4682d2.#8c826e", c24: "#0a0a0a.#141414", c25: "#0a506e.#46463c", c26: "#64aaf0.#aaaa78", c27: "#8cbefa.#aaaa78", c28: "#1e50a0.#6e6e50", c29: "#286eb4.#6e6e50", c30: "#0a3264.#46463c", c31: "#1e5096.#6e6e50", c32: "#78a0fa.#aaaa78", c33: "#0a326e.#46463c", c34: "#96bef0.#aaaa78", c35: "#fafafa.#ffffff", c36: "#be283c.#ff6478", c37: "#5a3c14.#0a5a3c", c38: "#323c46.#46463c", c39: "#b49678.#8c826e", c40: "#dc646e.#ff6478", c41: "#8c6e50.#3c9682", c42: "#d2e6ff.#c8f0e6", c43: "#0a78b4.#6e6e50", c44: "#c8e6ff.#c8f0e6", c45: "#323232.#46463c", c46: "#c8c8c8.#a0e6c8", c47: "#b4283c.#ff6478", c48: "#fafaff.#ffffff", c49: "#b46e5a.#3c9682", c50: "#a05a50.#3c9682", c51: "#0a468c.#46463c", c52: "#505050.#0a5a3c", c53: "#d2e6fa.#c8f0e6", c54: "#8c8c8c.#8c826e", c55: "#b48c6e.#3c9682", c56: "#8c6450.#3c9682", c57: "#c8dcfa.#c8f0e6", c58: "#3c6e8c.#6e6e50", c59: "#1e78c8.#6e6e50", c60: "#0a286e.#46463c", c61: "#78aaff.#aaaa78", c62: "#78a0ff.#aaaa78", c63: "#2878d2.#8c826e", c64: "#e66478.#ffb4a0", c65: "#d2d2d2.#a0e6c8", c66: "#5a3214.#0a5a3c", c67: "#be2832.#ff6478" },
450 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#1e1e1e.#0a0a28", c6: "#464650.#28286e", c7: "#283232.#141e50", c8: "#78828c.#3c46be", c9: "#0a0a0a.#0a0a0a", c10: "#64d2be.#64d2be", c11: "#fa2828.#fa2828", c12: "#f0965a.#f0965a", c13: "#0a5ac8.#0a5ac8", c14: "#9664c8.#9664c8", c15: "#14f014.#14f014", c16: "#b4bebe.#a0a0dc", c17: "#fafafa.#fafafa", c18: "#503c14.#141e50", c19: "#c86e14.#fa2828", c20: "#ffbe6e.#f0965a", c21: "#a07814.#f0965a", c22: "#d2aa0a.#f0965a", c23: "#fa9614.#f0965a", c24: "#ffd23c.#f0965a", c25: "#ffe6a0.#a0a0dc", c26: "#fff0aa.#fafafa", c27: "#141414.#0a0a28", c28: "#ffffff.#fafafa", c29: "#dcdcdc.#fafafa", c30: "#967814.#28286e", c31: "#323232.#141e50", c32: "#282828.#141e50", c33: "#fadca0.#a0a0dc", c34: "#fad23c.#f0965a", c35: "#6e6e6e.#3c46be", c36: "#504646.#28286e", c37: "#bebed2.#a0a0dc", c38: "#a02828.#fa2828", c39: "#646464.#28286e", c40: "#fab464.#f0965a", c41: "#be6414.#fa2828", c42: "#f08c14.#f0965a", c43: "#aa1414.#fa2828", c44: "#dce6f0.#fafafa", c45: "#a08c32.#f0965a", c46: "#786e14.#28286e", c47: "#968c32.#3c46be", c48: "#c8be6e.#f0965a", c49: "#a0780a.#f0965a", c50: "#50320a.#141e50", c51: "#fff0be.#fafafa", c52: "#ffdc3c.#f0965a", c53: "#ffd246.#f0965a", c54: "#ffe696.#a0a0dc", c55: "#dcaa0a.#f0965a", c56: "#783c14.#28286e", c57: "#aa0a0a.#fa2828", c58: "#826e3c.#28286e", c59: "#dcdce6.#fafafa", c60: "#e6e6e6.#fafafa" },
451 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#787878.#787878", c6: "#fafafa.#fafafa", c7: "#0a0a0a.#0a0a0a", c8: "#963c50.#a05a0a", c9: "#ffaab4.#ffc850", c10: "#dc788c.#c89628", c11: "#28281e.#28281e", c12: "#503c32.#503c32", c13: "#aa3c6e.#c8460a", c14: "#503232.#503232", c15: "#785046.#785046", c16: "#d20a0a.#a05a0a", c17: "#f0643c.#c89628", c18: "#e66428.#a05a0a", c19: "#ffa046.#c89628", c20: "#a04614.#a05a0a", c21: "#f09614.#c89628", c22: "#ffdc50.#ffc850", c23: "#ffd264.#ffc850", c24: "#ffc846.#c89628", c25: "#783c14.#503c32", c26: "#dc9614.#c89628", c27: "#e6643c.#c89628", c28: "#fff064.#ffc850", c29: "#784614.#503c32", c30: "#141414.#0a0a0a", c31: "#6e3c14.#503c32", c32: "#fabe46.#c89628", c33: "#503c28.#503c32", c34: "#ffffff.#fafafa", c35: "#faa046.#c89628", c36: "#8c6446.#785046", c37: "#3c3c3c.#503c32", c38: "#b48c64.#c89628", c39: "#fad264.#ffc850", c40: "#c8c8c8.#bebebe", c41: "#dc8c14.#c89628", c42: "#646464.#787878", c43: "#f0aa32.#c89628", c44: "#282828.#28281e", c45: "#285050.#503c32", c46: "#a0785a.#787878", c47: "#aa1414.#a05a0a", c48: "#fae664.#ffc850", c49: "#d2d2d2.#bebebe", c50: "#f06432.#c89628", c51: "#783c0a.#503c32", c52: "#dc960a.#c89628", c53: "#dcdcdc.#fafafa", c54: "#dc0a0a.#a05a0a", c55: "#c80a0a.#a05a0a", c56: "#503228.#503232", c57: "#50505a.#503c32" },
452 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#963c50.#825a0a", c6: "#ffaab4.#ffc850", c7: "#787878.#787878", c8: "#fafafa.#fafafa", c9: "#141414.#141414", c10: "#dc788c.#c89628", c11: "#3c3c3c.#3c3c3c", c12: "#282828.#282828", c13: "#5a5a5a.#5a5a5a", c14: "#0a0a0a.#141414", c15: "#a0968c.#787878", c16: "#ffffff.#fafafa", c17: "#dcd2dc.#bebebe", c18: "#5a64be.#787878", c19: "#283282.#3c3c3c", c20: "#b4c8ff.#bebebe", c21: "#8ca0fa.#bebebe", c22: "#7882d2.#787878", c23: "#465082.#5a5a5a", c24: "#e6e6be.#bebebe", c25: "#bebe96.#bebebe", c26: "#46146e.#3c3c3c", c27: "#643c78.#5a5a5a", c28: "#b4d2ff.#bebebe", c29: "#3c145a.#3c3c3c", c30: "#d2c8d2.#bebebe", c31: "#a0b4fa.#bebebe", c32: "#d2d2d2.#bebebe", c33: "#282882.#3c3c3c", c34: "#643278.#5a5a5a" },
453 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#965028.#463c3c", c6: "#f0dc00.#d2c8c8", c7: "#f0f0f0.#f0f0f0", c8: "#0a3250.#782828", c9: "#005a6e.#dc283c", c10: "#dc960a.#8c8c8c", c11: "#5a321e.#5a321e", c12: "#008c96.#f05a5a", c13: "#c882be.#c882be", c14: "#82508c.#82508c", c15: "#000000.#000000", c16: "#e6320a.#e6320a", c17: "#aa6432.#aa6432", c18: "#82461e.#82461e", c19: "#46505a.#46505a", c20: "#a0a0a0.#c882be", c21: "#ffffff.#f0f0f0", c22: "#dcd2dc.#f0f0f0", c23: "#141414.#000000", c24: "#0a0a0a.#000000", c25: "#5a505a.#46505a", c26: "#fafafa.#f0f0f0", c27: "#5a8cf0.#c882be", c28: "#96c8ff.#f0f0f0", c29: "#506ed2.#82508c", c30: "#0a2878.#782828", c31: "#466ec8.#82508c", c32: "#b4e6ff.#f0f0f0", c33: "#a0c8ff.#f0f0f0", c34: "#78a0fa.#c882be", c35: "#5064be.#82508c", c36: "#143278.#782828", c37: "#78aaff.#c882be", c38: "#142878.#782828", c39: "#fafaff.#f0f0f0", c40: "#820a3c.#5a321e", c41: "#b40a46.#463c3c", c42: "#78c8ff.#c882be", c43: "#3c5aff.#f05a5a", c44: "#dcdcdc.#f0f0f0", c45: "#78a0ff.#c882be", c46: "#143282.#dc283c", c47: "#5a5a5a.#46505a", c48: "#465aff.#82508c", c49: "#82c8ff.#f0f0f0", c50: "#5064c8.#82508c", c51: "#78bef0.#c882be", c52: "#1e3c8c.#dc283c", c53: "#141e78.#782828", c54: "#5082c8.#82508c", c55: "#b40a50.#463c3c", c56: "#820a32.#5a321e", c57: "#a096a0.#c882be", c58: "#78d2ff.#f0f0f0" },
454 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#be7832.#be7832", c6: "#fadc78.#fadc78", c7: "#783c78.#822832", c8: "#be8cbe.#f06e50", c9: "#dcaa28.#dcaa28", c10: "#9664a0.#d2465a", c11: "#141414.#141414", c12: "#325a82.#821e50", c13: "#6496b4.#c83c78", c14: "#dcb4d2.#faa078", c15: "#a0dcd2.#e66ea0", c16: "#fafafa.#fafafa", c17: "#a05a46.#be7832", c18: "#5a3c1e.#141414", c19: "#fff0be.#fafafa", c20: "#f0be8c.#fadc78", c21: "#f0a03c.#dcaa28", c22: "#0a0a0a.#141414", c23: "#dc783c.#be7832", c24: "#dc6e3c.#be7832", c25: "#146e64.#821e50", c26: "#fabe5a.#fadc78", c27: "#143c32.#141414", c28: "#c8c8c8.#faa078", c29: "#aa8c3c.#be7832", c30: "#1ea078.#821e50", c31: "#e6a028.#dcaa28", c32: "#fae6b4.#fadc78", c33: "#e6963c.#dcaa28", c34: "#ffffff.#fafafa", c35: "#e6b48c.#fadc78", c36: "#f0b45a.#fadc78", c37: "#828282.#d2465a", c38: "#787878.#d2465a", c39: "#146464.#821e50", c40: "#3c786e.#821e50", c41: "#965a46.#be7832", c42: "#646464.#822832", c43: "#b46e5a.#be7832", c44: "#d2d2dc.#faa078", c45: "#643214.#141414", c46: "#966e3c.#be7832", c47: "#b45014.#be7832", c48: "#ffa028.#dcaa28", c49: "#fabe8c.#fadc78", c50: "#827846.#be7832", c51: "#fa7832.#dcaa28", c52: "#a05a0a.#be7832", c53: "#a05a50.#be7832", c54: "#b45a46.#be7832", c55: "#ffbe50.#fadc78", c56: "#d2821e.#be7832", c57: "#dc8c32.#dcaa28", c58: "#0a785a.#821e50", c59: "#e6d2a0.#fadc78", c60: "#d2d2d2.#faa078", c61: "#0a5a3c.#821e50", c62: "#0a6e64.#821e50", c63: "#0a3c28.#141414", c64: "#5a3c28.#141414", c65: "#0aa078.#821e50", c66: "#b4b4b4.#f06e50", c67: "#f0b450.#dcaa28", c68: "#ff9628.#dcaa28", c69: "#ffb450.#dcaa28", c70: "#0a3c32.#141414", c71: "#ffd26e.#fadc78", c72: "#e6823c.#be7832", c73: "#50c896.#c83c78", c74: "#1e6e64.#821e50", c75: "#c8a06e.#be7832", c76: "#28aa78.#821e50", c77: "#6e6e6e.#822832", c78: "#dcdcdc.#faa078", c79: "#144632.#141414", c80: "#faf0c8.#fafafa", c81: "#c8b482.#fadc78", c82: "#b48c3c.#be7832", c83: "#b46482.#d2465a", c84: "#fffae6.#fafafa", c85: "#f08c96.#f06e50", c86: "#aaaaaa.#f06e50", c87: "#aa8c46.#be7832", c88: "#f0f0f0.#fafafa", c89: "#a0466e.#822832", c90: "#781e3c.#822832", c91: "#d282aa.#f06e50", c92: "#be648c.#d2465a", c93: "#6ea014.#be7832", c94: "#8cc814.#dcaa28", c95: "#32780a.#141414", c96: "#a0a0a0.#f06e50", c97: "#6e5a32.#822832", c98: "#d28c28.#be7832", c99: "#5a321e.#141414", c100: "#f0aa50.#dcaa28", c101: "#d28c32.#be7832", c102: "#ffc86e.#fadc78", c103: "#f0b446.#dcaa28" },
455 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#963c32.#a03c32", c6: "#141414.#141414", c7: "#f08c50.#f09664", c8: "#e65028.#e65a32", c9: "#6e96c8.#be465a", c10: "#465a82.#8c1e3c", c11: "#96d2dc.#dc6e8c", c12: "#6e1e6e.#8c3c3c", c13: "#dc6ea0.#faaa82", c14: "#14143c.#141e28", c15: "#3c3c6e.#28323c", c16: "#505a96.#324650", c17: "#b44696.#dc6478", c18: "#b44696.#963c6e", c19: "#823c78.#963c6e", c20: "#dcaa00.#dcaa00", c21: "#8c7896.#dc6478", c22: "#beaac8.#dc6e8c", c23: "#dcc8fa.#dc6e8c", c24: "#ffffff.#dc6e8c", c25: "#f0e6ff.#dc6e8c", c26: "#323c46.#28323c", c27: "#6e78a0.#324650", c28: "#505a78.#8c1e3c", c29: "#fafafa.#dc6e8c", c30: "#82460a.#a03c32", c31: "#b46414.#e65a32", c32: "#ffc846.#f09664", c33: "#e6961e.#dcaa00", c34: "#fffaa0.#dc6e8c", c35: "#0a0a0a.#141414", c36: "#a00a0a.#a03c32", c37: "#d21432.#e65a32", c38: "#ff966e.#f09664", c39: "#dcd2fa.#dc6e8c", c40: "#aa96b4.#be465a", c41: "#ffd246.#f09664", c42: "#1e1e1e.#141414", c43: "#96a0aa.#be465a", c44: "#64646e.#8c1e3c", c45: "#d21428.#e65a32", c46: "#faa014.#dcaa00" },
456 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#824614.#465a1e", c6: "#f08c28.#aac83c", c7: "#be6e1e.#829632", c8: "#141414.#141414", c9: "#50c8a0.#8c78c8", c10: "#3c9678.#645a96", c11: "#286450.#463c64", c12: "#dca01e.#dca01e", c13: "#ffdc28.#ffdc28", c14: "#781e28.#282828", c15: "#dc3250.#5a5a5a", c16: "#aa283c.#3c3c3c", c17: "#bebebe.#96323c", c18: "#787878.#5a1e28", c19: "#fafafa.#c83c50", c20: "#286450.#141414", c21: "#8278a0.#5a1e28", c22: "#3c3c50.#463c64", c23: "#dcd2e6.#96323c", c24: "#b4aac8.#96323c", c25: "#0a0a0a.#141414", c26: "#f0e6f0.#c83c50", c27: "#3c1e50.#282828", c28: "#963cbe.#5a1e28", c29: "#b446f0.#96323c", c30: "#6e32a0.#5a1e28", c31: "#ffffff.#c83c50", c32: "#9646be.#5a1e28", c33: "#d2648c.#5a5a5a", c34: "#b45a82.#5a1e28", c35: "#e678aa.#96323c", c36: "#505064.#463c64", c37: "#dcdcf0.#c83c50", c38: "#0a0a14.#141414", c39: "#b4b4d2.#96323c", c40: "#dcb4fa.#96323c", c41: "#6e328c.#5a1e28", c42: "#8c5aaa.#5a1e28", c43: "#b482d2.#96323c", c44: "#281e28.#141414", c45: "#b4a0d2.#96323c", c46: "#140a28.#141414", c47: "#786e8c.#5a1e28", c48: "#aa5adc.#96323c", c49: "#643c8c.#5a1e28", c50: "#e6e6f0.#c83c50", c51: "#aa8cb4.#96323c", c52: "#c8bedc.#96323c", c53: "#dcd2f0.#c83c50", c54: "#b4a0c8.#96323c", c55: "#f0f0fa.#c83c50", c56: "#b4b4b4.#96323c", c57: "#502878.#463c64", c58: "#280a50.#141414", c59: "#6e6e82.#5a1e28", c60: "#828282.#5a1e28", c61: "#5a5a5a.#463c64", c62: "#dcdcdc.#96323c", c63: "#a050dc.#5a1e28", c64: "#b45ae6.#96323c", c65: "#be6ef0.#96323c", c66: "#7828aa.#5a1e28", c67: "#8c3cc8.#5a1e28", c68: "#645064.#5a1e28", c69: "#3c3246.#463c64", c70: "#aa96aa.#96323c", c71: "#d2c8d2.#96323c", c72: "#8c788c.#5a1e28", c73: "#b4aabe.#96323c", c74: "#827896.#5a1e28", c75: "#645096.#5a1e28", c76: "#9664be.#5a1e28", c77: "#dcd2dc.#96323c", c78: "#783c82.#5a1e28", c79: "#aa50be.#5a1e28", c80: "#e6dce6.#c83c50", c81: "#503c6e.#463c64", c82: "#280a46.#141414", c83: "#b464c8.#96323c" },
457 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#8c6e3c.#966e28", c7: "#ffe63c.#ffff5a", c8: "#fabe14.#ffd214", c9: "#1e5000.#825a00", c10: "#64be6e.#f07864", c11: "#329646.#c8463c", c12: "#146e32.#a03214", c13: "#96c850.#dcaa3c", c14: "#78a03c.#be9614", c15: "#bedc78.#fac86e", c16: "#467814.#a07800", c17: "#003c14.#781e14", c18: "#f082b4.#fac86e", c19: "#fad2f0.#ffffff", c20: "#fab4d2.#ffffff", c21: "#6e325a.#966e28", c22: "#5a2850.#966e28", c23: "#ffb4d2.#ffffff", c24: "#ffd2f0.#ffffff", c25: "#b46496.#966e28", c26: "#0a0a0a.#141414", c27: "#143c6e.#a03214", c28: "#c8c8c8.#fac86e", c29: "#2864e6.#f07864", c30: "#82aafa.#f07864", c31: "#c86eaa.#fac86e", c32: "#fafafa.#ffffff", c33: "#14141e.#141414", c34: "#a0328c.#966e28", c35: "#142850.#141414", c36: "#aa3228.#966e28", c37: "#c86464.#966e28", c38: "#fabec8.#ffffff", c39: "#282828.#141414", c40: "#a03c3c.#966e28", c41: "#d24650.#966e28", c42: "#0aaad2.#f07864", c43: "#fac8a0.#fac86e", c44: "#146e96.#c8463c", c45: "#46bee6.#f07864", c46: "#0a78c8.#c8463c", c47: "#82641e.#966e28", c48: "#14c8f0.#f07864", c49: "#96d2f0.#ffffff", c50: "#64d2f0.#f07864", c51: "#b48246.#966e28", c52: "#dcb46e.#fac86e", c53: "#f0f0f0.#ffffff", c54: "#ff8c6e.#ffff5a", c55: "#e6b48c.#fac86e", c56: "#dc966e.#fac86e", c57: "#fab482.#fac86e", c58: "#6e285a.#966e28", c59: "#14326e.#a03214", c60: "#0aaadc.#f07864", c61: "#0a3282.#a03214", c62: "#0a8296.#c8463c", c63: "#c8503c.#966e28", c64: "#e68264.#966e28", c65: "#ffb496.#fac86e", c66: "#ffa078.#fac86e" },
458 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#1e5000.#785a00", c6: "#141414.#141414", c7: "#8cbe64.#d2aa64", c8: "#64b46e.#e68264", c9: "#467814.#a07814", c10: "#329650.#8c281e", c11: "#146e1e.#780a00", c12: "#46a050.#c86e50", c13: "#a0d278.#f0d282", c14: "#8c6e3c.#8c6e3c", c15: "#505050.#6e6e6e", c16: "#fac800.#fac800", c17: "#78a064.#be8c28", c18: "#bef082.#fff0a0", c19: "#506428.#a07814", c20: "#78aa32.#be8c28", c21: "#a0d246.#d2aa64", c22: "#a0dc50.#d2aa64", c23: "#fafafa.#fff0a0", c24: "#0a0a0a.#141414", c25: "#503c14.#785a00", c26: "#b4a046.#d2aa64", c27: "#8c783c.#8c6e3c", c28: "#648c28.#a07814", c29: "#46641e.#a07814", c30: "#783c14.#8c6e3c", c31: "#e6aa5a.#f0d282", c32: "#a06e1e.#8c6e3c", c33: "#ffdc6e.#fff0a0", c34: "#fff0a0.#fff0a0", c35: "#ffffff.#fff0a0", c36: "#784614.#8c6e3c", c37: "#c8c8c8.#fff0a0", c38: "#785014.#8c6e3c", c39: "#aa6e28.#8c6e3c", c40: "#646464.#6e6e6e", c41: "#504614.#a07814", c42: "#8c7846.#8c6e3c", c43: "#d28c82.#f0d282", c44: "#6e3c3c.#6e6e6e", c45: "#b4a050.#d2aa64", c46: "#fab4a0.#fff0a0", c47: "#5a5a64.#6e6e6e", c48: "#78aa28.#be8c28", c49: "#beff78.#fff0a0", c50: "#286432.#780a00", c51: "#3ca046.#c86e50", c52: "#8ce678.#f0d282", c53: "#50be64.#e68264", c54: "#78500a.#8c6e3c", c55: "#fffa8c.#fff0a0", c56: "#ffffd2.#fff0a0", c57: "#ffffc8.#fff0a0", c58: "#5a463c.#6e6e6e", c59: "#d2be6e.#f0d282", c60: "#faf0b4.#fff0a0", c61: "#8c8232.#8c6e3c", c62: "#503c0a.#785a00", c63: "#c86e8c.#8c6e3c", c64: "#967864.#8c6e3c", c65: "#f0a0c8.#fff0a0", c66: "#c8b4a0.#f0d282" },
459 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#fafafa.#fafafa", c7: "#823232.#826e14", c8: "#f06464.#ffdc28", c9: "#b44646.#bea01e", c10: "#3c3c32.#282828", c11: "#dcd2b4.#8c8c96", c12: "#646450.#3c3c3c", c13: "#968c78.#5a5a64", c14: "#aadcd2.#50b4dc", c15: "#648c28.#3c3c3c", c16: "#3c5a14.#282828", c17: "#6eb428.#3c3c3c", c18: "#82e632.#5a5a64", c19: "#0a0a0a.#141414", c20: "#3c6414.#282828", c21: "#283c14.#282828", c22: "#466414.#282828", c23: "#a0fa5a.#5a5a64", c24: "#d2fa8c.#8c8c96", c25: "#829650.#5a5a64", c26: "#b4c86e.#5a5a64", c27: "#f0ffc8.#fafafa", c28: "#6e8c14.#3c3c3c", c29: "#d2fa78.#8c8c96", c30: "#3c5a0a.#282828", c31: "#fafadc.#fafafa", c32: "#465a14.#282828", c33: "#c82828.#bea01e", c34: "#ffffff.#fafafa", c35: "#c8c8c8.#8c8c96", c36: "#643c5a.#3c3c3c", c37: "#b4d26e.#5a5a64", c38: "#aa1414.#826e14", c39: "#c8786e.#ffdc28", c40: "#c83232.#bea01e", c41: "#f07878.#ffdc28", c42: "#64465a.#3c3c3c", c43: "#642832.#826e14", c44: "#a01e1e.#826e14", c45: "#e6ffa0.#8c8c96", c46: "#b4d264.#5a5a64", c47: "#6e8c46.#3c3c3c", c48: "#505a28.#282828", c49: "#aad25a.#5a5a64", c50: "#d2dcc8.#8c8c96", c51: "#6ea00a.#3c3c3c", c52: "#46640a.#282828", c53: "#aae632.#5a5a64", c54: "#82e628.#5a5a64", c55: "#aac86e.#5a5a64", c56: "#646414.#3c3c3c", c57: "#dcd264.#8c8c96", c58: "#460a0a.#141414", c59: "#beb43c.#5a5a64", c60: "#fae6a0.#8c8c96", c61: "#c85a50.#bea01e", c62: "#dcdcdc.#8c8c96", c63: "#fafffa.#fafafa", c64: "#dcfa8c.#8c8c96", c65: "#82506e.#3c3c3c", c66: "#646464.#3c3c3c", c67: "#788c14.#3c3c3c", c68: "#faffdc.#fafafa", c69: "#aac85a.#5a5a64" },
460 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#823232.#826e14", c6: "#b44646.#bea01e", c7: "#f06464.#ffdc28", c8: "#141414.#141414", c9: "#78501e.#3c3c3c", c10: "#aa6e3c.#5a5a64", c11: "#f0aa64.#8c8c96", c12: "#aadcf0.#aadcf0", c13: "#f0d2dc.#f0d2dc", c14: "#503214.#282828", c15: "#fafafa.#50b4dc", c16: "#28500a.#282828", c17: "#50780a.#3c3c3c", c18: "#8cbe32.#5a5a64", c19: "#6ea014.#3c3c3c", c20: "#a08214.#5a5a64", c21: "#6e500a.#3c3c3c", c22: "#fae646.#8c8c96", c23: "#dcbe28.#8c8c96", c24: "#ffff8c.#f0d2dc", c25: "#8cbe28.#5a5a64", c26: "#0a0a0a.#141414", c27: "#ffffff.#50b4dc", c28: "#aa320a.#826e14", c29: "#d28c50.#8c8c96", c30: "#646464.#3c3c3c", c31: "#aa8214.#5a5a64", c32: "#c8c8c8.#f0d2dc", c33: "#6ea00a.#3c3c3c", c34: "#d2320a.#bea01e", c35: "#dc8c50.#8c8c96", c36: "#a0a08c.#8c8c96", c37: "#a0a082.#8c8c96", c38: "#96a082.#5a5a64", c39: "#b48232.#5a5a64", c40: "#fae6a0.#f0d2dc", c41: "#dcb46e.#8c8c96", c42: "#d23c0a.#bea01e", c43: "#faf0d2.#f0d2dc" },
461 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#b47882.#b47882", c6: "#ffbec8.#ffbec8", c7: "#fff0b4.#fafabe", c8: "#82b4c8.#b4c8c8", c9: "#aadcff.#e6faf0", c10: "#c8c8c8.#c8c8c8", c11: "#141414.#141414", c12: "#32b4f0.#28f0ff", c13: "#1e78aa.#28a0aa", c14: "#fafafa.#fafafa", c15: "#506e82.#6e6e82", c16: "#fafafa.#8cbee6", c17: "#bebebe.#6e96be", c18: "#64460a.#141414", c19: "#ffdc1e.#fafabe", c20: "#e6aa0a.#b47882", c21: "#645a0a.#141414", c22: "#bea00a.#b47882", c23: "#0a0a0a.#141414", c24: "#147832.#6e6e82", c25: "#a0e650.#6e96be", c26: "#beff78.#fafabe", c27: "#ffffff.#fafafa", c28: "#466e14.#141414", c29: "#64be3c.#6e6e82", c30: "#6eb432.#6e6e82", c31: "#64be46.#6e6e82", c32: "#78143c.#141414", c33: "#147828.#141414", c34: "#b4b4d2.#6e96be", c35: "#6eaa3c.#6e6e82", c36: "#faa0a0.#ffbec8", c37: "#d21e3c.#b47882", c38: "#ff3c5a.#b47882", c39: "#8cdc32.#b47882", c40: "#82c83c.#b47882", c41: "#c81e3c.#b47882", c42: "#fff032.#fafabe", c43: "#a07846.#b47882", c44: "#a0465a.#b47882", c45: "#820a1e.#141414", c46: "#b41e32.#b47882", c47: "#e62828.#b47882", c48: "#505050.#6e6e82", c49: "#f0c814.#b47882", c50: "#6e646e.#6e6e82", c51: "#d2f0f0.#fafafa", c52: "#aab4b4.#6e96be", c53: "#6e6e6e.#6e6e82", c54: "#beaab4.#6e96be", c55: "#ffdc14.#fafabe", c56: "#d2d2d2.#c8c8c8", c57: "#0a7828.#141414", c58: "#a0b45a.#b47882", c59: "#50641e.#141414", c60: "#8cdc28.#b47882", c61: "#dcf08c.#fafabe", c62: "#bed26e.#6e96be", c63: "#780a32.#141414", c64: "#faaaa0.#ffbec8", c65: "#ff325a.#b47882", c66: "#fafaf0.#fafafa", c67: "#d2c864.#b47882", c68: "#d21432.#b47882", c69: "#fae6e6.#fafafa", c70: "#f0e6dc.#fafafa" },
462 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#6e7896.#6e7896", c6: "#c8d2f0.#c8d2f0", c7: "#fff0b4.#fafabe", c8: "#aab4d2.#aab4d2", c9: "#e6d28c.#dcdca0", c10: "#505a8c.#6e6e78", c11: "#328cb4.#28a0aa", c12: "#82a0dc.#e6faf0", c13: "#fafafa.#e6faf0", c14: "#50c8ff.#28f0ff", c15: "#141414.#141414", c16: "#6478aa.#b4c8c8", c17: "#96b4be.#6e96be", c18: "#506e78.#3c5a78", c19: "#d2f0f0.#8cbee6", c20: "#dc0a0a.#141414", c21: "#ff5a0a.#dcdca0", c22: "#fa3c0a.#dcdca0", c23: "#faa00a.#dcdca0", c24: "#fadc14.#dcdca0", c25: "#283c64.#6e6e78", c26: "#3c508c.#6e6e78", c27: "#6482b4.#b4c8c8", c28: "#285050.#3c5a78", c29: "#143c46.#141414", c30: "#6482a0.#b4c8c8", c31: "#3c6478.#3c5a78", c32: "#dcc864.#dcdca0", c33: "#ffa00a.#dcdca0", c34: "#fae6a0.#fafabe", c35: "#ffdc0a.#dcdca0", c36: "#8c641e.#3c5a78", c37: "#c8a06e.#dcdca0", c38: "#fff0a0.#fafabe", c39: "#78641e.#3c5a78", c40: "#b49650.#dcdca0", c41: "#0a0a0a.#141414", c42: "#e6c86e.#dcdca0", c43: "#ffffff.#e6faf0", c44: "#b45046.#6e7896", c45: "#aaaaaa.#6e96be", c46: "#ff3c0a.#dcdca0", c47: "#6482be.#b4c8c8", c48: "#ffdc14.#dcdca0", c49: "#326e82.#3c5a78", c50: "#143c50.#141414", c51: "#64aabe.#e6faf0", c52: "#fffaa0.#fafabe", c53: "#c8aa50.#dcdca0", c54: "#fff0aa.#fafabe", c55: "#e6d26e.#dcdca0", c56: "#0a648c.#28a0aa", c57: "#d2aa50.#dcdca0" },
463 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#783c46.#28506e", c6: "#dcaa8c.#96c8e6", c7: "#b47864.#6496c8", c8: "#141414.#141414", c9: "#826e50.#826e50", c10: "#644632.#644632", c11: "#322814.#322814", c12: "#f0968c.#f0968c", c13: "#826e5a.#826e5a", c14: "#f0e6dc.#f0e6dc", c15: "#c8b4aa.#c8b4aa", c16: "#5aaae6.#b4be32", c17: "#fafafa.#fafafa", c18: "#dc0a0a.#28506e", c19: "#ff5a0a.#6496c8", c20: "#ffd20a.#96c8e6", c21: "#ffa00a.#6496c8", c22: "#142850.#141414", c23: "#284664.#644632", c24: "#46508c.#826e5a", c25: "#3c508c.#826e5a", c26: "#141e3c.#141414", c27: "#a0a0a0.#c8b4aa", c28: "#5a6eb4.#b4be32", c29: "#ffffff.#fafafa", c30: "#283c64.#644632", c31: "#8c641e.#826e50", c32: "#fff0a0.#f0e6dc", c33: "#e6d26e.#96c8e6", c34: "#e6c86e.#96c8e6", c35: "#b4a050.#6496c8", c36: "#b45a64.#6496c8", c37: "#dc7878.#f0968c", c38: "#b4b4b4.#c8b4aa", c39: "#6482b4.#b4be32", c40: "#0a0a0a.#141414", c41: "#146482.#644632", c42: "#323c6e.#644632", c43: "#3ca0aa.#b4be32", c44: "#28646e.#644632", c45: "#3c8c96.#b4be32", c46: "#fae6b4.#f0e6dc" },
464 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#322814.#322814", c6: "#826e50.#826e50", c7: "#826e5a.#826e5a", c8: "#141414.#141414", c9: "#644632.#644632", c10: "#f0e6dc.#f0e6dc", c11: "#8c5a46.#3c4664", c12: "#c88c78.#6478b4", c13: "#e6beaa.#8caac8", c14: "#faa08c.#faa08c", c15: "#c8b4aa.#c8b4aa", c16: "#fafafa.#fafafa", c17: "#46aadc.#b4d228", c18: "#c8c8b4.#c8c8b4", c19: "#dc0a0a.#3c4664", c20: "#ff640a.#6478b4", c21: "#5a461e.#644632", c22: "#1e3c6e.#644632", c23: "#fae6aa.#8caac8", c24: "#a08c46.#826e50", c25: "#d2b478.#6478b4", c26: "#0a1e5a.#141414", c27: "#ffa00a.#6478b4", c28: "#be3264.#3c4664", c29: "#ffffff.#fafafa", c30: "#ffdc0a.#faa08c", c31: "#3c5a96.#826e5a", c32: "#fadc0a.#faa08c", c33: "#fff096.#8caac8", c34: "#f06446.#6478b4", c35: "#fae60a.#faa08c", c36: "#e60a0a.#3c4664", c37: "#0a0a0a.#141414", c38: "#0a0a14.#141414", c39: "#fa640a.#3c4664", c40: "#5a78be.#b4d228", c41: "#0a1e50.#141414", c42: "#283c64.#644632", c43: "#6e5028.#644632", c44: "#d2c878.#8caac8", c45: "#d2c86e.#6478b4", c46: "#faf096.#8caac8", c47: "#be325a.#3c4664", c48: "#782828.#644632", c49: "#b4503c.#3c4664", c50: "#0a0a46.#141414", c51: "#3c82a0.#b4d228", c52: "#286478.#826e5a", c53: "#143c46.#322814", c54: "#3c828c.#826e5a", c55: "#323c6e.#644632", c56: "#dcc86e.#faa08c", c57: "#faf0a0.#8caac8" },
465 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#826e5a.#826e5a", c6: "#f0e6dc.#f0e6dc", c7: "#141414.#141414", c8: "#c8b4aa.#c8b4aa", c9: "#640014.#0a1e32", c10: "#e6003c.#28648c", c11: "#aa0028.#1e465a", c12: "#826e50.#826e50", c13: "#644632.#644632", c14: "#322814.#322814", c15: "#fa2832.#fa286e", c16: "#96000a.#8c145a", c17: "#fafafa.#fafafa", c18: "#325a82.#826e5a", c19: "#96d2ff.#f0e6dc", c20: "#6eb4e6.#c8b4aa", c21: "#0a0a0a.#141414", c22: "#3282c8.#826e5a", c23: "#b4b4b4.#c8b4aa", c24: "#ffffff.#fafafa", c25: "#f05a50.#fa286e", c26: "#464650.#644632", c27: "#78140a.#0a1e32", c28: "#e67878.#c8b4aa", c29: "#e6645a.#fa286e", c30: "#b44650.#826e50", c31: "#c83c1e.#fa286e", c32: "#64b4e6.#c8b4aa", c33: "#780a0a.#0a1e32", c34: "#64646e.#826e5a", c35: "#ffc850.#c8b4aa", c36: "#f0785a.#fa286e", c37: "#aa8228.#826e50", c38: "#3c3c3c.#644632", c39: "#0a140a.#141414", c40: "#c8461e.#fa286e", c41: "#285a82.#826e5a", c42: "#a0e6ff.#f0e6dc", c43: "#ff6446.#fa286e", c44: "#2882c8.#826e5a", c45: "#be1428.#1e465a", c46: "#506e78.#826e5a", c47: "#d23c1e.#fa286e", c48: "#96821e.#826e50", c49: "#f0e646.#c8b4aa" },
466 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c3c32.#3c3c3c", c6: "#82786e.#787878", c7: "#141414.#141414", c8: "#645a50.#5a5a64", c9: "#467832.#3c6478", c10: "#78b45a.#78aaa0", c11: "#c8faa0.#a0fac8", c12: "#c8b496.#beaaa0", c13: "#fffffa.#fffffa", c14: "#3c8c78.#32a01e", c15: "#96785a.#82786e", c16: "#32c8a0.#6edc46", c17: "#dc788c.#dc788c", c18: "#b45064.#b45064", c19: "#5a5050.#505050", c20: "#820a0a.#3c3c3c", c21: "#ff8c82.#dc788c", c22: "#fa505a.#dc788c", c23: "#d2283c.#b45064", c24: "#c8283c.#b45064", c25: "#783228.#505050", c26: "#3c4682.#505050", c27: "#5aaae6.#6edc46", c28: "#3282c8.#6edc46", c29: "#e63c1e.#b45064", c30: "#ffffff.#fffffa", c31: "#dc8c8c.#dc788c", c32: "#82c8ff.#6edc46", c33: "#328caa.#32a01e", c34: "#aad2dc.#a0fac8", c35: "#1e5a6e.#32a01e", c36: "#d2645a.#b45064", c37: "#6e500a.#3c3c3c", c38: "#d2be64.#beaaa0", c39: "#ffe68c.#a0fac8", c40: "#78c8d2.#6edc46", c41: "#50aabe.#6edc46", c42: "#780a0a.#3c3c3c", c43: "#c83c3c.#b45064", c44: "#325a6e.#505050", c45: "#145a6e.#32a01e", c46: "#288caa.#32a01e", c47: "#b46464.#b45064", c48: "#c8b464.#beaaa0", c49: "#508c96.#32a01e", c50: "#6ed2dc.#6edc46", c51: "#c8be64.#beaaa0", c52: "#82bec8.#beaaa0", c53: "#142850.#3c3c3c", c54: "#b4e6dc.#a0fac8", c55: "#78140a.#3c3c3c", c56: "#b44650.#b45064", c57: "#e67878.#dc788c", c58: "#645a32.#5a5a64", c59: "#d2b464.#beaaa0", c60: "#aa6464.#b45064", c61: "#f0e68c.#a0fac8", c62: "#c8be6e.#beaaa0", c63: "#0a0a0a.#141414", c64: "#dcc85a.#beaaa0", c65: "#1e8caa.#32a01e", c66: "#a0141e.#b45064", c67: "#960a0a.#3c3c3c", c68: "#ffaa5a.#dc788c", c69: "#ff4646.#b45064", c70: "#ff5a1e.#b45064", c71: "#d21414.#b45064", c72: "#c82814.#b45064", c73: "#1e6478.#32a01e", c74: "#1e8cbe.#6edc46", c75: "#6ec8c8.#6edc46", c76: "#8cf0e6.#a0fac8", c77: "#8c640a.#5a5a64", c78: "#ffff64.#a0fac8", c79: "#f0b446.#beaaa0", c80: "#ffe664.#a0fac8", c81: "#a0780a.#82786e", c82: "#e6b450.#beaaa0" },
467 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#463c3c.#3c3c3c", c6: "#141414.#141414", c7: "#82786e.#787878", c8: "#aa503c.#b4288c", c9: "#783c3c.#3c1e32", c10: "#f07850.#f050c8", c11: "#645a50.#5a5a64", c12: "#3c3232.#3c3232", c13: "#fffffa.#ffffff", c14: "#c8b496.#beaaa0", c15: "#c8325a.#aa503c", c16: "#ff82aa.#f07850", c17: "#fa5078.#c8643c", c18: "#5a5050.#505050", c19: "#96785a.#82786e", c20: "#c8825a.#f050c8", c21: "#784632.#3c1e32", c22: "#fff0a0.#beaaa0", c23: "#a0645a.#82786e", c24: "#e6be64.#beaaa0", c25: "#3c2814.#3c3232", c26: "#be281e.#b4288c", c27: "#bebebe.#beaaa0", c28: "#ffaa78.#beaaa0", c29: "#f0643c.#f050c8", c30: "#d2825a.#f050c8", c31: "#fffabe.#ffffff", c32: "#826428.#3c1e32", c33: "#fadc8c.#beaaa0", c34: "#828282.#787878", c35: "#fafafa.#ffffff", c36: "#462814.#3c3232", c37: "#0a0a0a.#141414", c38: "#f06446.#f050c8", c39: "#c8a046.#f050c8", c40: "#784628.#3c1e32" },
468 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#6e5032.#6e5032", c6: "#141414.#141414", c7: "#fff0be.#fff0be", c8: "#aa965a.#aa965a", c9: "#ffd278.#ffd278", c10: "#c85aa0.#50aac8", c11: "#d28cc8.#8cd2c8", c12: "#8c3c78.#3c7882", c13: "#503c5a.#3c3c5a", c14: "#e6c8f0.#f0e6c8", c15: "#8296fa.#9646aa", c16: "#506eb4.#503278", c17: "#3c3c78.#3c1e46", c18: "#c8b4b4.#c8b4b4", c19: "#28468c.#3c1e46", c20: "#820a0a.#6e5032", c21: "#ff8c82.#ffd278", c22: "#0a0a0a.#141414", c23: "#c8c8c8.#c8b4b4", c24: "#fa505a.#50aac8", c25: "#8cd2ff.#9646aa", c26: "#5ab4fa.#9646aa", c27: "#144650.#3c1e46", c28: "#5a1e28.#6e5032", c29: "#5ab4f0.#9646aa", c30: "#8cd2fa.#9646aa", c31: "#3c8cc8.#503278", c32: "#f0505a.#50aac8", c33: "#fa8c82.#ffd278", c34: "#3c828c.#503278", c35: "#6eaab4.#503278", c36: "#3c6464.#3c1e46", c37: "#a03214.#6e5032", c38: "#dc5a46.#aa965a", c39: "#be323c.#3c7882", c40: "#960a0a.#6e5032", c41: "#c82814.#6e5032", c42: "#ffaa5a.#ffd278", c43: "#ff5a1e.#aa965a", c44: "#ffe68c.#ffd278", c45: "#8c8c8c.#aa965a", c46: "#6e500a.#6e5032", c47: "#bebebe.#c8b4b4", c48: "#3250a0.#3c1e46", c49: "#c8be64.#aa965a", c50: "#5a5a5a.#3c3c5a", c51: "#fafafa.#ffffff", c52: "#a0780a.#6e5032", c53: "#d2b432.#aa965a", c54: "#fadc8c.#ffd278", c55: "#64500a.#6e5032", c56: "#d2dcdc.#f0e6c8", c57: "#c8b464.#aa965a", c58: "#b4b4be.#c8b4b4", c59: "#825a0a.#6e5032", c60: "#0a6e96.#503278", c61: "#aa2828.#6e5032", c62: "#328cd2.#503278", c63: "#28a0be.#503278", c64: "#3cd2f0.#9646aa", c65: "#ff643c.#aa965a", c66: "#b42832.#6e5032", c67: "#ffdc78.#ffd278", c68: "#d2be64.#ffd278", c69: "#8c3c0a.#6e5032", c70: "#14285a.#3c1e46", c71: "#e67850.#aa965a", c72: "#8cf0ff.#9646aa", c73: "#505050.#3c3c5a", c74: "#969696.#aa965a", c75: "#286ea0.#503278", c76: "#aa3c5a.#3c7882", c77: "#ff82a0.#8cd2c8", c78: "#bee6ff.#f0e6c8" },
469 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#5a2864.#326e50", c6: "#82468c.#3ca064", c7: "#b45ab4.#6ed296", c8: "#141414.#141414", c9: "#dc5a8c.#b42828", c10: "#963250.#781414", c11: "#f08cb4.#e63c32", c12: "#32508c.#8c786e", c13: "#96d2dc.#e6dcd2", c14: "#5aa0c8.#c8b4a0", c15: "#d2aa3c.#c8a050", c16: "#f0e664.#f0d28c", c17: "#963250.#8c786e", c18: "#fafafa.#fafafa", c19: "#f08cb4.#fafafa", c20: "#969696.#969696", c21: "#5aa0c8.#e6dcd2", c22: "#8c826e.#969696", c23: "#50503c.#326e50", c24: "#ffffff.#fafafa", c25: "#c8c8d2.#e6dcd2", c26: "#e6e6f0.#fafafa", c27: "#8c8caa.#969696", c28: "#645a78.#3ca064", c29: "#282828.#141414", c30: "#966e5a.#781414", c31: "#503c14.#141414", c32: "#dcbe6e.#f0d28c", c33: "#c8a046.#c8a050", c34: "#0a0a0a.#141414", c35: "#a06e3c.#781414", c36: "#96dcdc.#e6dcd2", c37: "#6eb4be.#c8b4a0", c38: "#503214.#141414", c39: "#505032.#326e50", c40: "#c8aa8c.#969696", c41: "#50320a.#141414", c42: "#fad2b4.#e63c32", c43: "#d2aa8c.#e63c32", c44: "#b4bebe.#e6dcd2", c45: "#aa3c1e.#781414", c46: "#fa6e50.#b42828", c47: "#f08c6e.#b42828", c48: "#c8c8dc.#e6dcd2", c49: "#8c8264.#969696", c50: "#f0e6f0.#fafafa", c51: "#c8a050.#c8a050", c52: "#96b4a0.#969696", c53: "#fadcb4.#fafafa", c54: "#dcbe64.#f0d28c" },
470 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#a08c6e.#8296a0", c6: "#fafaf0.#f0f0fa", c7: "#dcd28c.#b4c8dc", c8: "#be8c28.#5a788c", c9: "#fafabe.#dce6f0", c10: "#faf064.#b4bedc", c11: "#dcb428.#82a0b4", c12: "#8c6428.#325a6e", c13: "#141414.#141414", c14: "#fa2828.#fa2828", c15: "#00bed2.#00bed2", c16: "#46321e.#505050", c17: "#3c0a0a.#141414", c18: "#643c32.#505050", c19: "#503c32.#505050", c20: "#3c1414.#141414", c21: "#783c14.#325a6e", c22: "#785a3c.#325a6e", c23: "#966e1e.#325a6e", c24: "#b41e3c.#fa2828", c25: "#c8786e.#8296a0", c26: "#dc3c46.#fa2828", c27: "#0a0a0a.#141414", c28: "#b41e14.#fa2828", c29: "#8c5a3c.#325a6e", c30: "#fa8278.#b4c8dc", c31: "#dc3c14.#fa2828", c32: "#b48c3c.#5a788c", c33: "#f0dca0.#b4c8dc", c34: "#e6c850.#82a0b4", c35: "#be8250.#5a788c", c36: "#c8a078.#8296a0", c37: "#be825a.#8296a0", c38: "#c8a082.#8296a0", c39: "#d2aa8c.#b4c8dc", c40: "#c8a03c.#5a788c", c41: "#966e46.#325a6e", c42: "#a07846.#325a6e", c43: "#5a280a.#141414", c44: "#32281e.#141414", c45: "#ffffff.#f0f0fa", c46: "#fffabe.#dce6f0", c47: "#c8c8c8.#b4c8dc" },
471 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#96780a.#be325a", c6: "#faf032.#ff78be", c7: "#141414.#141414", c8: "#fffac8.#ffb4dc", c9: "#dcdcdc.#dcfa3c", c10: "#6e6478.#787800", c11: "#aaa0aa.#aab414", c12: "#fafafa.#fafafa", c13: "#f03232.#f03232", c14: "#960a0a.#960a0a", c15: "#bec8c8.#bec8c8", c16: "#505050.#505046", c17: "#78786e.#78786e", c18: "#50281e.#141414", c19: "#e6c846.#ff78be", c20: "#783c3c.#505046", c21: "#1e1e28.#141414", c22: "#502828.#505046", c23: "#a06446.#78786e", c24: "#c8a03c.#be325a", c25: "#fff096.#ffb4dc", c26: "#aa8228.#be325a", c27: "#a06450.#78786e", c28: "#0a0a0a.#141414", c29: "#282828.#141414", c30: "#78463c.#505046", c31: "#e6c850.#ff78be", c32: "#ffffc8.#ffb4dc", c33: "#ffffff.#fafafa", c34: "#787878.#78786e", c35: "#a00a0a.#960a0a", c36: "#ff9664.#ff78be", c37: "#c8a046.#be325a", c38: "#783c32.#505046", c39: "#d2b46e.#aab414", c40: "#f0d2a0.#ffb4dc", c41: "#b46e5a.#78786e", c42: "#ff6e28.#f03232", c43: "#faffff.#fafafa", c44: "#e6be32.#ff78be" },
472 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#96780a.#a01e50", c6: "#f0dc46.#f08cb4", c7: "#141414.#141414", c8: "#fff0aa.#f0d2d2", c9: "#64645a.#78640a", c10: "#bebebe.#e6dc0a", c11: "#96968c.#aaa00a", c12: "#fafafa.#fafafa", c13: "#960a0a.#b40a28", c14: "#f03232.#f03c5a", c15: "#6e6464.#5a645a", c16: "#504646.#3c463c", c17: "#dcaa1e.#e65082", c18: "#0a0a0a.#141414", c19: "#3c3c3c.#3c463c", c20: "#a06e28.#a01e50", c21: "#785a50.#78640a", c22: "#50320a.#3c463c", c23: "#be8c3c.#e65082", c24: "#d2a078.#aaa00a", c25: "#784614.#a01e50", c26: "#a06e32.#a01e50", c27: "#c8a078.#aaa00a", c28: "#50280a.#141414", c29: "#6e2814.#b40a28", c30: "#fa6428.#f03c5a", c31: "#6e3214.#b40a28", c32: "#fa6432.#f03c5a", c33: "#be5a28.#a01e50", c34: "#f0aa96.#e6dc0a", c35: "#b42814.#b40a28", c36: "#dcbea0.#e6dc0a", c37: "#ffe6c8.#f0d2d2", c38: "#be501e.#a01e50", c39: "#ffffff.#fafafa", c40: "#787878.#5a645a", c41: "#ff5a1e.#f03c5a", c42: "#a06432.#a01e50", c43: "#c8c8c8.#e6dc0a", c44: "#464646.#3c463c", c45: "#be8c46.#e65082" },
473 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#8c5a00.#a01e50", c6: "#141414.#141414", c7: "#f0dc46.#f08cb4", c8: "#c8a01e.#e65082", c9: "#fafafa.#fafafa", c10: "#c80a14.#b40a28", c11: "#c8a01e.#a09600", c12: "#aaa0a0.#c8d200", c13: "#f03232.#f02850", c14: "#504646.#3c463c", c15: "#d2d2d2.#e6f0b4", c16: "#504646.#50640a", c17: "#a06400.#dc1e5a", c18: "#82786e.#a0a00a", c19: "#282828.#283228", c20: "#3c281e.#283228", c21: "#0a0a0a.#141414", c22: "#a0826e.#a0a00a", c23: "#785a46.#3c463c", c24: "#fffab4.#e6f0b4", c25: "#643c32.#3c463c", c26: "#a0785a.#a0a00a", c27: "#f0dc6e.#f08cb4", c28: "#be9664.#c8d200", c29: "#dcb46e.#f08cb4", c30: "#644632.#3c463c", c31: "#46281e.#283228", c32: "#f0d28c.#f08cb4", c33: "#b47850.#a0a00a", c34: "#f0dcaa.#e6f0b4", c35: "#dcb48c.#c8d200", c36: "#c8c8c8.#e6f0b4", c37: "#c83214.#b40a28", c38: "#ffffff.#fafafa", c39: "#d25a46.#f02850", c40: "#ff4628.#f02850", c41: "#c88c6e.#c8d200", c42: "#646464.#a0a00a", c43: "#be3214.#b40a28", c44: "#960a0a.#b40a28", c45: "#bebebe.#e6f0b4", c46: "#8c5a3c.#a0a00a", c47: "#828282.#a0a00a", c48: "#a08264.#a0a00a", c49: "#e6d228.#f08cb4", c50: "#281e14.#141414", c51: "#aa7846.#a0a00a", c52: "#dcc85a.#f08cb4", c53: "#d29664.#e65082", c54: "#a00a0a.#b40a28", c55: "#965a3c.#a01e50" },
474 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#463250.#821e0a", c6: "#aa5a96.#e63c3c", c7: "#6e3c6e.#aa1e1e", c8: "#0a0a0a.#0a0a0a", c9: "#3c5050.#64786e", c10: "#bed2d2.#e6f0e6", c11: "#5a7878.#829696", c12: "#827878.#827878", c13: "#8ca0a0.#aab4b4", c14: "#f0e650.#f0e650", c15: "#fafafa.#fafafa", c16: "#141414.#0a0a0a", c17: "#5a5050.#64786e", c18: "#6e2814.#821e0a", c19: "#fa5a14.#e63c3c", c20: "#282828.#821e0a", c21: "#b43c28.#aa1e1e", c22: "#b44632.#aa1e1e", c23: "#b43c32.#aa1e1e", c24: "#b4e6e6.#e6f0e6", c25: "#ffa01e.#f0e650", c26: "#d2f0f0.#fafafa", c27: "#b4d2dc.#e6f0e6", c28: "#d2d2d2.#e6f0e6", c29: "#faffff.#fafafa", c30: "#aaa0a0.#aab4b4", c31: "#ffffff.#fafafa", c32: "#d2b478.#f0e650", c33: "#d2c8c8.#e6f0e6", c34: "#462878.#821e0a", c35: "#6e64b4.#829696", c36: "#a0780a.#827878", c37: "#8caabe.#aab4b4", c38: "#ffe6a0.#f0e650", c39: "#3c3232.#821e0a", c40: "#463278.#821e0a", c41: "#645a5a.#aa1e1e", c42: "#ffffbe.#fafafa", c43: "#960a0a.#821e0a", c44: "#be5050.#e63c3c", c45: "#965a14.#aa1e1e" },
475 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#506e5a.#5a505a", c6: "#c8dcc8.#e6e6e6", c7: "#141414.#141414", c8: "#82b48c.#aaaaaa", c9: "#468c6e.#2896d2", c10: "#822882.#780000", c11: "#c864d2.#ff2828", c12: "#966482.#966482", c13: "#5a645a.#5a645a", c14: "#be96aa.#be96aa", c15: "#784650.#784650", c16: "#3c4646.#3c4646", c17: "#505050.#5a645a", c18: "#0a0a0a.#141414", c19: "#781e14.#784650", c20: "#6e6e6e.#5a645a", c21: "#c83c5a.#966482", c22: "#ff463c.#966482", c23: "#ff8282.#be96aa", c24: "#ff5050.#966482", c25: "#ff5a50.#966482", c26: "#0a145a.#323232", c27: "#fae678.#e6e6e6", c28: "#0a6edc.#2896d2", c29: "#fafafa.#e6e6e6", c30: "#c8b43c.#aaaaaa", c31: "#ffffff.#e6e6e6", c32: "#0a1478.#323232", c33: "#0a146e.#323232", c34: "#a0780a.#784650", c35: "#0a6ee6.#2896d2", c36: "#b4b4b4.#be96aa", c37: "#d2d2d2.#e6e6e6", c38: "#0a3c78.#3c4646", c39: "#0a0a32.#141414", c40: "#0a82be.#2896d2", c41: "#dc4664.#966482", c42: "#0a466e.#3c4646", c43: "#d24664.#966482", c44: "#faf08c.#e6e6e6", c45: "#faf096.#e6e6e6", c46: "#28506e.#3c4646", c47: "#fae68c.#e6e6e6", c48: "#8c7832.#784650", c49: "#5a1414.#323232", c50: "#28140a.#141414", c51: "#5a141e.#323232", c52: "#500a0a.#141414", c53: "#5a2828.#323232", c54: "#3c1414.#141414", c55: "#b4b4aa.#be96aa", c56: "#787878.#966482", c57: "#281e1e.#141414", c58: "#1e1e1e.#141414", c59: "#6e6e50.#5a645a", c60: "#c83c50.#784650", c61: "#c83c46.#784650", c62: "#5a0a0a.#323232", c63: "#641e1e.#323232" },
476 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#283c28.#283c28", c6: "#468250.#468250", c7: "#5aaa64.#5aaa64", c8: "#141414.#141414", c9: "#325a46.#325a46", c10: "#64be96.#64be96", c11: "#509678.#509678", c12: "#96dcb4.#96dcb4", c13: "#82323c.#506428", c14: "#ffbec8.#fff0aa", c15: "#dc8c96.#c8be6e", c16: "#ff6482.#a0c850", c17: "#fafafa.#fafafa", c18: "#c85064.#78963c", c19: "#ffffff.#fafafa", c20: "#bec8c8.#96dcb4", c21: "#6e6e78.#509678", c22: "#144628.#283c28", c23: "#328c32.#468250", c24: "#966428.#506428", c25: "#50b46e.#5aaa64", c26: "#8ce632.#5aaa64", c27: "#ffe646.#c8be6e", c28: "#e6b414.#78963c", c29: "#78325a.#506428", c30: "#ff6450.#a0c850", c31: "#b43c5a.#78963c", c32: "#826e28.#506428", c33: "#324614.#283c28", c34: "#c8b414.#78963c", c35: "#507828.#468250", c36: "#aaf064.#96dcb4", c37: "#78323c.#506428", c38: "#64be1e.#5aaa64", c39: "#f05a5a.#78963c", c40: "#503c14.#283c28", c41: "#b43c46.#78963c", c42: "#96e646.#5aaa64", c43: "#783246.#506428", c44: "#b44646.#78963c", c45: "#466414.#283c28", c46: "#28283c.#283c28", c47: "#324650.#325a46", c48: "#3c646e.#325a46", c49: "#326464.#325a46", c50: "#b4f06e.#96dcb4", c51: "#787878.#509678", c52: "#bebec8.#96dcb4", c53: "#f03278.#a0c850", c54: "#ff82a0.#c8be6e", c55: "#782850.#506428", c56: "#f0645a.#a0c850" },
477 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#82323c.#506428", c6: "#ff6482.#a0c850", c7: "#ffbec8.#fff0aa", c8: "#325a46.#325a46", c9: "#dc8c96.#c8be6e", c10: "#64be96.#64be96", c11: "#141414.#141414", c12: "#c85064.#78963c", c13: "#3c3c3c.#3c3c3c", c14: "#fafafa.#fafafa", c15: "#82323c.#787878", c16: "#787878.#787878", c17: "#6e5014.#506428", c18: "#ffdc3c.#c8be6e", c19: "#0a0a0a.#141414", c20: "#825a0a.#506428", c21: "#5a3c0a.#3c3c3c", c22: "#6432a0.#787878", c23: "#c8b446.#c8be6e", c24: "#a05ac8.#c8be6e", c25: "#ffffff.#fafafa", c26: "#be82e6.#bebebe", c27: "#3c1e5a.#3c3c3c", c28: "#8c1e0a.#506428", c29: "#6e6e6e.#787878", c30: "#ff8c78.#a0c850", c31: "#ff5a46.#a0c850", c32: "#c83c3c.#78963c", c33: "#323232.#3c3c3c", c34: "#645014.#506428", c35: "#fadc3c.#c8be6e", c36: "#beb446.#c8be6e", c37: "#643296.#787878", c38: "#b482dc.#bebebe", c39: "#965abe.#787878", c40: "#7832a0.#787878", c41: "#646464.#787878", c42: "#fa5a46.#78963c", c43: "#fa8c6e.#a0c850", c44: "#be3c3c.#78963c", c45: "#b4b4b4.#bebebe", c46: "#966e28.#506428", c47: "#bea014.#78963c", c48: "#fae650.#c8be6e", c49: "#dcb446.#c8be6e", c50: "#965adc.#787878", c51: "#500a0a.#141414", c52: "#be8cf0.#bebebe", c53: "#78140a.#506428", c54: "#ff503c.#78963c", c55: "#5a5a5a.#325a46", c56: "#c83c46.#78963c", c57: "#c8323c.#78963c", c58: "#f05078.#a0c850", c59: "#f08ca0.#c8be6e" },
478 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#6496be.#6e78b4", c6: "#46465a.#323232", c7: "#fafafa.#fafafa", c8: "#8cc8ff.#8ca0f0", c9: "#325078.#325078", c10: "#8c8cb4.#64646e", c11: "#aaaadc.#8c8c96", c12: "#646482.#464650", c13: "#141414.#141414", c14: "#1eaadc.#1eaadc", c15: "#5a5a5a.#5a5a5a", c16: "#f0f0f0.#82dcf0", c17: "#bebebe.#64b4be", c18: "#5a2878.#323232", c19: "#aa5aff.#8c8c96", c20: "#0a3c6e.#325078", c21: "#0a0a0a.#141414", c22: "#46a0be.#6e78b4", c23: "#1e6e96.#325078", c24: "#641478.#323232", c25: "#7846a0.#464650", c26: "#b478c8.#64646e", c27: "#a05ac8.#64646e", c28: "#320a3c.#141414", c29: "#8246d2.#64646e", c30: "#d28cfa.#8c8c96", c31: "#8c50b4.#64646e", c32: "#6e3c8c.#464650", c33: "#e68cfa.#8c8c96", c34: "#8250aa.#464650", c35: "#c85ac8.#64646e", c36: "#784696.#464650", c37: "#0a3c64.#325078", c38: "#4696b4.#6e78b4", c39: "#285082.#325078", c40: "#1e648c.#325078", c41: "#d2960a.#5a5a5a", c42: "#ffd20a.#64b4be", c43: "#b40a0a.#5a5a5a", c44: "#fad20a.#64b4be", c45: "#c80a1e.#5a5a5a", c46: "#6e6e6e.#464650", c47: "#d28c0a.#5a5a5a", c48: "#820a14.#323232", c49: "#a0a0a0.#64646e", c50: "#ffffff.#fafafa", c51: "#646464.#5a5a5a", c52: "#d2d2d2.#64b4be", c53: "#0a2846.#141414", c54: "#8246c8.#64646e", c55: "#c88cfa.#8c8c96", c56: "#0a466e.#325078", c57: "#c85ad2.#64646e" },
479 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#465a1e.#5a281e", c6: "#141414.#141414", c7: "#aadc3c.#b43c3c", c8: "#789632.#823232", c9: "#dcf082.#d2786e", c10: "#78503c.#78463c", c11: "#be8264.#b48c6e", c12: "#fab482.#fab48c", c13: "#fafafa.#fafafa", c14: "#f06432.#f0f050", c15: "#503228.#503228", c16: "#825032.#78463c", c17: "#ffe68c.#d2786e", c18: "#aa785a.#b48c6e", c19: "#e6be5a.#fab48c", c20: "#3c281e.#503228", c21: "#46281e.#503228", c22: "#c83228.#f0f050", c23: "#f0643c.#f0f050", c24: "#f06446.#f0f050", c25: "#78321e.#503228", c26: "#ffaa78.#fab48c", c27: "#d2d2dc.#fafafa", c28: "#ffffff.#fafafa", c29: "#faa0f0.#fafafa", c30: "#dc78c8.#fab48c", c31: "#dc78d2.#fab48c", c32: "#5a3c28.#503228", c33: "#1e1e1e.#141414", c34: "#c89678.#b48c6e", c35: "#6e5046.#78463c", c36: "#969696.#b48c6e", c37: "#787882.#b48c6e", c38: "#dc78be.#fab48c", c39: "#5a3250.#503228", c40: "#965a8c.#b48c6e", c41: "#0a0a0a.#141414" },
480 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c2814.#28140a", c6: "#963c1e.#96821e", c7: "#643c1e.#50281e", c8: "#f06432.#f0d232", c9: "#141414.#141414", c10: "#966428.#823c32", c11: "#465a1e.#5a281e", c12: "#aadc3c.#b43c3c", c13: "#789632.#823232", c14: "#ffb464.#e6be8c", c15: "#be8250.#b48c64", c16: "#fafafa.#fafafa", c17: "#5a5a5a.#5a5a5a", c18: "#0a0a0a.#141414", c19: "#c8c8c8.#bebebe", c20: "#ffffff.#fafafa", c21: "#5a5064.#5a5a5a", c22: "#8c8c6e.#b48c64", c23: "#50463c.#50281e", c24: "#e6e6e6.#fafafa", c25: "#966e50.#823c32", c26: "#dcbe6e.#e6be8c", c27: "#fffaff.#fafafa", c28: "#c8a046.#b48c64", c29: "#5a3c14.#50281e", c30: "#8c8ca0.#bebebe", c31: "#505064.#5a5a5a", c32: "#c8c8d2.#bebebe", c33: "#c83c14.#96821e", c34: "#503214.#28140a", c35: "#fa3228.#f0d232", c36: "#a06e3c.#823c32", c37: "#282828.#28140a", c38: "#e69650.#e6be8c", c39: "#be6e3c.#b48c64", c40: "#784646.#5a5a5a", c41: "#a0505a.#823c32", c42: "#64463c.#50281e", c43: "#966450.#823c32", c44: "#fac896.#e6be8c", c45: "#be783c.#b48c64", c46: "#aa6428.#823c32", c47: "#f0aa6e.#e6be8c", c48: "#e6a06e.#e6be8c", c49: "#b4783c.#b48c64", c50: "#8c0a0a.#96821e", c51: "#aa281e.#96821e", c52: "#322828.#28140a" },
481 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#8c6e50.#324628", c6: "#fadcaa.#649650", c7: "#141414.#141414", c8: "#b49678.#466e3c", c9: "#fa646e.#f06e32", c10: "#6ec850.#8c3c3c", c11: "#fa646e.#8c3c3c", c12: "#468c28.#5a2828", c13: "#825032.#6e463c", c14: "#828c82.#5a4632", c15: "#b4beb4.#be9664", c16: "#64321e.#463228", c17: "#fafafa.#ffc88c", c18: "#fafafa.#fafafa", c19: "#1e5a0a.#3c1e1e", c20: "#3c1e14.#281e14", c21: "#285096.#5a4632", c22: "#78bee6.#be9664", c23: "#6ea0e6.#be9664", c24: "#5a78c8.#5a4632", c25: "#0a285a.#141414", c26: "#502814.#281e14", c27: "#e6b428.#466e3c", c28: "#3c64aa.#5a4632", c29: "#96a0fa.#be9664", c30: "#b4d2fa.#be9664", c31: "#ffc850.#649650", c32: "#1e3c64.#141414", c33: "#6e8cc8.#5a4632", c34: "#826450.#324628", c35: "#fff08c.#649650", c36: "#fff082.#649650", c37: "#b48c46.#324628", c38: "#643c14.#463228", c39: "#dcc878.#649650", c40: "#0a0a0a.#141414", c41: "#ffffb4.#649650", c42: "#ffffff.#ffc88c", c43: "#96c8e6.#be9664", c44: "#64a0dc.#be9664", c45: "#5a6ebe.#5a4632", c46: "#d26464.#f06e32", c47: "#28508c.#5a4632", c48: "#c8960a.#324628", c49: "#b40a0a.#463228", c50: "#78b4dc.#be9664", c51: "#c8f0ff.#ffc88c", c52: "#faf08c.#649650", c53: "#fafadc.#ffc88c", c54: "#be2828.#6e463c", c55: "#be8c0a.#324628", c56: "#dcb428.#466e3c", c57: "#6482dc.#5a4632", c58: "#d27878.#466e3c", c59: "#fac850.#649650", c60: "#aad2e6.#be9664", c61: "#78a0dc.#be9664", c62: "#bea01e.#324628", c63: "#fadc3c.#649650", c64: "#b4bef0.#be9664", c65: "#dcbe32.#466e3c", c66: "#96aae6.#be9664", c67: "#ffffdc.#ffc88c" },
482 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#786428.#5a5a5a", c7: "#ffd25a.#dcdcdc", c8: "#c8aa46.#aaaaaa", c9: "#783214.#781e1e", c10: "#f06432.#f04646", c11: "#b44628.#b43232", c12: "#787878.#787878", c13: "#fafafa.#fafafa", c14: "#3c3c3c.#3c3c3c", c15: "#786446.#5a5a5a", c16: "#b48c1e.#aaaaaa", c17: "#4678c8.#787878", c18: "#ffdc64.#dcdcdc", c19: "#e6b450.#aaaaaa", c20: "#ffffff.#fafafa", c21: "#a0c8ff.#bebebe", c22: "#283278.#3c3c3c", c23: "#aa963c.#aaaaaa", c24: "#78aaf0.#bebebe", c25: "#e6be28.#aaaaaa", c26: "#3c280a.#141414", c27: "#4678d2.#787878", c28: "#78c8fa.#bebebe", c29: "#6496e6.#bebebe", c30: "#28326e.#3c3c3c", c31: "#64a0e6.#bebebe", c32: "#0a0a0a.#141414", c33: "#aa9646.#aaaaaa", c34: "#3c3214.#3c3c3c", c35: "#5a78c8.#787878", c36: "#f0645a.#f04646", c37: "#c8c8d2.#bebebe", c38: "#a03246.#b43232", c39: "#a0d2ff.#bebebe", c40: "#463214.#3c3c3c", c41: "#d2d2d2.#bebebe", c42: "#a02846.#b43232", c43: "#b4e6ff.#fafafa", c44: "#aaaaaa.#bebebe", c45: "#f0c878.#dcdcdc", c46: "#e6be32.#aaaaaa", c47: "#96aae6.#bebebe", c48: "#323c6e.#3c3c3c", c49: "#78a0dc.#bebebe", c50: "#b4bef0.#bebebe" },
483 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#786428.#503c5a", c7: "#ffd25a.#d296e6", c8: "#c8aa46.#a078b4", c9: "#783214.#781e1e", c10: "#f06432.#f04646", c11: "#b44628.#b43232", c12: "#fafafa.#fafafa", c13: "#787878.#787878", c14: "#824614.#824614", c15: "#282828.#282828", c16: "#3c3c3c.#3c3c3c", c17: "#1e1e32.#282828", c18: "#503c3c.#3c3c3c", c19: "#c8aa14.#a078b4", c20: "#fae650.#d296e6", c21: "#a0780a.#503c5a", c22: "#504646.#3c3c3c", c23: "#beaa14.#a078b4", c24: "#faf096.#d296e6", c25: "#0a0a0a.#141414", c26: "#644614.#781e1e", c27: "#f0e6c8.#fafafa", c28: "#825a28.#503c5a", c29: "#968c78.#787878", c30: "#e67896.#bebebe", c31: "#f0dc50.#d296e6", c32: "#f0e68c.#d296e6", c33: "#8c1e1e.#781e1e", c34: "#be2828.#b43232", c35: "#f0e6d2.#fafafa", c36: "#dc788c.#a078b4", c37: "#e6dcc8.#bebebe", c38: "#b42828.#b43232", c39: "#b49614.#a078b4", c40: "#1e1e28.#282828", c41: "#6e1e0a.#781e1e", c42: "#be3c28.#b43232", c43: "#c85a6e.#f04646", c44: "#d2b40a.#a078b4", c45: "#dc6482.#f04646", c46: "#fa6e46.#f04646", c47: "#be5064.#b43232", c48: "#326478.#787878", c49: "#ffffff.#fafafa", c50: "#3cb4dc.#787878", c51: "#bea014.#a078b4", c52: "#dc5a5a.#f04646", c53: "#d2be46.#a078b4", c54: "#dcc846.#a078b4", c55: "#3c3c50.#3c3c3c", c56: "#8c8c78.#787878" },
484 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#b43c1e.#b43232", c6: "#fa5a28.#f04646", c7: "#ffd21e.#ffd21e", c8: "#782814.#781e1e", c9: "#826428.#5a5a5a", c10: "#ffdc5a.#dcdcdc", c11: "#dcb446.#aaaaaa", c12: "#141414.#141414", c13: "#aa643c.#aa643c", c14: "#fafafa.#fafafa", c15: "#6e6e6e.#6e6e6e", c16: "#641e1e.#462850", c17: "#aa3c32.#8c5096", c18: "#8c3228.#643c78", c19: "#c8463c.#8c5096", c20: "#641e14.#462850", c21: "#0a0a0a.#141414", c22: "#ffc8aa.#bebebe", c23: "#ffa096.#bebebe", c24: "#50320a.#462850", c25: "#6e4632.#5a5a5a", c26: "#a06e0a.#5a5a5a", c27: "#c88c28.#aaaaaa", c28: "#dc786e.#aaaaaa", c29: "#ffffff.#fafafa", c30: "#466450.#6e6e6e", c31: "#aac8b4.#bebebe", c32: "#82966e.#6e6e6e", c33: "#c84646.#8c5096", c34: "#aa5050.#aa643c", c35: "#ffd2c8.#fafafa", c36: "#ffa0a0.#bebebe", c37: "#c88282.#aaaaaa", c38: "#784632.#643c78", c39: "#a0640a.#5a5a5a", c40: "#a00a0a.#781e1e", c41: "#b43c28.#b43232", c42: "#f03c3c.#f04646", c43: "#c80a0a.#b43232", c44: "#d20a0a.#b43232" },
485 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#326478.#5a6e78", c6: "#64dcff.#bef0ff", c7: "#50a0be.#8cb4be", c8: "#fff08c.#fff08c", c9: "#c8be6e.#c8be6e", c10: "#141414.#141414", c11: "#787878.#787878", c12: "#fafafa.#fafafa", c13: "#286482.#285082", c14: "#b45078.#787878", c15: "#a01450.#787878", c16: "#ffd2d2.#fafafa", c17: "#ffaabe.#bebebe", c18: "#a01e50.#787878", c19: "#e682a0.#bebebe", c20: "#b4506e.#787878", c21: "#961450.#787878", c22: "#ffd2dc.#fafafa", c23: "#ffc8d2.#fafafa", c24: "#fac8d2.#fafafa", c25: "#faaab4.#bebebe", c26: "#dc6e8c.#c8be6e", c27: "#b43c5a.#787878", c28: "#fad2e6.#fafafa", c29: "#dc8296.#c8be6e", c30: "#f0aabe.#bebebe", c31: "#f0a0aa.#bebebe", c32: "#f0a0a0.#bebebe", c33: "#961432.#787878", c34: "#e62814.#787878", c35: "#ffffff.#fafafa", c36: "#0a0a0a.#141414", c37: "#8c0a0a.#141414", c38: "#640a0a.#141414", c39: "#be0a0a.#141414", c40: "#dc2814.#787878", c41: "#c80a0a.#787878", c42: "#b40a0a.#141414", c43: "#960a0a.#141414" },
486 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#00285a.#0a1e3c", c6: "#141414.#141414", c7: "#006eaa.#1e468c", c8: "#00a0d2.#2864c8", c9: "#0a4678.#143264", c10: "#787878.#787878", c11: "#2896b4.#78b4be", c12: "#3cc8f0.#aaf0fa", c13: "#fafafa.#fafafa", c14: "#fff06e.#fff08c", c15: "#0a5a6e.#46646e", c16: "#96785a.#787878", c17: "#0a0a0a.#141414", c18: "#784646.#787878", c19: "#faf0c8.#fafafa", c20: "#c8a078.#bebebe", c21: "#fad2a0.#fff08c", c22: "#c8b478.#bebebe", c23: "#ffffff.#fafafa", c24: "#aa1e1e.#787878", c25: "#aa2828.#787878", c26: "#788c96.#787878", c27: "#b4b4c8.#bebebe", c28: "#d2dcdc.#bebebe", c29: "#c83c3c.#787878", c30: "#646478.#787878", c31: "#dc786e.#787878", c32: "#3264aa.#1e468c", c33: "#4682c8.#78b4be", c34: "#f06e6e.#787878", c35: "#c85a50.#787878", c36: "#d2a078.#bebebe", c37: "#643c32.#141414", c38: "#f0d2a0.#fff08c", c39: "#967850.#787878", c40: "#aa4646.#787878", c41: "#6e7882.#787878", c42: "#aab4be.#bebebe", c43: "#c84646.#787878", c44: "#5a6e82.#787878", c45: "#c8463c.#787878", c46: "#dcdcdc.#bebebe", c47: "#e6968c.#bebebe", c48: "#dc3c3c.#787878", c49: "#1496be.#78b4be", c50: "#f0f0f0.#fafafa", c51: "#0a6496.#1e468c" },
487 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c64aa.#5a5a5a", c6: "#aa465a.#b42828", c7: "#32468c.#3c3c3c", c8: "#f0e6aa.#786e6e", c9: "#dc646e.#e64646", c10: "#50b4c8.#64d2ff", c11: "#8c8c50.#5a5a5a", c12: "#beb464.#786e6e", c13: "#beb464.#5a5a5a", c14: "#324682.#5a5a5a", c15: "#ffb4be.#ff8282" },
488 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#beaaa0.#beaaa0", c6: "#f0dcd2.#fae6dc", c7: "#d2c8c8.#d2c8c8", c8: "#828282.#c88282", c9: "#5a323c.#5a323c", c10: "#ffaa6e.#ffff8c", c11: "#f0823c.#ffe65a", c12: "#aa503c.#aa6e00", c13: "#c86446.#dca028", c14: "#3c3c3c.#783c3c", c15: "#000000.#141414", c16: "#646464.#a05a5a", c17: "#6e2828.#c8820a", c18: "#ff1e1e.#ff3c00", c19: "#82280a.#c8820a", c20: "#ff3c46.#ff3c00", c21: "#d23232.#aa6e00", c22: "#282828.#783c3c", c23: "#286e28.#783c3c", c24: "#78be3c.#c88282", c25: "#46963c.#a05a5a", c26: "#d23c0a.#ff3c00", c27: "#fa5a5a.#ffe65a", c28: "#ff460a.#ff3c00", c29: "#96d23c.#c88282", c30: "#d2285a.#aa6e00", c31: "#505050.#783c3c", c32: "#50c846.#c88282", c33: "#82641e.#aa6e00", c34: "#ffffff.#fae6dc", c35: "#a0e646.#beaaa0", c36: "#ffdc28.#ffff8c", c37: "#d2aa28.#ffe65a", c38: "#c8c8c8.#d2c8c8", c39: "#969696.#c88282" },
489 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#141414.#141414", c6: "#32281e.#282828", c7: "#645046.#5a5a5a", c8: "#503c32.#3c3c3c", c9: "#fff0b4.#ffffb4", c10: "#f0b43c.#bedc32", c11: "#fafafa.#fafafa", c12: "#dc8c78.#825082", c13: "#b4645a.#5a3c5a", c14: "#ffb4aa.#b478b4", c15: "#282828.#282828", c16: "#82280a.#3c3c3c", c17: "#505050.#5a5a5a", c18: "#46963c.#5a5a5a", c19: "#969696.#825082", c20: "#ffffff.#fafafa", c21: "#f0320a.#5a3c5a", c22: "#96d23c.#bedc32", c23: "#286e28.#3c3c3c", c24: "#32500a.#282828", c25: "#0a0a0a.#141414", c26: "#b4fa5a.#bedc32", c27: "#d2d2d2.#ffffb4", c28: "#b4320a.#5a3c5a", c29: "#323232.#282828", c30: "#c8465a.#5a3c5a", c31: "#d28c96.#825082", c32: "#96c846.#bedc32", c33: "#8c5a0a.#5a5a5a", c34: "#78be3c.#5a5a5a", c35: "#f03c0a.#5a3c5a", c36: "#bebebe.#b478b4", c37: "#dcdcdc.#fafafa", c38: "#be961e.#bedc32", c39: "#ffdc3c.#bedc32", c40: "#c8c8c8.#b478b4", c41: "#3c7828.#5a5a5a", c42: "#6ea028.#5a5a5a", c43: "#786e14.#5a5a5a", c44: "#3caa50.#5a5a5a", c45: "#b4280a.#5a3c5a", c46: "#82828c.#5a3c5a", c47: "#ffff82.#ffffb4", c48: "#ffe63c.#bedc32", c49: "#1e1e1e.#141414", c50: "#b48c1e.#5a3c5a", c51: "#b4ff64.#bedc32", c52: "#f0be32.#bedc32", c53: "#ffbe32.#bedc32", c54: "#5adc50.#5a5a5a", c55: "#5a1414.#282828", c56: "#828282.#5a3c5a", c57: "#ff785a.#825082", c58: "#965050.#5a3c5a", c59: "#463c3c.#3c3c3c", c60: "#aae664.#bedc32", c61: "#3c3232.#3c3c3c", c62: "#462828.#282828", c63: "#aa280a.#5a5a5a", c64: "#324614.#282828", c65: "#b4bec8.#b478b4", c66: "#3c2828.#282828", c67: "#f0c832.#bedc32", c68: "#d2bec8.#b478b4", c69: "#ffd250.#bedc32", c70: "#e6aa28.#bedc32", c71: "#aaaaaa.#825082", c72: "#fadc3c.#bedc32", c73: "#e63c0a.#5a3c5a", c74: "#50963c.#5a5a5a", c75: "#b4821e.#5a3c5a", c76: "#1eb450.#5a5a5a", c77: "#788250.#5a5a5a", c78: "#143c14.#282828", c79: "#50641e.#3c3c3c", c80: "#78786e.#5a5a5a", c81: "#783c32.#5a5a5a", c82: "#6e1e0a.#3c3c3c", c83: "#3c783c.#5a5a5a", c84: "#1e501e.#282828" },
490 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#0a0a0a.#0a0a0a", c6: "#32281e.#141414", c7: "#645046.#323232", c8: "#463c28.#1e2828", c9: "#b46e5a.#785082", c10: "#643c28.#503c5a", c11: "#faaaa0.#be82c8", c12: "#c8a06e.#c8a06e", c13: "#785a3c.#785a3c", c14: "#e6be32.#e6f05a", c15: "#fadcbe.#fadcbe", c16: "#faf0be.#f0ffaa", c17: "#dc8c82.#a06eaa", c18: "#968214.#b4be46", c19: "#c8b48c.#c8a06e", c20: "#ffdc0a.#e6f05a", c21: "#ffffff.#f0ffaa", c22: "#e6aa0a.#e6f05a", c23: "#141414.#0a0a0a", c24: "#c89628.#e6f05a", c25: "#827850.#785a3c", c26: "#8c5a14.#b4be46", c27: "#505050.#323232", c28: "#e6c8a0.#be82c8", c29: "#ffe6be.#fadcbe", c30: "#b4780a.#b4be46", c31: "#fff082.#f0ffaa", c32: "#e6c864.#c8a06e", c33: "#dcaa0a.#e6f05a", c34: "#fafafa.#f0ffaa", c35: "#fadc0a.#e6f05a", c36: "#a0a0a0.#c8a06e", c37: "#1e96be.#323232", c38: "#0a4696.#323232", c39: "#78c8fa.#fadcbe", c40: "#3caae6.#c8a06e", c41: "#969696.#c8a06e", c42: "#6496dc.#c8a06e", c43: "#78a0fa.#fadcbe", c44: "#5082be.#323232", c45: "#c8a050.#c8a06e", c46: "#a0641e.#b4be46", c47: "#ffffbe.#f0ffaa", c48: "#f0c878.#be82c8" },
491 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#825a64.#50321e", c6: "#fff0f0.#ffdcb4", c7: "#c8aaaa.#be9678", c8: "#ffc8dc.#b46e46", c9: "#e63c64.#dc1e50", c10: "#141414.#141414", c11: "#fafafa.#fafafa", c12: "#aa2846.#96143c", c13: "#c896aa.#825032", c14: "#786464.#50321e", c15: "#ffffff.#fafafa", c16: "#d2c8c8.#be9678", c17: "#282828.#141414", c18: "#825a3c.#50321e", c19: "#643c14.#96143c", c20: "#0a0a0a.#141414", c21: "#f0c8a0.#be9678", c22: "#c8a082.#be9678", c23: "#a07878.#50321e", c24: "#78781e.#50321e", c25: "#f0ff96.#b46e46", c26: "#6e6464.#50321e", c27: "#c8c878.#be9678", c28: "#5a4628.#50321e", c29: "#f0e6b4.#b46e46", c30: "#beb46e.#be9678", c31: "#d2a082.#be9678", c32: "#d2d2d2.#b46e46", c33: "#5a5028.#50321e", c34: "#c8be50.#be9678", c35: "#e6e66e.#be9678", c36: "#825a32.#50321e", c37: "#643214.#141414", c38: "#c8d278.#be9678" },
492 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#aa2846.#96143c", c6: "#641e28.#5a0a1e", c7: "#e63c64.#dc1e50", c8: "#ff8caa.#ff7896", c9: "#fafafa.#fafafa", c10: "#141414.#141414", c11: "#825a64.#50321e", c12: "#ffc8dc.#b46e46", c13: "#c896aa.#825032", c14: "#fff0f0.#ffdcb4", c15: "#c8aaaa.#be9678", c16: "#0a0a0a.#141414", c17: "#ffe68c.#b46e46", c18: "#e6b464.#be9678", c19: "#785046.#50321e", c20: "#c89678.#825032", c21: "#aa785a.#50321e", c22: "#faf0b4.#b46e46", c23: "#fadc8c.#be9678", c24: "#d23214.#96143c", c25: "#8c3c1e.#5a0a1e", c26: "#f0643c.#dc1e50", c27: "#5a3c28.#5a0a1e", c28: "#ffffff.#fafafa", c29: "#c8b4c8.#be9678", c30: "#e6a0a0.#825032", c31: "#faaa6e.#ff7896", c32: "#be7878.#825032", c33: "#78140a.#5a0a1e", c34: "#a0a0a0.#825032", c35: "#d2461e.#96143c", c36: "#64281e.#5a0a1e", c37: "#282814.#141414" },
493 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#b42832.#96286e", c6: "#781e28.#641e46", c7: "#e63c3c.#c83c8c", c8: "#78640a.#78500a", c9: "#1e1e1e.#1e1e1e", c10: "#bea000.#c88200", c11: "#ffc800.#ffa000", c12: "#3c3c3c.#3c3c3c", c13: "#64645a.#505050", c14: "#aaaaa0.#b4b4b4", c15: "#787850.#786e5a", c16: "#c8be82.#aaa06e", c17: "#fffab4.#dcd278", c18: "#82788c.#786e5a", c19: "#46465a.#3c3c3c", c20: "#dce6fa.#ffffff", c21: "#bebed2.#b4b4b4", c22: "#141414.#1e1e1e", c23: "#a00a14.#96286e", c24: "#ffa0a0.#aaa06e", c25: "#ffc8c8.#dcd278", c26: "#ff7878.#c83c8c", c27: "#dc3c64.#c83c8c", c28: "#3c323c.#3c3c3c", c29: "#ffbebe.#dcd278", c30: "#0a0a0a.#1e1e1e", c31: "#dc4664.#c83c8c", c32: "#5082c8.#b4b4b4", c33: "#82c8ff.#b4b4b4", c34: "#283c8c.#3c3c3c", c35: "#3c82be.#505050", c36: "#1e5082.#3c3c3c", c37: "#aa0a28.#96286e", c38: "#e60a3c.#c83c8c", c39: "#640a14.#641e46", c40: "#6496dc.#b4b4b4", c41: "#466eb4.#505050", c42: "#28468c.#3c3c3c", c43: "#b4b4d2.#b4b4b4", c44: "#c8dcfa.#ffffff", c45: "#d26478.#c83c8c", c46: "#ff8ca0.#aaa06e", c47: "#ffc8d2.#dcd278", c48: "#ffb4c8.#dcd278", c49: "#8c1e32.#641e46" },
494 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#783c28.#78501e", c6: "#e66478.#f0826e", c7: "#1e1e1e.#1e1e1e", c8: "#dc283c.#dc641e", c9: "#c85a14.#c8a014", c10: "#fa781e.#fad214", c11: "#464646.#464646", c12: "#969696.#969696", c13: "#e6e6e6.#e6e6e6", c14: "#646464.#646464", c15: "#6e5028.#3c783c", c16: "#fac814.#64d23c", c17: "#b49614.#50a03c", c18: "#141414.#1e1e1e", c19: "#c88c14.#50a03c", c20: "#ffc814.#64d23c", c21: "#c83c0a.#c8a014", c22: "#ff640a.#fad214", c23: "#825a32.#3c783c", c24: "#8c1e0a.#78501e", c25: "#646e6e.#646464", c26: "#fff046.#64d23c", c27: "#5a5a5a.#646464", c28: "#0a0a0a.#1e1e1e", c29: "#d28c14.#50a03c", c30: "#5a0a0a.#78501e", c31: "#c8460a.#c8a014", c32: "#aaaaaa.#969696", c33: "#463c3c.#464646", c34: "#fadc78.#bebebe", c35: "#aa6e0a.#c8a014", c36: "#d28c1e.#50a03c", c37: "#fffafa.#ffffff", c38: "#f0dc82.#bebebe", c39: "#f0f0f0.#e6e6e6", c40: "#323232.#1e1e1e", c41: "#fadc64.#64d23c" },
495 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#325014.#14645a", c6: "#000000.#000000", c7: "#64b46e.#82d2c8", c8: "#32783c.#3c8c96", c9: "#3c963c.#64b4aa", c10: "#3c506e.#780a32", c11: "#3282a0.#a03264", c12: "#82c878.#a0e6e6", c13: "#dcb43c.#dcb43c", c14: "#96783c.#96783c", c15: "#64a0dc.#c87878", c16: "#96b4dc.#e696a0", c17: "#ffdc78.#ffdc78", c18: "#820a0a.#14645a", c19: "#d21e0a.#96783c", c20: "#fa6e0a.#dcb43c", c21: "#141414.#000000", c22: "#aa2828.#96783c", c23: "#820a14.#14645a", c24: "#e66e46.#dcb43c", c25: "#c83c32.#96783c", c26: "#e6d26e.#ffdc78", c27: "#b4a03c.#dcb43c", c28: "#f08c64.#dcb43c", c29: "#827814.#96783c", c30: "#0a0a0a.#000000", c31: "#506428.#14645a", c32: "#78aa32.#96783c", c33: "#fae678.#ffdc78", c34: "#64783c.#3c8c96", c35: "#8ca05a.#82d2c8", c36: "#a0d246.#a0e6e6", c37: "#bec896.#a0e6e6", c38: "#145014.#14645a", c39: "#465a1e.#14645a", c40: "#3c5064.#780a32", c41: "#5064a0.#a03264", c42: "#5096aa.#a03264", c43: "#323c14.#14645a", c44: "#3c960a.#64b4aa", c45: "#dc6e6e.#dcb43c", c46: "#463c0a.#14645a", c47: "#143c14.#14645a", c48: "#5aaa3c.#64b4aa", c49: "#468c32.#64b4aa", c50: "#50c832.#64b4aa", c51: "#326e28.#3c8c96", c52: "#285a1e.#14645a", c53: "#3c3c0a.#14645a", c54: "#ffc814.#dcb43c", c55: "#d29614.#dcb43c", c56: "#145a14.#14645a", c57: "#967814.#96783c", c58: "#e6e66e.#ffdc78", c59: "#50781e.#3c8c96", c60: "#828214.#96783c", c61: "#b4b43c.#dcb43c", c62: "#78b432.#82d2c8", c63: "#0a643c.#3c8c96" },
496 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#3c501e.#326478", c6: "#000000.#000000", c7: "#6e8c3c.#3c8296", c8: "#8caa3c.#64a0aa", c9: "#aad264.#78aac8", c10: "#828ca0.#c8c8c8", c11: "#469664.#78a01e", c12: "#78bea0.#a0d232", c13: "#96323c.#96501e", c14: "#c83c64.#d26414", c15: "#ff7896.#ff8c3c", c16: "#aadcb4.#dcff82", c17: "#326eaa.#78a01e", c18: "#143c78.#326478", c19: "#5aa0f0.#a0d232", c20: "#3c82c8.#c8c8c8", c21: "#8cbefa.#dcff82", c22: "#b4d2ff.#dcff82", c23: "#961414.#96501e", c24: "#141414.#000000", c25: "#28a0f0.#a0d232", c26: "#3250be.#c8c8c8", c27: "#78b4fa.#a0d232", c28: "#be2832.#96501e", c29: "#dc3c50.#d26414", c30: "#78c8fa.#dcff82", c31: "#646464.#3c8296", c32: "#96140a.#96501e", c33: "#d2460a.#96501e", c34: "#46b4fa.#a0d232", c35: "#323c5a.#326478", c36: "#fa820a.#d26414", c37: "#286eaa.#78a01e", c38: "#143278.#326478", c39: "#fafafa.#ffffff", c40: "#960a0a.#96501e", c41: "#be2828.#96501e", c42: "#c8e6f0.#ffffff", c43: "#fafaf0.#ffffff", c44: "#0a0a0a.#000000", c45: "#b4c8c8.#dcff82", c46: "#aae6ff.#dcff82", c47: "#3c82d2.#c8c8c8", c48: "#dce6dc.#ffffff", c49: "#0a1e46.#000000", c50: "#b4c8d2.#dcff82", c51: "#4682d2.#c8c8c8", c52: "#dc4650.#d26414", c53: "#32465a.#326478" },
497 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#786e5a.#966e46", c6: "#000000.#000000", c7: "#faf0a0.#fffa96", c8: "#dcd28c.#ffc878", c9: "#beaa78.#dcaa5a", c10: "#78965a.#3c8c78", c11: "#466e46.#145a5a", c12: "#c8ff8c.#a0dcdc", c13: "#aa8c6e.#c88278", c14: "#aae678.#8cc8c8", c15: "#a0c864.#64a0a0", c16: "#faaa78.#faa064", c17: "#a04650.#a04650", c18: "#e682a0.#e682a0", c19: "#143c78.#145a5a", c20: "#141414.#000000", c21: "#5aa0f0.#3c8c78", c22: "#8cbefa.#ffffff", c23: "#326eaa.#145a5a", c24: "#3c82c8.#966e46", c25: "#961414.#a04650", c26: "#325096.#145a5a", c27: "#0a2864.#145a5a", c28: "#4696dc.#3c8c78", c29: "#78beff.#8cc8c8", c30: "#82b4f0.#dcaa5a", c31: "#2864a0.#145a5a", c32: "#5096f0.#3c8c78", c33: "#0a0a0a.#000000", c34: "#a00a0a.#a04650", c35: "#50aafa.#3c8c78", c36: "#be2832.#a04650", c37: "#c8280a.#a04650", c38: "#b41e28.#a04650", c39: "#dc3246.#a04650", c40: "#dc3c50.#a04650", c41: "#e6500a.#a04650", c42: "#8c0a0a.#a04650", c43: "#3278c8.#966e46", c44: "#c8c8d2.#ffc878", c45: "#78a0c8.#c88278", c46: "#d2dcfa.#ffffff", c47: "#6e6e6e.#966e46", c48: "#646464.#966e46", c49: "#bebed2.#ffc878", c50: "#141e50.#000000", c51: "#0a64aa.#145a5a", c52: "#78b4fa.#dcaa5a", c53: "#3282c8.#966e46", c54: "#14325a.#145a5a", c55: "#dc4650.#a04650", c56: "#4682d2.#966e46" },
498 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#6e6e6e.#6e6e6e", c6: "#f0f0f0.#f0f0f0", c7: "#0a0a0a.#0a0a0a", c8: "#b4b4b4.#b4b4b4", c9: "#642828.#642828", c10: "#b4786e.#b4786e", c11: "#a03c1e.#a03c1e", c12: "#8c5046.#8c5046", c13: "#1e1e1e.#1e1e1e", c14: "#78321e.#78321e", c15: "#141414.#0a0a0a", c16: "#8c783c.#8c5046", c17: "#645a46.#8c5046", c18: "#c8a046.#b4786e", c19: "#aa825a.#b4786e", c20: "#8c6e3c.#8c5046", c21: "#50461e.#642828", c22: "#826e3c.#8c5046", c23: "#503c32.#642828", c24: "#c8aa5a.#b4786e", c25: "#463c28.#642828", c26: "#325a14.#1e1e1e", c27: "#785014.#78321e", c28: "#46c83c.#6e6e6e", c29: "#e6c86e.#b4b4b4", c30: "#bea050.#b4786e", c31: "#5a8c5a.#6e6e6e", c32: "#96d278.#b4b4b4", c33: "#3c3c32.#642828", c34: "#a0dc78.#b4b4b4", c35: "#645028.#78321e", c36: "#28aa32.#6e6e6e", c37: "#146e1e.#1e1e1e", c38: "#8cff8c.#b4b4b4", c39: "#28dc32.#6e6e6e", c40: "#283c14.#1e1e1e", c41: "#c82814.#a03c1e", c42: "#821e0a.#78321e", c43: "#a07828.#8c5046", c44: "#ffffff.#f0f0f0", c45: "#ffc80a.#b4786e", c46: "#ff8282.#b4786e", c47: "#be5032.#a03c1e", c48: "#e6b446.#b4786e", c49: "#dc960a.#a03c1e", c50: "#503c28.#642828", c51: "#dcbe78.#b4b4b4", c52: "#dcb496.#b4b4b4", c53: "#82643c.#8c5046", c54: "#c89664.#b4786e", c55: "#46c846.#6e6e6e", c56: "#285a14.#1e1e1e", c57: "#8c7846.#8c5046", c58: "#fa7882.#b4786e", c59: "#ffd20a.#b4786e", c60: "#a06e0a.#a03c1e", c61: "#8c6446.#8c5046" },
499 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#a03246.#3c1e28", c6: "#f0f0f0.#f0f0f0", c7: "#141414.#141414", c8: "#f0a0b4.#c882a0", c9: "#f0648c.#642846", c10: "#d22850.#461e32", c11: "#be1e5a.#fadc46", c12: "#c81e5a.#96dc50", c13: "#be1e50.#32b4dc", c14: "#507878.#3c1e28", c15: "#78a0ff.#c882a0", c16: "#0a0a0a.#141414", c17: "#8cbefa.#f0f0f0", c18: "#c8dcfa.#f0f0f0", c19: "#6e96c8.#c882a0", c20: "#6ea014.#3c1e28", c21: "#32780a.#141414", c22: "#bef078.#c882a0", c23: "#8cc814.#3c1e28", c24: "#ffffff.#f0f0f0", c25: "#822832.#3c1e28", c26: "#b41432.#32b4dc", c27: "#c8c8c8.#c882a0", c28: "#8c5a0a.#3c1e28", c29: "#ffe66e.#c882a0", c30: "#c86464.#642846", c31: "#e66e32.#461e32", c32: "#d2b464.#c882a0", c33: "#ff96c8.#c882a0", c34: "#a03c46.#3c1e28", c35: "#dc8278.#642846", c36: "#500a0a.#141414", c37: "#f0463c.#461e32", c38: "#3c461e.#141414", c39: "#96b4fa.#f0f0f0", c40: "#dc6464.#642846", c41: "#5a82d2.#c882a0", c42: "#ff8278.#642846", c43: "#8c3c3c.#3c1e28", c44: "#fafafa.#f0f0f0", c45: "#ffaaa0.#c882a0", c46: "#6e0a14.#3c1e28", c47: "#be6e96.#642846", c48: "#aa8c46.#3c1e28", c49: "#d25064.#461e32", c50: "#1e6432.#141414", c51: "#64b46e.#3c1e28", c52: "#329650.#141414", c53: "#286e3c.#141414", c54: "#3c5a82.#3c1e28", c55: "#5082c8.#c882a0", c56: "#828282.#3c1e28", c57: "#28780a.#141414", c58: "#78be14.#3c1e28", c59: "#d2ff82.#c882a0", c60: "#a0f028.#c882a0", c61: "#d2d2d2.#f0f0f0", c62: "#c8ff82.#c882a0", c63: "#a0f032.#c882a0", c64: "#a0640a.#3c1e28", c65: "#ffe650.#c882a0", c66: "#e6b428.#642846", c67: "#e66e28.#461e32", c68: "#6e460a.#3c1e28", c69: "#288cb4.#3c1e28", c70: "#c8f03c.#c882a0" },
500 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#aa3c6e.#aa3c6e", c6: "#f08cb4.#f08cb4", c7: "#fffafa.#fffafa", c8: "#ffc8dc.#ffc8dc", c9: "#141414.#141414", c10: "#5a505a.#323232", c11: "#b4a0b4.#827882", c12: "#827882.#5a505a", c13: "#dc5046.#dc5046", c14: "#ffe664.#ffe664", c15: "#b48250.#b48250", c16: "#bebebe.#c84678", c17: "#787878.#787878", c18: "#f0f0f0.#ff5a8c", c19: "#50823c.#323232", c20: "#3c5a14.#323232", c21: "#64be5a.#787878", c22: "#a0dc5a.#b48250", c23: "#0a0a0a.#141414", c24: "#64a032.#787878", c25: "#3c7814.#323232", c26: "#78c85a.#787878", c27: "#325a0a.#141414", c28: "#0abe50.#323232", c29: "#78dc50.#787878", c30: "#8c0a3c.#aa3c6e", c31: "#325a14.#141414", c32: "#b46478.#aa3c6e", c33: "#faa0b4.#f08cb4", c34: "#ff7896.#f08cb4", c35: "#288232.#323232", c36: "#a00a14.#aa3c6e", c37: "#8c3250.#aa3c6e", c38: "#ff96b4.#f08cb4", c39: "#ff5078.#dc5046", c40: "#b44664.#aa3c6e", c41: "#ffff0a.#ffe664", c42: "#c86478.#aa3c6e", c43: "#ffc80a.#ffe664", c44: "#ffa0b4.#f08cb4", c45: "#f03228.#dc5046", c46: "#a00a3c.#aa3c6e", c47: "#ff7882.#f08cb4", c48: "#323232.#141414", c49: "#3c3c3c.#323232", c50: "#e6283c.#dc5046", c51: "#ff4664.#dc5046", c52: "#82c85a.#787878", c53: "#287814.#323232", c54: "#be283c.#dc5046", c55: "#fa5a5a.#dc5046", c56: "#820a14.#323232", c57: "#fa3c32.#dc5046" },
501 => { c1: "#ffffff.#ffffff", c2: "#323232.#323232", c3: "#bebebe.#bebebe", c4: "#505050.#505050", c5: "#a06e50.#c86e00", c6: "#783c32.#a03c00", c7: "#ffc8d2.#ffff8c", c8: "#000000.#141414", c9: "#fa96b4.#fffa00", c10: "#e678a0.#f0b400", c11: "#c8788c.#e6a000", c12: "#3246aa.#5a64be", c13: "#285afa.#6e82f0", c14: "#e6aadc.#dcc8e6", c15: "#fa82c8.#fac83c", c16: "#8c500a.#a03c00", c17: "#0a0a0a.#141414", c18: "#ffd20a.#c86e00", c19: "#fff00a.#c86e00", c20: "#faa014.#c86e00", c21: "#146e0a.#141414", c22: "#8cfa46.#c86e00", c23: "#d2c80a.#c86e00", c24: "#64d232.#c86e00", c25: "#141414.#141414", c26: "#3cb41e.#c86e00", c27: "#fff064.#ffff8c", c28: "#b4d2dc.#dcc8e6", c29: "#ff640a.#c86e00", c30: "#b44650.#c86e00", c31: "#78140a.#a03c00", c32: "#e67878.#e6a000", c33: "#a0500a.#a03c00", c34: "#14640a.#141414", c35: "#64d23c.#c86e00", c36: "#ffc80a.#c86e00", c37: "#3cb428.#c86e00", c38: "#8cf050.#c86e00", c39: "#faf01e.#c86e00", c40: "#fad214.#c86e00", c41: "#aa5a0a.#a03c00", c42: "#f0a01e.#c86e00", c43: "#5adc1e.#c86e00", c44: "#288c14.#a03c00" },
}

View File

@@ -0,0 +1,20 @@
# frozen_string_literal: true
class PokemonPokedexInfo_Scene
alias pokedexAltSprites_PokedexSpritesPage_swap_main_sprite swap_main_sprite
def swap_main_sprite
pokedexAltSprites_PokedexSpritesPage_swap_main_sprite
if @sprites["selectedSprite"] && @sprites["selectedSprite"].bitmap
if @pokemon
@sprites["selectedSprite"].bitmap.update_shiny_cache(@pokemon.id_number, "")
elsif @idSpecies
@sprites["selectedSprite"].bitmap.update_shiny_cache(@idSpecies, "")
else
@sprites["selectedSprite"].bitmap.update_shiny_cache(getDexNumberForSpecies(@species), "")
end
end
end
end

View File

@@ -0,0 +1,46 @@
# frozen_string_literal: true
class AnimatedBitmap
def shiftCustomColors(rules)
@bitmap.bitmap.hue_customcolor(rules)
end
def shiftAllColors(dex_number, bodyShiny, headShiny)
# pratically the same as hue_changecolors but for the animated bitmap
if isFusion(dex_number)
body_id = getBodyID(dex_number)
head_id = getHeadID(dex_number, body_id)
shiny_directory = "Graphics/Battlers/Shiny/#{head_id}.#{body_id}"
shiny_file_path = "#{shiny_directory}/#{head_id}.#{body_id}"
offsets = [SHINY_COLOR_OFFSETS[body_id], SHINY_COLOR_OFFSETS[head_id]]
else
shiny_directory = "Graphics/Battlers/Shiny/#{dex_number}"
shiny_file_path = "#{shiny_directory}/#{dex_number}"
offsets = [SHINY_COLOR_OFFSETS[dex_number]]
end
# Determine the destination folders
shiny_file_path += "_bodyShiny" if bodyShiny
shiny_file_path += "_headShiny" if headShiny
shiny_file_path += ".png"
if File.exist?(shiny_file_path)
@bitmap.bitmap = Bitmap.new(shiny_file_path)
return
end
offset = offsets.compact.max_by { |o| o.keys.count }
return unless offset
onetime = true
offset.keys.each do |version|
value = offset&.dig(version)
if value.is_a?(String) && onetime
onetime = false
shiftCustomColors(GameData::Species.calculateCustomShinyHueOffset(dex_number, bodyShiny, headShiny))
Dir.mkdir(shiny_directory) unless Dir.exist?(shiny_directory)
@bitmap.bitmap.save_to_png(shiny_file_path)
elsif !value.is_a?(String)
shiftColors(GameData::Species.calculateShinyHueOffset(dex_number, bodyShiny, headShiny, version))
end
end
end
end

View File

@@ -0,0 +1,153 @@
class Bitmap
def hue_customcolor(rules_string)
return if rules_string.nil? || rules_string == "nil"
if rules_string.include?("&")
rules_string.split("&").each do |part|
part = part.strip
next if part.empty?
hue_customcolor(part)
end
return
end
rules = rules_string.split("|").map do |str|
parts = str.split(".")
{
from: parts[0].split.map(&:to_f),
to: parts[1].split.map(&:to_f)
}
end
width.times do |x|
height.times do |y|
color = get_pixel(x, y)
next if color.alpha == 0
r, g, b = color.red.to_f, color.green.to_f, color.blue.to_f
# Avoid division by zero
r = 10 if r <= 10
g = 10 if g <= 10
b = 10 if b <= 10
min_distance = Float::INFINITY
closest_rule = nil
rules.each do |rule|
from = rule[:from]
# Avoid division by zero
from[0] = 10 if from[0] <= 10
from[1] = 10 if from[1] <= 10
from[2] = 10 if from[2] <= 10
dist = (r - from[0])**2 + (g - from[1])**2 + (b - from[2])**2
if dist < min_distance
min_distance = dist
closest_rule = rule
end
end
next unless closest_rule
from = closest_rule[:from]
to = closest_rule[:to]
# Avoid multiplication by zero
to[0] = 10 if to[0] <= 10
to[1] = 10 if to[1] <= 10
to[2] = 10 if to[2] <= 10
r_factor = r / from[0]
g_factor = g / from[1]
b_factor = b / from[2]
adjusted_r = (to[0] * r_factor).clamp(0, 255)
adjusted_g = (to[1] * g_factor).clamp(0, 255)
adjusted_b = (to[2] * b_factor).clamp(0, 255)
set_pixel(x, y, Color.new(adjusted_r.to_i, adjusted_g.to_i, adjusted_b.to_i, color.alpha))
end
end
end
def update_shiny_cache(dex_number, name)
if isFusion(dex_number)
body_id = getBodyID(dex_number)
head_id = getHeadID(dex_number, body_id)
shiny_directory = "Graphics/Battlers/Shiny/#{head_id}.#{body_id}"
else
shiny_directory = "Graphics/Battlers/Shiny/#{dex_number}"
end
return unless Dir.exist?(shiny_directory)
# browse files in shiny_directory
Dir.foreach(shiny_directory) do |file|
next if file == "." || file == ".." # Ignorer les entrées spéciales
file_path = File.join(shiny_directory, file)
# delete files whose name contains "name"
if File.file?(file_path) && file.include?(name)
File.delete(file_path)
end
end
end
def hue_rename(dex_number, name, newname)
if isFusion(dex_number)
body_id = getBodyID(dex_number)
head_id = getHeadID(dex_number, body_id)
shiny_directory = "Graphics/Battlers/Shiny/#{head_id}.#{body_id}"
else
shiny_directory = "Graphics/Battlers/Shiny/#{dex_number}"
end
return unless Dir.exist?(shiny_directory)
Dir.entries(shiny_directory).each do |file|
next unless file.include?(name) && file.end_with?(".png")
old_path = "#{shiny_directory}/#{file}"
new_file = file.sub(name, newname)
new_path = "#{shiny_directory}/#{new_file}"
File.rename(old_path, new_path)
end
end
def hue_changecolors(dex_number, bodyShiny, headShiny, alt = "")
if isFusion(dex_number)
body_id = getBodyID(dex_number)
head_id = getHeadID(dex_number, body_id)
shiny_directory = "Graphics/Battlers/Shiny/#{head_id}.#{body_id}"
shiny_file_path = "#{shiny_directory}/#{head_id}.#{body_id}"
offsets = [SHINY_COLOR_OFFSETS[body_id], SHINY_COLOR_OFFSETS[head_id]]
else
shiny_directory = "Graphics/Battlers/Shiny/#{dex_number}"
shiny_file_path = "#{shiny_directory}/#{dex_number}"
offsets = [SHINY_COLOR_OFFSETS[dex_number]]
end
# Determine the destination folders
shiny_file_path += alt + "_bodyShiny" if bodyShiny
shiny_file_path += alt + "_headShiny" if headShiny
shiny_file_path += alt +".png"
if File.exist?(shiny_file_path)
return
end
offset = offsets.compact.max_by { |o| o.keys.count }
return unless offset
onetime = true
offset.keys.each do |version|
value = offset&.dig(version)
if value.is_a?(String) && onetime
onetime = false
hue_customcolor(GameData::Species.calculateCustomShinyHueOffset(dex_number, bodyShiny, headShiny))
Dir.mkdir(shiny_directory) unless Dir.exist?(shiny_directory)
self.save_to_png(shiny_file_path)
elsif !value.is_a?(String)
hue_change(GameData::Species.calculateShinyHueOffset(dex_number, bodyShiny, headShiny, version))
end
end
end
end

View File

@@ -0,0 +1,174 @@
# # frozen_string_literal: true
#
# class PokeBattle_Scene
# def pbShowPokedex(species, headShiny = false, bodyShiny = false)
# pbFadeOutIn {
# scene = PokemonPokedexInfo_Scene.new
# screen = PokemonPokedexInfoScreen.new(scene)
# screen.pbDexEntry(species, headShiny, bodyShiny)
# }
# end
# end
#
#
# class PokemonPokedexInfo_Scene
# alias original_pokemonPokedexInfoScene_pbStartScene pbStartScene
# def pbStartScene(species, headShiny = false, bodyShiny = false, pokemon=nil)
# original_pokemonPokedexInfoScene_pbStartScene(species, headShiny, bodyShiny)
# @pokemon = pokemon
# @sprites["infosprite"].setPokemonBitmap(@pokemon)
# end
#
# alias original_pokemonPokedexInfoScene_ppbStartSpritesSelectSceneBrief pbStartSpritesSelectSceneBrief
# def pbStartScene(species, alts_list,headShiny = false, bodyShiny = false)
# original_pokemonPokedexInfoScene_ppbStartSpritesSelectSceneBrief(species, alts_list)
# @isHead_Shiny = headShiny
# @isBody_Shiny = bodyShiny
# @isShiny = bodyShiny || headShiny
# @idSpecies = getDexNumberForSpecies(species)
#
# @sprites["infosprite"].zoom_x = Settings::FRONTSPRITE_SCALE
# @sprites["infosprite"].zoom_y = Settings::FRONTSPRITE_SCALE
# end
#
# alias original_pokemonPokedexInfoScene_pbStartSceneBrief pbStartSceneBrief
# def pbStartSceneBrief(species, headShiny = false, bodyShiny = false)
# original_pokemonPokedexInfoScene_pbStartSceneBrief(species)
# @isHead_Shiny = headShiny
# @isBody_Shiny = bodyShiny
# @isShiny = bodyShiny || headShiny
# @idSpecies = getDexNumberForSpecies(species)
#
# @sprites["infosprite"].zoom_x = Settings::FRONTSPRITE_SCALE
# @sprites["infosprite"].zoom_y = Settings::FRONTSPRITE_SCALE
# end
#
#
#
# def pbUpdateDummyPokemon
# @species = @dexlist[@index][0]
# @gender, @form = $Trainer.pokedex.last_form_seen(@species)
# if @sprites["selectedSprite"]
# @sprites["selectedSprite"].visible = false
# end
# if @sprites["nextSprite"]
# @sprites["nextSprite"].visible = false
# end
# if @sprites["previousSprite"]
# @sprites["previousSprite"].visible = false
# end
# if @pokemon != nil
# @sprites["infosprite"].setPokemonBitmap(@pokemon)
# elsif @idSpecies != nil
# @sprites["infosprite"].setPokemonBitmapFromId(@idSpecies, false, @isShiny, @isBody_Shiny, @isHead_Shiny)
# else
# @sprites["infosprite"].setSpeciesBitmap(@species)
# end
# end
# end
#
#
#
#
# class PokemonSummary_Scene
# def drawPageFive
# return if !$Trainer.has_pokedex
# $Trainer.pokedex.register_last_seen(@pokemon)
# pbFadeOutIn {
# scene = PokemonPokedexInfo_Scene.new
# screen = PokemonPokedexInfoScreen.new(scene)
# screen.pbStartSceneSingle(@pokemon)
# }
# pbChangePokemon
# @page -= 1
# drawPageFour #stay on the same page
# end
#
#
# def drawPage(page)
# if @pokemon.egg?
# drawPageOneEgg
# return
# end
# @sprites["itemicon"].item = @pokemon.item_id
# overlay = @sprites["overlay"].bitmap
# overlay.clear
# base = Color.new(248, 248, 248)
# shadow = Color.new(104, 104, 104)
# # Set background image
# @sprites["background"].setBitmap("Graphics/Pictures/Summary/bg_#{page}") if page < NB_PAGES
# imagepos = []
# # Show the Poké Ball containing the Pokémon
# ballimage = sprintf("Graphics/Pictures/Summary/icon_ball_%s", @pokemon.poke_ball)
# if !pbResolveBitmap(ballimage)
# ballimage = sprintf("Graphics/Pictures/Summary/icon_ball_%02d", pbGetBallType(@pokemon.poke_ball))
# end
# imagepos.push([ballimage, 14, 60])
# # Show status/fainted/Pokérus infected icon
# status = 0
# if @pokemon.fainted?
# status = GameData::Status::DATA.keys.length / 2
# elsif @pokemon.status != :NONE
# status = GameData::Status.get(@pokemon.status).id_number
# elsif @pokemon.pokerusStage == 1
# status = GameData::Status::DATA.keys.length / 2 + 1
# end
# status -= 1
# if status >= 0
# imagepos.push(["Graphics/Pictures/statuses", 124, 100, 0, 16 * status, 44, 16])
# end
# # Show Pokérus cured icon
# if @pokemon.pokerusStage == 2
# imagepos.push([sprintf("Graphics/Pictures/Summary/icon_pokerus"), 176, 100])
# end
# # Show shininess star
# if @pokemon.shiny?
# addShinyStarsToGraphicsArray(imagepos, 2, 126, @pokemon.bodyShiny?, @pokemon.headShiny?, @pokemon.debugShiny?, nil, nil, nil, nil, true)
# #imagepos.push([sprintf("Graphics/Pictures/shiny"), 2, 134])
# end
# # Draw all images
# pbDrawImagePositions(overlay, imagepos)
# # Write various bits of text
# pagename = [_INTL("INFO"),
# _INTL("TRAINER MEMO"),
# _INTL("SKILLS"),
# _INTL("MOVES"),
# _INTL("MOVES")][page - 1]
# textpos = [
# [pagename, 26, 10, 0, base, shadow],
# [@pokemon.name, 46, 56, 0, base, shadow],
# [@pokemon.level.to_s, 46, 86, 0, Color.new(64, 64, 64), Color.new(176, 176, 176)],
# [_INTL("Item"), 66, 312, 0, base, shadow]
# ]
# # Write the held item's name
# if @pokemon.hasItem?
# textpos.push([@pokemon.item.name, 16, 346, 0, Color.new(64, 64, 64), Color.new(176, 176, 176)])
# else
# textpos.push([_INTL("None"), 16, 346, 0, Color.new(192, 200, 208), Color.new(208, 216, 224)])
# end
# # Write the gender symbol
# if @pokemon.male?
# textpos.push([_INTL("♂"), 178, 56, 0, Color.new(24, 112, 216), Color.new(136, 168, 208)])
# elsif @pokemon.female?
# textpos.push([_INTL("♀"), 178, 56, 0, Color.new(248, 56, 32), Color.new(224, 152, 144)])
# end
# # Draw all text
# pbDrawTextPositions(overlay, textpos)
# # Draw the Pokémon's markings
# drawMarkings(overlay, 84, 292)
# # Draw page-specific information
# case page
# when 1 then
# drawPageOne
# when 2 then
# drawPageTwo
# when 3 then
# drawPageThree
# when 4 then
# drawPageFour
# when 5 then
# drawPageFive
# end
# end
#
# end

View File

@@ -0,0 +1,41 @@
# frozen_string_literal: true
class PokemonIconSprite
def createFusionIcon()
bodyPoke_number = getBodyID(pokemon.species)
headPoke_number = getHeadID(pokemon.species, bodyPoke_number)
bodyPoke = GameData::Species.get(bodyPoke_number).species
headPoke = GameData::Species.get(headPoke_number).species
dexNum = getDexNumberForSpecies(@pokemon.species)
basePath = sprintf("Graphics/Pokemon/FusionIcons/icon%03d", dexNum)
shinySuffix = ""
shinySuffix += "_bodyShiny" if @pokemon.headShiny?
shinySuffix += "_headShiny" if @pokemon.bodyShiny?
fusedIconFilePath = sprintf("%s%s.png", basePath, shinySuffix)
if File.exist?(fusedIconFilePath)
return AnimatedBitmap.new(fusedIconFilePath)
end
headSprite = AnimatedBitmap.new(GameData::Species.icon_filename(headPoke, @pokemon.spriteform_head, nil, @pokemon.headShiny?))
bodySprite = AnimatedBitmap.new(GameData::Species.icon_filename(bodyPoke, @pokemon.spriteform_body, nil, @pokemon.bodyShiny?))
fusedIcon = Bitmap.new(headSprite.width, headSprite.height)
fusedIcon.blt(0, 0, headSprite.bitmap, Rect.new(0, 0, headSprite.width, headSprite.height))
for i in 0...bodySprite.width
for j in ((bodySprite.height / 2) + Settings::FUSION_ICON_SPRITE_OFFSET)...bodySprite.height
pixel = bodySprite.bitmap.get_pixel(i, j)
fusedIcon.set_pixel(i, j, pixel)
end
end
fusedIcon.save_to_png(fusedIconFilePath)
return AnimatedBitmap.new(fusedIconFilePath)
end
end

View File

@@ -0,0 +1,60 @@
# frozen_string_literal: true
class PokemonBoxIcon
def createFusionIcon(species, spriteform_head = nil, spriteform_body = nil, bodyShiny = false, headShiny = false)
bodyPoke_number = getBodyID(species)
headPoke_number = getHeadID(species, bodyPoke_number)
bodyPoke = GameData::Species.get(bodyPoke_number).species
headPoke = GameData::Species.get(headPoke_number).species
dexNum = getDexNumberForSpecies(species)
basePath = sprintf("Graphics/Pokemon/FusionIcons/icon%03d", dexNum)
shinySuffix = ""
shinySuffix += "_bodyShiny" if bodyShiny
shinySuffix += "_headShiny" if headShiny
fusedIconFilePath = sprintf("%s%s.png", basePath, shinySuffix)
if File.exist?(fusedIconFilePath)
return AnimatedBitmap.new(fusedIconFilePath)
end
headSprite = AnimatedBitmap.new(GameData::Species.icon_filename(headPoke, spriteform_head, nil, headShiny))
bodySprite = AnimatedBitmap.new(GameData::Species.icon_filename(bodyPoke, spriteform_body, nil, bodyShiny))
fusedIcon = Bitmap.new(headSprite.width, headSprite.height)
fusedIcon.blt(0, 0, headSprite.bitmap, Rect.new(0, 0, headSprite.width, headSprite.height))
for i in 0...bodySprite.width
for j in ((bodySprite.height / 2) + Settings::FUSION_ICON_SPRITE_OFFSET)...bodySprite.height
pixel = bodySprite.bitmap.get_pixel(i, j)
fusedIcon.set_pixel(i, j, pixel)
end
end
fusedIcon.save_to_png(fusedIconFilePath)
return AnimatedBitmap.new(fusedIconFilePath)
end
def refresh(fusion_enabled = true)
return if !@pokemon
if useRegularIcon(@pokemon.species) || @pokemon.egg?
self.setBitmap(GameData::Species.icon_filename_from_pokemon(@pokemon))
else
self.setBitmapDirectly(createFusionIcon(@pokemon.species, @pokemon.spriteform_head, @pokemon.spriteform_body, @pokemon.bodyShiny?, @pokemon.headShiny?))
if fusion_enabled
self.visible = true
else
self.visible = false
end
end
self.src_rect = Rect.new(0, 0, self.bitmap.height, self.bitmap.height)
end
end

View File

@@ -0,0 +1,53 @@
module GameData
class Species
def self.calculateCustomShinyHueOffset(dex_number, bodyShiny, headShiny)
result = []
valid_format_rgb = /^\d+ \d+ \d+.\d+ \d+ \d+$/ # Format RGB classique
valid_format_hex = /^#([0-9a-fA-F]{6}).#([0-9a-fA-F]{6})$/ # Format hexadécimal
ids = []
if dex_number <= NB_POKEMON
ids << dex_number
else
ids << getBodyID(dex_number) if bodyShiny
ids << getHeadID(dex_number, ids[0]) if headShiny
end
color_to_stay = []
ids.each do |id|
offsets = SHINY_COLOR_OFFSETS[id]
next unless offsets
offsets.each_value do |value|
if value.is_a?(String)
if value.match?(valid_format_rgb)
from_rgb, to_rgb = value.split(".").map { |rgb| rgb.split.map(&:to_i) }
if from_rgb == to_rgb && bodyShiny && headShiny
color_to_stay << value
next
end
result << value
elsif value.match?(valid_format_hex)
from_hex, to_hex = value.split(".")
from_rgb = hex_to_rgb(from_hex)
to_rgb = hex_to_rgb(to_hex)
if from_rgb == to_rgb && bodyShiny && headShiny
color_to_stay << "#{from_rgb.join(" ")}.#{to_rgb.join(" ")}"
next
end
result << "#{from_rgb.join(" ")}.#{to_rgb.join(" ")}"
end
end
end
end
if result.empty?
"nil"
elsif bodyShiny && headShiny
[result.join("|"), color_to_stay.join("|")].reject(&:empty?).join("&")
else
result.join("|")
end
end
end
end

View File

@@ -0,0 +1,495 @@
#===============================================================================
# New animated Title Screens for Pokemon Essentials
# by Luka S.J.
#
# Adds new visual styles to the Pokemon Essentials title screen, and animates
# depending on the style selected
#===============================================================================
###SCRIPTEDIT1
# Config value for selecting title screen style
SCREENSTYLE = 1
# 1 - FR/LG
# 2 - R/S/E
class Scene_Intro
alias main_old main
def playIntroCinematic
intro_frames_path = "Graphics\\Pictures\\Intro\\INTRO-%03d"
intro_bgm = "INTRO_music_cries"
intro_movie = Movie.new(intro_frames_path,intro_bgm,230,true)
intro_movie.playInViewPort(@viewport)
end
def main
Graphics.transition(0)
# Cycles through the intro pictures
@skip = false
playIntroCinematic
# Selects title screen style
@screen = GenOneStyle.new
# Plays the title screen intro (is skippable)
@screen.intro
# Creates/updates the main title screen loop
self.update
Graphics.freeze
end
def update
ret = 0
loop do
@screen.update
Graphics.update
Input.update
if continueKeyPressed?
ret = 2
break
end
end
case ret
when 1
closeSplashDelete(scene, args)
when 2
closeTitle
end
end
def closeTitle
# Play Pokemon cry
pbSEPlay("Absorb2", 100, 100)
# Fade out
pbBGMStop(1.0)
# disposes current title screen
disposeTitle
#clearTempFolder
# initializes load screen
sscene = PokemonLoad_Scene.new
sscreen = PokemonLoadScreen.new(sscene)
sscreen.pbStartLoadScreen
end
def closeTitleDelete
pbBGMStop(1.0)
# disposes current title screen
disposeTitle
# initializes delete screen
sscene = PokemonLoadScene.new
sscreen = PokemonLoad.new(sscene)
sscreen.pbStartDeleteScreen
end
# def cyclePics(pics)
# sprite=Sprite.new
# sprite.opacity=0
# for i in 0...pics.length
# bitmap=pbBitmap("Graphics/Titles/#{pics[i]}")
# sprite.bitmap=bitmap
# 15.times do
# sprite.opacity+=17
# pbWait(1)
# end
# wait(32)
# 15.times do
# sprite.opacity-=17
# pbWait(1)
# end
# end
# sprite.dispose
# end
def disposeTitle
@screen.dispose
end
def wait(frames)
return if @skip
frames.times do
Graphics.update
Input.update
@skip = true if continueKeyPressed?()
end
end
end
def continueKeyPressed?()
return Input.trigger?(Input::USE) ||
Input.trigger?(Input::ACTION) ||
Input.trigger?(Input::BACK) ||
Input.trigger?(Input::SPECIAL)
end
#===============================================================================
# Styled to look like the FRLG games
#===============================================================================
class GenOneStyle
def initialize
#Kernel.pbDisplayText("Keybindings: F1", 80, 0, 99999)
#Kernel.pbDisplayText("Version " + Settings::GAME_VERSION_NUMBER, 254, 308, 99999)
@maxPoke = 140 #1st gen, pas de legend la premiere fois, graduellement plus de poke
@customPokeList = getCustomSpeciesList(false)
#Get random Pokemon (1st gen orandPokenly, pas de legend la prmeiere fois)
random_fusion = getRandomFusionForIntro()
random_fusion_body = random_fusion.body_id
random_fusion_head = random_fusion.head_id
# if randpoke_body && randpoke_head
# path_s1 = get_unfused_sprite_path(randpoke_body,true)
# path_s2 = get_unfused_sprite_path(randpoke_head,true)
# path_f = get_fusion_sprite_path(randpoke_body, randpoke_head,true)
@prevPoke1 = random_fusion_body
@prevPoke2 = random_fusion_head
#end
@spriteLoader = BattleSpriteLoader.new
@selector_pos = 0 #1: left, 0:right
# sound file for playing the title screen BGM
bgm = "Pokemon Red-Blue Opening"
@skip = false
# speed of the effect movement
@speed = 16
@opacity = 17
@disposed = false
@currentFrame = 0
# calculates after how many frames the game will reset
#@totalFrames=getPlayTime("Audio/BGM/#{bgm}")*Graphics.frame_rate
@totalFrames = 10 * Graphics.frame_rate
pbBGMPlay(bgm)
# creates all the necessary graphics
@viewport = Viewport.new(0, 0, Graphics.width, Graphics.height)
@viewport.z = 99998
@sprites = {}
@sprites["bars"] = Sprite.new(@viewport)
@sprites["bars"].bitmap = pbBitmap("Graphics/Titles/gen1_bars")
@sprites["bars"].x = Graphics.width
@sprites["bg"] = Sprite.new(@viewport)
@sprites["bg"].bitmap = pbBitmap("Graphics/Titles/gen1_bg")
@sprites["bg"].x = -Graphics.width
@sprites["logo"] = Sprite.new(@viewport)
@sprites["logo"].bitmap = pbBitmap("Graphics/Titles/PokemonInfiniteFusionLogo_Main_25")
@sprites["logo"].tone = Tone.new(255, 255, 255, 255)
@sprites["logo"].x = (Graphics.width/2)-125
@sprites["logo"].y = 0
@sprites["logo"].opacity = 0
@sprites["logo"].z = 9999
@sprites["logo_bg"] = Sprite.new(@viewport)
@sprites["logo_bg"].bitmap = pbBitmap("Graphics/Titles/PokemonInfiniteFusionLogo_Back_25")
@sprites["logo_bg"].tone = Tone.new(255, 255, 255, 255)
@sprites["logo_bg"].x = (Graphics.width/2)-125
@sprites["logo_bg"].y = 0
@sprites["logo_bg"].opacity = 0
#@sprites["bg2"]=Sprite.new(@viewport)
#@sprites["bg2"].bitmap=pbBitmap("Graphics/Titles/gen1_bg_litup")
#@sprites["bg2"].opacity=0
@sprites["start"]=Sprite.new(@viewport)
@sprites["start"].bitmap=pbBitmap("Graphics/Titles/intro_pressKey2")
@sprites["start"].x=125
@sprites["start"].y=350
@sprites["start"].opacity=0
@sprites["effect"] = AnimatedPlane.new(@viewport)
@sprites["effect"].bitmap = pbBitmap("Graphics/Titles/gen1_effect")
@sprites["effect"].opacity = 155
@sprites["effect"].visible = false
@sprites["selector"] = Sprite.new(@viewport)
@sprites["selector"].bitmap = pbBitmap("Graphics/Titles/selector")
@sprites["selector"].x = 0
@sprites["selector"].y = 200
@sprites["selector"].opacity = 0
@sprites["poke"] = Sprite.new(@viewport)
@sprites["poke"].bitmap = @spriteLoader.load_base_sprite(random_fusion_body).bitmap
@sprites["poke"].x = 400
@sprites["poke"].y = 100
@sprites["2poke"] = Sprite.new(@viewport)
@sprites["2poke"].bitmap = @spriteLoader.load_base_sprite(random_fusion_head).bitmap
@sprites["2poke"].x = -150
@sprites["2poke"].y = 100
@sprites["fpoke"] = Sprite.new(@viewport)
fusedPoke = @spriteLoader.load_pif_sprite(random_fusion)
if fusedPoke
@sprites["fpoke"].bitmap = fusedPoke.bitmap
end
@sprites["fpoke"].x = 125
@sprites["fpoke"].y = 100
@sprites["fpoke"].z = 999
@sprites["fpoke"].opacity = 0
@sprites["fpoke"].z = 999
@sprites["poke"].tone = Tone.new(0, 0, 0, 255)
@sprites["poke"].opacity = 0
@sprites["poke2"] = Sprite.new(@viewport)
# @sprites["poke2"].bitmap = pbBitmap("Graphics/Battlers/21364")
@sprites["poke2"].tone = Tone.new(255, 255, 255, 255)
@sprites["poke2"].src_rect.set(0, Graphics.height, Graphics.width, 48)
@sprites["poke2"].y = Graphics.height
@sprites["poke2"].y = 125
@sprites["poke2"].z = 999
@sprites["2poke"].tone = Tone.new(0, 0, 0, 255)
@sprites["2poke"].opacity = 0
@sprites["2poke2"] = Sprite.new(@viewport)
@sprites["2poke2"].bitmap = pbBitmap("Graphics/Battlers/special/000")
@sprites["2poke2"].tone = Tone.new(255, 255, 255, 255)
@sprites["2poke2"].src_rect.set(0, Graphics.height, Graphics.width, 48)
@sprites["2poke2"].y = Graphics.height
@sprites["2poke2"].y = 125
@sprites["2poke2"].z = 999
@sprites["star"] = Sprite.new(@viewport)
@sprites["star"].bitmap = pbBitmap("Graphics/Pictures/darkness")
@sprites["star"].opacity = 0
@sprites["star"].x = -50
@sprites["star"].y = 0
end
def intro
wait(16)
16.times do
end
wait(32)
64.times do
@sprites["2poke"].opacity += 4
@sprites["poke"].opacity += 4
wait(1)
end
8.times do
@sprites["bg"].x += 64
wait(1)
end
wait(8)
8.times do
@sprites["bars"].x -= 64
wait(1)
end
wait(8)
showUIElements()
@sprites["poke"].tone = Tone.new(0, 0, 0, 0)
@sprites["2poke"].tone = Tone.new(0, 0, 0, 0)
@sprites["effect"].visible = false
c = 255.0
16.times do
@sprites["poke2"].opacity -= 255.0 / 16
@sprites["2poke2"].opacity -= 255.0 / 16
c -= 255.0 / 16
@sprites["logo"].tone = Tone.new(c, c, c)
@sprites["logo_bg"].tone = Tone.new(c, c, c)
@sprites["effect"].ox += @speed
wait(1)
end
end
def showUIElements()
@sprites["logo"].opacity = 255
@sprites["logo_bg"].opacity = 255
@sprites["poke2"].opacity = 255
@sprites["2poke2"].opacity = 255
@sprites["start"].opacity = 200
Kernel.pbDisplayText("v." + Settings::GAME_VERSION_NUMBER, 455, 5, 99999,pbColor(:WHITE),pbColor(:INVISIBLE))
end
TONE_INCR = 15
def makeShineEffect()
newColor = @sprites["poke"].tone.red + TONE_INCR
newTone = Tone.new(newColor, newColor, newColor, 0)
@sprites["poke"].tone = newTone
@sprites["2poke"].tone = newTone
end
def introloop
@sprites["star"].opacity = 0
@sprites["poke"].opacity = 255
@sprites["2poke"].opacity = 255
@sprites["fpoke"].opacity = 0
@sprites["poke"].x = @sprites["poke"].x - 1
@sprites["2poke"].x = @sprites["2poke"].x + 1
end
def update_selector_position()
if Input.press?(Input::RIGHT) || Input.press?(Input::LEFT)
if Input.press?(Input::RIGHT)
@selector_pos = 0
@sprites["selector"].opacity = 100
elsif Input.press?(Input::LEFT)
@selector_pos = 1
@sprites["selector"].opacity = 100
end
else
@sprites["selector"].opacity=0
end
if @selector_pos == 0
@sprites["selector"].x = @sprites["poke"].x
else
@sprites["selector"].x = @sprites["2poke"].x
end
end
def update
@sprites["effect"].ox += @speed
@currentFrame += 1
@skip = false
if @sprites["poke"].x < 175 #150
makeShineEffect()
end
#update_selector_position()
if @sprites["poke"].x > @sprites["2poke"].x
@sprites["poke"].x = @sprites["poke"].x - 1
@sprites["2poke"].x = @sprites["2poke"].x + 1
#@sprites["effect"].opacity-=1
#@sprites["bg"].opacity-=1
#@sprites["bg2"].opacity+=3
end
if @sprites["poke"].x <= @sprites["2poke"].x
@sprites["poke"].opacity = 0
@sprites["2poke"].opacity = 0
#16.times do
@sprites["fpoke"].opacity = 255
@sprites["selector"].opacity = 0
#wait(1)
#end
@sprites["poke"].x = 400
@sprites["poke"].tone = Tone.new(0, 0, 0, 0)
@sprites["2poke"].x = -150
@sprites["2poke"].tone = Tone.new(0, 0, 0, 0)
if @maxPoke < NB_POKEMON - 1
@maxPoke += 5 #-1 pour que ca arrive pile. tant pis pour kyurem
end
random_fusion = getRandomFusionForIntro()
random_fusion_body = random_fusion.body_id
random_fusion_head = random_fusion.head_id
@prevPoke1 = random_fusion_body
@prevPoke2 = random_fusion_head
@sprites["poke"].bitmap = @spriteLoader.load_base_sprite(random_fusion_body).bitmap
@sprites["2poke"].bitmap = @spriteLoader.load_base_sprite(random_fusion_head).bitmap
wait(150)
fusedPoke = @spriteLoader.load_pif_sprite(random_fusion)
if fusedPoke
@sprites["fpoke"].bitmap = fusedPoke.bitmap
end
end
@sprites["fpoke"].opacity -= 10
@sprites["effect"].ox += @speed
updatePressStartAnimation(@currentFrame)
if @currentFrame >= @totalFrames
introloop
end
end
PRESS_START_OPACITY_DIFF=2
PRESS_START_ANIMATION_TIME=60
def updatePressStartAnimation(currentFrame)
return if @sprites["start"].opacity==0
@start_opacity_diff=PRESS_START_OPACITY_DIFF if !@start_opacity_diff
@sprites["start"].opacity += @start_opacity_diff
@sprites["logo_bg"].opacity -= @start_opacity_diff
if currentFrame % PRESS_START_ANIMATION_TIME == 0
if @start_opacity_diff <0
@start_opacity_diff = PRESS_START_OPACITY_DIFF
else
@start_opacity_diff = 0 - PRESS_START_OPACITY_DIFF
end
end
end
#new version
# def getFusedPath(randpoke1, randpoke2)
# # path = rand(2) == 0 ? get_fusion_sprite_path(randpoke_body, randpoke_head,true) : get_fusion_sprite_path(randpoke_head, randpoke_body,true)
# path = get_fusion_sprite_path(randpoke2, randpoke1,true)
#
# #allow download here because intentional
# if Input.press?(Input::RIGHT)
# path = get_fusion_sprite_path(randpoke2, randpoke1)
# elsif Input.press?(Input::LEFT)
# path = get_fusion_sprite_path(randpoke1, randpoke2)
# end
# return path
# end
end
# def getFusedPatho(randpoke1s, randpoke2s)
# path = rand(2) == 0 ? "Graphics/Battlers/" + randpoke1s + "/" + randpoke1s + "." + randpoke2s : "Graphics/Battlers/" + randpoke2s + "/" + randpoke2s + "." + randpoke1s
# if Input.press?(Input::RIGHT)
# path = "Graphics/Battlers/" + randpoke2s + "/" + randpoke2s + "." + randpoke1s
# elsif Input.press?(Input::LEFT)
# path = "Graphics/Battlers/" + randpoke1s + "/" + randpoke1s + "." + randpoke2s
# end
# return path
# end
def dispose
Kernel.pbClearText()
pbFadeOutAndHide(@sprites)
pbDisposeSpriteHash(@sprites)
@viewport.dispose
@disposed = true
end
def disposed?
return @disposed
end
def wait(frames)
return if @skip
frames.times do
@currentFrame += 1
updatePressStartAnimation(@currentFrame)
@sprites["effect"].ox += @speed
Graphics.update
Input.update
if continueKeyPressed?
@skip = true
return
end
end
end

View File

@@ -0,0 +1,189 @@
# #==============================================================================#
# # Map Exporter #
# # by Marin #
# #==============================================================================#
# # Manually export a map using `pbExportMap(id)`, or go into the Debug menu and #
# # choose the `Export a Map` option that is now in there. #
# # #
# # `pbExportMap(id, options)`, where `options` is an array that can contain: #
# # - :events -> This will alsoEXPORTED_FILENAME = "export/"
# #
# # def exportAllMaps
# # options = [:events]
# # for id in 1..768
# # pbExportMap(id, options)
# # end
# # end export all events present on the map #
# # - :player -> This will also export the player if they're on that map #
# # `id` can be nil, which case it will use the current map the player is on. #
# #==============================================================================#
# # Please give credit when using this. #
# #==============================================================================#
#
# # This is where the map will be exported to once it has been created.
# # If this file already exists, it is overwritten.
# ExportedMapFilename = "export/"
#
# def exportAllMaps
# options = [:events]
# for id in 1..768
# begin
# pbExportMap(id,options)
# rescue
# echo "error in " +(id.to_s) +"\n"
# end
# end
# end
#
#
# def pbExportMap(id = nil, options = [])
# MarinMapExporter.new(id, options)
# end
#
# def pbExportAMap
# vp = Viewport.new(0, 0, Graphics.width, Graphics.height)
# vp.z = 99999
# s = Sprite.new(vp)
# s.bitmap = Bitmap.new(Graphics.width, Graphics.height)
# s.bitmap.fill_rect(0, 0, Graphics.width, Graphics.height, Color.new(0,0,0))
# mapid = pbListScreen(_INTL("Export Map"),MapLister.new(pbDefaultMap))
# if mapid > 0
# player = $game_map.map_id == mapid
# if player
# cmds = ["Export", "[ ] Events", "[ ] Player", "Cancel"]
# else
# cmds = ["Export", "[ ] Events", "Cancel"]
# end
# cmd = 0
# loop do
# cmd = pbShowCommands(nil,cmds,-1,cmd)
# if cmd == 0
# Graphics.update
# options = []
# options << :events if cmds[1].split("")[1] == "X"
# options << :player if player && cmds[2].split("")[1] == "X"
# msgwindow = Window_AdvancedTextPokemon.newWithSize(
# _INTL("Saving... Please be patient."),
# 0, Graphics.height - 96, Graphics.width, 96, vp
# )
# msgwindow.setSkin(MessageConfig.pbGetSpeechFrame)
# Graphics.update
# pbExportMap(mapid, options)
# msgwindow.setText(_INTL("Successfully exported the map."))
# 60.times { Graphics.update; Input.update }
# pbDisposeMessageWindow(msgwindow)
# break
# elsif cmd == 1
# if cmds[1].split("")[1] == " "
# cmds[1] = "[X] Events"
# else
# cmds[1] = "[ ] Events"
# end
# elsif cmd == 2 && player
# if cmds[2].split("")[1] == " "
# cmds[2] = "[X] Player"
# else
# cmds[2] = "[ ] Player"
# end
# elsif cmd == 3 || cmd == 2 && !player || cmd == -1
# break
# end
# end
# end
# s.bitmap.dispose
# s.dispose
# vp.dispose
# end
#
# DebugMenuCommands.register("exportmap", {
# "parent" => "fieldmenu",
# "name" => _INTL("Export a Map"),
# "description" => _INTL("Choose a map to export it to a PNG."),
# "effect" => proc { |sprites, viewport|
# pbExportAMap
# }
# })
#
# class MarinMapExporter
# def initialize(id = nil, options = [])
# mapinfos = load_data("Data/MapInfos.rxdata")
# filename = id.to_s + "_" + mapinfos[id].name
#
#
#
# @id = id || $game_map.map_id
# @options = options
# @data = load_data("Data/Map#{@id.to_digits}.rxdata")
# @tiles = @data.data
# @result = Bitmap.new(32 * @tiles.xsize, 32 * @tiles.ysize)
# @tilesetdata = load_data("Data/Tilesets.rxdata")
# tilesetname = @tilesetdata[@data.tileset_id].tileset_name
# @tileset = Bitmap.new("Graphics/Tilesets/#{tilesetname}")
# @autotiles = @tilesetdata[@data.tileset_id].autotile_names
# .filter { |e| e && e.size > 0 }
# .map { |e| Bitmap.new("Graphics/Autotiles/#{e}") }
# for z in 0..2
# for y in 0...@tiles.ysize
# for x in 0...@tiles.xsize
# id = @tiles[x, y, z]
# next if id == 0
# if id < 384 # Autotile
# build_autotile(@result, x * 32, y * 32, id)
# else # Normal tile
# @result.blt(x * 32, y * 32, @tileset,
# Rect.new(32 * ((id - 384) % 8),32 * ((id - 384) / 8).floor,32,32))
# end
# end
# end
# end
# if @options.include?(:events)
# keys = @data.events.keys.sort { |a, b| @data.events[a].y <=> @data.events[b].y }
# keys.each do |id|
# event = @data.events[id]
# page = pbGetActiveEventPage(event, @id)
# if page && page.graphic && page.graphic.character_name && page.graphic.character_name.size > 0
# bmp = Bitmap.new("Graphics/Characters/#{page.graphic.character_name}")
# if bmp
# bmp = bmp.clone
# bmp.hue_change(page.graphic.character_hue) unless page.graphic.character_hue == 0
# ex = bmp.width / 4 * page.graphic.pattern
# ey = bmp.height / 4 * (page.graphic.direction / 2 - 1)
# @result.blt(event.x * 32 + 16 - bmp.width / 8, (event.y + 1) * 32 - bmp.height / 4, bmp,
# Rect.new(ex, ey, bmp.width / 4, bmp.height / 4))
# end
# bmp = nil
# end
# end
# end
# if @options.include?(:player) && $game_map.map_id == @id && $game_player.character_name &&
# $game_player.character_name.size > 0
# bmp = Bitmap.new("Graphics/Characters/#{$game_player.character_name}")
# dir = $game_player.direction
# @result.blt($game_player.x * 32 + 16 - bmp.width / 8, ($game_player.y + 1) * 32 - bmp.height / 4,
# bmp, Rect.new(0, bmp.height / 4 * (dir / 2 - 1), bmp.width / 4, bmp.height / 4))
# end
# @result.save_to_png(ExportedMapFilename + filename + ".png")
# echo (id.to_s) +"\n"
# Input.update
# end
#
# def build_autotile(bitmap, x, y, id)
# autotile = @autotiles[id / 48 - 1]
# return unless autotile
# if autotile.height == 32
# bitmap.blt(x,y,autotile,Rect.new(0,0,32,32))
# else
# id %= 48
# tiles = CustomTilemap::Autotiles[id >> 3][id & 7]
# src = Rect.new(0,0,0,0)
# halfTileWidth = halfTileHeight = halfTileSrcWidth = halfTileSrcHeight = 32 >> 1
# for i in 0...4
# tile_position = tiles[i] - 1
# src.set((tile_position % 6) * halfTileSrcWidth,
# (tile_position / 6) * halfTileSrcHeight, halfTileSrcWidth, halfTileSrcHeight)
# bitmap.blt(i % 2 * halfTileWidth + x, i / 2 * halfTileHeight + y,
# autotile, src)
# end
# end
# end
# end

View File

@@ -0,0 +1,79 @@
class Movie
attr_reader :finished
def initialize(framesPath, bgm, maxFrame = 1000, canStopEarly=false)
@currentFrame = 1
@initialTime = nil
@timeElapsed = nil
@maxFrame = maxFrame
@framesPath = framesPath
@bgm = bgm
@canStopEarly = canStopEarly
@finished=false
end
def play(imageNumber = 12)
@finished=false
@currentFrame = 1
@initialTime = Time.now
@timeElapsed = Time.now
pbBGMPlay(@bgm)
while (@currentFrame <= @maxFrame)# && !(@canStopEarly && Input::ACTION))
if Input.trigger?(Input::C)
end
frame = sprintf(@framesPath, @currentFrame)
picture = Game_Picture.new(imageNumber)
picture.show(frame, 0, 0, 0, 100, 100, 255, 0)
pbWait(Graphics.frame_rate / 20)
picture.erase
@currentFrame += 1
end
@finished=true
pbBGMStop
end
def playInViewPort(viewport)
@finished=false
@currentFrame = 1
@initialTime = Time.now
@timeElapsed = Time.now
pbBGMPlay(@bgm)
while (@currentFrame <= @maxFrame)# && !(@canStopEarly && Input::ACTION))
break if Input.trigger?(Input::C) && @canStopEarly
frame = sprintf(@framesPath, @currentFrame)
picture = Sprite.new(viewport)
picture.bitmap = pbBitmap(frame)
picture.visible=true
pbWait(Graphics.frame_rate / 20)
picture.dispose
@currentFrame += 1
end
@finished=true
pbBGMStop
end
# not really necessary I think
# def pbAutoregulador()
# hora_inicio = $game_variables[VARIABLE_TIME_INITIAL]
# hora_actual = Time.now
# diferencia = (hora_actual - hora_inicio) * 20 #20 frames corresponde a 1 seg
# #Redondeo
# diferencia_entera = diferencia.to_i
#
# diferencia_entera = diferencia_entera.to_f
#
# if diferencia - diferencia_entera >= 0.5
# diferencia_entera = diferencia_entera + 1
# end
#
# $game_variables[VARIABLE_CURRENT_FRAME] = diferencia_entera.to_int
#
# $game_variables[VARIABLE_TIME_ELAPSED] = Time.now
#
# return $game_variables[VARIABLE_CURRENT_FRAME]
# end
end

View File

@@ -0,0 +1,935 @@
# Auto Multi Save by http404error
# For Pokemon Essentials v19.1
# Description:
# Adds multiple save slots and the abliity to auto-save.
# Included is code to autosave every 30 overworld steps. Feel free to edit or delete it (it's right at the top).
# On the Load screen you can use the left and right buttons while "Continue" is selected to cycle through files.
# When saving, you can quickly save to the same slot you loaded from, or pick another slot.
# Battle Challenges are NOT supported.
# Customization:
# I recommend altering your pause menu to quit to the title screen or load screen instead of exiting entirely.
# -> For instance, just change the menu text to "Quit to Title" and change `$scene = nil` to `$scene = pbCallTitle`.
# Call Game.auto_save whenever you want.
# -> Autosaving during an event script will correctly resume event execution when you load the game.
# -> I haven't investigated if it might be possible to autosave on closing the window with the X or Alt-F4 yet.
# You can rename the slots to your liking, or change how many there are.
# In some cases, you might want to remove the option to save to a different slot than the one you loaded from.
# Notes:
# On the first Load, the old Game.rxdata will be copied to the first slot in MANUAL_SLOTS. It won't have a known save time though.
# The interface to `Game.save` has been changed.
# Due to the slots, alters the save backup system in the case of save corruption/crashes - backups will be named Backup000.rxdata and so on.
# Heavily modifies the SaveData module and Save and Load screens. This may cause incompatibility with some other plugins or custom game code.
# Not everything here has been tested extensively, only what applies to normal usage of my game. Please let me know if you run into any problems.
# Future development ideas:
# There isn't currently support for unlimited slots but it wouldn't be too hard.
# Letting the user name their slots seems cool.
# It would be nice if there was a sliding animation for switching files on that load screen. :)
# It would be nice if the file select arrows used nicer animated graphics, kind of like the Bag.
# Maybe auto-save slots should act like a queue instead of cycling around.
# Autosave every 30 steps
# Events.onStepTaken += proc {
# $Trainer.autosave_steps = 0 if !$Trainer.autosave_steps
# $Trainer.autosave_steps += 1
# if $Trainer.autosave_steps >= 30
# echo("Autosaving...")
# $Trainer.autosave_steps = 0
# Game.auto_save
# echoln("done.")
# end
# }
def onLoadExistingGame()
migrateOldSavesToCharacterCustomization()
clear_all_images()
loadDateSpecificChanges()
end
def loadDateSpecificChanges()
current_date = Time.new
if (current_date.day == 1 && current_date.month == 4)
$Trainer.hat2=HAT_CLOWN if $Trainer.unlocked_hats.include?(HAT_CLOWN)
end
end
def onStartingNewGame() end
def migrateOldSavesToCharacterCustomization()
if !$Trainer.unlocked_clothes
$Trainer.unlocked_clothes = [DEFAULT_OUTFIT_MALE,
DEFAULT_OUTFIT_FEMALE,
STARTING_OUTFIT]
end
if !$Trainer.unlocked_hats
$Trainer.unlocked_hats = [DEFAULT_OUTFIT_MALE, DEFAULT_OUTFIT_FEMALE]
end
if !$Trainer.unlocked_hairstyles
$Trainer.unlocked_hairstyles = [DEFAULT_OUTFIT_MALE, DEFAULT_OUTFIT_FEMALE]
end
if !$Trainer.clothes || !$Trainer.hair #|| !$Trainer.hat
setupStartingOutfit()
end
end
#===============================================================================
#
#===============================================================================
module SaveData
# You can rename these slots or change the amount of them
# They change the actual save file names though, so it would take some extra work to use the translation system on them.
AUTO_SLOTS = [
'Auto 1',
'Auto 2'
]
MANUAL_SLOTS = [
'File A',
'File B',
'File C',
'File D',
'File E',
'File F',
'File G',
'File H'
]
# For compatibility with games saved without this plugin
OLD_SAVE_SLOT = 'Game'
SAVE_DIR = if File.directory?(System.data_directory)
System.data_directory
else
'.'
end
def self.each_slot
(AUTO_SLOTS + MANUAL_SLOTS).each { |f| yield f }
end
def self.get_full_path(file)
return "#{SAVE_DIR}/#{file}.rxdata"
end
def self.get_backup_file_path
backup_file = "Backup000"
while File.file?(self.get_full_path(backup_file))
backup_file.next!
end
return self.get_full_path(backup_file)
end
# Given a list of save file names and a file name in it, return the next file after it which exists
# If no other file exists, will just return the same file again
def self.get_next_slot(file_list, file)
old_index = file_list.find_index(file)
ordered_list = file_list.rotate(old_index + 1)
ordered_list.each do |f|
return f if File.file?(self.get_full_path(f))
end
# should never reach here since the original file should always exist
return file
end
# See self.get_next_slot
def self.get_prev_slot(file_list, file)
return self.get_next_slot(file_list.reverse, file)
end
# Returns nil if there are no saves
# Returns the first save if there's a tie for newest
# Old saves from previous version don't store their saved time, so are treated as very old
def self.get_newest_save_slot
newest_time = Time.at(0) # the Epoch
newest_slot = nil
self.each_slot do |file_slot|
full_path = self.get_full_path(file_slot)
next if !File.file?(full_path)
begin
temp_save_data = self.read_from_file(full_path)
rescue
next
end
save_time = temp_save_data[:player].last_time_saved || Time.at(1)
if save_time > newest_time
newest_time = save_time
newest_slot = file_slot
end
end
# Port old save
if newest_slot.nil? && File.file?(self.get_full_path(OLD_SAVE_SLOT))
file_copy(self.get_full_path(OLD_SAVE_SLOT), self.get_full_path(MANUAL_SLOTS[0]))
return MANUAL_SLOTS[0]
end
return newest_slot
end
# @return [Boolean] whether any save file exists
def self.exists?
self.each_slot do |slot|
full_path = SaveData.get_full_path(slot)
return true if File.file?(full_path)
end
return false
end
# This is used in a hidden function (ctrl+down+cancel on title screen) or if the save file is corrupt
# Pass nil to delete everything, or a file path to just delete that one
# @raise [Error::ENOENT]
def self.delete_file(file_path = nil)
if file_path
File.delete(file_path) if File.file?(file_path)
else
self.each_slot do |slot|
full_path = self.get_full_path(slot)
File.delete(full_path) if File.file?(full_path)
end
end
end
# Moves a save file from the old Saved Games folder to the new
# location specified by {MANUAL_SLOTS[0]}. Does nothing if a save file
# already exists in {MANUAL_SLOTS[0]}.
def self.move_old_windows_save
return if self.exists?
game_title = System.game_title.gsub(/[^\w ]/, '_')
home = ENV['HOME'] || ENV['HOMEPATH']
return if home.nil?
old_location = File.join(home, 'Saved Games', game_title)
return unless File.directory?(old_location)
old_file = File.join(old_location, 'Game.rxdata')
return unless File.file?(old_file)
File.move(old_file, MANUAL_SLOTS[0])
end
# Runs all possible conversions on the given save data.
# Saves a backup before running conversions.
# @param save_data [Hash] save data to run conversions on
# @return [Boolean] whether conversions were run
def self.run_conversions(save_data)
validate save_data => Hash
conversions_to_run = self.get_conversions(save_data)
return false if conversions_to_run.none?
File.open(SaveData.get_backup_file_path, 'wb') { |f| Marshal.dump(save_data, f) }
echoln "Backed up save to #{SaveData.get_backup_file_path}"
echoln "Running #{conversions_to_run.length} conversions..."
conversions_to_run.each do |conversion|
echo "#{conversion.title}..."
conversion.run(save_data)
echoln ' done.'
end
echoln '' if conversions_to_run.length > 0
save_data[:essentials_version] = Essentials::VERSION
save_data[:game_version] = Settings::GAME_VERSION
return true
end
end
#===============================================================================
#
#===============================================================================
class PokemonLoad_Scene
def pbChoose(commands, continue_idx)
@sprites["cmdwindow"].commands = commands
loop do
Graphics.update
Input.update
pbUpdate
if Input.trigger?(Input::USE)
return @sprites["cmdwindow"].index
elsif @sprites["cmdwindow"].index == continue_idx
@sprites["leftarrow"].visible = true
@sprites["rightarrow"].visible = true
if Input.trigger?(Input::LEFT)
return -3
elsif Input.trigger?(Input::RIGHT)
return -2
end
else
@sprites["leftarrow"].visible = false
@sprites["rightarrow"].visible = false
end
end
end
def pbStartScene(commands, show_continue, trainer, frame_count, map_id)
@commands = commands
@sprites = {}
@viewport = Viewport.new(0, 0, Graphics.width, Graphics.height)
@viewport.z = 99998
addBackgroundOrColoredPlane(@sprites, "background", "loadbg", Color.new(248, 248, 248), @viewport)
@sprites["leftarrow"] = AnimatedSprite.new("Graphics/Pictures/leftarrow", 8, 40, 28, 2, @viewport)
@sprites["leftarrow"].x = 10
@sprites["leftarrow"].y = 140
@sprites["leftarrow"].play
#@sprites["leftarrow"].visible=true
@sprites["rightarrow"] = AnimatedSprite.new("Graphics/Pictures/rightarrow", 8, 40, 28, 2, @viewport)
@sprites["rightarrow"].x = 460
@sprites["rightarrow"].y = 140
@sprites["rightarrow"].play
#@sprites["rightarrow"].visible=true
y = 16 * 2
for i in 0...commands.length
@sprites["panel#{i}"] = PokemonLoadPanel.new(i, commands[i],
(show_continue) ? (i == 0) : false, trainer, frame_count, map_id, @viewport)
@sprites["panel#{i}"].x = 24 * 2
@sprites["panel#{i}"].y = y
@sprites["panel#{i}"].pbRefresh
y += (show_continue && i == 0) ? 112 * 2 : 24 * 2
end
@sprites["cmdwindow"] = Window_CommandPokemon.new([])
@sprites["cmdwindow"].viewport = @viewport
@sprites["cmdwindow"].visible = false
end
end
#===============================================================================
#
#===============================================================================
class PokemonLoadScreen
def initialize(scene)
@scene = scene
@selected_file = SaveData.get_newest_save_slot
end
# @param file_path [String] file to load save data from
# @return [Hash] save data
def load_save_file(file_path)
begin
save_data = SaveData.read_from_file(file_path)
rescue
save_data = try_load_backup(file_path)
end
unless SaveData.valid?(save_data)
save_data = try_load_backup(file_path)
end
return save_data
end
def try_load_backup(file_path)
if File.file?(file_path + ".bak")
pbMessage(_INTL("The save file is corrupt. A backup will be loaded."))
save_data = load_save_file(file_path + ".bak")
else
self.prompt_save_deletion(file_path)
return {}
end
return save_data
end
# Called if save file is invalid.
# Prompts the player to delete the save files.
def prompt_save_deletion(file_path)
pbMessage(_INTL("A save file is corrupt, or is incompatible with this game."))
self.delete_save_data(file_path) if pbConfirmMessageSerious(
_INTL("Do you want to delete that save file? The game will exit afterwards either way.")
)
exit
end
# nil deletes all, otherwise just the given file
def delete_save_data(file_path = nil)
begin
SaveData.delete_file(file_path)
pbMessage(_INTL("The save data was deleted."))
rescue SystemCallError
pbMessage(_INTL("The save data could not be deleted."))
end
end
def checkEnableSpritesDownload
if $PokemonSystem.download_sprites && $PokemonSystem.download_sprites != 0
customSprites = getCustomSpeciesList
if !customSprites
promptEnableSpritesDownload
else
if customSprites.length < 1000
promptEnableSpritesDownload
end
end
end
end
#So that the options menu is set on the correct difficulty on older saves
def ensureCorrectDifficulty()
$Trainer.selected_difficulty = 1 #normal
$Trainer.selected_difficulty = 0 if $game_switches[SWITCH_GAME_DIFFICULTY_EASY]
$Trainer.selected_difficulty = 2 if $game_switches[SWITCH_GAME_DIFFICULTY_HARD]
$Trainer.lowest_difficulty = $Trainer.selected_difficulty if !$Trainer.lowest_difficulty
end
def setGameMode()
$Trainer.game_mode = 0 #classic
$Trainer.game_mode = 2 if $game_switches[SWITCH_MODERN_MODE]
$Trainer.game_mode = 3 if $game_switches[SWITCH_EXPERT_MODE]
$Trainer.game_mode = 4 if $game_switches[SWITCH_SINGLE_POKEMON_MODE]
$Trainer.game_mode = 1 if $game_switches[SWITCH_RANDOMIZED_AT_LEAST_ONCE]
$Trainer.game_mode = 5 if $game_switches[ENABLED_DEBUG_MODE_AT_LEAST_ONCE]
end
def promptEnableSpritesDownload
message = "Some sprites appear to be missing from your game. \nWould you like the game to download sprites automatically while playing? (this requires an internet connection)"
if pbConfirmMessage(message)
$PokemonSystem.download_sprites = 0
end
end
def check_for_spritepack_update()
$updated_spritesheets = [] if !$updated_spritesheets
if new_spritepack_was_released()
pbFadeOutIn() {
return if !downloadAllowed?()
should_update = pbConfirmMessage("A new spritepack was released. Would you like to let the game update your game's sprites automatically?")
if should_update
updateCreditsFile()
updateOnlineCustomSpritesFile()
reset_updated_spritesheets_cache()
spritesLoader = BattleSpriteLoader.new
spritesLoader.clear_sprites_cache(:CUSTOM)
spritesLoader.clear_sprites_cache(:BASE)
$updated_spritesheets = []
pbMessage("Data files updated. New sprites will now be downloaded as you play!")
end
}
end
end
def reset_updated_spritesheets_cache()
echoln "resetting updated spritesheets list"
begin
File.open(Settings::UPDATED_SPRITESHEETS_CACHE, 'w') { |file| file.truncate(0) }
echoln "File reset successfully."
rescue => e
echoln "Failed to reset file: #{e.message}"
end
end
def preload_party(trainer)
spriteLoader = BattleSpriteLoader.new
for pokemon in trainer.party
spriteLoader.preload_sprite_from_pokemon(pokemon)
end
end
#unused - too slow, & multithreading not possible
# def preload_party_and_boxes(storage, trainer)
# echoln "Loading boxes and party into cache in the background"
# start_time = Time.now
# spriterLoader = BattleSpriteLoader.new
# for box in storage.boxes
# for pokemon in box.pokemon
# if pokemon != nil
# if !pokemon.egg?
# spriterLoader.preload_sprite_from_pokemon(pokemon)
# end
# end
# end
# end
# for pokemon in trainer.party
# spriterLoader.preload_sprite_from_pokemon(pokemon)
# end
# end_time = Time.now
# echoln "Finished in #{end_time - start_time} seconds"
# end
def pbStartLoadScreen
updateHttpSettingsFile
updateCustomDexFile
newer_version = find_newer_available_version
if newer_version
pbMessage(_INTL("Version {1} is now available! Please use the game's installer to download the newest version. Check the Discord for more information.", newer_version))
end
if Settings::STARTUP_MESSAGES != ""
pbMessage(_INTL(Settings::STARTUP_MESSAGES))
end
if ($game_temp.unimportedSprites && $game_temp.unimportedSprites.size > 0)
handleReplaceExistingSprites()
end
if ($game_temp.nb_imported_sprites && $game_temp.nb_imported_sprites > 0)
pbMessage(_INTL("{1} new custom sprites were imported into the game", $game_temp.nb_imported_sprites.to_s))
end
checkEnableSpritesDownload
$game_temp.nb_imported_sprites = nil
copyKeybindings()
save_file_list = SaveData::AUTO_SLOTS + SaveData::MANUAL_SLOTS
first_time = true
loop do
# Outer loop is used for switching save files
if @selected_file
@save_data = load_save_file(SaveData.get_full_path(@selected_file))
else
@save_data = {}
end
commands = []
cmd_continue = -1
cmd_new_game = -1
cmd_options = -1
cmd_language = -1
cmd_mystery_gift = -1
cmd_debug = -1
cmd_quit = -1
show_continue = !@save_data.empty?
new_game_plus = show_continue && (@save_data[:player].new_game_plus_unlocked || $DEBUG)
if show_continue
commands[cmd_continue = commands.length] = "#{@selected_file}"
if @save_data[:player].mystery_gift_unlocked
commands[cmd_mystery_gift = commands.length] = _INTL('Mystery Gift') # Honestly I have no idea how to make Mystery Gift work well with this.
end
end
commands[cmd_new_game = commands.length] = _INTL('New Game')
if new_game_plus
commands[cmd_new_game_plus = commands.length] = _INTL('New Game +')
end
commands[cmd_options = commands.length] = _INTL('Options')
commands[cmd_language = commands.length] = _INTL('Language') if Settings::LANGUAGES.length >= 2
commands[cmd_discord = commands.length] = _INTL('Discord')
commands[cmd_wiki = commands.length] = _INTL('Wiki')
commands[cmd_debug = commands.length] = _INTL('Debug') if $DEBUG
commands[cmd_quit = commands.length] = _INTL('Quit Game')
cmd_left = -3
cmd_right = -2
map_id = show_continue ? @save_data[:map_factory].map.map_id : 0
@scene.pbStartScene(commands, show_continue, @save_data[:player],
@save_data[:frame_count] || 0, map_id)
@scene.pbSetParty(@save_data[:player]) if show_continue
if first_time
@scene.pbStartScene2
first_time = false
else
@scene.pbUpdate
end
loop do
# Inner loop is used for going to other menus and back and stuff (vanilla)
command = @scene.pbChoose(commands, cmd_continue)
pbPlayDecisionSE if command != cmd_quit
case command
when cmd_continue
@scene.pbEndScene
Game.load(@save_data)
$game_switches[SWITCH_V5_1] = true
check_for_spritepack_update()
ensureCorrectDifficulty()
setGameMode()
initialize_alt_sprite_substitutions()
$PokemonGlobal.autogen_sprites_cache = {}
preload_party(@save_data[:player])
return
when cmd_new_game
@scene.pbEndScene
Game.start_new
initialize_alt_sprite_substitutions()
return
when cmd_new_game_plus
@scene.pbEndScene
Game.start_new(@save_data[:bag], @save_data[:storage_system], @save_data[:player])
initialize_alt_sprite_substitutions()
@save_data[:player].new_game_plus_unlocked = true
return
when cmd_discord
openUrlInBrowser(Settings::DISCORD_URL)
when cmd_wiki
openUrlInBrowser(Settings::WIKI_URL)
when cmd_mystery_gift
pbFadeOutIn { pbDownloadMysteryGift(@save_data[:player]) }
when cmd_options
pbFadeOutIn do
scene = PokemonGameOption_Scene.new
screen = PokemonOptionScreen.new(scene)
screen.pbStartScreen(true)
end
when cmd_language
@scene.pbEndScene
$PokemonSystem.language = pbChooseLanguage
pbLoadMessages('Data/' + Settings::LANGUAGES[$PokemonSystem.language][1])
if show_continue
@save_data[:pokemon_system] = $PokemonSystem
File.open(SaveData.get_full_path(@selected_file), 'wb') { |file| Marshal.dump(@save_data, file) }
end
$scene = pbCallTitle
return
when cmd_debug
pbFadeOutIn { pbDebugMenu(false) }
when cmd_quit
pbPlayCloseMenuSE
@scene.pbEndScene
$scene = nil
return
when cmd_left
@scene.pbCloseScene
@selected_file = SaveData.get_prev_slot(save_file_list, @selected_file)
break # to outer loop
when cmd_right
@scene.pbCloseScene
@selected_file = SaveData.get_next_slot(save_file_list, @selected_file)
break # to outer loop
else
pbPlayBuzzerSE
end
end
end
end
end
#===============================================================================
#
#===============================================================================
class PokemonSave_Scene
def pbUpdateSlotInfo(slottext)
pbDisposeSprite(@sprites, "slotinfo")
@sprites["slotinfo"] = Window_AdvancedTextPokemon.new(slottext)
@sprites["slotinfo"].viewport = @viewport
@sprites["slotinfo"].x = 0
@sprites["slotinfo"].y = 160
@sprites["slotinfo"].width = 228 if @sprites["slotinfo"].width < 228
@sprites["slotinfo"].visible = true
end
end
#===============================================================================
#
#===============================================================================
class PokemonSaveScreen
def doSave(slot)
if Game.save(slot)
pbMessage(_INTL("\\se[]{1} saved the game.\\me[GUI save game]\\wtnp[30]", $Trainer.name))
return true
else
pbMessage(_INTL("\\se[]Save failed.\\wtnp[30]"))
return false
end
end
# Return true if pause menu should close after this is done (if the game was saved successfully)
def pbSaveScreen
ret = false
@scene.pbStartScreen
if !$Trainer.save_slot
# New Game - must select slot
ret = slotSelect
else
choices = [
_INTL("Save to #{$Trainer.save_slot}"),
_INTL("Save to another slot"),
_INTL("Don't save")
]
opt = pbMessage(_INTL('Would you like to save the game?'), choices, 3)
if opt == 0
pbSEPlay('GUI save choice')
ret = doSave($Trainer.save_slot)
elsif opt == 1
pbPlayDecisionSE
ret = slotSelect
else
pbPlayCancelSE
end
end
@scene.pbEndScreen
return ret
end
# Call this to open the slot select screen
# Returns true if the game was saved, otherwise false
def slotSelect
ret = false
choices = SaveData::MANUAL_SLOTS
choice_info = SaveData::MANUAL_SLOTS.map { |s| getSaveInfoBoxContents(s) }
index = slotSelectCommands(choices, choice_info)
if index >= 0
slot = SaveData::MANUAL_SLOTS[index]
# Confirm if slot not empty
if !File.file?(SaveData.get_full_path(slot)) ||
pbConfirmMessageSerious(_INTL("Are you sure you want to overwrite the save in #{slot}?")) # If the slot names were changed this grammar might need adjustment.
pbSEPlay('GUI save choice')
ret = doSave(slot)
end
end
pbPlayCloseMenuSE if !ret
return ret
end
# Handles the UI for the save slot select screen. Returns the index of the chosen slot, or -1.
# Based on pbShowCommands
def slotSelectCommands(choices, choice_info, defaultCmd = 0)
msgwindow = Window_AdvancedTextPokemon.new(_INTL("Which slot to save in?"))
msgwindow.z = 99999
msgwindow.visible = true
msgwindow.letterbyletter = true
msgwindow.back_opacity = MessageConfig::WINDOW_OPACITY
pbBottomLeftLines(msgwindow, 2)
$game_temp.message_window_showing = true if $game_temp
msgwindow.setSkin(MessageConfig.pbGetSpeechFrame)
cmdwindow = Window_CommandPokemonEx.new(choices)
cmdwindow.z = 99999
cmdwindow.visible = true
cmdwindow.resizeToFit(cmdwindow.commands)
pbPositionNearMsgWindow(cmdwindow, msgwindow, :right)
cmdwindow.index = defaultCmd
command = 0
loop do
@scene.pbUpdateSlotInfo(choice_info[cmdwindow.index])
Graphics.update
Input.update
cmdwindow.update
msgwindow.update if msgwindow
if Input.trigger?(Input::BACK)
command = -1
break
end
if Input.trigger?(Input::USE)
command = cmdwindow.index
break
end
pbUpdateSceneMap
end
ret = command
cmdwindow.dispose
msgwindow.dispose
$game_temp.message_window_showing = false if $game_temp
Input.update
return ret
end
# Show the player some data about their currently selected save slot for quick identification
# This doesn't use player gender for coloring, unlike the default save window
def getSaveInfoBoxContents(slot)
full_path = SaveData.get_full_path(slot)
if !File.file?(full_path)
return _INTL("<ac><c3=3050C8,D0D0C8>(empty)</c3></ac>")
end
temp_save_data = SaveData.read_from_file(full_path)
# Last save time
time = temp_save_data[:player].last_time_saved
if time
date_str = time.strftime("%x")
time_str = time.strftime(_INTL("%I:%M%p"))
datetime_str = "#{date_str}<r>#{time_str}<br>"
else
datetime_str = _INTL("<ac>(old save)</ac>")
end
# Map name
map_str = pbGetMapNameFromId(temp_save_data[:map_factory].map.map_id)
# Elapsed time
totalsec = (temp_save_data[:frame_count] || 0) / Graphics.frame_rate
hour = totalsec / 60 / 60
min = totalsec / 60 % 60
if hour > 0
elapsed_str = _INTL("Time<r>{1}h {2}m<br>", hour, min)
else
elapsed_str = _INTL("Time<r>{1}m<br>", min)
end
return "<c3=3050C8,D0D0C8>#{datetime_str}</c3>" + # blue
"<ac><c3=209808,90F090>#{map_str}</c3></ac>" + # green
"#{elapsed_str}"
end
end
#===============================================================================
#
#===============================================================================
module Game
# Fix New Game bug (if you saved during an event script)
# This fix is from Essentials v20.1 Hotfixes 1.0.5
def self.start_new(ngp_bag = nil, ngp_storage = nil, ngp_trainer = nil)
if $game_map && $game_map.events
$game_map.events.each_value { |event| event.clear_starting }
end
$game_temp.common_event_id = 0 if $game_temp
$PokemonTemp.begunNewGame = true
pbMapInterpreter&.clear
pbMapInterpreter&.setup(nil, 0, 0)
$scene = Scene_Map.new
SaveData.load_new_game_values
$MapFactory = PokemonMapFactory.new($data_system.start_map_id)
$game_player.moveto($data_system.start_x, $data_system.start_y)
$game_player.refresh
$PokemonEncounters = PokemonEncounters.new
$PokemonEncounters.setup($game_map.map_id)
$game_map.autoplay
$game_map.update
#
# if ngp_bag != nil
# $PokemonBag = ngp_clean_item_data(ngp_bag)
# end
if ngp_storage != nil
$PokemonStorage = ngp_clean_pc_data(ngp_storage, ngp_trainer.party)
end
if ngp_trainer
$Trainer.unlocked_hats = ngp_trainer.unlocked_hats
$Trainer.unlocked_clothes = ngp_trainer.unlocked_clothes
end
end
# Loads bootup data from save file (if it exists) or creates bootup data (if
# it doesn't).
def self.set_up_system
SaveData.move_old_windows_save if System.platform[/Windows/]
save_slot = SaveData.get_newest_save_slot
if save_slot
save_data = SaveData.read_from_file(SaveData.get_full_path(save_slot))
else
save_data = {}
end
if save_data.empty?
SaveData.initialize_bootup_values
else
SaveData.load_bootup_values(save_data)
end
# Set resize factor
pbSetResizeFactor([$PokemonSystem.screensize, 4].min)
# Set language (and choose language if there is no save file)
if Settings::LANGUAGES.length >= 2
$PokemonSystem.language = pbChooseLanguage if save_data.empty?
pbLoadMessages('Data/' + Settings::LANGUAGES[$PokemonSystem.language][1])
end
end
def self.backup_savefile(save_path, slot)
begin
backup_dir = File.join(File.dirname(save_path), "backups")
Dir.mkdir(backup_dir) if !Dir.exist?(backup_dir)
backup_slot_dir = File.join(File.dirname(save_path), "backups/#{slot}")
Dir.mkdir(backup_slot_dir) if !Dir.exist?(backup_slot_dir)
# Manage rolling backups
if File.exist?(save_path)
# Generate a timestamped backup name
timestamp = Time.now.strftime("%Y%m%d%H%M%S")
backup_file = File.join(backup_slot_dir, "#{slot}_#{timestamp}.rxdata")
# Copy the save file manually
File.open(save_path, 'rb') do |source|
File.open(backup_file, 'wb') do |dest|
dest.write(source.read)
end
end
# Clean up old backups
backups = Dir.get(backup_slot_dir, "*.rxdata")
# Keep only the latest N backups
if backups.length > Settings::SAVEFILE_NB_BACKUPS
excess_backups = backups[0...(backups.length - Settings::SAVEFILE_NB_BACKUPS)]
echoln excess_backups
excess_backups.each { |old_backup| File.delete(old_backup) }
end
end
rescue => e
echoln ("There was an error while creating a backup savefile.")
echoln("Error: #{e.message}")
end
end
# Saves the game. Returns whether the operation was successful.
# @param save_file [String] the save file path
# @param safe [Boolean] whether $PokemonGlobal.safesave should be set to true
# @return [Boolean] whether the operation was successful
# @raise [SaveData::InvalidValueError] if an invalid value is being saved
def self.save(slot = nil, auto = false, safe: false)
slot = $Trainer.save_slot if slot.nil?
return false if slot.nil?
file_path = SaveData.get_full_path(slot)
self.backup_savefile(file_path, slot)
$PokemonGlobal.safesave = safe
$game_system.save_count += 1
$game_system.magic_number = $data_system.magic_number
$Trainer.save_slot = slot unless auto
$Trainer.last_time_saved = Time.now
begin
SaveData.save_to_file(file_path)
Graphics.frame_reset
rescue IOError, SystemCallError
$game_system.save_count -= 1
return false
end
return true
end
# Overwrites the first empty autosave slot, otherwise the oldest existing autosave
def self.auto_save
oldest_time = nil
oldest_slot = nil
SaveData::AUTO_SLOTS.each do |slot|
full_path = SaveData.get_full_path(slot)
if !File.file?(full_path)
oldest_slot = slot
break
end
temp_save_data = SaveData.read_from_file(full_path)
save_time = temp_save_data[:player].last_time_saved || Time.at(1)
if oldest_time.nil? || save_time < oldest_time
oldest_time = save_time
oldest_slot = slot
end
end
self.save(oldest_slot, true)
end
end
#===============================================================================
#
#===============================================================================
# Lol who needs the FileUtils gem?
# This is the implementation from the original pbEmergencySave.
def file_copy(src, dst)
File.open(src, 'rb') do |r|
File.open(dst, 'wb') do |w|
while s = r.read(4096)
w.write s
end
end
end
end
# When I needed extra data fields in the save file I put them in Player because it seemed easier than figuring out
# how to make a save file conversion, and I prefer to maintain backwards compatibility.
class Player
attr_accessor :last_time_saved
attr_accessor :save_slot
attr_accessor :autosave_steps
end
def pbEmergencySave
oldscene = $scene
$scene = nil
pbMessage(_INTL("The script is taking too long. The game will restart."))
return if !$Trainer
return if !$Trainer.save_slot
current_file = SaveData.get_full_path($Trainer.save_slot)
backup_file = SaveData.get_backup_file_path
file_copy(current_file, backup_file)
if Game.save
pbMessage(_INTL("\\se[]The game was saved.\\me[GUI save game] The previous save file has been backed up.\\wtnp[30]"))
else
pbMessage(_INTL("\\se[]Save failed.\\wtnp[30]"))
end
$scene = oldscene
end

View File

@@ -0,0 +1,128 @@
###################
## NEW POKEBALLS #
###################
#GENDER BALL (24) - switch le gender du pokemon
#catch rate: pokeball
BallHandlers::OnCatch.add(:GENDERBALL,proc{|ball,battle,pokemon|
if pokemon.gender == 0
pokemon.makeFemale
elsif pokemon.gender == 1
pokemon.makeMale
end
})
#BOOST BALL 25 - rend le pokemon traded
#catch rate: 80% pokeball
BallHandlers::ModifyCatchRate.add(:TRADEBALL,proc{|ball,catchRate,battle,pokemon|
catchRate=(catchRate*0.8).floor(1)
next catchRate
})
BallHandlers::OnCatch.add(:TRADEBALL,proc{|ball,battle,pokemon|
pokemon.obtain_method = 2
})
#ABILITY BALL 26 - change l'ability
#catch rate: 60% pokeball
BallHandlers::ModifyCatchRate.add(:ABILITYBALL,proc{|ball,catchRate,battle,pokemon|
catchRate=(catchRate*0.6).floor(1)
next catchRate
})
BallHandlers::OnCatch.add(:ABILITYBALL,proc{|ball,battle,pokemon|
species = getSpecies(dexNum(pokemon))
ability = species.hidden_abilities[-1]
pokemon.ability = ability
pokemon.ability_index= getAbilityIndexFromID(ability,pokemon)
})
#VIRUS BALL 27 - give pokerus
#catch rate: 40% pokeball
BallHandlers::ModifyCatchRate.add(:VIRUSBALL,proc{|ball,catchRate,battle,pokemon|
catchRate=(catchRate*0.4).floor(1)
next catchRate
})
BallHandlers::OnCatch.add(:VIRUSBALL,proc{|ball,battle,pokemon|
pokemon.givePokerus
})
#SHINY BALL 28 - rend shiny
#catchrate: 20% pokeball
BallHandlers::ModifyCatchRate.add(:SHINYBALL,proc{|ball,catchRate,battle,pokemon|
catchRate=(catchRate*0.2).floor(1)
next catchRate
})
BallHandlers::OnCatch.add(:SHINYBALL,proc{|ball,battle,pokemon|
pokemon.glitter=true
})
#PERFECTBALL 29
#catch rate: 10% pokeball
BallHandlers::ModifyCatchRate.add(:PERFECTBALL,proc{|ball,catchRate,battle,pokemon|
catchRate=(catchRate*0.1).floor(1)
next catchRate
})
BallHandlers::OnCatch.add(:PERFECTBALL,proc{|ball,battle,pokemon|
stats = [:ATTACK, :SPECIAL_ATTACK, :SPECIAL_DEFENSE, :SPEED, :DEFENSE, :HP]
first = rand(stats.length)
second = rand(stats.length)
pokemon.iv[stats[first]] = 31
pokemon.iv[stats[second]] = 31
})
#DREAMBALL - endormi
BallHandlers::ModifyCatchRate.add(:DREAMBALL,proc{|ball,catchRate,battle,battler|
battler.status = :SLEEP
next catchRate
})
#TOXICBALL - empoisonné
BallHandlers::ModifyCatchRate.add(:TOXICBALL,proc{|ball,catchRate,battle,battler|
battler.status = :POISON
next catchRate
})
#SCORCHBALL - brulé
BallHandlers::ModifyCatchRate.add(:SCORCHBALL,proc{|ball,catchRate,battle,battler|
battler.status = :BURN
next catchRate
})
#FROSTBALL - frozen
BallHandlers::ModifyCatchRate.add(:FROSTBALL,proc{|ball,catchRate,battle,battler|
battler.status = :FROZEN
next catchRate
})
#SPARKBALL - paralizé
BallHandlers::ModifyCatchRate.add(:SPARKBALL,proc{|ball,catchRate,battle,battler|
battler.status = :PARALYSIS
next catchRate
})
#PUREBALL - marche mieux quand pas de status
BallHandlers::ModifyCatchRate.add(:PUREBALL,proc{|ball,catchRate,battle,battler|
catchRate=(catchRate*7/2).floor if battler.status ==0
next catchRate
})
#STATUSBALL - marche mieux quand any status
BallHandlers::ModifyCatchRate.add(:STATUSBALL,proc{|ball,catchRate,battle,battler|
catchRate=(catchRate*5/2).floor if battler.status !=0
next catchRate
})
#FUSIONBALL - marche mieux quand fusedr
BallHandlers::ModifyCatchRate.add(:FUSIONBALL,proc{|ball,catchRate,battle,battler|
catchRate*=3 if GameData::Species.get(battler.species).id_number > Settings::NB_POKEMON
next catchRate
})
#CANDY BALL - +5 level
#catchrate: 80% pokeball
BallHandlers::ModifyCatchRate.add(:CANDYBALL,proc{|ball,catchRate,battle,pokemon|
catchRate=(catchRate*0.8).floor
next catchRate
})
BallHandlers::OnCatch.add(:CANDYBALL,proc{|ball,battle,pokemon|
pokemon.level = pokemon.level+5
})
#FIRECRACKER
BallHandlers::ModifyCatchRate.add(:FIRECRACKER,proc{|ball,catchRate,battle,battler|
battler.hp -= 10
next 0
})

View File

@@ -0,0 +1,141 @@
#===============================================================================
# Rock Smash
#===============================================================================
def pbRockSmashRandomEncounter
if rand(100)<30
if pbEncounter(:RockSmash)
return
else
pbDefaultRockSmashEncounter(5,15)
end
else
rockSmashItem(false)
end
end
def pbDefaultRockSmashEncounter(minLevel,maxLevel)
level =rand((maxLevel-minLevel).abs)+minLevel
pbWildBattle(:GEODUDE,level)
return true
end
#FOR ROCK TUNNEL AND CERULEAN CAVE (+diamond)
def pbRockSmashRandomEncounterSpecial
if rand(100)<35
pbEncounter(:RockSmash)
else
rockSmashItem(true)
end
end
def getRockSmashItemList(inclRareItems)
basicItems = [:ROCKGEM, :GROUNDGEM,:STEELGEM,
:HARDSTONE,:HARDSTONE,:HARDSTONE,:ROCKGEM,
:SMOOTHROCK,:STARDUST,:HEARTSCALE,:HEARTSCALE,
:HEARTSCALE,:SOFTSAND,:HEARTSCALE,:RAREBONE]
rareItems = [:RAREBONE,:STARDUST,:ETHER,
:REVIVE,:NUGGET,:DIAMOND]
fossilItems = [:ROOTFOSSIL,:CLAWFOSSIL,:DOMEFOSSIL,:HELIXFOSSIL,
:SKULLFOSSIL,:ARMORFOSSIL,:JAWFOSSIL,:SAILFOSSIL]
# Kernel.pbMessage(inclRareItems.to_s)
itemsList = inclRareItems ? basicItems + basicItems + rareItems : basicItems
#beaten league
if $game_switches[12]
itemsList += fossilItems
end
return itemsList
end
def rockSmashItem(isDark=false)
chance = 50
if rand(100)< chance
if rand(5) == 0 && !hatUnlocked?(HAT_AERODACTYL)
obtainHat(HAT_AERODACTYL)
else
itemsList = getRockSmashItemList(isDark)
i = rand(itemsList.length)
Kernel.pbItemBall(itemsList[i],1,nil,false)
end
end
end
#Used in underwater maps
def pbRockSmashRandomEncounterDive
if rand(100)<25
pbEncounter(:RockSmash)
else
if rand(100)<20
itemsList = [:WATERGEM,:STEELGEM,
:HEARTSCALE,:HEARTSCALE,:HARDSTONE,:ROCKGEM,
:SMOOTHROCK,:WATERSTONE,:PEARL,:HEARTSCALE,
:HEARTSCALE,:HEARTSCALE,:SHOALSHELL,:BIGPEARL]
i = rand(itemsList.length)
Kernel.pbItemBall(itemsList[i],1,nil,false)
end
end
end
############### MORNING SUN / MOONLIGHT
HiddenMoveHandlers::CanUseMove.add(:MORNINGSUN,proc{|move,pkmn|
mapMetadata = GameData::MapMetadata.try_get($game_map.map_id)
if !mapMetadata || !mapMetadata.outdoor_map
Kernel.pbMessage(_INTL("Can't use that here."))
next false
end
next true
})
HiddenMoveHandlers::UseMove.add(:MORNINGSUN,proc{|move,pokemon|
Kernel.pbMessage(_INTL("{1} used {2}!",pokemon.name,GameData::Move.get(move).name))
pbHiddenMoveAnimation(pokemon)
pbFadeOutIn(99999){
pbSkipTime(9)
newTime = pbGetTimeNow.strftime("%I:%M %p")
Kernel.pbMessage(_INTL("{1} waited until morning...",$Trainer.name))
Kernel.pbMessage(_INTL("The time is now {1}",newTime))
$game_screen.weather(:None,0,0)
$game_map.refresh
}
next true
})
HiddenMoveHandlers::CanUseMove.add(:MOONLIGHT,proc{|move,pkmn|
mapMetadata = GameData::MapMetadata.try_get($game_map.map_id)
if !mapMetadata || !mapMetadata.outdoor_map
Kernel.pbMessage(_INTL("Can't use that here."))
next false
end
next true
})
HiddenMoveHandlers::UseMove.add(:MOONLIGHT,proc{|move,pokemon|
Kernel.pbMessage(_INTL("{1} used {2}!",pokemon.name,GameData::Move.get(move).name))
pbHiddenMoveAnimation(pokemon)
pbFadeOutIn(99999){
pbSkipTime(21)
newTime = pbGetTimeNow.strftime("%I:%M %p")
Kernel.pbMessage(_INTL("{1} waited until night...",$Trainer.name))
Kernel.pbMessage(_INTL("The time is now {1}",newTime))
$game_screen.weather(:None,0,0)
$game_map.refresh
}
next true
})
def pbSkipTime(newTime)
currentTime = pbGetTimeNow.hour
hoursToAdd = newTime - currentTime
$game_variables[UnrealTime::EXTRA_SECONDS] += hoursToAdd*3600
end

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,53 @@
class VariableCurrencyMartAdapter < PokemonMartAdapter
def initialize(currency)
@currency_variable = currency
end
def getMoney
return pbGet(@currency_variable).to_i
end
def getMoneyString
return pbGet(@currency_variable).to_s
end
def setMoney(value)
pbSet(@currency_variable,value)
end
end
def pbVariablePokemonMart(stock,currencyVariable,currency_name="Points",speech=nil,cantsell=true)
for i in 0...stock.length
stock[i] = GameData::Item.get(stock[i]).id
stock[i] = nil if GameData::Item.get(stock[i]).is_important? && $PokemonBag.pbHasItem?(stock[i])
end
stock.compact!
commands = []
cmdBuy = -1
cmdSell = -1
cmdQuit = -1
commands[cmdBuy = commands.length] = _INTL("Buy")
commands[cmdSell = commands.length] = _INTL("Sell") if !cantsell
commands[cmdQuit = commands.length] = _INTL("Quit")
cmd = pbMessage(
speech ? speech : _INTL("Welcome! How may I serve you?"),
commands,cmdQuit+1)
loop do
if cmdBuy>=0 && cmd==cmdBuy
adapter = VariableCurrencyMartAdapter.new(currencyVariable)
scene = PokemonMart_Scene.new(currency_name)
screen = PokemonMartScreen.new(scene,stock,adapter)
screen.pbBuyScreen
elsif cmdSell>=0 && cmd==cmdSell #NOT IMPLEMENTED
scene = PokemonMart_Scene.new(currency_name)
screen = PokemonMartScreen.new(scene,stock,adapter)
screen.pbSellScreen
else
pbMessage(_INTL("Please come again!"))
break
end
cmd = pbMessage(_INTL("Is there anything else I can help you with?"),
commands,cmdQuit+1)
end
$game_temp.clear_mart_prices
end

View File

@@ -0,0 +1,91 @@
class OnlineWondertrade
def pbWonderTrade()
givenPokemon = selectPokemonToGive
return if givenPokemon == nil
queryBody = buildWondertradeQueryJson(givenPokemon)
begin
response = HTTPLite.post_body(Settings::WONDERTRADE_BASE_URL + "/wondertrade", queryBody, "application/json")
if response[:status] == 200
body = HTTPLite::JSON.parse(response[:body])
doTrade(body)
else
pbMessage("Could not find a trading partner...")
end
rescue MKXPError
pbMessage("There was an error while sending your Pokémon...")
end
end
def doTrade(receivedData)
receivedPokemonSpecies = receivedData["pokemon_species"].to_sym
receivedPokemonLevel = receivedData["level"].to_i
receivedPokemonName = receivedData["nickname"]
receivedPokemonOT = receivedData["original_trainer_name"]
receivedPokemonTrainerId = receivedData["trainer_id"]
receivedPokemonTrainerName = receivedData["trainer_name"]
receivedPokemonTrainerGender = receivedData["trainer_gender"].to_i
is_head_shiny = receivedData["head_shiny"]
is_body_shiny = receivedData["body_shiny"]
is_debug_shiny = receivedData["debug_shiny"]
newpoke = pbStartTrade(pbGet(1), receivedPokemonSpecies, receivedPokemonName, receivedPokemonTrainerName, receivedPokemonTrainerGender, true) # Starts the trade
newpoke.owner=Pokemon::Owner.new(receivedPokemonTrainerId.to_i,receivedPokemonOT,2,2)
newpoke.level=receivedPokemonLevel
if is_head_shiny || is_body_shiny
newpoke.shiny=true
newpoke.head_shiny=is_head_shiny
newpoke.body_shiny = is_body_shiny
if is_debug_shiny
newpoke.debug_shiny=false
newpoke.natural_shiny=true
else
newpoke.debug_shiny=true
newpoke.natural_shiny=false
end
end
newpoke.calc_stats
end
def selectPokemonToGive
pbChoosePokemon(1, 2, # Choose eligable pokemon
proc {
|poke| !poke.egg? &&
!(poke.isShadow?) &&
poke.isFusion? &&
customSpriteExistsSpecies(poke.species) #&&
# !poke.debug_shiny
})
poke = $Trainer.party[pbGet(1)]
if pbConfirmMessage(_INTL("Trade {1} away?", poke.name))
return poke
end
return nil
end
# @param [Pokemon] givenPokemon
def buildWondertradeQueryJson(givenPokemon)
isDebugShiny = givenPokemon.debug_shiny || !givenPokemon.natural_shiny
postData = {
"trainer_name" => $Trainer.name,
"trainer_gender" => $Trainer.gender,
"trainer_id" => $Trainer.id.to_s,
"nb_badges" => $Trainer.badge_count,
"given_pokemon" => givenPokemon.species.to_s,
"level" => givenPokemon.level,
"nickname" => givenPokemon.name,
"original_trainer_name" => givenPokemon.owner.name,
"original_trainer_id" => givenPokemon.owner.id.to_s,
"body_shiny" => givenPokemon.body_shiny == nil ? false : givenPokemon.body_shiny,
"head_shiny" => givenPokemon.head_shiny == nil ? false : givenPokemon.head_shiny,
"debug_shiny" => isDebugShiny,
"original_trainer_id" => givenPokemon.owner.id.to_s,
}
return HTTPLite::JSON.stringify(postData)
end
end

View File

@@ -0,0 +1,3 @@
def pbGetCurrentRegion(defaultRegion = -1)
return -1
end

View File

@@ -0,0 +1,302 @@
#==============================================================================#
# Overworld Shadows #
# by Marin #
#==============================================================================#
# Info #
# #
# You'll have likely heard of KleinStudios' Overworld Shadows script; many #
# fangames use it, after all. It was not compatible with Essentials v17+ #
# though, so after getting the suggestion I thought it would be cool if I #
# could make something of my own that would work with v16, as well as v17. #
#==============================================================================#
# Features: #
# - Blacklisting events from receiving shadows #
# - Whitelisting events to always receive shadows #
# - A scaling animation when an event jumps #
#==============================================================================#
# Usage #
# #
# Shadow_Path is the path to the shadow graphic. You can change this #
# sprite, though you may need to fiddle with positioning of the sprite in #
# relation to the event after, though. That's done in "def position_shadow". #
# #
# As the name literally says, if an event's name includes any of the strings #
# in "No_Shadow_If_Event_Name_Has", it won't get a shadow, UNLESS the event's #
# name also includes any of the strings in #
# "Always_Give_Shadow_If_Event_Name_Has". This is essentially "overriding". #
# #
# Case_Sensitive is either true or false. It's used when determing if an #
# event's name includes a string in the "No_Shadow" and "Always_Give" arrays. #
# If true, it must match all strings with capitals exactly as well. #
# If false, capitals don't need to match up. #
#==============================================================================#
# Please give credit when using this. #
#==============================================================================#
SHADOW_IMG_FOLDER = "Graphics/Characters/"
SHADOW_IMG_NAME = "shadow"
# Whether or not the event names below need to match in capitals as well.
Case_Sensitive = false
No_Shadow_If_Event_Name_Has = [
# I like to use "extensions" like these. Up to you though.
".shadowless",
".noshadow",
".sl",
"Door",
"Stairs"
]
# Events that have this in their event name will always receive a shadow.
# Does take "Case_Sensitive" into account.
Always_Give_Shadow_If_Event_Name_Has = [
"Trainer", "npc"
]
# Determines whether or not an event should be given a shadow.
def pbShouldGetShadow?(event)
return true if event.is_a?(Game_Player) # The player will always have a shadow
page = pbGetActiveEventPage(event)
return false unless page
comments = page.list.select { |e| e.code == 108 || e.code == 408 }.map do |e|
e.parameters.join
end
Always_Give_Shadow_If_Event_Name_Has.each do |e|
name = event.name.clone
unless Case_Sensitive
e.downcase!
name.downcase!
end
return true if name.include?(e) || comments.any? { |c| c.include?(e) }
end
No_Shadow_If_Event_Name_Has.each do |e|
name = event.name.clone
unless Case_Sensitive
e.downcase!
name.downcase!
end
return false if name.include?(e) || comments.any? { |c| c.include?(e) }
end
return true
end
# Extending so we can access some private instance variables.
class Game_Character
attr_reader :jump_count
end
unless Spriteset_Map.respond_to?(:viewport)
class Spriteset_Map
def viewport
return @viewport1
end
def self.viewport
return $scene.spriteset.viewport rescue nil
end
end
end
# Following Pokémon compatibility
def pbToggleFollowingPokemon
return if $Trainer.party[0].hp <= 0 || $Trainer.party[0].isEgg?
if $game_switches[Following_Activated_Switch]
if $game_switches[Toggle_Following_Switch]
$game_switches[Toggle_Following_Switch] = false
$PokemonTemp.dependentEvents.remove_sprite(true)
$scene.spriteset.usersprites.select do |e|
e.is_a?(DependentEventSprites)
end.each do |des|
des.sprites.each do |e|
if e && e.shadow
e.shadow.dispose
e.shadow = nil
end
end
end
pbWait(1)
else
$game_switches[Toggle_Following_Switch] = true
$PokemonTemp.dependentEvents.refresh_sprite
$scene.spriteset.usersprites.select do |e|
e.is_a?(DependentEventSprites)
end.each do |des|
des.sprites.each do |e|
e.make_shadow if e.respond_to?(:make_shadow)
end
end
pbWait(1)
end
end
end
class DependentEventSprites
def refresh
for sprite in @sprites
sprite.dispose
end
@sprites.clear
$PokemonTemp.dependentEvents.eachEvent do |event, data|
if data[2] == @map.map_id # Check current map
spr = Sprite_Character.new(@viewport,event,true)
@sprites.push(spr)
end
end
end
end
unless defined?(pbGetActiveEventPage)
def pbGetActiveEventPage(event, mapid = nil)
mapid ||= event.map.map_id if event.respond_to?(:map)
pages = (event.is_a?(RPG::Event) ? event.pages : event.instance_eval { @event.pages })
for i in 0...pages.size
c = pages[pages.size - 1 - i].condition
ss = !(c.self_switch_valid && !$game_self_switches[[mapid,
event.id,c.self_switch_ch]])
sw1 = !(c.switch1_valid && !$game_switches[c.switch1_id])
sw2 = !(c.switch2_valid && !$game_switches[c.switch2_id])
var = true
if c.variable_valid
if !c.variable_value || !$game_variables[c.variable_id].is_a?(Numeric) ||
$game_variables[c.variable_id] < c.variable_value
var = false
end
end
if ss && sw1 && sw2 && var # All conditions are met
return pages[pages.size - 1 - i]
end
end
return nil
end
end
class Spriteset_Map
attr_accessor :usersprites
end
class Sprite_Character
attr_accessor :shadow
alias ow_shadow_init initialize
def initialize(viewport, character = nil, is_follower = false)
@viewport = viewport
@is_follower = is_follower
ow_shadow_init(@viewport, character)
return unless pbShouldGetShadow?(character)
return if @is_follower && defined?(Toggle_Following_Switch) &&
!$game_switches[Toggle_Following_Switch]
return if @is_follower && defined?(Following_Activated_Switch) &&
!$game_switches[Following_Activated_Switch]
@character = character
if @character.is_a?(Game_Event)
page = pbGetActiveEventPage(@character)
return if !page || !page.graphic || page.graphic.character_name == ""
end
make_shadow
end
def make_shadow
@shadow.dispose if @shadow
@shadow = nil
@shadow = Sprite.new(@viewport)
@shadow.bitmap = RPG::Cache.load_bitmap(SHADOW_IMG_FOLDER,SHADOW_IMG_NAME)
# Center the shadow by halving the origin points
@shadow.ox = @shadow.bitmap.width / 2.0
@shadow.oy = @shadow.bitmap.height / 2.0
# Positioning the shadow
position_shadow
end
def position_shadow
return unless @shadow
# x = @character.screen_x
# y = @character.screen_y
# if @character.jumping?
# @totaljump = @character.jump_count if !@totaljump
# case @character.jump_count
# when 1..(@totaljump / 3)
# @shadow.zoom_x += 0.1
# @shadow.zoom_y += 0.1
# when (@totaljump / 3 + 1)..(@totaljump / 3 + 2)
# @shadow.zoom_x += 0.05
# @shadow.zoom_y += 0.05
# when (@totaljump / 3 * 2 - 1)..(@totaljump / 3 * 2)
# @shadow.zoom_x -= 0.05
# @shadow.zoom_y -= 0.05
# when (@totaljump / 3 * 2 + 1)..(@totaljump)
# @shadow.zoom_x -= 0.1
# @shadow.zoom_y -= 0.1
# end
# if @character.jump_count == 1
# @shadow.zoom_x = 1.0
# @shadow.zoom_y = 1.0
# @totaljump = nil
# end
# end
@shadow.x = x
@shadow.y = y - 6
@shadow.z = self.z - 1
if @shadow
if @charbitmap.disposed? || @character.instance_eval { @erased }
@shadow.dispose
@shadow = nil
end
end
end
alias ow_shadow_visible visible=
def visible=(value)
ow_shadow_visible(value)
@shadow.visible = value if @shadow
end
alias ow_shadow_dispose dispose
def dispose
ow_shadow_dispose
@shadow.dispose if @shadow
@shadow = nil
end
alias ow_shadow_update update
def update
ow_shadow_update
position_shadow
if @character.is_a?(Game_Event)
page = pbGetActiveEventPage(@character)
if @old_page != page
@shadow.dispose if @shadow
@shadow = nil
if page && page.graphic && page.graphic.character_name != "" &&
pbShouldGetShadow?(@character)
unless @is_follower && defined?(Toggle_Following_Switch) &&
!$game_switches[Toggle_Following_Switch]
unless @is_follower && defined?(Following_Activated_Switch) &&
!$game_switches[Following_Activated_Switch]
make_shadow
end
end
end
end
end
@old_page = (@character.is_a?(Game_Event) ? pbGetActiveEventPage(@character) : nil)
bushdepth = @character.bush_depth
if @shadow
@shadow.opacity = self.opacity
@shadow.visible = (bushdepth == 0)
if !self.visible || (@is_follower || @character == $game_player) &&
($PokemonGlobal.surfing || $PokemonGlobal.diving)
@shadow.visible = false
end
end
end
end

View File

@@ -0,0 +1,89 @@
def getDirection(x_incr,y_incr)
return DIRECTION_RIGHT if x_incr>0
return DIRECTION_LEFT if x_incr<0
return DIRECTION_DOWN if y_incr>0
return DIRECTION_UP if y_incr<0
return 0
end
def get_direction_forward_x(directionId)
return 1 if directionId == DIRECTION_RIGHT
return -1 if directionId == DIRECTION_LEFT
return 0
end
def get_direction_forward_y(directionId)
return 1 if directionId == DIRECTION_DOWN
return -1 if directionId == DIRECTION_UP
return 0
end
#Basic pathfinding to move an event towards a certain general direction while avoiding obstacles
def pathFindingGetDirection(current_x,current_y,goal_direction,pathfindingRange=4)
goal_direction_is_horizontal = goal_direction == DIRECTION_RIGHT || goal_direction == DIRECTION_LEFT
direction_forward_x = get_direction_forward_x(goal_direction)
direction_forward_y = get_direction_forward_y(goal_direction)
#echoln "Goal direction :#{goal_direction}. ForwardX: #{direction_forward_x}. ForwardY: #{direction_forward_y}"
if(eventCanPassThrough(current_x+direction_forward_x,current_y+direction_forward_y,goal_direction))
return goal_direction
else
if goal_direction_is_horizontal
alternate_direction_x=direction_forward_x
alternate_direction_y=1
else
alternate_direction_x=1
alternate_direction_y=direction_forward_y
end
echoln "########### CURRENT_POSITION: #{current_x},#{current_y}"
direction_polarities = [1,-1]
for i in 1..pathfindingRange
for polarity in direction_polarities
new_x = goal_direction_is_horizontal ? current_x+ direction_forward_x : current_x+((i*alternate_direction_x)*polarity)
new_y = !goal_direction_is_horizontal ? current_y + direction_forward_y : current_y+((i*alternate_direction_y)*polarity)
echoln "Checking for #{new_x}, #{new_y}"
if eventCanPassThrough(new_x,new_y,goal_direction)
if goal_direction_is_horizontal
new_direction = getDirection(0,(i*alternate_direction_y)*polarity)
echoln "found a gap! new direction x: #{0}, new direction y: #{(i*alternate_direction_y)*polarity}"
if eventCanPassThrough(current_x,current_y+polarity,goal_direction)
return new_direction
else
echoln "...but cannot go in that direction (#{current_x},#{current_y+new_direction} blocked)"
end
else
new_direction = getDirection((i*alternate_direction_x)*polarity,0)
if eventCanPassThrough(current_x+polarity,current_y,goal_direction)
return new_direction
else
echoln "...but cannot go in that direction"
end
end
end
end
end
end
return 0
end
def eventCanPassThrough(x, y, direction)
if x == $game_player.x && y == $game_player.y
echoln "cannot pass because of player"
return false
end
$PokemonTemp.dependentEvents.realEvents.each { |dependantEvent|
if x == dependantEvent.x && y == dependantEvent.y
echoln "cannot pass because of dependant event #{dependantEvent.name}(#{dependantEvent.x},#{dependantEvent.y})"
return false
end
}
return $game_player.passable?(x, y, direction)
end

View File

@@ -0,0 +1,89 @@
class PokedexUtils
# POSSIBLE_ALTS = ["", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q",
# "r", "s", "t", "u", "v", "w", "x", "y", "z", "aa", "ab", "ac", "ad", "ae", "af", "ag", "ah",
# "ai", "aj", "ak", "al", "am", "an", "ao", "ap", "aq", "ar", "as", "at", "au", "av", "aw", "ax",
# "ay", "az"]
def getAltLettersList()
return ('a'..'z').to_a + ('aa'..'az').to_a
end
def getBaseSpritesAlts(dex_number)
return $game_temp.base_sprites_list[dex_number]
end
def getLocalBaseSpriteAlts(dex_number)
local_sprite_alts = []
baseFilename = "#{dex_number}"
possible_alt_letters = getAltLettersList()
possible_alt_letters << ""
possible_alt_letters.each { |alt_letter|
spritename = "#{baseFilename}#{alt_letter}"
local_path = "#{Settings::CUSTOM_BASE_SPRITES_FOLDER}/#{spritename}.png"
if pbResolveBitmap(local_path)
local_sprite_alts << getLocalSpriteID(local_path)
end
}
return local_sprite_alts
end
def getLocalFusionSpriteAlts(head_id,body_id)
local_sprite_alts = []
baseFilename = "#{head_id}.#{body_id}"
possible_alt_letters = getAltLettersList()
possible_alt_letters << ""
possible_alt_letters.each { |alt_letter|
spritename = "#{baseFilename}#{alt_letter}"
local_path = "#{Settings::CUSTOM_BATTLERS_FOLDER_INDEXED}/#{head_id.to_s}/#{spritename}.png"
if pbResolveBitmap(local_path)
local_sprite_alts << getLocalSpriteID(local_path)
end
}
return local_sprite_alts
end
def getLocalSpriteID(sprite_path)
return "local_#{sprite_path}"
end
def getFusionSpriteAlts(head_id, body_id)
sprite_id = get_fusion_symbol(head_id,body_id)
return $game_temp.custom_sprites_list[sprite_id]
end
def pbGetAvailableAlts(species, includeAutogens=false)
dex_number = getDexNumberForSpecies(species)
if isFusion(dex_number)
body_id = getBodyID(dex_number)
head_id = getHeadID(dex_number,body_id)
available_alts = getFusionSpriteAlts(head_id,body_id)
available_alts = [] if !available_alts
local_alts = getLocalFusionSpriteAlts(head_id,body_id)
else
available_alts= getBaseSpritesAlts(dex_number)
available_alts = [] if !available_alts
local_alts = getLocalBaseSpriteAlts(dex_number)
end
available_alts += local_alts if local_alts
available_alts << "autogen" if includeAutogens
return available_alts
end
#todo: return array for split evolution lines that have multiple final evos
def getFinalEvolution(species)
#ex: [[B3H4,Level 32],[B2H5, Level 35]]
evolution_line = species.get_evolutions
return species if evolution_line.empty?
finalEvoId = evolution_line[0][0]
return evolution_line[]
for evolution in evolution_line
evoSpecies = evolution[0]
p GameData::Species.get(evoSpecies).get_evolutions
isFinalEvo = GameData::Species.get(evoSpecies).get_evolutions.empty?
return evoSpecies if isFinalEvo
end
return nil
end
end

View File

@@ -0,0 +1,137 @@
#===============================================================================
# * Pokémon Selection - by FL (Credits will be apreciated)
#===============================================================================
#
# This script is for Pokémon Essentials. It makes a pokémon selection system
# similar to Stadium/Battle Tower, where you can choose a certain number and
# order of pokémon.
#
#===============================================================================
#
# To this script works, put it above main and use in script command
# 'PokemonSelection.choose(min, max, canCancel, acceptFainted)' where min and
# max are the minimum and maximum pokémon number selection (default values are
# 1 and 6), canCancel when true the player can cancel the selection (default
# is false) and acceptFainted that when true the player can choose fainted
# pokémon and eggs (default is false). This method return if a party is choosen.
#
# To restore the previous party, use 'PokemonSelection.restore'. This do nothing
# is there's no party to restore. Ths method returns if the party is restored.
#
# Between the two commands, don't allow the player to caught or deposit/withdraw
# any pokémon or the pokémon will be lost! However, you pokémon can gain
# exp/level, evolve, change hold item/moves normally. If you try to choose a
# new party before restore the old one, the game raises an error. This won't
# occurs if the previous selection is only an order change. ONLY in Debug mode
# you get the phrase "Generate Pokemon teams for this challenge?", always
# choose "No".
#
# 'PokemonSelection.hasValidTeam?(min, max, canCancel, acceptFainted)' returns
# if your team is valid. If you try to use a invalid team (like putting the
# minimum pokémon number as 3, but only having 2 pokémon), the selection is
# treats as canceled. If the canCancel=false, the game goes in an infinite loop.
#
# Example: To make a 3vs3 battle, use 'PokemonSelection.choose(3,3)' and, after
# the battle (regardless of result) use 'PokemonSelection.restore'. Only allows
# the player to go in the battle if 'PokemonSelection.hasValidTeam?(3,3)' is
# true, or set the minimum as 1.
#
# To perform only an order change, use
# 'PokemonSelection.choose($Trainer,party.size,$Trainer,party.size,true,true)'.
#
# If you take a look in PokemonChallengeRules applications in scripts you can
# customize some others choice conditions like have a certain level or ban
# certain pokémon.
#
#===============================================================================
module PokemonSelection
def self.rules(min=1, max=6, canCancel=false, acceptFainted=false)
ret=PokemonChallengeRules.new
# ret.setLevelAdjustment(OpenLevelAdjustment.new(PBExperience::MAXLEVEL))
ret.addPokemonRule(AblePokemonRestriction.new) if !acceptFainted
ret.ruleset.setNumberRange(min,max)
return ret
end
def self.hasValidTeam?(min=1, max=6, canCancel=false, acceptFainted=false)
pbBattleChallenge.set("pokemonSelectionRules",7,self.rules(min,max))
ret=pbHasEligible?
pbBattleChallenge.pbCancel
return ret
end
def self.choose(min=1, max=6, canCancel=false, acceptFainted=false, ableproc=nil)
if $PokemonGlobal.pokemonSelectionOriginalParty
PokemonSelection.restore
echoln "Can't choose a new party until restore the old one"
end
validPartyChosen=false
pbBattleChallenge.set("pokemonSelectionRules",7,self.rules(min,max))
loop do
pbEntryScreen(ableproc)
validPartyChosen=(pbBattleChallenge.getParty!=nil)
break if(canCancel || validPartyChosen)
Kernel.pbMessage(_INTL("Choose a Pokémon."))
end
if validPartyChosen
# If the party size is the same, it is only an order change
if($Trainer.party.size != pbBattleChallenge.getParty.size)
$PokemonGlobal.pokemonSelectionOriginalParty=$Trainer.party
end
$Trainer.party=pbBattleChallenge.getParty
end
pbBattleChallenge.pbCancel
return validPartyChosen
end
def self.saveParty()
$PokemonGlobal.pokemonSelectionOriginalParty=$Trainer.party
end
def self.restore(*args)
hasSavedTeam=($PokemonGlobal.pokemonSelectionOriginalParty!=nil)
if hasSavedTeam
$Trainer.party=$PokemonGlobal.pokemonSelectionOriginalParty
$PokemonGlobal.pokemonSelectionOriginalParty=nil
end
return hasSavedTeam
end
end
class PokemonRuleSet # Redefined to fix a bug
def hasValidTeam?(team)
if !team || team.length<self.minTeamLength
return false
end
teamNumber=[self.maxLength,team.length].min
validPokemon=[]
for pokemon in team
if isPokemonValid?(pokemon)
validPokemon.push(pokemon)
end
end
#if validPokemon.length<teamNumber # original
if validPokemon.length<self.minLength # fixed
return false
end
if @teamRules.length>0
pbEachCombination(team,teamNumber){|comb|
if isValid?(comb)
return true
end
}
return false
end
return true
end
end
class BattleChallenge; def getParty; return @bc.party; end; end
class PokemonGlobalMetadata
attr_accessor :pokemonSelectionOriginalParty
attr_accessor :pokemonSelectionOriginalBag
end

View File

@@ -0,0 +1,8 @@
def getBlackMarketOriginalTrainer
randomTrainer = GameData::Trainer.list_all.values.sample
return randomTrainer
# trainer = NPCTrainer.new("", randomTrainer.id)
# return trainer
end

View File

@@ -0,0 +1,201 @@
def setDialogIconOff(eventId=nil)
eventId = @event_id if !eventId
event = $game_map.events[eventId]
event.setDialogIconManualOffValue(true)
event.setTradeIconManualOffValue(true)
end
def setDialogIconOn(eventId=nil)
eventId = @event_id if !eventId
event = $game_map.events[eventId]
event.setDialogIconManualOffValue(false)
event.setTradeIconManualOffValue(false)
end
class Game_Event < Game_Character
#set from analyzing the event's content at load
attr_accessor :show_quest_icon
attr_accessor :show_dialog_icon
attr_accessor :show_trade_icon
#set manually from inside the event when triggered
attr_accessor :quest_icon_manual_off
attr_accessor :dialog_icon_manual_off
attr_accessor :trade_icon_manual_off
QUEST_NPC_TRIGGER = "questNPC"
MAPS_WITH_NO_ICONS = [] #Maps in which the game shouldn't try to look for quest icons(e.g. maps with a lot of events - mostly for possible performance issues)
DIALOG_ICON_COMMENT_TRIGGER=["dialogIcon"]
TRADE_ICON_COMMENT_TRIGGER=["tradeIcon"]
alias eventQuestIcon_init initialize
def initialize(map_id, event, map=nil)
eventQuestIcon_init(map_id, event, map)
addQuestMarkersToSprite unless MAPS_WITH_NO_ICONS.include?($game_map.map_id)
end
def setDialogIconManualOffValue(value)
@dialog_icon_manual_off=value
@show_dialog_icon = !@dialog_icon_manual_off
end
def setQuestIconManualOffValue(value)
@quest_icon_manual_off=value
@show_quest_icon = !@quest_icon_manual_off
end
def setTradeIconManualOffValue(value)
@trade_icon_manual_off=value
@show_trade_icon = !@trade_icon_manual_off
end
def addQuestMarkersToSprite()
@show_quest_icon = detectQuestSwitch(self) && !@quest_icon_manual_off
@show_dialog_icon = detectDialogueIcon(self) && !@dialog_icon_manual_off
@show_trade_icon = detectTradeIcon(self) && !@trade_icon_manual_off
end
def detectDialogueIcon(event)
return nil if !validateEventIsCompatibleWithIcons(event)
page = pbGetActiveEventPage(event)
first_command = page.list[0]
return nil if !(first_command.code == 108 || first_command.code == 408)
comments = first_command.parameters
return comments.any? { |str| DIALOG_ICON_COMMENT_TRIGGER.include?(str) }
end
def detectTradeIcon(event)
return nil if !validateEventIsCompatibleWithIcons(event)
page = pbGetActiveEventPage(event)
first_command = page.list[0]
return nil if !(first_command.code == 108 || first_command.code == 408)
comments = first_command.parameters
return comments.any? { |str| TRADE_ICON_COMMENT_TRIGGER.include?(str) }
end
def detectQuestSwitch(event)
return nil if !validateEventIsCompatibleWithIcons(event)
name = event.name.clone
match = name.match(/#{Regexp.escape(QUEST_NPC_TRIGGER)}\(([^)]+)\)/) # Capture anything inside parentheses
return nil unless match
quest_id = match[1]
quest_id = quest_id.gsub(/^['"]|['"]$/, '') # Remove quotes if they exist
echoln "MATCH"
echoln quest_id
return nil if isQuestAlreadyAccepted?(quest_id)
return quest_id
end
def validateEventIsCompatibleWithIcons(event)
return false if event.is_a?(Game_Player)
return false if event.erased
page = pbGetActiveEventPage(event)
return false unless page
return false if page.graphic.character_name.empty?
return true
end
end
class Sprite_Character
DIALOGUE_ICON_NAME = "Graphics/Pictures/Quests/dialogIcon"
QUEST_ICON_NAME = "Graphics/Pictures/Quests/questIcon"
TRADE_ICON_NAME = "Graphics/Pictures/Quests/tradeIcon"
attr_accessor :questIcon
alias questIcon_init initialize
def initialize(viewport, character = nil, is_follower=nil)
questIcon_init(viewport,character)
if character.is_a?(Game_Event) && character.show_dialog_icon
addQuestMarkerToSprite(:DIALOG_ICON)
end
if character.is_a?(Game_Event) && character.show_quest_icon
addQuestMarkerToSprite(:QUEST_ICON)
end
if character.is_a?(Game_Event) && character.show_trade_icon
addQuestMarkerToSprite(:TRADE_ICON)
end
#addQuestMarkersToSprite(character) unless MAPS_WITH_NO_ICONS.include?($game_map.map_id)
end
# def addQuestMarkersToSprite(character)
# quest_id = detectQuestSwitch(character)
# if quest_id
# addQuestMarkerToSprite(:QUEST_ICON)
# else
# addQuestMarkerToSprite(:DIALOG_ICON) if detectDialogueIcon(character)
# end
# end
alias questIcon_update update
def update
questIcon_update
updateGameEvent if @character.is_a?(Game_Event)
end
def updateGameEvent
removeQuestIcon if !@character.show_dialog_icon && !@character.show_quest_icon && !@character.show_trade_icon
positionQuestIndicator if @questIcon
end
alias questIcon_dispose dispose
def dispose
questIcon_dispose
removeQuestIcon
end
# Event name must contain questNPC(x) for a quest icon to be displayed
# Where x is the quest ID
# if the quest has not already been accepted, the quest marker will be shown
#type: :QUEST_ICON, :DIALOG_ICON
def addQuestMarkerToSprite(iconType)
removeQuestIcon if @questIcon
@questIcon = Sprite.new(@viewport)
case iconType
when :QUEST_ICON
iconPath = QUEST_ICON_NAME
when :DIALOG_ICON
iconPath = DIALOGUE_ICON_NAME
when :TRADE_ICON
iconPath = TRADE_ICON_NAME
end
return if !iconPath
@questIcon.bmp(iconPath)
echoln @questIcon.bitmap
positionQuestIndicator if @questIcon
end
def positionQuestIndicator()
return if !@questIcon
return if !@questIcon.bitmap
y_offset =-70
@questIcon.ox = @questIcon.bitmap.width / 2.0
@questIcon.oy = @questIcon.bitmap.height / 2.0
x_position = @character.screen_x
y_position = @character.screen_y + y_offset
@questIcon.x = x_position
@questIcon.y = y_position
@questIcon.z = 999
end
def removeQuestIcon()
@questIcon.dispose if @questIcon
@questIcon = nil
end
end

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,136 @@
def define_quest(quest_id,quest_type,quest_name,quest_description,quest_location,npc_sprite)
case quest_type
when :HOTEL_QUEST
text_color = HotelQuestColor
when :FIELD_QUEST
text_color = FieldQuestColor
when :LEGENDARY_QUEST
text_color = LegendaryQuestColor
when :ROCKET_QUEST
text_color = TRQuestColor
end
new_quest = Quest.new(quest_id, quest_name, quest_description, npc_sprite, quest_location, quest_location, text_color)
QUESTS[quest_id] = new_quest
end
QUESTS = {
#Pokemart
"pokemart_johto" => Quest.new("pokemart_johto", "Johto Pokémon", "A traveler in the PokéMart wants you to show him a Pokémon native to the Johto region.", QuestBranchHotels, "traveler_johto", "Cerulean City", HotelQuestColor),
"pokemart_hoenn" => Quest.new("pokemart_hoenn", "Hoenn Pokémon", "A traveler in the PokéMart you to show him a Pokémon native to the Hoenn region.", QuestBranchHotels, "traveler_hoenn", "Vermillion City", HotelQuestColor),
"pokemart_sinnoh" => Quest.new("pokemart_sinnoh", "Sinnoh Pokémon", "A traveler in the Department Center wants you to show him a Pokémon native to the Sinnoh region.", QuestBranchHotels, "traveler_sinnoh", "Celadon City", HotelQuestColor),
"pokemart_unova" => Quest.new( "pokemart_unova", "Unova Pokémon", "A traveler in the PokéMart wants you to show him a Pokémon native to the Unova region.", QuestBranchHotels, "traveler_unova", "Fuchsia City", HotelQuestColor),
"pokemart_kalos" => Quest.new("pokemart_kalos", "Kalos Pokémon", "A traveler in the PokéMart wants you to show him a Pokémon native to the Kalos region.", QuestBranchHotels, "traveler_kalos", "Saffron City", HotelQuestColor),
"pokemart_alola" => Quest.new("pokemart_alola", "Alola Pokémon", "A traveler in the PokéMart wants you to show him a Pokémon native to the Alola region.", QuestBranchHotels, "traveler_alola", "Cinnabar Island", HotelQuestColor),
#Pewter hotel
"pewter_1" => Quest.new("pewter_1", "Mushroom Gathering", "A lady in Pewter City wants you to bring her 3 TinyMushroom from Viridian Forest to make a stew.", QuestBranchHotels, "BW (74)", "Pewter City", HotelQuestColor),
"pewter_2" =>Quest.new("pewter_2", "Lost Medicine", "A youngster in Pewter City needs your help to find a lost Revive. He lost it by sitting on a bench somewhere in Pewter City.", QuestBranchHotels, "BW (19)", "Pewter City", HotelQuestColor),
"pewter_3" =>Quest.new("pewter_3", "Bug Evolution ", "A Bug Catcher in Pewter City wants you to show him a fully-evolved Bug Pokémon.", QuestBranchHotels, "BWBugCatcher_male", "Pewter City", HotelQuestColor),
"pewter_field_1" => Quest.new("pewter_field_1", "Nectar garden", "An old man wants you to bring differently colored flowers for the city's garden.", QuestBranchField, "BW (039)", "Pewter City", FieldQuestColor),
"pewter_field_2" => Quest.new("pewter_field_2", "I Choose You!", "A Pikachu in the PokéMart has lost its official Pokémon League Hat. Find one and give it to the Pikachu!", QuestBranchField, "YOUNGSTER_LeagueHat", "Pewter City", FieldQuestColor),
"pewter_field_3" => Quest.new("pewter_field_3", "Prehistoric Amber!", "Meetup with a scientist in Viridian Forest to look for prehistoric amber.", QuestBranchField, "BW (82)", "Pewter City", FieldQuestColor),
#Cerulean hotel
"cerulean_1" => Quest.new("cerulean_1", "Playing Cupid", "A boy in Cerulean City wants you bring a love letter to a Pokémon Breeder named Maude. She's probably somewhere in one of the routes near Cerulean City", QuestBranchHotels, "BW (18)", "Cerulean City", HotelQuestColor),
"cerulean_2" => Quest.new("cerulean_2", "Type Experts", "Defeat all of the Type Experts scattered around the Kanto region (#{pbGet(VAR_TYPE_EXPERTS_BEATEN)}/#{TOTAL_NB_TYPE_EXPERTS})", QuestBranchHotels, "expert-normal", "Cerulean City", HotelQuestColor),
#Route 24
"cerulean_field_1" => Quest.new("cerulean_field_1", "Field Research (Part 1)", "Professor Oak's aide wants you to catch an Abra.", QuestBranchField, "BW (82)", "Route 24", FieldQuestColor),
"cerulean_field_2" => Quest.new("cerulean_field_2", "Field Research (Part 2)", "Professor Oak's aide wants you to encounter every Pokémon on Route 24.", QuestBranchField, "BW (82)", "Route 24", FieldQuestColor),
"cerulean_field_3" => Quest.new("cerulean_field_3", "Field Research (Part 3)", "Professor Oak's aide wants you to catch a Buneary using the Pokéradar.", QuestBranchField, "BW (82)", "Route 24", FieldQuestColor),
#Vermillion City
"vermillion_2" => Quest.new("vermillion_2", "Fishing for Sole", "A fisherman wants you to fish up an old boot. Hook it up with the old rod in any body of water.", QuestBranchHotels, "BW (71)", "Cerulean City", HotelQuestColor),
"vermillion_1" => Quest.new("vermillion_1", "Unusual Types 1", "A woman at the hotel wants you to show her a Water/Fire-type Pokémon", QuestBranchHotels, "BW (58)", "Vermillion City", HotelQuestColor),
"vermillion_3" => Quest.new("vermillion_3", "Seafood Cocktail ", "Get some steamed Krabby legs from the S.S. Anne's kitchen and bring them back to the hotel before they get cold", QuestBranchHotels, "BW (36)", "Vermillion City", HotelQuestColor),
"vermillion_field_1" => Quest.new("vermillion_field_1", "Building Materials ", "Get some wooden planks from Viridian City and some Bricks from Pewter City.", QuestBranchField, "BW (36)", "Vermillion City", FieldQuestColor),
"vermillion_field_2" => Quest.new("vermillion_field_2", "Waiter on the Water", "The S.S. Anne waiter wants you to take restaurant orders while he went to get a replacement cake.", QuestBranchField, "BW (53)", "S.S. Anne", FieldQuestColor),
#Celadon City
"celadon_1" => Quest.new("celadon_1", "Sun or Moon", "Show the Pokémon that Eevee evolves when exposed to a Moon or Sun stone to help the scientist with her research.", QuestBranchHotels, "BW (82)", "Celadon City", HotelQuestColor),
"celadon_2" => Quest.new("celadon_2", "For Whom the Bell Tolls", "Ring Lavender Town's bell when the time is right to reveal its secret.", QuestBranchHotels, "BW (40)", "Lavender Town", HotelQuestColor),
"celadon_3" => Quest.new("celadon_3", "Hardboiled", "A lady wants you to give her an egg to make an omelette.", QuestBranchHotels, "BW (24)", "Celadon City", HotelQuestColor),
"celadon_field_1" => Quest.new("celadon_field_1", "A stroll with Eevee!", "Walk Eevee around for a while until it gets tired.", QuestBranchField, "BW (37)", "Celadon City", FieldQuestColor),
#Fuchsia City
"fuchsia_1" => Quest.new("fuchsia_1", "Bicycle Race!", "Go meet the Cyclist at the bottom of Route 17 and beat her time up the Cycling Road!", QuestBranchHotels, "BW032", "Cycling Road", HotelQuestColor),
"fuchsia_2" => Quest.new("fuchsia_2", "Lost Pokémon!", "Find the lost Chansey's trainer!", QuestBranchHotels, "113", "Fuchsia City", HotelQuestColor),
"fuchsia_3" => Quest.new("fuchsia_3", "Cleaning up the Cycling Road", "Get rid of all the Pokémon dirtying up the Cycling Road.", QuestBranchHotels, "BW (77)", "Fuchsia City", HotelQuestColor),
"fuchsia_4" => Quest.new("fuchsia_4", "Bitey Pokémon", "A fisherman wants to know what is the sharp-toothed Pokémon that bit him in the Safari Zone's lake.", QuestBranchHotels, "BW (71)", "Fuchsia City", HotelQuestColor),
#Crimson City
"crimson_1" => Quest.new("crimson_1", "Shellfish Rescue", "Put all the stranded Shellders back in the water on the route to Crimson City.", QuestBranchHotels, "BW (48)", "Crimson City", HotelQuestColor),
"crimson_2" => Quest.new("crimson_2", "Fourth Round Rumble", "Defeat Jeanette and her high-level Bellsprout in a Pokémon Battle", QuestBranchHotels, "BW024", "Crimson City", HotelQuestColor),
"crimson_3" => Quest.new("crimson_3", "Unusual Types 2", "A woman at the hotel wants you to show her a Normal/Ghost-type Pokémon", QuestBranchHotels, "BW (58)", "Crimson City", HotelQuestColor),
"crimson_4" => Quest.new("crimson_4", "The Top of the Waterfall", "Someone wants you to go investigate the top of a waterfall near Crimson City", QuestBranchHotels, "BW (28)", "Crimson City", HotelQuestColor),
#Saffron City
"saffron_1" => Quest.new("saffron_1", "Lost Puppies", "Find all of the missing Growlithe in the routes around Saffron City.", QuestBranchHotels, "BW (73)", "Saffron City", HotelQuestColor),
"saffron_2" => Quest.new("saffron_2", "Invisible Pokémon", "Find an invisible Pokémon in the eastern part of Saffron City.", QuestBranchHotels, "BW (57)", "Saffron City", HotelQuestColor),
"saffron_3" => Quest.new("saffron_3", "Bad to the Bone!", "Find a Rare Bone using Rock Smash.", QuestBranchHotels, "BW (72)", "Saffron City", HotelQuestColor),
"saffron_field_1" => Quest.new("saffron_field_1", "Dancing Queen!", "Dance with the Copycat Girl!", QuestBranchField, "BW (24)", "Saffron City (nightclub)", FieldQuestColor),
#Cinnabar Island
"cinnabar_1" => Quest.new("cinnabar_1", "The transformation Pokémon", "The scientist wants you to find some Quick Powder that can sometimes be found with wild Ditto in the mansion's basement.", QuestBranchHotels, "BW (82)", "Cinnabar Island", HotelQuestColor),
"cinnabar_2" => Quest.new("cinnabar_2", "Diamonds and Pearls", "Find a Diamond Necklace to save the man's marriage.", QuestBranchHotels, "BW (71)", "Cinnabar Island", HotelQuestColor),
"cinnabar_3" => Quest.new("cinnabar_3", "Stolen artifact", "Recover a stolen vase from a burglar in the Pokémon Mansion", QuestBranchHotels, "BW (21)", "Cinnabar Island", HotelQuestColor),
#Goldenrod City
"goldenrod_1" => Quest.new( "goldenrod_1", "Safari Souvenir!", "Bring back a souvenir from the Fuchsia City Safari Zone", QuestBranchHotels, "BW (28)", "Goldenrod City", HotelQuestColor),
"goldenrod_2" => Quest.new("goldenrod_2", "The Cursed Forest", "A child wants you to find a floating tree stump in Ilex Forest. What could she be talking about?", QuestBranchHotels, "BW109", "Goldenrod City", HotelQuestColor),
"goldenrod_police_1" => Quest.new("goldenrod_police_1", "Undercover police work!", "Go see the police in Goldenrod City to help them with an important police operation.", QuestBranchField, "BW (80)", "Goldenrod City", FieldQuestColor),
"pinkan_police" => Quest.new("pinkan_police", "Pinkan Island!", "Team Rocket is planning a heist on Pinkan Island. You joined forces with the police to stop them!", QuestBranchField, "BW (80)", "Goldenrod City", FieldQuestColor),
#Violet City
"violet_1" => Quest.new("violet_1", "Defuse the Pinecones!", "Get rid of all the Pineco on Route 31 and Route 30", QuestBranchHotels, "BW (64)", "Violet City", HotelQuestColor),
"violet_2" => Quest.new("violet_2", "Find Slowpoke's Tail!", "Find a SlowpokeTail in some flowers, somewhere around Violet City!", QuestBranchHotels, "BW (19)", "Violet City", HotelQuestColor),
#Blackthorn City
"blackthorn_1" => Quest.new( "blackthorn_1", "Dragon Evolution", "A Dragon Tamer in Blackthorn City wants you to show her a fully-evolved Dragon Pokémon.", QuestBranchHotels, "BW014", "Blackthorn City", HotelQuestColor),
"blackthorn_2" => Quest.new("blackthorn_2", "Sunken Treasure!", "Find an old memorabilia on a sunken ship near Cinnabar Island.", QuestBranchHotels, "BW (28)", "Blackthorn City", HotelQuestColor),
"blackthorn_3" => Quest.new("blackthorn_3", "The Largest Carp", "A fisherman wants you to fish up a Magikarp that's exceptionally high-level at Dragon's Den.", QuestBranchHotels, "BW (71)", "Blackthorn City", HotelQuestColor),
#Ecruteak City
"ecruteak_1" => Quest.new("ecruteak_1", "Ghost Evolution", "A girl in Ecruteak City wants you to show her a fully-evolved Ghost Pokémon.", QuestBranchHotels, "BW014", "Ecruteak City", HotelQuestColor),
#Kin Island
"kin_1" => Quest.new("kin_1", "Banana Slamma!", "Collect 30 bananas", QuestBranchHotels, "BW059", "Kin Island", HotelQuestColor),
"kin_2" => Quest.new("kin_2", "Fallen Meteor", "Investigate a crater near Bond Bridge.", QuestBranchHotels, "BW009", "Kin Island", HotelQuestColor),
"kin_field_1" => Quest.new("kin_field_1", "The rarest fish", "A fisherman wants you to show him a Feebas. Apparently they can be fished around the Sevii Islands when it rains.", QuestBranchField, "BW056", "Kin Island", FieldQuestColor),
"legendary_deoxys_1" => Quest.new("legendary_deoxys_1", "First Contact", "Find the missing pieces of a fallen alien spaceship", QuestBranchHotels, "BW (92)", "Bond Bridge", LegendaryQuestColor),
"legendary_deoxys_2" => Quest.new("legendary_deoxys_2", "First Contact (Part 2)", "Ask the sailor at Cinnabar Island's harbour to take you to the uncharted island where the spaceship might be located", QuestBranchHotels, "BW (92)", "Bond Bridge", LegendaryQuestColor),
#Necrozma quest
"legendary_necrozma_1" => Quest.new("legendary_necrozma_1", "Mysterious prisms", "You found a pedestal with a mysterious prism on it. There seems to be room for more prisms.", QuestBranchLegendary, "BW_Sabrina", "Pokémon Tower", LegendaryQuestColor),
"legendary_necrozma_2" => Quest.new("legendary_necrozma_2", "The long night (Part 1)", "A mysterious darkness has shrouded some of the region. Meet Sabrina outside of Saffron City's western gate to investigate.", QuestBranchLegendary, "BW_Sabrina", "Lavender Town", LegendaryQuestColor),
"legendary_necrozma_3" => Quest.new("legendary_necrozma_1", "The long night (Part 2)", "The mysterious darkness has expended. Meet Sabrina on top of Celadon City's Dept. Store to figure out the source of the darkness.", QuestBranchLegendary, "BW_Sabrina", "Route 7", LegendaryQuestColor),
"legendary_necrozma_4" => Quest.new("legendary_necrozma_4", "The long night (Part 3)", "Fuchsia City appears to be unaffected by the darkness. Go investigate to see if you can find out more information.", QuestBranchLegendary, "BW_Sabrina", "Celadon City", LegendaryQuestColor),
"legendary_necrozma_5" => Quest.new("legendary_necrozma_5", "The long night (Part 4)", "The mysterious darkness has expended yet again and strange plants have appeared. Follow the plants to see where they lead.", QuestBranchLegendary, "BW_koga", "Fuchsia City", LegendaryQuestColor),
"legendary_necrozma_6" => Quest.new("legendary_necrozma_6", "The long night (Part 5)", "You found a strange fruit that appears to be related to the mysterious darkness. Go see professor Oak to have it analyzed.", QuestBranchLegendary, "BW029", "Safari Zone", LegendaryQuestColor),
"legendary_necrozma_7" => Quest.new("legendary_necrozma_7", "The long night (Part 6)", "The strange plant you found appears to glow in the mysterious darkness that now covers the entire region. Try to follow the glow to find out the source of the disturbance.", QuestBranchLegendary, "BW-oak", "Pallet Town", LegendaryQuestColor),
"legendary_meloetta_1" => Quest.new("legendary_meloetta_1", "A legendary band (Part 1)", "The singer of a band in Saffron City wants you to help them recruit a drummer. They think they've heard some drumming around Crimson City...", QuestBranchLegendary, "BW107", "Saffron City", LegendaryQuestColor),
"legendary_meloetta_2" => Quest.new("legendary_meloetta_2", "A legendary band (Part 2)", "The drummer from a legendary Pokéband wants you to find its former bandmates. The band manager talked about two former guitarists...", QuestBranchLegendary, "band_drummer", "Saffron City", LegendaryQuestColor),
"legendary_meloetta_3" => Quest.new("legendary_meloetta_3", "A legendary band (Part 3)", "The drummer from a legendary Pokéband wants you to find its former bandmates. There are rumors about strange music that was heard around the region.", QuestBranchLegendary, "band_drummer", "Saffron City", LegendaryQuestColor),
"legendary_meloetta_4" => Quest.new("legendary_meloetta_4", "A legendary band (Part 4)", "You assembled the full band! Come watch the show on Saturday night.", QuestBranchLegendary, "BW117", "Saffron City", LegendaryQuestColor),
"legendary_cresselia_1" => Quest.new(61, "Mysterious Lunar feathers", "A mysterious entity asked you to collect Lunar Feathers for them. It said that they will come at night to tell you where to look. Whoever that may be...", QuestBranchLegendary, "lunarFeather", "Lavender Town", LegendaryQuestColor),
#removed
#11 => Quest.new(11, "Powering the Lighthouse", "Catch some Voltorb to power up the lighthouse", QuestBranchHotels, "BW (43)", "Vermillion City", HotelQuestColor),
}
###################
# HOENN QUESTS ##
# ################
#Route 116
define_quest("route116_glasses",:FIELD_QUEST,"Lost glasses", "A trainer has lost their glasses, help him find them!","Route 116","NPC_Hoenn_BugManiac")
define_quest("petalburgwoods_spores",:FIELD_QUEST,"Spores harvest", "A scientist has tasked you to collect 4 spore samples from the large mushrooms that can be found imn the woods!","Petalburg Woods","NPC_Hoenn_Scientist")

View File

@@ -0,0 +1,380 @@
def isWearingTeamRocketOutfit()
return false if !$game_switches[SWITCH_JOINED_TEAM_ROCKET]
return (isWearingClothes(CLOTHES_TEAM_ROCKET_MALE) || isWearingClothes(CLOTHES_TEAM_ROCKET_FEMALE)) && isWearingHat(HAT_TEAM_ROCKET)
end
def isWearingFavoriteOutfit()
favorites = {
hat: $Trainer.favorite_hat,
hat2: $Trainer.favorite_hat2,
clothes: $Trainer.favorite_clothes
}
favorites.select! { |item, favorite| !favorite.nil? }
return false if favorites.empty?
return favorites.all? do |item, favorite|
case item
when :hat
$Trainer.hat == favorite
when :hat2
$Trainer.hat2 == favorite
when :clothes
$Trainer.clothes == favorite
end
end
end
def obtainRocketOutfit()
Kernel.pbReceiveItem(:ROCKETUNIFORM)
gender = pbGet(VAR_TRAINER_GENDER)
if gender == GENDER_MALE
obtainClothes(CLOTHES_TEAM_ROCKET_MALE)
obtainHat(HAT_TEAM_ROCKET)
$Trainer.unlocked_clothes << CLOTHES_TEAM_ROCKET_FEMALE
else
obtainClothes(CLOTHES_TEAM_ROCKET_FEMALE)
obtainHat(HAT_TEAM_ROCKET)
$Trainer.unlocked_clothes << CLOTHES_TEAM_ROCKET_MALE
end
#$PokemonBag.pbStoreItem(:ROCKETUNIFORM,1)
end
def acceptTRQuest(id, show_description = true)
return if isQuestAlreadyAccepted?(id)
title = TR_QUESTS[id].name
description = TR_QUESTS[id].desc
showNewTRMissionMessage(title, description, show_description)
addRocketQuest(id)
end
def addRocketQuest(id)
$Trainer.quests = [] if $Trainer.quests.class == NilClass
quest = TR_QUESTS[id]
$Trainer.quests << quest if quest
end
def showNewTRMissionMessage(title, description, show_description)
titleColor = 2
textColor = 2
pbMEPlay("rocketQuest", 80, 110)
pbCallBub(3)
Kernel.pbMessage("\\C[#{titleColor}]NEW MISSION: " + title)
if show_description
pbCallBub(3)
Kernel.pbMessage("\\C[#{textColor}]" + description)
end
end
#status = :SUCCESS, :FAILURE
def finishTRQuest(id, status, silent = false)
return if pbCompletedQuest?(id)
pbMEPlay("Register phone") if status == :SUCCESS && !silent
pbMEPlay("Voltorb Flip Game Over") if status == :FAILURE && !silent
Kernel.pbMessage("\\C[2]Mission completed!") if status == :SUCCESS && !silent
Kernel.pbMessage("\\C[2]Mission Failed...") if status == :FAILURE && !silent
$game_variables[VAR_KARMA] -= 5 # karma
$game_variables[VAR_NB_ROCKET_MISSIONS] += 1 #nb. quests completed
pbSetQuest(id, true)
end
TR_QUESTS = {
"tr_cerulean_1" => Quest.new("tr_cerulean_1", "Creepy Crawlies", "The Team Rocket Captain has tasked you with clearing the bug infestation in the temporary Rocket HQ in Cerulean City", QuestBranchRocket, "rocket_petrel", "Cerulean City", TRQuestColor),
"tr_cerulean_2" => Quest.new("tr_cerulean_2", "No Fishing Zone", "Intimidate the fishermen at Nugget Bridge until they leave the area.", QuestBranchRocket, "rocket_petrel", "Cerulean City", TRQuestColor),
"tr_cerulean_3" => Quest.new("tr_cerulean_3", "Disobedient Pokémon", "Bring back the Pokémon given by the Team Rocket Captain fainted to teach it a lesson.", QuestBranchRocket, "rocket_petrel", "Cerulean City", TRQuestColor),
"tr_cerulean_4" => Quest.new("tr_cerulean_4", "Gran Theft Pokémon!", "Follow Petrel and go steal a rare Pokémon from a young girl.", QuestBranchRocket, "rocket_petrel", "Cerulean City", TRQuestColor),
"tr_celadon_1" => Quest.new("tr_celadon_1", "Supplying the new grunts", "Catch 4 Pokémon with Rocket Balls in the outskirts of Celadon City.", QuestBranchRocket, "rocket_archer", "Celadon City", TRQuestColor),
"tr_celadon_2" => Quest.new("tr_celadon_2", "Interception!", "Intercept the TMs shipment to the Celadon Store and pose as the delivery person to deliver fake TMs.", QuestBranchRocket, "rocket_archer", "Celadon City", TRQuestColor),
"tr_celadon_3" => Quest.new( "tr_celadon_3", "Pokémon Collector", "Go meet a Pokémon collector on Route 22, near Viridian City and get his rare Pokémon.", QuestBranchRocket, "rocket_archer", "Celadon City", TRQuestColor),
"tr_celadon_4" => Quest.new("tr_celadon_4", "Operation Shutdown", "The Team Rocket HQ is being raided! Regroup with the rest of the grunts in Goldenrod Tunnel!", QuestBranchRocket, "rocket_archer", "Goldenrod City", TRQuestColor),
"tr_pinkan" => Quest.new("tr_pinkan", "Pinkan Island!", "Help Team Rocket with a heist on a Pokémon nature preserve!", QuestBranchRocket, "rocket_archer", "Goldenrod City", TRQuestColor),
}
def calculateSuspicionLevel(answersSoFar, uncertain_answers)
echoln answersSoFar
believable_answers = [
[:BIRD, :ICE, :CINNABAR, :DAWN], #articuno
[:BIRD, :ELECTRIC, :LAVENDER, :AFTERNOON], #zapdos
[:BIRD, :FIRE, :CINNABAR, :SUNSET], #moltres
[:BEAST, :ELECTRIC, :CERULEAN, :NIGHT], #raikou
[:BEAST, :ELECTRIC, :LAVENDER, :NIGHT], #raikou
[:BEAST, :FIRE, :VIRIDIAN, :NOON], #entei
[:BEAST, :FIRE, :VIRIDIAN, :SUNSET], #entei
[:BEAST, :WATER, :CERULEAN, :DAWN], #suicune
[:BEAST, :WATER, :CERULEAN, :NIGHT], #suicune
[:FISH, :WATER, :CERULEAN, :NIGHT], #suicune
[:FISH, :WATER, :CERULEAN, :DAWN] #suicune
]
min_suspicion_score = Float::INFINITY
# Iterate over each believable answer
believable_answers.each do |believable_answer|
suspicion_score = 0
length_to_check = [answersSoFar.length, believable_answer.length].min
# Compare answersSoFar with believable_answer up to the current length
length_to_check.times do |i|
suspicion_score += 1 unless answersSoFar[i] == believable_answer[i]
end
# Track the minimum suspicion score found
min_suspicion_score = [min_suspicion_score, suspicion_score].min
end
min_suspicion_score += min_suspicion_score if uncertain_answers > 1
echoln "suspicion score: #{min_suspicion_score}"
return min_suspicion_score
end
##### Gameplay stuff
def legendaryQuestioning()
uncertain_answers = 0
answers_so_far = []
#question 1
pbCallBub(2, @event_id)
pbMessage("First off what does the legendary Pokémon look like?")
bodyTypes = { :BIRD => "A flying creature", :BEAST => "A large beast", :FISH => "An aquatic creature", :UNKNOWN => "I don't know..." }
chosen_bodyType = optionsMenu(bodyTypes.values)
answers_so_far << bodyTypes.keys[chosen_bodyType]
if chosen_bodyType == bodyTypes.length - 1
pbCallBub(2, @event_id)
pbMessage("You don't know? Have you even seen that Pokémon?")
pbCallBub(2, @event_id)
pbMessage("Hmm... You better have some more information.")
uncertain_answers += 1
else
pbCallBub(2, @event_id)
pbMessage("#{bodyTypes.values[chosen_bodyType]} that's also a legendary Pokémon? That sounds incredible! You have my attention.")
end
#question 2
pbCallBub(2, @event_id)
pbMessage("Okay... What about its type?")
types = { :ELECTRIC => "Electric-type", :FIRE => "Fire-type", :WATER => "Water-Type", :ICE => "Ice-type", :UNKNOWN => "I don't know..." }
chosen_type = optionsMenu(types.values)
answers_so_far << types.keys[chosen_type]
if chosen_type == types.length - 1
pbCallBub(2, @event_id)
pbMessage("So you don't know its type... Hmm...")
uncertain_answers += 1
else
if chosen_bodyType == bodyTypes.length - 1
pbCallBub(2, @event_id)
pbMessage("Hmm... So it's an unknown creature that's #{types.values[chosen_type]}...")
else
pbCallBub(2, @event_id)
pbMessage("Hmm... #{bodyTypes.values[chosen_bodyType]} that's #{types.values[chosen_type]}.")
end
susMeter = calculateSuspicionLevel(answers_so_far, uncertain_answers)
if susMeter == 0
pbCallBub(2, @event_id)
pbMessage("That sounds pretty exciting!")
else
pbCallBub(2, @event_id)
pbMessage("I've never heard of such a creature, but keep going.")
end
end
#question 3
pbCallBub(2, @event_id)
pbMessage("So... Where was this legendary Pokémon sighted?")
locations = { :VIRIDIAN => "Near Viridian City", :LAVENDER => "Near Lavender Town", :CERULEAN => "Near Cerulean City", :CINNABAR => "Near Cinnabar Island", :UNKNOWN => "I don't know" }
chosen_location = optionsMenu(locations.values)
if chosen_location == locations.length - 1
uncertain_answers += 1
if uncertain_answers == 3
pbCallBub(2, @event_id)
pbMessage("Do you even know anything? This has been such a waste of time!")
return 100
else
pbCallBub(2, @event_id)
pbMessage("How can you not know where it was sighted? Do you know how unhelpful this is to me?")
uncertain_answers += 1
end
else
answers_so_far << locations.keys[chosen_location]
susMeter = calculateSuspicionLevel(answers_so_far, uncertain_answers)
if susMeter == 0
pbCallBub(2, @event_id)
pbMessage("#{locations.values[chosen_location]}, huh? Ah yes, that would make a lot of sense... How did I not think of this before?")
else
pbCallBub(2, @event_id)
pbMessage("Hmmm... #{locations.values[chosen_location]}, really? That sounds pretty surprising to me.")
end
end
#question 4
locations_formatted = { :VIRIDIAN => "Viridian City", :LAVENDER => "Lavender Town", :CERULEAN => "Cerulean City", :CINNABAR => "Cinnabar Island", :UNKNOWN => "that unknown location" }
pbCallBub(2, @event_id)
pbMessage("And at what time of the day was that legendary Pokémon seen near #{locations_formatted.values[chosen_location]} exactly?")
time_of_day = { :DAWN => "At dawn", :NOON => "At noon", :AFTERNOON => "In the afternoon", :SUNSET => "At sunset", :NIGHT => "At night" }
chosen_time = optionsMenu(time_of_day.values)
pbCallBub(2, @event_id)
pbMessage("So it was seen near #{locations_formatted.values[chosen_location]} #{time_of_day.values[chosen_time].downcase}...")
answers_so_far << time_of_day.keys[chosen_time]
return calculateSuspicionLevel(answers_so_far, uncertain_answers)
end
def sellPokemon(event_id)
if $Trainer.party.length <= 1
pbCallBub(2, event_id)
pbMessage("... Wait, I can't take your only Pokémon!")
return false
end
pbChoosePokemon(1, 2,
proc { |poke|
!poke.egg?
})
chosenIndex = pbGet(1)
chosenPokemon = $Trainer.party[chosenIndex]
exotic_pokemon_id = pbGet(VAR_EXOTIC_POKEMON_ID)
if chosenPokemon.personalID == exotic_pokemon_id
pbCallBub(2, event_id)
pbMessage("Oh, this is the Pokémon you got from the collector, right?")
pbCallBub(2, event_id)
pbMessage("Yeah, I can't take that one. The collector blabbed to the police so it's too risky.")
return false
end
speciesName = GameData::Species.get(chosenPokemon.species).real_name
pbCallBub(2, event_id)
if pbConfirmMessageSerious("You wanna sell me this #{speciesName}, is that right?")
pbCallBub(2, event_id)
pbMessage("Hmm... Let's see...")
pbWait(10)
value = calculate_pokemon_value(chosenPokemon)
pbCallBub(2, event_id)
if pbConfirmMessageSerious("\\GI could give you $#{value.to_s} for it. Do we have a deal?")
payout = (value * 0.7).to_i
pbCallBub(2, event_id)
pbMessage("\\GExcellent. And of course, 30% goes to Team Rocket. So you get $#{payout}.")
$Trainer.money += payout
$Trainer.remove_pokemon_at_index(pbGet(1))
pbSEPlay("Mart buy item")
pbCallBub(2, event_id)
pbMessage("\\GPleasure doing business with you.")
return true
else
pbCallBub(2, event_id)
pbMessage("Stop wasting my time!")
end
else
pbCallBub(2, event_id)
pbMessage("Stop wasting my time!")
end
return false
end
def calculate_pokemon_value(pokemon)
# Attribute weights adjusted further for lower-level Pokémon
catch_rate_weight = 0.5
level_weight = 0.2
stats_weight = 0.3
# Constants for the price range
min_price = 100
max_price = 20000
foreign_pokemon_bonus = 3000
fused_bonus = 1000
# Baseline minimum values for scaling
min_catch_rate = 3 # Legendary catch rate
min_level = 1 # Minimum level for a Pokémon
min_base_stats = 180 # Approximate minimum total stats (e.g., Sunkern)
# Attribute maximums
max_catch_rate = 255 # Easy catch rate Pokémon like Magikarp
max_level = 100
max_base_stats = 720 # Maximum base stat total (e.g., Arceus)
# Normalize values based on actual ranges
normalized_catch_rate = (max_catch_rate - pokemon.species_data.catch_rate).to_f / (max_catch_rate - min_catch_rate)
normalized_level = (pokemon.level - min_level).to_f / (max_level - min_level)
normalized_stats = (calcBaseStatsSum(pokemon.species) - min_base_stats).to_f / (max_base_stats - min_base_stats)
# Apply weights to each component
weighted_catch_rate = normalized_catch_rate * catch_rate_weight
weighted_level = normalized_level * level_weight
weighted_stats = normalized_stats * stats_weight
# Calculate the total score and scale to price range with a reduced scaling factor
total_score = weighted_catch_rate + weighted_level + weighted_stats
price = min_price + (total_score * (max_price - min_price) * 0.4) # Lower scaling factor
# Add foreign Pokémon bonus if applicable
is_foreign = !(isKantoPokemon(pokemon.species) || isJohtoPokemon(pokemon.species))
price += foreign_pokemon_bonus if is_foreign
price += fused_bonus if isSpeciesFusion(pokemon.species)
price.to_i # Convert to an integer value
end
def updatePinkanBerryDisplay()
return if !isOnPinkanIsland()
berry_image_width=25
clear_all_images()
pbSEPlay("GUI storage pick up", 80, 100)
nbPinkanBerries = $PokemonBag.pbQuantity(:PINKANBERRY)
for i in 1..nbPinkanBerries
x_pos=i*berry_image_width
y_pos=0
$game_screen.pictures[i].show("pinkanberryui",0,x_pos,y_pos)
end
end
PINKAN_ISLAND_MAP = 51
PINKAN_ISLAND_START_ROCKET = [11,25]
PINKAN_ISLAND_START_POLICE = [20,55]
def pinkanIslandWarpToStart()
$game_temp.player_new_map_id = PINKAN_ISLAND_MAP
if $game_switches[SWITCH_PINKAN_SIDE_ROCKET]
$game_temp.player_new_x = PINKAN_ISLAND_START_ROCKET[0]
$game_temp.player_new_y = PINKAN_ISLAND_START_ROCKET[1]
else
$game_temp.player_new_x = PINKAN_ISLAND_START_POLICE[0]
$game_temp.player_new_y = PINKAN_ISLAND_START_POLICE[1]
end
$scene.transfer_player if $scene.is_a?(Scene_Map)
$game_map.refresh
$game_switches[Settings::STARTING_OVER_SWITCH] = true
$scene.reset_map(true)
end
def isOnPinkanIsland()
return Settings::PINKAN_ISLAND_MAPS.include?($game_map.map_id)
end
def pinkanAddAllCaughtPinkanPokemon()
for pokemon in $Trainer.party
pbStorePokemon(pokemon)
end
end
def resetPinkanIsland()
$game_switches[SWITCH_BLOCK_PINKAN_WHISTLE]=false
$game_switches[SWITCH_LEAVING_PINKAN_ISLAND]=false
$game_switches[SWITCH_PINKAN_SIDE_POLICE]=false
$game_switches[SWITCH_PINKAN_SIDE_ROCKET]=false
$game_switches[SWITCH_PINKAN_FINISHED]=false
for map_id in Settings::PINKAN_ISLAND_MAPS
map = $MapFactory.getMap(map_id,false)
for event in map.events.values
$game_self_switches[[map_id, event.id, "A"]] = false
$game_self_switches[[map_id, event.id, "B"]] = false
$game_self_switches[[map_id, event.id, "C"]] = false
$game_self_switches[[map_id, event.id, "D"]] = false
end
end
end

View File

@@ -0,0 +1,19 @@
#Eevee quest
Events.onStepTaken+=proc {|sender,e|
next if !$game_switches[173]
next if !$game_switches[179] #If not outside of building
$game_variables[102]+=1
if $game_variables[102] % 100 == 0 then
$game_variables[101]+=1
end
if $game_variables[102] >= 400 then
if $game_variables[102] % 100 == 0 then
Kernel.pbMessage(_INTL("Eevee is getting tired. You should head back soon!"))
cry=pbResolveAudioSE(pbCryFile(133))
pbSEPlay(cry,100,100)
end
end
}

View File

@@ -0,0 +1,149 @@
class PokemonTemp
def pbClearAllTempEvents()
echoln @tempEvents
@tempEvents.keys.each {|map_id|
map = $MapFactory.getMap(map_id,false)
@tempEvents[map_id].each { |event|
#this deletes the event after a small fadeout
$game_self_switches[[map_id, event.id, "B"]] = true if map.events[event.id]
}
}
@tempEvents={}
@silhouetteDirection=nil
end
end
def isNightmareEffect()
return $game_switches[SWITCH_NIGHTMARE_EFFECT] && PBDayNight.isNight?
end
# def playNightmareEffect()
# frame=1
# while true
# frame +=1
# frame = 1 if frame >4
# filename = "nightmare"+frame.to_s
# picture = Game_Picture.new(40)
# picture.show(filename, 0, 0, 0, 200, 200, 255, 0)
# pbWait(3)
# picture.erase
# end
#
# end
Events.onStepTaken += proc { |sender, e|
next if !$PokemonTemp.silhouetteDirection
if $PokemonTemp.silhouetteDirection && $PokemonTemp.silhouetteDirection == $game_player.direction
$PokemonTemp.pbClearAllTempEvents
$PokemonTemp.silhouetteDirection = nil
end
}
Events.onStepTaken += proc { |sender, e|
next if !$scene.is_a?(Scene_Map)
next if !isNightmareEffect()
steps_constant_offset = 40
steps_chance=100
minimum_steps=10
steps_nb = rand(steps_chance)+pbGet(VAR_KARMA)+steps_constant_offset
steps_nb = minimum_steps if steps_nb<minimum_steps
next if $PokemonGlobal.stepcount % steps_nb != 0
next if !isOutdoor()
$PokemonTemp.pbClearAllTempEvents
spawnSilhouette()
}
Events.onMapChange += proc { |sender, e|
next if $PokemonTemp.tempEvents.empty?
$PokemonTemp.pbClearTempEvents()
}
def getRandomPositionOnPerimeter(width, height, center_x, center_y, variance=0,edge=nil)
half_width = width / 2.0
half_height = height / 2.0
# Randomly select one of the four edges of the rectangle
edge = rand(4) if !edge
case edge
when 0 # Top edge
random_x = center_x + rand(-half_width..half_width)
random_y = center_y - half_height
when 1 # Bottom edge
random_x = center_x + rand(-half_width..half_width)
random_y = center_y + half_height
when 2 # Left edge
random_x = center_x - half_width
random_y = center_y + rand(-half_height..half_height)
when 3 # Right edge
random_x = center_x + half_width
random_y = center_y + rand(-half_height..half_height)
end
return random_x.round, random_y.round
end
# def launchSilhouetteCommonEvent(event)
# $scene.spriteset.addUserAnimation(VIRUS_ANIMATION_ID, event.x, event.y, true)
# $PokemonTemp.pbClearTempEvents
# $PokemonTemp.silhouetteDirection = nil
# pbCommonEvent(COMMON_EVENT_SILHOUETTE)
# end
#
# Faces the same way as player
# Disappears as soon as player takes a step in same direction as event
# -> when talk to it:
# ghost animation
# Message:
# A voice echoed from somewhere...
# [NEXT HINT] (ex: The house in Vermillion City...)
#
def generate_silhouette_event(id)
$game_self_switches[[MAP_TEMPLATE_EVENTS, TEMPLATE_EVENT_SILHOUETTE, "A"]] = false
$game_self_switches[[MAP_TEMPLATE_EVENTS, TEMPLATE_EVENT_SILHOUETTE, "B"]] = false
template_event = $MapFactory.getMap(MAP_TEMPLATE_EVENTS,false).events[TEMPLATE_EVENT_SILHOUETTE]
new_event= template_event.event.dup
new_event.name = "temp_silhouette"
new_event.id = id
return new_event
end
def spawnSilhouette()
found_available_position = false
max_tries = 10
current_try = 0
while !found_available_position
x, y = getRandomPositionOnPerimeter(15, 11, $game_player.x, $game_player.y, 2)
found_available_position = true if $game_map.passable?(x, y, $game_player.direction)
current_try += 1
return if current_try > max_tries
end
key_id = ($game_map.events.keys.max || -1) + 1
rpgEvent = generate_silhouette_event(key_id)
#rpgEvent = RPG::Event.new(x,y)
gameEvent = Game_Event.new($game_map.map_id, rpgEvent, $game_map)
direction = $game_player.direction #[2,4,6,8].sample
gameEvent.direction = direction
$PokemonTemp.silhouetteDirection = direction
$game_map.events[key_id] = gameEvent
gameEvent.moveto(x, y)
#-------------------------------------------------------------------------
#updating the sprites
sprite = Sprite_Character.new(Spriteset_Map.viewport, $game_map.events[key_id])
$scene.spritesets[$game_map.map_id] = Spriteset_Map.new($game_map) if $scene.spritesets[$game_map.map_id] == nil
$scene.spritesets[$game_map.map_id].character_sprites.push(sprite)
#$PokemonTemp.addTempEvent($game_map.map_id, gameEvent)
end

View File

@@ -0,0 +1,217 @@
PluginManager.register({
:name => "Carmaniac's Speech Bubbles",
:version => "1.1",
:credits => ["Carmaniac","Avery","Boonzeet"],
:link => "https://reliccastle.com/resources/461/"
})
#-------------------------------------------------------------------------------
# Carmaniac's Speech Bubbles for v18
# Updated by Avery
#-------------------------------------------------------------------------------
# To use, call pbCallBub(type, eventID)
#
# Where type is either 1 or 2:
# 1 - floating bubble
# 2 - speech bubble with arrow
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# Class modifiers
#-------------------------------------------------------------------------------
class PokemonTemp
attr_accessor :speechbubble_bubble
attr_accessor :speechbubble_vp
attr_accessor :speechbubble_arrow
attr_accessor :speechbubble_outofrange
attr_accessor :speechbubble_talking
attr_accessor :speechbubble_alwaysDown
attr_accessor :speechbubble_alwaysUp
end
module MessageConfig
BUBBLETEXTBASE = Color.new(22,22,22)
BUBBLETEXTSHADOW = Color.new(166,160,151)
WindowOpacity = 255
end
#-------------------------------------------------------------------------------
# Function modifiers
#-------------------------------------------------------------------------------
class Window_AdvancedTextPokemon
def text=(value)
if value != nil && value != "" && $PokemonTemp.speechbubble_bubble && $PokemonTemp.speechbubble_bubble > 0
if $PokemonTemp.speechbubble_bubble == 1
$PokemonTemp.speechbubble_bubble = 0
resizeToFit2(value,400,100)
@x = $game_map.events[$PokemonTemp.speechbubble_talking].screen_x
@y = $game_map.events[$PokemonTemp.speechbubble_talking].screen_y - (32 + @height)
if @y>(Graphics.height-@height-2)
@y = (Graphics.height-@height)
elsif @y<2
@y=2
end
if @x>(Graphics.width-@width-2)
@x = ($game_map.events[$PokemonTemp.speechbubble_talking].screen_x-@width)
elsif @x<2
@x=2
end
elsif $PokemonTemp.speechbubble_bubble == 3
@x=$game_player.x+32
@y=$game_player.y+36
else
$PokemonTemp.speechbubble_bubble = 0
end
end
setText(value)
end
end
def pbRepositionMessageWindow(msgwindow, linecount=2)
msgwindow.height=32*linecount+msgwindow.borderY
msgwindow.y=(Graphics.height)-(msgwindow.height)
if $game_temp && $game_temp.in_battle && !$scene.respond_to?("update_basic")
msgwindow.y=0
elsif $game_system && $game_system.respond_to?("message_position")
case $game_system.message_position
when 0 # up
msgwindow.y=0
when 1 # middle
msgwindow.y=(Graphics.height/2)-(msgwindow.height/2)
when 2
if $PokemonTemp.speechbubble_bubble == 1 || $PokemonTemp.speechbubble_bubble == 3
msgwindow.setSkin("Graphics/windowskins/frlgtextskin")
msgwindow.height = 100
msgwindow.width = 400
elsif $PokemonTemp.speechbubble_bubble==2
msgwindow.setSkin("Graphics/windowskins/frlgtextskin")
msgwindow.height = 102
msgwindow.width = Graphics.width
if ($game_player.direction==8 && !$PokemonTemp.speechbubble_alwaysDown) || $PokemonTemp.speechbubble_alwaysUp
$PokemonTemp.speechbubble_vp = Viewport.new(0, 0, Graphics.width, 280)
msgwindow.y = 6
else
$PokemonTemp.speechbubble_vp = Viewport.new(0, 6 + msgwindow.height, Graphics.width, 280)
msgwindow.y = (Graphics.height - msgwindow.height) - 6
if $PokemonTemp.speechbubble_outofrange==true
msgwindow.y = 6
end
end
else
msgwindow.height = 102
msgwindow.y = Graphics.height - msgwindow.height - 6
end
end
end
if $game_system && $game_system.respond_to?("message_frame")
if $game_system.message_frame != 0
msgwindow.opacity = 0
end
end
if $game_message
case $game_message.background
when 1 # dim
msgwindow.opacity=0
when 2 # transparent
msgwindow.opacity=0
end
end
end
def pbCreateMessageWindow(viewport=nil,skin=nil)
arrow = nil
if $PokemonTemp.speechbubble_bubble==2 && $game_map.events[$PokemonTemp.speechbubble_talking] != nil # Message window set to floating bubble.
if ($game_player.direction==8 && !$PokemonTemp.speechbubble_alwaysDown) || $PokemonTemp.speechbubble_alwaysUp# Player facing up, message window top.
$PokemonTemp.speechbubble_vp = Viewport.new(0, 104, Graphics.width, 280)
$PokemonTemp.speechbubble_vp.z = 999999
arrow = Sprite.new($PokemonTemp.speechbubble_vp)
arrow.x = $game_map.events[$PokemonTemp.speechbubble_talking].screen_x - Graphics.width
arrow.y = ($game_map.events[$PokemonTemp.speechbubble_talking].screen_y - Graphics.height) - 136
arrow.z = 999999
arrow.bitmap = RPG::Cache.load_bitmap_path("Graphics/Pictures/Arrow4")
arrow.zoom_x = 2
arrow.zoom_y = 2
if arrow.x<-230
arrow.x = $game_map.events[$PokemonTemp.speechbubble_talking].screen_x
arrow.bitmap = RPG::Cache.load_bitmap_path("Graphics/Pictures/Arrow3")
end
else # Player facing left, down, right, message window bottom.
$PokemonTemp.speechbubble_vp = Viewport.new(0, 0, Graphics.width, 280)
$PokemonTemp.speechbubble_vp.z = 999999
arrow = Sprite.new($PokemonTemp.speechbubble_vp)
arrow.x = $game_map.events[$PokemonTemp.speechbubble_talking].screen_x
arrow.y = $game_map.events[$PokemonTemp.speechbubble_talking].screen_y
arrow.z = 999999
arrow.bitmap = RPG::Cache.load_bitmap_path("Graphics/Pictures/Arrow1")
if arrow.y>=Graphics.height-120 # Change arrow direction.
$PokemonTemp.speechbubble_outofrange=true
$PokemonTemp.speechbubble_vp.rect.y+=104
arrow.x = $game_map.events[$PokemonTemp.speechbubble_talking].screen_x - Graphics.width
arrow.bitmap = RPG::Cache.load_bitmap_path("Graphics/Pictures/Arrow4")
arrow.y = ($game_map.events[$PokemonTemp.speechbubble_talking].screen_y - Graphics.height) - 136
if arrow.x<-250
arrow.x = $game_map.events[$PokemonTemp.speechbubble_talking].screen_x
arrow.bitmap = RPG::Cache.load_bitmap_path("Graphics/Pictures/Arrow3")
end
if arrow.x>=256
arrow.x-=15# = $game_map.events[$PokemonTemp.speechbubble_talking].screen_x-Graphics.width
arrow.bitmap = RPG::Cache.load_bitmap_path("Graphics/Pictures/Arrow3")
end
else
$PokemonTemp.speechbubble_outofrange=false
end
arrow.zoom_x = 2
arrow.zoom_y = 2
end
end
$PokemonTemp.speechbubble_arrow = arrow
msgwindow=Window_AdvancedTextPokemon.new("")
if !viewport
msgwindow.z=99999
else
msgwindow.viewport=viewport
end
msgwindow.visible=true
msgwindow.letterbyletter=true
msgwindow.back_opacity=MessageConfig::WindowOpacity
pbBottomLeftLines(msgwindow,2)
$game_temp.message_window_showing=true if $game_temp
$game_message.visible=true if $game_message
skin=MessageConfig.pbGetSpeechFrame() if !skin
msgwindow.setSkin(skin)
return msgwindow
end
def pbDisposeMessageWindow(msgwindow)
$game_temp.message_window_showing=false if $game_temp
$game_message.visible=false if $game_message
msgwindow.dispose
$PokemonTemp.speechbubble_arrow.dispose if $PokemonTemp.speechbubble_arrow
$PokemonTemp.speechbubble_vp.dispose if $PokemonTemp.speechbubble_vp
$PokemonTemp.speechbubble_bubble=nil
end
def pbCallBubUp(status=0,value=0)
pbCallBub(status,value,false,true)
end
def pbCallBubDown(status=0,value=0)
pbCallBub(status,value,true,false)
end
#always_down, always_up is not ideal but used everywhere in game so too late to change
def pbCallBub(status=0,value=0,always_down=false, always_up=false)
begin
$PokemonTemp.speechbubble_talking=get_character(value).id
$PokemonTemp.speechbubble_bubble=status
$PokemonTemp.speechbubble_alwaysDown=always_down
$PokemonTemp.speechbubble_alwaysUp=always_up
rescue
return #Let's not crash the game if error
end
end

View File

@@ -0,0 +1,71 @@
#==============================================================================#
# Better Fast-forward Mode #
# v1.0 #
# #
# by Marin #
#==============================================================================#
# Usage #
# #
# SPEEDUP_STAGES are the speed stages the game will pick from. If you click F, #
# it'll choose the next number in that array. It goes back to the first number #
# afterward. #
# #
# $GameSpeed is the current index in the speed up array. #
# Should you want to change that manually, you can do, say, $GameSpeed = 0 #
# #
# If you don't want the user to be able to speed up at certain points, you can #
# use "pbDisallowSpeedup" and "pbAllowSpeedup". #
#==============================================================================#
# Please give credit when using this. #
#==============================================================================#
PluginManager.register({
:name => "Better Fast-forward Mode",
:version => "1.1",
:credits => "Marin",
:link => "https://reliccastle.com/resources/151/"
})
# When the user clicks F, it'll pick the next number in this array.
SPEEDUP_STAGES = [1,2,3]
def pbAllowSpeedup
$CanToggle = true
end
def pbDisallowSpeedup
$CanToggle = false
end
# Default game speed.
$GameSpeed = 0
$frame = 0
$CanToggle = true
module Graphics
class << Graphics
alias fast_forward_update update
end
def self.update
if $CanToggle && Input.trigger?(Input::AUX1)
$GameSpeed += 1
$GameSpeed = 0 if $GameSpeed >= SPEEDUP_STAGES.size
end
$frame += 1
if $PokemonSystem && $PokemonSystem.speedup == 1
speedStage = SPEEDUP_STAGES[$GameSpeed]
else
speedStage = 1
if Input.press?(Input::AUX1) && $CanToggle
$PokemonSystem.speedup_speed = Settings::DEFAULT_SPEED_UP_SPEED if !$PokemonSystem.speedup_speed || $PokemonSystem.speedup_speed==0
speedStage=$PokemonSystem.speedup_speed+1
end
end
return unless $frame % speedStage == 0
fast_forward_update
$frame = 0
end
end

View File

@@ -0,0 +1,498 @@
def map_sprites_by_artist
creditsMap = Hash.new
File.foreach(Settings::CREDITS_FILE_PATH) do |line|
row = line.split(',')
spritename = row[0]
if row[1]
artist = row[1].chomp
sprites = creditsMap.key?(artist) ? creditsMap[artist] : []
sprites << spritename
creditsMap[artist] = sprites
end
end
return creditsMap
end
def get_top_artists(nb_names = 100)
filename = Settings::CREDITS_FILE_PATH
name_counts = Hash.new(0)
File.readlines(filename).each do |line|
name = line.strip.split(',')[1]
name_counts[name] += 1
end
name_counts.sort_by { |name, count| -count }.to_h
.first(nb_names)
.to_h
end
def analyzeSpritesList(spritesList, mostPopularCallbackVariable = 1)
pokemon_map = Hash.new
for spritename in spritesList
splitName = spritename.split(".")
headNum = splitName[0].to_i
bodyNum = splitName[1].to_i
if pokemon_map.key?(headNum)
pokemon_map[headNum] += 1
else
pokemon_map[headNum] = 1
end
if pokemon_map.key?(bodyNum)
pokemon_map[bodyNum] += 1
else
pokemon_map[bodyNum] = 1
end
end
most_popular = pokemon_map.max_by { |key, value| value }
most_popular_poke = most_popular[0]
most_popular_nb = most_popular[1]
pbSet(mostPopularCallbackVariable, most_popular_nb)
species = getSpecies(most_popular_poke)
return species
end
def getPokemonSpeciesFromPifSprite(pif_sprite)
if pif_sprite.type == :BASE
return getSpecies(pif_sprite.head_id)
else
return getFusionSpecies(pif_sprite.body_id, pif_sprite.head_id)
end
end
# def getPokemonSpeciesFromSprite(spritename)
# return nil if !spritename
# spritename.gsub('.png', '')
# splitName = spritename.split(".")
# headNum = splitName[0].to_i
# bodyNum = splitName[1].to_i
#
# #call this to make sure that the sprite is downloaded
# get_fusion_sprite_path(headNum, bodyNum)
#
# species = getFusionSpecies(bodyNum, headNum)
# return species
# end
def doesCurrentExhibitionFeaturePokemon(displayedSprites, pokemon)
for sprite in displayedSprites
headNum = sprite.head_id
bodyNum = sprite.body_id
return true if headNum == pokemon.id_number || bodyNum == pokemon.id_number
end
return false
end
def select_spriter(minNbSprites = 10, save_in_var = 1)
spriters_list = list_all_spriters_with_min_nb_of_sprites(minNbSprites)
commands = []
spriters_list.each do |name, i|
if name
commands.push([i, name, name])
end
end
chosen = pbChooseList(commands, 0, nil, 1)
return nil if !chosen
return chosen
end
def list_all_spriters_with_min_nb_of_sprites(minNbSprites)
return list_all_spriters() if !minNbSprites
filename = Settings::CREDITS_FILE_PATH
spriters_hash = Hash.new(0)
File.readlines(filename).each do |line|
name = line.strip.split(',')[1]
if name
spriters_hash[name] += 1
end
end
spriters_list = []
for spriter_name in spriters_hash.keys
if spriters_hash[spriter_name] >= minNbSprites
spriters_list << spriter_name
end
end
return spriters_list
end
def list_all_spriters()
filename = Settings::CREDITS_FILE_PATH
names_list = []
File.readlines(filename).each do |line|
name = line.strip.split(',')[1]
if !names_list.include?(name)
names_list << name
end
end
return names_list
end
def generateCurrentGalleryBattle(level = nil, number_of_pokemon = 3)
spriter_name = pbGet(259)
#set highest level in party if nil
if !level
level = $Trainer.highest_level_pokemon_in_party
end
possible_battlers = []
for i in 0..5
pif_sprite = pbGet(VAR_GALLERY_FEATURED_SPRITES)[i]
species = getPokemonSpeciesFromPifSprite(pif_sprite)
possible_battlers << species if species
end
selected_battlers_idx = possible_battlers.sample(number_of_pokemon)
party = []
selected_battlers_idx.each { |species| 00
party << Pokemon.new(species, level)
}
custom_appearance = generate_appearance_from_name(spriter_name)
customTrainerBattle(spriter_name,
:PAINTER,
party,
level,
pick_spriter_losing_dialog(spriter_name),
pick_trainer_sprite(spriter_name),
custom_appearance
)
end
def generateArtGallery(nbSpritesDisplayed = 6, saveArtistNameInVariable = 1, saveSpritesInVariable = 2, saveAllArtistSpritesInVariable = 3, artistName = nil)
artistName = nil if artistName == 0
creditsMap = map_sprites_by_artist
select_daily_team_flags()
featuredArtist = artistName ? artistName : getRandomSpriteArtist(creditsMap, nbSpritesDisplayed)
if featuredArtist
if !creditsMap[featuredArtist] #try again if issue
artistName = getRandomSpriteArtist(creditsMap, nbSpritesDisplayed)
return generateArtGallery(nbSpritesDisplayed, saveSpritesInVariable, saveSpritesInVariable, saveSpritesInVariable, artistName)
end
featuredSprites_files = creditsMap[featuredArtist].shuffle.take(nbSpritesDisplayed)
echoln featuredSprites_files
featuredSprites = []
for sprite_name in featuredSprites_files
featuredSprites << pif_sprite_from_spritename(sprite_name)
end
echoln featuredSprites
pbSet(saveArtistNameInVariable, File.basename(featuredArtist, '#*'))
pbSet(saveSpritesInVariable, featuredSprites)
pbSet(saveAllArtistSpritesInVariable, creditsMap[featuredArtist])
return featuredSprites
end
return nil
end
FLAGS_PATH = "Graphics/Pictures/Trainer Card/backgrounds/flags/"
def select_daily_team_flags()
eligible_flags = []
all_flags = Dir.entries(FLAGS_PATH)
.select { |file| file.end_with?('_FLAG.png') }
.map { |file| file.sub('_FLAG.png', '') }
for flag in all_flags
if GameData::Species.get(flag.to_sym)
eligible_flags << flag
end
end
selectedFlags = eligible_flags.sample(4)
echoln selectedFlags
pbSet(VAR_GALLERY_TEAM_FLAGS, selectedFlags)
end
def displayTeamFlag(frame)
selected_flags = pbGet(VAR_GALLERY_TEAM_FLAGS)
flag_image_id = 10
frame_image_id = 9
flag = selected_flags[frame]
species = GameData::Species.get(flag.to_sym)
flag_path = "Trainer Card/backgrounds/flags/#{flag}_FLAG"
x_position = 150
y_position = 50
$game_screen.pictures[flag_image_id].show(flag_path, 0, x_position, y_position, 50, 50)
$game_screen.pictures[frame_image_id].show("teamFlagFrame", 0, x_position, y_position, 50, 50)
name = species.real_name
pbMessage("\"Team #{name} Flag\"")
display_team_flag_statistics(species)
# species_sprites = list_all_sprite_credits_for_pokemon(species)
# unique_sprites = species_sprites.reject { |sprite_name, _| sprite_name.match(/[a-zA-Z]$/) }
# percent = (unique_sprites.keys.length.to_f / (NB_POKEMON * 2)) * 100
# pbMessage("Team #{name} completion: \\C[1]#{sprintf('%.2f', percent)}%")
#
# top_contributors = get_top_contributors_for_pokemon(species_sprites, 5)
# echoln top_contributors
#
#
# contributors_string = ""
# top_contributors.keys.each_with_index do |spriter, index|
# contributors_string += "\\C[1]#{spriter}\\C[0]"
# contributors_string += " (#{top_contributors[spriter]} sprites)"
# contributors_string += "<br>" unless index == top_contributors.length - 1
# end
# pbMessage("Top contributors:<br>#{contributors_string}")
flag_id = "flags/#{species.id.to_s}_FLAG"
flag_name = "Team #{species.real_name}"
prompt_flag_purchase(flag_id, flag_name, 5000)
$game_screen.pictures[flag_image_id].erase
$game_screen.pictures[frame_image_id].erase
end
def display_specific_pokemon_statistics()
species_id = select_any_pokemon()
return if !species_id
species = GameData::Species.get(species_id)
species_sprites = list_all_sprite_credits_for_pokemon(species)
unique_sprites = filter_unique_sprites_nb_for_pokemon(species_sprites)
percent = (unique_sprites.length.to_f / (NB_POKEMON * 2)) * 100
pbMessage "#{species.real_name} completion: \\C[1]#{sprintf('%.2f', percent)}%\\C[0]"
contributors_string = ""
top_contributors = get_top_contributors_for_pokemon(species_sprites, 5)
top_contributors.keys.each_with_index do |spriter, index|
contributors_string += "\\C[1]#{spriter}\\C[0]"
contributors_string += " (#{top_contributors[spriter]} sprites)"
contributors_string += "<br>" unless index == top_contributors.length - 1
end
pbMessage("#{species.real_name} top contributors:<br>#{contributors_string}")
end
def display_team_flag_statistics(species)
evolution_line = species.get_related_species
flag_pokemon_name = species.name
echoln evolution_line
if evolution_line.length > 1
pbMessage("This flag stands as a tribute to the artists who have devoted their talents to portraying \\C[1]#{flag_pokemon_name}\\C[0] and its evolution line in all its forms.")
else
pbMessage("This flag stands as a tribute to the artists who have devoted their talents to portraying \\C[1]#{flag_pokemon_name}\\C[0] in all its forms.")
end
all_sprites = []
family_unique_sprites_nb = []
for pokemon_id in evolution_line
species = GameData::Species.get(pokemon_id)
species_sprites = list_all_sprite_credits_for_pokemon(species)
unique_sprites = filter_unique_sprites_nb_for_pokemon(species_sprites)
all_sprites << species_sprites
unique_sprites_nb = unique_sprites.length.to_f
family_unique_sprites_nb << unique_sprites_nb
percent = (unique_sprites.length.to_f / (NB_POKEMON * 2)) * 100
pbMessage "#{species.real_name} completion: \\C[1]#{sprintf('%.2f', percent)}%\\C[0]" if evolution_line.length > 1
end
overall_total = 0
family_unique_sprites_nb.each { |nb|
overall_total += nb
}
overall_percent = (overall_total / ((NB_POKEMON * 2)*family_unique_sprites_nb.length))*100
pbMessage "Team #{flag_pokemon_name} overall completion: \\C[3]#{sprintf('%.2f', overall_percent)}%\\C[0]"
family_line_sprites = {}
for pokemon_sprites in all_sprites
family_line_sprites = family_line_sprites.merge(pokemon_sprites)
end
contributors_string = ""
top_contributors = get_top_contributors_for_pokemon(family_line_sprites, 5)
top_contributors.keys.each_with_index do |spriter, index|
contributors_string += "\\C[1]#{spriter}\\C[0]"
contributors_string += " (#{top_contributors[spriter]} sprites)"
contributors_string += "<br>" unless index == top_contributors.length - 1
end
pbMessage("Team #{flag_pokemon_name} top contributors:<br>#{contributors_string}")
end
def filter_unique_sprites_nb_for_pokemon(species_sprites)
unique_sprites = species_sprites.reject { |sprite_name, _| sprite_name.match(/[a-zA-Z]$/) }
return unique_sprites
end
def display_special_banner()
flag_id = "500000"
flag_name = "Team 500,000"
price = 10000
banner_title = "Half-million Milestone Banner"
flag_path = "Trainer Card/backgrounds/#{flag_id}"
flag_image_id = 10
frame_image_id = 9
x_position = 150
y_position = 50
$game_screen.pictures[flag_image_id].show(flag_path, 0, x_position, y_position, 50, 50)
$game_screen.pictures[frame_image_id].show("teamFlagFrame", 0, x_position, y_position, 50, 50)
pbMessage("\"#{banner_title}\"")
pbMessage("A banner honoring the 500,000 members of the community who have come together to inspire countless others.")
pbWait(10)
percent = get_total_completion_percent()
pbMessage("All Pokémon completion: \\C[1]#{sprintf('%.2f', percent)}%")
prompt_flag_purchase(flag_id, flag_name, price)
$game_screen.pictures[flag_image_id].erase
$game_screen.pictures[frame_image_id].erase
end
def prompt_flag_purchase(flag_id, flag_name, price)
$Trainer.unlocked_card_backgrounds = [] if ! $Trainer.unlocked_card_backgrounds
if !$Trainer.unlocked_card_backgrounds.include?(flag_id) && $Trainer.money >= price
pbWait(20)
if pbConfirmMessage("\\GWould you to purchase the \\C[1]#{flag_name}\\C[0] flag as a background for your \\C[1]Trainer Card\\C[0] for $#{price}?")
pbSEPlay("Mart buy item")
$Trainer.money -= price
unlock_card_background(flag_id)
pbMessage("\\GYou purchased the \\C[1]#{flag_name}\\C[0] Trainer Card background!")
if pbConfirmMessage("Swap your current Trainer Card for the newly purchased one?")
pbSEPlay("GUI trainer card open")
$Trainer.card_background = flag_id
else
pbMessage("You can swap the background at anytime when viewing your Trainer Card.")
end
end
end
end
def get_total_completion_percent()
customSpritesList = $game_temp.custom_sprites_list.keys
total_nb_pokemon = (NB_POKEMON * NB_POKEMON) + NB_POKEMON
sprited_pokemon = customSpritesList.length
return (sprited_pokemon.to_f / total_nb_pokemon) * 100
end
def get_top_contributors_for_pokemon(species_sprites, top_x)
frequency = Hash.new(0)
species_sprites.values.each { |str| frequency[str] += 1 }
frequency.sort_by { |_, count| -count }.first(top_x).to_h
end
def list_all_sprite_credits_for_pokemon(species)
dex_num = species.id_number
sprites = {}
filename = Settings::CREDITS_FILE_PATH
File.readlines(filename).each do |line|
split_line = line.strip.split(',')
sprite = split_line[0]
match = sprite.match(/(\d+)\.(\d+)/)
next unless match # Skip if no match is found
head_id = match[1].to_i
tail_id = match[2].to_i
artist = split_line[1]
sprites[sprite] = artist if head_id == dex_num || tail_id == dex_num
end
return sprites
end
def displayGalleryFrame(frame)
frame_image_id = 10
bg_image_id = 9
pif_sprite = pbGet(VAR_GALLERY_FEATURED_SPRITES)[frame]
if !pif_sprite.is_a?(PIFSprite)
pbMessage("The frame is empty...")
return
end
species = getPokemonSpeciesFromPifSprite(pif_sprite)
$game_screen.pictures[frame_image_id].show("pictureFrame_bg", 0, 0, 0)
$game_screen.pictures[bg_image_id].show("pictureFrame", 0, 0, 0)
name = species.real_name
author = pbGet(259)
message = "\"#{name}\"\nBy #{author}"
displaySpriteWindowWithMessage(pif_sprite, message, 90, -10, 201)
$game_screen.pictures[frame_image_id].erase
$game_screen.pictures[bg_image_id].erase
end
def format_artist_name(full_name)
return File.basename(full_name, '#*')
end
def getRandomSpriteArtist(creditsMap = nil, minimumNumberOfSprites = 10, giveUpAfterX = 50)
creditsMap = map_sprites_by_artist if !creditsMap
i = 0
while i < giveUpAfterX
artist = creditsMap.keys.sample
return artist if creditsMap[artist].length >= minimumNumberOfSprites
end
return nil
end
def getSpriteCredits(spriteName)
File.foreach(Settings::CREDITS_FILE_PATH) do |line|
row = line.split(',')
if row[0] == (spriteName)
return row[1]
end
end
return nil
end
def formatList(list, separator)
formatted = ""
i = 0
for element in list
formatted << element
formatted << separator if i < list.length
i += 1
end
end
def format_names_for_game_credits()
spriters_map = get_top_artists(100)
formatted = ""
i = 1
for spriter in spriters_map.keys
formatted << spriter
if i % 2 == 0
formatted << "\n"
else
formatted << "<s>"
end
i += 1
end
return formatted
end
def get_spritename_from_path(file_path, includeExtension = false)
filename_with_extension = File.basename(file_path)
filename_without_extension = File.basename(filename_with_extension, ".*")
return filename_with_extension if includeExtension
return filename_without_extension
end
def getSpriterCreditForDexNumber(species_sym)
#download sprite to make sure it's in the substitutions map
body_id = getBodyID(species_sym)
head_id = getHeadID(species_sym, body_id)
spritename = "#{head_id}.#{body_id}"
return getSpriteCredits(spritename)
end
#
# def getSpriterCreditForPokemon(species_sym)
# p species_sym
# #download sprite to make sure it's in the substitutions map
# head_id = get_head_id_from_symbol(species_sym)
# body_id = get_body_id_from_symbol(species_sym)
#
# echoln head_id
# echoln body_id
# spritename = get_fusion_sprite_path(head_id,body_id)
# p spritename
# p getSpriteCredits(spritename)
# return getSpriteCredits(spritename)
# end

View File

@@ -0,0 +1,18 @@
def fill_flags_room()
#read info from json,
#
# line ID
# frameType
# image
end
#x_pos, y_pos will be taken from an predefined map
def build_flag_event(flag_id,frame_type,x_pos,y_pos)
rpgEvent = RPG::Event.new(x_pos,y_pos)
gameEvent = Game_Event.new($game_map.map_id, rpgEvent, $game_map)
end

View File

@@ -0,0 +1,34 @@
class PokemonTemp
attr_accessor :tempEvents
attr_accessor :silhouetteDirection
def tempEvents
@tempEvents = {} if !@tempEvents
return @tempEvents
end
def pbClearTempEvents()
@tempEvents.keys.each {|map_id|
map = $MapFactory.getMap(map_id)
@tempEvents[map_id].each { |event|
map.events[event.id].erase if map.events[event.id]
}
}
@tempEvents={}
@silhouetteDirection=nil
end
def addTempEvent(map,event)
@tempEvents = {} if !@tempEvents
mapEvents = @tempEvents.has_key?(map) ? @tempEvents[map] : []
mapEvents.push(event)
@tempEvents[map] = mapEvents
end
end

View File

@@ -0,0 +1,196 @@
#Purchasable from pokemart.
CARD_BACKGROUND_DEFAULT_PURCHASABLE = [
"BLUE",
"PLAIN_BLUE",
"GREEN",
"PLAIN_GREEN",
"RED",
"PURPLE",
"BLACK",
"BRONZE",
"SILVER",
"GOLD",
]
#Purchasable, but not from pokemart.
# a special npc somewhere.
CARD_BACKGROUND_CITY_EXCLUSIVES = {
"GRAYPOLY" => :PEWTER,
"EEVEELUTION" => :CELADON,
"GALAXYMAIL" => :SAFFRON,
"HEARTMAIL" => :CERULEAN,
"PIKACHU" => :VERMILLION,
"RAINBOWMAIL" => :CELADON,
}
#purchasable from pokemart after unlocking a
# certain switch
#flag => switch to unlock
CARD_BACKGROUND_UNLOCKABLES = {
"BLASTOISE" => SWITCH_BEAT_THE_LEAGUE,
"CHARIZARD" => SWITCH_BEAT_THE_LEAGUE,
"VENUSAUR" => SWITCH_BEAT_THE_LEAGUE,
"GROUDON" => SWITCH_HOENN_HAIR_COLLECTION,
"KYOGRE" => SWITCH_HOENN_HAIR_COLLECTION,
"RAYQUAZA" => SWITCH_HOENN_HAIR_COLLECTION,
"RESHIRAM" => SWITCH_UNOVA_HAIR_COLLECTION,
"ZEKROM" => SWITCH_UNOVA_HAIR_COLLECTION,
"BOULDERBADGE" => SWITCH_GOT_BADGE_1,
"CASCADEBADGE" => SWITCH_GOT_BADGE_2,
"THUNDERBADGE" => SWITCH_GOT_BADGE_3,
"RAINBOWBADGE" => SWITCH_GOT_BADGE_4,
"SOULBADGE" => SWITCH_GOT_BADGE_5,
"MARSHBADGE" => SWITCH_GOT_BADGE_6,
"VOLCANOBADGE" => SWITCH_GOT_BADGE_7,
"EARTHBADGE" => SWITCH_GOT_BADGE_8,
"PLAINBADGE" => SWITCH_GOT_BADGE_9,
"HIVEBADGE" => SWITCH_GOT_BADGE_10,
"ZEPHYRBADGE" => SWITCH_GOT_BADGE_11,
"RISINGBADGE" => SWITCH_GOT_BADGE_12,
"FOGBADGE" => SWITCH_GOT_BADGE_13,
"GLACIERBADGE" => SWITCH_GOT_BADGE_14,
"STORMBADGE" => SWITCH_GOT_BADGE_15,
"MINERALBADGE" => SWITCH_GOT_BADGE_16,
}
def unlock_card_background(id)
$Trainer.unlocked_card_backgrounds = [] if !$Trainer.unlocked_card_backgrounds
$Trainer.unlocked_card_backgrounds << id
end
def getDisplayedName(card_id)
return card_id.downcase.gsub('_', ' ').gsub('flags/', 'Team ').split.map(&:capitalize).join(' ')
end
def purchaseCardBackground(price = 1000)
$Trainer.unlocked_card_backgrounds = [] if ! $Trainer.unlocked_card_backgrounds
purchasable_cards = []
current_city = pbGet(VAR_CURRENT_MART)
current_city = :PEWTER if !current_city.is_a?(Symbol)
for card in CARD_BACKGROUND_DEFAULT_PURCHASABLE
purchasable_cards << card if !$Trainer.unlocked_card_backgrounds.include?(card)
end
for card in CARD_BACKGROUND_UNLOCKABLES.keys
purchasable_cards << card if $game_switches[CARD_BACKGROUND_UNLOCKABLES[card]] && !$Trainer.unlocked_card_backgrounds.include?(card)
end
for card in CARD_BACKGROUND_CITY_EXCLUSIVES.keys
purchasable_cards << card if current_city == CARD_BACKGROUND_CITY_EXCLUSIVES[card]
end
if purchasable_cards.length <= 0
pbMessage("There are no more Trainer Card backgrounds available for purchase!")
return
end
commands = []
index = 0
for card in purchasable_cards
index += 1
name = getDisplayedName(card)
commands.push([index, name, card])
end
pbMessage("\\GWhich background would you like to purchase?")
chosen = pbListScreen("Trainer card", TrainerCardBackgroundLister.new(purchasable_cards))
echoln chosen
if chosen != nil
name = getDisplayedName(chosen)
if pbConfirmMessage("\\GPurchase the \\C[1]#{name} Trainer Card background\\C[0] for $#{price.to_s}?")
if $Trainer.money < price
pbSEPlay("GUI sel buzzer", 80)
pbMessage("\\G\\C[2]Insufficient funds")
return false
end
pbSEPlay("Mart buy item")
$Trainer.money -= price
unlock_card_background(chosen)
pbSEPlay("Item get")
pbMessage("\\GYou purchased the #{name} Trainer Card background!")
if pbConfirmMessage("Would you like to swap your current Trainer Card for the newly purchased one?")
pbSEPlay("GUI trainer card open")
$Trainer.card_background = chosen
else
pbMessage("You can swap the background at anytime when viewing your Trainer Card.")
end
echoln $Trainer.unlocked_card_backgrounds
return true
end
else
pbSEPlay("computerclose")
end
end
class TrainerCardBackgroundLister
BASE_TRAINER_CARD_PATH = "Graphics/Pictures/Trainer Card/backgrounds"
def initialize(cardsList)
@sprite = SpriteWrapper.new
@sprite.bitmap = nil
@sprite.x = 250
@sprite.y = 100
@sprite.z = -2
@sprite.zoom_x = 0.5
@sprite.zoom_y = 0.5
@frame = SpriteWrapper.new
@frame.bitmap = AnimatedBitmap.new("Graphics/Pictures/Trainer Card/overlay").bitmap
@frame.x = 250
@frame.y = 100
@frame.z = -2
@frame.zoom_x = 0.5
@frame.zoom_y = 0.5
@commands = []
@cardsList = cardsList
@index = 0
end
def dispose
@sprite.bitmap.dispose if @sprite.bitmap
@sprite.dispose
@frame.bitmap.dispose if @sprite.bitmap
@frame.dispose
end
def setViewport(viewport)
@sprite.viewport = viewport
@frame.viewport = viewport
end
def startIndex
return @index
end
def commands
@commands.clear
for i in 0...@cardsList.length
card_id = @cardsList[i]
card_name = getDisplayedName(@cardsList[i])
@commands.push(card_name)
end
@commands << "Cancel"
return @commands
end
def value(index)
return nil if index < 0
return nil if index == @commands.length
return @cardsList[index]
end
def refresh(index)
return if index >= @cardsList.length
return if index < 0
@sprite.bitmap.dispose if @sprite.bitmap
card_id = @cardsList[index]
trainer_card_path = "#{BASE_TRAINER_CARD_PATH}/#{card_id}"
echoln index
echoln @cardsList.length
@sprite.bitmap = AnimatedBitmap.new(trainer_card_path).bitmap
#sprite.ox = @sprite.bitmap.width/2 if @sprite.bitmap
#@sprite.oy = @sprite.bitmap.height/2 if @sprite
end
end

View File

@@ -0,0 +1,36 @@
def pick_trainer_sprite(spriter_name)
possible_types = "abcd"
trainer_type_index = select_number_from_seed(spriter_name,0,3)
path = _INTL("Graphics/Trainers/trainer116{1}",possible_types[trainer_type_index].to_s)
return path
end
def select_number_from_seed(seed, min_value, max_value)
hash = 137
seed.each_byte do |byte|
hash = ((hash << 5) + hash) + byte
end
srand(hash)
selected_number = rand(min_value..max_value)
selected_number
end
def pick_spriter_losing_dialog(spriter_name)
possible_dialogs = [
"Oh... I lost...",
"I did my best!",
"You're too strong!",
"You win!",
"What a fight!",
"That was fun!",
"Ohh, that's too bad",
"I should've sprited some stronger Pokémon!",
"So much for that!",
"Should've seen that coming!",
"I can't believe it!",
"What a surprise!"
]
index = select_number_from_seed(spriter_name,0,possible_dialogs.size-1)
return possible_dialogs[index]
end

View File

@@ -0,0 +1,295 @@
#
#
#
class RematchTrainer
attr_reader :id
attr_reader :nbTimesRematched
def initialize(id)
@id = id
@nbTimesRematched = 0
end
def incrementNbTimes()
@nbTimesRematched += 1
end
def removeNbTimes()
@nbTimesRematched -= 1
end
end
#Methods called from elsewhere in the code
#
# called from pbEndOfBattle
#
def incrNbRematches(trainerId)
$PokemonGlobal.rematchedTrainers.each do |key, trainer|
if (trainer.id == trainerId)
trainer.incrementNbTimes()
end
end
end
# called from Trainer.to_trainer
def getNumberRematch(trainerId)
if $PokemonGlobal.rematchedTrainers == nil
$PokemonGlobal.rematchedTrainers = Hash.new
addNewTrainerRematch(trainerId)
end
trainer = $PokemonGlobal.rematchedTrainers[trainerId.to_sym]
if trainer == nil
addNewTrainerRematch(trainerId)
return 0
end
return (trainer.nbTimesRematched)
end
#
#
#
# #garder un list de cette classe en mem. globale
#
# #quand lance un combat: check si le switch pour rematch est actif.
# #si oui, check dans l'array globale si on trouve le trainer id.
# #si oui on maj, si non on l'ajoute
#
# #overload la classe qui lance les combats et ajuste les niveaux
# #selon le nb. de fois rematched
#
#
# # levelCap = originalLevel + (nbBadges*2) +2
#
# # on incremente le level a chaque x (jusqu'au levelcap)
# # nb = (level/10).ceil
#
#
def addNewTrainerRematch(trainerId)
#$PokemonGlobal.rematchedTrainers[:trainerId]
newTrainer = RematchTrainer.new(trainerId)
$PokemonGlobal.rematchedTrainers[trainerId.to_sym] = newTrainer
end
def getNumberRematchOld(trainerId)
if $PokemonGlobal.rematchedTrainers == nil
$PokemonGlobal.rematchedTrainers = Hash.new
addNewTrainerRematch(trainerId)
end
$PokemonGlobal.rematchedTrainers.each do |key, trainer|
if (trainer.id == trainerId)
return (trainer.nbTimesRematched)
end
end
addNewTrainerRematch(trainerId)
return 0
end
def getRematchLevel(originalLevel, nbRematch)
levelCap = getLevelCap(originalLevel, $Trainer.numbadges)
expRate = getLevelRate(originalLevel)
levelIncr = 0
for i in 0..nbRematch
if i % expRate == 0
levelIncr += 1
end
end
newLevel = originalLevel + levelIncr
#printDebugRematchInfo(nbRematch,expRate,newLevel,levelCap,originalLevel)
return (newLevel < levelCap) ? newLevel : levelCap
end
def getLevelRate(originalLevel)
return 2 + (originalLevel / 20).ceil
end
def getLevelCap(originalLevel, nbBadges)
return 100 if $game_switches[599] #no cap in battle arena
cap = originalLevel + nbBadges + 2
return cap < 100 ? cap : 100
end
def decreaseRematchNumber(trainerId)
$PokemonGlobal.rematchedTrainers.each do |key, trainer|
if (trainer.id == trainerId)
trainer.removeNbTimes()
return
end
end
end
# def evolveRematchPokemon(nbRematch, speciesSymbol)
# species = getDexNumberForSpecies(speciesSymbol)
# if (nbRematch >= 10 && $Trainer.numbadges >= 3)
# evospecies = getEvolution(species)
# return species if evospecies == -1
# if (nbRematch >= 20 && $Trainer.numbadges >= 8)
# secondEvoSpecies = getEvolution(evospecies)
# return secondEvoSpecies == -1 ? evospecies : secondEvoSpecies
# end
# return evospecies
# end
# return species
# end
def evolveRematchPokemon(nbRematch, speciesSymbol)
species = getDexNumberForSpecies(speciesSymbol)
if (nbRematch >= 30 && $Trainer.numbadges >= 6)
species = getEvolution(species,:HEAD)
species = getEvolution(species,:BODY)
species = getEvolution(species,:HEAD)
species = getEvolution(species,:BODY)
elsif (nbRematch >= 20 && $Trainer.numbadges >= 3)
species = getEvolution(species,:HEAD)
species = getEvolution(species,:BODY)
species = getEvolution(species,:HEAD)
elsif (nbRematch >= 10 && $Trainer.numbadges >= 3)
species = getEvolution(species,:HEAD)
species = getEvolution(species,:BODY)
elsif (nbRematch >= 5)
species = getEvolution(species,:HEAD)
end
return species
end
def getEvolution(speciesParam, halfToEvolve=nil)
species = dexNum(speciesParam)
begin
prioritizeHead = halfToEvolve == :HEAD
prioritizeBody = halfToEvolve == :BODY
if species >= Settings::NB_POKEMON
body = getBasePokemonID(species)
head = getBasePokemonID(species, false)
bodyPossibleEvolutions = GameData::Species.get(body).get_evolutions(true)
headPossibleEvolutions = GameData::Species.get(head).get_evolutions(true)
bodyCanEvolve = !bodyPossibleEvolutions.empty?
headCanEvolve = !headPossibleEvolutions.empty?
evoBodySpecies = bodyCanEvolve ? bodyPossibleEvolutions[rand(bodyPossibleEvolutions.length - 1)][0] : nil
evoHeadSpecies = headCanEvolve ? headPossibleEvolutions[rand(headPossibleEvolutions.length - 1)][0] : nil
if evoBodySpecies != nil
evoBody = getDexNumberForSpecies(evoBodySpecies)
end
if evoHeadSpecies != nil
evoHead = getDexNumberForSpecies(evoHeadSpecies)
end
return species if evoBody == nil && evoHead == nil
if prioritizeBody
if evoBody == nil
return body * Settings::NB_POKEMON + evoHead #only head evolves
else
return evoBody * Settings::NB_POKEMON + head #only body evolves
end
end
if prioritizeHead
if evoHead == nil
return evoBody * Settings::NB_POKEMON + head #only body evolves
else
return body * Settings::NB_POKEMON + evoHead #only head evolves
end
end
return body * Settings::NB_POKEMON + evoHead if evoBody == nil #only head evolves
return evoBody * Settings::NB_POKEMON + head if evoHead == nil #only body evolves
return evoBody * Settings::NB_POKEMON + evoHead #both evolve
else
evo = pbGetEvolvedFormData(species)
newSpecies = evo[rand(evo.length - 1)][0]
return evo.any? ? getDexNumberForSpecies(newSpecies) : species
end
rescue
return species
end
end
def getFusionSpeciesSymbol(body, head)
body_num = dexNum(body)
head_num = dexNum(head)
nb_pokemon = Settings::NB_POKEMON
id = body_num * nb_pokemon + head_num
if id > (nb_pokemon*nb_pokemon)+nb_pokemon
displayRandomizerErrorMessage()
return body
end
return GameData::Species.get(id).species
end
#
def evolveHead(species)
species_id = getDexNumberForSpecies(species)
if species_id <= Settings::NB_POKEMON
evo = getEvolution(species_id)
return evo == -1 ? species_id : evo
end
head = getBasePokemonID(species_id, false)
body = getBasePokemonID(species_id)
headEvo = getEvolution(head)
return headEvo == -1 ? species_id : getFusionSpeciesSymbol(body, headEvo)
end
def evolveBody(species)
species_id = getDexNumberForSpecies(species)
if species_id <= Settings::NB_POKEMON
evo = getEvolution(species_id)
return evo == -1 ? species_id : evo
end
head = getBasePokemonID(species_id, false)
body = getBasePokemonID(species_id)
bodyEvo = getEvolution(body)
return bodyEvo == -1 ? species_id : getFusionSpeciesSymbol(bodyEvo, head)
end
def getCorrectEvolvedSpecies(pokemon)
if pokemon.species >= Settings::NB_POKEMON
body = getBasePokemonID(pokemon.species)
head = getBasePokemonID(pokemon.species, false)
ret1 = -1; ret2 = -1
for form in pbGetEvolvedFormData(body)
retB = yield pokemon, form[0], form[1], form[2]
break if retB > 0
end
for form in pbGetEvolvedFormData(head)
retH = yield pokemon, form[0], form[1], form[2]
break if retH > 0
end
return ret if ret == retB && ret == retH
return fixEvolutionOverflow(retB, retH, pokemon.species)
else
for form in pbGetEvolvedFormData(pokemon.species)
newspecies = form[2]
end
return newspecies;
end
end
def printDebugRematchInfo(nbRematch, expRate, newLevel, levelCap, originalLevel)
info = ""
info << "total rematched trainers: " + $PokemonGlobal.rematchedTrainers.length.to_s + "\n"
info << "nb times: " + nbRematch.to_s + "\n"
info << "lvl up every " + expRate.to_s + " times" + "\n"
info << "original level: " << originalLevel.to_s + "\n"
info << "new level: " + newLevel.to_s + "\n"
info << "level cap: " + levelCap.to_s
print info
end
#
#
#
# class PokeBattle_Trainer
# attr_accessor(:name)
# def name()
# return @name
# end
# end

View File

@@ -0,0 +1,90 @@
class TripleFusion < Pokemon
attr_reader :species1
attr_reader :species2
attr_reader :species3
def initialize(species1, species2,species3, level, owner = $Trainer, withMoves = true, recheck_form = true)
@species1=species1
@species2=species2
@species3=species3
@species1_data = GameData::Species.get(@species1)
@species2_data = GameData::Species.get(@species2)
@species3_data = GameData::Species.get(@species3)
@species_name = generate_triple_fusion_name()
super(:ZAPMOLTICUNO,level,owner,withMoves,recheck_form)
end
def types
return [@species1_data.type1, @species2_data.type1,@species3_data.type1]
end
def baseStats
ret = {}
GameData::Stat.each_main do |s|
stat1 = @species1_data.base_stats[s.id]
stat2 = @species2_data.base_stats[s.id]
stat3 = @species3_data.base_stats[s.id]
ret[s.id] = (stat1 + stat2 + stat3) / 3
end
return ret
end
def name
return (nicknamed?) ? @name : @species_name
end
def speciesName
return @species_name
end
def generate_triple_fusion_name()
part1 = split_string_with_syllables(@species1_data.name)[0]
part2 = split_string_with_syllables(@species2_data.name)[1]
part3 = split_string_with_syllables(@species3_data.name)[2]
return _INTL("{1}{2}{3}",part1,part2,part3).capitalize!
end
def split_string_with_syllables(name)
syllable_pattern = /[bcdfghjklmnpqrstvwxyz]*[aeiou]+[bcdfghjklmnpqrstvwxyz]*/
syllables = name.downcase.scan(syllable_pattern)
first_syllable= syllables.first
last_syllable = syllables.last
if syllables.length > 1
middle_syllable = syllables[1]
else
middle_syllable = first_syllable.downcase
end
last_syllable.nil? ? first_syllable : last_syllable
return [first_syllable,middle_syllable,last_syllable]
end
def ability_id
if !@ability
abil_index = ability_index
if !@ability # Natural ability or no hidden ability defined
chosen_poke_for_ability= rand(1..3)
if chosen_poke_for_ability == 1
@ability = @species1_data.abilities[abil_index] || @species1_data.abilities[0]
elsif chosen_poke_for_ability == 2
@ability = @species2_data.abilities[abil_index] || @species2_data.abilities[0]
else
@ability = @species3_data.abilities[abil_index] || @species3_data.abilities[0]
end
end
end
return @ability
end
end

View File

@@ -0,0 +1,377 @@
class PokemonPokedexInfo_Scene
#todo add indicator to show which one is the main sprite -
# also maybe add an indicator in main list for when a sprite has available alts
Y_POSITION_SMALL = 40 #90
Y_POSITION_BIG = 60
X_POSITION_PREVIOUS = -30 #20
X_POSITION_SELECTED = 105
X_POSITION_NEXT = 340 #380
Y_POSITION_BG_SMALL = 70
Y_POSITION_BG_BIG = 93
X_POSITION_BG_PREVIOUS = -1
X_POSITION_BG_SELECTED = 145
X_POSITION_BG_NEXT = 363
def drawPageForms()
#@selected_index=0
@sprites["background"].setBitmap(_INTL("Graphics/Pictures/Pokedex/bg_forms"))
overlay = @sprites["overlay"].bitmap
base = Color.new(88, 88, 80)
shadow = Color.new(168, 184, 184)
#alts_list= pbGetAvailableAlts
@selected_index = 0 if !@selected_index
update_displayed
end
def init_selected_bg
@sprites["bgSelected_previous"] = IconSprite.new(0, 0, @viewport)
@sprites["bgSelected_previous"].x = X_POSITION_BG_PREVIOUS
@sprites["bgSelected_previous"].y = Y_POSITION_BG_SMALL
@sprites["bgSelected_previous"].setBitmap(_INTL("Graphics/Pictures/Pokedex/bg_forms_selected_small"))
@sprites["bgSelected_previous"].visible = false
@sprites["bgSelected_center"] = IconSprite.new(0, 0, @viewport)
@sprites["bgSelected_center"].x = X_POSITION_BG_SELECTED
@sprites["bgSelected_center"].y = Y_POSITION_BG_BIG
@sprites["bgSelected_center"].setBitmap(_INTL("Graphics/Pictures/Pokedex/bg_forms_selected_large"))
@sprites["bgSelected_center"].visible = false
@sprites["bgSelected_next"] = IconSprite.new(0, 0, @viewport)
@sprites["bgSelected_next"].x = X_POSITION_BG_NEXT
@sprites["bgSelected_next"].y = Y_POSITION_BG_SMALL
@sprites["bgSelected_next"].setBitmap(_INTL("Graphics/Pictures/Pokedex/bg_forms_selected_small"))
@sprites["bgSelected_next"].visible = false
@creditsOverlay = BitmapSprite.new(Graphics.width, Graphics.height, @viewport).bitmap
end
def initializeSpritesPage(altsList)
@forms_list = list_pokemon_forms()
@formIndex = 0
init_selected_bg
@speciesData = getSpecies(@species)
@selected_index = 0
set_displayed_to_current_alt(altsList)
@sprites["selectedSprite"] = IconSprite.new(0, 0, @viewport)
@sprites["selectedSprite"].x = X_POSITION_SELECTED
@sprites["selectedSprite"].y = Y_POSITION_BIG
@sprites["selectedSprite"].z = 999999
@sprites["selectedSprite"].visible = false
@sprites["selectedSprite"].zoom_x = 1
@sprites["selectedSprite"].zoom_y = 1
@sprites["previousSprite"] = IconSprite.new(0, 0, @viewport)
@sprites["previousSprite"].x = X_POSITION_PREVIOUS
@sprites["previousSprite"].y = Y_POSITION_SMALL
@sprites["previousSprite"].visible = false
@sprites["previousSprite"].zoom_x = Settings::FRONTSPRITE_SCALE #/2
@sprites["previousSprite"].zoom_y = Settings::FRONTSPRITE_SCALE #/2
@sprites["nextSprite"] = IconSprite.new(0, 0, @viewport)
@sprites["nextSprite"].x = X_POSITION_NEXT
@sprites["nextSprite"].y = Y_POSITION_SMALL
@sprites["nextSprite"].visible = false
@sprites["nextSprite"].zoom_x = Settings::FRONTSPRITE_SCALE #/2
@sprites["nextSprite"].zoom_y = Settings::FRONTSPRITE_SCALE #/2
@sprites["selectedSprite"].z = 9999999
@sprites["previousSprite"].z = 9999999
@sprites["nextSprite"].z = 9999999
@selected_pif_sprite = get_pif_sprite(@available[@selected_index])
@previous_pif_sprite = get_pif_sprite(@available[@selected_index - 1])
@next_pif_sprite = get_pif_sprite(@available[@selected_index + 1])
@sprites["selectedSprite"].bitmap = load_pif_sprite(@selected_pif_sprite)
if altsList.size >= 2
@sprites["nextSprite"].bitmap = load_pif_sprite(@next_pif_sprite)
@sprites["nextSprite"].visible = true
end
if altsList.size >= 3
animated_bitmap =
@sprites["previousSprite"].bitmap = load_pif_sprite(@previous_pif_sprite)
@sprites["previousSprite"].visible = true
end
end
def load_pif_sprite(pif_sprite)
animated_bitmap = @spritesLoader.load_pif_sprite_directly(pif_sprite)
return animated_bitmap.bitmap if animated_bitmap
return nil
end
def get_substitution_id(dex_number)
if isFusion(dex_number)
body_id = getBodyID(dex_number)
head_id = getHeadID(dex_number, body_id)
species_id = [head_id, body_id]
else
species_id = dex_number
end
return species_id
end
def set_displayed_to_current_alt(altsList)
dex_number = getDexNumberForSpecies(@species)
species_id = get_substitution_id(dex_number)
initialize_alt_sprite_substitutions()
return if !$PokemonGlobal.alt_sprite_substitutions[species_id]
current_sprite = $PokemonGlobal.alt_sprite_substitutions[species_id]
index = @selected_index
for alt in altsList
if alt == current_sprite.alt_letter
@selected_index = index
return
end
index += 1
end
end
def pbGetAvailableForms(species = nil)
chosen_species = species != nil ? species : @species
dex_num = getDexNumberForSpecies(chosen_species)
includeAutogens = isFusion(dex_num)
return PokedexUtils.new.pbGetAvailableAlts(chosen_species, includeAutogens)
end
def hide_all_selected_windows
@sprites["bgSelected_previous"].visible = false if @sprites["bgSelected_previous"]
@sprites["bgSelected_center"].visible = false if @sprites["bgSelected_center"]
@sprites["bgSelected_next"].visible = false if @sprites["bgSelected_next"]
end
def update_selected
hide_all_selected_windows
previous_index = @selected_index == 0 ? @available.size - 1 : @selected_index - 1
next_index = @selected_index == @available.size - 1 ? 0 : @selected_index + 1
get_pif_sprite(@available[@selected_index])
@sprites["bgSelected_previous"].visible = true if is_main_sprite(previous_index) && @available.size > 2
@sprites["bgSelected_center"].visible = true if is_main_sprite(@selected_index)
@sprites["bgSelected_next"].visible = true if is_main_sprite(next_index) && @available.size > 1
end
def get_pif_sprite(alt_letter)
dex_number = getDexNumberForSpecies(@species) #@species is a symbol when called from the summary screen and an int from the pokedex... Would be nice to refactor
if isFusion(dex_number)
body_id = getBodyID(dex_number)
head_id = getHeadID(dex_number, body_id)
#Autogen sprite
if alt_letter == "autogen"
pif_sprite = PIFSprite.new(:AUTOGEN, head_id, body_id)
#Imported custom sprite
else
#Spritesheet custom sprite
pif_sprite = PIFSprite.new(:CUSTOM, head_id, body_id, alt_letter)
end
else
pif_sprite = PIFSprite.new(:BASE, dex_number, nil, alt_letter)
end
#use local sprites instead if they exist
if alt_letter && isLocalSprite(alt_letter)
sprite_path = alt_letter.split("_", 2)[1]
pif_sprite.local_path = sprite_path
end
#pif_sprite.dump_info
return pif_sprite
end
def isLocalSprite(alt_letter)
return alt_letter.start_with?("local_")
end
def isBaseSpritePath(path)
filename = File.basename(path).downcase
return filename.match?(/\A\d+\.png\Z/)
end
def update_displayed
nextIndex = @selected_index + 1
previousIndex = @selected_index - 1
if nextIndex > @available.size - 1
nextIndex = 0
end
if previousIndex < 0
previousIndex = @available.size - 1
end
@selected_pif_sprite = get_pif_sprite(@available[@selected_index])
@previous_pif_sprite = get_pif_sprite(@available[previousIndex])
@next_pif_sprite = get_pif_sprite(@available[nextIndex])
@sprites["previousSprite"].bitmap = load_pif_sprite(@previous_pif_sprite) if previousIndex != nextIndex
@sprites["selectedSprite"].bitmap = load_pif_sprite(@selected_pif_sprite)
@sprites["nextSprite"].bitmap = load_pif_sprite(@next_pif_sprite)
#selected_bitmap = @sprites["selectedSprite"].getBitmap
# sprite_path = selected_bitmap.path
#isBaseSprite = isBaseSpritePath(@available[@selected_index])
is_generated = @selected_pif_sprite.type == :AUTOGEN
spritename = @selected_pif_sprite.to_filename()
showSpriteCredits(spritename, is_generated)
update_selected
end
def showSpriteCredits(filename, generated_sprite = false)
@creditsOverlay.dispose
spritename = File.basename(filename, '.*')
if !generated_sprite
discord_name = getSpriteCredits(spritename)
discord_name = "Unknown artist" if !discord_name
else
#todo give credits to Japeal - need to differenciate unfused sprites
discord_name = "" #"Japeal\n(Generated)"
end
discord_name = "Imported sprite" if @selected_pif_sprite.local_path
author_name = File.basename(discord_name, '#*')
x = Graphics.width / 2
label_base_color = Color.new(248, 248, 248)
label_shadow_color = Color.new(104, 104, 104)
@creditsOverlay = BitmapSprite.new(Graphics.width, Graphics.height, @viewport).bitmap
split_name = splitSpriteCredits(author_name, @creditsOverlay, @creditsOverlay.width - 20)
line_height = @creditsOverlay.text_size(author_name).height
textpos = split_name.each_with_index.map { |name, index|
y = (Graphics.height - 60) + (line_height * ((index + 1) - ((split_name.length.to_f + 1) / 2)))
[name, x, y, 2, label_base_color, label_shadow_color]
}
pbDrawTextPositions(@creditsOverlay, textpos)
end
def list_pokemon_forms
dexNum = dexNum(@species)
if dexNum > NB_POKEMON
body_id = getBodyID(dexNum)
else
if @species.is_a?(Symbol)
body_id = get_body_number_from_symbol(@species)
else
body_id = dexNum
end
end
forms_list = []
found_last_form = false
form_index = 0
while !found_last_form
form_index += 1
form_path = Settings::BATTLERS_FOLDER + body_id.to_s + "_" + form_index.to_s
if File.directory?(form_path)
forms_list << form_index
else
found_last_form = true
end
end
return forms_list
end
def pbChooseAlt(brief = false)
loop do
@sprites["rightarrow"].visible = true
@sprites["leftarrow"].visible = true
if @forms_list.length >= 1
@sprites["uparrow"].visible = true
@sprites["downarrow"].visible = true
end
multiple_forms = @forms_list.length > 0
Graphics.update
Input.update
pbUpdate
if Input.trigger?(Input::LEFT)
pbPlayCursorSE
@selected_index -= 1 #(index+@available.length-1)%@available.length
if @selected_index < 0
@selected_index = @available.size - 1
end
update_displayed
elsif Input.trigger?(Input::RIGHT)
pbPlayCursorSE
@selected_index += 1
if @selected_index > @available.size - 1
@selected_index = 0
end
update_displayed
elsif Input.trigger?(Input::BACK)
pbPlayCancelSE
break
elsif Input.trigger?(Input::USE)
pbPlayDecisionSE
if select_sprite(brief)
@endscene = true
break
end
end
end
@sprites["uparrow"].visible = false
@sprites["downarrow"].visible = false
end
def is_main_sprite(index = nil)
dex_number = getDexNumberForSpecies(@species)
if !index
index = @selected_index
end
species_id = get_substitution_id(dex_number)
current_pif_sprite = $PokemonGlobal.alt_sprite_substitutions[species_id]
selected_pif_sprite = get_pif_sprite(@available[index])
if current_pif_sprite
return current_pif_sprite.equals(selected_pif_sprite)
end
return false
end
def sprite_is_alt(sprite_path)
spritename = File.basename(sprite_path, '.*')
return spritename.match?(/[a-zA-Z]/)
end
def select_sprite(brief = false)
if @available.length > 1
if is_main_sprite()
if brief
pbMessage("This sprite will remain the displayed sprite")
return true
else
pbMessage("This sprite is already the displayed sprite")
end
else
message = 'Would you like to use this sprite instead of the current sprite?'
if pbConfirmMessage(_INTL(message))
swap_main_sprite()
return true
end
end
else
pbMessage("This is the only sprite available for this Pokémon!")
end
return false
end
def swap_main_sprite
species_number = dexNum(@species)
substitution_id = get_substitution_id(species_number)
$PokemonGlobal.alt_sprite_substitutions[substitution_id] = @selected_pif_sprite
end
end
class PokemonGlobalMetadata
attr_accessor :alt_sprite_substitutions
end

View File

@@ -0,0 +1,293 @@
# #===============================================================================
# # * Unreal Time System - by FL (Credits will be apreciated)
# #===============================================================================
# #
# # This script is for Pokémon Essentials. It makes the time in game uses its
# # own clock that only pass when you are in game instead of using real time
# # (like Minecraft and Zelda: Ocarina of Time).
# #
# #== INSTALLATION ===============================================================
# #
# # To this script works, put it above main OR convert into a plugin.
# #
# #== HOW TO USE =================================================================
# #
# # This script automatic works after installed.
# #
# # If you wish to add/reduce time, there are 3 ways:
# #
# # 1. EXTRA_SECONDS/EXTRA_DAYS are variables numbers that hold time passage;
# # The time in these variable isn't affected by PROPORTION.
# # Example: When the player sleeps you wish to the time in game advance
# # 8 hours, so put in EXTRA_SECONDS a game variable number and sum
# # 28800 (60*60*8) in this variable every time that the players sleeps.
# #
# # 2. 'UnrealTime.add_seconds(seconds)' and 'UnrealTime.add_days(days)' does the
# # same thing, in fact, EXTRA_SECONDS/EXTRA_DAYS call these methods.
# #
# # 3. 'UnrealTime.advance_to(16,17,18)' advance the time to a fixed time of day,
# # 16:17:18 on this example.
# #
# #== NOTES ======================================================================
# #
# # If you wish to some parts still use real time like the Trainer Card start time
# # and Pokémon Trainer Memo, just change 'pbGetTimeNow' to 'Time.now' in their
# # scripts.
# #
# # This script uses the Ruby Time class. Before Essentials version 19 (who came
# # with 64-bit ruby) it can only have 1901-2038 range.
# #
# # Some time methods:
# # 'pbGetTimeNow.year', 'pbGetTimeNow.mon' (the numbers from 1-12),
# # 'pbGetTimeNow.day','pbGetTimeNow.hour', 'pbGetTimeNow.min',
# # 'pbGetTimeNow.sec', 'pbGetAbbrevMonthName(pbGetTimeNow.mon)',
# # 'pbGetTimeNow.strftime("%A")' (displays weekday name),
# # 'pbGetTimeNow.strftime("%I:%M %p")' (displays Hours:Minutes pm/am)
# #
# #===============================================================================
#
# if defined?(PluginManager) && !PluginManager.installed?("Unreal Time System")
# PluginManager.register({
# :name => "Unreal Time System",
# :version => "1.1",
# :link => "https://www.pokecommunity.com/showthread.php?t=285831",
# :credits => "FL"
# })
# end
#
module UnrealTime
# Set false to disable this system (returns Time.now)
ENABLED = true
# Time proportion here.
# So if it is 100, one second in real time will be 100 seconds in game.
# If it is 60, one second in real time will be one minute in game.
PROPORTION = 60
# Starting on Essentials v17, the map tone only try to refresh tone each 30
# real time seconds.
# If this variable number isn't -1, the game use this number instead of 30.
# When time is changed with advance_to or add_seconds, the tone refreshes.
TONE_CHECK_INTERVAL = 10.0
# Make this true to time only pass at field (Scene_Map)
# A note to scripters: To make time pass on other scenes, put line
# '$PokemonGlobal.addNewFrameCount' near to line 'Graphics.update'
TIME_STOPS = true
# Make this true to time pass in battle, during turns and command selection.
# This won't affect the Pokémon and Bag submenus.
# Only works if TIME_STOPS=true.
BATTLE_PASS = true
# Make this true to time pass when the Dialog box or the main menu are open.
# This won't affect the submenus like Pokémon and Bag.
# Only works if TIME_STOPS=true.
TALK_PASS = true
# Choose switch number that when true the time won't pass (or -1 to cancel).
# Only works if TIME_STOPS=true.
SWITCH_STOPS = -1
# Choose variable(s) number(s) that can hold time passage (or -1 to cancel).
# Look at description for more details.
EXTRA_SECONDS = 79
EXTRA_DAYS = -1
WEEK_DAY_VARIABLE = 280
WEEK_DAYS = [:MONDAY,:TUESDAY,:WEDNESDAY,:THURSDAY,:FRIDAY,:SATURDAY,:SUNDAY]
# Initial date. In sequence: Year, month, day, hour and minutes.
# Method UnrealTime.reset resets time back to this time.
def self.initial_date
return Time.local(2000, 1, 1, 4, 0)
end
# Advance to next time. If time already passed, advance
# into the time on the next day.
# Hour is 0..23
def self.advance_to(hour, min = 0, sec = 0)
if hour < 0 || hour > 23
raise RangeError, "hour is #{hour}, should be 0..23"
end
day_seconds = 60 * 60 * 24
seconds_now = pbGetTimeNow.hour * 60 * 60 + pbGetTimeNow.min * 60 + pbGetTimeNow.sec
target_seconds = hour * 60 * 60 + min * 60 + sec
seconds_added = target_seconds - seconds_now
seconds_added += day_seconds if seconds_added < 0
$PokemonGlobal.newFrameCount += seconds_added
PBDayNight.sheduleToneRefresh
end
# Resets time to initial_date.
def self.reset
raise "Method doesn't work when TIME_STOPS is false!" if !TIME_STOPS
$game_variables[EXTRA_SECONDS] = 0 if EXTRA_DAYS > 0
$game_variables[EXTRA_DAYS] = 0 if EXTRA_DAYS > 0
$PokemonGlobal.newFrameCount = 0
$PokemonGlobal.extraYears = 0
PBDayNight.sheduleToneRefresh
end
# Does the same thing as EXTRA_SECONDS variable.
def self.add_seconds(seconds)
raise "Method doesn't work when TIME_STOPS is false!" if !TIME_STOPS
$PokemonGlobal.newFrameCount += (seconds * Graphics.frame_rate) / PROPORTION.to_f
PBDayNight.sheduleToneRefresh
end
def self.add_days(days)
add_seconds(60 * 60 * 24 * days)
end
NEED_32_BIT_FIX = [''].pack('p').size <= 4
end
# Essentials V18 and lower compatibility
module Settings
TIME_SHADING = defined?(ENABLESHADING) ? ENABLESHADING : ::TIME_SHADING
end if defined?(TIME_SHADING) || defined?(ENABLESHADING)
module PBDayNight
class << self
if method_defined?(:getTone) && UnrealTime::TONE_CHECK_INTERVAL > 0
def getTone
@cachedTone = Tone.new(0, 0, 0) if !@cachedTone
return @cachedTone if !Settings::TIME_SHADING
toneNeedUpdate = (!@dayNightToneLastUpdate ||
Graphics.frame_count - @dayNightToneLastUpdate >=
Graphics.frame_rate * UnrealTime::TONE_CHECK_INTERVAL
)
if toneNeedUpdate
getToneInternal
@dayNightToneLastUpdate = Graphics.frame_count
end
return @cachedTone
end
end
# Shedule a tone refresh on the next try (probably next frame)
def sheduleToneRefresh
@dayNightToneLastUpdate = nil
end
end
end
def getDayOfTheWeek()
day_of_week = (pbGetTimeNow.day % UnrealTime::WEEK_DAYS.length).to_i
return UnrealTime::WEEK_DAYS[day_of_week]
end
def isDayOfTheWeek(day)
return day == getDayOfTheWeek()
end
def pbGetTimeNow
return Time.now if !$PokemonGlobal || !UnrealTime::ENABLED
day_seconds = 60 * 60 * 24
if UnrealTime::TIME_STOPS
# Sum the extra values to newFrameCount
if UnrealTime::EXTRA_SECONDS > 0
UnrealTime.add_seconds(pbGet(UnrealTime::EXTRA_SECONDS))
$game_variables[UnrealTime::EXTRA_SECONDS] = 0
end
if UnrealTime::EXTRA_DAYS > 0
UnrealTime.add_seconds(day_seconds * pbGet(UnrealTime::EXTRA_DAYS))
$game_variables[UnrealTime::EXTRA_DAYS] = 0
end
elsif UnrealTime::EXTRA_SECONDS > 0 && UnrealTime::EXTRA_DAYS > 0
# Checks to regulate the max/min values at UnrealTime::EXTRA_SECONDS
while pbGet(UnrealTime::EXTRA_SECONDS) >= day_seconds
$game_variables[UnrealTime::EXTRA_SECONDS] -= day_seconds
$game_variables[UnrealTime::EXTRA_DAYS] += 1
end
while pbGet(UnrealTime::EXTRA_SECONDS) <= -day_seconds
$game_variables[UnrealTime::EXTRA_SECONDS] += day_seconds
$game_variables[UnrealTime::EXTRA_DAYS] -= 1
end
end
start_time = UnrealTime.initial_date
if UnrealTime::TIME_STOPS
time_played = $PokemonGlobal.newFrameCount
else
time_played = Graphics.frame_count
end
time_played = (time_played * UnrealTime::PROPORTION) / Graphics.frame_rate
time_jumped = 0
if UnrealTime::EXTRA_SECONDS > -1
time_jumped += pbGet(UnrealTime::EXTRA_SECONDS)
end
if UnrealTime::EXTRA_DAYS > -1
time_jumped += pbGet(UnrealTime::EXTRA_DAYS) * day_seconds
end
time_ret = 0
# Before Essentials V19, there is a year limit. To prevent crashes due to this
# limit, every time that you reach in year 2036 the system will subtract 6
# years (to works with leap year) from your date and sum in
# $PokemonGlobal.extraYears. You can sum your actual year with this extraYears
# when displaying years.
loop do
time_fix = 0
if $PokemonGlobal.extraYears != 0
time_fix = $PokemonGlobal.extraYears * day_seconds * (365 * 6 + 1) / 6
end
time_ret = start_time + (time_played + time_jumped - time_fix)
break if !UnrealTime::NEED_32_BIT_FIX || time_ret.year < 2036
$PokemonGlobal.extraYears += 6
end
return time_ret
end
if UnrealTime::ENABLED
class PokemonGlobalMetadata
attr_accessor :newFrameCount # Became float when using extra values
attr_accessor :extraYears
def addNewFrameCount
return if (UnrealTime::SWITCH_STOPS > 0 &&
$game_switches[UnrealTime::SWITCH_STOPS])
self.newFrameCount += 1
end
def newFrameCount
@newFrameCount = 0 if !@newFrameCount
return @newFrameCount
end
def extraYears
@extraYears = 0 if !@extraYears
return @extraYears
end
end
if UnrealTime::TIME_STOPS
class Scene_Map
alias :updateold :update
def update
$PokemonGlobal.addNewFrameCount
updateold
end
if UnrealTime::TALK_PASS
alias :miniupdateold :miniupdate
def miniupdate
$PokemonGlobal.addNewFrameCount
miniupdateold
end
end
end
if UnrealTime::BATTLE_PASS
class PokeBattle_Scene
alias :pbGraphicsUpdateold :pbGraphicsUpdate
def pbGraphicsUpdate
$PokemonGlobal.addNewFrameCount
pbGraphicsUpdateold
end
end
end
end
end

View File

@@ -0,0 +1,23 @@
PUDDLE_ANIMATION_ID = 22
Events.onStepTakenFieldMovement += proc { |_sender, e|
event = e[0] # Get the event affected by field movement
if $scene.is_a?(Scene_Map)
event.each_occupied_tile do |x, y|
mapTerrainTag = $MapFactory.getTerrainTag(event.map.map_id, x, y, false)
if $PokemonGlobal.surfing
if isWaterTerrain?(mapTerrainTag) #&& $PokemonGlobal.stepcount % 2 ==0
$scene.spriteset.addUserAnimation(PUDDLE_ANIMATION_ID, event.x, event.y, true, 0)
end
else
if mapTerrainTag == 16 #puddle
pbSEPlay("puddle", 100) if event == $game_player && !$PokemonGlobal.surfing #only play sound effect in puddle
$scene.spriteset.addUserAnimation(PUDDLE_ANIMATION_ID, event.x, event.y, true, 0)
end
end
end
end
}
def isWaterTerrain?(tag)
return [5, 6, 17, 7, 9, 16].include?(tag)
end

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,208 @@
=begin
*** Wonder Trade Script by Black Eternity ***
This script is to mimic Wonder Trade from an offline perspective.
THERE IS NO ONLINE CAPABILITIES OF THIS SCRIPT,
ALL CALCULATIONS ARE DONE INTERNALLY.
To call the script like normal and have ALL Pokemon trade-able, use the following.
pbWondertrade(1,[],[])
Black listed Pokemon are to be added to the Exceptions arrays.
Except is the list of pokemon the player is forbidden to trade.
Here the player cannot trade any of the following.
pbWonderTrade(1,[:PIKACHU,:SQUIRTLE,:CHARMANDER,;BULBASAUR],[])
Except2 is the list of pokemon the player is forbidden to receive.
Here the player cannot receive any of the following.
pbWonderTrade(1,[],[:MEWTWO,;MEW,;DEOXYS])
The first parameter is the minimum allowed Level of the Pokemon to be traded.
For example, you can not trade a Pokemon through Wonder Trade unless its level
is greater than or equal to specified level.
pbWonderTrade(40,[:SQUIRTLE,:CHARMANDER,:BULBASAUR],[:MEWTWO,:MEW,:DEOXYS])
*** Only pokemon over level 40 can be traded, you cannot trade starters.
*** You cannot receive these legendaries.
The fourth parameter, which has recently replaced mej71's "hardobtain"
is called "rare", this parameter developed also by mej71, will use
the Pokemon's rareness and filter the results depending on its values.
** Rareness is turned on by default, if you wish to disable it, call the
function accordingly.
pbWonderTrade(10,[:SQUIRTLE],[:CHARMANDER,:BULBASAUR],false)
** Only Pokemon over level 10, cannot trade Squirtle, cannot
** recieve Charmander or Bulbasaur, Rareness disabled.
It is up to you to use it how you wish, credits will be appreciated.
=end
# List of Randomly selected Trainer Names
# These are just names taken from a generator, add custom or change to
# whatever you desire.
def pbWonderTrade(lvl, except = [], except2 = [], premiumWonderTrade = true)
# for i in 0...except.length # Gets ID of pokemon in exception array
# except[i]=getID(PBSpecies,except[i]) if !except[i].is_a?(Integer)
# end
# for i in 0...except2.length # Gets ID of pokemon in exception array
# except2[i]=getID(PBSpecies,except2[i]) if !except2[i].is_a?(Integer)
# end
# ignoreExcept = rand(100) == 0 #tiny chance to include legendaries
#
# except+=[]
rare = premiumWonderTrade
chosen = pbChoosePokemon(1, 2, # Choose eligable pokemon
proc {
|poke| !poke.egg? && !(poke.isShadow?) && # No Eggs, No Shadow Pokemon
(poke.level >= lvl) && !(except.include?(poke.species)) # None under "lvl", no exceptions.
})
poke = $Trainer.party[pbGet(1)]
if !pbConfirmMessage(_INTL("Trade {1} away?",poke.name))
return
end
# $PokemonBag.pbStoreItem(poke.item, 1) if poke.item != nil
myPoke = poke.species
chosenBST = calcBaseStatsSum(myPoke)
# The following excecption fields are for hardcoding the blacklisted pokemon
# without adding them in the events.
#except+=[]
except2 += [:ARCEUS, :MEW, :CELEBI, :LUGIA, :HOOH, :MEWTWO]
if pbGet(1) >= 0
species = 0
luck = rand(5) + 1
rarecap = (rand(155 + poke.level) / (1 + rand(5))) / luck
bonus = 0
while (species == 0) # Loop Start
bonus += 5 #+ de chance de pogner un bon poke a chaque loop (permet d'eviter infinite loop)
species = rand(PBSpecies.maxValue) + 1
bst = calcBaseStatsSum(species)
# Redo the loop if pokemon is too evolved for its level
#species=0 if lvl < pbGetMinimumLevel(species)# && pbGetPreviousForm(species) != species # && pbGetPreviousForm(species)!=species
# Redo the loop if the species is an exception.
species = 0 if checkifBlacklisted(species, except2) && !ignoreExcept #except2.include?(species)
#Redo loop if above BST
bstLimit = chosenBST + bonus# + $game_variables[120]
if !premiumWonderTrade
bstLimit-=50
end
species = 0 if bst > bstLimit
if species > 0 && premiumWonderTrade
species = 0 if !customSpriteExistsSpecies(species)
end
if species > 0
skipLegendaryCheck = premiumWonderTrade && rand(100) < luck
species = 0 if pokemonIsPartLegendary(species) && !$game_switches[SWITCH_BEAT_THE_LEAGUE] && !skipLegendaryCheck
end
#Redo loop if below BST - 200
species = 0 if bst < (chosenBST - 200)
# raise _INTL("{1}'s bst ist {2}, new ist {3}",myPoke,chosenBST,bst)
# species=0 if (except.include?(species) && except2.include?(species))
# use this above line instead if you wish to neither receive pokemon that YOU
# cannot trade.
if rare == true #turn on rareness
if species > 0
rareness = GameData::Species.get(species).catch_rate
species = 0 if rarecap >= rareness
end
end
end
randTrainerNames = RandTrainerNames_male + RandTrainerNames_female + RandTrainerNames_others
#tname = randTrainerNames[rand(randTrainerNames.size)] # Randomizes Trainer Names
pname = RandPokeNick[rand(RandPokeNick.size)] # Randomizes Pokemon Nicknames
#num of Wondertrade - 1
if premiumWonderTrade
$game_variables[VAR_PREMIUM_WONDERTRADE_LEFT] -= 1
else
$game_variables[VAR_STANDARD_WONDERTRADE_LEFT] -= 1
end
tname = getSpriterCreditForDexNumber(species)
tname = randTrainerNames[rand(randTrainerNames.size)] if ! tname
newpoke = pbStartTrade(pbGet(1), species, pname, tname, 0, true) # Starts the trade
#lower level by 1 to prevent abuse
if poke.level > 25
newpoke.level = poke.level - 1
end
else
return -1
end
end
def pbGRS(minBST, chosenBST, luck, rare, except2)
#pbGenerateRandomSpecies (le nom doit etre short pour etre callé dans events)
# The following excecption fields are for hardcoding the blacklisted pokemon
# without adding them in the events.
#except+=[]
except2 += []
species = 0
#luck = rand(5)+1
rarecap = (rand(rare) / (1 + rand(5))) / luck
bonus = 0
while (species == 0) # Loop Start
bonus += 5 #+ de chance de pogner un bon poke a chaque loop (permet d'eviter infinite loop)
species = rand(PBSpecies.maxValue) + 1
bst = calcBaseStatsSum(species)
# Redo the loop if pokemon is too evolved for its level
#species=0 if lvl < pbGetMinimumLevel(species)# && pbGetPreviousForm(species) != species # && pbGetPreviousForm(species)!=species
# Redo the loop if the species is an exception.
species = 0 if checkifBlacklisted(species, except2) #except2.include?(species)
#Redo loop if above BST
species = 0 if bst > chosenBST + $game_variables[120] + bonus
#Redo loop if below BST - 200
species = 0 if bst < (chosenBST - 200)
# raise _INTL("{1}'s bst ist {2}, new ist {3}",myPoke,chosenBST,bst)
# species=0 if (except.include?(species) && except2.include?(species))
# use this above line instead if you wish to neither receive pokemon that YOU
# cannot trade.
if rare == true #turn on rareness
rareness = GameData::Species.get(species).catch_rate
species = 0 if rarecap >= rareness
end
end
return species
end
#utilisé dans des events - ne pas renommer
def calcBaseStats(species)
return calcBaseStatsSum(species)
end
def calcBaseStatsSum(species)
stats = GameData::Species.get(species).base_stats
sum = 0
sum += stats[:HP]
sum += stats[:ATTACK]
sum += stats[:DEFENSE]
sum += stats[:SPECIAL_ATTACK]
sum += stats[:SPECIAL_DEFENSE]
sum += stats[:SPEED]
return sum
#
# basestatsum = $pkmn_dex[species][5][0] # HP
# basestatsum +=$pkmn_dex[species][5][1] # Attack
# basestatsum +=$pkmn_dex[species][5][2] # Defense
# basestatsum +=$pkmn_dex[species][5][3] # Speed
# basestatsum +=$pkmn_dex[species][5][4] # Special Attack
# basestatsum +=$pkmn_dex[species][5][5] # Special Defense
# return basestatsum
end
def checkifBlacklisted(species, blacklist)
return true if blacklist.include?(getBasePokemonID(species, true))
return true if blacklist.include?(getBasePokemonID(species, false))
return false
end

View File

@@ -0,0 +1,225 @@
class Game_Temp
attr_accessor :temp_waterfall
attr_accessor :waterfall_sprites
attr_accessor :splash_sprites
attr_accessor :splash_coords
end
def generate_dynamic_waterfall(starting_x_position, waterfall_top_y, thickness=1)
map_height = $game_map.height - 8
echoln map_height
boulder_positions = []
CIANWOOD_BOULDER_IDS.each do |event_id|
event = $game_map.events[event_id]
boulder_positions << [event.x, event.y]
end
# Add columns from starting_x_position to the right
active_columns = []
(starting_x_position...(starting_x_position + thickness)).each do |x|
break if x >= $game_map.width # Don't go past map edge
active_columns << { x: x, y: waterfall_top_y }
end
visited = []
final_coords = []
splash_coords = []
while !active_columns.empty?
new_columns = []
active_columns.each do |segment|
x = segment[:x]
y = segment[:y]
next if visited.include?([x, y])
visited << [x, y]
while y < map_height
pos = [x, y]
final_coords << pos
if boulder_positions.include?(pos)
splash_coords << [x - 1, y] if x > 0
splash_coords << [x + 1, y] if x < $game_map.width - 1
splash_coords << [x, y]
new_y = y
new_columns << { x: x - 1, y: new_y } if x > 0 && !visited.include?([x - 1, new_y])
new_columns << { x: x + 1, y: new_y } if x < $game_map.width - 1 && !visited.include?([x + 1, new_y])
break
end
#currents section
if y > CIANWOOD_WATERFALL_EDGE+10
if !$game_map.passable?(x, y + 1, DIRECTION_DOWN)
splash_coords << [x, y + 1] if y + 1 < $game_map.height
break
end
end
if y == CIANWOOD_WATERFALL_EDGE
splash_coords << [x, y]
end
if y == map_height
splash_coords << [x, y]
end
y += 1
end
end
active_columns = new_columns
end
$game_temp.temp_waterfall = final_coords.uniq
$game_temp.splash_coords = splash_coords.uniq
echoln $game_temp.temp_waterfall
draw_waterfall_layer
end
def draw_waterfall_layer
return if !$game_temp.temp_waterfall || $game_temp.temp_waterfall.empty?
# Clear previous sprites
if $game_temp.waterfall_sprites
$game_temp.waterfall_sprites.each(&:dispose)
end
if $game_temp.splash_sprites
$game_temp.splash_sprites.each(&:dispose)
end
$game_temp.waterfall_sprites = []
$game_temp.splash_sprites = []
tile_size = 32
waterfall_tile_id = 0 # Waterfall
splash_tile_id = 4 # Splash impact tile, assuming we have this in the tileset
tileset = RPG::Cache.tileset($game_map.tileset_name)
# Draw waterfall tiles
$game_temp.temp_waterfall.each do |x, y|
sprite = Sprite.new(Spriteset_Map.viewport)
sprite.z = 10
sprite.x = x * tile_size
sprite.y = y * tile_size
sprite.bitmap = Bitmap.new(tile_size, tile_size)
source_rect = Rect.new(waterfall_tile_id * tile_size,0, tile_size, tile_size) # Frame 0
sprite.bitmap.blt(0, 0, tileset, source_rect)
# Store metadata for animation
sprite.instance_variable_set(:@frame_offset, rand(3)) # Optional: make them start at different frames
sprite.instance_variable_set(:@tile_x, x)
sprite.instance_variable_set(:@tile_y, y)
$game_temp.waterfall_sprites << sprite
end
# Draw splash impact tiles
$game_temp.splash_coords.each do |x, y|
sprite = Sprite.new(Spriteset_Map.viewport)
sprite.z = 300 # Draw splash above the waterfall
sprite.x = x * tile_size
sprite.y = y * tile_size
sprite.bitmap = Bitmap.new(tile_size, tile_size)
source_rect = Rect.new(splash_tile_id * tile_size,1, tile_size, tile_size) # Splash frame 0
sprite.bitmap.blt(0, 0, tileset, source_rect)
# Store metadata for splash animation
sprite.instance_variable_set(:@frame_offset, rand(3)) # Optional: make them start at different frames
sprite.instance_variable_set(:@tile_x, x)
sprite.instance_variable_set(:@tile_y, y)
$game_temp.splash_sprites << sprite
end
end
CIANWOOD_BOULDER_IDS = [2,3,5,6,
4 ]#chuck head
CIANWOOD_WATERFALL_EDGE =19
def player_on_temp_waterfall?
return false if !$game_temp.temp_waterfall
boulder_positions = []
CIANWOOD_BOULDER_IDS.each do |event_id|
event = $game_map.events[event_id]
boulder_positions << [event.x, event.y]
end
# Return false if a boulder is directly below the player
return false if boulder_positions.include?([$game_player.x, $game_player.y + 1])
return $game_temp.temp_waterfall.any? { |x, y, _| x == $game_player.x && y == $game_player.y }
end
class Spriteset_Map
alias_method :cianwood_waterfall_update, :update
def update
cianwood_waterfall_update
waterfall_edge = CIANWOOD_WATERFALL_EDGE
if $game_temp.waterfall_sprites
frame_count = Graphics.frame_count
tile_size = 32
autotile_id = 0
tileset = RPG::Cache.tileset($game_map.tileset_name)
# Animate waterfall sprites
$game_temp.waterfall_sprites.each do |sprite|
tile_y = sprite.instance_variable_get(:@tile_y)
frame_offset = sprite.instance_variable_get(:@frame_offset)
# Animate every 15 frames (change for speed control)
animation_frame = (frame_count / 15 + tile_y - frame_offset) % 4
tileset_x = (autotile_id * 4 + animation_frame) * tile_size
tileset_y = tile_y >= waterfall_edge ? tile_size : 0
source_rect = Rect.new(tileset_x,tileset_y, tile_size, tile_size)
sprite.bitmap.clear
sprite.bitmap.blt(0, 0, tileset, source_rect)
# Scroll with map
sprite.ox = $game_map.display_x / 4
sprite.oy = $game_map.display_y / 4
end
# Animate splash sprites
$game_temp.splash_sprites.each do |sprite|
tile_y = sprite.instance_variable_get(:@tile_y)
frame_offset = sprite.instance_variable_get(:@frame_offset)
# Animate every 10 frames for splash (you can adjust this speed)
offset = (autotile_id * 4 + 4) * tile_size
animation_frame = (frame_count / 10 + tile_y + frame_offset) % 4
source_rect = Rect.new((autotile_id * 4 + animation_frame) * tile_size + offset, 0, tile_size, tile_size)
sprite.bitmap.clear
sprite.bitmap.blt(0, 0, tileset, source_rect)
# Scroll with map
sprite.ox = $game_map.display_x / 4
sprite.oy = $game_map.display_y / 4
end
end
end
end

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,533 @@
EXPORT_EXCEPT_MAP_IDS= [768,722,723,724,720,809,816]
def exportAllMaps
for id in 817..830
begin
MapExporter.export(id, [:Events]) if !EXPORT_EXCEPT_MAP_IDS.include?(id)
rescue
echo "error in " +(id.to_s) +"\n"
end
end
end
def exportSpecificMaps(maps_to_export)
for id in maps_to_export
begin
MapExporter.export(id, [:Events])
rescue
echo "error in " +(id.to_s) +"\n"
end
end
end
module MapExporter
@@map = nil
@@bitmap = nil
@@helper = nil
module_function
def export(map_id, options)
map_name = pbGetMapNameFromId(map_id)
begin
@@map = $MapFactory.getMapForExport(map_id)
rescue
error("Map #{map_id} (#{map_name}) could not be loaded.")
end
@@bitmap = Bitmap.new(@@map.width * Game_Map::TILE_HEIGHT, @@map.height * Game_Map::TILE_WIDTH)
@@helper = TileDrawingHelper.fromTileset($data_tilesets[@@map.tileset_id])
set_map_options(options)
if options.include?(:Panorama)
if !nil_or_empty?(@@map.panorama_name)
draw_panorama
else
echoln "Map #{map_id} (#{map_name}) doesn't have a Panorama."
end
end
draw_reflective_tiles
draw_all_reflections(options)
draw_regular_tiles
if !draw_all_events(options)
draw_low_priority_tiles
end
draw_high_priority_tiles
draw_all_top_events(options)
if options.include?(:Fog)
if nil_or_empty?(@@map.fog_name)
echoln "Map #{map_id} (#{map_name}) doesn't have a Fog."
else
draw_fog
end
end
draw_watermark(options)
save_map_image
end
def draw_all_events(options)
include_player = options.include?(:Player) && $game_map.map_id == @@map.map_id
include_dep = options.include?(:DependentEvents) && $game_map.map_id == @@map.map_id
include_event = true#options.include?(:Events)
return false if !(include_player || include_dep || include_event)
for y in 0...@@map.height
for x in 0...@@map.width
event = nil
if include_event
event_hash = @@map.events.select {|_,e| e.x == x && e.y == y && !e.always_on_top }
event = event_hash.values.first if !event_hash.empty?
end
event = $game_player if !event && include_player && $game_player.x == x && $game_player.y == y && !$game_player.always_on_top
if include_dep
$PokemonTemp.dependentEvents.realEvents.each do |e|
next if !e || e.x != x || e.y != y
event = e
break
end
end
if event
deep_bush = @@map.bush?(x, y)
draw_event_bitmap(event, deep_bush)
end
for z in 0..2
tile_id = @@map.data[x, y, z] || 0
priority = @@map.priorities[tile_id]
next if priority == nil
next if priority != 1
tag_data = GameData::TerrainTag.try_get(@@map.terrain_tags[tile_id])
next if !tag_data || tag_data.shows_reflections
@@helper.bltTile(@@bitmap, x * Game_Map::TILE_WIDTH, y * Game_Map::TILE_HEIGHT, tile_id)
end
end
end
return true
end
def draw_all_top_events(options)
include_player = options.include?(:Player) && $game_map.map_id == @@map.map_id
include_event = options.include?(:Events)
return false if !(include_player || include_event)
for y in 0...@@map.height
for x in 0...@@map.width
event = nil
if include_event
event_hash = @@map.events.select {|_,e| e.x == x && e.y == y && e.always_on_top }
event = event_hash.values.first if !event_hash.empty?
end
event = $game_player if !event && include_player && $game_player.x == x && $game_player.y == y && $game_player.always_on_top
if event
deep_bush = @@map.bush?(x, y)
draw_event_bitmap(event, deep_bush)
end
end
end
return true
end
def draw_all_reflections(options)
include_player = options.include?(:Player) && $game_map.map_id == @@map.map_id
include_dep = options.include?(:DependentEvents) && $game_map.map_id == @@map.map_id
include_event = options.include?(:Events)
return false if !(include_player || include_dep || include_event)
for y in 0...@@map.height
for x in 0...@@map.width
dep = false
event = nil
if include_event
event_hash = @@map.events.select {|_,e| e.x == x && e.y == y }
event = event_hash.values.first if !event_hash.empty?
end
event = $game_player if !event && include_player && $game_player.x == x && $game_player.y == y
if include_dep && !event
$PokemonTemp.dependentEvents.realEvents.each do |e|
next if !e || e.x != x || e.y != y
event = e
dep = true
break
end
end
draw_event_reflection(event, dep) if event
end
end
return true
end
def draw_reflective_tiles
for y in 0...@@map.height
for x in 0...@@map.width
for z in 0..2
tile_id = @@map.data[x, y, z] || 0
tag_data = GameData::TerrainTag.try_get(@@map.terrain_tags[tile_id])
next if !tag_data || !tag_data.shows_reflections
@@helper.bltTile(@@bitmap, x * Game_Map::TILE_WIDTH, y * Game_Map::TILE_HEIGHT, tile_id)
end
end
end
end
def draw_regular_tiles
for y in 0...@@map.height
for x in 0...@@map.width
for z in 0..2
tile_id = @@map.data[x, y, z] || 0
priority = @@map.priorities[tile_id]
next if priority == nil
next if priority >= 1
tag_data = GameData::TerrainTag.try_get(@@map.terrain_tags[tile_id])
next if !tag_data || tag_data.shows_reflections
@@helper.bltTile(@@bitmap, x * Game_Map::TILE_WIDTH, y * Game_Map::TILE_HEIGHT, tile_id)
end
end
end
end
def draw_low_priority_tiles
for y in 0...@@map.height
for x in 0...@@map.width
for z in 0..2
tile_id = @@map.data[x, y, z] || 0
priority = @@map.priorities[tile_id]
next unless priority == 1
tag_data = GameData::TerrainTag.try_get(@@map.terrain_tags[tile_id])
next if !tag_data || tag_data.shows_reflections
@@helper.bltTile(@@bitmap, x * Game_Map::TILE_WIDTH, y * Game_Map::TILE_HEIGHT, tile_id)
end
end
end
end
def draw_high_priority_tiles
for y in 0...@@map.height
for x in 0...@@map.width
for z in 0..2
tile_id = @@map.data[x, y, z] || 0
priority = @@map.priorities[tile_id]
next if priority == nil
next if priority < 2
tag_data = GameData::TerrainTag.try_get(@@map.terrain_tags[tile_id])
next if !tag_data || tag_data.shows_reflections
@@helper.bltTile(@@bitmap, x * Game_Map::TILE_WIDTH, y * Game_Map::TILE_HEIGHT, tile_id)
end
end
end
end
def draw_event_bitmap(event, deep_bush)
hued = false
tile_bmp = false
if event.tile_id >= 384
bmp = pbGetTileBitmap(@@map.tileset_name, event.tile_id, event.character_hue, event.width, event.height)
hued = true
tile_bmp = true
elsif deep_bush
event.calculate_bush_depth
temp_bmp = AnimatedBitmap.new("Graphics/Characters/" + "#{event.character_name}", event.character_hue)
bushmap = BushBitmap.new(temp_bmp, false, event.bush_depth)
bmp = bushmap.bitmap.clone
bushmap.dispose
temp_bmp.dispose
hued = true
else
bmp = RPG::Cache.load_bitmap("Graphics/Characters/", "#{event.character_name}") rescue Bitmap.new(32,32)
end
if bmp
bmp = bmp.clone
bmp.hue_change(event.character_hue) if event.character_hue != 0 && !hued
final_x = (event.x * Game_Map::TILE_WIDTH) + ((event.width * Game_Map::TILE_WIDTH)/2) - bmp.width / 8
final_y = (event.y + 1) * Game_Map::TILE_HEIGHT - bmp.height / 4 + (event.bob_height)
final_y += 16 if event.character_name[/offset/i]
draw_event_shadow(event) if defined?(OWShadowSettings)
draw_surf_base(event) if event == $game_player
if !tile_bmp
ex = (bmp.width/4) * event.pattern
ey = (bmp.height/4) * (event.direction/2 - 1)
rect = Rect.new(ex, ey, bmp.width / 4, bmp.height / 4)
else
final_x += (bmp.width/8 - ((event.width * Game_Map::TILE_WIDTH)/2))
final_y += (bmp.height/4) - (Game_Map::TILE_HEIGHT * event.height)
rect = Rect.new(0, 0, bmp.width, bmp.height)
end
@@bitmap.blt(final_x, final_y, bmp, rect, event.opacity)
bmp.dispose
end
bmp = nil
end
def draw_event_shadow(event)
if OWShadowSettings::CASE_SENSITIVE_BLACKLISTS
remove = true if OWShadowSettings::SHADOWLESS_CHARACTER_NAME.any?{|e| event.character_name[/#{e}/]}
remove = true if event != $game_player && OWShadowSettings::SHADOWLESS_EVENT_NAME.any? {|e| event.name[/#{e}/]}
else
remove = true if OWShadowSettings::SHADOWLESS_CHARACTER_NAME.any?{|e| event.character_name[/#{e}/i]}
remove = true if event != $game_player && OWShadowSettings::SHADOWLESS_EVENT_NAME.any? {|e| event.name[/#{e}/i]}
end
terrain = @@map.terrain_tag(event.x, event.y)
remove = true if OWShadowSettings::SHADOWLESS_TERRAIN_NAME.any? {|e| terrain == e} if terrain
if !(nil_or_empty?(event.character_name) || event.transparent || remove)
if event == $game_player
shadow_name = OWShadowSettings::PLAYER_SHADOW_FILENAME
else
shadow_name = $~[1] if event.name[/shdw\((.*?)\)/]
end
shadow_name = OWShadowSettings::DEFAULT_SHADOW_FILENAME if nil_or_empty?(shadow_name)
shadow_bmp = RPG::Cache.load_bitmap("Graphics/Characters/Shadows/", "#{shadow_name}")
shadow_x = (event.x * Game_Map::TILE_WIDTH) + ((event.width * Game_Map::TILE_WIDTH)/2) - shadow_bmp.width/2
shadow_y = (event.y + 1) * Game_Map::TILE_HEIGHT - shadow_bmp.height + 2
@@bitmap.blt(shadow_x, shadow_y, shadow_bmp, Rect.new(0, 0, shadow_bmp.width, shadow_bmp.height), event.opacity)
shadow_bmp.dispose
end
end
def draw_event_reflection(event, forced = true)
tile_bmp = false
if event.tile_id >= 384
bmp = pbGetTileBitmap(@@map.tileset_name, event.tile_id, event.character_hue, event.width, event.height)
tile_bmp = true
else
bmp = RPG::Cache.load_bitmap("Graphics/Characters/", "#{event.character_name}") rescue Bitmap.new(32,32)
end
if bmp
bmp = bmp.clone
bmp.hue_change(event.character_hue) if event.character_hue != 0 && !tile_bmp
height = nil
fixed = false
if event == $game_player || forced
height = $PokemonGlobal.bridge
elsif event.name[/reflection/i]
height = 0
if event.name[/reflection\((\d+)\)/i]
height = $~[1].to_i || 0
else
height = $PokemonGlobal.bridge
end
end
if height
final_x = (event.x * Game_Map::TILE_WIDTH) + ((event.width * Game_Map::TILE_WIDTH)/2) - bmp.width/8
final_y = (event.y + 1) * Game_Map::TILE_HEIGHT - 3 - (event.bob_height)
final_y -= 32 if event.character_name[/offset/i]
if !tile_bmp
ex = (bmp.width/4) * event.pattern
ey = (bmp.height/4) * (event.direction/2 - 1)
rect = Rect.new(ex, ey, bmp.width/4, bmp.height/4)
else
final_x += (bmp.width/8 - ((event.width * Game_Map::TILE_WIDTH)/2))
rect = Rect.new(0, 0, bmp.width, bmp.height)
end
if height > 0
new_bmp = colorize_and_flip_bitmap(bmp, Color.new(48,96,160), 255, rect)
opacity = event.opacity
else
new_bmp = colorize_and_flip_bitmap(bmp, Color.new(224,224,224), 96, rect)
opacity = event.opacity*3/4
end
offset = [1.0, 0.95, 1.0, 1.05][(Graphics.frame_count%40)/10]
@@bitmap.stretch_blt(Rect.new(final_x, final_y, (new_bmp.width * offset), new_bmp.height), new_bmp, Rect.new(0, 0, new_bmp.width, new_bmp.height), opacity)
new_bmp.dispose
end
bmp.dispose
end
bmp = nil
end
def draw_surf_base(event)
return if !$PokemonGlobal.surfing && !$PokemonGlobal.diving
bmp = nil
if $PokemonGlobal.surfing
bmp = RPG::Cache.load_bitmap("Graphics/Characters/", "base_surf") rescue Bitmap.new(32,32)
elsif $PokemonGlobal.diving
bmp = RPG::Cache.load_bitmap("Graphics/Characters/", "base_dive") rescue Bitmap.new(32,32)
end
return if !bmp
sx = event.pattern_surf * bmp.width/4
sy = ((event.direction - 2)/2) * bmp.height/4
final_x = (event.x * Game_Map::TILE_WIDTH) + ((event.width * Game_Map::TILE_WIDTH)/2) - bmp.width/8
final_y = (event.y + 1) * Game_Map::TILE_HEIGHT - bmp.height / 4 + 16 + (event.bob_height)
@@bitmap.blt(final_x, final_y, bmp, Rect.new(sx,sy, bmp.width/4, bmp.height/4), event.opacity)
end
def draw_fog
fog_bmp = create_tiled_bitmap("Graphics/Fogs/#{@@map.fog_name}", @@map.fog_hue, @@map.fog_zoom/100.0)
@@bitmap.blt(0, 0, fog_bmp, Rect.new(0, 0, fog_bmp.width, fog_bmp.height), @@map.fog_opacity)
fog_bmp.dispose
end
def draw_panorama
pan_bmp = create_tiled_bitmap("Graphics/Panoramas/#{@@map.panorama_name}", @@map.panorama_hue)
@@bitmap.blt(0, 0, pan_bmp, Rect.new(0, 0, pan_bmp.width, pan_bmp.height))
pan_bmp.dispose
end
def draw_watermark(options)
return if !options.include?(:GameName) && !options.include?(:MapName)
map_name = nil_or_empty?(@@map.name)? pbGetMapNameFromId(@@map.map_id) : @@map.name
game_name = System.game_title
base_color = Color.new(248, 248, 248)
shadow_color = Color.new(64, 64, 64)
new_bmp = Bitmap.new(@@bitmap.width, @@bitmap.height)
if options.include?(:GameName)
if options.include?(:MapName)
pbSetSmallFont(new_bmp)
else
pbSetSystemFont(new_bmp)
end
pbDrawTextPositions(new_bmp, [[game_name, new_bmp.width - 8, new_bmp.height - 32, 1, base_color, shadow_color, true]])
new_font = (@@bitmap.text_size(map_name).height + 6)
else
new_font = 0
end
if options.include?(:MapName)
pbSetSystemFont(new_bmp)
pbDrawTextPositions(new_bmp, [[map_name, new_bmp.width - 8, new_bmp.height - new_font - 38, 1, base_color, shadow_color, true]])
end
scale_factor = get_name_scale
x = @@bitmap.width - (new_bmp.width * scale_factor) - (8 * (scale_factor - 1))
y = @@bitmap.height - (new_bmp.height * scale_factor) - (8 * (scale_factor - 1))
rect = Rect.new(x, y, (new_bmp.width * scale_factor), (new_bmp.height * scale_factor))
@@bitmap.stretch_blt(rect, new_bmp, Rect.new(0, 0, new_bmp.width, new_bmp.height))
new_bmp.dispose
end
def save_map_image
Dir.mkdir("Exported Maps/") if !safeExists?("Exported Maps/")
filestart = Time.now.strftime("[%Y-%m-%d %H-%M]")
map_name = nil_or_empty?(@@map.name)? pbGetMapNameFromId(@@map.map_id) : @@map.name
filename = sprintf("%03d - #{map_name} #{filestart}", @@map.map_id)
min_exists = 0
if safeExists?("Exported Maps/" + filename + ".png")
min_exists = 1
loop do
break if !safeExists?("Exported Maps/" + "#{filename}(#{min_exists})" + ".png")
min_exists += 1
end
end
filename = "#{filename}(#{min_exists})" if min_exists > 0
@@bitmap.to_file("Exported Maps/" + filename + ".png")
@@bitmap.dispose
@@bitmap = nil
@@map = nil
@@helper = nil
end
def create_tiled_bitmap(filename, hue, zoom = 1.0)
begin
bmp = RPG::Cache.load_bitmap("", filename)
rescue
error("Could not load image file at #{filename}")
end
new_bmp = Bitmap.new(@@map.width * Game_Map::TILE_HEIGHT, @@map.height * Game_Map::TILE_WIDTH)
i = 0
while i <= new_bmp.width
j = 0
while j <= new_bmp.height
new_bmp.stretch_blt(Rect.new(i, j, (bmp.width * zoom), (bmp.height * zoom)), bmp, Rect.new(0, 0, bmp.width, bmp.height))
j += (bmp.height * zoom)
end
i += (bmp.width * zoom)
end
bmp.dispose
new_bmp.hue_change(hue)
return new_bmp
end
def get_name_scale
scale = @@map.width/3
d = [0, -1 , -2, 2, 1, 0, -1, -2, 2, 1][scale%10]
scale = (scale + d)/10.0
return (scale < 1.0) ? 1.0 : scale
end
def colorize_and_flip_bitmap(bitmap, color, alpha = 255, rect = nil)
blankcolor = bitmap.get_pixel(0,0)
new_bmp = Bitmap.new(rect.width, rect.height)
temp_bmp = Bitmap.new(rect.width, rect.height)
temp_bmp.blt(0, 0, bitmap, rect)
for x in 0...temp_bmp.width
for y2 in 0...temp_bmp.height
y = temp_bmp.height - y2
newcolor = temp_bmp.get_pixel(x, y2)
new_bmp.set_pixel(x, y, newcolor) if newcolor
end
end
temp_bmp.dispose
shadowcolor = (color ? color : blankcolor)
colorlayer = Bitmap.new(new_bmp.width, new_bmp.height)
colorlayer.fill_rect(colorlayer.rect, shadowcolor)
new_bmp.blt(0, 0, colorlayer, colorlayer.rect, alpha)
shadowcolor = new_bmp.get_pixel(0,0)
for x in 0...new_bmp.width
for y in 0...new_bmp.height
if new_bmp.get_pixel(x,y) == shadowcolor
new_bmp.set_pixel(x, y, blankcolor)
end
end
end
colorlayer.dispose
return new_bmp
end
def set_map_options(options)
return if !options.include?(:Panorama) && !options.include?(:Fog)
@@map.events.each do |key, event|
for page in event.event.pages.reverse
c = page.condition
next if c.switch1_valid && !event.switchIsOn?(c.switch1_id)
next if c.switch2_valid && !event.switchIsOn?(c.switch2_id)
next if c.variable_valid && $game_variables[c.variable_id] < c.variable_value
if c.self_switch_valid
key = [event.map_id, event.id, c.self_switch_ch]
next if $game_self_switches[key] != true
end
page.list.each do |command|
if command.code == 204
case command.parameters[0]
when 0
next if !options.include?(:Panorama)
@@map.panorama_name = command.parameters[1] if !nil_or_empty?(@@map.panorama_name)
@@map.panorama_hue = command.parameters[2] if @@map.panorama_hue <= 0
when 1
next if !options.include?(:Fog)
@@map.fog_name = command.parameters[1] if nil_or_empty?(@@map.fog_name)
@@map.fog_hue = command.parameters[2] if @@map.fog_hue <= 0
@@map.fog_opacity = command.parameters[3] if @@map.fog_opacity < command.parameters[3]
@@map.fog_zoom = command.parameters[5]
end
elsif command.code == 205
next if !options.include?(:Fog)
@@map.fog_tone = command.parameters[0]
elsif command.code == 206
next if !options.include?(:Fog)
@@map.fog_opacity = command.parameters[0] if command.parameters[0] != 0
end
end
break
end
end
end
def error(message)
emessage = "Map Exporter EX Error:\n\n" + message
print(_INTL(emessage))
exit!
end
end
class Game_Map
def tileset_id; return @map.tileset_id; end
end
class DependentEvents
attr_accessor :realEvents
end
class Game_Character
attr_reader :event
attr_reader :always_on_top
end
class PokemonMapFactory
def getMapForExport(id)
map = Game_Map.new
map.setup(id)
return map
end
end

View File

@@ -0,0 +1,74 @@
#
# DebugMenuCommands.register("exportmap", {
# "parent" => "fieldmenu",
# "name" => _INTL("Export Map Image"),
# "description" => _INTL("Select a map and save its image as a png."),
# "effect" => proc {
# pbExportMapSelection
# }
# })
#
# def pbExportMapSelection
# loop do
# map_id = pbListScreen(_INTL("Export Map"), MapLister.new(pbDefaultMap))
# break if map_id <= 0
# commands = ["Events", "Player", "Dependent Events", "Fog", "Panorama", "Map Name", "Game Name"]
# if $game_map.map_id != map_id
# commands.delete("Player")
# commands.delete("Dependent Events")
# end
# options = pbShowMapExportOptions(commands)
# if !options.include?(:Cancel)
# ret = MapExporter.export(map_id, options)
# mapname = pbGetMapNameFromId(map_id)
# pbMessage(_INTL("Sucessfully exported map image of Map {1} ({2}) to the Exported Maps folder in the games's root.", map_id, mapname))
# return
# end
# end
# end
#
# def pbShowMapExportOptions(commands)
# sel_commands = []
# sym_commands = [:MapName, :GameName]
# cmdwindow = Window_CommandPokemonEx.new([])
# cmdwindow.z = 99999
# cmdwindow.visible = true
# cmdwindow.index = 0
# need_refresh = true
# loop do
# if need_refresh
# sel_commands = []
# commands.each_with_index do |s, i|
# cmd_sym = s.gsub(/\s+/, "").to_sym
# x = sym_commands.include?(cmd_sym) ? "[x]" : "[ ]"
# sel_commands.push(_INTL("{1} {2}",x, s))
# end
# sel_commands.push("Export Map...")
# cmdwindow.commands = sel_commands
# cmdwindow.resizeToFit(cmdwindow.commands)
# need_refresh = false
# end
# Graphics.update
# Input.update
# cmdwindow.update
# yield if block_given?
# if Input.trigger?(Input::USE)
# break if cmdwindow.index == sel_commands.length - 1
# cmd_sym = commands[cmdwindow.index].gsub(/\s+/, "").to_sym
# if sym_commands.include?(cmd_sym)
# sym_commands.delete(cmd_sym)
# else
# sym_commands.push(cmd_sym)
# end
# sym_commands.uniq!
# need_refresh = true
# elsif Input.trigger?(Input::BACK)
# sym_commands = [:Cancel]
# break
# end
# pbUpdateSceneMap
# end
# cmdwindow.dispose
# Input.update
# return sym_commands
# end

View File

@@ -0,0 +1,251 @@
#
# # ▼▲▼ XRXS50. Action-Maps XC. ▼▲▼ built 033010
# # by 桜雅 在土
#
# #======================================================
# # □ Customization points
# #======================================================
# class XRXS50
# #
# # Action-Maps - ID maps actives
# #
#
# ENABLE_FULL_ACTY_MAPS = [404,547,548,549,550,217,614,615,656]
#
# #
# # Slide descent (diagonal drop)
# #
# ENABLE_SLIDE_DESCENT = true
# #
# # true: Jump in the direction facing orientation: Jump
# # false : Jump to the direction in which the key is pressed.
# #
# JUMP_AS_KEY = true
# end
# #======================================================
# # ■ Game_Player
# #======================================================
# class Game_Player < Game_Character
# #------------------------------------------------------
# # Public Variable
# #------------------------------------------------------
# # Existing
# attr_writer :direction_fix
# attr_accessor :walk_anime
# # New
# attr_accessor :now_jumps
# attr_writer :xrxs50_direction_sidefix
# #------------------------------------------------------
# # ○Maximum jump number
# #------------------------------------------------------
# def max_jumps
# return $game_switches[890] ? 5 : 2
# end
# #------------------------------------------------------
# # ● Vers la gauche
# #------------------------------------------------------
# alias xrxs50_turn_left turn_left
# def turn_left
# if @xrxs50_direction_sidefix
# @direction = 4
# else
# turn_generic(4)
#
#
# end
# end
#
# #------------------------------------------------------
# # ● Vers la droite
# #------------------------------------------------------
# alias xrxs50_turn_right turn_right
# def turn_right
# if @xrxs50_direction_sidefix
# @direction = 6
# else
# turn_generic(6)
# end
# end
# #------------------------------------------------------
# # ● Vers le haut et le bas
# #------------------------------------------------------
# alias xrxs50_turn_up turn_up
# def turn_up
# if @xrxs50_direction_sidefix and Input.press?(Input::UP)
# return if $game_switches[890]
# @direction = 8
# xrxs50_turn_up
# else
# turn_generic(8)
# end
# end
#
# alias xrxs50_turn_down turn_down
# def turn_down
# if @xrxs50_direction_sidefix and Input.press?(Input::DOWN)
# xrxs50_turn_right
# else
# turn_generic(2)
# end
# end
#
# end
#
#
#
#
# #======================================================
# # ■ Scene_Map
# #======================================================
# class Scene_Map
# #------------------------------------------------------
# # ● Main processing
# #------------------------------------------------------
# alias xrxs50_main main
# def main
# # Check
# xrxs50_enable_check
# # Recall
# xrxs50_main
# end
# #------------------------------------------------------
# # ● Frame update
# #------------------------------------------------------
# alias xrxs50_update update
# def update
# # Recall
# xrxs50_update
# # Frame update (coordinate system update)
# if @xrxs50_enable
# update_coordinates
# end
# end
# #------------------------------------------------------
# # ○ Frame update (coordinate system update)
# #------------------------------------------------------
# def update_coordinates
# if $game_player.passable?($game_player.x,$game_player.y,2) #2
# unless $game_player.moving?
#
# if XRXS50::ENABLE_SLIDE_DESCENT and
# Input.press?(Input::RIGHT) and
# $game_player.passable?($game_player.x,$game_player.y+1,6) #1,6
# $game_player.move_lower_right
# $game_player.turn_right
# elsif XRXS50::ENABLE_SLIDE_DESCENT and
# Input.press?(Input::LEFT) and
# $game_player.passable?($game_player.x,$game_player.y+1,4)
# $game_player.move_lower_left
# $game_player.turn_left
# else
# $game_player.move_down
# end
# end
# else
# if Input.trigger?(Input::UP) && !$game_switches[890]
# @direction =8 #8
# end
# $game_player.move_down
# $game_player.walk_anime = true unless $game_player.walk_anime
# $game_player.now_jumps = 0
#
#
# end
#
# input = $game_switches[890] ? Input::UP : Input::X
# if Input.trigger?(input) and $game_player.now_jumps < $game_player.max_jumps
# if XRXS50::JUMP_AS_KEY
# direction = $game_player.direction == 4 ? -1 : 1
# #si pas jump as key
# else
# if Input.press?(Input::RIGHT)
# direction = 1
# elsif Input.press?(Input::LEFT)
# direction = -1
# else
# direction = 0
# end
# end
#
# #if $game_switches[31] == true
# # @direction =8 #8# Jump Height
# #else
# $game_player.jump(direction, -2)# Jump Height
# pbSEPlay("Jump",100)
# #end
# $game_player.now_jumps += 1 #1
# $game_player.walk_anime = false
# end
# end
#
# #------------------------------------------------------
# # ● Location movement of player
# #------------------------------------------------------
# #alias xrxs50_transfer_player transfer_player
# #def transfer_player(cancelVehicles=false)
# # #Recall
# #xrxs50_transfer_player
# # #Check
# #xrxs50_enable_check
# #end
#
# def transfer_player(cancelVehicles=true)
# $game_temp.player_transferring = false
# if cancelVehicles
# Kernel.pbCancelVehicles($game_temp.player_new_map_id)
# end
# autofade($game_temp.player_new_map_id)
# pbBridgeOff
# if $game_map.map_id != $game_temp.player_new_map_id
# $MapFactory.setup($game_temp.player_new_map_id)
# end
# $game_player.moveto($game_temp.player_new_x, $game_temp.player_new_y)
# case $game_temp.player_new_direction
# when 2
# $game_player.turn_down
# when 4
# $game_player.turn_left
# when 6
# $game_player.turn_right
# when 8
# $game_player.turn_up
# end
#
# xrxs50_enable_check
# $game_player.straighten
# $game_map.update
# disposeSpritesets
# GC.start
# createSpritesets
# if $game_temp.transition_processing
# $game_temp.transition_processing = false
# Graphics.transition(20)
# end
# $game_map.autoplay
# Graphics.frame_reset
# Input.update
# end
#
#
#
# #------------------------------------------------------
# # ○ XRXS50 Decision whether to run
# #------------------------------------------------------
# def xrxs50_enable_check
# if XRXS50::ENABLE_FULL_ACTY_MAPS.include?($game_map.map_id)
#
# $game_player.now_jumps = 0 if $game_player.now_jumps.nil?
# @xrxs50_enable = true #Gravité
# $game_player.direction_fix =true
# $game_player.xrxs50_direction_sidefix = true
#
# else
# @xrxs50_enable = false
# $game_player.direction_fix = false
# $game_player.xrxs50_direction_sidefix = false
# end
# end
# end
#
#
#