diff --git a/Scenes/HUD/playerhud.gd b/Scenes/HUD/playerhud.gd new file mode 100644 index 0000000..66dadf7 --- /dev/null +++ b/Scenes/HUD/playerhud.gd @@ -0,0 +1,651 @@ +extends CanvasLayer + +enum MENUS{DEFAULT, BUILD, BACKPACK, ESC, BAIT, SHOP, DIALOGUE, EMOTE, UPGRADE, PROP, ARENA} + +const MINIGAMES = { + "fishing": preload("res://Scenes/Minigames/Fishing/Fishing.tscn"), + "fishing2": preload("res://Scenes/Minigames/Fishing2/fishing2.tscn"), + "fishing3": preload("res://Scenes/Minigames/Fishing3/fishing3.tscn"), + "shoveling": preload("res://Scenes/Minigames/Shoveling/shoveling.tscn"), + "painting": preload("res://Scenes/HUD/PaintingScreen/painting_screen.tscn"), + "guitar": preload("res://Scenes/Minigames/Guitar/guitar_minigame.tscn"), + "scratch_off": preload("res://Scenes/Minigames/ScratchTicket/scratch_ticket.tscn"), +} + +onready var overlay = $main / in_game + +onready var tab_container = $main / menu / TabContainer +onready var esc_menu = $esc_menu +onready var hotbar = $main / in_game / hotbar +onready var gamechat = $main / in_game / gamechat / RichTextLabel +onready var chat_root = $main / in_game / gamechat +onready var chat = $main / in_game / gamechat / LineEdit +onready var ui_anim = $main / ui_anim +onready var backpack_anim = $main / backpack / Viewport / Spatial / backpack / AnimationPlayer +onready var tacklebox_anim = $main / tacklebox / Viewport / Spatial / tacklebox / AnimationPlayer +onready var buttons = $main / menu / buttons +onready var tabs = $main / menu / tabs +onready var build_ui = $main / build_ui +onready var shop = $main / shop +onready var dialogue = $main / dialogue +onready var bait_show = $main / in_game / bait +onready var emote_wheel = $main / emote_wheel +onready var prop_menu = $main / prop_menu +onready var arena_menu = $main / arena_menu + +var menu = MENUS.DEFAULT +var prev_menu = MENUS.DEFAULT +var using_chat = false +var interact = false +var popups = [] +var player +var current_tab = 0 +var shop_id = "" +var int_text = "" +var dialogue_text = [] +var show_bait = false +var chat_timer = 0 +var chat_local = false +var hud_hidden = false +var interact_timer = 0 +var chat_hover = false +var chat_expand = false +var chat_hide = false +var freecamming = false + +signal _items_chosen +signal _minigame_finished +signal _player_sit +signal _menu_entered +signal _play_emote +signal _message_sent +signal _freecam_toggle + +func _ready(): + PlayerData.connect("_hotbar_refresh", self, "_refresh_hotbar") + PlayerData.connect("_bait_update", self, "_bait_refresh") + PlayerData.connect("_force_menu_close", self, "_abort") + Network.connect("_chat_update", self, "_chat_update") + + esc_menu.connect("_close", self, "_change_menu", [0]) + + _refresh_hotbar() + _change_tab(0) + _change_menu(MENUS.DEFAULT) + _toggle_chat(true) + + +func _process(delta): + var cash = (str(round(PlayerData.money))).pad_zeros(9) + cash = cash.insert(cash.length() - str(PlayerData.money).length(), "[color=#1a231a]") + $main / menu / Panel4 / cashlabel.bbcode_text = "[center][color=#1a231a]$ [color=#d5aa73]" + cash + + bait_show.visible = show_bait + + if Rect2(chat_root.rect_global_position, chat_root.rect_size).has_point(chat_root.get_global_mouse_position()) and chat_timer < 30: + chat_timer = 30 + + if chat_timer > 0: chat_timer -= 1 + chat_root.modulate.a = lerp(chat_root.modulate.a, max(0.4, float(chat_timer > 0 or using_chat)), 0.3) + $main / in_game / gamechat / Panel.modulate.a = lerp($main / in_game / gamechat / Panel.modulate.a, float(chat_timer > 0 or using_chat), 0.3) + $main / in_game / gamechat / Panel2.modulate.a = $main / in_game / gamechat / Panel.modulate.a + gamechat.scroll_active = using_chat + + if popups == [] and not OptionsMenu.open: + + if Input.is_action_just_pressed("menu_open"): + if hud_hidden: _show_hud() + else : + if menu == MENUS.DEFAULT: _change_menu(MENUS.BACKPACK) + else : _change_menu(MENUS.DEFAULT) + + if Input.is_action_just_pressed("esc_menu"): + if hud_hidden: _show_hud() + else : + if menu == MENUS.DEFAULT: _change_menu(MENUS.ESC) + else : _change_menu(MENUS.DEFAULT) + + if Input.is_action_just_pressed("chat_enter") and menu == MENUS.DEFAULT: + if not using_chat: + using_chat = true + chat.editable = true + chat.selecting_enabled = true + chat.focus_mode = Control.FOCUS_ALL + chat.grab_focus() + chat.placeholder_text = "Type to chat!" + else : + _send_message(chat.text) + chat.text = "" + _exit_chat() + + if not using_chat: + if Input.is_action_just_released("bait_menu"): + if menu == MENUS.DEFAULT: _change_menu(MENUS.BAIT) + else : _change_menu(MENUS.DEFAULT) + + if Input.is_action_just_pressed("build"): + if menu == MENUS.DEFAULT: _change_menu(MENUS.PROP) + else : _change_menu(MENUS.PROP) + + if Input.is_action_just_released("emote_wheel"): + if menu == MENUS.EMOTE: _change_menu(MENUS.DEFAULT) + if Input.is_action_just_pressed("emote_wheel"): + if menu == MENUS.DEFAULT: _change_menu(MENUS.EMOTE) + + if Input.is_action_just_pressed("interact"): + if menu != MENUS.DEFAULT and menu != MENUS.BACKPACK: + _change_menu(MENUS.DEFAULT) + + if menu == MENUS.BACKPACK: + if Input.is_action_just_pressed("tab_next"): + current_tab += 1 + if current_tab > 4: current_tab = 0 + _change_tab(current_tab) + if Input.is_action_just_pressed("tab_prev"): + current_tab -= 1 + if current_tab < 0: current_tab = 4 + _change_tab(current_tab) + + if Input.is_action_just_pressed("hide_hud"): + _hide_hud() + + if Input.is_action_just_pressed("freecam"): + _on_camera_pressed() + + if not is_instance_valid(player): queue_free() + else : + player.busy = menu != MENUS.DEFAULT or using_chat + player.show_local = using_chat and chat_local + + $"%new_icon".visible = PlayerData.new_cosmetics.size() > 0 + + chat_root.anchor_top = lerp(chat_root.anchor_top, 0.66 if not chat_expand else 0.2, 0.2) + + chat_root.anchor_left = lerp(chat_root.anchor_left, 0.02 if not chat_hide else - 0.52, 0.2) + chat_root.anchor_right = lerp(chat_root.anchor_right, 0.28 if not chat_hide else - 0.26, 0.2) + $main / in_game / show_chat.visible = chat_hide + + $main / in_game / freecamwarning.visible = freecamming + $main / in_game / freecamwarning.modulate.a = 0.6 + (sin(OS.get_ticks_msec() * 0.004) * 0.4) + +func _physics_process(delta): + + if interact: + interact_timer += 2 + elif interact_timer > 0: + if interact_timer > 28: interact_timer = 28 + interact_timer -= 2 + + var frame = floor(interact_timer / 7.0) + if frame > 3: frame = 3 + ceil(sin(OS.get_ticks_msec() * 0.01)) + + $main / in_game / interact_notif / Label.visible = frame >= 3 + $main / in_game / interact_notif / TextureRect.texture.set_current_frame(frame) + + $main / in_game / interact_notif.margin_bottom = 12 + sin(OS.get_ticks_msec() * 0.002) * 12 + $main / in_game / interact_notif.visible = interact_timer > 0 + $main / in_game / interact_notif / Label.text = "[E] " + str(int_text) + +func _hide_hud(): + if not hud_hidden: + hud_hidden = true + overlay.modulate.a = 0.0 + PlayerData._send_notification("press h, tab, or esc to show hud again") + else : + _show_hud() + PlayerData.emit_signal("_hide_hud_toggle", hud_hidden) + +func _show_hud(): + hud_hidden = false + overlay.modulate.a = 1.0 + + + + + +func _change_menu(to): + yield (get_tree(), "idle_frame") + yield (get_tree(), "idle_frame") + prev_menu = menu + if menu == to: to = MENUS.DEFAULT + + + if menu != to: + var sfx = "menu_a" + match to: + MENUS.DEFAULT: sfx = "menu_b" + MENUS.DIALOGUE: sfx = "" + + if sfx != "": PlayerData.emit_signal("_play_sfx", sfx) + + menu = to + + if menu == MENUS.BACKPACK: _open_menu(); else : _close_menu() + if menu == MENUS.ESC: _open_esc_menu(); else : _close_esc_menu() + if menu == MENUS.BAIT: _open_bait(); else : _close_bait() + if menu == MENUS.BUILD: build_ui.show(); else : build_ui.hide() + if menu == MENUS.DEFAULT: overlay.show(); else : overlay.hide() + if menu == MENUS.SHOP: shop._open(shop_id); else : shop._close() + if menu == MENUS.DIALOGUE: dialogue._open(dialogue_text); else : dialogue._close() + if menu == MENUS.EMOTE: emote_wheel._open(); else : emote_wheel._close() + if menu == MENUS.PROP: prop_menu._open(); else : prop_menu._close() + if menu == MENUS.ARENA: arena_menu._open(); else : arena_menu._close() + + emit_signal("_menu_entered", menu) + + + var rank_data = PlayerData._get_level_data(PlayerData.badge_level) + $main / menu / Panel3 / badgelabel.text = str(rank_data["title"]) + "\nRANK " + str(PlayerData.badge_level) + "\n" + str(PlayerData.badge_xp) + "/" + str(PlayerData._get_xp_goal(PlayerData.badge_level)) + " xp" + $main / menu / Panel5 / item_display.texture = rank_data["icon"] + + + + + +func _open_menu(): + ui_anim.play("Open") + overlay.hide() + backpack_anim.play("intro", - 1, 2.0) + _exit_chat() + $main / menu / tabs / outfit._refresh() + GlobalAudio._play_sound("backpack_open") + +func _close_menu(): + if prev_menu == MENUS.BACKPACK: + ui_anim.play_backwards("Open") + backpack_anim.play("intro", - 1, - 2.0, true) + player.call_deferred("_change_cosmetics") + GlobalAudio._play_sound("backpack_close") + + overlay.show() + +func _change_tab(new): + backpack_anim.stop(true) + var anim = ["zip", "zip_b", "zip", "zip_b", "zip", "zip_b"][new] + backpack_anim.play(anim, - 1, 2.0) + current_tab = new + for child in buttons.get_children(): child._update(new) + for child in tabs.get_children(): + child.visible = child.get_position_in_parent() == new + if child.get_position_in_parent() == new: $"%bplabel".text = child.name + + if menu == MENUS.BACKPACK: + PlayerData.emit_signal("_play_sfx", "zip") + + + + + +func _open_esc_menu(): + esc_menu.show() + esc_menu._open() + _exit_chat() + +func _close_esc_menu(): + esc_menu._close() + esc_menu.hide() + + + + + +func _open_bait(): + GlobalAudio._play_sound("tb_rustle") + ui_anim.play("tacklebox_open") + overlay.hide() + tacklebox_anim.play("open", - 1, 2.0) + _exit_chat() + _bait_refresh() + +func _close_bait(): + if prev_menu == MENUS.BAIT: + GlobalAudio._play_sound("tb_rustle") + ui_anim.play_backwards("tacklebox_open") + tacklebox_anim.play("open", - 1, - 2.0, true) + + overlay.show() + +func _bait_refresh(): + var bait_list = $"%bait_list" + var lure_list = $"%lure_list" + + for child in bait_list.get_children(): child.queue_free() + for child in lure_list.get_children(): child.queue_free() + + for bait in PlayerData.bait_inv.keys(): + if not PlayerData.bait_unlocked.has(bait): continue + + var button = Button.new() + button.set_script(preload("res://Scenes/Menus/Main Menu/ui_generic_button.gd")) + button.icon = PlayerData.BAIT_DATA[bait].icon + button.text = PlayerData.BAIT_DATA[bait].name + button.disabled = PlayerData.bait_selected == bait + + if bait != "": + button.text = button.text + " x" + str(PlayerData.bait_inv[bait]) + if PlayerData.bait_inv[bait] <= 0: button.disabled = true + + if PlayerData.bait_selected == bait: + button.text = button.text + " (selected)" + + button.expand_icon = true + button.align = Button.ALIGN_LEFT + button.connect("pressed", self, "_change_bait", [bait]) + button.connect("mouse_entered", self, "_bait_hover", [bait]) + bait_list.add_child(button) + + for lure in PlayerData.LURE_DATA.keys(): + if not PlayerData.lure_unlocked.has(lure): continue + + var button = Button.new() + button.set_script(preload("res://Scenes/Menus/Main Menu/ui_generic_button.gd")) + button.icon = PlayerData.LURE_DATA[lure].icon + button.text = PlayerData.LURE_DATA[lure].name + button.disabled = PlayerData.lure_selected == lure + + if PlayerData.lure_selected == lure: + button.text = button.text + " (selected)" + + button.expand_icon = true + button.align = Button.ALIGN_LEFT + button.connect("pressed", self, "_change_lure", [lure]) + button.connect("mouse_entered", self, "_lure_hover", [lure]) + lure_list.add_child(button) + +func _change_bait(bait): + PlayerData.bait_selected = bait + PlayerData.emit_signal("_bait_update") + +func _bait_hover(bait): + var title = PlayerData.BAIT_DATA[bait].name + var desc = PlayerData.BAIT_DATA[bait].desc + $main / bait_menu / Panel3 / bait_info.bbcode_text = "[color=#6a4420]" + title + "[/color]\n" + desc + +func _change_lure(lure): + PlayerData.lure_selected = lure + PlayerData.emit_signal("_bait_update") + +func _lure_hover(lure): + var title = PlayerData.LURE_DATA[lure].name + var desc = PlayerData.LURE_DATA[lure].desc + $main / bait_menu / Panel3 / bait_info.bbcode_text = "[color=#6a4420]" + title + "[/color]\n" + desc + + + + + + +func _item_pressed(item): + _change_menu(MENUS.DEFAULT) + player._equip_item(item) + +func _exit_chat(): + chat.focus_mode = Control.FOCUS_NONE + chat.editable = false + chat.selecting_enabled = false + chat.placeholder_text = "ENTER to begin typing..." + using_chat = false + +func _refresh_hotbar(): + var index = 0 + for child in hotbar.get_children(): + child.disconnect("pressed", self, "_item_pressed") + if not PlayerData.hotbar.keys().has(index): + index += 1 + continue + + var item = PlayerData._find_item_code(PlayerData.hotbar[index]) + child._setup_item(item["ref"]) + child.connect("pressed", self, "_item_pressed", [item]) + index += 1 + +func _send_message(text): + if text.replace(" ", "") == "": return + var color = Globals.cosmetic_data[PlayerData.cosmetics_equipped["primary_color"]]["file"].main_color + color = color.to_html() + + + text = text.replace("[", "") + text = text.replace("]", "") + + var breakdown = text.split(" ") + var final_text = "" + var spoken_text = "" + var colon = true + var current_effect = "none" + + + var drunk_chance = 0.0 + var drunk_max = 0 + if is_instance_valid(player): + drunk_chance = 0.13 * player.drunk_tier + drunk_max = player.drunk_tier + + var line_index = 0 + for line in breakdown: + if line.begins_with("/"): + match line: + "/me": colon = false + "/wag": PlayerData.emit_signal("_wag_toggle") + + elif line.begins_with("["): + continue + + else : + var spoken_add = line + + + + for i in drunk_max: + var cont = true + if randf() < drunk_chance and line.length() > 0: + var d_effect = randi() % 5 + match d_effect: + 0, 1: + var slot = randi() % line.length() + line = line.insert(slot, line[slot]) + spoken_add = line + 2: + var slot = randi() % line.length() + line = line.insert(slot, "'") + spoken_add = line + 3: + var slot = randi() % line.length() + line = line.insert(slot, ",") + spoken_add = line + 4: + var slot = randi() % line.length() + spoken_add = line.insert(slot, " -*HICC*- ") + line = line.insert(slot, "[color=#5a755a][font=res://Assets/Themes/main_font_tiny.tres] -*HICC*- [/font][color=#1a231a]") + cont = false + + if not cont: break + + spoken_text = spoken_text + spoken_add + match current_effect: + "bold": line = "[b]" + line + "[/b]" + + + final_text = final_text + line + if breakdown.size() - 1 != line_index: + spoken_text = spoken_text + " " + final_text = final_text + " " + + line_index += 1 + + var prefix = "" + var suffix = "" + var endcap = "[color=#1a231a]: " + if not colon: + prefix = "[color=#1a231a](" + suffix = ")" + endcap = "[color=#1a231a] " + + var username = Network.STEAM_USERNAME + username = username.replace("[", "") + username = username.replace("]", "") + + var final_color = Color(color) * Color(0.95, 0.9, 0.9) + var final = prefix + "[color=#" + str(final_color.to_html()) + "]" + username + endcap + final_text + suffix + + if final_text != "": Network._send_message(final, chat_local) + if colon and spoken_text != "": emit_signal("_message_sent", spoken_text) + +func _chat_update(): + chat_timer = 210 + gamechat.bbcode_text = str(Network.GAMECHAT) if not chat_local else str(Network.LOCAL_GAMECHAT) + +func _button_message_send(): + _send_message(chat.text) + chat.text = "" + _exit_chat() + +func _request_item_choice(filter_id = [], min_items = 1, max_items = 99, tag_filter = ""): + if popups.has("CHOICE"): return + popups.append("CHOICE") + var ic = preload("res://Scenes/HUD/ItemSelect/item_select.tscn").instance() + ic.tag_filter = tag_filter + ic.filter = filter_id + ic.min_items = min_items + ic.max_items = max_items + add_child(ic) + ic.connect("_finished", self, "_select_finished") + +func _select_finished(items): + popups.erase("CHOICE") + emit_signal("_items_chosen", items) + +func _on_Button_pressed(): + _request_item_choice() + var items = yield (self, "_items_chosen") + print("CHOSEN: ", items) + +func _on_inbox__create_letter(): + popups.append("LETTER") + var p = preload("res://Scenes/HUD/Inbox/letter_popup.tscn").instance() + add_child(p) + p.hud = self + p.connect("_finished", self, "_letter_finished") + +func _letter_finished(): + popups.erase("LETTER") + +func _on_inbox__read_letter(letter): + popups.append("LETTER_READ") + var p = preload("res://Scenes/HUD/Inbox/letter_view.tscn").instance() + add_child(p) + p._load_letter(letter) + p.hud = self + p.connect("_finished", self, "_letter_read_finished") + +func _letter_read_finished(): + popups.erase("LETTER_READ") + +func _on_dialogue__finished(): + _change_menu(MENUS.DEFAULT) + + + + +func _open_minigame(minigame, params = {}, difficulty = 1.0): + if not MINIGAMES.keys().has(minigame): return + if popups.has("MINIGAME_" + str(minigame)): return + + _abort() + popups.append("MINIGAME_" + str(minigame)) + var m = MINIGAMES[minigame].instance() + m.params = params + m.difficulty = difficulty + add_child(m) + var success = yield (m, "_finished") + emit_signal("_minigame_finished", success) + popups.erase("MINIGAME_" + str(minigame)) + +func _abort(): + _change_menu(MENUS.DEFAULT) + _exit_chat() + + + + +func _on_Button4_pressed(): + emit_signal("_player_sit") + +func _play_emote(emote_id, emotion): + emit_signal("_play_emote", emote_id, emotion) + _change_menu(MENUS.DEFAULT) + +func _toggle_chat(extra_arg_0): + chat_local = not extra_arg_0 + _chat_update() + + $"%global_chat".modulate = Color(0.7, 0.7, 0.7) if not extra_arg_0 else Color(1.0, 1.0, 1.0) + $"%local_chat".modulate = Color(0.7, 0.7, 0.7) if extra_arg_0 else Color(1.0, 1.0, 1.0) + +func _on_expand_pressed(): + chat_expand = not chat_expand + + if chat_expand: + $"%expand".icon = preload("res://Assets/Textures/UI/chat_arrow2.png") + else : + $"%expand".icon = preload("res://Assets/Textures/UI/chat_arrow1.png") + +func _on_hide_pressed(): + chat_hide = true +func _on_show_chat_pressed(): + chat_hide = false + + +func _quest_update(): + for child in $"%questbox".get_children(): + child.queue_free() + + for quest in PlayerData.current_quests.keys(): + if PlayerData.current_quests[quest]["active"]: + var entry = preload("res://Scenes/HUD/QuestEntry/quest_entry.tscn").instance() + entry._setup(quest) + $"%questbox".add_child(entry) + +func _quest_toggle(): + $"%questbox".visible = not $"%questbox".visible + $main / in_game / Label / Button.text = ">" if $"%questbox".visible else "<" + +func _on_tent_pressed(): + _change_menu(MENUS.PROP) + +func _on_camera_pressed(): + emit_signal("_freecam_toggle") + + +func _on_status_update_timeout(): + if not is_instance_valid(player): return + + + var tier = 0 + if player.boost_timer > 0 and player.boost_timer < 3600: tier = 1 + elif player.boost_timer > 0: tier = 2 + $main / in_game / static_effects / GridContainer / speedboost._setup(tier if player.boost_amt == 1.3 else 0, player.boost_timer) + $main / in_game / static_effects / GridContainer / speedboost_burst._setup(tier if player.boost_amt == 4.0 else 0, player.boost_timer) + + + tier = 0 + + if player.catch_drink_timer > 0 and player.catch_drink_timer < 3600: tier = 1 + elif player.catch_drink_timer > 0: tier = 2 + $main / in_game / static_effects / GridContainer / catchboost._setup(tier if player.catch_drink_tier == 1 else 0, player.catch_drink_timer) + $main / in_game / static_effects / GridContainer / catchboost_big._setup(tier if player.catch_drink_tier == 2 else 0, player.catch_drink_timer) + $main / in_game / static_effects / GridContainer / catchboost_deluxe._setup(tier if player.catch_drink_tier == 3 else 0, player.catch_drink_timer) + + + tier = 0 + if player.drunk_timer > 0 and player.drunk_timer < 3600: tier = 1 + elif player.drunk_timer > 0: tier = 2 + $main / in_game / static_effects / GridContainer / drunk_tipsy._setup(tier if player.drunk_tier == 1 else 0, player.drunk_timer) + $main / in_game / static_effects / GridContainer / drunk_reg._setup(tier if player.drunk_tier == 2 else 0, player.drunk_timer) + $main / in_game / static_effects / GridContainer / drunk_hammered._setup(tier if player.drunk_tier == 3 else 0, player.drunk_timer) + + +func _tb_sound_play(): + if menu == MENUS.BAIT: GlobalAudio._play_sound("tb_open") + else : GlobalAudio._play_sound("tb_close") + diff --git a/Scenes/HUD/playerhud.tscn b/Scenes/HUD/playerhud.tscn new file mode 100644 index 0000000..9e20a12 --- /dev/null +++ b/Scenes/HUD/playerhud.tscn @@ -0,0 +1,3456 @@ +[gd_scene load_steps=126 format=2] + +[ext_resource path="res://Scenes/HUD/playerhud.gd" type="Script" id=1] +[ext_resource path="res://Scenes/HUD/inventory.gd" type="Script" id=2] +[ext_resource path="res://Scenes/HUD/Esc Menu/esc_menu.tscn" type="PackedScene" id=3] +[ext_resource path="res://Scenes/HUD/inventory_item.tscn" type="PackedScene" id=4] +[ext_resource path="res://Assets/Themes/main.tres" type="Theme" id=5] +[ext_resource path="res://Scenes/HUD/CosmeticMenu/cosmetic_menu.gd" type="Script" id=6] +[ext_resource path="res://Scenes/HUD/Playerlist/playerlist.tscn" type="PackedScene" id=7] +[ext_resource path="res://Scenes/HUD/Inbox/inbox.tscn" type="PackedScene" id=8] +[ext_resource path="res://Assets/Textures/UI/ui_buttons_alt4.png" type="Texture" id=9] +[ext_resource path="res://Assets/Textures/UI/ui_buttons_alt1.png" type="Texture" id=10] +[ext_resource path="res://Assets/Textures/UI/ui_buttons_alt3.png" type="Texture" id=11] +[ext_resource path="res://Assets/Models/Material_003.material" type="Material" id=12] +[ext_resource path="res://Assets/Models/Material_001.material" type="Material" id=13] +[ext_resource path="res://Assets/Models/Material_002.material" type="Material" id=14] +[ext_resource path="res://Assets/world_env.tres" type="Environment" id=15] +[ext_resource path="res://Assets/Textures/UI/newbadge.png" type="Texture" id=16] +[ext_resource path="res://Assets/Textures/UI/badges2.png" type="Texture" id=17] +[ext_resource path="res://Assets/Textures/UI/badges4.png" type="Texture" id=18] +[ext_resource path="res://Assets/Textures/UI/badges5.png" type="Texture" id=19] +[ext_resource path="res://Assets/Textures/UI/badges1.png" type="Texture" id=20] +[ext_resource path="res://Assets/Textures/UI/badges6.png" type="Texture" id=21] +[ext_resource path="res://Scenes/HUD/menu_button.tscn" type="PackedScene" id=22] +[ext_resource path="res://Assets/Textures/UI/ui_buttons_alt2.png" type="Texture" id=23] +[ext_resource path="res://Assets/Materials/teal.tres" type="Material" id=24] +[ext_resource path="res://Assets/Models/base.material" type="Material" id=25] +[ext_resource path="res://Assets/Materials/yellow.tres" type="Material" id=26] +[ext_resource path="res://Assets/Models/dark.material" type="Material" id=27] +[ext_resource path="res://Assets/Models/logo.material" type="Material" id=28] +[ext_resource path="res://Assets/Materials/dark.tres" type="Material" id=29] +[ext_resource path="res://Assets/Models/top.material" type="Material" id=30] +[ext_resource path="res://Assets/Materials/gray.tres" type="Material" id=31] +[ext_resource path="res://Scenes/Singletons/Tooltips/tooltip_node.gd" type="Script" id=32] +[ext_resource path="res://Scenes/HUD/BadgePopup/badge_popup.tscn" type="PackedScene" id=33] +[ext_resource path="res://Scenes/HUD/prop_menu.gd" type="Script" id=34] +[ext_resource path="res://Scenes/HUD/Shop/shop.tscn" type="PackedScene" id=35] +[ext_resource path="res://21cfd70aeac204665e18b6902f06b3b1.png" type="Texture" id=36] +[ext_resource path="res://Assets/Themes/secondary.tres" type="Theme" id=37] +[ext_resource path="res://Assets/Textures/UI/cameraicon.png" type="Texture" id=38] +[ext_resource path="res://Assets/Themes/panel_med.tres" type="StyleBox" id=39] +[ext_resource path="res://Assets/Textures/UI/knot_sep.png" type="Texture" id=40] +[ext_resource path="res://Assets/Themes/panel_green.tres" type="StyleBox" id=41] +[ext_resource path="res://Scenes/HUD/ItemDisplay/item_display.tscn" type="PackedScene" id=42] +[ext_resource path="res://Scenes/HUD/dialogue.gd" type="Script" id=43] +[ext_resource path="res://Scenes/HUD/BaitButton/bait_showcase.tscn" type="PackedScene" id=44] +[ext_resource path="res://Scenes/HUD/journal.gd" type="Script" id=45] +[ext_resource path="res://Scenes/HUD/EmoteWheel/emote_wheel.tscn" type="PackedScene" id=46] +[ext_resource path="res://Assets/Textures/UI/chat_arrow1.png" type="Texture" id=47] +[ext_resource path="res://Scenes/HUD/ArenaMenu/arena_menu.tscn" type="PackedScene" id=48] +[ext_resource path="res://Scenes/HUD/NotifPopup/notif_popup.tscn" type="PackedScene" id=49] +[ext_resource path="res://Scenes/HUD/StatusEffectbox/statusfxbox.tscn" type="PackedScene" id=50] +[ext_resource path="res://Assets/Textures/UI/effect_icons2.png" type="Texture" id=51] +[ext_resource path="res://Assets/Textures/UI/effect_icons1.png" type="Texture" id=52] +[ext_resource path="res://Assets/Textures/UI/effect_icons3.png" type="Texture" id=53] +[ext_resource path="res://Assets/Textures/UI/effect_icons5.png" type="Texture" id=54] +[ext_resource path="res://Assets/Textures/UI/effect_icons6.png" type="Texture" id=55] +[ext_resource path="res://Assets/Textures/UI/effect_icons4.png" type="Texture" id=56] +[ext_resource path="res://Assets/Textures/CosmeticIcons/cosmetic_icons1.png" type="Texture" id=57] +[ext_resource path="res://Assets/Textures/UI/effect_icons8.png" type="Texture" id=58] +[ext_resource path="res://Assets/Textures/UI/cloud1.png" type="Texture" id=59] +[ext_resource path="res://Assets/Textures/UI/cloud2.png" type="Texture" id=60] +[ext_resource path="res://Assets/Textures/UI/cloud3.png" type="Texture" id=61] +[ext_resource path="res://Assets/Textures/UI/cloud4.png" type="Texture" id=62] +[ext_resource path="res://Assets/Textures/UI/cloud5.png" type="Texture" id=63] +[ext_resource path="res://Scenes/HUD/item_help.gd" type="Script" id=64] +[ext_resource path="res://Assets/Materials/dark_brown_alt.tres" type="Material" id=65] +[ext_resource path="res://Scenes/HUD/item_showcase.gd" type="Script" id=66] +[ext_resource path="res://Assets/Materials/very_dark_brown.tres" type="Material" id=67] +[ext_resource path="res://Assets/ParticleResources/quality_fx.tres" type="Material" id=68] +[ext_resource path="res://Assets/Textures/Particles/sparkle1.png" type="Texture" id=69] +[ext_resource path="res://Assets/Textures/Particles/sparkle3.png" type="Texture" id=70] +[ext_resource path="res://Assets/Textures/Particles/sparkle2.png" type="Texture" id=71] +[ext_resource path="res://Scenes/HUD/voice_modif.gd" type="Script" id=72] +[ext_resource path="res://Scenes/Menus/Main Menu/ui_generic_button.gd" type="Script" id=73] +[ext_resource path="res://Assets/Textures/UI/chat_arrow3.png" type="Texture" id=74] +[ext_resource path="res://Assets/Textures/UI/chat_arrow4.png" type="Texture" id=75] +[ext_resource path="res://Assets/OpenDyslexic/OpenDyslexic-Italic.woff" type="DynamicFontData" id=76] +[ext_resource path="res://Assets/OpenDyslexic/OpenDyslexic-Bold.woff" type="DynamicFontData" id=77] +[ext_resource path="res://Assets/OpenDyslexic/OpenDyslexicMono-Regular.otf" type="DynamicFontData" id=78] +[ext_resource path="res://Assets/OpenDyslexic/OpenDyslexic-Regular.woff" type="DynamicFontData" id=79] +[ext_resource path="res://Assets/OpenDyslexic/OpenDyslexic-Bold-Italic.woff" type="DynamicFontData" id=80] + +[sub_resource type="DynamicFont" id=451] +size = 18 +font_data = ExtResource( 79 ) + +[sub_resource type="DynamicFont" id=446] +size = 25 +font_data = ExtResource( 78 ) + +[sub_resource type="DynamicFont" id=447] +size = 25 +outline_color = Color( 0.454902, 0.329412, 0.180392, 1 ) +font_data = ExtResource( 80 ) + +[sub_resource type="DynamicFont" id=448] +size = 25 +outline_color = Color( 0.454902, 0.329412, 0.180392, 1 ) +font_data = ExtResource( 76 ) + +[sub_resource type="DynamicFont" id=449] +size = 25 +outline_color = Color( 1, 0.933333, 0.835294, 1 ) +font_data = ExtResource( 77 ) + +[sub_resource type="DynamicFont" id=450] +size = 25 +outline_color = Color( 0.435294, 0.556863, 0.435294, 1 ) +font_data = ExtResource( 79 ) + +[sub_resource type="AnimatedTexture" id=21] +flags = 2 +frames = 5 +pause = true +frame_0/texture = ExtResource( 59 ) +frame_1/texture = ExtResource( 60 ) +frame_1/delay_sec = 0.0 +frame_2/texture = ExtResource( 61 ) +frame_2/delay_sec = 0.0 +frame_3/texture = ExtResource( 62 ) +frame_3/delay_sec = 0.0 +frame_4/texture = ExtResource( 63 ) +frame_4/delay_sec = 0.0 + +[sub_resource type="World" id=5] +environment = ExtResource( 15 ) + +[sub_resource type="ArrayMesh" id=1] +resource_name = "backpack_Cube001" +surfaces/0 = { +"aabb": AABB( -2.06388, -2, -0.738104, 4.12775, 4.85893, 2.27863 ), +"array_data": PoolByteArray( 53, 73, 213, 191, 21, 243, 240, 191, 153, 128, 100, 63, 141, 245, 245, 121, 0, 54, 0, 60, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 53, 73, 213, 191, 21, 243, 240, 191, 153, 128, 100, 63, 237, 149, 106, 53, 0, 48, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 53, 73, 213, 191, 21, 243, 240, 191, 153, 128, 100, 63, 239, 247, 244, 116, 0, 54, 0, 0, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 192, 194, 205, 191, 204, 75, 166, 63, 254, 59, 87, 63, 161, 9, 13, 121, 0, 57, 0, 60, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 192, 194, 205, 191, 204, 75, 166, 63, 254, 59, 87, 63, 214, 13, 26, 117, 0, 57, 0, 0, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 192, 194, 205, 191, 204, 75, 166, 63, 254, 59, 87, 63, 226, 28, 182, 33, 0, 59, 0, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 95, 218, 208, 191, 162, 116, 239, 191, 100, 231, 157, 190, 132, 150, 242, 119, 0, 54, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 95, 218, 208, 191, 162, 116, 239, 191, 100, 231, 157, 190, 235, 149, 109, 49, 0, 48, 0, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 95, 218, 208, 191, 162, 116, 239, 191, 100, 231, 157, 190, 6, 134, 127, 63, 0, 48, 0, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 234, 83, 201, 191, 37, 122, 252, 63, 100, 231, 157, 190, 137, 13, 7, 121, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 234, 83, 201, 191, 37, 122, 252, 63, 100, 231, 157, 190, 201, 71, 185, 35, 0, 59, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 234, 83, 201, 191, 37, 122, 252, 63, 100, 231, 157, 190, 134, 109, 8, 120, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 210, 81, 223, 191, 85, 122, 135, 191, 18, 126, 94, 63, 131, 1, 1, 126, 85, 55, 0, 60, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 210, 81, 223, 191, 85, 122, 135, 191, 18, 126, 94, 63, 141, 245, 243, 121, 85, 55, 0, 60, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 210, 81, 223, 191, 85, 122, 135, 191, 18, 126, 94, 63, 227, 0, 1, 126, 85, 55, 0, 0, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 210, 81, 223, 191, 85, 122, 135, 191, 18, 126, 94, 63, 227, 0, 1, 126, 85, 55, 0, 0, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 210, 81, 223, 191, 85, 122, 135, 191, 18, 126, 94, 63, 239, 247, 234, 112, 85, 55, 0, 0, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 191, 252, 237, 92, 62, 18, 126, 94, 63, 131, 1, 1, 126, 85, 56, 0, 60, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 191, 252, 237, 92, 62, 18, 126, 94, 63, 161, 9, 14, 121, 85, 56, 0, 60, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 191, 252, 237, 92, 62, 18, 126, 94, 63, 214, 13, 25, 119, 85, 56, 0, 0, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 191, 252, 237, 92, 62, 18, 126, 94, 63, 227, 0, 1, 126, 85, 56, 0, 0, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 191, 252, 237, 92, 62, 18, 126, 94, 63, 227, 0, 1, 125, 85, 56, 0, 0, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 213, 96, 216, 191, 149, 225, 104, 62, 100, 231, 157, 190, 137, 13, 8, 122, 85, 56, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 213, 96, 216, 191, 149, 225, 104, 62, 100, 231, 157, 190, 130, 153, 2, 126, 85, 56, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 213, 96, 216, 191, 149, 225, 104, 62, 100, 231, 157, 190, 134, 109, 1, 123, 85, 56, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 213, 96, 216, 191, 149, 225, 104, 62, 100, 231, 157, 190, 252, 120, 127, 193, 85, 56, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 213, 96, 216, 191, 149, 225, 104, 62, 100, 231, 157, 190, 126, 133, 127, 63, 85, 56, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 252, 226, 218, 191, 226, 251, 133, 191, 100, 231, 157, 190, 130, 153, 2, 126, 85, 55, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 252, 226, 218, 191, 226, 251, 133, 191, 100, 231, 157, 190, 132, 150, 245, 121, 85, 55, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 252, 226, 218, 191, 226, 251, 133, 191, 100, 231, 157, 190, 126, 133, 127, 63, 85, 55, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 216, 60, 243, 190, 141, 129, 254, 191, 172, 86, 219, 190, 255, 130, 126, 63, 170, 52, 0, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 216, 60, 243, 190, 141, 129, 254, 191, 172, 86, 219, 190, 1, 129, 127, 63, 170, 52, 0, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 216, 60, 243, 190, 141, 129, 254, 191, 172, 86, 219, 190, 126, 129, 254, 125, 0, 54, 170, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 216, 60, 243, 190, 141, 129, 254, 191, 172, 86, 219, 190, 127, 127, 0, 126, 0, 54, 170, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 130, 26, 124, 191, 141, 129, 254, 191, 172, 86, 219, 190, 132, 150, 240, 118, 0, 54, 85, 57, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 130, 26, 124, 191, 141, 129, 254, 191, 172, 86, 219, 190, 235, 149, 110, 46, 170, 50, 0, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 130, 26, 124, 191, 141, 129, 254, 191, 172, 86, 219, 190, 1, 129, 127, 63, 170, 50, 0, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 130, 26, 124, 191, 141, 129, 254, 191, 172, 86, 219, 190, 126, 129, 249, 123, 0, 54, 85, 57, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 30, 213, 134, 191, 47, 91, 24, 64, 212, 245, 129, 190, 171, 213, 127, 63, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 30, 213, 134, 191, 47, 91, 24, 64, 212, 245, 129, 190, 206, 75, 162, 24, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 30, 213, 134, 191, 47, 91, 24, 64, 212, 245, 129, 190, 199, 95, 169, 43, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 30, 213, 134, 191, 47, 91, 24, 64, 212, 245, 129, 190, 96, 143, 127, 63, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 60, 55, 238, 190, 52, 57, 41, 64, 212, 245, 129, 190, 199, 95, 169, 43, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 60, 55, 238, 190, 52, 57, 41, 64, 212, 245, 129, 190, 230, 98, 165, 51, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 60, 55, 238, 190, 52, 57, 41, 64, 212, 245, 129, 190, 96, 143, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 60, 55, 238, 190, 52, 57, 41, 64, 212, 245, 129, 190, 83, 41, 127, 193, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 130, 191, 0, 0, 0, 192, 120, 87, 102, 63, 237, 149, 107, 53, 170, 50, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 130, 191, 0, 0, 0, 192, 120, 87, 102, 63, 239, 247, 237, 113, 0, 54, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 130, 191, 0, 0, 0, 192, 120, 87, 102, 63, 0, 129, 127, 63, 170, 50, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 130, 191, 0, 0, 0, 192, 120, 87, 102, 63, 0, 238, 218, 101, 0, 54, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 2, 191, 0, 0, 0, 192, 120, 87, 102, 63, 0, 129, 127, 63, 170, 52, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 2, 191, 0, 0, 0, 192, 120, 87, 102, 63, 0, 238, 237, 109, 0, 54, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 2, 191, 0, 0, 0, 192, 120, 87, 102, 63, 0, 238, 255, 117, 0, 54, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 24, 124, 2, 191, 0, 149, 251, 63, 237, 189, 120, 63, 239, 39, 169, 43, 170, 57, 0, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 24, 124, 2, 191, 0, 149, 251, 63, 237, 189, 120, 63, 253, 17, 234, 124, 0, 57, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 24, 124, 2, 191, 0, 149, 251, 63, 237, 189, 120, 63, 0, 10, 243, 125, 0, 57, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 24, 124, 2, 191, 0, 149, 251, 63, 237, 189, 120, 63, 0, 46, 130, 63, 170, 57, 0, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 2, 138, 191, 4, 249, 218, 63, 235, 189, 120, 63, 214, 13, 39, 103, 0, 57, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 2, 138, 191, 4, 249, 218, 63, 235, 189, 120, 63, 226, 28, 178, 34, 85, 58, 0, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 2, 138, 191, 4, 249, 218, 63, 235, 189, 120, 63, 239, 39, 169, 43, 85, 58, 0, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 2, 138, 191, 4, 249, 218, 63, 235, 189, 120, 63, 253, 17, 51, 106, 0, 57, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 38, 28, 5, 191, 100, 99, 179, 191, 255, 255, 127, 63, 0, 238, 255, 117, 85, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 38, 28, 5, 191, 100, 99, 179, 191, 255, 255, 127, 63, 0, 238, 0, 117, 85, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 243, 27, 169, 191, 100, 99, 179, 191, 255, 255, 127, 63, 227, 0, 1, 126, 85, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 243, 27, 169, 191, 100, 99, 179, 191, 255, 255, 127, 63, 239, 247, 216, 106, 85, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 243, 27, 169, 191, 100, 99, 179, 191, 255, 255, 127, 63, 0, 238, 237, 109, 85, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 8, 198, 252, 190, 184, 103, 211, 63, 255, 255, 127, 63, 253, 17, 23, 123, 85, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 8, 198, 252, 190, 184, 103, 211, 63, 255, 255, 127, 63, 0, 10, 241, 124, 85, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 188, 204, 157, 191, 153, 244, 191, 63, 222, 3, 131, 63, 214, 13, 35, 107, 85, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 188, 204, 157, 191, 153, 244, 191, 63, 222, 3, 131, 63, 227, 0, 14, 117, 85, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 188, 204, 157, 191, 153, 244, 191, 63, 222, 3, 131, 63, 253, 17, 58, 102, 85, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 105, 174, 143, 191, 226, 251, 133, 191, 172, 86, 219, 190, 130, 153, 2, 126, 85, 55, 85, 57, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 105, 174, 143, 191, 226, 251, 133, 191, 172, 86, 219, 190, 132, 150, 243, 120, 85, 55, 85, 57, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 105, 174, 143, 191, 226, 251, 133, 191, 172, 86, 219, 190, 125, 129, 3, 126, 85, 55, 85, 57, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 105, 174, 143, 191, 226, 251, 133, 191, 172, 86, 219, 190, 126, 129, 240, 118, 85, 55, 85, 57, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 114, 69, 253, 190, 226, 251, 133, 191, 172, 86, 219, 190, 125, 129, 2, 126, 85, 55, 170, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 114, 69, 253, 190, 226, 251, 133, 191, 172, 86, 219, 190, 125, 129, 3, 126, 85, 55, 170, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 114, 69, 253, 190, 226, 251, 133, 191, 172, 86, 219, 190, 126, 129, 244, 120, 85, 55, 170, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 114, 69, 253, 190, 226, 251, 133, 191, 172, 86, 219, 190, 127, 127, 254, 125, 85, 55, 170, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 66, 44, 141, 191, 175, 250, 24, 63, 128, 50, 232, 190, 130, 153, 2, 126, 85, 56, 85, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 66, 44, 141, 191, 175, 250, 24, 63, 128, 50, 232, 190, 134, 109, 0, 123, 85, 56, 85, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 66, 44, 141, 191, 175, 250, 24, 63, 128, 50, 232, 190, 139, 125, 3, 120, 85, 56, 85, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 66, 44, 141, 191, 175, 250, 24, 63, 128, 50, 232, 190, 125, 129, 3, 126, 85, 56, 85, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 214, 60, 243, 190, 175, 250, 24, 63, 128, 50, 232, 190, 139, 125, 4, 120, 85, 56, 170, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 214, 60, 243, 190, 175, 250, 24, 63, 128, 50, 232, 190, 138, 126, 0, 122, 85, 56, 170, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 214, 60, 243, 190, 175, 250, 24, 63, 128, 50, 232, 190, 125, 129, 3, 126, 85, 56, 170, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 214, 60, 243, 190, 175, 250, 24, 63, 128, 50, 232, 190, 125, 129, 3, 126, 85, 56, 170, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 38, 28, 5, 191, 100, 99, 179, 191, 216, 148, 175, 63, 245, 231, 254, 111, 85, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 38, 28, 5, 191, 100, 99, 179, 191, 216, 148, 175, 63, 246, 166, 127, 193, 85, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 38, 28, 5, 191, 100, 99, 179, 191, 216, 148, 175, 63, 0, 129, 127, 63, 85, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 38, 28, 5, 191, 100, 99, 179, 191, 216, 148, 175, 63, 0, 226, 1, 111, 85, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 113, 40, 149, 191, 26, 241, 165, 191, 147, 42, 169, 63, 195, 238, 127, 193, 85, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 113, 40, 149, 191, 26, 241, 165, 191, 147, 42, 169, 63, 245, 231, 231, 104, 85, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 113, 40, 149, 191, 26, 241, 165, 191, 147, 42, 169, 63, 246, 166, 127, 193, 85, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 8, 198, 252, 190, 167, 206, 181, 63, 135, 27, 172, 63, 244, 72, 127, 193, 85, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 8, 198, 252, 190, 167, 206, 181, 63, 135, 27, 172, 63, 248, 15, 16, 126, 85, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 8, 198, 252, 190, 167, 206, 181, 63, 135, 27, 172, 63, 0, 22, 23, 126, 85, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 8, 198, 252, 190, 167, 206, 181, 63, 135, 27, 172, 63, 0, 77, 77, 126, 85, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 91, 222, 134, 191, 119, 119, 171, 63, 135, 27, 172, 63, 192, 27, 127, 193, 85, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 91, 222, 134, 191, 119, 119, 171, 63, 135, 27, 172, 63, 244, 72, 127, 193, 85, 56, 247, 48, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 91, 222, 134, 191, 119, 119, 171, 63, 135, 27, 172, 63, 248, 15, 196, 103, 85, 56, 247, 48, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 60, 188, 151, 191, 15, 110, 117, 63, 248, 127, 172, 63, 180, 0, 1, 130, 55, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 60, 188, 151, 191, 15, 110, 117, 63, 248, 127, 172, 63, 192, 27, 50, 135, 55, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 60, 188, 151, 191, 15, 110, 117, 63, 248, 127, 172, 63, 240, 0, 1, 126, 55, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 60, 188, 151, 191, 15, 110, 117, 63, 248, 127, 172, 63, 248, 15, 179, 94, 55, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 196, 82, 166, 191, 63, 86, 129, 63, 255, 255, 127, 63, 227, 0, 12, 118, 56, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 71, 96, 254, 190, 82, 134, 126, 63, 139, 85, 185, 63, 240, 0, 1, 126, 64, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 71, 96, 254, 190, 82, 134, 126, 63, 139, 85, 185, 63, 248, 15, 211, 111, 64, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 71, 96, 254, 190, 82, 134, 126, 63, 139, 85, 185, 63, 0, 0, 0, 126, 64, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 80, 232, 141, 191, 201, 18, 186, 63, 61, 32, 141, 63, 192, 27, 50, 135, 85, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 80, 232, 141, 191, 201, 18, 186, 63, 61, 32, 141, 63, 244, 72, 127, 193, 85, 56, 162, 47, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 8, 198, 252, 190, 148, 190, 201, 63, 61, 32, 141, 63, 244, 72, 127, 193, 85, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 8, 198, 252, 190, 148, 190, 201, 63, 61, 32, 141, 63, 0, 77, 127, 193, 85, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 38, 28, 5, 191, 100, 99, 179, 191, 197, 170, 156, 63, 246, 166, 127, 193, 85, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 38, 28, 5, 191, 100, 99, 179, 191, 197, 170, 156, 63, 0, 129, 127, 130, 85, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 41, 156, 163, 191, 68, 174, 174, 191, 95, 68, 150, 63, 195, 238, 231, 111, 85, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 41, 156, 163, 191, 68, 174, 174, 191, 95, 68, 150, 63, 246, 166, 127, 193, 85, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 163, 84, 166, 191, 70, 13, 124, 63, 252, 63, 150, 63, 180, 0, 1, 130, 55, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 163, 84, 166, 191, 70, 13, 124, 63, 252, 63, 150, 63, 192, 27, 50, 135, 55, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 91, 183, 167, 191, 148, 220, 194, 190, 255, 255, 127, 63, 227, 0, 1, 126, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 91, 183, 167, 191, 148, 220, 194, 190, 255, 255, 127, 63, 227, 0, 0, 126, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 91, 183, 167, 191, 148, 220, 194, 190, 255, 255, 127, 63, 227, 0, 1, 126, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 37, 38, 2, 191, 192, 2, 199, 190, 139, 85, 185, 63, 240, 0, 1, 126, 235, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 37, 38, 2, 191, 192, 2, 199, 190, 139, 85, 185, 63, 0, 0, 1, 126, 235, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 244, 30, 153, 191, 2, 27, 208, 190, 91, 132, 172, 63, 180, 0, 1, 130, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 244, 30, 153, 191, 2, 27, 208, 190, 91, 132, 172, 63, 240, 0, 1, 126, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 75, 184, 167, 191, 204, 123, 201, 190, 46, 66, 150, 63, 180, 0, 1, 130, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 161, 199, 168, 191, 39, 125, 148, 191, 255, 255, 127, 63, 227, 0, 1, 126, 118, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 233, 104, 4, 191, 242, 187, 148, 191, 139, 85, 185, 63, 245, 231, 1, 112, 120, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 233, 104, 4, 191, 242, 187, 148, 191, 139, 85, 185, 63, 0, 226, 0, 111, 120, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 204, 45, 154, 191, 148, 69, 149, 191, 180, 135, 172, 63, 195, 238, 231, 111, 118, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 204, 45, 154, 191, 148, 69, 149, 191, 180, 135, 172, 63, 245, 231, 237, 106, 118, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 217, 199, 168, 191, 94, 225, 148, 191, 218, 67, 150, 63, 195, 238, 231, 111, 118, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 53, 73, 213, 191, 21, 243, 240, 191, 241, 175, 67, 63, 141, 245, 245, 121, 0, 54, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 53, 73, 213, 191, 21, 243, 240, 191, 241, 175, 67, 63, 237, 149, 106, 53, 0, 48, 120, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 53, 73, 213, 191, 21, 243, 240, 191, 241, 175, 67, 63, 237, 149, 107, 53, 0, 48, 120, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 53, 73, 213, 191, 21, 243, 240, 191, 241, 175, 67, 63, 4, 134, 127, 63, 0, 48, 120, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 192, 194, 205, 191, 115, 53, 229, 63, 13, 85, 48, 63, 140, 8, 13, 123, 0, 57, 195, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 192, 194, 205, 191, 115, 53, 229, 63, 13, 85, 48, 63, 216, 51, 185, 35, 0, 59, 120, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 210, 81, 223, 191, 85, 122, 135, 191, 240, 175, 67, 63, 131, 1, 1, 126, 85, 55, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 210, 81, 223, 191, 85, 122, 135, 191, 240, 175, 67, 63, 141, 245, 243, 121, 85, 55, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 210, 81, 223, 191, 85, 122, 135, 191, 240, 175, 67, 63, 253, 0, 127, 193, 85, 55, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 191, 252, 237, 92, 62, 240, 175, 67, 63, 131, 1, 1, 126, 85, 56, 195, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 191, 252, 237, 92, 62, 240, 175, 67, 63, 140, 8, 8, 120, 85, 56, 195, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 191, 252, 237, 92, 62, 240, 175, 67, 63, 252, 122, 127, 63, 85, 56, 195, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 191, 252, 237, 92, 62, 240, 175, 67, 63, 253, 0, 127, 193, 85, 56, 195, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 24, 124, 2, 191, 83, 63, 29, 64, 15, 85, 48, 63, 229, 62, 169, 43, 170, 57, 120, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 24, 124, 2, 191, 83, 63, 29, 64, 15, 85, 48, 63, 0, 71, 131, 63, 170, 57, 120, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 2, 138, 191, 84, 241, 12, 64, 14, 85, 48, 63, 216, 51, 185, 35, 85, 58, 120, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 2, 138, 191, 84, 241, 12, 64, 14, 85, 48, 63, 229, 62, 169, 43, 85, 58, 120, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 130, 191, 0, 0, 0, 192, 241, 175, 67, 63, 237, 149, 107, 53, 170, 50, 120, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 130, 191, 0, 0, 0, 192, 241, 175, 67, 63, 237, 149, 107, 53, 170, 50, 120, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 130, 191, 0, 0, 0, 192, 241, 175, 67, 63, 0, 129, 127, 63, 170, 50, 120, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 2, 191, 0, 0, 0, 192, 241, 175, 67, 63, 0, 129, 127, 63, 170, 52, 120, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 192, 194, 205, 191, 139, 222, 249, 63, 19, 75, 229, 62, 140, 8, 11, 122, 0, 57, 93, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 192, 194, 205, 191, 139, 222, 249, 63, 19, 75, 229, 62, 137, 13, 7, 120, 0, 57, 93, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 192, 194, 205, 191, 139, 222, 249, 63, 19, 75, 229, 62, 201, 71, 185, 35, 0, 59, 69, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 192, 194, 205, 191, 139, 222, 249, 63, 19, 75, 229, 62, 216, 51, 185, 35, 0, 59, 69, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 99, 241, 2, 192, 69, 71, 132, 61, 138, 15, 55, 63, 131, 1, 1, 126, 85, 56, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 99, 241, 2, 192, 69, 71, 132, 61, 138, 15, 55, 63, 196, 66, 127, 63, 85, 56, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 99, 241, 2, 192, 69, 71, 132, 61, 138, 15, 55, 63, 228, 0, 127, 193, 85, 56, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 191, 252, 237, 92, 62, 61, 166, 186, 62, 140, 8, 8, 120, 85, 56, 93, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 191, 252, 237, 92, 62, 61, 166, 186, 62, 137, 13, 8, 122, 85, 56, 93, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 191, 252, 237, 92, 62, 61, 166, 186, 62, 252, 120, 127, 193, 85, 56, 93, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 191, 252, 237, 92, 62, 61, 166, 186, 62, 252, 122, 127, 63, 85, 56, 93, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 53, 73, 213, 191, 21, 243, 240, 191, 62, 166, 186, 62, 235, 149, 107, 53, 0, 48, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 53, 73, 213, 191, 21, 243, 240, 191, 62, 166, 186, 62, 237, 149, 107, 53, 0, 48, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 53, 73, 213, 191, 21, 243, 240, 191, 62, 166, 186, 62, 4, 134, 127, 63, 0, 48, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 53, 73, 213, 191, 21, 243, 240, 191, 62, 166, 186, 62, 6, 134, 127, 63, 0, 48, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 22, 246, 243, 191, 102, 76, 136, 191, 137, 156, 66, 63, 228, 0, 127, 193, 85, 55, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 22, 246, 243, 191, 102, 76, 136, 191, 137, 156, 66, 63, 253, 0, 127, 193, 85, 55, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 60, 55, 238, 190, 152, 139, 40, 64, 48, 73, 219, 189, 218, 86, 169, 43, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 60, 55, 238, 190, 152, 139, 40, 64, 48, 73, 219, 189, 230, 98, 130, 122, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 60, 55, 238, 190, 152, 139, 40, 64, 48, 73, 219, 189, 246, 23, 127, 193, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 60, 55, 238, 190, 152, 139, 40, 64, 48, 73, 219, 189, 83, 41, 127, 193, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 30, 213, 134, 191, 147, 173, 23, 64, 48, 73, 219, 189, 171, 213, 127, 63, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 30, 213, 134, 191, 147, 173, 23, 64, 48, 73, 219, 189, 206, 75, 236, 56, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 30, 213, 134, 191, 147, 173, 23, 64, 48, 73, 219, 189, 218, 86, 169, 43, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 30, 213, 134, 191, 147, 173, 23, 64, 48, 73, 219, 189, 246, 23, 127, 193, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 130, 191, 0, 0, 0, 192, 62, 166, 186, 62, 235, 149, 108, 49, 170, 50, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 130, 191, 0, 0, 0, 192, 62, 166, 186, 62, 237, 149, 107, 53, 170, 50, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 130, 191, 0, 0, 0, 192, 62, 166, 186, 62, 0, 129, 127, 63, 170, 50, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 130, 191, 0, 0, 0, 192, 62, 166, 186, 62, 1, 129, 127, 63, 170, 50, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 2, 191, 0, 0, 0, 192, 62, 166, 186, 62, 255, 130, 126, 63, 170, 52, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 2, 191, 0, 0, 0, 192, 62, 166, 186, 62, 0, 129, 127, 63, 170, 52, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 2, 191, 0, 0, 0, 192, 62, 166, 186, 62, 1, 129, 127, 63, 170, 52, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 151, 124, 140, 191, 156, 228, 21, 64, 98, 231, 157, 190, 201, 71, 185, 35, 85, 58, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 151, 124, 140, 191, 156, 228, 21, 64, 98, 231, 157, 190, 206, 75, 177, 35, 85, 58, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 151, 124, 140, 191, 156, 228, 21, 64, 98, 231, 157, 190, 199, 95, 169, 43, 85, 58, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 151, 124, 140, 191, 156, 228, 21, 64, 98, 231, 157, 190, 134, 109, 5, 121, 0, 57, 85, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 151, 124, 140, 191, 156, 228, 21, 64, 98, 231, 157, 190, 139, 125, 0, 122, 0, 57, 85, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 25, 5, 237, 191, 14, 81, 98, 62, 50, 14, 160, 190, 195, 67, 127, 63, 85, 56, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 25, 5, 237, 191, 14, 81, 98, 62, 50, 14, 160, 190, 130, 97, 127, 63, 85, 56, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 25, 5, 237, 191, 14, 81, 98, 62, 50, 14, 160, 190, 252, 120, 127, 193, 85, 56, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 25, 5, 237, 191, 14, 81, 98, 62, 50, 14, 160, 190, 126, 133, 127, 63, 85, 56, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 239, 115, 241, 191, 117, 93, 86, 62, 137, 156, 66, 63, 196, 66, 127, 63, 85, 56, 195, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 239, 115, 241, 191, 117, 93, 86, 62, 137, 156, 66, 63, 228, 0, 127, 193, 85, 56, 195, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 239, 115, 241, 191, 117, 93, 86, 62, 137, 156, 66, 63, 252, 122, 127, 63, 85, 56, 195, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 239, 115, 241, 191, 117, 93, 86, 62, 137, 156, 66, 63, 253, 0, 127, 193, 85, 56, 195, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 109, 235, 144, 191, 206, 150, 20, 64, 19, 75, 229, 62, 201, 71, 185, 35, 85, 58, 69, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 109, 235, 144, 191, 206, 150, 20, 64, 19, 75, 229, 62, 206, 75, 242, 58, 85, 58, 69, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 109, 235, 144, 191, 206, 150, 20, 64, 19, 75, 229, 62, 216, 51, 185, 35, 85, 58, 69, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 109, 235, 144, 191, 206, 150, 20, 64, 19, 75, 229, 62, 218, 86, 169, 43, 85, 58, 69, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 109, 235, 144, 191, 206, 150, 20, 64, 19, 75, 229, 62, 229, 62, 168, 43, 85, 58, 69, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 58, 84, 138, 191, 163, 223, 27, 64, 92, 151, 142, 190, 171, 213, 127, 63, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 58, 84, 138, 191, 163, 223, 27, 64, 92, 151, 142, 190, 180, 209, 127, 193, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 58, 84, 138, 191, 163, 223, 27, 64, 92, 151, 142, 190, 96, 143, 127, 63, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 58, 84, 138, 191, 163, 223, 27, 64, 92, 151, 142, 190, 77, 152, 127, 63, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 172, 51, 252, 190, 168, 189, 44, 64, 92, 151, 142, 190, 96, 143, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 172, 51, 252, 190, 168, 189, 44, 64, 92, 151, 142, 190, 77, 152, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 172, 51, 252, 190, 168, 189, 44, 64, 92, 151, 142, 190, 79, 50, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 172, 51, 252, 190, 168, 189, 44, 64, 92, 151, 142, 190, 83, 41, 127, 193, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 108, 189, 2, 191, 146, 166, 46, 64, 4, 209, 10, 190, 237, 43, 127, 193, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 108, 189, 2, 191, 146, 166, 46, 64, 4, 209, 10, 190, 246, 23, 127, 193, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 108, 189, 2, 191, 146, 166, 46, 64, 4, 209, 10, 190, 79, 50, 127, 63, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 108, 189, 2, 191, 146, 166, 46, 64, 4, 209, 10, 190, 83, 41, 127, 193, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 6, 166, 140, 191, 141, 200, 29, 64, 4, 209, 10, 190, 171, 213, 127, 63, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 6, 166, 140, 191, 141, 200, 29, 64, 4, 209, 10, 190, 180, 209, 127, 193, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 6, 166, 140, 191, 141, 200, 29, 64, 4, 209, 10, 190, 237, 43, 127, 193, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 6, 166, 140, 191, 141, 200, 29, 64, 4, 209, 10, 190, 246, 23, 127, 193, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 114, 27, 143, 191, 171, 191, 30, 64, 96, 145, 170, 190, 180, 209, 127, 193, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 114, 27, 143, 191, 171, 191, 30, 64, 96, 145, 170, 190, 0, 127, 127, 63, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 114, 27, 143, 191, 171, 191, 30, 64, 96, 145, 170, 190, 77, 152, 127, 63, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 71, 168, 7, 191, 176, 157, 47, 64, 96, 145, 170, 190, 0, 127, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 71, 168, 7, 191, 176, 157, 47, 64, 96, 145, 170, 190, 77, 152, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 71, 168, 7, 191, 176, 157, 47, 64, 96, 145, 170, 190, 79, 50, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 16, 235, 19, 191, 32, 199, 53, 64, 244, 75, 110, 190, 237, 43, 127, 193, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 16, 235, 19, 191, 32, 199, 53, 64, 244, 75, 110, 190, 0, 127, 127, 63, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 16, 235, 19, 191, 32, 199, 53, 64, 244, 75, 110, 190, 79, 50, 127, 63, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 216, 60, 149, 191, 27, 233, 36, 64, 244, 75, 110, 190, 180, 209, 127, 193, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 216, 60, 149, 191, 27, 233, 36, 64, 244, 75, 110, 190, 237, 43, 127, 193, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 216, 60, 149, 191, 27, 233, 36, 64, 244, 75, 110, 190, 0, 127, 127, 63, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 114, 27, 143, 191, 171, 191, 30, 64, 96, 145, 170, 190, 175, 216, 127, 193, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 114, 27, 143, 191, 171, 191, 30, 64, 96, 145, 170, 190, 0, 127, 127, 63, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 114, 27, 143, 191, 171, 191, 30, 64, 96, 145, 170, 190, 43, 167, 127, 63, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 71, 168, 7, 191, 176, 157, 47, 64, 96, 145, 170, 190, 0, 127, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 71, 168, 7, 191, 176, 157, 47, 64, 96, 145, 170, 190, 43, 167, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 71, 168, 7, 191, 176, 157, 47, 64, 96, 145, 170, 190, 86, 45, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 16, 235, 19, 191, 32, 199, 53, 64, 244, 75, 110, 190, 220, 81, 127, 193, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 16, 235, 19, 191, 32, 199, 53, 64, 244, 75, 110, 190, 0, 127, 127, 63, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 16, 235, 19, 191, 32, 199, 53, 64, 244, 75, 110, 190, 86, 45, 127, 63, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 216, 60, 149, 191, 27, 233, 36, 64, 244, 75, 110, 190, 175, 216, 127, 193, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 216, 60, 149, 191, 27, 233, 36, 64, 244, 75, 110, 190, 220, 81, 127, 193, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 216, 60, 149, 191, 27, 233, 36, 64, 244, 75, 110, 190, 0, 127, 127, 63, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 48, 58, 144, 191, 134, 189, 30, 64, 200, 93, 195, 190, 172, 215, 127, 193, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 48, 58, 144, 191, 134, 189, 30, 64, 200, 93, 195, 190, 175, 216, 127, 193, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 48, 58, 144, 191, 134, 189, 30, 64, 200, 93, 195, 190, 30, 188, 127, 193, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 48, 58, 144, 191, 134, 189, 30, 64, 200, 93, 195, 190, 43, 167, 127, 63, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 195, 229, 9, 191, 139, 155, 47, 64, 200, 93, 195, 190, 30, 188, 127, 193, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 195, 229, 9, 191, 139, 155, 47, 64, 200, 93, 195, 190, 43, 167, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 195, 229, 9, 191, 139, 155, 47, 64, 200, 93, 195, 190, 86, 45, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 195, 229, 9, 191, 139, 155, 47, 64, 200, 93, 195, 190, 85, 42, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 62, 80, 24, 191, 194, 248, 54, 64, 124, 108, 232, 190, 220, 81, 127, 193, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 62, 80, 24, 191, 194, 248, 54, 64, 124, 108, 232, 190, 187, 101, 127, 63, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 62, 80, 24, 191, 194, 248, 54, 64, 124, 108, 232, 190, 86, 45, 127, 63, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 62, 80, 24, 191, 194, 248, 54, 64, 124, 108, 232, 190, 85, 42, 127, 63, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 111, 111, 151, 191, 189, 26, 38, 64, 124, 108, 232, 190, 172, 215, 127, 193, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 111, 111, 151, 191, 189, 26, 38, 64, 124, 108, 232, 190, 175, 216, 127, 193, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 111, 111, 151, 191, 189, 26, 38, 64, 124, 108, 232, 190, 220, 81, 127, 193, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 111, 111, 151, 191, 189, 26, 38, 64, 124, 108, 232, 190, 187, 101, 127, 63, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 176, 1, 141, 191, 150, 37, 27, 64, 24, 35, 12, 191, 171, 218, 127, 193, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 176, 1, 141, 191, 150, 37, 27, 64, 24, 35, 12, 191, 172, 215, 127, 193, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 176, 1, 141, 191, 150, 37, 27, 64, 24, 35, 12, 191, 6, 242, 127, 193, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 176, 1, 141, 191, 150, 37, 27, 64, 24, 35, 12, 191, 30, 188, 127, 193, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 193, 116, 3, 191, 155, 3, 44, 64, 26, 35, 12, 191, 6, 242, 127, 193, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 193, 116, 3, 191, 155, 3, 44, 64, 26, 35, 12, 191, 30, 188, 127, 193, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 193, 116, 3, 191, 155, 3, 44, 64, 26, 35, 12, 191, 85, 42, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 193, 116, 3, 191, 155, 3, 44, 64, 26, 35, 12, 191, 88, 41, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 86, 206, 6, 191, 106, 52, 45, 64, 254, 89, 49, 191, 187, 101, 127, 63, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 86, 206, 6, 191, 106, 52, 45, 64, 254, 89, 49, 191, 144, 120, 127, 63, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 86, 206, 6, 191, 106, 52, 45, 64, 254, 89, 49, 191, 85, 42, 127, 63, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 86, 206, 6, 191, 106, 52, 45, 64, 254, 89, 49, 191, 88, 41, 127, 63, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 124, 174, 142, 191, 101, 86, 28, 64, 254, 89, 49, 191, 171, 218, 127, 193, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 124, 174, 142, 191, 101, 86, 28, 64, 254, 89, 49, 191, 172, 215, 127, 193, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 124, 174, 142, 191, 101, 86, 28, 64, 254, 89, 49, 191, 187, 101, 127, 63, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 124, 174, 142, 191, 101, 86, 28, 64, 254, 89, 49, 191, 144, 120, 127, 63, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 250, 30, 123, 191, 176, 233, 9, 64, 126, 189, 23, 191, 171, 218, 127, 193, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 250, 30, 123, 191, 176, 233, 9, 64, 126, 189, 23, 191, 6, 242, 127, 193, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 250, 30, 123, 191, 176, 233, 9, 64, 126, 189, 23, 191, 48, 165, 169, 43, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 181, 32, 201, 190, 181, 199, 26, 64, 128, 189, 23, 191, 6, 242, 127, 193, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 181, 32, 201, 190, 181, 199, 26, 64, 128, 189, 23, 191, 48, 165, 169, 43, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 181, 32, 201, 190, 181, 199, 26, 64, 128, 189, 23, 191, 88, 41, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 223, 211, 207, 190, 132, 248, 27, 64, 100, 244, 60, 191, 144, 120, 127, 63, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 223, 211, 207, 190, 132, 248, 27, 64, 100, 244, 60, 191, 48, 165, 169, 43, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 223, 211, 207, 190, 132, 248, 27, 64, 100, 244, 60, 191, 88, 41, 127, 63, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 146, 120, 126, 191, 127, 26, 11, 64, 100, 244, 60, 191, 171, 218, 127, 193, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 146, 120, 126, 191, 127, 26, 11, 64, 100, 244, 60, 191, 144, 120, 127, 63, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 146, 120, 126, 191, 127, 26, 11, 64, 100, 244, 60, 191, 48, 165, 169, 43, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 132, 140, 198, 190, 202, 42, 42, 64, 137, 148, 155, 190, 199, 95, 169, 43, 170, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 132, 140, 198, 190, 202, 42, 42, 64, 137, 148, 155, 190, 230, 98, 167, 51, 170, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 132, 140, 198, 190, 202, 42, 42, 64, 137, 148, 155, 190, 139, 125, 1, 121, 0, 57, 170, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 132, 140, 198, 190, 202, 42, 42, 64, 137, 148, 155, 190, 138, 126, 4, 120, 0, 57, 170, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 132, 140, 198, 190, 202, 42, 42, 64, 137, 148, 155, 190, 0, 123, 131, 63, 170, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 222, 71, 216, 190, 252, 220, 40, 64, 238, 157, 231, 62, 218, 86, 169, 43, 170, 57, 69, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 222, 71, 216, 190, 252, 220, 40, 64, 238, 157, 231, 62, 229, 62, 169, 43, 170, 57, 69, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 222, 71, 216, 190, 252, 220, 40, 64, 238, 157, 231, 62, 230, 98, 155, 48, 170, 57, 69, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 222, 71, 216, 190, 252, 220, 40, 64, 238, 157, 231, 62, 0, 123, 131, 63, 170, 57, 69, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 222, 71, 216, 190, 252, 220, 40, 64, 238, 157, 231, 62, 0, 71, 131, 63, 170, 57, 69, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 163, 126, 229, 191, 179, 70, 240, 191, 50, 14, 160, 190, 231, 152, 127, 63, 0, 48, 0, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 163, 126, 229, 191, 179, 70, 240, 191, 50, 14, 160, 190, 6, 134, 127, 63, 0, 48, 0, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 64, 135, 239, 191, 243, 205, 134, 191, 50, 14, 160, 190, 130, 97, 127, 63, 85, 55, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 64, 135, 239, 191, 243, 205, 134, 191, 50, 14, 160, 190, 126, 133, 127, 63, 85, 55, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 121, 237, 233, 191, 38, 197, 241, 191, 138, 156, 66, 63, 233, 153, 127, 63, 0, 48, 120, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 121, 237, 233, 191, 38, 197, 241, 191, 138, 156, 66, 63, 4, 134, 127, 63, 0, 48, 120, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 121, 237, 233, 191, 38, 197, 241, 191, 112, 127, 184, 62, 233, 153, 127, 63, 0, 48, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 121, 237, 233, 191, 38, 197, 241, 191, 112, 127, 184, 62, 231, 152, 127, 63, 0, 48, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 121, 237, 233, 191, 38, 197, 241, 191, 112, 127, 184, 62, 4, 134, 127, 63, 0, 48, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 121, 237, 233, 191, 38, 197, 241, 191, 112, 127, 184, 62, 6, 134, 127, 63, 0, 48, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 239, 115, 241, 191, 117, 93, 86, 62, 111, 127, 184, 62, 196, 66, 127, 63, 85, 56, 93, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 239, 115, 241, 191, 117, 93, 86, 62, 111, 127, 184, 62, 195, 67, 127, 63, 85, 56, 93, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 239, 115, 241, 191, 117, 93, 86, 62, 111, 127, 184, 62, 252, 120, 127, 193, 85, 56, 93, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 239, 115, 241, 191, 117, 93, 86, 62, 111, 127, 184, 62, 252, 122, 127, 63, 85, 56, 93, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 145, 22, 4, 192, 133, 168, 140, 191, 138, 15, 55, 63, 131, 1, 1, 126, 85, 55, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 145, 22, 4, 192, 133, 168, 140, 191, 138, 15, 55, 63, 228, 0, 127, 193, 85, 55, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 145, 22, 4, 192, 133, 168, 140, 191, 101, 46, 179, 62, 131, 1, 1, 126, 85, 55, 93, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 145, 22, 4, 192, 133, 168, 140, 191, 101, 46, 179, 62, 131, 7, 1, 126, 85, 55, 93, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 114, 16, 2, 192, 75, 75, 139, 191, 151, 112, 135, 190, 131, 7, 1, 126, 85, 55, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 114, 16, 2, 192, 75, 75, 139, 191, 151, 112, 135, 190, 130, 97, 127, 63, 85, 55, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 3, 255, 191, 165, 247, 236, 191, 102, 46, 179, 62, 233, 153, 127, 63, 0, 48, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 3, 255, 191, 165, 247, 236, 191, 102, 46, 179, 62, 231, 152, 127, 63, 0, 48, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 3, 255, 191, 165, 247, 236, 191, 138, 15, 55, 63, 233, 153, 127, 63, 0, 48, 120, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 107, 247, 250, 191, 107, 154, 235, 191, 151, 112, 135, 190, 231, 152, 127, 63, 0, 48, 0, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 99, 241, 2, 192, 69, 71, 132, 61, 101, 46, 179, 62, 131, 1, 1, 126, 85, 56, 93, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 99, 241, 2, 192, 69, 71, 132, 61, 101, 46, 179, 62, 131, 7, 1, 126, 85, 56, 93, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 99, 241, 2, 192, 69, 71, 132, 61, 101, 46, 179, 62, 196, 66, 127, 63, 85, 56, 93, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 99, 241, 2, 192, 69, 71, 132, 61, 101, 46, 179, 62, 195, 67, 127, 63, 85, 56, 93, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 67, 235, 0, 192, 213, 26, 154, 61, 151, 112, 135, 190, 131, 7, 1, 126, 85, 56, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 67, 235, 0, 192, 213, 26, 154, 61, 151, 112, 135, 190, 195, 67, 127, 63, 85, 56, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 67, 235, 0, 192, 213, 26, 154, 61, 151, 112, 135, 190, 130, 97, 127, 63, 85, 56, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 2, 138, 191, 138, 182, 10, 64, 246, 118, 53, 63, 226, 28, 181, 33, 85, 58, 112, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 2, 138, 191, 138, 182, 10, 64, 246, 118, 53, 63, 239, 39, 169, 43, 85, 58, 112, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 192, 194, 205, 191, 158, 214, 222, 63, 52, 166, 57, 63, 161, 9, 13, 121, 0, 57, 201, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 192, 194, 205, 191, 158, 214, 222, 63, 52, 166, 57, 63, 226, 28, 186, 32, 0, 59, 108, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 24, 124, 2, 191, 49, 184, 26, 64, 179, 38, 54, 63, 239, 39, 169, 43, 170, 57, 110, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 24, 124, 2, 191, 49, 184, 26, 64, 179, 38, 54, 63, 0, 46, 130, 63, 170, 57, 110, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 191, 252, 237, 92, 62, 230, 153, 76, 63, 131, 1, 1, 126, 85, 56, 215, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 191, 252, 237, 92, 62, 230, 153, 76, 63, 161, 9, 14, 121, 85, 56, 215, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 53, 73, 213, 63, 21, 243, 240, 191, 153, 128, 100, 63, 17, 247, 12, 140, 0, 54, 0, 0, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 53, 73, 213, 63, 21, 243, 240, 191, 153, 128, 100, 63, 19, 149, 150, 203, 0, 48, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 53, 73, 213, 63, 21, 243, 240, 191, 153, 128, 100, 63, 115, 245, 11, 135, 0, 54, 0, 60, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 192, 194, 205, 63, 204, 75, 166, 63, 254, 59, 87, 63, 30, 28, 74, 223, 0, 59, 0, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 192, 194, 205, 63, 204, 75, 166, 63, 254, 59, 87, 63, 42, 13, 230, 139, 0, 57, 0, 0, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 192, 194, 205, 63, 204, 75, 166, 63, 254, 59, 87, 63, 95, 9, 243, 135, 0, 57, 0, 60, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 95, 218, 208, 63, 162, 116, 239, 191, 100, 231, 157, 190, 250, 134, 127, 63, 0, 48, 0, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 95, 218, 208, 63, 162, 116, 239, 191, 100, 231, 157, 190, 21, 149, 147, 207, 0, 48, 0, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 95, 218, 208, 63, 162, 116, 239, 191, 100, 231, 157, 190, 124, 150, 14, 137, 0, 54, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 234, 83, 201, 63, 37, 122, 252, 63, 100, 231, 157, 190, 122, 109, 248, 136, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 234, 83, 201, 63, 37, 122, 252, 63, 100, 231, 157, 190, 55, 71, 71, 221, 0, 59, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 234, 83, 201, 63, 37, 122, 252, 63, 100, 231, 157, 190, 119, 13, 249, 135, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 120, 87, 102, 63, 129, 0, 0, 139, 0, 54, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 120, 87, 102, 63, 0, 129, 129, 193, 0, 54, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 120, 87, 102, 63, 0, 238, 1, 139, 0, 54, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 149, 251, 63, 237, 189, 120, 63, 129, 0, 10, 129, 0, 57, 0, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 149, 251, 63, 237, 189, 120, 63, 0, 10, 10, 129, 0, 57, 0, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 149, 251, 63, 237, 189, 120, 63, 0, 10, 10, 127, 0, 57, 0, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 149, 251, 63, 237, 189, 120, 63, 0, 46, 127, 193, 0, 57, 0, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 141, 129, 254, 191, 172, 86, 219, 190, 129, 0, 0, 129, 0, 54, 0, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 141, 129, 254, 191, 172, 86, 219, 190, 255, 130, 126, 63, 0, 54, 0, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 141, 129, 254, 191, 172, 86, 219, 190, 1, 129, 129, 193, 0, 54, 0, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 141, 129, 254, 191, 172, 86, 219, 190, 127, 127, 0, 129, 0, 54, 0, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 210, 81, 223, 63, 85, 122, 135, 191, 18, 126, 94, 63, 17, 247, 22, 144, 85, 55, 0, 0, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 210, 81, 223, 63, 85, 122, 135, 191, 18, 126, 94, 63, 29, 0, 255, 130, 85, 55, 0, 0, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 210, 81, 223, 63, 85, 122, 135, 191, 18, 126, 94, 63, 29, 0, 255, 130, 85, 55, 0, 0, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 210, 81, 223, 63, 85, 122, 135, 191, 18, 126, 94, 63, 115, 245, 13, 135, 85, 55, 0, 60, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 210, 81, 223, 63, 85, 122, 135, 191, 18, 126, 94, 63, 125, 1, 255, 130, 85, 55, 0, 60, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 63, 252, 237, 92, 62, 18, 126, 94, 63, 29, 0, 255, 131, 85, 56, 0, 0, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 63, 252, 237, 92, 62, 18, 126, 94, 63, 29, 0, 255, 130, 85, 56, 0, 0, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 63, 252, 237, 92, 62, 18, 126, 94, 63, 42, 13, 231, 137, 85, 56, 0, 0, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 63, 252, 237, 92, 62, 18, 126, 94, 63, 95, 9, 242, 135, 85, 56, 0, 60, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 63, 252, 237, 92, 62, 18, 126, 94, 63, 125, 1, 255, 130, 85, 56, 0, 60, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 213, 96, 216, 63, 149, 225, 104, 62, 100, 231, 157, 190, 130, 133, 127, 63, 85, 56, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 213, 96, 216, 63, 149, 225, 104, 62, 100, 231, 157, 190, 4, 120, 127, 193, 85, 56, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 213, 96, 216, 63, 149, 225, 104, 62, 100, 231, 157, 190, 122, 109, 255, 133, 85, 56, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 213, 96, 216, 63, 149, 225, 104, 62, 100, 231, 157, 190, 126, 153, 254, 130, 85, 56, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 213, 96, 216, 63, 149, 225, 104, 62, 100, 231, 157, 190, 119, 13, 248, 134, 85, 56, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 252, 226, 218, 63, 226, 251, 133, 191, 100, 231, 157, 190, 130, 133, 127, 63, 85, 55, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 252, 226, 218, 63, 226, 251, 133, 191, 100, 231, 157, 190, 124, 150, 11, 135, 85, 55, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 252, 226, 218, 63, 226, 251, 133, 191, 100, 231, 157, 190, 126, 153, 254, 130, 85, 55, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 175, 250, 24, 63, 128, 50, 232, 190, 129, 0, 0, 130, 85, 56, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 175, 250, 24, 63, 128, 50, 232, 190, 138, 126, 0, 122, 85, 56, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 175, 250, 24, 63, 128, 50, 232, 190, 125, 129, 253, 130, 85, 56, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 175, 250, 24, 63, 128, 50, 232, 190, 118, 126, 0, 134, 85, 56, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 226, 251, 133, 191, 172, 86, 219, 190, 129, 0, 0, 129, 85, 55, 0, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 226, 251, 133, 191, 172, 86, 219, 190, 125, 129, 1, 129, 85, 55, 0, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 226, 251, 133, 191, 172, 86, 219, 190, 127, 127, 1, 130, 85, 55, 0, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 184, 103, 211, 63, 255, 255, 127, 63, 129, 0, 5, 129, 85, 56, 0, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 184, 103, 211, 63, 255, 255, 127, 63, 0, 10, 12, 131, 85, 56, 0, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 184, 103, 211, 63, 255, 255, 127, 63, 0, 10, 244, 125, 85, 56, 0, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 99, 179, 191, 255, 255, 127, 63, 129, 0, 3, 129, 85, 55, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 99, 179, 191, 255, 255, 127, 63, 0, 238, 0, 139, 85, 55, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 216, 60, 243, 62, 141, 129, 254, 191, 172, 86, 219, 190, 1, 129, 129, 193, 170, 52, 0, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 216, 60, 243, 62, 141, 129, 254, 191, 172, 86, 219, 190, 1, 129, 129, 193, 170, 52, 0, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 216, 60, 243, 62, 141, 129, 254, 191, 172, 86, 219, 190, 126, 129, 2, 131, 0, 54, 170, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 216, 60, 243, 62, 141, 129, 254, 191, 172, 86, 219, 190, 127, 127, 0, 130, 0, 54, 170, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 130, 26, 124, 63, 141, 129, 254, 191, 172, 86, 219, 190, 1, 129, 129, 193, 170, 50, 0, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 130, 26, 124, 63, 141, 129, 254, 191, 172, 86, 219, 190, 126, 129, 7, 133, 0, 54, 85, 57, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 130, 26, 124, 63, 141, 129, 254, 191, 172, 86, 219, 190, 21, 149, 146, 210, 170, 50, 0, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 130, 26, 124, 63, 141, 129, 254, 191, 172, 86, 219, 190, 124, 150, 16, 138, 0, 54, 85, 57, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 30, 213, 134, 63, 47, 91, 24, 64, 212, 245, 129, 190, 160, 143, 127, 63, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 30, 213, 134, 63, 47, 91, 24, 64, 212, 245, 129, 190, 57, 95, 87, 213, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 30, 213, 134, 63, 47, 91, 24, 64, 212, 245, 129, 190, 50, 75, 94, 232, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 30, 213, 134, 63, 47, 91, 24, 64, 212, 245, 129, 190, 85, 213, 127, 63, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 60, 55, 238, 62, 52, 57, 41, 64, 212, 245, 129, 190, 173, 41, 127, 193, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 60, 55, 238, 62, 52, 57, 41, 64, 212, 245, 129, 190, 160, 143, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 60, 55, 238, 62, 52, 57, 41, 64, 212, 245, 129, 190, 26, 98, 91, 205, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 60, 55, 238, 62, 52, 57, 41, 64, 212, 245, 129, 190, 57, 95, 87, 213, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 130, 63, 0, 0, 0, 192, 120, 87, 102, 63, 0, 129, 129, 193, 170, 50, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 130, 63, 0, 0, 0, 192, 120, 87, 102, 63, 0, 238, 38, 155, 0, 54, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 130, 63, 0, 0, 0, 192, 120, 87, 102, 63, 17, 247, 19, 143, 0, 54, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 130, 63, 0, 0, 0, 192, 120, 87, 102, 63, 19, 149, 149, 203, 170, 50, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 2, 63, 0, 0, 0, 192, 120, 87, 102, 63, 0, 129, 129, 193, 170, 52, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 2, 63, 0, 0, 0, 192, 120, 87, 102, 63, 0, 238, 19, 147, 0, 54, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 2, 63, 0, 0, 0, 192, 120, 87, 102, 63, 0, 238, 1, 139, 0, 54, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 24, 124, 2, 63, 0, 149, 251, 63, 237, 189, 120, 63, 0, 10, 13, 131, 0, 57, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 24, 124, 2, 63, 0, 149, 251, 63, 237, 189, 120, 63, 0, 46, 126, 193, 170, 57, 0, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 24, 124, 2, 63, 0, 149, 251, 63, 237, 189, 120, 63, 3, 17, 22, 132, 0, 57, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 24, 124, 2, 63, 0, 149, 251, 63, 237, 189, 120, 63, 17, 39, 87, 213, 170, 57, 0, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 2, 138, 63, 4, 249, 218, 63, 235, 189, 120, 63, 3, 17, 205, 150, 0, 57, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 2, 138, 63, 4, 249, 218, 63, 235, 189, 120, 63, 17, 39, 87, 213, 85, 58, 0, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 2, 138, 63, 4, 249, 218, 63, 235, 189, 120, 63, 30, 28, 78, 222, 85, 58, 0, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 2, 138, 63, 4, 249, 218, 63, 235, 189, 120, 63, 42, 13, 217, 153, 0, 57, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 38, 28, 5, 63, 100, 99, 179, 191, 255, 255, 127, 63, 0, 238, 1, 139, 85, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 38, 28, 5, 63, 100, 99, 179, 191, 255, 255, 127, 63, 0, 238, 0, 139, 85, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 243, 27, 169, 63, 100, 99, 179, 191, 255, 255, 127, 63, 0, 238, 19, 147, 85, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 243, 27, 169, 63, 100, 99, 179, 191, 255, 255, 127, 63, 17, 247, 40, 150, 85, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 243, 27, 169, 63, 100, 99, 179, 191, 255, 255, 127, 63, 29, 0, 255, 130, 85, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 8, 198, 252, 62, 184, 103, 211, 63, 255, 255, 127, 63, 0, 10, 15, 132, 85, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 8, 198, 252, 62, 184, 103, 211, 63, 255, 255, 127, 63, 3, 17, 233, 133, 85, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 188, 204, 157, 63, 153, 244, 191, 63, 222, 3, 131, 63, 3, 17, 198, 154, 85, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 188, 204, 157, 63, 153, 244, 191, 63, 222, 3, 131, 63, 29, 0, 242, 139, 85, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 188, 204, 157, 63, 153, 244, 191, 63, 222, 3, 131, 63, 42, 13, 221, 149, 85, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 105, 174, 143, 63, 226, 251, 133, 191, 172, 86, 219, 190, 125, 129, 253, 130, 85, 55, 85, 57, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 105, 174, 143, 63, 226, 251, 133, 191, 172, 86, 219, 190, 126, 129, 16, 138, 85, 55, 85, 57, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 105, 174, 143, 63, 226, 251, 133, 191, 172, 86, 219, 190, 124, 150, 13, 136, 85, 55, 85, 57, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 105, 174, 143, 63, 226, 251, 133, 191, 172, 86, 219, 190, 126, 153, 254, 130, 85, 55, 85, 57, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 114, 69, 253, 62, 226, 251, 133, 191, 172, 86, 219, 190, 125, 129, 254, 130, 85, 55, 170, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 114, 69, 253, 62, 226, 251, 133, 191, 172, 86, 219, 190, 125, 129, 253, 130, 85, 55, 170, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 114, 69, 253, 62, 226, 251, 133, 191, 172, 86, 219, 190, 126, 129, 12, 136, 85, 55, 170, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 114, 69, 253, 62, 226, 251, 133, 191, 172, 86, 219, 190, 127, 127, 2, 131, 85, 55, 170, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 66, 44, 141, 63, 175, 250, 24, 63, 128, 50, 232, 190, 125, 129, 253, 130, 85, 56, 85, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 66, 44, 141, 63, 175, 250, 24, 63, 128, 50, 232, 190, 117, 125, 253, 136, 85, 56, 85, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 66, 44, 141, 63, 175, 250, 24, 63, 128, 50, 232, 190, 122, 109, 0, 133, 85, 56, 85, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 66, 44, 141, 63, 175, 250, 24, 63, 128, 50, 232, 190, 126, 153, 254, 130, 85, 56, 85, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 214, 60, 243, 62, 175, 250, 24, 63, 128, 50, 232, 190, 125, 129, 253, 130, 85, 56, 170, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 214, 60, 243, 62, 175, 250, 24, 63, 128, 50, 232, 190, 125, 129, 253, 130, 85, 56, 170, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 214, 60, 243, 62, 175, 250, 24, 63, 128, 50, 232, 190, 118, 126, 0, 134, 85, 56, 170, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 214, 60, 243, 62, 175, 250, 24, 63, 128, 50, 232, 190, 117, 125, 252, 136, 85, 56, 170, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 167, 206, 181, 63, 135, 27, 172, 63, 129, 0, 23, 127, 85, 56, 0, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 167, 206, 181, 63, 135, 27, 172, 63, 0, 22, 22, 126, 85, 56, 0, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 167, 206, 181, 63, 135, 27, 172, 63, 0, 77, 179, 130, 85, 56, 0, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 167, 206, 181, 63, 135, 27, 172, 63, 0, 22, 22, 130, 85, 56, 0, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 99, 179, 191, 216, 148, 175, 63, 129, 0, 0, 126, 85, 55, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 99, 179, 191, 216, 148, 175, 63, 0, 226, 0, 145, 85, 55, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 99, 179, 191, 216, 148, 175, 63, 0, 129, 129, 126, 85, 55, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 99, 179, 191, 216, 148, 175, 63, 0, 226, 0, 111, 85, 55, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 38, 28, 5, 63, 100, 99, 179, 191, 216, 148, 175, 63, 0, 226, 255, 145, 85, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 38, 28, 5, 63, 100, 99, 179, 191, 216, 148, 175, 63, 0, 129, 127, 63, 85, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 38, 28, 5, 63, 100, 99, 179, 191, 216, 148, 175, 63, 10, 166, 127, 193, 85, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 38, 28, 5, 63, 100, 99, 179, 191, 216, 148, 175, 63, 11, 231, 2, 145, 85, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 113, 40, 149, 63, 26, 241, 165, 191, 147, 42, 169, 63, 10, 166, 127, 193, 85, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 113, 40, 149, 63, 26, 241, 165, 191, 147, 42, 169, 63, 11, 231, 25, 152, 85, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 113, 40, 149, 63, 26, 241, 165, 191, 147, 42, 169, 63, 61, 238, 127, 193, 85, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 8, 198, 252, 62, 167, 206, 181, 63, 135, 27, 172, 63, 0, 77, 179, 130, 85, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 8, 198, 252, 62, 167, 206, 181, 63, 135, 27, 172, 63, 0, 22, 234, 130, 85, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 8, 198, 252, 62, 167, 206, 181, 63, 135, 27, 172, 63, 8, 15, 240, 130, 85, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 8, 198, 252, 62, 167, 206, 181, 63, 135, 27, 172, 63, 12, 72, 127, 193, 85, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 91, 222, 134, 63, 119, 119, 171, 63, 135, 27, 172, 63, 8, 15, 60, 153, 85, 56, 247, 48, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 91, 222, 134, 63, 119, 119, 171, 63, 135, 27, 172, 63, 12, 72, 127, 193, 85, 56, 247, 48, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 91, 222, 134, 63, 119, 119, 171, 63, 135, 27, 172, 63, 64, 27, 127, 193, 85, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148, 190, 201, 63, 61, 32, 141, 63, 129, 0, 0, 129, 85, 56, 255, 51, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148, 190, 201, 63, 61, 32, 141, 63, 0, 77, 179, 130, 85, 56, 255, 51, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 60, 188, 151, 63, 15, 110, 117, 63, 248, 127, 172, 63, 8, 15, 77, 162, 55, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 60, 188, 151, 63, 15, 110, 117, 63, 248, 127, 172, 63, 16, 0, 255, 130, 55, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 60, 188, 151, 63, 15, 110, 117, 63, 248, 127, 172, 63, 64, 27, 206, 121, 55, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 60, 188, 151, 63, 15, 110, 117, 63, 248, 127, 172, 63, 76, 0, 255, 126, 55, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 196, 82, 166, 63, 63, 86, 129, 63, 255, 255, 127, 63, 29, 0, 244, 138, 56, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 71, 96, 254, 62, 82, 134, 126, 63, 139, 85, 185, 63, 0, 0, 0, 130, 64, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 71, 96, 254, 62, 82, 134, 126, 63, 139, 85, 185, 63, 8, 15, 45, 145, 64, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 71, 96, 254, 62, 82, 134, 126, 63, 139, 85, 185, 63, 16, 0, 255, 130, 64, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 210, 117, 129, 63, 139, 85, 185, 63, 129, 0, 1, 129, 66, 56, 255, 51, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 210, 117, 129, 63, 139, 85, 185, 63, 0, 0, 0, 130, 66, 56, 255, 51, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 210, 117, 129, 63, 139, 85, 185, 63, 0, 0, 0, 126, 66, 56, 255, 51, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 99, 179, 191, 197, 170, 156, 63, 129, 0, 13, 129, 85, 55, 255, 51, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 99, 179, 191, 197, 170, 156, 63, 0, 129, 129, 126, 85, 55, 255, 51, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 80, 232, 141, 63, 201, 18, 186, 63, 61, 32, 141, 63, 12, 72, 127, 193, 85, 56, 162, 47, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 80, 232, 141, 63, 201, 18, 186, 63, 61, 32, 141, 63, 64, 27, 206, 121, 85, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 8, 198, 252, 62, 148, 190, 201, 63, 61, 32, 141, 63, 0, 77, 127, 193, 85, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 8, 198, 252, 62, 148, 190, 201, 63, 61, 32, 141, 63, 12, 72, 127, 193, 85, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 38, 28, 5, 63, 100, 99, 179, 191, 197, 170, 156, 63, 0, 129, 129, 126, 85, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 38, 28, 5, 63, 100, 99, 179, 191, 197, 170, 156, 63, 10, 166, 127, 193, 85, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 41, 156, 163, 63, 68, 174, 174, 191, 95, 68, 150, 63, 10, 166, 127, 193, 85, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 41, 156, 163, 63, 68, 174, 174, 191, 95, 68, 150, 63, 61, 238, 25, 145, 85, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 163, 84, 166, 63, 70, 13, 124, 63, 252, 63, 150, 63, 64, 27, 206, 121, 55, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 163, 84, 166, 63, 70, 13, 124, 63, 252, 63, 150, 63, 76, 0, 255, 126, 55, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 91, 183, 167, 63, 148, 220, 194, 190, 255, 255, 127, 63, 29, 0, 255, 130, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 91, 183, 167, 63, 148, 220, 194, 190, 255, 255, 127, 63, 29, 0, 0, 130, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 91, 183, 167, 63, 148, 220, 194, 190, 255, 255, 127, 63, 29, 0, 255, 130, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110, 157, 194, 190, 139, 85, 185, 63, 129, 0, 0, 122, 236, 55, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110, 157, 194, 190, 139, 85, 185, 63, 0, 0, 0, 130, 236, 55, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110, 157, 194, 190, 139, 85, 185, 63, 0, 0, 0, 126, 236, 55, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 37, 38, 2, 63, 192, 2, 199, 190, 139, 85, 185, 63, 0, 0, 255, 130, 235, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 37, 38, 2, 63, 192, 2, 199, 190, 139, 85, 185, 63, 16, 0, 255, 130, 235, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 244, 30, 153, 63, 2, 27, 208, 190, 91, 132, 172, 63, 16, 0, 255, 130, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 244, 30, 153, 63, 2, 27, 208, 190, 91, 132, 172, 63, 76, 0, 255, 126, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 75, 184, 167, 63, 204, 123, 201, 190, 46, 66, 150, 63, 76, 0, 255, 126, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 161, 199, 168, 63, 39, 125, 148, 191, 255, 255, 127, 63, 29, 0, 255, 130, 118, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107, 121, 148, 191, 139, 85, 185, 63, 129, 0, 127, 63, 121, 55, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107, 121, 148, 191, 139, 85, 185, 63, 0, 226, 0, 145, 121, 55, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107, 121, 148, 191, 139, 85, 185, 63, 0, 226, 0, 111, 121, 55, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 233, 104, 4, 63, 242, 187, 148, 191, 139, 85, 185, 63, 0, 226, 0, 145, 120, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 233, 104, 4, 63, 242, 187, 148, 191, 139, 85, 185, 63, 11, 231, 255, 144, 120, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 204, 45, 154, 63, 148, 69, 149, 191, 180, 135, 172, 63, 11, 231, 19, 150, 118, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 204, 45, 154, 63, 148, 69, 149, 191, 180, 135, 172, 63, 61, 238, 25, 145, 118, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 217, 199, 168, 63, 94, 225, 148, 191, 218, 67, 150, 63, 61, 238, 25, 145, 118, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 53, 73, 213, 63, 21, 243, 240, 191, 241, 175, 67, 63, 252, 134, 127, 63, 0, 48, 120, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 53, 73, 213, 63, 21, 243, 240, 191, 241, 175, 67, 63, 19, 149, 149, 203, 0, 48, 120, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 53, 73, 213, 63, 21, 243, 240, 191, 241, 175, 67, 63, 19, 149, 150, 203, 0, 48, 120, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 53, 73, 213, 63, 21, 243, 240, 191, 241, 175, 67, 63, 115, 245, 11, 135, 0, 54, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 192, 194, 205, 63, 115, 53, 229, 63, 13, 85, 48, 63, 40, 51, 71, 221, 0, 59, 120, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 192, 194, 205, 63, 115, 53, 229, 63, 13, 85, 48, 63, 116, 8, 243, 133, 0, 57, 195, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 241, 175, 67, 63, 129, 0, 0, 133, 0, 54, 120, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 241, 175, 67, 63, 0, 129, 129, 193, 0, 54, 120, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 63, 29, 64, 15, 85, 48, 63, 129, 0, 0, 131, 0, 57, 120, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 63, 29, 64, 15, 85, 48, 63, 0, 71, 126, 193, 0, 57, 120, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 63, 29, 64, 15, 85, 48, 63, 0, 71, 130, 63, 0, 57, 120, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 55, 174, 191, 240, 175, 67, 63, 129, 0, 0, 129, 85, 55, 120, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 201, 148, 170, 63, 243, 175, 67, 63, 129, 0, 3, 129, 85, 56, 120, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 210, 81, 223, 63, 85, 122, 135, 191, 240, 175, 67, 63, 3, 0, 127, 193, 85, 55, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 210, 81, 223, 63, 85, 122, 135, 191, 240, 175, 67, 63, 115, 245, 13, 135, 85, 55, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 210, 81, 223, 63, 85, 122, 135, 191, 240, 175, 67, 63, 125, 1, 255, 130, 85, 55, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 63, 252, 237, 92, 62, 240, 175, 67, 63, 3, 0, 127, 193, 85, 56, 195, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 63, 252, 237, 92, 62, 240, 175, 67, 63, 4, 122, 127, 63, 85, 56, 195, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 63, 252, 237, 92, 62, 240, 175, 67, 63, 116, 8, 248, 136, 85, 56, 195, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 63, 252, 237, 92, 62, 240, 175, 67, 63, 125, 1, 255, 130, 85, 56, 195, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 24, 124, 2, 63, 83, 63, 29, 64, 15, 85, 48, 63, 0, 71, 125, 193, 170, 57, 120, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 24, 124, 2, 63, 83, 63, 29, 64, 15, 85, 48, 63, 27, 62, 87, 213, 170, 57, 120, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 2, 138, 63, 84, 241, 12, 64, 14, 85, 48, 63, 27, 62, 87, 213, 85, 58, 120, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 2, 138, 63, 84, 241, 12, 64, 14, 85, 48, 63, 40, 51, 71, 221, 85, 58, 120, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 130, 63, 0, 0, 0, 192, 241, 175, 67, 63, 0, 129, 129, 193, 170, 50, 120, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 130, 63, 0, 0, 0, 192, 241, 175, 67, 63, 19, 149, 149, 203, 170, 50, 120, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 130, 63, 0, 0, 0, 192, 241, 175, 67, 63, 19, 149, 149, 203, 170, 50, 120, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 2, 63, 0, 0, 0, 192, 241, 175, 67, 63, 0, 129, 129, 193, 170, 52, 120, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 192, 194, 205, 63, 139, 222, 249, 63, 19, 75, 229, 62, 40, 51, 71, 221, 0, 59, 69, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 192, 194, 205, 63, 139, 222, 249, 63, 19, 75, 229, 62, 55, 71, 71, 221, 0, 59, 69, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 192, 194, 205, 63, 139, 222, 249, 63, 19, 75, 229, 62, 119, 13, 249, 136, 0, 57, 93, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 192, 194, 205, 63, 139, 222, 249, 63, 19, 75, 229, 62, 116, 8, 245, 134, 0, 57, 93, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 63, 166, 186, 62, 129, 0, 0, 129, 0, 54, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 63, 166, 186, 62, 255, 130, 126, 63, 0, 54, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 63, 166, 186, 62, 0, 129, 129, 193, 0, 54, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 63, 166, 186, 62, 1, 129, 129, 193, 0, 54, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 99, 241, 2, 64, 69, 71, 132, 61, 138, 15, 55, 63, 28, 0, 127, 193, 85, 56, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 99, 241, 2, 64, 69, 71, 132, 61, 138, 15, 55, 63, 60, 66, 127, 63, 85, 56, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 99, 241, 2, 64, 69, 71, 132, 61, 138, 15, 55, 63, 125, 1, 255, 130, 85, 56, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 63, 252, 237, 92, 62, 61, 166, 186, 62, 4, 122, 127, 63, 85, 56, 93, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 63, 252, 237, 92, 62, 61, 166, 186, 62, 4, 120, 127, 193, 85, 56, 93, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 63, 252, 237, 92, 62, 61, 166, 186, 62, 119, 13, 248, 134, 85, 56, 93, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 63, 252, 237, 92, 62, 61, 166, 186, 62, 116, 8, 248, 136, 85, 56, 93, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 53, 73, 213, 63, 21, 243, 240, 191, 62, 166, 186, 62, 250, 134, 127, 63, 0, 48, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 53, 73, 213, 63, 21, 243, 240, 191, 62, 166, 186, 62, 252, 134, 127, 63, 0, 48, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 53, 73, 213, 63, 21, 243, 240, 191, 62, 166, 186, 62, 19, 149, 149, 203, 0, 48, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 53, 73, 213, 63, 21, 243, 240, 191, 62, 166, 186, 62, 21, 149, 149, 203, 0, 48, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 22, 246, 243, 63, 102, 76, 136, 191, 137, 156, 66, 63, 3, 0, 127, 193, 85, 55, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 22, 246, 243, 63, 102, 76, 136, 191, 137, 156, 66, 63, 28, 0, 127, 193, 85, 55, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 210, 111, 165, 191, 60, 166, 186, 62, 129, 0, 0, 129, 85, 55, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90, 235, 148, 63, 67, 166, 186, 62, 129, 0, 0, 130, 85, 56, 69, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 60, 55, 238, 62, 152, 139, 40, 64, 48, 73, 219, 189, 173, 41, 127, 193, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 60, 55, 238, 62, 152, 139, 40, 64, 48, 73, 219, 189, 10, 23, 127, 193, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 60, 55, 238, 62, 152, 139, 40, 64, 48, 73, 219, 189, 26, 98, 126, 134, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 60, 55, 238, 62, 152, 139, 40, 64, 48, 73, 219, 189, 38, 86, 87, 213, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 30, 213, 134, 63, 147, 173, 23, 64, 48, 73, 219, 189, 10, 23, 127, 193, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 30, 213, 134, 63, 147, 173, 23, 64, 48, 73, 219, 189, 38, 86, 87, 213, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 30, 213, 134, 63, 147, 173, 23, 64, 48, 73, 219, 189, 50, 75, 20, 200, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 30, 213, 134, 63, 147, 173, 23, 64, 48, 73, 219, 189, 85, 213, 127, 63, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 130, 63, 0, 0, 0, 192, 62, 166, 186, 62, 0, 129, 129, 193, 170, 50, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 130, 63, 0, 0, 0, 192, 62, 166, 186, 62, 1, 129, 129, 193, 170, 50, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 130, 63, 0, 0, 0, 192, 62, 166, 186, 62, 19, 149, 149, 203, 170, 50, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 130, 63, 0, 0, 0, 192, 62, 166, 186, 62, 21, 149, 148, 207, 170, 50, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 2, 63, 0, 0, 0, 192, 62, 166, 186, 62, 0, 129, 129, 193, 170, 52, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 2, 63, 0, 0, 0, 192, 62, 166, 186, 62, 1, 129, 129, 193, 170, 52, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 23, 124, 2, 63, 0, 0, 0, 192, 62, 166, 186, 62, 1, 129, 129, 193, 170, 52, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 151, 124, 140, 63, 156, 228, 21, 64, 98, 231, 157, 190, 117, 125, 0, 134, 0, 57, 85, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 151, 124, 140, 63, 156, 228, 21, 64, 98, 231, 157, 190, 122, 109, 251, 135, 0, 57, 85, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 151, 124, 140, 63, 156, 228, 21, 64, 98, 231, 157, 190, 57, 95, 87, 213, 85, 58, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 151, 124, 140, 63, 156, 228, 21, 64, 98, 231, 157, 190, 50, 75, 79, 221, 85, 58, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 151, 124, 140, 63, 156, 228, 21, 64, 98, 231, 157, 190, 55, 71, 71, 221, 85, 58, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 25, 5, 237, 63, 14, 81, 98, 62, 50, 14, 160, 190, 130, 133, 127, 63, 85, 56, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 25, 5, 237, 63, 14, 81, 98, 62, 50, 14, 160, 190, 4, 120, 127, 193, 85, 56, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 25, 5, 237, 63, 14, 81, 98, 62, 50, 14, 160, 190, 126, 97, 127, 63, 85, 56, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 25, 5, 237, 63, 14, 81, 98, 62, 50, 14, 160, 190, 61, 67, 127, 63, 85, 56, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 239, 115, 241, 63, 117, 93, 86, 62, 137, 156, 66, 63, 3, 0, 127, 193, 85, 56, 195, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 239, 115, 241, 63, 117, 93, 86, 62, 137, 156, 66, 63, 4, 122, 127, 63, 85, 56, 195, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 239, 115, 241, 63, 117, 93, 86, 62, 137, 156, 66, 63, 28, 0, 127, 193, 85, 56, 195, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 239, 115, 241, 63, 117, 93, 86, 62, 137, 156, 66, 63, 60, 66, 127, 63, 85, 56, 195, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 109, 235, 144, 63, 206, 150, 20, 64, 19, 75, 229, 62, 27, 62, 88, 213, 85, 58, 69, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 109, 235, 144, 63, 206, 150, 20, 64, 19, 75, 229, 62, 38, 86, 87, 213, 85, 58, 69, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 109, 235, 144, 63, 206, 150, 20, 64, 19, 75, 229, 62, 40, 51, 71, 221, 85, 58, 69, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 109, 235, 144, 63, 206, 150, 20, 64, 19, 75, 229, 62, 50, 75, 14, 198, 85, 58, 69, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 109, 235, 144, 63, 206, 150, 20, 64, 19, 75, 229, 62, 55, 71, 71, 221, 85, 58, 69, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 58, 84, 138, 63, 163, 223, 27, 64, 92, 151, 142, 190, 179, 152, 127, 63, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 58, 84, 138, 63, 163, 223, 27, 64, 92, 151, 142, 190, 160, 143, 127, 63, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 58, 84, 138, 63, 163, 223, 27, 64, 92, 151, 142, 190, 76, 209, 127, 193, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 58, 84, 138, 63, 163, 223, 27, 64, 92, 151, 142, 190, 85, 213, 127, 63, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 172, 51, 252, 62, 168, 189, 44, 64, 92, 151, 142, 190, 173, 41, 127, 193, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 172, 51, 252, 62, 168, 189, 44, 64, 92, 151, 142, 190, 177, 50, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 172, 51, 252, 62, 168, 189, 44, 64, 92, 151, 142, 190, 179, 152, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 172, 51, 252, 62, 168, 189, 44, 64, 92, 151, 142, 190, 160, 143, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 108, 189, 2, 63, 146, 166, 46, 64, 4, 209, 10, 190, 173, 41, 127, 193, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 108, 189, 2, 63, 146, 166, 46, 64, 4, 209, 10, 190, 177, 50, 127, 63, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 108, 189, 2, 63, 146, 166, 46, 64, 4, 209, 10, 190, 10, 23, 127, 193, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 108, 189, 2, 63, 146, 166, 46, 64, 4, 209, 10, 190, 19, 43, 127, 193, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 6, 166, 140, 63, 141, 200, 29, 64, 4, 209, 10, 190, 10, 23, 127, 193, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 6, 166, 140, 63, 141, 200, 29, 64, 4, 209, 10, 190, 19, 43, 127, 193, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 6, 166, 140, 63, 141, 200, 29, 64, 4, 209, 10, 190, 76, 209, 127, 193, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 6, 166, 140, 63, 141, 200, 29, 64, 4, 209, 10, 190, 85, 213, 127, 63, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 114, 27, 143, 63, 171, 191, 30, 64, 96, 145, 170, 190, 179, 152, 127, 63, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 114, 27, 143, 63, 171, 191, 30, 64, 96, 145, 170, 190, 0, 127, 127, 63, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 114, 27, 143, 63, 171, 191, 30, 64, 96, 145, 170, 190, 76, 209, 127, 193, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 71, 168, 7, 63, 176, 157, 47, 64, 96, 145, 170, 190, 177, 50, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 71, 168, 7, 63, 176, 157, 47, 64, 96, 145, 170, 190, 179, 152, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 71, 168, 7, 63, 176, 157, 47, 64, 96, 145, 170, 190, 0, 127, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 16, 235, 19, 63, 32, 199, 53, 64, 244, 75, 110, 190, 177, 50, 127, 63, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 16, 235, 19, 63, 32, 199, 53, 64, 244, 75, 110, 190, 0, 127, 127, 63, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 16, 235, 19, 63, 32, 199, 53, 64, 244, 75, 110, 190, 19, 43, 127, 193, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 216, 60, 149, 63, 27, 233, 36, 64, 244, 75, 110, 190, 0, 127, 127, 63, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 216, 60, 149, 63, 27, 233, 36, 64, 244, 75, 110, 190, 19, 43, 127, 193, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 216, 60, 149, 63, 27, 233, 36, 64, 244, 75, 110, 190, 76, 209, 127, 193, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 114, 27, 143, 63, 171, 191, 30, 64, 96, 145, 170, 190, 213, 167, 127, 63, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 114, 27, 143, 63, 171, 191, 30, 64, 96, 145, 170, 190, 0, 127, 127, 63, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 114, 27, 143, 63, 171, 191, 30, 64, 96, 145, 170, 190, 81, 216, 127, 193, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 71, 168, 7, 63, 176, 157, 47, 64, 96, 145, 170, 190, 170, 45, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 71, 168, 7, 63, 176, 157, 47, 64, 96, 145, 170, 190, 213, 167, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 71, 168, 7, 63, 176, 157, 47, 64, 96, 145, 170, 190, 0, 127, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 16, 235, 19, 63, 32, 199, 53, 64, 244, 75, 110, 190, 170, 45, 127, 63, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 16, 235, 19, 63, 32, 199, 53, 64, 244, 75, 110, 190, 0, 127, 127, 63, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 16, 235, 19, 63, 32, 199, 53, 64, 244, 75, 110, 190, 36, 81, 127, 193, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 216, 60, 149, 63, 27, 233, 36, 64, 244, 75, 110, 190, 0, 127, 127, 63, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 216, 60, 149, 63, 27, 233, 36, 64, 244, 75, 110, 190, 36, 81, 127, 193, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 216, 60, 149, 63, 27, 233, 36, 64, 244, 75, 110, 190, 81, 216, 127, 193, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 48, 58, 144, 63, 134, 189, 30, 64, 200, 93, 195, 190, 213, 167, 127, 63, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 48, 58, 144, 63, 134, 189, 30, 64, 200, 93, 195, 190, 226, 188, 127, 193, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 48, 58, 144, 63, 134, 189, 30, 64, 200, 93, 195, 190, 81, 216, 127, 193, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 48, 58, 144, 63, 134, 189, 30, 64, 200, 93, 195, 190, 84, 215, 127, 193, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 195, 229, 9, 63, 139, 155, 47, 64, 200, 93, 195, 190, 171, 42, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 195, 229, 9, 63, 139, 155, 47, 64, 200, 93, 195, 190, 170, 45, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 195, 229, 9, 63, 139, 155, 47, 64, 200, 93, 195, 190, 213, 167, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 195, 229, 9, 63, 139, 155, 47, 64, 200, 93, 195, 190, 226, 188, 127, 193, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 62, 80, 24, 63, 194, 248, 54, 64, 124, 108, 232, 190, 171, 42, 127, 63, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 62, 80, 24, 63, 194, 248, 54, 64, 124, 108, 232, 190, 170, 45, 127, 63, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 62, 80, 24, 63, 194, 248, 54, 64, 124, 108, 232, 190, 69, 101, 127, 63, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 62, 80, 24, 63, 194, 248, 54, 64, 124, 108, 232, 190, 36, 81, 127, 193, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 111, 111, 151, 63, 189, 26, 38, 64, 124, 108, 232, 190, 69, 101, 127, 63, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 111, 111, 151, 63, 189, 26, 38, 64, 124, 108, 232, 190, 36, 81, 127, 193, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 111, 111, 151, 63, 189, 26, 38, 64, 124, 108, 232, 190, 81, 216, 127, 193, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 111, 111, 151, 63, 189, 26, 38, 64, 124, 108, 232, 190, 84, 215, 127, 193, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 176, 1, 141, 63, 150, 37, 27, 64, 24, 35, 12, 191, 226, 188, 127, 193, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 176, 1, 141, 63, 150, 37, 27, 64, 24, 35, 12, 191, 250, 242, 127, 193, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 176, 1, 141, 63, 150, 37, 27, 64, 24, 35, 12, 191, 84, 215, 127, 193, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 176, 1, 141, 63, 150, 37, 27, 64, 24, 35, 12, 191, 85, 218, 127, 193, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 193, 116, 3, 63, 155, 3, 44, 64, 26, 35, 12, 191, 168, 41, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 193, 116, 3, 63, 155, 3, 44, 64, 26, 35, 12, 191, 171, 42, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 193, 116, 3, 63, 155, 3, 44, 64, 26, 35, 12, 191, 226, 188, 127, 193, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 193, 116, 3, 63, 155, 3, 44, 64, 26, 35, 12, 191, 250, 242, 127, 193, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 86, 206, 6, 63, 106, 52, 45, 64, 254, 89, 49, 191, 168, 41, 127, 63, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 86, 206, 6, 63, 106, 52, 45, 64, 254, 89, 49, 191, 171, 42, 127, 63, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 86, 206, 6, 63, 106, 52, 45, 64, 254, 89, 49, 191, 112, 120, 127, 63, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 86, 206, 6, 63, 106, 52, 45, 64, 254, 89, 49, 191, 69, 101, 127, 63, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 124, 174, 142, 63, 101, 86, 28, 64, 254, 89, 49, 191, 112, 120, 127, 63, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 124, 174, 142, 63, 101, 86, 28, 64, 254, 89, 49, 191, 69, 101, 127, 63, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 124, 174, 142, 63, 101, 86, 28, 64, 254, 89, 49, 191, 84, 215, 127, 193, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 124, 174, 142, 63, 101, 86, 28, 64, 254, 89, 49, 191, 85, 218, 127, 193, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 250, 30, 123, 63, 176, 233, 9, 64, 126, 189, 23, 191, 208, 165, 87, 213, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 250, 30, 123, 63, 176, 233, 9, 64, 126, 189, 23, 191, 250, 242, 127, 193, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 250, 30, 123, 63, 176, 233, 9, 64, 126, 189, 23, 191, 85, 218, 127, 193, 65, 58, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 181, 32, 201, 62, 181, 199, 26, 64, 128, 189, 23, 191, 168, 41, 127, 63, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 181, 32, 201, 62, 181, 199, 26, 64, 128, 189, 23, 191, 208, 165, 87, 213, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 181, 32, 201, 62, 181, 199, 26, 64, 128, 189, 23, 191, 250, 242, 127, 193, 190, 57, 220, 55, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 223, 211, 207, 62, 132, 248, 27, 64, 100, 244, 60, 191, 168, 41, 127, 63, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 223, 211, 207, 62, 132, 248, 27, 64, 100, 244, 60, 191, 208, 165, 87, 213, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 223, 211, 207, 62, 132, 248, 27, 64, 100, 244, 60, 191, 112, 120, 127, 63, 190, 57, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 146, 120, 126, 63, 127, 26, 11, 64, 100, 244, 60, 191, 208, 165, 87, 213, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 146, 120, 126, 63, 127, 26, 11, 64, 100, 244, 60, 191, 112, 120, 127, 63, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 146, 120, 126, 63, 127, 26, 11, 64, 100, 244, 60, 191, 85, 218, 127, 193, 65, 58, 104, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 132, 140, 198, 62, 202, 42, 42, 64, 137, 148, 155, 190, 0, 123, 125, 193, 170, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 132, 140, 198, 62, 202, 42, 42, 64, 137, 148, 155, 190, 118, 126, 252, 136, 0, 57, 170, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 132, 140, 198, 62, 202, 42, 42, 64, 137, 148, 155, 190, 117, 125, 255, 135, 0, 57, 170, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 132, 140, 198, 62, 202, 42, 42, 64, 137, 148, 155, 190, 26, 98, 89, 205, 170, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 132, 140, 198, 62, 202, 42, 42, 64, 137, 148, 155, 190, 57, 95, 87, 213, 170, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 237, 66, 42, 64, 98, 231, 157, 190, 129, 0, 0, 134, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 237, 66, 42, 64, 98, 231, 157, 190, 138, 126, 4, 120, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 237, 66, 42, 64, 98, 231, 157, 190, 0, 123, 131, 63, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 237, 66, 42, 64, 98, 231, 157, 190, 0, 123, 125, 193, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 237, 66, 42, 64, 98, 231, 157, 190, 118, 126, 252, 136, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 245, 40, 64, 21, 75, 229, 62, 129, 0, 0, 133, 0, 57, 69, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 245, 40, 64, 21, 75, 229, 62, 0, 123, 131, 63, 0, 57, 69, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 245, 40, 64, 21, 75, 229, 62, 0, 71, 126, 193, 0, 57, 69, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 245, 40, 64, 21, 75, 229, 62, 0, 71, 130, 63, 0, 57, 69, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 245, 40, 64, 21, 75, 229, 62, 0, 123, 125, 193, 0, 57, 69, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 222, 71, 216, 62, 252, 220, 40, 64, 238, 157, 231, 62, 0, 71, 125, 193, 170, 57, 69, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 222, 71, 216, 62, 252, 220, 40, 64, 238, 157, 231, 62, 0, 123, 125, 193, 170, 57, 69, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 222, 71, 216, 62, 252, 220, 40, 64, 238, 157, 231, 62, 26, 98, 101, 208, 170, 57, 69, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 222, 71, 216, 62, 252, 220, 40, 64, 238, 157, 231, 62, 27, 62, 87, 213, 170, 57, 69, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 222, 71, 216, 62, 252, 220, 40, 64, 238, 157, 231, 62, 38, 86, 87, 213, 170, 57, 69, 53, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 163, 126, 229, 63, 179, 70, 240, 191, 50, 14, 160, 190, 250, 134, 127, 63, 0, 48, 0, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 163, 126, 229, 63, 179, 70, 240, 191, 50, 14, 160, 190, 25, 152, 127, 63, 0, 48, 0, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 64, 135, 239, 63, 243, 205, 134, 191, 50, 14, 160, 190, 130, 133, 127, 63, 85, 55, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 64, 135, 239, 63, 243, 205, 134, 191, 50, 14, 160, 190, 126, 97, 127, 63, 85, 55, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 121, 237, 233, 63, 38, 197, 241, 191, 138, 156, 66, 63, 252, 134, 127, 63, 0, 48, 120, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 121, 237, 233, 63, 38, 197, 241, 191, 138, 156, 66, 63, 23, 153, 127, 63, 0, 48, 120, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 121, 237, 233, 63, 38, 197, 241, 191, 112, 127, 184, 62, 250, 134, 127, 63, 0, 48, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 121, 237, 233, 63, 38, 197, 241, 191, 112, 127, 184, 62, 252, 134, 127, 63, 0, 48, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 121, 237, 233, 63, 38, 197, 241, 191, 112, 127, 184, 62, 25, 152, 127, 63, 0, 48, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 121, 237, 233, 63, 38, 197, 241, 191, 112, 127, 184, 62, 23, 153, 127, 63, 0, 48, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 239, 115, 241, 63, 117, 93, 86, 62, 111, 127, 184, 62, 4, 122, 127, 63, 85, 56, 93, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 239, 115, 241, 63, 117, 93, 86, 62, 111, 127, 184, 62, 4, 120, 127, 193, 85, 56, 93, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 239, 115, 241, 63, 117, 93, 86, 62, 111, 127, 184, 62, 61, 67, 127, 63, 85, 56, 93, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 239, 115, 241, 63, 117, 93, 86, 62, 111, 127, 184, 62, 60, 66, 127, 63, 85, 56, 93, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 145, 22, 4, 64, 133, 168, 140, 191, 138, 15, 55, 63, 28, 0, 127, 193, 85, 55, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 145, 22, 4, 64, 133, 168, 140, 191, 138, 15, 55, 63, 125, 1, 255, 130, 85, 55, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 145, 22, 4, 64, 133, 168, 140, 191, 101, 46, 179, 62, 125, 7, 255, 130, 85, 55, 93, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 145, 22, 4, 64, 133, 168, 140, 191, 101, 46, 179, 62, 125, 1, 255, 130, 85, 55, 93, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 114, 16, 2, 64, 75, 75, 139, 191, 151, 112, 135, 190, 126, 97, 127, 63, 85, 55, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 114, 16, 2, 64, 75, 75, 139, 191, 151, 112, 135, 190, 125, 7, 255, 130, 85, 55, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 3, 255, 63, 165, 247, 236, 191, 102, 46, 179, 62, 25, 152, 127, 63, 0, 48, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 3, 255, 63, 165, 247, 236, 191, 102, 46, 179, 62, 23, 153, 127, 63, 0, 48, 69, 53, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 3, 255, 63, 165, 247, 236, 191, 138, 15, 55, 63, 23, 153, 127, 63, 0, 48, 120, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 107, 247, 250, 63, 107, 154, 235, 191, 151, 112, 135, 190, 25, 152, 127, 63, 0, 48, 0, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 99, 241, 2, 64, 69, 71, 132, 61, 101, 46, 179, 62, 61, 67, 127, 63, 85, 56, 93, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 99, 241, 2, 64, 69, 71, 132, 61, 101, 46, 179, 62, 60, 66, 127, 63, 85, 56, 93, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 99, 241, 2, 64, 69, 71, 132, 61, 101, 46, 179, 62, 125, 7, 255, 130, 85, 56, 93, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 99, 241, 2, 64, 69, 71, 132, 61, 101, 46, 179, 62, 125, 1, 255, 130, 85, 56, 93, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 67, 235, 0, 64, 213, 26, 154, 61, 151, 112, 135, 190, 126, 97, 127, 63, 85, 56, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 67, 235, 0, 64, 213, 26, 154, 61, 151, 112, 135, 190, 61, 67, 127, 63, 85, 56, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 67, 235, 0, 64, 213, 26, 154, 61, 151, 112, 135, 190, 125, 7, 255, 130, 85, 56, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 70, 206, 190, 239, 47, 197, 63, 129, 0, 127, 63, 236, 55, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 158, 99, 151, 191, 239, 47, 197, 63, 129, 0, 127, 63, 121, 55, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 2, 138, 63, 138, 182, 10, 64, 246, 118, 53, 63, 17, 39, 87, 213, 85, 58, 112, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 2, 138, 63, 138, 182, 10, 64, 246, 118, 53, 63, 30, 28, 75, 223, 85, 58, 112, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 192, 194, 205, 63, 158, 214, 222, 63, 52, 166, 57, 63, 30, 28, 70, 224, 0, 59, 108, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 192, 194, 205, 63, 158, 214, 222, 63, 52, 166, 57, 63, 95, 9, 243, 135, 0, 57, 201, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 141, 138, 26, 64, 195, 143, 54, 63, 129, 0, 10, 129, 0, 57, 110, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 141, 138, 26, 64, 195, 143, 54, 63, 0, 46, 126, 193, 0, 57, 110, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 24, 124, 2, 63, 49, 184, 26, 64, 179, 38, 54, 63, 0, 46, 126, 193, 170, 57, 110, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 24, 124, 2, 63, 49, 184, 26, 64, 179, 38, 54, 63, 17, 39, 87, 213, 170, 57, 110, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 63, 252, 237, 92, 62, 230, 153, 76, 63, 95, 9, 242, 135, 85, 56, 215, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 63, 252, 237, 92, 62, 230, 153, 76, 63, 125, 1, 255, 130, 85, 56, 215, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 209, 18, 254, 190, 20, 248, 129, 63, 52, 214, 182, 63, 248, 15, 238, 125, 68, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 209, 18, 254, 190, 20, 248, 129, 63, 52, 214, 182, 63, 0, 22, 22, 126, 68, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 245, 16, 254, 62, 77, 55, 130, 63, 224, 198, 182, 63, 0, 22, 233, 130, 68, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 245, 16, 254, 62, 77, 55, 130, 63, 224, 198, 182, 63, 8, 15, 18, 131, 68, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 206, 19, 132, 63, 71, 55, 183, 63, 129, 0, 4, 127, 69, 56, 0, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 206, 19, 132, 63, 71, 55, 183, 63, 0, 22, 234, 126, 69, 56, 0, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 206, 19, 132, 63, 71, 55, 183, 63, 0, 22, 234, 130, 69, 56, 0, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0 ), +"array_index_data": PoolByteArray( 162, 0, 9, 0, 155, 0, 162, 0, 22, 0, 9, 0, 84, 0, 176, 2, 35, 1, 84, 0, 123, 1, 176, 2, 68, 0, 4, 0, 57, 0, 68, 0, 19, 0, 4, 0, 153, 0, 94, 1, 9, 2, 153, 0, 50, 0, 94, 1, 47, 0, 16, 0, 64, 0, 47, 0, 2, 0, 16, 0, 63, 0, 15, 0, 127, 0, 127, 0, 15, 0, 121, 0, 33, 0, 128, 1, 78, 0, 33, 0, 103, 1, 128, 1, 75, 0, 124, 1, 85, 0, 75, 0, 127, 1, 124, 1, 163, 0, 193, 0, 25, 0, 163, 0, 54, 1, 193, 0, 27, 0, 79, 0, 23, 0, 27, 0, 71, 0, 79, 0, 73, 0, 86, 0, 82, 0, 73, 0, 76, 0, 86, 0, 6, 0, 72, 0, 28, 0, 6, 0, 34, 0, 72, 0, 37, 0, 77, 0, 74, 0, 37, 0, 32, 0, 77, 0, 111, 0, 99, 0, 110, 0, 111, 0, 94, 0, 99, 0, 95, 1, 62, 0, 133, 1, 95, 1, 52, 0, 62, 0, 51, 0, 65, 0, 61, 0, 51, 0, 49, 0, 65, 0, 134, 0, 46, 0, 150, 0, 134, 0, 1, 0, 46, 0, 152, 0, 50, 0, 153, 0, 152, 0, 48, 0, 50, 0, 131, 1, 55, 0, 98, 1, 131, 1, 67, 0, 55, 0, 66, 0, 60, 0, 54, 0, 66, 0, 70, 0, 60, 0, 24, 0, 189, 0, 11, 0, 24, 0, 80, 0, 189, 0, 81, 0, 34, 1, 190, 0, 81, 0, 83, 0, 34, 1, 243, 1, 108, 0, 225, 1, 243, 1, 123, 0, 108, 0, 122, 0, 103, 0, 106, 0, 122, 0, 125, 0, 103, 0, 116, 0, 88, 0, 113, 0, 116, 0, 93, 0, 88, 0, 109, 0, 102, 0, 118, 0, 109, 0, 98, 0, 102, 0, 214, 1, 97, 0, 112, 0, 214, 1, 193, 1, 97, 0, 114, 0, 197, 1, 227, 1, 114, 0, 89, 0, 197, 1, 130, 0, 115, 0, 132, 0, 130, 0, 91, 0, 115, 0, 100, 0, 107, 0, 104, 0, 233, 2, 100, 0, 95, 0, 107, 0, 100, 0, 233, 2, 101, 0, 126, 0, 117, 0, 101, 0, 124, 0, 126, 0, 198, 1, 129, 0, 252, 1, 198, 1, 90, 0, 129, 0, 87, 0, 131, 0, 128, 0, 87, 0, 92, 0, 131, 0, 21, 0, 105, 0, 120, 0, 21, 0, 69, 0, 105, 0, 14, 0, 20, 0, 119, 0, 181, 0, 153, 0, 184, 0, 181, 0, 152, 0, 153, 0, 166, 0, 151, 0, 180, 0, 166, 0, 135, 0, 151, 0, 38, 1, 149, 0, 203, 0, 38, 1, 146, 0, 149, 0, 183, 2, 147, 0, 41, 1, 183, 2, 12, 2, 147, 0, 139, 0, 17, 0, 12, 0, 79, 1, 139, 0, 142, 0, 17, 0, 139, 0, 79, 1, 0, 0, 140, 0, 13, 0, 0, 0, 133, 0, 140, 0, 201, 0, 138, 0, 157, 0, 201, 0, 148, 0, 138, 0, 184, 0, 9, 2, 36, 2, 184, 0, 153, 0, 9, 2, 18, 0, 75, 1, 3, 0, 18, 0, 80, 1, 75, 1, 30, 0, 35, 2, 101, 1, 30, 0, 183, 0, 35, 2, 186, 0, 156, 0, 10, 0, 186, 0, 199, 0, 156, 0, 195, 0, 68, 1, 52, 1, 195, 0, 159, 0, 68, 1, 38, 0, 216, 0, 175, 0, 38, 0, 204, 0, 216, 0, 7, 0, 179, 0, 35, 0, 7, 0, 165, 0, 179, 0, 36, 0, 185, 0, 31, 0, 36, 0, 182, 0, 185, 0, 8, 0, 51, 1, 168, 0, 8, 0, 43, 1, 51, 1, 143, 0, 154, 0, 137, 0, 143, 0, 161, 0, 154, 0, 40, 0, 32, 1, 42, 0, 40, 0, 188, 0, 32, 1, 43, 0, 39, 1, 172, 0, 43, 0, 33, 1, 39, 1, 176, 0, 187, 0, 39, 0, 176, 0, 200, 0, 187, 0, 171, 0, 202, 0, 177, 0, 171, 0, 37, 1, 202, 0, 218, 0, 226, 0, 212, 0, 218, 0, 230, 0, 226, 0, 44, 0, 206, 0, 41, 0, 44, 0, 208, 0, 206, 0, 178, 0, 213, 0, 173, 0, 178, 0, 219, 0, 213, 0, 174, 0, 211, 0, 45, 0, 174, 0, 215, 0, 211, 0, 221, 0, 243, 0, 231, 0, 221, 0, 233, 0, 243, 0, 214, 0, 225, 0, 210, 0, 214, 0, 228, 0, 225, 0, 205, 0, 229, 0, 217, 0, 205, 0, 220, 0, 229, 0, 209, 0, 222, 0, 207, 0, 209, 0, 224, 0, 222, 0, 232, 0, 1, 1, 241, 0, 232, 0, 245, 0, 1, 1, 223, 0, 233, 0, 221, 0, 223, 0, 235, 0, 233, 0, 231, 0, 239, 0, 227, 0, 231, 0, 243, 0, 239, 0, 227, 0, 235, 0, 223, 0, 227, 0, 239, 0, 235, 0, 3, 1, 12, 1, 253, 0, 3, 1, 18, 1, 12, 1, 236, 0, 247, 0, 234, 0, 236, 0, 249, 0, 247, 0, 242, 0, 252, 0, 238, 0, 242, 0, 2, 1, 252, 0, 240, 0, 250, 0, 237, 0, 240, 0, 254, 0, 250, 0, 4, 1, 29, 1, 16, 1, 4, 1, 20, 1, 29, 1, 255, 0, 10, 1, 251, 0, 255, 0, 14, 1, 10, 1, 244, 0, 17, 1, 0, 1, 244, 0, 5, 1, 17, 1, 248, 0, 7, 1, 246, 0, 248, 0, 9, 1, 7, 1, 24, 1, 31, 1, 22, 1, 24, 1, 27, 1, 31, 1, 8, 1, 21, 1, 6, 1, 8, 1, 23, 1, 21, 1, 19, 1, 26, 1, 13, 1, 19, 1, 30, 1, 26, 1, 15, 1, 25, 1, 11, 1, 15, 1, 28, 1, 25, 1, 177, 2, 40, 1, 36, 1, 177, 2, 181, 2, 40, 1, 144, 0, 55, 1, 164, 0, 144, 0, 197, 0, 55, 1, 192, 0, 61, 1, 44, 1, 192, 0, 72, 1, 61, 1, 167, 0, 47, 1, 136, 0, 167, 0, 50, 1, 47, 1, 141, 0, 198, 0, 145, 0, 141, 0, 170, 0, 198, 0, 53, 1, 71, 1, 191, 0, 53, 1, 69, 1, 71, 1, 26, 0, 45, 1, 29, 0, 26, 0, 194, 0, 45, 1, 59, 1, 70, 1, 67, 1, 59, 1, 60, 1, 70, 1, 56, 1, 66, 1, 158, 0, 56, 1, 58, 1, 66, 1, 169, 0, 160, 0, 196, 0, 169, 0, 57, 1, 160, 0, 42, 1, 63, 1, 49, 1, 42, 1, 65, 1, 63, 1, 48, 1, 64, 1, 46, 1, 48, 1, 62, 1, 64, 1, 73, 1, 5, 0, 76, 1, 73, 1, 58, 0, 5, 0, 228, 2, 56, 0, 78, 1, 228, 2, 99, 1, 56, 0, 77, 1, 59, 0, 74, 1, 77, 1, 53, 0, 59, 0, 43, 2, 92, 1, 118, 1, 43, 2, 32, 2, 92, 1, 189, 1, 179, 2, 125, 1, 189, 1, 171, 2, 179, 2, 10, 2, 129, 1, 14, 2, 129, 1, 227, 2, 96, 1, 129, 1, 10, 2, 227, 2, 174, 1, 85, 1, 111, 1, 174, 1, 164, 1, 85, 1, 29, 2, 94, 1, 154, 1, 29, 2, 9, 2, 94, 1, 152, 1, 104, 1, 81, 1, 152, 1, 168, 1, 104, 1, 169, 1, 249, 1, 105, 1, 105, 1, 249, 1, 238, 1, 8, 2, 132, 1, 93, 1, 8, 2, 13, 2, 132, 1, 13, 2, 129, 1, 132, 1, 13, 2, 14, 2, 129, 1, 137, 1, 128, 1, 103, 1, 137, 1, 182, 1, 128, 1, 179, 1, 124, 1, 127, 1, 179, 1, 187, 1, 124, 1, 42, 2, 74, 2, 201, 2, 42, 2, 115, 1, 74, 2, 121, 1, 186, 1, 178, 1, 121, 1, 117, 1, 186, 1, 175, 1, 188, 1, 180, 1, 175, 1, 183, 1, 188, 1, 89, 1, 177, 1, 141, 1, 89, 1, 120, 1, 177, 1, 139, 1, 181, 1, 136, 1, 139, 1, 176, 1, 181, 1, 231, 1, 211, 1, 209, 1, 231, 1, 228, 1, 211, 1, 213, 1, 195, 1, 226, 1, 195, 1, 241, 1, 250, 1, 241, 1, 237, 2, 223, 1, 237, 2, 213, 1, 191, 1, 213, 1, 241, 1, 195, 1, 241, 1, 213, 1, 237, 2, 95, 1, 166, 1, 156, 1, 95, 1, 133, 1, 166, 1, 155, 1, 167, 1, 151, 1, 155, 1, 165, 1, 167, 1, 4, 2, 153, 1, 82, 1, 4, 2, 28, 2, 153, 1, 26, 2, 154, 1, 150, 1, 26, 2, 29, 2, 154, 1, 130, 1, 157, 1, 170, 1, 130, 1, 97, 1, 157, 1, 171, 1, 161, 1, 172, 1, 171, 1, 159, 1, 161, 1, 116, 1, 69, 2, 185, 1, 116, 1, 90, 1, 69, 2, 184, 1, 172, 2, 190, 1, 184, 1, 68, 2, 172, 2, 242, 1, 220, 1, 244, 1, 242, 1, 224, 1, 220, 1, 245, 1, 216, 1, 246, 1, 245, 1, 222, 1, 216, 1, 234, 1, 201, 1, 203, 1, 234, 1, 233, 1, 201, 1, 229, 1, 217, 1, 212, 1, 229, 1, 236, 1, 217, 1, 214, 1, 206, 1, 193, 1, 214, 1, 230, 1, 206, 1, 232, 1, 197, 1, 200, 1, 232, 1, 227, 1, 197, 1, 0, 2, 235, 1, 205, 1, 0, 2, 1, 2, 235, 1, 221, 1, 210, 1, 215, 1, 210, 1, 236, 2, 208, 1, 210, 1, 221, 1, 236, 2, 132, 1, 213, 1, 226, 1, 132, 1, 129, 1, 213, 1, 218, 1, 248, 1, 247, 1, 218, 1, 237, 1, 248, 1, 196, 1, 253, 1, 199, 1, 196, 1, 251, 1, 253, 1, 202, 1, 255, 1, 204, 1, 202, 1, 254, 1, 255, 1, 109, 1, 219, 1, 173, 1, 109, 1, 239, 1, 219, 1, 106, 1, 240, 1, 110, 1, 61, 2, 29, 2, 26, 2, 61, 2, 65, 2, 29, 2, 47, 2, 27, 2, 3, 2, 47, 2, 63, 2, 27, 2, 188, 2, 24, 2, 23, 2, 188, 2, 81, 2, 24, 2, 182, 2, 22, 2, 11, 2, 182, 2, 185, 2, 22, 2, 113, 1, 17, 2, 108, 1, 17, 2, 232, 2, 21, 2, 17, 2, 113, 1, 232, 2, 83, 1, 16, 2, 5, 2, 83, 1, 107, 1, 16, 2, 51, 2, 14, 2, 13, 2, 51, 2, 52, 2, 14, 2, 34, 2, 13, 2, 8, 2, 34, 2, 51, 2, 13, 2, 83, 2, 6, 2, 25, 2, 83, 2, 30, 2, 6, 2, 65, 2, 9, 2, 29, 2, 65, 2, 36, 2, 9, 2, 52, 2, 10, 2, 14, 2, 52, 2, 180, 2, 10, 2, 112, 1, 226, 2, 231, 2, 112, 1, 86, 1, 226, 2, 122, 1, 180, 2, 52, 2, 122, 1, 175, 2, 180, 2, 134, 1, 37, 2, 66, 2, 134, 1, 102, 1, 37, 2, 72, 2, 31, 2, 85, 2, 72, 2, 91, 1, 31, 2, 100, 1, 51, 2, 34, 2, 100, 1, 126, 1, 51, 2, 126, 1, 52, 2, 51, 2, 126, 1, 122, 1, 52, 2, 80, 2, 215, 2, 39, 2, 80, 2, 203, 2, 215, 2, 145, 1, 101, 2, 89, 2, 145, 1, 60, 2, 101, 2, 88, 1, 64, 2, 48, 2, 88, 1, 140, 1, 64, 2, 138, 1, 67, 2, 62, 2, 138, 1, 135, 1, 67, 2, 87, 1, 196, 2, 190, 2, 87, 1, 45, 2, 196, 2, 20, 2, 33, 2, 44, 2, 20, 2, 7, 2, 33, 2, 143, 1, 174, 2, 70, 2, 143, 1, 149, 1, 174, 2, 148, 1, 187, 2, 173, 2, 148, 1, 55, 2, 187, 2, 59, 2, 71, 2, 84, 2, 59, 2, 144, 1, 71, 2, 56, 2, 82, 2, 189, 2, 56, 2, 58, 2, 82, 2, 99, 2, 110, 2, 112, 2, 99, 2, 97, 2, 110, 2, 147, 1, 87, 2, 93, 2, 147, 1, 142, 1, 87, 2, 57, 2, 96, 2, 98, 2, 57, 2, 54, 2, 96, 2, 53, 2, 90, 2, 94, 2, 53, 2, 146, 1, 90, 2, 103, 2, 123, 2, 115, 2, 103, 2, 111, 2, 123, 2, 95, 2, 105, 2, 108, 2, 95, 2, 91, 2, 105, 2, 88, 2, 113, 2, 104, 2, 88, 2, 100, 2, 113, 2, 92, 2, 102, 2, 106, 2, 92, 2, 86, 2, 102, 2, 116, 2, 140, 2, 128, 2, 116, 2, 125, 2, 140, 2, 107, 2, 115, 2, 119, 2, 107, 2, 103, 2, 115, 2, 111, 2, 121, 2, 123, 2, 111, 2, 109, 2, 121, 2, 109, 2, 119, 2, 121, 2, 109, 2, 107, 2, 119, 2, 138, 2, 153, 2, 155, 2, 138, 2, 136, 2, 153, 2, 118, 2, 126, 2, 132, 2, 118, 2, 114, 2, 126, 2, 124, 2, 137, 2, 139, 2, 124, 2, 122, 2, 137, 2, 120, 2, 131, 2, 135, 2, 120, 2, 117, 2, 131, 2, 145, 2, 169, 2, 160, 2, 145, 2, 157, 2, 169, 2, 134, 2, 147, 2, 151, 2, 134, 2, 130, 2, 147, 2, 129, 2, 156, 2, 144, 2, 129, 2, 141, 2, 156, 2, 133, 2, 142, 2, 148, 2, 133, 2, 127, 2, 142, 2, 162, 2, 167, 2, 165, 2, 162, 2, 158, 2, 167, 2, 149, 2, 159, 2, 163, 2, 149, 2, 143, 2, 159, 2, 154, 2, 166, 2, 168, 2, 154, 2, 152, 2, 166, 2, 150, 2, 161, 2, 164, 2, 150, 2, 146, 2, 161, 2, 178, 2, 186, 2, 184, 2, 178, 2, 170, 2, 186, 2, 19, 2, 200, 2, 78, 2, 19, 2, 41, 2, 200, 2, 75, 2, 208, 2, 218, 2, 75, 2, 193, 2, 208, 2, 46, 2, 194, 2, 197, 2, 46, 2, 2, 2, 194, 2, 15, 2, 77, 2, 49, 2, 15, 2, 18, 2, 77, 2, 202, 2, 219, 2, 214, 2, 202, 2, 76, 2, 219, 2, 114, 1, 192, 2, 73, 2, 114, 1, 119, 1, 192, 2, 206, 2, 220, 2, 209, 2, 206, 2, 216, 2, 220, 2, 205, 2, 217, 2, 207, 2, 205, 2, 40, 2, 217, 2, 50, 2, 38, 2, 204, 2, 50, 2, 79, 2, 38, 2, 191, 2, 210, 2, 213, 2, 191, 2, 198, 2, 210, 2, 199, 2, 212, 2, 211, 2, 199, 2, 195, 2, 212, 2, 250, 1, 221, 2, 222, 2, 250, 1, 241, 1, 221, 2, 224, 2, 84, 1, 163, 1, 224, 2, 225, 2, 84, 1, 228, 2, 158, 1, 99, 1, 228, 2, 229, 2, 158, 1, 230, 2, 162, 1, 160, 1, 230, 2, 223, 2, 162, 1, 234, 2, 192, 1, 238, 2, 234, 2, 96, 0, 192, 1, 239, 2, 207, 1, 235, 2, 239, 2, 194, 1, 207, 1 ), +"blend_shape_data": [ ], +"format": 2194903, +"index_count": 1245, +"material": ExtResource( 13 ), +"primitive": 4, +"skeleton_aabb": [ AABB( -2.06388, -2, -0.428396, 4.12775, 2.07525, 1.96892 ), AABB( -1.88635, 0.209341, -0.738104, 3.7727, 2.64959, 2.18603 ) ], +"vertex_count": 752 +} +surfaces/1 = { +"aabb": AABB( -2.06388, -1.88883, -0.312608, 4.12775, 4.34582, 1.85313 ), +"array_data": PoolByteArray( 95, 218, 208, 191, 162, 116, 239, 191, 100, 231, 157, 190, 126, 123, 127, 63, 0, 54, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 151, 221, 3, 191, 141, 171, 210, 190, 239, 47, 197, 63, 240, 0, 1, 126, 235, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 151, 221, 3, 191, 141, 171, 210, 190, 239, 47, 197, 63, 251, 97, 127, 193, 235, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 151, 221, 3, 191, 141, 171, 210, 190, 239, 47, 197, 63, 255, 100, 127, 193, 235, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 151, 221, 3, 191, 141, 171, 210, 190, 239, 47, 197, 63, 0, 0, 0, 126, 235, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 252, 226, 218, 191, 226, 251, 133, 191, 100, 231, 157, 190, 126, 123, 127, 63, 85, 55, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 38, 28, 5, 191, 100, 99, 179, 191, 255, 255, 127, 63, 253, 143, 127, 193, 85, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 38, 28, 5, 191, 100, 99, 179, 191, 255, 255, 127, 63, 0, 129, 0, 63, 85, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 243, 27, 169, 191, 100, 99, 179, 191, 255, 255, 127, 63, 152, 248, 127, 193, 85, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 243, 27, 169, 191, 100, 99, 179, 191, 255, 255, 127, 63, 253, 143, 127, 193, 85, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 8, 198, 252, 190, 184, 103, 211, 63, 255, 255, 127, 63, 244, 63, 127, 193, 85, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 8, 198, 252, 190, 184, 103, 211, 63, 255, 255, 127, 63, 0, 73, 127, 193, 85, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 188, 204, 157, 191, 153, 244, 191, 63, 222, 3, 131, 63, 189, 20, 34, 117, 85, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 188, 204, 157, 191, 153, 244, 191, 63, 222, 3, 131, 63, 244, 63, 127, 193, 85, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 196, 82, 166, 191, 63, 86, 129, 63, 255, 255, 127, 63, 131, 0, 0, 122, 56, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 196, 82, 166, 191, 63, 86, 129, 63, 255, 255, 127, 63, 189, 20, 34, 117, 56, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 71, 96, 254, 190, 82, 134, 126, 63, 139, 85, 185, 63, 254, 57, 59, 126, 64, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 80, 232, 141, 191, 201, 18, 186, 63, 61, 32, 141, 63, 189, 20, 127, 193, 85, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 80, 232, 141, 191, 201, 18, 186, 63, 61, 32, 141, 63, 244, 63, 127, 193, 85, 56, 162, 47, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 8, 198, 252, 190, 148, 190, 201, 63, 61, 32, 141, 63, 244, 63, 127, 193, 85, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 8, 198, 252, 190, 148, 190, 201, 63, 61, 32, 141, 63, 0, 73, 0, 220, 85, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 38, 28, 5, 191, 100, 99, 179, 191, 197, 170, 156, 63, 253, 143, 127, 193, 85, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 38, 28, 5, 191, 100, 99, 179, 191, 197, 170, 156, 63, 0, 129, 127, 63, 85, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 41, 156, 163, 191, 68, 174, 174, 191, 95, 68, 150, 63, 152, 248, 127, 193, 85, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 41, 156, 163, 191, 68, 174, 174, 191, 95, 68, 150, 63, 253, 143, 127, 193, 85, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 163, 84, 166, 191, 70, 13, 124, 63, 252, 63, 150, 63, 131, 0, 0, 123, 55, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 163, 84, 166, 191, 70, 13, 124, 63, 252, 63, 150, 63, 189, 20, 34, 117, 55, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 91, 183, 167, 191, 148, 220, 194, 190, 255, 255, 127, 63, 131, 0, 0, 126, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 91, 183, 167, 191, 148, 220, 194, 190, 255, 255, 127, 63, 131, 1, 1, 126, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 37, 38, 2, 191, 192, 2, 199, 190, 139, 85, 185, 63, 251, 97, 127, 193, 235, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 37, 38, 2, 191, 192, 2, 199, 190, 139, 85, 185, 63, 255, 100, 127, 193, 235, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 244, 30, 153, 191, 2, 27, 208, 190, 91, 132, 172, 63, 131, 9, 127, 63, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 244, 30, 153, 191, 2, 27, 208, 190, 91, 132, 172, 63, 180, 0, 14, 109, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 244, 30, 153, 191, 2, 27, 208, 190, 91, 132, 172, 63, 251, 97, 127, 193, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 75, 184, 167, 191, 204, 123, 201, 190, 46, 66, 150, 63, 131, 0, 0, 126, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 75, 184, 167, 191, 204, 123, 201, 190, 46, 66, 150, 63, 131, 1, 18, 126, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 75, 184, 167, 191, 204, 123, 201, 190, 46, 66, 150, 63, 180, 0, 14, 147, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 161, 199, 168, 191, 39, 125, 148, 191, 255, 255, 127, 63, 131, 1, 107, 126, 118, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 161, 199, 168, 191, 39, 125, 148, 191, 255, 255, 127, 63, 152, 248, 127, 193, 118, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 233, 104, 4, 191, 242, 187, 148, 191, 139, 85, 185, 63, 25, 130, 127, 63, 120, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 233, 104, 4, 191, 242, 187, 148, 191, 139, 85, 185, 63, 28, 134, 127, 63, 120, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 204, 45, 154, 191, 148, 69, 149, 191, 180, 135, 172, 63, 131, 9, 127, 63, 118, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 204, 45, 154, 191, 148, 69, 149, 191, 180, 135, 172, 63, 180, 0, 14, 109, 118, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 204, 45, 154, 191, 148, 69, 149, 191, 180, 135, 172, 63, 28, 134, 127, 63, 118, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 217, 199, 168, 191, 94, 225, 148, 191, 218, 67, 150, 63, 131, 1, 132, 126, 118, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 217, 199, 168, 191, 94, 225, 148, 191, 218, 67, 150, 63, 152, 248, 127, 193, 118, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 217, 199, 168, 191, 94, 225, 148, 191, 218, 67, 150, 63, 180, 0, 14, 109, 118, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 53, 73, 213, 191, 21, 243, 240, 191, 241, 175, 67, 63, 253, 0, 127, 193, 0, 54, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 192, 194, 205, 191, 115, 53, 229, 63, 13, 85, 48, 63, 144, 8, 9, 122, 0, 57, 195, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 192, 194, 205, 191, 115, 53, 229, 63, 13, 85, 48, 63, 227, 38, 185, 35, 0, 59, 120, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 210, 81, 223, 191, 85, 122, 135, 191, 240, 175, 67, 63, 253, 0, 127, 193, 85, 55, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 191, 252, 237, 92, 62, 240, 175, 67, 63, 144, 8, 14, 122, 85, 56, 195, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 24, 124, 2, 191, 83, 63, 29, 64, 15, 85, 48, 63, 239, 39, 169, 43, 170, 57, 120, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 24, 124, 2, 191, 83, 63, 29, 64, 15, 85, 48, 63, 0, 46, 130, 63, 170, 57, 120, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 2, 138, 191, 84, 241, 12, 64, 14, 85, 48, 63, 227, 38, 186, 35, 85, 58, 120, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 2, 138, 191, 84, 241, 12, 64, 14, 85, 48, 63, 239, 39, 169, 43, 85, 58, 120, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 22, 246, 243, 191, 102, 76, 136, 191, 137, 156, 66, 63, 229, 254, 127, 193, 85, 55, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 22, 246, 243, 191, 102, 76, 136, 191, 137, 156, 66, 63, 253, 0, 127, 193, 85, 55, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 163, 126, 229, 191, 179, 70, 240, 191, 50, 14, 160, 190, 132, 158, 127, 63, 0, 54, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 163, 126, 229, 191, 179, 70, 240, 191, 50, 14, 160, 190, 126, 123, 127, 63, 0, 54, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 64, 135, 239, 191, 243, 205, 134, 191, 50, 14, 160, 190, 132, 158, 127, 63, 85, 55, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 64, 135, 239, 191, 243, 205, 134, 191, 50, 14, 160, 190, 126, 123, 127, 63, 85, 55, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 121, 237, 233, 191, 38, 197, 241, 191, 138, 156, 66, 63, 229, 254, 127, 193, 0, 54, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 121, 237, 233, 191, 38, 197, 241, 191, 138, 156, 66, 63, 253, 0, 127, 193, 0, 54, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 145, 22, 4, 192, 133, 168, 140, 191, 138, 15, 55, 63, 141, 245, 245, 121, 85, 55, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 145, 22, 4, 192, 133, 168, 140, 191, 138, 15, 55, 63, 229, 254, 127, 193, 85, 55, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 145, 22, 4, 192, 133, 168, 140, 191, 101, 46, 179, 62, 141, 245, 245, 121, 85, 55, 93, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 145, 22, 4, 192, 133, 168, 140, 191, 101, 46, 179, 62, 140, 240, 245, 121, 85, 55, 93, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 114, 16, 2, 192, 75, 75, 139, 191, 151, 112, 135, 190, 140, 240, 245, 121, 85, 55, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 114, 16, 2, 192, 75, 75, 139, 191, 151, 112, 135, 190, 132, 158, 127, 63, 85, 55, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 3, 255, 191, 165, 247, 236, 191, 102, 46, 179, 62, 141, 245, 245, 121, 0, 54, 93, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 3, 255, 191, 165, 247, 236, 191, 102, 46, 179, 62, 140, 240, 245, 121, 0, 54, 93, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 3, 255, 191, 165, 247, 236, 191, 138, 15, 55, 63, 141, 245, 245, 121, 0, 54, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 3, 255, 191, 165, 247, 236, 191, 138, 15, 55, 63, 229, 254, 127, 193, 0, 54, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 107, 247, 250, 191, 107, 154, 235, 191, 151, 112, 135, 190, 140, 240, 245, 121, 0, 54, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 107, 247, 250, 191, 107, 154, 235, 191, 151, 112, 135, 190, 132, 158, 127, 63, 0, 54, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 173, 250, 153, 191, 207, 195, 219, 190, 191, 94, 184, 63, 131, 9, 127, 63, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 173, 250, 153, 191, 207, 195, 219, 190, 191, 94, 184, 63, 240, 0, 1, 126, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 173, 250, 153, 191, 207, 195, 219, 190, 191, 94, 184, 63, 251, 97, 127, 193, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 91, 32, 6, 191, 37, 166, 151, 191, 239, 47, 197, 63, 240, 0, 1, 126, 120, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 91, 32, 6, 191, 37, 166, 151, 191, 239, 47, 197, 63, 0, 0, 1, 126, 120, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 91, 32, 6, 191, 37, 166, 151, 191, 239, 47, 197, 63, 25, 130, 127, 63, 120, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 91, 32, 6, 191, 37, 166, 151, 191, 239, 47, 197, 63, 28, 134, 127, 63, 120, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 133, 9, 155, 191, 199, 47, 152, 191, 24, 98, 184, 63, 131, 9, 127, 63, 118, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 133, 9, 155, 191, 199, 47, 152, 191, 24, 98, 184, 63, 240, 0, 1, 126, 118, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 133, 9, 155, 191, 199, 47, 152, 191, 24, 98, 184, 63, 28, 134, 127, 63, 118, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 2, 138, 191, 138, 182, 10, 64, 246, 118, 53, 63, 227, 38, 186, 35, 85, 58, 112, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 2, 138, 191, 138, 182, 10, 64, 246, 118, 53, 63, 239, 39, 169, 43, 85, 58, 112, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 192, 194, 205, 191, 158, 214, 222, 63, 52, 166, 57, 63, 144, 8, 9, 121, 0, 57, 201, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 192, 194, 205, 191, 158, 214, 222, 63, 52, 166, 57, 63, 227, 38, 185, 35, 0, 59, 108, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 24, 124, 2, 191, 49, 184, 26, 64, 179, 38, 54, 63, 239, 39, 169, 43, 170, 57, 110, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 24, 124, 2, 191, 49, 184, 26, 64, 179, 38, 54, 63, 0, 46, 130, 63, 170, 57, 110, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 191, 252, 237, 92, 62, 230, 153, 76, 63, 144, 8, 13, 122, 85, 56, 215, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 95, 218, 208, 63, 162, 116, 239, 191, 100, 231, 157, 190, 130, 123, 127, 63, 0, 54, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 151, 221, 3, 63, 141, 171, 210, 190, 239, 47, 197, 63, 0, 0, 0, 130, 235, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 151, 221, 3, 63, 141, 171, 210, 190, 239, 47, 197, 63, 1, 100, 127, 193, 235, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 151, 221, 3, 63, 141, 171, 210, 190, 239, 47, 197, 63, 5, 97, 127, 193, 235, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 151, 221, 3, 63, 141, 171, 210, 190, 239, 47, 197, 63, 16, 0, 255, 130, 235, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 252, 226, 218, 63, 226, 251, 133, 191, 100, 231, 157, 190, 130, 123, 127, 63, 85, 55, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 184, 103, 211, 63, 255, 255, 127, 63, 0, 73, 0, 36, 85, 56, 0, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 99, 179, 191, 255, 255, 127, 63, 0, 129, 0, 193, 85, 55, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 38, 28, 5, 63, 100, 99, 179, 191, 255, 255, 127, 63, 0, 129, 0, 193, 85, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 38, 28, 5, 63, 100, 99, 179, 191, 255, 255, 127, 63, 3, 143, 127, 193, 85, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 243, 27, 169, 63, 100, 99, 179, 191, 255, 255, 127, 63, 3, 143, 127, 193, 85, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 243, 27, 169, 63, 100, 99, 179, 191, 255, 255, 127, 63, 104, 248, 127, 193, 85, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 8, 198, 252, 62, 184, 103, 211, 63, 255, 255, 127, 63, 0, 73, 127, 193, 85, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 8, 198, 252, 62, 184, 103, 211, 63, 255, 255, 127, 63, 12, 63, 127, 193, 85, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 188, 204, 157, 63, 153, 244, 191, 63, 222, 3, 131, 63, 12, 63, 127, 193, 85, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 188, 204, 157, 63, 153, 244, 191, 63, 222, 3, 131, 63, 67, 20, 222, 139, 85, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148, 190, 201, 63, 61, 32, 141, 63, 0, 73, 0, 36, 85, 56, 255, 51, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 196, 82, 166, 63, 63, 86, 129, 63, 255, 255, 127, 63, 67, 20, 222, 139, 56, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 196, 82, 166, 63, 63, 86, 129, 63, 255, 255, 127, 63, 125, 0, 0, 134, 56, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 71, 96, 254, 62, 82, 134, 126, 63, 139, 85, 185, 63, 2, 57, 198, 130, 64, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 210, 117, 129, 63, 139, 85, 185, 63, 254, 57, 59, 126, 66, 56, 255, 51, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 210, 117, 129, 63, 139, 85, 185, 63, 2, 57, 199, 130, 66, 56, 255, 51, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 99, 179, 191, 197, 170, 156, 63, 0, 129, 0, 193, 85, 55, 255, 51, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 80, 232, 141, 63, 201, 18, 186, 63, 61, 32, 141, 63, 12, 63, 127, 193, 85, 56, 162, 47, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 80, 232, 141, 63, 201, 18, 186, 63, 61, 32, 141, 63, 67, 20, 127, 193, 85, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 8, 198, 252, 62, 148, 190, 201, 63, 61, 32, 141, 63, 0, 73, 0, 36, 85, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 8, 198, 252, 62, 148, 190, 201, 63, 61, 32, 141, 63, 12, 63, 127, 193, 85, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 38, 28, 5, 63, 100, 99, 179, 191, 197, 170, 156, 63, 0, 129, 127, 63, 85, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 38, 28, 5, 63, 100, 99, 179, 191, 197, 170, 156, 63, 3, 143, 127, 193, 85, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 41, 156, 163, 63, 68, 174, 174, 191, 95, 68, 150, 63, 3, 143, 127, 193, 85, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 41, 156, 163, 63, 68, 174, 174, 191, 95, 68, 150, 63, 104, 248, 127, 193, 85, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 163, 84, 166, 63, 70, 13, 124, 63, 252, 63, 150, 63, 67, 20, 222, 139, 55, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 163, 84, 166, 63, 70, 13, 124, 63, 252, 63, 150, 63, 125, 0, 0, 133, 55, 56, 85, 45, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 91, 183, 167, 63, 148, 220, 194, 190, 255, 255, 127, 63, 125, 1, 255, 130, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 91, 183, 167, 63, 148, 220, 194, 190, 255, 255, 127, 63, 125, 0, 0, 130, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110, 157, 194, 190, 139, 85, 185, 63, 255, 100, 127, 193, 236, 55, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110, 157, 194, 190, 139, 85, 185, 63, 1, 100, 127, 193, 236, 55, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 37, 38, 2, 63, 192, 2, 199, 190, 139, 85, 185, 63, 1, 100, 127, 193, 235, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 37, 38, 2, 63, 192, 2, 199, 190, 139, 85, 185, 63, 5, 97, 127, 193, 235, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 244, 30, 153, 63, 2, 27, 208, 190, 91, 132, 172, 63, 5, 97, 127, 193, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 244, 30, 153, 63, 2, 27, 208, 190, 91, 132, 172, 63, 76, 0, 242, 109, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 244, 30, 153, 63, 2, 27, 208, 190, 91, 132, 172, 63, 125, 9, 127, 63, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 75, 184, 167, 63, 204, 123, 201, 190, 46, 66, 150, 63, 76, 0, 242, 109, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 75, 184, 167, 63, 204, 123, 201, 190, 46, 66, 150, 63, 125, 1, 238, 130, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 75, 184, 167, 63, 204, 123, 201, 190, 46, 66, 150, 63, 125, 0, 0, 130, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 161, 199, 168, 63, 39, 125, 148, 191, 255, 255, 127, 63, 104, 248, 127, 193, 118, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 161, 199, 168, 63, 39, 125, 148, 191, 255, 255, 127, 63, 125, 1, 149, 130, 118, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107, 121, 148, 191, 139, 85, 185, 63, 231, 130, 127, 63, 121, 55, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107, 121, 148, 191, 139, 85, 185, 63, 25, 130, 127, 63, 121, 55, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 233, 104, 4, 63, 242, 187, 148, 191, 139, 85, 185, 63, 228, 134, 127, 63, 120, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 233, 104, 4, 63, 242, 187, 148, 191, 139, 85, 185, 63, 231, 130, 127, 63, 120, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 204, 45, 154, 63, 148, 69, 149, 191, 180, 135, 172, 63, 228, 134, 127, 63, 118, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 204, 45, 154, 63, 148, 69, 149, 191, 180, 135, 172, 63, 76, 0, 242, 147, 118, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 204, 45, 154, 63, 148, 69, 149, 191, 180, 135, 172, 63, 125, 9, 127, 63, 118, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 217, 199, 168, 63, 94, 225, 148, 191, 218, 67, 150, 63, 76, 0, 242, 109, 118, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 217, 199, 168, 63, 94, 225, 148, 191, 218, 67, 150, 63, 104, 248, 127, 193, 118, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 217, 199, 168, 63, 94, 225, 148, 191, 218, 67, 150, 63, 125, 1, 124, 130, 118, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 53, 73, 213, 63, 21, 243, 240, 191, 241, 175, 67, 63, 3, 0, 127, 193, 0, 54, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 192, 194, 205, 63, 115, 53, 229, 63, 13, 85, 48, 63, 29, 38, 71, 221, 0, 59, 120, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 192, 194, 205, 63, 115, 53, 229, 63, 13, 85, 48, 63, 112, 8, 247, 134, 0, 57, 195, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 63, 29, 64, 15, 85, 48, 63, 0, 46, 130, 63, 0, 57, 120, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 63, 29, 64, 15, 85, 48, 63, 0, 46, 126, 193, 0, 57, 120, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 210, 81, 223, 63, 85, 122, 135, 191, 240, 175, 67, 63, 3, 0, 127, 193, 85, 55, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 63, 252, 237, 92, 62, 240, 175, 67, 63, 112, 8, 242, 134, 85, 56, 195, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 24, 124, 2, 63, 83, 63, 29, 64, 15, 85, 48, 63, 0, 46, 127, 193, 170, 57, 120, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 24, 124, 2, 63, 83, 63, 29, 64, 15, 85, 48, 63, 17, 39, 87, 213, 170, 57, 120, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 2, 138, 63, 84, 241, 12, 64, 14, 85, 48, 63, 17, 39, 87, 213, 85, 58, 120, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 2, 138, 63, 84, 241, 12, 64, 14, 85, 48, 63, 29, 38, 70, 221, 85, 58, 120, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 22, 246, 243, 63, 102, 76, 136, 191, 137, 156, 66, 63, 3, 0, 127, 193, 85, 55, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 22, 246, 243, 63, 102, 76, 136, 191, 137, 156, 66, 63, 27, 254, 127, 193, 85, 55, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 163, 126, 229, 63, 179, 70, 240, 191, 50, 14, 160, 190, 130, 123, 127, 63, 0, 54, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 163, 126, 229, 63, 179, 70, 240, 191, 50, 14, 160, 190, 124, 158, 127, 63, 0, 54, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 64, 135, 239, 63, 243, 205, 134, 191, 50, 14, 160, 190, 130, 123, 127, 63, 85, 55, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 64, 135, 239, 63, 243, 205, 134, 191, 50, 14, 160, 190, 124, 158, 127, 63, 85, 55, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 121, 237, 233, 63, 38, 197, 241, 191, 138, 156, 66, 63, 3, 0, 127, 193, 0, 54, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 121, 237, 233, 63, 38, 197, 241, 191, 138, 156, 66, 63, 27, 254, 127, 193, 0, 54, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 145, 22, 4, 64, 133, 168, 140, 191, 138, 15, 55, 63, 27, 254, 127, 193, 85, 55, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 145, 22, 4, 64, 133, 168, 140, 191, 138, 15, 55, 63, 115, 245, 11, 135, 85, 55, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 145, 22, 4, 64, 133, 168, 140, 191, 101, 46, 179, 62, 116, 240, 11, 135, 85, 55, 93, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 145, 22, 4, 64, 133, 168, 140, 191, 101, 46, 179, 62, 115, 245, 11, 135, 85, 55, 93, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 114, 16, 2, 64, 75, 75, 139, 191, 151, 112, 135, 190, 124, 158, 127, 63, 85, 55, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 114, 16, 2, 64, 75, 75, 139, 191, 151, 112, 135, 190, 116, 240, 11, 135, 85, 55, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 3, 255, 63, 165, 247, 236, 191, 102, 46, 179, 62, 116, 240, 11, 135, 0, 54, 93, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 3, 255, 63, 165, 247, 236, 191, 102, 46, 179, 62, 115, 245, 11, 135, 0, 54, 93, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 3, 255, 63, 165, 247, 236, 191, 138, 15, 55, 63, 27, 254, 127, 193, 0, 54, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 3, 255, 63, 165, 247, 236, 191, 138, 15, 55, 63, 115, 245, 11, 135, 0, 54, 195, 59, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 107, 247, 250, 63, 107, 154, 235, 191, 151, 112, 135, 190, 124, 158, 127, 63, 0, 54, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 107, 247, 250, 63, 107, 154, 235, 191, 151, 112, 135, 190, 116, 240, 11, 135, 0, 54, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 173, 250, 153, 63, 207, 195, 219, 190, 191, 94, 184, 63, 5, 97, 127, 193, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 173, 250, 153, 63, 207, 195, 219, 190, 191, 94, 184, 63, 16, 0, 255, 130, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 173, 250, 153, 63, 207, 195, 219, 190, 191, 94, 184, 63, 125, 9, 127, 63, 226, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 70, 206, 190, 239, 47, 197, 63, 255, 100, 127, 193, 236, 55, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 70, 206, 190, 239, 47, 197, 63, 0, 0, 0, 127, 236, 55, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 70, 206, 190, 239, 47, 197, 63, 0, 0, 0, 129, 236, 55, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 70, 206, 190, 239, 47, 197, 63, 1, 100, 127, 193, 236, 55, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 158, 99, 151, 191, 239, 47, 197, 63, 231, 130, 127, 63, 121, 55, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 158, 99, 151, 191, 239, 47, 197, 63, 0, 0, 0, 126, 121, 55, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 158, 99, 151, 191, 239, 47, 197, 63, 0, 0, 0, 130, 121, 55, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 158, 99, 151, 191, 239, 47, 197, 63, 25, 130, 127, 63, 121, 55, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 91, 32, 6, 63, 37, 166, 151, 191, 239, 47, 197, 63, 228, 134, 127, 63, 120, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 91, 32, 6, 63, 37, 166, 151, 191, 239, 47, 197, 63, 231, 130, 127, 63, 120, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 91, 32, 6, 63, 37, 166, 151, 191, 239, 47, 197, 63, 0, 0, 255, 130, 120, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 91, 32, 6, 63, 37, 166, 151, 191, 239, 47, 197, 63, 16, 0, 255, 130, 120, 55, 85, 49, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 133, 9, 155, 63, 199, 47, 152, 191, 24, 98, 184, 63, 228, 134, 127, 63, 118, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 133, 9, 155, 63, 199, 47, 152, 191, 24, 98, 184, 63, 16, 0, 255, 130, 118, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 133, 9, 155, 63, 199, 47, 152, 191, 24, 98, 184, 63, 125, 9, 127, 63, 118, 55, 85, 45, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 2, 138, 63, 138, 182, 10, 64, 246, 118, 53, 63, 17, 39, 87, 213, 85, 58, 112, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 2, 138, 63, 138, 182, 10, 64, 246, 118, 53, 63, 29, 38, 70, 221, 85, 58, 112, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 192, 194, 205, 63, 158, 214, 222, 63, 52, 166, 57, 63, 29, 38, 71, 221, 0, 59, 108, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 192, 194, 205, 63, 158, 214, 222, 63, 52, 166, 57, 63, 112, 8, 247, 135, 0, 57, 201, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 141, 138, 26, 64, 195, 143, 54, 63, 0, 46, 130, 63, 0, 57, 110, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 141, 138, 26, 64, 195, 143, 54, 63, 0, 46, 126, 193, 0, 57, 110, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 24, 124, 2, 63, 49, 184, 26, 64, 179, 38, 54, 63, 0, 46, 126, 193, 170, 57, 110, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 24, 124, 2, 63, 49, 184, 26, 64, 179, 38, 54, 63, 17, 39, 87, 213, 170, 57, 110, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 207, 220, 63, 252, 237, 92, 62, 230, 153, 76, 63, 112, 8, 243, 134, 85, 56, 215, 59, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 209, 18, 254, 190, 20, 248, 129, 63, 52, 214, 182, 63, 254, 57, 59, 126, 68, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 245, 16, 254, 62, 77, 55, 130, 63, 224, 198, 182, 63, 2, 57, 198, 130, 68, 56, 85, 49, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 206, 19, 132, 63, 71, 55, 183, 63, 254, 57, 59, 126, 69, 56, 0, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 206, 19, 132, 63, 71, 55, 183, 63, 2, 57, 198, 130, 69, 56, 0, 52, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0 ), +"array_index_data": PoolByteArray( 54, 0, 89, 0, 49, 0, 54, 0, 86, 0, 89, 0, 5, 0, 59, 0, 0, 0, 5, 0, 61, 0, 59, 0, 153, 0, 91, 0, 53, 0, 153, 0, 203, 0, 91, 0, 52, 0, 87, 0, 55, 0, 52, 0, 90, 0, 87, 0, 45, 0, 8, 0, 38, 0, 45, 0, 23, 0, 8, 0, 7, 0, 115, 0, 100, 0, 7, 0, 22, 0, 115, 0, 16, 0, 210, 0, 113, 0, 16, 0, 208, 0, 210, 0, 99, 0, 20, 0, 11, 0, 99, 0, 109, 0, 20, 0, 12, 0, 26, 0, 15, 0, 12, 0, 17, 0, 26, 0, 9, 0, 21, 0, 6, 0, 9, 0, 24, 0, 21, 0, 10, 0, 18, 0, 13, 0, 10, 0, 19, 0, 18, 0, 25, 0, 27, 0, 14, 0, 25, 0, 34, 0, 27, 0, 29, 0, 78, 0, 33, 0, 29, 0, 2, 0, 78, 0, 43, 0, 82, 0, 40, 0, 43, 0, 85, 0, 82, 0, 35, 0, 37, 0, 28, 0, 35, 0, 44, 0, 37, 0, 32, 0, 46, 0, 36, 0, 32, 0, 42, 0, 46, 0, 47, 0, 57, 0, 50, 0, 47, 0, 63, 0, 57, 0, 60, 0, 75, 0, 58, 0, 60, 0, 69, 0, 75, 0, 72, 0, 66, 0, 64, 0, 72, 0, 70, 0, 66, 0, 71, 0, 68, 0, 67, 0, 71, 0, 74, 0, 68, 0, 62, 0, 65, 0, 56, 0, 62, 0, 73, 0, 65, 0, 79, 0, 77, 0, 1, 0, 79, 0, 84, 0, 77, 0, 189, 0, 4, 0, 185, 0, 189, 0, 80, 0, 4, 0, 39, 0, 191, 0, 141, 0, 39, 0, 81, 0, 191, 0, 31, 0, 83, 0, 41, 0, 31, 0, 76, 0, 83, 0, 128, 0, 3, 0, 30, 0, 128, 0, 184, 0, 3, 0, 92, 0, 48, 0, 88, 0, 92, 0, 51, 0, 48, 0, 160, 0, 201, 0, 200, 0, 160, 0, 151, 0, 201, 0, 98, 0, 163, 0, 165, 0, 98, 0, 93, 0, 163, 0, 154, 0, 205, 0, 204, 0, 154, 0, 157, 0, 205, 0, 158, 0, 199, 0, 206, 0, 158, 0, 159, 0, 199, 0, 148, 0, 104, 0, 123, 0, 148, 0, 138, 0, 104, 0, 101, 0, 115, 0, 120, 0, 101, 0, 100, 0, 115, 0, 112, 0, 211, 0, 209, 0, 112, 0, 114, 0, 211, 0, 99, 0, 118, 0, 109, 0, 99, 0, 105, 0, 118, 0, 108, 0, 124, 0, 117, 0, 108, 0, 110, 0, 124, 0, 103, 0, 121, 0, 122, 0, 103, 0, 102, 0, 121, 0, 106, 0, 116, 0, 119, 0, 106, 0, 107, 0, 116, 0, 125, 0, 127, 0, 137, 0, 125, 0, 111, 0, 127, 0, 131, 0, 181, 0, 96, 0, 131, 0, 132, 0, 181, 0, 144, 0, 192, 0, 196, 0, 144, 0, 142, 0, 192, 0, 136, 0, 139, 0, 149, 0, 136, 0, 126, 0, 139, 0, 133, 0, 147, 0, 145, 0, 133, 0, 135, 0, 147, 0, 150, 0, 161, 0, 167, 0, 150, 0, 155, 0, 161, 0, 166, 0, 179, 0, 173, 0, 166, 0, 164, 0, 179, 0, 178, 0, 172, 0, 176, 0, 178, 0, 170, 0, 172, 0, 175, 0, 174, 0, 180, 0, 175, 0, 171, 0, 174, 0, 168, 0, 169, 0, 177, 0, 168, 0, 162, 0, 169, 0, 195, 0, 182, 0, 197, 0, 195, 0, 97, 0, 182, 0, 190, 0, 94, 0, 194, 0, 190, 0, 186, 0, 94, 0, 143, 0, 188, 0, 193, 0, 143, 0, 140, 0, 188, 0, 134, 0, 198, 0, 183, 0, 134, 0, 146, 0, 198, 0, 129, 0, 95, 0, 187, 0, 129, 0, 130, 0, 95, 0, 207, 0, 152, 0, 156, 0, 207, 0, 202, 0, 152, 0 ), +"blend_shape_data": [ ], +"format": 2194903, +"index_count": 324, +"material": ExtResource( 14 ), +"primitive": 4, +"skeleton_aabb": [ AABB( -2.06388, -1.88883, -0.312608, 4.12775, 1.50872, 1.85313 ), AABB( -1.72509, 0.215752, 0.688798, 3.45018, 2.24124, 0.759125 ) ], +"vertex_count": 212 +} +surfaces/2 = { +"aabb": AABB( -1.79, 0.833165, 0.656585, 1.34637, 0.975385, 0.91759 ), +"array_data": PoolByteArray( 116, 78, 207, 191, 41, 230, 218, 63, 96, 124, 60, 63, 61, 157, 87, 94, 0, 48, 0, 52, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 116, 78, 207, 191, 41, 230, 218, 63, 96, 124, 60, 63, 36, 235, 229, 96, 0, 54, 0, 0, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 116, 78, 207, 191, 41, 230, 218, 63, 96, 124, 60, 63, 65, 171, 127, 63, 0, 48, 0, 52, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 116, 78, 207, 191, 41, 230, 218, 63, 96, 124, 60, 63, 53, 246, 127, 193, 0, 54, 0, 0, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 149, 203, 208, 191, 236, 97, 222, 63, 114, 35, 64, 63, 191, 217, 127, 193, 0, 59, 0, 52, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 149, 203, 208, 191, 236, 97, 222, 63, 114, 35, 64, 63, 229, 65, 127, 193, 0, 59, 0, 52, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 149, 203, 208, 191, 236, 97, 222, 63, 114, 35, 64, 63, 36, 235, 127, 193, 0, 57, 0, 0, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 149, 203, 208, 191, 236, 97, 222, 63, 114, 35, 64, 63, 36, 235, 229, 96, 0, 57, 0, 0, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 149, 203, 208, 191, 236, 97, 222, 63, 114, 35, 64, 63, 53, 246, 127, 193, 0, 57, 0, 0, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 142, 14, 211, 191, 147, 25, 221, 63, 201, 249, 45, 63, 151, 90, 229, 96, 0, 54, 0, 58, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 142, 14, 211, 191, 147, 25, 221, 63, 201, 249, 45, 63, 161, 108, 127, 63, 0, 54, 0, 58, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 142, 14, 211, 191, 147, 25, 221, 63, 201, 249, 45, 63, 61, 157, 87, 94, 0, 48, 0, 56, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 142, 14, 211, 191, 147, 25, 221, 63, 201, 249, 45, 63, 65, 171, 127, 63, 0, 48, 0, 56, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 175, 139, 212, 191, 86, 149, 224, 63, 220, 160, 49, 63, 191, 217, 127, 193, 0, 59, 0, 56, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 175, 139, 212, 191, 86, 149, 224, 63, 220, 160, 49, 63, 151, 90, 229, 96, 0, 57, 0, 58, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 175, 139, 212, 191, 86, 149, 224, 63, 220, 160, 49, 63, 151, 90, 127, 63, 0, 57, 0, 58, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 175, 139, 212, 191, 86, 149, 224, 63, 220, 160, 49, 63, 229, 65, 127, 193, 0, 59, 0, 56, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 175, 139, 212, 191, 86, 149, 224, 63, 220, 160, 49, 63, 161, 108, 127, 63, 0, 57, 0, 58, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 51, 126, 198, 191, 184, 53, 224, 63, 142, 152, 54, 63, 61, 157, 87, 94, 0, 54, 0, 52, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 51, 126, 198, 191, 184, 53, 224, 63, 142, 152, 54, 63, 36, 235, 229, 96, 0, 54, 0, 52, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 51, 126, 198, 191, 184, 53, 224, 63, 142, 152, 54, 63, 87, 61, 229, 96, 0, 54, 0, 52, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 84, 251, 199, 191, 123, 177, 227, 63, 161, 63, 58, 63, 36, 235, 127, 193, 0, 57, 0, 52, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 84, 251, 199, 191, 123, 177, 227, 63, 161, 63, 58, 63, 36, 235, 229, 96, 0, 57, 0, 52, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 84, 251, 199, 191, 123, 177, 227, 63, 161, 63, 58, 63, 87, 61, 229, 96, 0, 57, 0, 52, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 84, 251, 199, 191, 123, 177, 227, 63, 161, 63, 58, 63, 87, 61, 127, 63, 0, 57, 0, 52, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 77, 62, 202, 191, 34, 105, 226, 63, 247, 21, 40, 63, 151, 90, 229, 96, 0, 54, 0, 56, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 77, 62, 202, 191, 34, 105, 226, 63, 247, 21, 40, 63, 61, 157, 87, 94, 0, 54, 0, 56, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 77, 62, 202, 191, 34, 105, 226, 63, 247, 21, 40, 63, 87, 61, 229, 96, 0, 54, 0, 56, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 110, 187, 203, 191, 229, 228, 229, 63, 10, 189, 43, 63, 151, 90, 229, 96, 0, 57, 0, 56, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 110, 187, 203, 191, 229, 228, 229, 63, 10, 189, 43, 63, 151, 90, 127, 63, 0, 57, 0, 56, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 110, 187, 203, 191, 229, 228, 229, 63, 10, 189, 43, 63, 87, 61, 229, 96, 0, 57, 0, 56, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 110, 187, 203, 191, 229, 228, 229, 63, 10, 189, 43, 63, 87, 61, 127, 63, 0, 57, 0, 56, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 116, 207, 219, 191, 160, 241, 208, 63, 135, 19, 78, 63, 191, 217, 229, 96, 0, 54, 0, 60, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 116, 207, 219, 191, 160, 241, 208, 63, 135, 19, 78, 63, 65, 171, 127, 63, 0, 48, 0, 52, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 116, 207, 219, 191, 160, 241, 208, 63, 135, 19, 78, 63, 53, 246, 127, 193, 0, 54, 0, 0, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 148, 76, 221, 191, 99, 109, 212, 63, 154, 186, 81, 63, 191, 217, 229, 96, 0, 57, 0, 60, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 148, 76, 221, 191, 99, 109, 212, 63, 154, 186, 81, 63, 229, 65, 127, 193, 0, 59, 0, 52, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 148, 76, 221, 191, 99, 109, 212, 63, 154, 186, 81, 63, 53, 246, 127, 193, 0, 57, 0, 0, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 2, 233, 225, 191, 171, 129, 209, 63, 105, 152, 43, 63, 191, 217, 229, 96, 0, 54, 0, 58, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 2, 233, 225, 191, 171, 129, 209, 63, 105, 152, 43, 63, 161, 108, 127, 63, 0, 54, 0, 58, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 2, 233, 225, 191, 171, 129, 209, 63, 105, 152, 43, 63, 65, 171, 127, 63, 0, 48, 0, 56, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 183, 30, 229, 191, 77, 4, 217, 63, 107, 120, 51, 63, 191, 217, 229, 96, 0, 57, 0, 58, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 183, 30, 229, 191, 77, 4, 217, 63, 107, 120, 51, 63, 229, 65, 127, 193, 0, 59, 0, 56, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 183, 30, 229, 191, 77, 4, 217, 63, 107, 120, 51, 63, 161, 108, 127, 63, 0, 57, 0, 58, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 122, 209, 191, 151, 251, 223, 63, 3, 209, 65, 63, 191, 217, 127, 193, 0, 59, 0, 52, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 122, 209, 191, 151, 251, 223, 63, 3, 209, 65, 63, 229, 65, 191, 43, 0, 59, 0, 52, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 171, 122, 209, 191, 151, 251, 223, 63, 3, 209, 65, 63, 36, 235, 127, 193, 0, 57, 0, 0, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 197, 58, 213, 191, 1, 47, 226, 63, 108, 78, 51, 63, 191, 217, 127, 193, 0, 59, 0, 56, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 197, 58, 213, 191, 1, 47, 226, 63, 108, 78, 51, 63, 151, 90, 127, 63, 0, 57, 0, 58, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 197, 58, 213, 191, 1, 47, 226, 63, 108, 78, 51, 63, 229, 65, 191, 43, 0, 59, 0, 56, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 106, 170, 200, 191, 38, 75, 229, 63, 49, 237, 59, 63, 229, 65, 191, 43, 0, 57, 0, 52, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 106, 170, 200, 191, 38, 75, 229, 63, 49, 237, 59, 63, 36, 235, 127, 193, 0, 57, 0, 52, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 106, 170, 200, 191, 38, 75, 229, 63, 49, 237, 59, 63, 87, 61, 127, 63, 0, 57, 0, 52, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 132, 106, 204, 191, 144, 126, 231, 63, 154, 106, 45, 63, 151, 90, 127, 63, 0, 57, 0, 56, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 132, 106, 204, 191, 144, 126, 231, 63, 154, 106, 45, 63, 229, 65, 191, 43, 0, 57, 0, 56, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 132, 106, 204, 191, 144, 126, 231, 63, 154, 106, 45, 63, 87, 61, 127, 63, 0, 57, 0, 56, 2, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 246, 67, 164, 191, 204, 243, 127, 63, 39, 242, 153, 63, 76, 169, 72, 107, 0, 48, 0, 52, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 246, 67, 164, 191, 204, 243, 127, 63, 39, 242, 153, 63, 59, 0, 217, 88, 0, 54, 0, 0, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 246, 67, 164, 191, 204, 243, 127, 63, 39, 242, 153, 63, 84, 183, 127, 63, 0, 48, 0, 52, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 246, 67, 164, 191, 204, 243, 127, 63, 39, 242, 153, 63, 63, 14, 127, 193, 0, 54, 0, 0, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 97, 134, 166, 191, 22, 216, 130, 63, 118, 8, 156, 63, 217, 50, 127, 193, 0, 59, 0, 52, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 97, 134, 166, 191, 22, 216, 130, 63, 118, 8, 156, 63, 218, 202, 127, 193, 0, 59, 0, 52, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 97, 134, 166, 191, 22, 216, 130, 63, 118, 8, 156, 63, 59, 0, 217, 88, 0, 57, 0, 0, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 97, 134, 166, 191, 22, 216, 130, 63, 118, 8, 156, 63, 59, 0, 127, 193, 0, 57, 0, 0, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 97, 134, 166, 191, 22, 216, 130, 63, 118, 8, 156, 63, 63, 14, 127, 193, 0, 57, 0, 0, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 119, 240, 169, 191, 41, 18, 128, 63, 103, 172, 147, 63, 130, 67, 217, 88, 0, 54, 0, 58, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 119, 240, 169, 191, 41, 18, 128, 63, 103, 172, 147, 63, 145, 84, 127, 63, 0, 54, 0, 58, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 119, 240, 169, 191, 41, 18, 128, 63, 103, 172, 147, 63, 76, 169, 72, 107, 0, 48, 0, 56, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 119, 240, 169, 191, 41, 18, 128, 63, 103, 172, 147, 63, 84, 183, 127, 63, 0, 48, 0, 56, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 225, 50, 172, 191, 89, 240, 130, 63, 184, 194, 149, 63, 130, 67, 217, 88, 0, 57, 0, 58, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 225, 50, 172, 191, 89, 240, 130, 63, 184, 194, 149, 63, 130, 67, 127, 63, 0, 57, 0, 58, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 225, 50, 172, 191, 89, 240, 130, 63, 184, 194, 149, 63, 217, 50, 127, 193, 0, 59, 0, 56, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 225, 50, 172, 191, 89, 240, 130, 63, 184, 194, 149, 63, 145, 84, 127, 63, 0, 57, 0, 58, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 225, 50, 172, 191, 89, 240, 130, 63, 184, 194, 149, 63, 218, 202, 127, 193, 0, 59, 0, 56, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 27, 203, 158, 191, 179, 205, 135, 63, 69, 29, 149, 63, 72, 88, 217, 88, 0, 54, 0, 52, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 27, 203, 158, 191, 179, 205, 135, 63, 69, 29, 149, 63, 76, 169, 72, 107, 0, 54, 0, 52, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 27, 203, 158, 191, 179, 205, 135, 63, 69, 29, 149, 63, 59, 0, 217, 88, 0, 54, 0, 52, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 136, 13, 161, 191, 226, 171, 138, 63, 149, 51, 151, 63, 72, 88, 127, 63, 0, 57, 0, 52, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 136, 13, 161, 191, 226, 171, 138, 63, 149, 51, 151, 63, 72, 88, 217, 88, 0, 57, 0, 52, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 136, 13, 161, 191, 226, 171, 138, 63, 149, 51, 151, 63, 59, 0, 217, 88, 0, 57, 0, 52, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 136, 13, 161, 191, 226, 171, 138, 63, 149, 51, 151, 63, 59, 0, 127, 193, 0, 57, 0, 52, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 156, 119, 164, 191, 246, 229, 135, 63, 135, 215, 142, 63, 130, 67, 217, 88, 0, 54, 0, 56, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 156, 119, 164, 191, 246, 229, 135, 63, 135, 215, 142, 63, 72, 88, 217, 88, 0, 54, 0, 56, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 156, 119, 164, 191, 246, 229, 135, 63, 135, 215, 142, 63, 76, 169, 72, 107, 0, 54, 0, 56, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 9, 186, 166, 191, 37, 196, 138, 63, 215, 237, 144, 63, 130, 67, 217, 88, 0, 57, 0, 56, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 9, 186, 166, 191, 37, 196, 138, 63, 215, 237, 144, 63, 130, 67, 127, 63, 0, 57, 0, 56, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 9, 186, 166, 191, 37, 196, 138, 63, 215, 237, 144, 63, 72, 88, 127, 63, 0, 57, 0, 56, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 9, 186, 166, 191, 37, 196, 138, 63, 215, 237, 144, 63, 72, 88, 217, 88, 0, 57, 0, 56, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 163, 54, 170, 191, 90, 6, 102, 63, 244, 81, 165, 63, 218, 202, 217, 88, 0, 54, 0, 60, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 163, 54, 170, 191, 90, 6, 102, 63, 244, 81, 165, 63, 84, 183, 127, 63, 0, 48, 0, 52, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 163, 54, 170, 191, 90, 6, 102, 63, 244, 81, 165, 63, 63, 14, 127, 193, 0, 54, 0, 0, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 14, 121, 172, 191, 186, 194, 107, 63, 67, 104, 167, 63, 217, 50, 127, 193, 0, 59, 0, 52, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 14, 121, 172, 191, 186, 194, 107, 63, 67, 104, 167, 63, 218, 202, 217, 88, 0, 57, 0, 60, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 14, 121, 172, 191, 186, 194, 107, 63, 67, 104, 167, 63, 63, 14, 127, 193, 0, 57, 0, 0, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 243, 110, 179, 191, 31, 202, 95, 63, 195, 211, 149, 63, 145, 84, 127, 63, 0, 54, 0, 58, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 243, 110, 179, 191, 31, 202, 95, 63, 195, 211, 149, 63, 218, 202, 217, 88, 0, 54, 0, 58, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 243, 110, 179, 191, 31, 202, 95, 63, 195, 211, 149, 63, 84, 183, 127, 63, 0, 48, 0, 56, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 3, 78, 184, 191, 237, 39, 108, 63, 188, 83, 154, 63, 217, 50, 127, 193, 0, 59, 0, 56, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 3, 78, 184, 191, 237, 39, 108, 63, 188, 83, 154, 63, 145, 84, 127, 63, 0, 57, 0, 58, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 3, 78, 184, 191, 237, 39, 108, 63, 188, 83, 154, 63, 218, 202, 217, 88, 0, 57, 0, 58, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 25, 144, 167, 191, 93, 41, 132, 63, 237, 253, 156, 63, 217, 50, 218, 36, 0, 59, 0, 52, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 25, 144, 167, 191, 93, 41, 132, 63, 237, 253, 156, 63, 218, 202, 127, 193, 0, 59, 0, 52, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 25, 144, 167, 191, 93, 41, 132, 63, 237, 253, 156, 63, 59, 0, 127, 193, 0, 57, 0, 0, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 154, 60, 173, 191, 160, 65, 132, 63, 45, 184, 150, 63, 130, 67, 127, 63, 0, 57, 0, 58, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 154, 60, 173, 191, 160, 65, 132, 63, 45, 184, 150, 63, 217, 50, 218, 36, 0, 59, 0, 56, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 154, 60, 173, 191, 160, 65, 132, 63, 45, 184, 150, 63, 218, 202, 127, 193, 0, 59, 0, 56, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 65, 23, 162, 191, 41, 253, 139, 63, 10, 41, 152, 63, 217, 50, 218, 36, 0, 57, 0, 52, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 65, 23, 162, 191, 41, 253, 139, 63, 10, 41, 152, 63, 72, 88, 127, 63, 0, 57, 0, 52, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 65, 23, 162, 191, 41, 253, 139, 63, 10, 41, 152, 63, 59, 0, 127, 193, 0, 57, 0, 52, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 193, 195, 167, 191, 108, 21, 140, 63, 76, 227, 145, 63, 130, 67, 127, 63, 0, 57, 0, 56, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 193, 195, 167, 191, 108, 21, 140, 63, 76, 227, 145, 63, 217, 50, 218, 36, 0, 57, 0, 56, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 193, 195, 167, 191, 108, 21, 140, 63, 76, 227, 145, 63, 72, 88, 127, 63, 0, 57, 0, 56, 3, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 187, 76, 248, 190, 111, 30, 114, 63, 50, 146, 188, 63, 80, 157, 68, 108, 0, 48, 0, 52, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 187, 76, 248, 190, 111, 30, 114, 63, 50, 146, 188, 63, 87, 170, 127, 63, 0, 48, 0, 52, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 187, 76, 248, 190, 111, 30, 114, 63, 50, 146, 188, 63, 64, 240, 229, 86, 0, 54, 0, 0, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 187, 76, 248, 190, 111, 30, 114, 63, 50, 146, 188, 63, 84, 0, 127, 193, 0, 54, 0, 0, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 13, 75, 254, 190, 61, 70, 119, 63, 117, 137, 191, 63, 219, 198, 127, 193, 0, 59, 0, 52, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 13, 75, 254, 190, 61, 70, 119, 63, 117, 137, 191, 63, 229, 46, 127, 193, 0, 59, 0, 52, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 13, 75, 254, 190, 61, 70, 119, 63, 117, 137, 191, 63, 64, 240, 229, 86, 0, 57, 0, 0, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 13, 75, 254, 190, 61, 70, 119, 63, 117, 137, 191, 63, 64, 240, 127, 193, 0, 57, 0, 0, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 13, 75, 254, 190, 61, 70, 119, 63, 117, 137, 191, 63, 84, 0, 127, 193, 0, 57, 0, 0, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 77, 144, 9, 191, 169, 132, 117, 63, 156, 180, 183, 63, 146, 62, 229, 86, 0, 54, 0, 58, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 77, 144, 9, 191, 169, 132, 117, 63, 156, 180, 183, 63, 159, 78, 127, 63, 0, 54, 0, 58, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 77, 144, 9, 191, 169, 132, 117, 63, 156, 180, 183, 63, 80, 157, 68, 108, 0, 48, 0, 56, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 77, 144, 9, 191, 169, 132, 117, 63, 156, 180, 183, 63, 87, 170, 127, 63, 0, 48, 0, 56, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 116, 143, 12, 191, 118, 172, 122, 63, 225, 171, 186, 63, 146, 62, 127, 63, 0, 57, 0, 58, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 116, 143, 12, 191, 118, 172, 122, 63, 225, 171, 186, 63, 146, 62, 229, 86, 0, 57, 0, 58, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 116, 143, 12, 191, 118, 172, 122, 63, 225, 171, 186, 63, 159, 78, 127, 63, 0, 57, 0, 58, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 116, 143, 12, 191, 118, 172, 122, 63, 225, 171, 186, 63, 219, 198, 127, 193, 0, 59, 0, 56, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 116, 143, 12, 191, 118, 172, 122, 63, 225, 171, 186, 63, 229, 46, 127, 193, 0, 59, 0, 56, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 67, 35, 227, 190, 247, 60, 129, 63, 174, 34, 184, 63, 80, 157, 68, 108, 0, 54, 0, 52, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 67, 35, 227, 190, 247, 60, 129, 63, 174, 34, 184, 63, 68, 89, 229, 86, 0, 54, 0, 52, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 67, 35, 227, 190, 247, 60, 129, 63, 174, 34, 184, 63, 64, 240, 229, 86, 0, 54, 0, 52, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 157, 33, 233, 190, 222, 208, 131, 63, 243, 25, 187, 63, 68, 89, 229, 86, 0, 57, 0, 52, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 157, 33, 233, 190, 222, 208, 131, 63, 243, 25, 187, 63, 68, 89, 127, 63, 0, 57, 0, 52, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 157, 33, 233, 190, 222, 208, 131, 63, 243, 25, 187, 63, 64, 240, 229, 86, 0, 57, 0, 52, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 157, 33, 233, 190, 222, 208, 131, 63, 243, 25, 187, 63, 64, 240, 127, 193, 0, 57, 0, 52, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 33, 247, 253, 190, 20, 240, 130, 63, 26, 69, 179, 63, 146, 62, 229, 86, 0, 54, 0, 56, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 33, 247, 253, 190, 20, 240, 130, 63, 26, 69, 179, 63, 80, 157, 68, 108, 0, 54, 0, 56, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 33, 247, 253, 190, 20, 240, 130, 63, 26, 69, 179, 63, 68, 89, 229, 86, 0, 54, 0, 56, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 190, 250, 1, 191, 250, 131, 133, 63, 95, 60, 182, 63, 146, 62, 127, 63, 0, 57, 0, 56, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 190, 250, 1, 191, 250, 131, 133, 63, 95, 60, 182, 63, 146, 62, 229, 86, 0, 57, 0, 56, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 190, 250, 1, 191, 250, 131, 133, 63, 95, 60, 182, 63, 68, 89, 229, 86, 0, 57, 0, 56, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 190, 250, 1, 191, 250, 131, 133, 63, 95, 60, 182, 63, 68, 89, 127, 63, 0, 57, 0, 56, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 79, 83, 6, 191, 79, 74, 85, 63, 83, 135, 198, 63, 219, 198, 229, 86, 0, 54, 0, 60, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 79, 83, 6, 191, 79, 74, 85, 63, 83, 135, 198, 63, 87, 170, 127, 63, 0, 48, 0, 52, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 79, 83, 6, 191, 79, 74, 85, 63, 83, 135, 198, 63, 84, 0, 127, 193, 0, 54, 0, 0, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 120, 82, 9, 191, 29, 114, 90, 63, 150, 126, 201, 63, 219, 198, 229, 86, 0, 57, 0, 60, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 120, 82, 9, 191, 29, 114, 90, 63, 150, 126, 201, 63, 229, 46, 127, 193, 0, 59, 0, 52, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 120, 82, 9, 191, 29, 114, 90, 63, 150, 126, 201, 63, 84, 0, 127, 193, 0, 57, 0, 0, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 100, 213, 30, 191, 90, 107, 86, 63, 39, 244, 184, 63, 159, 78, 127, 63, 0, 54, 0, 58, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 100, 213, 30, 191, 90, 107, 86, 63, 39, 244, 184, 63, 219, 198, 229, 86, 0, 54, 0, 58, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 100, 213, 30, 191, 90, 107, 86, 63, 39, 244, 184, 63, 87, 170, 127, 63, 0, 48, 0, 56, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 96, 75, 37, 191, 214, 136, 97, 63, 31, 89, 191, 63, 159, 78, 127, 63, 0, 57, 0, 58, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 96, 75, 37, 191, 214, 136, 97, 63, 31, 89, 191, 63, 219, 198, 229, 86, 0, 57, 0, 58, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 96, 75, 37, 191, 214, 136, 97, 63, 31, 89, 191, 63, 229, 46, 127, 193, 0, 59, 0, 56, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 243, 133, 0, 191, 138, 164, 121, 63, 68, 230, 192, 63, 219, 198, 127, 193, 0, 59, 0, 52, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 243, 133, 0, 191, 138, 164, 121, 63, 68, 230, 192, 63, 229, 46, 219, 34, 0, 59, 0, 52, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 243, 133, 0, 191, 138, 164, 121, 63, 68, 230, 192, 63, 64, 240, 127, 193, 0, 57, 0, 0, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 226, 239, 13, 191, 195, 10, 125, 63, 173, 8, 188, 63, 146, 62, 127, 63, 0, 57, 0, 58, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 226, 239, 13, 191, 195, 10, 125, 63, 173, 8, 188, 63, 219, 198, 127, 193, 0, 59, 0, 56, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 226, 239, 13, 191, 195, 10, 125, 63, 173, 8, 188, 63, 229, 46, 219, 34, 0, 59, 0, 56, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 122, 226, 235, 190, 4, 0, 133, 63, 191, 118, 188, 63, 229, 46, 219, 34, 0, 57, 0, 52, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 122, 226, 235, 190, 4, 0, 133, 63, 191, 118, 188, 63, 68, 89, 127, 63, 0, 57, 0, 52, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 122, 226, 235, 190, 4, 0, 133, 63, 191, 118, 188, 63, 64, 240, 127, 193, 0, 57, 0, 52, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 42, 91, 3, 191, 33, 179, 134, 63, 43, 153, 183, 63, 146, 62, 127, 63, 0, 57, 0, 56, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 42, 91, 3, 191, 33, 179, 134, 63, 43, 153, 183, 63, 229, 46, 219, 34, 0, 57, 0, 56, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 42, 91, 3, 191, 33, 179, 134, 63, 43, 153, 183, 63, 68, 89, 127, 63, 0, 57, 0, 56, 4, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0 ), +"array_index_data": PoolByteArray( 5, 0, 42, 0, 16, 0, 5, 0, 36, 0, 42, 0, 9, 0, 28, 0, 14, 0, 9, 0, 25, 0, 28, 0, 27, 0, 23, 0, 30, 0, 27, 0, 20, 0, 23, 0, 19, 0, 7, 0, 22, 0, 19, 0, 1, 0, 7, 0, 11, 0, 18, 0, 26, 0, 11, 0, 0, 0, 18, 0, 13, 0, 44, 0, 4, 0, 13, 0, 47, 0, 44, 0, 32, 0, 41, 0, 35, 0, 32, 0, 38, 0, 41, 0, 12, 0, 33, 0, 2, 0, 12, 0, 40, 0, 33, 0, 17, 0, 39, 0, 10, 0, 17, 0, 43, 0, 39, 0, 3, 0, 37, 0, 8, 0, 3, 0, 34, 0, 37, 0, 54, 0, 45, 0, 49, 0, 54, 0, 50, 0, 45, 0, 6, 0, 51, 0, 21, 0, 6, 0, 46, 0, 51, 0, 29, 0, 48, 0, 15, 0, 29, 0, 53, 0, 48, 0, 24, 0, 55, 0, 31, 0, 24, 0, 52, 0, 55, 0, 60, 0, 97, 0, 71, 0, 60, 0, 91, 0, 97, 0, 65, 0, 84, 0, 69, 0, 65, 0, 81, 0, 84, 0, 82, 0, 78, 0, 87, 0, 82, 0, 74, 0, 78, 0, 76, 0, 62, 0, 79, 0, 76, 0, 57, 0, 62, 0, 67, 0, 75, 0, 83, 0, 67, 0, 56, 0, 75, 0, 73, 0, 101, 0, 61, 0, 73, 0, 105, 0, 101, 0, 88, 0, 99, 0, 92, 0, 88, 0, 95, 0, 99, 0, 68, 0, 89, 0, 58, 0, 68, 0, 96, 0, 89, 0, 72, 0, 94, 0, 66, 0, 72, 0, 98, 0, 94, 0, 59, 0, 93, 0, 64, 0, 59, 0, 90, 0, 93, 0, 110, 0, 100, 0, 104, 0, 110, 0, 106, 0, 100, 0, 63, 0, 108, 0, 80, 0, 63, 0, 102, 0, 108, 0, 85, 0, 103, 0, 70, 0, 85, 0, 109, 0, 103, 0, 77, 0, 111, 0, 86, 0, 77, 0, 107, 0, 111, 0, 117, 0, 155, 0, 129, 0, 117, 0, 148, 0, 155, 0, 121, 0, 141, 0, 126, 0, 121, 0, 137, 0, 141, 0, 139, 0, 133, 0, 142, 0, 139, 0, 131, 0, 133, 0, 132, 0, 118, 0, 135, 0, 132, 0, 114, 0, 118, 0, 123, 0, 130, 0, 138, 0, 123, 0, 112, 0, 130, 0, 128, 0, 156, 0, 116, 0, 128, 0, 160, 0, 156, 0, 144, 0, 154, 0, 147, 0, 144, 0, 151, 0, 154, 0, 124, 0, 145, 0, 113, 0, 124, 0, 152, 0, 145, 0, 127, 0, 150, 0, 122, 0, 127, 0, 153, 0, 150, 0, 115, 0, 149, 0, 120, 0, 115, 0, 146, 0, 149, 0, 166, 0, 157, 0, 161, 0, 166, 0, 162, 0, 157, 0, 119, 0, 164, 0, 136, 0, 119, 0, 158, 0, 164, 0, 140, 0, 159, 0, 125, 0, 140, 0, 165, 0, 159, 0, 134, 0, 167, 0, 143, 0, 134, 0, 163, 0, 167, 0 ), +"blend_shape_data": [ ], +"format": 2194903, +"index_count": 252, +"material": ExtResource( 12 ), +"primitive": 4, +"skeleton_aabb": [ AABB( 0, 0, 0, -1, -1, -1 ), AABB( 0, 0, 0, -1, -1, -1 ), AABB( -1.79, 1.63237, 0.656585, 0.239274, 0.176176, 0.162668 ), AABB( -1.43988, 0.874178, 1.11595, 0.199307, 0.220226, 0.191917 ), AABB( -0.645681, 0.833165, 1.40055, 0.202053, 0.219176, 0.173629 ) ], +"vertex_count": 168 +} + +[sub_resource type="Skin" id=2] +resource_name = "Skin" +bind_count = 5 +bind/0/name = "Bone.001" +bind/0/bone = -1 +bind/0/pose = Transform( 0.999993, 0.00381515, -9.80838e-06, -0.00381515, 0.999979, -0.00520146, -1.0036e-05, 0.00520156, 0.999986, 0.00186782, 0.960347, -0.0194819 ) +bind/1/name = "Bone.002" +bind/1/bone = -1 +bind/1/pose = Transform( 0.999854, -0.0170878, 0.000776008, 0.0169878, 0.997268, 0.0718906, -0.00200234, -0.0718668, 0.997412, 0.00529599, -0.165568, -0.00674409 ) +bind/2/name = "Bone" +bind/2/bone = -1 +bind/2/pose = Transform( -0.63181, 0.775123, 4.59929e-08, -0.775123, -0.63181, -1.55838e-07, -9.98992e-08, -1.89499e-08, 1, -2.40965, -0.0295937, -0.7 ) +bind/3/name = "Bone.003" +bind/3/bone = -1 +bind/3/pose = Transform( -0.949712, 0.313122, -0.00136165, -0.303127, -0.918288, 0.254678, 0.0784952, 0.242284, 0.967025, -1.57762, 0.355482, -1.29832 ) +bind/4/name = "Bone.004" +bind/4/bone = -1 +bind/4/pose = Transform( -0.923682, 0.382589, -0.0209139, -0.37497, -0.891368, 0.254678, 0.0787956, 0.243084, 0.9668, -0.832123, 0.429016, -1.62871 ) + +[sub_resource type="SpatialMaterial" id=11] +albedo_color = Color( 0.611765, 0.568627, 0.290196, 1 ) + +[sub_resource type="SpatialMaterial" id=12] +albedo_color = Color( 0.0627451, 0.109804, 0.192157, 1 ) + +[sub_resource type="SpatialMaterial" id=13] +albedo_color = Color( 0.643137, 0.458824, 0.415686, 1 ) + +[sub_resource type="Animation" id=3] +resource_name = "intro" +length = 1.08333 +tracks/0/type = "transform" +tracks/0/path = NodePath("Armature/Skeleton:Bone") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/keys = PoolRealArray( 0, 1, 4.76837e-07, -2.38419e-07, 0, 5.63786e-18, 1.86265e-09, -5.06407e-08, 1, 1, 1, 1, 1.08333, 1, 2.38419e-07, -1.19209e-07, -5.96046e-08, -3.72529e-09, 3.72529e-09, -6.63567e-09, 1, 1, 1, 1 ) +tracks/1/type = "transform" +tracks/1/path = NodePath("Armature/Skeleton:Bone.003") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/keys = PoolRealArray( 0, 1, 0, -3.27826e-07, -2.38419e-07, -4.47035e-08, -6.51926e-09, 2.32831e-09, 1, 1, 1, 1, 1.08333, 1, 0, -2.98023e-08, -1.19209e-07, -4.47035e-08, -6.51926e-09, 2.32831e-09, 1, 1, 1, 1 ) +tracks/2/type = "transform" +tracks/2/path = NodePath("Armature/Skeleton:Bone.004") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/keys = PoolRealArray( 0, 1, 0, -2.68221e-07, -1.19209e-07, 4.21711e-15, -2.04891e-08, 1.66707e-07, 1, 1, 1, 1, 1.08333, 1, 1.19209e-07, 0, 0, 1.49012e-08, -2.23517e-08, 1.64844e-07, 1, 1, 1, 1 ) +tracks/3/type = "transform" +tracks/3/path = NodePath("Armature/Skeleton:Bone.002") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/keys = PoolRealArray( 0, 1, 5.58794e-09, 2.38419e-07, 7.45058e-09, 0.00669715, -0.000251052, -0.00559815, 0.999962, 1, 1, 1, 0.0666667, 1, 4.65661e-09, 1.19209e-07, 0, 0.00969202, -0.000216896, -0.00560302, 0.999937, 1, 1, 1, 0.133333, 1, 9.31323e-10, 0, 0, 0.0280924, -6.97997e-06, -0.0056319, 0.99959, 1, 1, 1, 0.266667, 1, 1.86265e-09, 2.38419e-07, 7.45058e-09, 0.0840917, 0.000632558, -0.00570812, 0.996441, 1, 1, 1, 0.333333, 1, 4.65661e-09, 1.19209e-07, -1.49012e-08, 0.0967601, 0.00077738, -0.00572291, 0.995291, 1, 1, 1, 0.4, 1, 2.79397e-09, 1.19209e-07, 7.45058e-09, 0.0904821, 0.000705605, -0.00571569, 0.995881, 1, 1, 1, 0.466667, 1, 0, 0, 0, 0.0746319, 0.00052445, -0.00569648, 0.997195, 1, 1, 1, 0.533333, 1, 0, 0, 0, 0.0502292, 0.00024571, -0.00566413, 0.998722, 1, 1, 1, 0.666667, 1, 0, 0, 0, -0.0149586, -0.000497942, -0.00556137, 0.999873, 1, 1, 1, 0.733333, 1, 0, 0, 0, -0.0364803, -0.000743153, -0.00552222, 0.999319, 1, 1, 1, 0.8, 1, 0, 0, 0, -0.0374274, -0.00075394, -0.00552044, 0.999284, 1, 1, 1, 0.866667, 1, 0, 0, 0, -0.031237, -0.000683427, -0.005532, 0.999496, 1, 1, 1, 1, 1, 0, 0, 0, -0.0161021, -0.000510974, -0.00555935, 0.999855, 1, 1, 1, 1.06667, 1, 0, 0, 0, -0.0126098, -0.000471172, -0.00556548, 0.999905, 1, 1, 1, 1.08333, 1, 0, 0, 0, -0.0121861, -0.000466342, -0.00556622, 0.99991, 1, 1, 1 ) +tracks/4/type = "transform" +tracks/4/path = NodePath("Armature/Skeleton:Bone.001") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/keys = PoolRealArray( 0, 1, -0.0132061, -3.46143, -0.018005, -2.32831e-10, 9.09495e-13, -1.01231e-10, 1, 1, 1, 1, 0.0666667, 1, -0.0130523, -3.42111, -0.0177953, -2.32831e-10, 9.09495e-13, -1.01231e-10, 1, 1, 1, 1, 0.133333, 1, -0.0120378, -3.1552, -0.0164121, -4.65661e-10, 4.54747e-13, 1.51879e-11, 1, 1, 1, 1, 0.2, 1, -0.0101642, -2.66412, -0.0138577, -4.65661e-10, 4.54747e-13, 1.51879e-11, 1, 1, 1, 1, 0.4, 1, -0.00357802, -0.937827, -0.00487822, -2.32831e-10, 9.09495e-13, -1.01231e-10, 1, 1, 1, 1, 0.466667, 1, -0.00197706, -0.518203, -0.0026955, -2.32831e-10, -3.53537e-21, 1.51843e-11, 1, 1, 1, 1, 0.533333, 1, -0.00078036, -0.204538, -0.00106393, -4.65661e-10, 4.54747e-13, 1.51879e-11, 1, 1, 1, 1, 0.6, 1, 1.13365e-05, 0.00297141, 1.54525e-05, -2.32831e-10, 9.09495e-13, -1.01231e-10, 1, 1, 1, 1, 0.666667, 1, 0.000435569, 0.114166, 0.000593845, -2.32831e-10, 9.09495e-13, -1.01231e-10, 1, 1, 1, 1, 0.733333, 1, 0.000543849, 0.142547, 0.000741471, -2.32831e-10, 9.09495e-13, -1.01231e-10, 1, 1, 1, 1, 0.8, 1, 0.000467875, 0.122634, 0.000637891, -2.32831e-10, 9.09495e-13, -1.01231e-10, 1, 1, 1, 1, 0.866667, 1, 0.000227304, 0.0595783, 0.000309903, -4.65661e-10, 4.54747e-13, 1.51879e-11, 1, 1, 1, 1, 0.933333, 1, 3.44932e-05, 0.00904095, 4.70243e-05, -2.32831e-10, 9.09495e-13, -1.01231e-10, 1, 1, 1, 1, 1, 1, 0, 0, 0, -2.32831e-10, 9.09495e-13, -1.01231e-10, 1, 1, 1, 1, 1.08333, 1, 0, 0, 0, -2.32831e-10, 9.09495e-13, -1.01231e-10, 1, 1, 1, 1 ) + +[sub_resource type="Animation" id=4] +resource_name = "zip" +length = 0.583333 +tracks/0/type = "transform" +tracks/0/path = NodePath("Armature/Skeleton:Bone") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/keys = PoolRealArray( 0, 1, 0, 0, 0, -1.86265e-09, -1.86265e-09, -5.07571e-08, 1, 1, 1, 1, 0.0666667, 1, -0.00401592, -0.0542987, 0.00117737, 0.0267061, -0.0428184, -0.0285195, 0.998319, 1, 1, 1, 0.133333, 1, -0.0253689, -0.352354, 0.00766534, 0.146973, -0.219917, -0.173862, 0.948582, 1, 1, 1, 0.2, 1, -0.0533152, -0.720394, 0.0156491, 0.208796, -0.275634, -0.304225, 0.887624, 1, 1, 1, 0.266667, 1, -0.148844, -1.06011, 0.0209633, 0.219704, -0.277475, -0.361182, 0.86272, 1, 1, 1, 0.333333, 1, -0.403487, -1.48767, 0.0236433, 0.384726, -0.392127, -0.463859, 0.695023, 1, 1, 1, 0.4, 1, -0.640457, -1.80538, 0.0243104, -0.605126, 0.612071, 0.484672, -0.155836, 1, 1, 1, 0.466667, 1, -0.653308, -1.82954, 0.0245767, -0.532084, 0.714435, 0.438547, -0.118934, 1, 1, 1, 0.533333, 1, -0.639363, -1.81667, 0.0246452, -0.497575, 0.737699, 0.432619, -0.145124, 1, 1, 1, 0.583333, 1, -0.639363, -1.81667, 0.0246452, -0.506874, 0.733183, 0.435254, -0.126789, 1, 1, 1 ) +tracks/1/type = "transform" +tracks/1/path = NodePath("Armature/Skeleton:Bone.003") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/keys = PoolRealArray( 0, 1, 0, 0, 0, -2.98023e-08, -4.65661e-09, 1.86265e-09, 1, 1, 1, 1, 0.583333, 1, 0, -2.98023e-08, -1.19209e-07, -4.47035e-08, -6.51926e-09, 2.32831e-09, 1, 1, 1, 1 ) +tracks/2/type = "transform" +tracks/2/path = NodePath("Armature/Skeleton:Bone.004") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/imported = false +tracks/2/enabled = false +tracks/2/keys = PoolRealArray( 0, 1, 0, 0, 0, -1.49012e-08, 3.35276e-08, -1.58325e-08, 1, 1, 1, 1, 0.0666667, 1, -0.0261034, -0.00807095, 0.00152791, -0.00107715, 0.00608102, -0.0214826, 0.99975, 1, 1, 1, 0.133333, 1, -0.186318, -0.057653, 0.0109178, -0.00650784, 0.0367384, -0.129787, 0.99084, 1, 1, 1, 0.2, 1, -0.442409, -0.137071, 0.0259724, -0.0111179, 0.0627627, -0.221725, 0.973024, 1, 1, 1, 0.266667, 1, -0.685853, -0.212871, 0.040368, 0.0959118, -0.0763616, -0.18484, 0.975092, 1, 1, 1, 0.333333, 1, -0.872222, -0.271118, 0.0514487, 0.338316, -0.404048, -0.0228898, 0.849567, 1, 1, 1, 0.4, 1, -0.9559, -0.29735, 0.0564456, 0.454655, -0.568001, 0.160559, 0.666997, 1, 1, 1, 0.466667, 1, -0.937163, -0.291468, 0.0552338, 0.320925, -0.531588, 0.299941, 0.724194, 1, 1, 1, 0.533333, 1, -0.885535, -0.269644, 0.0506505, 0.0668841, -0.421716, 0.352214, 0.832843, 1, 1, 1, 0.583333, 1, -0.876826, -0.259357, 0.0481548, 0.121115, -0.668491, 0.142354, 0.719852, 1, 1, 1 ) +tracks/3/type = "transform" +tracks/3/path = NodePath("Armature/Skeleton:Bone.002") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/keys = PoolRealArray( 0, 1, 0, 0, 0, -3.72529e-09, -2.91038e-11, 7.93079e-10, 1, 1, 1, 1, 0.0666667, 1, 0, 0, 0, -5.94167e-05, -5.19598e-05, -0.000827586, 1, 1, 1, 1, 0.133333, 1, 0, 0, 0, -0.00116706, -0.000350779, -0.00569298, 0.999983, 1, 1, 1, 0.2, 1, 0, 0, 0, -0.00559538, -0.000758339, -0.0127168, 0.999903, 1, 1, 1, 0.266667, 1, 0, 0, 0, -0.0110731, -0.00101298, -0.0174416, 0.999786, 1, 1, 1, 0.333333, 1, 0, 0, 0, -0.0121963, -0.000901772, -0.0149506, 0.999813, 1, 1, 1, 0.4, 1, 0, 0, 0, -0.0121876, -0.000527305, -0.00688007, 0.999902, 1, 1, 1, 0.466667, 1, 0, 0, 0, -0.0121861, -0.000466342, -0.00556622, 0.99991, 1, 1, 1, 0.583333, 1, 0, 0, 0, -0.0121861, -0.000466342, -0.00556622, 0.99991, 1, 1, 1 ) +tracks/4/type = "transform" +tracks/4/path = NodePath("Armature/Skeleton:Bone.001") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/keys = PoolRealArray( 0, 1, 0, 0, 0, -2.32831e-10, 9.09495e-13, -1.01231e-10, 1, 1, 1, 1, 0.583333, 1, 0, 0, 0, -2.32831e-10, 9.09495e-13, -1.01231e-10, 1, 1, 1, 1 ) + +[sub_resource type="Animation" id=10] +resource_name = "zip_b" +length = 0.625 +tracks/0/type = "transform" +tracks/0/path = NodePath("Armature/Skeleton:Bone") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/keys = PoolRealArray( 0, 1, 0, 0, 0, -1.86265e-09, -1.86265e-09, -5.07571e-08, 1, 1, 1, 1, 0.625, 1, 0, 0, 0, -1.86265e-09, -1.86265e-09, -5.07571e-08, 1, 1, 1, 1 ) +tracks/1/type = "transform" +tracks/1/path = NodePath("Armature/Skeleton:Bone.003") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/keys = PoolRealArray( 0, 1, 0, 0, 0, -2.98023e-08, -4.65661e-09, 1.86265e-09, 1, 1, 1, 1, 0.0666667, 1, -0.0172025, -0.0961019, 0.0266626, 0.137795, -0.0181272, 0.00581664, 0.990278, 1, 1, 1, 0.133333, 1, -0.107929, -0.417908, 0.115089, 0.443777, -0.0567103, 0.0172341, 0.894175, 1, 1, 1, 0.2, 1, -0.231673, -0.502876, 0.13791, 0.425308, -0.005552, -0.0272869, 0.90462, 1, 1, 1, 0.266667, 1, -0.455099, -0.580318, 0.158182, 0.356904, 0.148116, -0.160037, 0.908333, 1, 1, 1, 0.333333, 1, -1.00977, -0.813782, 0.219597, 0.459064, -0.0466078, 0.01587, 0.887038, 1, 1, 1, 0.4, 1, -1.32169, -0.928956, 0.249719, 0.504123, -0.27521, 0.187097, 0.796941, 1, 1, 1, 0.466667, 1, -1.36694, -0.938618, 0.252134, 0.380167, -0.260914, 0.0261909, 0.886967, 1, 1, 1, 0.533333, 1, -1.36182, -0.936816, 0.251665, 0.322236, -0.240959, -0.0356971, 0.914783, 1, 1, 1, 0.6, 1, -1.33859, -0.929677, 0.249821, 0.31673, -0.232492, -0.0396463, 0.918726, 1, 1, 1, 0.625, 1, -1.33292, -0.927934, 0.249371, 0.316489, -0.231332, -0.0398645, 0.919093, 1, 1, 1 ) +tracks/2/type = "transform" +tracks/2/path = NodePath("Armature/Skeleton:Bone.004") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/keys = PoolRealArray( 0, 1, 0, 0, 0, -1.49012e-08, 3.35276e-08, -1.58325e-08, 1, 1, 1, 1, 0.625, 1, 0, 0, 0, -1.49012e-08, 3.35276e-08, -1.58325e-08, 1, 1, 1, 1 ) +tracks/3/type = "transform" +tracks/3/path = NodePath("Armature/Skeleton:Bone.002") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/keys = PoolRealArray( 0, 1, 0, 0, 0, -3.72529e-09, -2.91038e-11, 7.93079e-10, 1, 1, 1, 1, 0.0666667, 1, 0, 0, 0, 6.33179e-05, -0.00279854, -0.00325251, 0.999991, 1, 1, 1, 0.133333, 1, 0, 0, 0, -8.01745e-05, -0.0112838, -0.0167319, 0.999796, 1, 1, 1, 0.2, 1, 0, 0, 0, -0.00308767, -0.0129464, -0.0238457, 0.999627, 1, 1, 1, 0.266667, 1, 0, 0, 0, -0.00471854, -0.0129394, -0.0227255, 0.999647, 1, 1, 1, 0.333333, 1, 0, 0, 0, -0.00441052, -0.0116821, -0.016394, 0.999788, 1, 1, 1, 0.4, 1, 0, 0, 0, -0.00281079, -0.00734386, -0.00775949, 0.999939, 1, 1, 1, 0.466667, 1, 0, 0, 0, -0.00133447, -0.00342452, -0.00266199, 0.99999, 1, 1, 1, 0.533333, 1, 0, 0, 0, -0.000432789, -0.00108897, -0.000557454, 0.999999, 1, 1, 1, 0.6, 1, 0, 0, 0, -4.93412e-05, -0.00012166, -2.87888e-05, 1, 1, 1, 1, 0.625, 1, 0, 0, 0, -3.72529e-09, -2.91038e-11, 7.93079e-10, 1, 1, 1, 1 ) +tracks/4/type = "transform" +tracks/4/path = NodePath("Armature/Skeleton:Bone.001") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/keys = PoolRealArray( 0, 1, 0, 0, 0, -2.32831e-10, 9.09495e-13, -1.01231e-10, 1, 1, 1, 1, 0.625, 1, 0, 0, 0, -2.32831e-10, 9.09495e-13, -1.01231e-10, 1, 1, 1, 1 ) + +[sub_resource type="Animation" id=6] +resource_name = "zip_c" +length = 0.625 +tracks/0/type = "transform" +tracks/0/path = NodePath("Armature/Skeleton:Bone") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/keys = PoolRealArray( 0, 1, 0, 0, 0, -1.86265e-09, -1.86265e-09, -5.07571e-08, 1, 1, 1, 1, 0.625, 1, 0, 0, 0, -1.86265e-09, -1.86265e-09, -5.07571e-08, 1, 1, 1, 1 ) +tracks/1/type = "transform" +tracks/1/path = NodePath("Armature/Skeleton:Bone.003") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/keys = PoolRealArray( 0, 1, 0, 0, 0, -2.98023e-08, -4.65661e-09, 1.86265e-09, 1, 1, 1, 1, 0.625, 1, 0, 0, 0, -2.98023e-08, -4.65661e-09, 1.86265e-09, 1, 1, 1, 1 ) +tracks/2/type = "transform" +tracks/2/path = NodePath("Armature/Skeleton:Bone.004") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/keys = PoolRealArray( 0, 1, 0, 0, 0, -1.49012e-08, 3.35276e-08, -1.58325e-08, 1, 1, 1, 1, 0.0666667, 1, -0.0261035, -0.00807086, 0.00152779, -0.00107715, 0.00608102, -0.0214826, 0.99975, 1, 1, 1, 0.133333, 1, -0.186318, -0.0576529, 0.0109175, -0.00650783, 0.0367384, -0.129787, 0.99084, 1, 1, 1, 0.2, 1, -0.442409, -0.137071, 0.0259724, -0.0111179, 0.0627627, -0.221725, 0.973024, 1, 1, 1, 0.266667, 1, -0.685853, -0.212871, 0.0403678, 0.0959118, -0.0763616, -0.18484, 0.975092, 1, 1, 1, 0.333333, 1, -0.872222, -0.271118, 0.0514486, 0.338316, -0.404048, -0.0228899, 0.849567, 1, 1, 1, 0.4, 1, -0.9559, -0.297349, 0.0564457, 0.454654, -0.568001, 0.160559, 0.666997, 1, 1, 1, 0.466667, 1, -0.937163, -0.291468, 0.0552338, 0.320925, -0.531588, 0.299941, 0.724194, 1, 1, 1, 0.533333, 1, -0.885535, -0.269643, 0.0506504, 0.066884, -0.421716, 0.352214, 0.832843, 1, 1, 1, 0.6, 1, -0.876613, -0.258536, 0.0478995, 0.147839, -0.748627, 0.0507216, 0.644305, 1, 1, 1, 0.625, 1, -0.876294, -0.257306, 0.0475163, 0.181878, -0.838577, -0.0881313, 0.505907, 1, 1, 1 ) +tracks/3/type = "transform" +tracks/3/path = NodePath("Armature/Skeleton:Bone.002") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/keys = PoolRealArray( 0, 1, 0, 0, 0, -3.72529e-09, -2.91038e-11, 7.93079e-10, 1, 1, 1, 1, 0.0666667, 1, 0, 0, 0, -8.93397e-06, 3.16265e-05, -0.00139071, 0.999999, 1, 1, 1, 0.133333, 1, 0, 0, 0, -5.24694e-05, 0.000494578, -0.00843505, 0.999964, 1, 1, 1, 0.2, 1, 0, 0, 0, -8.17807e-05, 0.00219643, -0.014358, 0.999894, 1, 1, 1, 0.266667, 1, 0, 0, 0, 4.40144e-05, 0.00618798, -0.0123173, 0.999905, 1, 1, 1, 0.333333, 1, 0, 0, 0, 0.000190006, 0.00927724, -0.00705323, 0.999932, 1, 1, 1, 0.4, 1, 0, 0, 0, 0.000153932, 0.00357129, -0.00303491, 0.999989, 1, 1, 1, 0.466667, 1, 0, 0, 0, 0.000108513, -0.0010891, -0.000934899, 0.999999, 1, 1, 1, 0.533333, 1, 0, 0, 0, 5.633e-05, -0.000641702, -0.00019754, 1, 1, 1, 1, 0.6, 1, 0, 0, 0, 8.81665e-06, -0.000105917, -1.05105e-05, 1, 1, 1, 1, 0.625, 1, 0, 0, 0, -3.72529e-09, -2.91038e-11, 7.93079e-10, 1, 1, 1, 1 ) +tracks/4/type = "transform" +tracks/4/path = NodePath("Armature/Skeleton:Bone.001") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/keys = PoolRealArray( 0, 1, 0, 0, 0, -2.32831e-10, 9.09495e-13, -1.01231e-10, 1, 1, 1, 1, 0.625, 1, 0, 0, 0, -2.32831e-10, 9.09495e-13, -1.01231e-10, 1, 1, 1, 1 ) + +[sub_resource type="StyleBoxEmpty" id=19] + +[sub_resource type="World" id=33] +environment = ExtResource( 15 ) + +[sub_resource type="CylinderMesh" id=34] +height = 0.2 +radial_segments = 8 + +[sub_resource type="CylinderMesh" id=35] +top_radius = 1.02 +bottom_radius = 1.02 +height = 0.2 +radial_segments = 8 + +[sub_resource type="SpatialMaterial" id=440] +flags_transparent = true +params_billboard_mode = 3 +particles_anim_h_frames = 1 +particles_anim_v_frames = 1 +particles_anim_loop = false +albedo_texture = ExtResource( 69 ) + +[sub_resource type="QuadMesh" id=443] +material = SubResource( 440 ) + +[sub_resource type="SpatialMaterial" id=441] +flags_transparent = true +params_billboard_mode = 3 +particles_anim_h_frames = 1 +particles_anim_v_frames = 1 +particles_anim_loop = false +albedo_texture = ExtResource( 71 ) + +[sub_resource type="QuadMesh" id=444] +material = SubResource( 441 ) + +[sub_resource type="SpatialMaterial" id=442] +flags_transparent = true +params_billboard_mode = 3 +particles_anim_h_frames = 1 +particles_anim_v_frames = 1 +particles_anim_loop = false +albedo_texture = ExtResource( 70 ) + +[sub_resource type="QuadMesh" id=445] +material = SubResource( 442 ) + +[sub_resource type="StyleBoxFlat" id=24] +bg_color = Color( 0.352941, 0.458824, 0.352941, 1 ) +border_color = Color( 0.415686, 0.266667, 0.12549, 1 ) +corner_radius_top_left = 12 +corner_radius_top_right = 12 +corner_radius_bottom_right = 12 +corner_radius_bottom_left = 12 +expand_margin_left = 2.0 +expand_margin_right = 2.0 + +[sub_resource type="StyleBoxFlat" id=25] +bg_color = Color( 0.835294, 0.666667, 0.45098, 1 ) +border_color = Color( 0.415686, 0.266667, 0.12549, 1 ) +corner_radius_top_left = 12 +corner_radius_top_right = 12 +corner_radius_bottom_right = 12 +corner_radius_bottom_left = 12 +expand_margin_left = 2.0 +expand_margin_right = 2.0 + +[sub_resource type="StyleBoxEmpty" id=26] + +[sub_resource type="StyleBoxFlat" id=27] +bg_color = Color( 0.643137, 0.615686, 0.611765, 1 ) +border_color = Color( 0.415686, 0.266667, 0.12549, 1 ) +corner_radius_top_left = 12 +corner_radius_top_right = 12 +corner_radius_bottom_right = 12 +corner_radius_bottom_left = 12 +expand_margin_left = 2.0 +expand_margin_right = 2.0 + +[sub_resource type="StyleBoxFlat" id=28] +bg_color = Color( 0, 0.521569, 0.513726, 1 ) +border_color = Color( 0.415686, 0.266667, 0.12549, 1 ) +corner_radius_top_left = 12 +corner_radius_top_right = 12 +corner_radius_bottom_right = 12 +corner_radius_bottom_left = 12 +expand_margin_left = 2.0 +expand_margin_right = 2.0 + +[sub_resource type="StyleBoxFlat" id=29] +bg_color = Color( 0.901961, 0.615686, 0, 1 ) +border_color = Color( 0.415686, 0.266667, 0.12549, 1 ) +corner_radius_top_left = 12 +corner_radius_top_right = 12 +corner_radius_bottom_right = 12 +corner_radius_bottom_left = 12 +expand_margin_left = 2.0 +expand_margin_right = 2.0 + +[sub_resource type="StyleBoxFlat" id=30] +bg_color = Color( 0.803922, 0.0156863, 0.384314, 1 ) +border_color = Color( 0.415686, 0.266667, 0.12549, 1 ) +corner_radius_top_left = 12 +corner_radius_top_right = 12 +corner_radius_bottom_right = 12 +corner_radius_bottom_left = 12 +expand_margin_left = 2.0 +expand_margin_right = 2.0 + +[sub_resource type="BoxShape" id=20] + +[sub_resource type="StyleBoxEmpty" id=32] + +[sub_resource type="ArrayMesh" id=14] +resource_name = "tacklebox_Cube001" +surfaces/0 = { +"aabb": AABB( -3.04953, -1, -1.84527, 6.09906, 1.26184, 2.84527 ), +"array_data": PoolByteArray( 121, 49, 50, 192, 0, 0, 128, 191, 152, 46, 91, 63, 152, 234, 235, 113, 0, 54, 0, 60, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 121, 49, 50, 192, 0, 0, 128, 191, 152, 46, 91, 63, 0, 129, 127, 63, 0, 48, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 121, 49, 50, 192, 0, 0, 128, 191, 152, 46, 91, 63, 0, 241, 236, 110, 0, 54, 0, 0, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 64, 192, 0, 0, 0, 0, 0, 0, 128, 63, 129, 0, 127, 63, 0, 57, 0, 60, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 64, 192, 0, 0, 0, 0, 0, 0, 128, 63, 152, 234, 236, 110, 0, 57, 0, 60, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 64, 192, 0, 0, 0, 0, 0, 0, 128, 63, 0, 241, 241, 112, 0, 57, 0, 0, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 64, 192, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 127, 193, 0, 57, 0, 0, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 121, 49, 50, 192, 0, 0, 128, 191, 152, 46, 91, 191, 152, 234, 223, 116, 0, 54, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 121, 49, 50, 192, 0, 0, 128, 191, 152, 46, 91, 191, 0, 129, 127, 63, 0, 48, 0, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 121, 49, 50, 192, 0, 0, 128, 191, 152, 46, 91, 191, 111, 129, 226, 118, 0, 54, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 64, 192, 0, 0, 0, 0, 0, 0, 128, 191, 129, 0, 127, 63, 0, 57, 0, 58, 0, 1, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 0, 0, 64, 192, 0, 0, 0, 0, 0, 0, 128, 191, 152, 234, 230, 116, 0, 57, 0, 58, 0, 1, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 0, 0, 64, 192, 0, 0, 0, 0, 0, 0, 128, 191, 30, 129, 127, 63, 0, 57, 0, 58, 0, 1, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 0, 0, 64, 192, 0, 0, 0, 0, 0, 0, 128, 191, 111, 129, 223, 116, 0, 57, 0, 58, 0, 1, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 0, 0, 64, 192, 0, 0, 0, 0, 0, 0, 128, 191, 0, 195, 127, 193, 0, 57, 0, 58, 0, 1, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 0, 0, 64, 192, 233, 97, 66, 61, 0, 0, 128, 63, 129, 0, 127, 63, 0, 57, 0, 60, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 64, 192, 233, 97, 66, 61, 0, 0, 128, 63, 0, 0, 127, 193, 0, 57, 0, 0, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 64, 192, 233, 97, 66, 61, 0, 133, 116, 191, 129, 0, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 0, 0, 64, 192, 233, 97, 66, 61, 0, 133, 116, 191, 0, 195, 127, 193, 0, 57, 0, 58, 1, 0, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 122, 43, 67, 192, 173, 63, 65, 61, 187, 116, 116, 191, 0, 195, 127, 193, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 122, 43, 67, 192, 208, 29, 145, 185, 187, 239, 127, 191, 0, 195, 127, 193, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 202, 177, 40, 192, 54, 16, 134, 62, 219, 49, 236, 191, 30, 129, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 121, 49, 50, 64, 0, 0, 128, 191, 152, 46, 91, 63, 0, 129, 129, 193, 0, 48, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 121, 49, 50, 64, 0, 0, 128, 191, 152, 46, 91, 63, 0, 241, 20, 146, 0, 54, 0, 0, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 121, 49, 50, 64, 0, 0, 128, 191, 152, 46, 91, 63, 0, 241, 18, 145, 0, 54, 0, 0, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 121, 49, 50, 64, 0, 0, 128, 191, 152, 46, 91, 63, 104, 234, 21, 143, 0, 54, 0, 60, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 64, 64, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 127, 193, 0, 57, 0, 0, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 64, 64, 0, 0, 0, 0, 0, 0, 128, 63, 0, 241, 16, 145, 0, 57, 0, 0, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 64, 64, 0, 0, 0, 0, 0, 0, 128, 63, 104, 234, 20, 146, 0, 57, 0, 60, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 64, 64, 0, 0, 0, 0, 0, 0, 128, 63, 127, 0, 127, 63, 0, 57, 0, 60, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 121, 49, 50, 64, 0, 0, 128, 191, 152, 46, 91, 191, 0, 129, 129, 193, 0, 48, 0, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 121, 49, 50, 64, 0, 0, 128, 191, 152, 46, 91, 191, 111, 129, 30, 138, 0, 54, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 121, 49, 50, 64, 0, 0, 128, 191, 152, 46, 91, 191, 104, 234, 33, 140, 0, 54, 0, 58, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 64, 64, 0, 0, 0, 0, 0, 0, 128, 191, 0, 195, 127, 193, 0, 57, 0, 58, 0, 1, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 0, 0, 64, 64, 0, 0, 0, 0, 0, 0, 128, 191, 30, 129, 127, 63, 0, 57, 0, 58, 0, 1, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 0, 0, 64, 64, 0, 0, 0, 0, 0, 0, 128, 191, 111, 129, 33, 140, 0, 57, 0, 58, 0, 1, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 0, 0, 64, 64, 0, 0, 0, 0, 0, 0, 128, 191, 104, 234, 26, 140, 0, 57, 0, 58, 0, 1, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 0, 0, 64, 64, 0, 0, 0, 0, 0, 0, 128, 191, 127, 0, 127, 63, 0, 57, 0, 58, 0, 1, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 191, 152, 46, 91, 63, 129, 0, 0, 137, 0, 54, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 191, 152, 46, 91, 63, 0, 129, 129, 193, 0, 54, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 191, 152, 46, 91, 63, 0, 241, 252, 116, 0, 54, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 191, 152, 46, 91, 63, 0, 241, 4, 139, 0, 54, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 191, 152, 46, 91, 63, 0, 241, 16, 144, 0, 54, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 129, 0, 0, 132, 0, 57, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 241, 0, 119, 0, 57, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 127, 193, 0, 57, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 241, 0, 137, 0, 57, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 191, 152, 46, 91, 191, 129, 0, 7, 129, 0, 54, 0, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 191, 152, 46, 91, 191, 0, 129, 129, 193, 0, 54, 0, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 191, 152, 46, 91, 191, 111, 129, 15, 129, 0, 54, 0, 56, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 191, 129, 0, 15, 129, 0, 57, 0, 56, 0, 1, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 191, 30, 129, 127, 63, 0, 57, 0, 56, 0, 1, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 191, 111, 129, 20, 132, 0, 57, 0, 56, 0, 1, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 0, 0, 64, 64, 233, 97, 66, 61, 0, 0, 128, 63, 0, 0, 127, 193, 0, 57, 0, 0, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 64, 64, 233, 97, 66, 61, 0, 0, 128, 63, 127, 0, 127, 63, 0, 57, 0, 60, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 64, 64, 233, 97, 66, 61, 0, 133, 116, 191, 0, 195, 127, 193, 0, 57, 0, 58, 1, 0, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 0, 0, 64, 64, 233, 97, 66, 61, 0, 133, 116, 191, 127, 0, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 0, 0, 0, 0, 233, 97, 66, 61, 0, 0, 128, 63, 129, 0, 127, 63, 0, 57, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 233, 97, 66, 61, 0, 0, 128, 63, 0, 0, 127, 193, 0, 57, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 233, 97, 66, 61, 0, 133, 116, 191, 129, 0, 127, 63, 0, 57, 0, 56, 1, 0, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 122, 43, 67, 64, 173, 63, 65, 61, 187, 116, 116, 191, 0, 195, 127, 193, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 122, 43, 67, 64, 208, 29, 145, 185, 187, 239, 127, 191, 0, 195, 127, 193, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 202, 177, 40, 64, 54, 16, 134, 62, 219, 49, 236, 191, 30, 129, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 16, 134, 62, 219, 49, 236, 191, 30, 129, 127, 63, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 24, 121, 43, 64, 130, 247, 107, 191, 45, 16, 94, 63, 0, 241, 18, 146, 80, 54, 125, 33, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 154, 141, 44, 64, 182, 218, 77, 191, 219, 100, 98, 63, 0, 241, 20, 146, 200, 54, 205, 33, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 154, 141, 44, 64, 182, 218, 77, 191, 219, 100, 98, 63, 0, 241, 19, 146, 200, 54, 205, 33, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 170, 70, 28, 64, 238, 93, 80, 191, 89, 8, 98, 63, 0, 241, 19, 146, 190, 54, 77, 40, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 22, 6, 27, 64, 59, 74, 105, 191, 187, 114, 94, 63, 0, 241, 16, 145, 90, 54, 84, 40, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 22, 6, 27, 64, 59, 74, 105, 191, 187, 114, 94, 63, 0, 241, 16, 145, 90, 54, 84, 40, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0 ), +"array_index_data": PoolByteArray( 0, 0, 11, 0, 4, 0, 0, 0, 7, 0, 11, 0, 9, 0, 52, 0, 13, 0, 9, 0, 49, 0, 52, 0, 40, 0, 5, 0, 44, 0, 40, 0, 2, 0, 5, 0, 8, 0, 39, 0, 48, 0, 8, 0, 1, 0, 39, 0, 10, 0, 15, 0, 3, 0, 10, 0, 17, 0, 15, 0, 6, 0, 58, 0, 45, 0, 6, 0, 16, 0, 58, 0, 51, 0, 21, 0, 12, 0, 51, 0, 63, 0, 21, 0, 14, 0, 19, 0, 18, 0, 14, 0, 20, 0, 19, 0, 25, 0, 36, 0, 32, 0, 25, 0, 28, 0, 36, 0, 31, 0, 52, 0, 49, 0, 31, 0, 35, 0, 52, 0, 47, 0, 43, 0, 38, 0, 47, 0, 50, 0, 43, 0, 69, 0, 24, 0, 42, 0, 24, 0, 64, 0, 66, 0, 24, 0, 69, 0, 64, 0, 30, 0, 39, 0, 22, 0, 30, 0, 48, 0, 39, 0, 37, 0, 54, 0, 56, 0, 37, 0, 29, 0, 54, 0, 26, 0, 58, 0, 53, 0, 26, 0, 45, 0, 58, 0, 43, 0, 59, 0, 57, 0, 43, 0, 50, 0, 59, 0, 51, 0, 62, 0, 63, 0, 51, 0, 34, 0, 62, 0, 33, 0, 60, 0, 61, 0, 33, 0, 55, 0, 60, 0, 65, 0, 27, 0, 23, 0, 27, 0, 41, 0, 46, 0, 41, 0, 67, 0, 68, 0, 67, 0, 27, 0, 65, 0, 67, 0, 41, 0, 27, 0 ), +"blend_shape_data": [ ], +"format": 2194903, +"index_count": 126, +"material": ExtResource( 25 ), +"primitive": 4, +"skeleton_aabb": [ AABB( -3, -1, -1, 6, 1.04746, 2 ), AABB( -3.04953, -0.000276788, -1.84527, 6.09906, 0.262119, 0.890365 ) ], +"vertex_count": 70 +} +surfaces/1 = { +"aabb": AABB( -3, 0.0474567, -0.976272, 6, 1.97627, 1.97627 ), +"array_data": PoolByteArray( 0, 0, 64, 192, 233, 97, 66, 61, 0, 0, 128, 63, 0, 127, 129, 63, 0, 59, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 64, 192, 233, 97, 66, 61, 0, 133, 116, 191, 0, 1, 127, 193, 0, 59, 0, 56, 1, 0, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 0, 0, 64, 192, 233, 97, 66, 61, 0, 133, 116, 191, 0, 127, 129, 63, 0, 59, 0, 56, 1, 0, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 0, 0, 64, 192, 196, 132, 1, 64, 242, 236, 121, 191, 0, 1, 127, 193, 0, 59, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 240, 15, 55, 191, 196, 132, 1, 64, 242, 236, 121, 191, 0, 1, 127, 193, 122, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 143, 180, 5, 191, 196, 132, 1, 64, 242, 236, 121, 191, 0, 1, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 64, 64, 233, 97, 66, 61, 0, 0, 128, 63, 0, 127, 127, 193, 0, 59, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 64, 64, 233, 97, 66, 61, 0, 133, 116, 191, 0, 1, 127, 193, 0, 59, 0, 56, 1, 0, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 0, 0, 64, 64, 233, 97, 66, 61, 0, 133, 116, 191, 0, 127, 127, 193, 0, 59, 0, 56, 1, 0, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 0, 0, 0, 0, 233, 97, 66, 61, 0, 0, 128, 63, 0, 127, 127, 193, 0, 57, 0, 52, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 233, 97, 66, 61, 0, 133, 116, 191, 0, 1, 127, 193, 0, 57, 0, 56, 1, 0, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 0, 0, 0, 0, 233, 97, 66, 61, 0, 133, 116, 191, 0, 127, 127, 193, 0, 57, 0, 56, 1, 0, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 0, 0, 64, 64, 196, 132, 1, 64, 242, 236, 121, 191, 0, 1, 127, 193, 0, 59, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 196, 132, 1, 64, 242, 236, 121, 191, 0, 1, 127, 193, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 240, 15, 55, 63, 196, 132, 1, 64, 242, 236, 121, 191, 0, 1, 127, 193, 122, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 143, 180, 5, 63, 196, 132, 1, 64, 242, 236, 121, 191, 0, 1, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0 ), +"array_index_data": PoolByteArray( 11, 0, 0, 0, 2, 0, 11, 0, 9, 0, 0, 0, 3, 0, 10, 0, 1, 0, 10, 0, 5, 0, 13, 0, 4, 0, 10, 0, 3, 0, 10, 0, 4, 0, 5, 0, 11, 0, 6, 0, 9, 0, 11, 0, 8, 0, 6, 0, 10, 0, 12, 0, 7, 0, 14, 0, 13, 0, 15, 0, 10, 0, 14, 0, 12, 0, 14, 0, 10, 0, 13, 0 ), +"blend_shape_data": [ ], +"format": 2194903, +"index_count": 36, +"material": ExtResource( 27 ), +"primitive": 4, +"skeleton_aabb": [ AABB( -3, 0.0474567, -0.955154, 6, 9.99868e-06, 1.95516 ), AABB( -3, 0.0474567, -0.976272, 6, 1.97627, 0.0211273 ) ], +"vertex_count": 16 +} +surfaces/2 = { +"aabb": AABB( -3.04953, -0.000276788, -2.43254, 6.09906, 2.07353, 1.80861 ), +"array_data": PoolByteArray( 0, 0, 64, 192, 0, 0, 0, 0, 0, 0, 128, 191, 130, 218, 127, 63, 0, 57, 0, 58, 0, 1, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 0, 0, 64, 192, 0, 0, 0, 0, 0, 0, 128, 191, 131, 131, 127, 63, 0, 57, 0, 58, 0, 1, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 0, 0, 64, 192, 233, 97, 66, 61, 0, 133, 116, 191, 1, 1, 127, 193, 0, 59, 0, 56, 1, 0, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 0, 0, 64, 192, 196, 132, 1, 64, 136, 9, 131, 191, 130, 218, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 64, 192, 196, 132, 1, 64, 136, 9, 131, 191, 131, 131, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 64, 192, 196, 132, 1, 64, 136, 9, 131, 191, 130, 130, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 64, 192, 196, 132, 1, 64, 136, 9, 131, 191, 30, 127, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 64, 192, 196, 132, 1, 64, 242, 236, 121, 191, 0, 0, 127, 193, 0, 59, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 64, 192, 196, 132, 1, 64, 242, 236, 121, 191, 1, 1, 127, 193, 0, 59, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 191, 132, 141, 117, 63, 12, 67, 237, 191, 129, 0, 127, 63, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 191, 132, 141, 117, 63, 12, 67, 237, 191, 131, 130, 127, 63, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 191, 132, 141, 117, 63, 12, 67, 237, 191, 0, 131, 127, 193, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 191, 132, 141, 117, 63, 12, 67, 237, 191, 125, 129, 127, 63, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 191, 132, 141, 117, 63, 12, 67, 237, 191, 0, 131, 127, 193, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 191, 132, 141, 117, 63, 12, 67, 237, 191, 125, 129, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 191, 132, 141, 117, 63, 12, 67, 237, 191, 125, 130, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 191, 132, 141, 117, 63, 12, 67, 237, 191, 127, 0, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 191, 194, 6, 132, 63, 207, 94, 237, 191, 129, 0, 127, 63, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 191, 194, 6, 132, 63, 207, 94, 237, 191, 131, 130, 127, 63, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 191, 194, 6, 132, 63, 207, 94, 237, 191, 125, 129, 127, 63, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 191, 194, 6, 132, 63, 207, 94, 237, 191, 1, 127, 127, 63, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 191, 194, 6, 132, 63, 207, 94, 237, 191, 125, 129, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 191, 194, 6, 132, 63, 207, 94, 237, 191, 1, 127, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 191, 194, 6, 132, 63, 207, 94, 237, 191, 125, 130, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 191, 194, 6, 132, 63, 207, 94, 237, 191, 127, 0, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 122, 43, 67, 192, 173, 63, 65, 61, 187, 116, 116, 191, 130, 1, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 122, 43, 67, 192, 173, 63, 65, 61, 187, 116, 116, 191, 1, 1, 127, 193, 0, 59, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 122, 43, 67, 192, 208, 29, 145, 185, 187, 239, 127, 191, 130, 1, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 122, 43, 67, 192, 208, 29, 145, 185, 187, 239, 127, 191, 131, 131, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 161, 61, 66, 192, 179, 194, 3, 64, 70, 6, 131, 191, 130, 1, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 161, 61, 66, 192, 179, 194, 3, 64, 70, 6, 131, 191, 131, 131, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 161, 61, 66, 192, 179, 194, 3, 64, 70, 6, 131, 191, 0, 126, 127, 193, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 161, 61, 66, 192, 179, 194, 3, 64, 70, 6, 131, 191, 130, 130, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 196, 62, 66, 192, 140, 193, 3, 64, 39, 230, 121, 191, 130, 1, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 196, 62, 66, 192, 140, 193, 3, 64, 39, 230, 121, 191, 0, 126, 127, 193, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 196, 62, 66, 192, 140, 193, 3, 64, 39, 230, 121, 191, 0, 0, 127, 193, 0, 59, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 196, 62, 66, 192, 140, 193, 3, 64, 39, 230, 121, 191, 1, 1, 127, 193, 0, 59, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 202, 177, 40, 192, 54, 16, 134, 62, 219, 49, 236, 191, 130, 218, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 202, 177, 40, 192, 54, 16, 134, 62, 219, 49, 236, 191, 131, 130, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 202, 177, 40, 192, 54, 16, 134, 62, 219, 49, 236, 191, 125, 129, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 202, 177, 40, 192, 102, 203, 224, 63, 255, 111, 238, 191, 130, 218, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 202, 177, 40, 192, 102, 203, 224, 63, 255, 111, 238, 191, 131, 130, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 202, 177, 40, 192, 102, 203, 224, 63, 255, 111, 238, 191, 125, 129, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 202, 177, 40, 192, 102, 203, 224, 63, 255, 111, 238, 191, 30, 127, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 191, 20, 46, 116, 63, 156, 231, 19, 192, 129, 0, 127, 63, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 191, 20, 46, 116, 63, 156, 231, 19, 192, 130, 0, 127, 193, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 191, 20, 46, 116, 63, 156, 231, 19, 192, 0, 131, 127, 193, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 191, 20, 46, 116, 63, 156, 231, 19, 192, 0, 134, 127, 193, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 191, 20, 46, 116, 63, 156, 231, 19, 192, 0, 131, 127, 193, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 191, 20, 46, 116, 63, 156, 231, 19, 192, 0, 134, 127, 193, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 191, 20, 46, 116, 63, 156, 231, 19, 192, 0, 134, 127, 193, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 191, 20, 46, 116, 63, 156, 231, 19, 192, 0, 1, 127, 193, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 191, 20, 46, 116, 63, 156, 231, 19, 192, 127, 0, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 191, 11, 87, 131, 63, 125, 245, 19, 192, 129, 0, 127, 63, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 191, 11, 87, 131, 63, 125, 245, 19, 192, 130, 0, 127, 193, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 191, 11, 87, 131, 63, 125, 245, 19, 192, 4, 127, 127, 63, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 191, 11, 87, 131, 63, 125, 245, 19, 192, 1, 127, 127, 63, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 191, 11, 87, 131, 63, 125, 245, 19, 192, 0, 1, 127, 193, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 191, 11, 87, 131, 63, 125, 245, 19, 192, 4, 127, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 191, 11, 87, 131, 63, 125, 245, 19, 192, 4, 127, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 191, 11, 87, 131, 63, 125, 245, 19, 192, 1, 127, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 191, 11, 87, 131, 63, 125, 245, 19, 192, 127, 0, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 191, 155, 14, 115, 63, 206, 160, 27, 192, 130, 0, 127, 193, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 191, 155, 14, 115, 63, 206, 160, 27, 192, 0, 134, 127, 193, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 191, 155, 14, 115, 63, 206, 160, 27, 192, 125, 129, 127, 63, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 191, 155, 14, 115, 63, 206, 160, 27, 192, 0, 134, 127, 193, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 191, 155, 14, 115, 63, 206, 160, 27, 192, 0, 134, 127, 193, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 191, 155, 14, 115, 63, 206, 160, 27, 192, 125, 129, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 191, 155, 14, 115, 63, 206, 160, 27, 192, 125, 129, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 191, 78, 199, 130, 63, 175, 174, 27, 192, 130, 0, 127, 193, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 191, 78, 199, 130, 63, 175, 174, 27, 192, 125, 129, 127, 63, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 191, 78, 199, 130, 63, 175, 174, 27, 192, 4, 127, 127, 63, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 191, 78, 199, 130, 63, 175, 174, 27, 192, 125, 129, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 191, 78, 199, 130, 63, 175, 174, 27, 192, 125, 129, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 191, 78, 199, 130, 63, 175, 174, 27, 192, 4, 127, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 191, 78, 199, 130, 63, 175, 174, 27, 192, 4, 127, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 240, 15, 55, 191, 196, 132, 1, 64, 242, 236, 121, 191, 131, 255, 127, 193, 122, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 240, 15, 55, 191, 196, 132, 1, 64, 242, 236, 121, 191, 0, 130, 127, 193, 122, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 240, 15, 55, 191, 196, 132, 1, 64, 242, 236, 121, 191, 0, 0, 127, 193, 122, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 168, 51, 55, 191, 240, 119, 4, 64, 133, 240, 121, 191, 131, 255, 127, 193, 120, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 168, 51, 55, 191, 240, 119, 4, 64, 133, 240, 121, 191, 255, 126, 127, 63, 0, 57, 120, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 168, 51, 55, 191, 240, 119, 4, 64, 133, 240, 121, 191, 0, 126, 127, 193, 0, 57, 120, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 168, 51, 55, 191, 240, 119, 4, 64, 133, 240, 121, 191, 0, 0, 127, 193, 120, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 143, 180, 5, 191, 196, 132, 1, 64, 242, 236, 121, 191, 0, 130, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 143, 180, 5, 191, 196, 132, 1, 64, 242, 236, 121, 191, 0, 0, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 143, 180, 5, 191, 196, 132, 1, 64, 242, 236, 121, 191, 126, 0, 127, 63, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 159, 5, 191, 224, 135, 4, 64, 109, 241, 121, 191, 255, 126, 127, 63, 0, 57, 86, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 159, 5, 191, 224, 135, 4, 64, 109, 241, 121, 191, 0, 126, 127, 193, 0, 57, 86, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 159, 5, 191, 224, 135, 4, 64, 109, 241, 121, 191, 0, 0, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 159, 5, 191, 224, 135, 4, 64, 109, 241, 121, 191, 126, 0, 127, 63, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 16, 15, 55, 191, 136, 142, 1, 64, 35, 66, 73, 191, 131, 255, 127, 193, 122, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 16, 15, 55, 191, 136, 142, 1, 64, 35, 66, 73, 191, 131, 255, 127, 193, 122, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 16, 15, 55, 191, 136, 142, 1, 64, 35, 66, 73, 191, 0, 130, 127, 193, 122, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 16, 15, 55, 191, 136, 142, 1, 64, 35, 66, 73, 191, 0, 130, 127, 193, 122, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 200, 50, 55, 191, 180, 129, 4, 64, 182, 69, 73, 191, 131, 255, 127, 193, 120, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 200, 50, 55, 191, 180, 129, 4, 64, 182, 69, 73, 191, 131, 255, 127, 193, 120, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 200, 50, 55, 191, 180, 129, 4, 64, 182, 69, 73, 191, 255, 126, 127, 63, 0, 57, 120, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 200, 50, 55, 191, 180, 129, 4, 64, 182, 69, 73, 191, 0, 126, 127, 63, 0, 57, 120, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 175, 179, 5, 191, 136, 142, 1, 64, 35, 66, 73, 191, 255, 132, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 175, 179, 5, 191, 136, 142, 1, 64, 35, 66, 73, 191, 130, 130, 127, 63, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 175, 179, 5, 191, 136, 142, 1, 64, 35, 66, 73, 191, 0, 130, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 175, 179, 5, 191, 136, 142, 1, 64, 35, 66, 73, 191, 0, 130, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 175, 179, 5, 191, 136, 142, 1, 64, 35, 66, 73, 191, 126, 0, 127, 63, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 173, 158, 5, 191, 164, 145, 4, 64, 158, 70, 73, 191, 255, 126, 127, 63, 0, 57, 86, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 173, 158, 5, 191, 164, 145, 4, 64, 158, 70, 73, 191, 0, 126, 127, 63, 0, 57, 86, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 173, 158, 5, 191, 164, 145, 4, 64, 158, 70, 73, 191, 130, 130, 127, 63, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 173, 158, 5, 191, 164, 145, 4, 64, 158, 70, 73, 191, 2, 125, 127, 63, 0, 57, 86, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 173, 158, 5, 191, 164, 145, 4, 64, 158, 70, 73, 191, 126, 0, 127, 63, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 190, 14, 55, 191, 83, 148, 1, 64, 178, 185, 31, 191, 131, 255, 127, 193, 122, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 190, 14, 55, 191, 83, 148, 1, 64, 178, 185, 31, 191, 0, 130, 127, 193, 122, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 190, 14, 55, 191, 83, 148, 1, 64, 178, 185, 31, 191, 0, 0, 127, 193, 122, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 118, 50, 55, 191, 127, 135, 4, 64, 69, 189, 31, 191, 131, 255, 127, 193, 120, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 118, 50, 55, 191, 127, 135, 4, 64, 69, 189, 31, 191, 0, 126, 127, 63, 0, 57, 120, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 118, 50, 55, 191, 127, 135, 4, 64, 69, 189, 31, 191, 0, 0, 127, 193, 120, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 236, 160, 189, 190, 83, 148, 1, 64, 178, 185, 31, 191, 255, 132, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 236, 160, 189, 190, 83, 148, 1, 64, 178, 185, 31, 191, 0, 130, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 236, 160, 189, 190, 83, 148, 1, 64, 178, 185, 31, 191, 0, 0, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 236, 160, 189, 190, 83, 148, 1, 64, 178, 185, 31, 191, 0, 0, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 232, 118, 189, 190, 111, 151, 4, 64, 45, 190, 31, 191, 0, 126, 127, 63, 0, 57, 86, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 232, 118, 189, 190, 111, 151, 4, 64, 45, 190, 31, 191, 0, 0, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 232, 118, 189, 190, 111, 151, 4, 64, 45, 190, 31, 191, 0, 0, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 232, 118, 189, 190, 111, 151, 4, 64, 45, 190, 31, 191, 2, 125, 127, 63, 0, 57, 86, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 64, 64, 0, 0, 0, 0, 0, 0, 128, 191, 125, 131, 127, 63, 0, 57, 0, 58, 0, 1, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 0, 0, 64, 64, 0, 0, 0, 0, 0, 0, 128, 191, 126, 218, 127, 63, 0, 57, 0, 58, 0, 1, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 191, 129, 0, 127, 63, 0, 57, 0, 56, 0, 1, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 0, 0, 64, 64, 233, 97, 66, 61, 0, 133, 116, 191, 255, 1, 127, 193, 0, 59, 0, 56, 1, 0, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 0, 0, 0, 0, 233, 97, 66, 61, 0, 133, 116, 191, 129, 0, 127, 63, 0, 57, 0, 56, 1, 0, 0, 0, 255, 127, 255, 127, 0, 0, 0, 0, 0, 0, 64, 64, 196, 132, 1, 64, 136, 9, 131, 191, 30, 127, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 64, 64, 196, 132, 1, 64, 136, 9, 131, 191, 126, 130, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 64, 64, 196, 132, 1, 64, 136, 9, 131, 191, 125, 131, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 64, 64, 196, 132, 1, 64, 136, 9, 131, 191, 126, 218, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 196, 132, 1, 64, 136, 9, 131, 191, 129, 0, 127, 63, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 196, 132, 1, 64, 136, 9, 131, 191, 130, 130, 127, 63, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 196, 132, 1, 64, 136, 9, 131, 191, 30, 127, 127, 63, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 196, 132, 1, 64, 136, 9, 131, 191, 126, 130, 127, 63, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 64, 64, 196, 132, 1, 64, 242, 236, 121, 191, 255, 1, 127, 193, 0, 59, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 64, 64, 196, 132, 1, 64, 242, 236, 121, 191, 0, 0, 127, 193, 0, 59, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 196, 132, 1, 64, 242, 236, 121, 191, 129, 0, 127, 63, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 196, 132, 1, 64, 242, 236, 121, 191, 0, 0, 127, 193, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 196, 132, 1, 64, 242, 236, 121, 191, 0, 0, 127, 193, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 63, 132, 141, 117, 63, 12, 67, 237, 191, 0, 131, 127, 193, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 63, 132, 141, 117, 63, 12, 67, 237, 191, 125, 129, 127, 63, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 63, 132, 141, 117, 63, 12, 67, 237, 191, 125, 130, 127, 63, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 63, 132, 141, 117, 63, 12, 67, 237, 191, 127, 0, 127, 63, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 63, 132, 141, 117, 63, 12, 67, 237, 191, 129, 0, 127, 193, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 63, 132, 141, 117, 63, 12, 67, 237, 191, 131, 130, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 63, 132, 141, 117, 63, 12, 67, 237, 191, 0, 131, 127, 193, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 63, 132, 141, 117, 63, 12, 67, 237, 191, 125, 129, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 63, 194, 6, 132, 63, 207, 94, 237, 191, 125, 129, 127, 63, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 63, 194, 6, 132, 63, 207, 94, 237, 191, 1, 127, 127, 63, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 63, 194, 6, 132, 63, 207, 94, 237, 191, 125, 130, 127, 63, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 63, 194, 6, 132, 63, 207, 94, 237, 191, 127, 0, 127, 63, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 63, 194, 6, 132, 63, 207, 94, 237, 191, 129, 0, 127, 193, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 63, 194, 6, 132, 63, 207, 94, 237, 191, 131, 130, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 63, 194, 6, 132, 63, 207, 94, 237, 191, 125, 129, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 63, 194, 6, 132, 63, 207, 94, 237, 191, 1, 127, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 122, 43, 67, 64, 173, 63, 65, 61, 187, 116, 116, 191, 255, 1, 127, 193, 0, 59, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 122, 43, 67, 64, 173, 63, 65, 61, 187, 116, 116, 191, 126, 1, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 122, 43, 67, 64, 208, 29, 145, 185, 187, 239, 127, 191, 125, 131, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 122, 43, 67, 64, 208, 29, 145, 185, 187, 239, 127, 191, 126, 1, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 161, 61, 66, 64, 179, 194, 3, 64, 70, 6, 131, 191, 126, 130, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 161, 61, 66, 64, 179, 194, 3, 64, 70, 6, 131, 191, 0, 126, 127, 193, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 161, 61, 66, 64, 179, 194, 3, 64, 70, 6, 131, 191, 125, 131, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 161, 61, 66, 64, 179, 194, 3, 64, 70, 6, 131, 191, 126, 1, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 176, 4, 64, 235, 12, 131, 191, 129, 0, 127, 63, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 176, 4, 64, 235, 12, 131, 191, 0, 126, 127, 193, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 176, 4, 64, 235, 12, 131, 191, 130, 130, 127, 63, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 176, 4, 64, 235, 12, 131, 191, 126, 130, 127, 63, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 176, 4, 64, 235, 12, 131, 191, 0, 126, 127, 193, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 196, 62, 66, 64, 140, 193, 3, 64, 39, 230, 121, 191, 255, 1, 127, 193, 0, 59, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 196, 62, 66, 64, 140, 193, 3, 64, 39, 230, 121, 191, 0, 0, 127, 193, 0, 59, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 196, 62, 66, 64, 140, 193, 3, 64, 39, 230, 121, 191, 0, 126, 127, 193, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 196, 62, 66, 64, 140, 193, 3, 64, 39, 230, 121, 191, 126, 1, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 176, 4, 64, 184, 243, 121, 191, 129, 0, 127, 63, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 176, 4, 64, 184, 243, 121, 191, 0, 126, 127, 193, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 176, 4, 64, 184, 243, 121, 191, 0, 0, 127, 193, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 176, 4, 64, 184, 243, 121, 191, 0, 0, 127, 193, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 176, 4, 64, 184, 243, 121, 191, 0, 126, 127, 193, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 202, 177, 40, 64, 54, 16, 134, 62, 219, 49, 236, 191, 125, 129, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 202, 177, 40, 64, 54, 16, 134, 62, 219, 49, 236, 191, 125, 130, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 202, 177, 40, 64, 54, 16, 134, 62, 219, 49, 236, 191, 126, 218, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 16, 134, 62, 219, 49, 236, 191, 129, 0, 127, 63, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 16, 134, 62, 219, 49, 236, 191, 131, 130, 127, 63, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 16, 134, 62, 219, 49, 236, 191, 125, 129, 127, 63, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 16, 134, 62, 219, 49, 236, 191, 125, 130, 127, 63, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 202, 177, 40, 64, 102, 203, 224, 63, 255, 111, 238, 191, 125, 129, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 202, 177, 40, 64, 102, 203, 224, 63, 255, 111, 238, 191, 30, 127, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 202, 177, 40, 64, 102, 203, 224, 63, 255, 111, 238, 191, 125, 130, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 202, 177, 40, 64, 102, 203, 224, 63, 255, 111, 238, 191, 126, 218, 127, 63, 0, 57, 0, 58, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 203, 224, 63, 255, 111, 238, 191, 129, 0, 127, 63, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 203, 224, 63, 255, 111, 238, 191, 131, 130, 127, 63, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 203, 224, 63, 255, 111, 238, 191, 125, 129, 127, 63, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 203, 224, 63, 255, 111, 238, 191, 125, 129, 127, 63, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 203, 224, 63, 255, 111, 238, 191, 30, 127, 127, 63, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 203, 224, 63, 255, 111, 238, 191, 125, 130, 127, 63, 0, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 63, 20, 46, 116, 63, 156, 231, 19, 192, 0, 131, 127, 193, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 63, 20, 46, 116, 63, 156, 231, 19, 192, 0, 134, 127, 193, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 63, 20, 46, 116, 63, 156, 231, 19, 192, 127, 0, 127, 63, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 63, 20, 46, 116, 63, 156, 231, 19, 192, 126, 0, 127, 193, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 63, 20, 46, 116, 63, 156, 231, 19, 192, 129, 0, 127, 193, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 63, 20, 46, 116, 63, 156, 231, 19, 192, 0, 131, 127, 193, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 63, 20, 46, 116, 63, 156, 231, 19, 192, 0, 134, 127, 193, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 63, 20, 46, 116, 63, 156, 231, 19, 192, 0, 134, 127, 193, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 63, 20, 46, 116, 63, 156, 231, 19, 192, 0, 1, 127, 193, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 63, 11, 87, 131, 63, 125, 245, 19, 192, 4, 127, 127, 63, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 63, 11, 87, 131, 63, 125, 245, 19, 192, 1, 127, 127, 63, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 63, 11, 87, 131, 63, 125, 245, 19, 192, 127, 0, 127, 63, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 63, 11, 87, 131, 63, 125, 245, 19, 192, 126, 0, 127, 193, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 63, 11, 87, 131, 63, 125, 245, 19, 192, 129, 0, 127, 193, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 63, 11, 87, 131, 63, 125, 245, 19, 192, 0, 1, 127, 193, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 63, 11, 87, 131, 63, 125, 245, 19, 192, 4, 127, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 63, 11, 87, 131, 63, 125, 245, 19, 192, 4, 127, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 63, 11, 87, 131, 63, 125, 245, 19, 192, 1, 127, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 63, 155, 14, 115, 63, 206, 160, 27, 192, 0, 134, 127, 193, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 63, 155, 14, 115, 63, 206, 160, 27, 192, 125, 129, 127, 63, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 63, 155, 14, 115, 63, 206, 160, 27, 192, 126, 0, 127, 193, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 63, 155, 14, 115, 63, 206, 160, 27, 192, 0, 134, 127, 193, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 63, 155, 14, 115, 63, 206, 160, 27, 192, 0, 134, 127, 193, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 63, 155, 14, 115, 63, 206, 160, 27, 192, 125, 129, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 63, 155, 14, 115, 63, 206, 160, 27, 192, 125, 129, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 63, 78, 199, 130, 63, 175, 174, 27, 192, 125, 129, 127, 63, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 63, 78, 199, 130, 63, 175, 174, 27, 192, 4, 127, 127, 63, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 76, 220, 43, 63, 78, 199, 130, 63, 175, 174, 27, 192, 126, 0, 127, 193, 0, 57, 125, 57, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 63, 78, 199, 130, 63, 175, 174, 27, 192, 125, 129, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 63, 78, 199, 130, 63, 175, 174, 27, 192, 125, 129, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 63, 78, 199, 130, 63, 175, 174, 27, 192, 4, 127, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 45, 189, 10, 63, 78, 199, 130, 63, 175, 174, 27, 192, 4, 127, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 87, 131, 63, 125, 245, 19, 192, 129, 0, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 87, 131, 63, 125, 245, 19, 192, 0, 1, 127, 193, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 87, 131, 63, 125, 245, 19, 192, 4, 127, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 46, 116, 63, 156, 231, 19, 192, 129, 0, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 46, 116, 63, 156, 231, 19, 192, 0, 134, 127, 193, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 46, 116, 63, 156, 231, 19, 192, 0, 1, 127, 193, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 199, 130, 63, 175, 174, 27, 192, 129, 0, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 199, 130, 63, 175, 174, 27, 192, 125, 129, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 199, 130, 63, 175, 174, 27, 192, 4, 127, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 155, 14, 115, 63, 206, 160, 27, 192, 129, 0, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 155, 14, 115, 63, 206, 160, 27, 192, 0, 134, 127, 193, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 155, 14, 115, 63, 206, 160, 27, 192, 125, 129, 127, 63, 0, 57, 130, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 240, 15, 55, 63, 196, 132, 1, 64, 242, 236, 121, 191, 0, 0, 127, 193, 122, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 240, 15, 55, 63, 196, 132, 1, 64, 242, 236, 121, 191, 0, 130, 127, 193, 122, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 240, 15, 55, 63, 196, 132, 1, 64, 242, 236, 121, 191, 125, 255, 127, 193, 122, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 168, 51, 55, 63, 240, 119, 4, 64, 133, 240, 121, 191, 0, 0, 127, 193, 120, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 168, 51, 55, 63, 240, 119, 4, 64, 133, 240, 121, 191, 0, 126, 127, 193, 0, 57, 120, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 168, 51, 55, 63, 240, 119, 4, 64, 133, 240, 121, 191, 1, 126, 127, 63, 0, 57, 120, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 168, 51, 55, 63, 240, 119, 4, 64, 133, 240, 121, 191, 125, 255, 127, 193, 120, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 143, 180, 5, 63, 196, 132, 1, 64, 242, 236, 121, 191, 130, 0, 127, 63, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 143, 180, 5, 63, 196, 132, 1, 64, 242, 236, 121, 191, 0, 0, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 143, 180, 5, 63, 196, 132, 1, 64, 242, 236, 121, 191, 0, 130, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 159, 5, 63, 224, 135, 4, 64, 109, 241, 121, 191, 130, 0, 127, 63, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 159, 5, 63, 224, 135, 4, 64, 109, 241, 121, 191, 0, 0, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 159, 5, 63, 224, 135, 4, 64, 109, 241, 121, 191, 0, 126, 127, 193, 0, 57, 86, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 141, 159, 5, 63, 224, 135, 4, 64, 109, 241, 121, 191, 1, 126, 127, 63, 0, 57, 86, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 16, 15, 55, 63, 136, 142, 1, 64, 35, 66, 73, 191, 0, 130, 127, 193, 122, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 16, 15, 55, 63, 136, 142, 1, 64, 35, 66, 73, 191, 0, 130, 127, 193, 122, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 16, 15, 55, 63, 136, 142, 1, 64, 35, 66, 73, 191, 125, 255, 127, 193, 122, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 16, 15, 55, 63, 136, 142, 1, 64, 35, 66, 73, 191, 125, 255, 127, 193, 122, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 200, 50, 55, 63, 180, 129, 4, 64, 182, 69, 73, 191, 0, 126, 127, 63, 0, 57, 120, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 200, 50, 55, 63, 180, 129, 4, 64, 182, 69, 73, 191, 1, 126, 127, 63, 0, 57, 120, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 200, 50, 55, 63, 180, 129, 4, 64, 182, 69, 73, 191, 125, 255, 127, 193, 120, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 200, 50, 55, 63, 180, 129, 4, 64, 182, 69, 73, 191, 125, 255, 127, 193, 120, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 175, 179, 5, 63, 136, 142, 1, 64, 35, 66, 73, 191, 130, 0, 127, 63, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 175, 179, 5, 63, 136, 142, 1, 64, 35, 66, 73, 191, 0, 130, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 175, 179, 5, 63, 136, 142, 1, 64, 35, 66, 73, 191, 0, 130, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 175, 179, 5, 63, 136, 142, 1, 64, 35, 66, 73, 191, 126, 130, 127, 63, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 175, 179, 5, 63, 136, 142, 1, 64, 35, 66, 73, 191, 1, 132, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 173, 158, 5, 63, 164, 145, 4, 64, 158, 70, 73, 191, 130, 0, 127, 63, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 173, 158, 5, 63, 164, 145, 4, 64, 158, 70, 73, 191, 254, 125, 127, 63, 0, 57, 86, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 173, 158, 5, 63, 164, 145, 4, 64, 158, 70, 73, 191, 126, 130, 127, 63, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 173, 158, 5, 63, 164, 145, 4, 64, 158, 70, 73, 191, 0, 126, 127, 63, 0, 57, 86, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 173, 158, 5, 63, 164, 145, 4, 64, 158, 70, 73, 191, 1, 126, 127, 63, 0, 57, 86, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 190, 14, 55, 63, 83, 148, 1, 64, 178, 185, 31, 191, 0, 0, 127, 193, 122, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 190, 14, 55, 63, 83, 148, 1, 64, 178, 185, 31, 191, 0, 130, 127, 193, 122, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 190, 14, 55, 63, 83, 148, 1, 64, 178, 185, 31, 191, 125, 255, 127, 193, 122, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 118, 50, 55, 63, 127, 135, 4, 64, 69, 189, 31, 191, 0, 0, 127, 193, 120, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 118, 50, 55, 63, 127, 135, 4, 64, 69, 189, 31, 191, 0, 126, 127, 63, 0, 57, 120, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 118, 50, 55, 63, 127, 135, 4, 64, 69, 189, 31, 191, 125, 255, 127, 193, 120, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 236, 160, 189, 62, 83, 148, 1, 64, 178, 185, 31, 191, 0, 0, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 236, 160, 189, 62, 83, 148, 1, 64, 178, 185, 31, 191, 0, 0, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 236, 160, 189, 62, 83, 148, 1, 64, 178, 185, 31, 191, 0, 130, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 236, 160, 189, 62, 83, 148, 1, 64, 178, 185, 31, 191, 1, 132, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 232, 118, 189, 62, 111, 151, 4, 64, 45, 190, 31, 191, 254, 125, 127, 63, 0, 57, 86, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 232, 118, 189, 62, 111, 151, 4, 64, 45, 190, 31, 191, 0, 0, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 232, 118, 189, 62, 111, 151, 4, 64, 45, 190, 31, 191, 0, 0, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 232, 118, 189, 62, 111, 151, 4, 64, 45, 190, 31, 191, 0, 126, 127, 63, 0, 57, 86, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 149, 47, 1, 64, 166, 66, 73, 191, 129, 0, 127, 63, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 149, 47, 1, 64, 166, 66, 73, 191, 255, 132, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 149, 47, 1, 64, 166, 66, 73, 191, 130, 130, 127, 63, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 149, 47, 1, 64, 166, 66, 73, 191, 126, 130, 127, 63, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 149, 47, 1, 64, 166, 66, 73, 191, 1, 132, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 177, 50, 4, 64, 33, 71, 73, 191, 129, 0, 127, 63, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 177, 50, 4, 64, 33, 71, 73, 191, 254, 125, 127, 63, 0, 57, 86, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 177, 50, 4, 64, 33, 71, 73, 191, 130, 130, 127, 63, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 177, 50, 4, 64, 33, 71, 73, 191, 126, 130, 127, 63, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 177, 50, 4, 64, 33, 71, 73, 191, 2, 125, 127, 63, 0, 57, 86, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 53, 1, 64, 53, 186, 31, 191, 129, 0, 127, 63, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 53, 1, 64, 53, 186, 31, 191, 255, 132, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 53, 1, 64, 53, 186, 31, 191, 0, 0, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 53, 1, 64, 53, 186, 31, 191, 0, 0, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 53, 1, 64, 53, 186, 31, 191, 1, 132, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 124, 56, 4, 64, 175, 190, 31, 191, 129, 0, 127, 63, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 124, 56, 4, 64, 175, 190, 31, 191, 254, 125, 127, 63, 0, 57, 86, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 124, 56, 4, 64, 175, 190, 31, 191, 0, 0, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 124, 56, 4, 64, 175, 190, 31, 191, 0, 0, 127, 193, 86, 57, 0, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 124, 56, 4, 64, 175, 190, 31, 191, 2, 125, 127, 63, 0, 57, 86, 56, 1, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0 ), +"array_index_data": PoolByteArray( 132, 0, 32, 0, 5, 0, 132, 0, 166, 0, 32, 0, 0, 0, 40, 0, 3, 0, 0, 0, 37, 0, 40, 0, 4, 0, 28, 0, 1, 0, 4, 0, 30, 0, 28, 0, 13, 0, 46, 0, 11, 0, 13, 0, 48, 0, 46, 0, 6, 0, 193, 0, 133, 0, 6, 0, 43, 0, 193, 0, 174, 0, 31, 0, 165, 0, 31, 0, 81, 0, 34, 0, 87, 0, 31, 0, 174, 0, 31, 0, 87, 0, 81, 0, 27, 0, 33, 0, 25, 0, 27, 0, 29, 0, 33, 0, 2, 0, 36, 0, 8, 0, 2, 0, 26, 0, 36, 0, 7, 0, 82, 0, 78, 0, 7, 0, 35, 0, 82, 0, 12, 0, 183, 0, 14, 0, 12, 0, 39, 0, 183, 0, 21, 0, 42, 0, 19, 0, 21, 0, 191, 0, 42, 0, 18, 0, 38, 0, 10, 0, 18, 0, 41, 0, 38, 0, 15, 0, 194, 0, 23, 0, 15, 0, 184, 0, 194, 0, 57, 0, 232, 0, 51, 0, 57, 0, 228, 0, 232, 0, 24, 0, 52, 0, 16, 0, 24, 0, 61, 0, 52, 0, 20, 0, 60, 0, 22, 0, 20, 0, 56, 0, 60, 0, 9, 0, 53, 0, 17, 0, 9, 0, 44, 0, 53, 0, 67, 0, 70, 0, 64, 0, 67, 0, 72, 0, 70, 0, 55, 0, 75, 0, 59, 0, 55, 0, 71, 0, 75, 0, 45, 0, 69, 0, 54, 0, 45, 0, 62, 0, 69, 0, 49, 0, 63, 0, 47, 0, 49, 0, 65, 0, 63, 0, 50, 0, 237, 0, 66, 0, 50, 0, 231, 0, 237, 0, 74, 0, 229, 0, 58, 0, 74, 0, 235, 0, 229, 0, 68, 0, 234, 0, 73, 0, 68, 0, 238, 0, 234, 0, 104, 0, 112, 0, 97, 0, 104, 0, 118, 0, 112, 0, 86, 0, 96, 0, 80, 0, 86, 0, 103, 0, 96, 0, 88, 0, 139, 0, 84, 0, 88, 0, 176, 0, 139, 0, 79, 0, 91, 0, 76, 0, 79, 0, 95, 0, 91, 0, 85, 0, 107, 0, 89, 0, 85, 0, 102, 0, 107, 0, 77, 0, 101, 0, 83, 0, 77, 0, 93, 0, 101, 0, 113, 0, 116, 0, 110, 0, 113, 0, 119, 0, 116, 0, 94, 0, 108, 0, 90, 0, 94, 0, 111, 0, 108, 0, 106, 0, 48, 1, 121, 0, 106, 0, 38, 1, 48, 1, 92, 0, 115, 0, 100, 0, 92, 0, 109, 0, 115, 0, 120, 0, 42, 1, 117, 0, 120, 0, 47, 1, 42, 1, 99, 0, 36, 1, 105, 0, 99, 0, 31, 1, 36, 1, 114, 0, 30, 1, 98, 0, 114, 0, 40, 1, 30, 1, 134, 0, 160, 0, 167, 0, 134, 0, 128, 0, 160, 0, 123, 0, 188, 0, 180, 0, 123, 0, 130, 0, 188, 0, 126, 0, 131, 0, 137, 0, 126, 0, 124, 0, 131, 0, 129, 0, 158, 0, 162, 0, 129, 0, 122, 0, 158, 0, 146, 0, 195, 0, 200, 0, 146, 0, 140, 0, 195, 0, 127, 0, 193, 0, 186, 0, 127, 0, 133, 0, 193, 0, 131, 0, 181, 0, 189, 0, 131, 0, 124, 0, 181, 0, 161, 0, 177, 0, 168, 0, 251, 0, 171, 0, 243, 0, 161, 0, 251, 0, 177, 0, 251, 0, 161, 0, 171, 0, 159, 0, 172, 0, 163, 0, 159, 0, 157, 0, 172, 0, 125, 0, 169, 0, 156, 0, 125, 0, 135, 0, 169, 0, 137, 0, 164, 0, 173, 0, 137, 0, 131, 0, 164, 0, 136, 0, 242, 0, 170, 0, 136, 0, 239, 0, 242, 0, 141, 0, 183, 0, 178, 0, 141, 0, 147, 0, 183, 0, 154, 0, 185, 0, 192, 0, 154, 0, 148, 0, 185, 0, 150, 0, 179, 0, 187, 0, 150, 0, 142, 0, 179, 0, 145, 0, 190, 0, 182, 0, 145, 0, 153, 0, 190, 0, 209, 0, 232, 0, 228, 0, 209, 0, 203, 0, 232, 0, 152, 0, 199, 0, 208, 0, 152, 0, 144, 0, 199, 0, 149, 0, 212, 0, 205, 0, 149, 0, 155, 0, 212, 0, 143, 0, 206, 0, 197, 0, 143, 0, 151, 0, 206, 0, 218, 0, 220, 0, 223, 0, 218, 0, 214, 0, 220, 0, 204, 0, 226, 0, 221, 0, 204, 0, 211, 0, 226, 0, 198, 0, 222, 0, 215, 0, 198, 0, 207, 0, 222, 0, 201, 0, 213, 0, 216, 0, 201, 0, 196, 0, 213, 0, 227, 0, 236, 0, 233, 0, 227, 0, 230, 0, 236, 0, 202, 0, 237, 0, 231, 0, 202, 0, 217, 0, 237, 0, 225, 0, 229, 0, 235, 0, 225, 0, 210, 0, 229, 0, 219, 0, 234, 0, 238, 0, 219, 0, 224, 0, 234, 0, 13, 1, 19, 1, 28, 1, 13, 1, 1, 1, 19, 1, 252, 0, 2, 1, 14, 1, 252, 0, 244, 0, 2, 1, 250, 0, 138, 0, 175, 0, 250, 0, 247, 0, 138, 0, 245, 0, 0, 1, 4, 1, 245, 0, 241, 0, 0, 1, 246, 0, 10, 1, 5, 1, 246, 0, 249, 0, 10, 1, 240, 0, 7, 1, 254, 0, 240, 0, 248, 0, 7, 1, 18, 1, 22, 1, 27, 1, 18, 1, 15, 1, 22, 1, 3, 1, 17, 1, 20, 1, 3, 1, 255, 0, 17, 1, 11, 1, 45, 1, 35, 1, 11, 1, 25, 1, 45, 1, 253, 0, 23, 1, 16, 1, 253, 0, 6, 1, 23, 1, 29, 1, 44, 1, 39, 1, 29, 1, 34, 1, 44, 1, 26, 1, 41, 1, 46, 1, 26, 1, 21, 1, 41, 1, 8, 1, 37, 1, 32, 1, 8, 1, 12, 1, 37, 1, 24, 1, 33, 1, 43, 1, 24, 1, 9, 1, 33, 1 ), +"blend_shape_data": [ ], +"format": 2194903, +"index_count": 486, +"material": ExtResource( 30 ), +"primitive": 4, +"skeleton_aabb": [ AABB( -3, 0, -1, 6, 0.0474567, 0.0448456 ), AABB( -3.04953, -0.000276788, -2.43254, 6.09906, 2.07353, 1.80861 ) ], +"vertex_count": 305 +} +surfaces/3 = { +"aabb": AABB( 2.42225, -0.921745, 0.867434, 0.273896, 0.117627, 0.0169171 ), +"array_data": PoolByteArray( 24, 121, 43, 64, 130, 247, 107, 191, 45, 16, 94, 63, 0, 241, 19, 146, 80, 54, 125, 33, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 154, 141, 44, 64, 182, 218, 77, 191, 219, 100, 98, 63, 0, 241, 18, 146, 200, 54, 205, 33, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 170, 70, 28, 64, 238, 93, 80, 191, 89, 8, 98, 63, 0, 241, 16, 145, 190, 54, 77, 40, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0, 22, 6, 27, 64, 59, 74, 105, 191, 187, 114, 94, 63, 0, 241, 17, 145, 90, 54, 84, 40, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 0 ), +"array_index_data": PoolByteArray( 3, 0, 1, 0, 0, 0, 3, 0, 2, 0, 1, 0 ), +"blend_shape_data": [ ], +"format": 2194903, +"index_count": 6, +"material": ExtResource( 28 ), +"primitive": 4, +"skeleton_aabb": [ AABB( 2.42225, -0.921745, 0.867434, 0.273896, 0.117627, 0.0169171 ) ], +"vertex_count": 4 +} + +[sub_resource type="Skin" id=15] +resource_name = "Skin" +bind_count = 2 +bind/0/name = "Bone" +bind/0/bone = -1 +bind/0/pose = Transform( 1, -2.37049e-17, 9.6284e-17, 9.6284e-17, 0.464255, -0.885702, -2.37049e-17, 0.885702, 0.464255, -1.18524e-17, 0.232127, 0.442851 ) +bind/1/name = "Bone.001" +bind/1/bone = -1 +bind/1/pose = Transform( 1, 1.0455e-16, -1.03581e-16, -1.03581e-16, 0.999957, 0.00931868, 1.0455e-16, -0.00931871, 0.999957, -2.11194e-16, -0.00786397, 0.986553 ) + +[sub_resource type="Animation" id=18] +resource_name = "open" +length = 1.375 +tracks/0/type = "transform" +tracks/0/path = NodePath("Armature/Skeleton:Bone.001") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/keys = PoolRealArray( 0, 1, 0, 0, 0, 2.23517e-07, 4.96308e-23, -1.65436e-23, 1, 1, 1, 1, 0.733333, 1, -1.32349e-23, 0, 0, 2.23517e-07, 2.97785e-23, -3.6396e-23, 1, 1, 1, 1, 0.8, 1, 1.32349e-23, 0, 0, 0.000536829, -5.57947e-20, 5.31224e-22, 1, 1, 1, 1, 0.866667, 1, 1.32349e-23, 0, 0, 0.00666956, -6.93978e-19, 6.78266e-21, 0.999978, 1, 1, 1, 0.933333, 1, 1.98523e-23, 0, 0, 0.00691492, -7.1439e-19, 1.11296e-18, 0.999976, 1, 1, 1, 1, 1, 0, 0, 0, -0.0209311, 2.18462e-18, 1.36412e-18, 0.999781, 1, 1, 1, 1.13333, 1, 2.64698e-23, 0, 0, -0.133197, 1.38725e-17, 2.3674e-18, 0.99109, 1, 1, 1, 1.2, 1, 0, 0, 0, -0.176583, 1.83895e-17, 2.7511e-18, 0.984286, 1, 1, 1, 1.26667, 1, 0, 0, 0, -0.188091, 1.94818e-17, -1.98374e-17, 0.982152, 1, 1, 1, 1.33333, 1, 0, 0, 0, -0.179514, 1.85885e-17, -1.99994e-17, 0.983755, 1, 1, 1, 1.375, 1, 0, 0, 0, -0.17602, 1.82322e-17, -1.8403e-17, 0.984387, 1, 1, 1 ) +tracks/1/type = "transform" +tracks/1/path = NodePath("Armature/Skeleton:Bone") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/keys = PoolRealArray( 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0.0666667, 1, -6.61744e-24, 0.0135192, 0.0257914, -0.000120252, 3.30872e-24, 3.9798e-28, 1, 1, 1, 1, 0.133333, 1, -6.61744e-24, 0.104997, 0.200312, -0.000934229, 1.65436e-24, 1.54558e-27, 1, 1, 1, 1, 0.2, 1, 0, 0.281644, 0.537318, -0.00250597, 1.64606e-24, 3.31286e-24, 0.999997, 1, 1, 1, 0.533333, 1, 6.61744e-24, 1.44067, 2.74849, -0.0128188, 3.30845e-24, 4.24138e-26, 0.999918, 1, 1, 1, 0.6, 1, -3.15687e-17, 1.53215, 2.92301, -0.0136327, -5.29672e-19, 1.30401e-19, 0.999907, 1, 1, 1, 0.666667, 1, -7.89217e-17, 1.52453, 2.90849, -0.0126824, -1.3242e-18, 3.26009e-19, 0.99992, 1, 1, 1, 0.733333, 1, -7.89217e-17, 1.44559, 2.75789, -0.00713115, -1.3242e-18, 3.2602e-19, 0.999975, 1, 1, 1, 0.8, 1, -7.11146e-17, 1.39069, 2.65315, 0.0011538, 1.65436e-24, -1.9088e-27, 0.999999, 1, 1, 1, 0.866667, 1, -7.11146e-17, 1.37935, 2.63151, 0.00951992, 3.34007e-24, 3.27707e-24, 0.999955, 1, 1, 1, 0.933333, 1, -7.03628e-17, 1.37829, 2.6295, 0.0118196, 1.19324e-18, -2.93764e-19, 0.99993, 1, 1, 1, 1, 1, -7.03628e-17, 1.38034, 2.6334, 0.00718296, 1.19334e-18, -2.93798e-19, 0.999974, 1, 1, 1, 1.13333, 1, -7.03628e-17, 1.38858, 2.64912, -0.0114724, 1.19337e-18, -2.93805e-19, 0.999934, 1, 1, 1, 1.2, 1, -7.03628e-17, 1.3918, 2.65526, -0.0187662, 1.19325e-18, -2.93761e-19, 0.999824, 1, 1, 1, 1.26667, 1, -7.11146e-17, 1.39276, 2.6571, -0.0187811, -2.01756e-18, 4.96713e-19, 0.999824, 1, 1, 1, 1.33333, 1, -7.11146e-17, 1.39276, 2.6571, -0.00543263, -2.0176e-18, 4.9673e-19, 0.999985, 1, 1, 1, 1.375, 1, -7.11146e-17, 1.39276, 2.6571, 0, 0, 0, 1, 1, 1, 1 ) +tracks/2/type = "method" +tracks/2/path = NodePath("../../../../..") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/keys = { +"times": PoolRealArray( 1.1 ), +"transitions": PoolRealArray( 1 ), +"values": [ { +"args": [ ], +"method": "_tb_sound_play" +} ] +} + +[sub_resource type="StyleBoxEmpty" id=22] + +[sub_resource type="StyleBoxEmpty" id=23] + +[sub_resource type="StyleBoxEmpty" id=31] + +[sub_resource type="Animation" id=8] +resource_name = "Open" +length = 0.6 +step = 0.05 +tracks/0/type = "value" +tracks/0/path = NodePath("backpack:visible") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/keys = { +"times": PoolRealArray( 0, 0.05, 0.6 ), +"transitions": PoolRealArray( 1, 1, 1 ), +"update": 1, +"values": [ false, true, true ] +} +tracks/1/type = "value" +tracks/1/path = NodePath("menu:visible") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/keys = { +"times": PoolRealArray( 0.15, 0.3, 0.6 ), +"transitions": PoolRealArray( 1, 1, 1 ), +"update": 1, +"values": [ false, true, true ] +} +tracks/2/type = "value" +tracks/2/path = NodePath("backpack:modulate") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/keys = { +"times": PoolRealArray( 0.05, 0.15 ), +"transitions": PoolRealArray( 1, 1 ), +"update": 0, +"values": [ Color( 1, 1, 1, 0 ), Color( 1, 1, 1, 1 ) ] +} +tracks/3/type = "value" +tracks/3/path = NodePath("menu:modulate") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/keys = { +"times": PoolRealArray( 0.35, 0.6 ), +"transitions": PoolRealArray( 1, 1 ), +"update": 0, +"values": [ Color( 1, 1, 1, 0 ), Color( 1, 1, 1, 1 ) ] +} +tracks/4/type = "value" +tracks/4/path = NodePath("tacklebox:visible") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/keys = { +"times": PoolRealArray( 0 ), +"transitions": PoolRealArray( 1 ), +"update": 1, +"values": [ false ] +} +tracks/5/type = "value" +tracks/5/path = NodePath("bait_menu:visible") +tracks/5/interp = 1 +tracks/5/loop_wrap = true +tracks/5/imported = false +tracks/5/enabled = true +tracks/5/keys = { +"times": PoolRealArray( 0 ), +"transitions": PoolRealArray( 1 ), +"update": 1, +"values": [ false ] +} + +[sub_resource type="Animation" id=9] +length = 0.001 +tracks/0/type = "value" +tracks/0/path = NodePath("backpack:visible") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/keys = { +"times": PoolRealArray( 0 ), +"transitions": PoolRealArray( 1 ), +"update": 0, +"values": [ false ] +} +tracks/1/type = "value" +tracks/1/path = NodePath("menu:visible") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/keys = { +"times": PoolRealArray( 0 ), +"transitions": PoolRealArray( 1 ), +"update": 0, +"values": [ false ] +} +tracks/2/type = "value" +tracks/2/path = NodePath("backpack:modulate") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/keys = { +"times": PoolRealArray( 0 ), +"transitions": PoolRealArray( 1 ), +"update": 0, +"values": [ Color( 1, 1, 1, 0 ) ] +} +tracks/3/type = "value" +tracks/3/path = NodePath("menu:modulate") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/keys = { +"times": PoolRealArray( 0 ), +"transitions": PoolRealArray( 1 ), +"update": 0, +"values": [ Color( 1, 1, 1, 0 ) ] +} +tracks/4/type = "value" +tracks/4/path = NodePath("bait_menu:visible") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/keys = { +"times": PoolRealArray( 0 ), +"transitions": PoolRealArray( 1 ), +"update": 0, +"values": [ false ] +} +tracks/5/type = "value" +tracks/5/path = NodePath("bait_menu:modulate") +tracks/5/interp = 1 +tracks/5/loop_wrap = true +tracks/5/imported = false +tracks/5/enabled = true +tracks/5/keys = { +"times": PoolRealArray( 0 ), +"transitions": PoolRealArray( 1 ), +"update": 0, +"values": [ Color( 1, 1, 1, 0 ) ] +} +tracks/6/type = "value" +tracks/6/path = NodePath("tacklebox:visible") +tracks/6/interp = 1 +tracks/6/loop_wrap = true +tracks/6/imported = false +tracks/6/enabled = true +tracks/6/keys = { +"times": PoolRealArray( 0 ), +"transitions": PoolRealArray( 1 ), +"update": 0, +"values": [ false ] +} +tracks/7/type = "value" +tracks/7/path = NodePath("tacklebox:modulate") +tracks/7/interp = 1 +tracks/7/loop_wrap = true +tracks/7/imported = false +tracks/7/enabled = true +tracks/7/keys = { +"times": PoolRealArray( 0 ), +"transitions": PoolRealArray( 1 ), +"update": 0, +"values": [ Color( 1, 1, 1, 0 ) ] +} + +[sub_resource type="Animation" id=17] +resource_name = "tacklebox_open" +length = 0.6 +step = 0.05 +tracks/0/type = "value" +tracks/0/path = NodePath("bait_menu:visible") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/keys = { +"times": PoolRealArray( 0, 0.05, 0.6 ), +"transitions": PoolRealArray( 1, 1, 1 ), +"update": 1, +"values": [ false, true, true ] +} +tracks/1/type = "value" +tracks/1/path = NodePath("bait_menu:modulate") +tracks/1/interp = 1 +tracks/1/loop_wrap = true +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/keys = { +"times": PoolRealArray( 0, 0.35, 0.6 ), +"transitions": PoolRealArray( 1, 1, 1 ), +"update": 0, +"values": [ Color( 1, 1, 1, 0 ), Color( 1, 1, 1, 0 ), Color( 1, 1, 1, 1 ) ] +} +tracks/2/type = "value" +tracks/2/path = NodePath("tacklebox:visible") +tracks/2/interp = 1 +tracks/2/loop_wrap = true +tracks/2/imported = false +tracks/2/enabled = true +tracks/2/keys = { +"times": PoolRealArray( 0, 0.05, 0.15, 0.6 ), +"transitions": PoolRealArray( 1, 1, 1, 1 ), +"update": 1, +"values": [ false, false, true, true ] +} +tracks/3/type = "value" +tracks/3/path = NodePath("tacklebox:modulate") +tracks/3/interp = 1 +tracks/3/loop_wrap = true +tracks/3/imported = false +tracks/3/enabled = true +tracks/3/keys = { +"times": PoolRealArray( 0, 0.05, 0.15 ), +"transitions": PoolRealArray( 1, 1, 1 ), +"update": 0, +"values": [ Color( 1, 1, 1, 0 ), Color( 1, 1, 1, 0 ), Color( 1, 1, 1, 1 ) ] +} +tracks/4/type = "value" +tracks/4/path = NodePath("backpack:visible") +tracks/4/interp = 1 +tracks/4/loop_wrap = true +tracks/4/imported = false +tracks/4/enabled = true +tracks/4/keys = { +"times": PoolRealArray( 0 ), +"transitions": PoolRealArray( 1 ), +"update": 1, +"values": [ false ] +} +tracks/5/type = "value" +tracks/5/path = NodePath("menu:visible") +tracks/5/interp = 1 +tracks/5/loop_wrap = true +tracks/5/imported = false +tracks/5/enabled = true +tracks/5/keys = { +"times": PoolRealArray( 0 ), +"transitions": PoolRealArray( 1 ), +"update": 1, +"values": [ false ] +} + +[node name="playerhud" type="CanvasLayer"] +script = ExtResource( 1 ) + +[node name="main" type="Control" parent="."] +anchor_right = 1.0 +anchor_bottom = 1.0 +mouse_filter = 2 +theme = ExtResource( 5 ) + +[node name="in_game" type="Control" parent="main"] +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 12.0 +margin_top = 12.0 +margin_right = -12.0 +margin_bottom = -12.0 +mouse_filter = 2 + +[node name="HBoxContainer" type="Control" parent="main/in_game"] +anchor_left = 1.0 +anchor_right = 1.0 +margin_left = -259.0 +margin_top = 3.0 +margin_right = -3.0 +margin_bottom = 259.0 + +[node name="backpack" type="Button" parent="main/in_game/HBoxContainer"] +anchor_left = 1.0 +anchor_right = 1.0 +margin_left = -64.0 +margin_bottom = 64.0 +rect_min_size = Vector2( 64, 64 ) +theme = ExtResource( 37 ) +icon = ExtResource( 10 ) +expand_icon = true +script = ExtResource( 73 ) + +[node name="TooltipNode" type="Control" parent="main/in_game/HBoxContainer/backpack"] +anchor_right = 1.0 +anchor_bottom = 1.0 +script = ExtResource( 32 ) +header = "Open Backpack" +body = "Hotkey: $$menu_open" + +[node name="tacklebox" type="Button" parent="main/in_game/HBoxContainer"] +margin_left = 152.0 +margin_top = -4.0 +margin_right = 186.0 +margin_bottom = 30.0 +rect_min_size = Vector2( 34, 34 ) +theme = ExtResource( 37 ) +icon = ExtResource( 9 ) +expand_icon = true +script = ExtResource( 73 ) + +[node name="TooltipNode" type="Control" parent="main/in_game/HBoxContainer/tacklebox"] +anchor_right = 1.0 +anchor_bottom = 1.0 +script = ExtResource( 32 ) +header = "Open Tacklebox" +body = "Hotkey: $$bait_menu" + +[node name="tent" type="Button" parent="main/in_game/HBoxContainer"] +margin_left = 151.0 +margin_top = 39.0 +margin_right = 185.0 +margin_bottom = 73.0 +rect_min_size = Vector2( 34, 34 ) +theme = ExtResource( 37 ) +icon = ExtResource( 23 ) +expand_icon = true +script = ExtResource( 73 ) + +[node name="TooltipNode" type="Control" parent="main/in_game/HBoxContainer/tent"] +anchor_right = 1.0 +anchor_bottom = 1.0 +script = ExtResource( 32 ) +header = "Open Prop Menu" +body = "Hotkey: $$build" + +[node name="emote" type="Button" parent="main/in_game/HBoxContainer"] +margin_left = 183.0 +margin_top = 71.0 +margin_right = 217.0 +margin_bottom = 105.0 +rect_min_size = Vector2( 34, 34 ) +theme = ExtResource( 37 ) +icon = ExtResource( 11 ) +expand_icon = true +script = ExtResource( 73 ) + +[node name="TooltipNode" type="Control" parent="main/in_game/HBoxContainer/emote"] +anchor_right = 1.0 +anchor_bottom = 1.0 +script = ExtResource( 32 ) +header = "Open Emotes" +body = "Hotkey: $$emote_wheel" + +[node name="camera" type="Button" parent="main/in_game/HBoxContainer"] +margin_left = 226.0 +margin_top = 70.0 +margin_right = 260.0 +margin_bottom = 104.0 +rect_min_size = Vector2( 34, 34 ) +theme = ExtResource( 37 ) +icon = ExtResource( 38 ) +expand_icon = true +script = ExtResource( 73 ) + +[node name="TooltipNode" type="Control" parent="main/in_game/HBoxContainer/camera"] +anchor_right = 1.0 +anchor_bottom = 1.0 +script = ExtResource( 32 ) +header = "Toggle Free Camera" +body = "Hotkey: $$freecam" + +[node name="hotbar" type="HBoxContainer" parent="main/in_game"] +anchor_top = 0.9 +anchor_right = 1.0 +anchor_bottom = 0.965 +margin_bottom = 2.57996 +rect_min_size = Vector2( 0, 72 ) +custom_constants/separation = 10 +alignment = 1 + +[node name="item" parent="main/in_game/hotbar" instance=ExtResource( 4 )] +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_left = 748.0 +margin_right = 820.0 +margin_bottom = 72.0 +rect_min_size = Vector2( 72, 72 ) +force_hotkey = 1 +dim_when_unequipped = true +refresh_on_resize = true + +[node name="item2" parent="main/in_game/hotbar" instance=ExtResource( 4 )] +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_left = 830.0 +margin_right = 902.0 +margin_bottom = 72.0 +rect_min_size = Vector2( 72, 72 ) +force_hotkey = 2 +dim_when_unequipped = true +refresh_on_resize = true + +[node name="item3" parent="main/in_game/hotbar" instance=ExtResource( 4 )] +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_left = 912.0 +margin_right = 984.0 +margin_bottom = 72.0 +rect_min_size = Vector2( 72, 72 ) +force_hotkey = 3 +dim_when_unequipped = true +refresh_on_resize = true + +[node name="item4" parent="main/in_game/hotbar" instance=ExtResource( 4 )] +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_left = 994.0 +margin_right = 1066.0 +margin_bottom = 72.0 +rect_min_size = Vector2( 72, 72 ) +force_hotkey = 4 +dim_when_unequipped = true +refresh_on_resize = true + +[node name="item5" parent="main/in_game/hotbar" instance=ExtResource( 4 )] +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_left = 1076.0 +margin_right = 1148.0 +margin_bottom = 72.0 +rect_min_size = Vector2( 72, 72 ) +force_hotkey = 5 +dim_when_unequipped = true +refresh_on_resize = true + +[node name="gamechat" type="Control" parent="main/in_game"] +anchor_left = 0.02 +anchor_top = 0.66 +anchor_right = 0.28 +anchor_bottom = 0.965 +mouse_filter = 2 + +[node name="Panel" type="Panel" parent="main/in_game/gamechat"] +show_behind_parent = true +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = -8.0 +margin_top = -8.0 +margin_right = 8.0 +margin_bottom = 8.0 +mouse_filter = 2 + +[node name="Panel2" type="Panel" parent="main/in_game/gamechat"] +show_behind_parent = true +anchor_right = 1.0 +anchor_bottom = 1.0 +mouse_filter = 2 +custom_styles/panel = ExtResource( 39 ) + +[node name="global_chat" type="Button" parent="main/in_game/gamechat/Panel2"] +unique_name_in_owner = true +margin_left = -0.919998 +margin_top = -28.96 +margin_right = 83.08 +margin_bottom = 9.04 +focus_mode = 0 +text = "GLOBAL" +script = ExtResource( 73 ) + +[node name="local_chat" type="Button" parent="main/in_game/gamechat/Panel2"] +unique_name_in_owner = true +margin_left = 95.08 +margin_top = -28.96 +margin_right = 179.08 +margin_bottom = 9.04 +focus_mode = 0 +text = "LOCAL" +script = ExtResource( 73 ) + +[node name="expand" type="Button" parent="main/in_game/gamechat/Panel2"] +unique_name_in_owner = true +margin_left = 194.0 +margin_top = -29.0 +margin_right = 240.0 +margin_bottom = 9.0 +icon = ExtResource( 47 ) +icon_align = 1 +expand_icon = true +script = ExtResource( 73 ) + +[node name="hide" type="Button" parent="main/in_game/gamechat/Panel2"] +unique_name_in_owner = true +margin_left = 254.0 +margin_top = -29.0 +margin_right = 300.0 +margin_bottom = 9.0 +icon = ExtResource( 74 ) +icon_align = 1 +expand_icon = true +script = ExtResource( 73 ) + +[node name="Button" type="Button" parent="main/in_game/gamechat"] +visible = false +anchor_left = 1.0 +anchor_top = 1.0 +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = -100.0 +margin_top = -55.0 +margin_right = -46.0 +margin_bottom = -13.0 +mouse_filter = 2 +text = ">" + +[node name="LineEdit" type="LineEdit" parent="main/in_game/gamechat"] +modulate = Color( 0.960784, 0.909804, 0.843137, 1 ) +anchor_top = 1.0 +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 24.0 +margin_top = -50.0 +margin_right = -24.0 +margin_bottom = -16.0 +focus_mode = 0 +custom_colors/selection_color = Color( 0.352941, 0.458824, 0.352941, 1 ) +custom_colors/cursor_color = Color( 0.0627451, 0.109804, 0.192157, 1 ) +custom_colors/font_color_selected = Color( 0.0627451, 0.109804, 0.192157, 1 ) +custom_colors/font_color = Color( 0.101961, 0.137255, 0.101961, 1 ) +custom_colors/font_color_uneditable = Color( 0.101961, 0.137255, 0.101961, 1 ) +custom_fonts/font = SubResource( 451 ) +max_length = 164 +editable = false +context_menu_enabled = false +selecting_enabled = false +deselect_on_focus_loss_enabled = false +placeholder_text = "ENTER to begin typing..." +placeholder_alpha = 0.9 +caret_blink = true +caret_blink_speed = 0.4 + +[node name="RichTextLabel" type="RichTextLabel" parent="main/in_game/gamechat"] +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 12.0 +margin_top = 24.0 +margin_right = -12.0 +margin_bottom = -60.0 +mouse_filter = 2 +custom_colors/default_color = Color( 0.176471, 0.243137, 0.176471, 1 ) +custom_colors/font_color_shadow = Color( 0, 0, 0, 1 ) +custom_fonts/mono_font = SubResource( 446 ) +custom_fonts/bold_italics_font = SubResource( 447 ) +custom_fonts/italics_font = SubResource( 448 ) +custom_fonts/bold_font = SubResource( 449 ) +custom_fonts/normal_font = SubResource( 450 ) +bbcode_enabled = true +bbcode_text = "uncreativecultist: lorem ipsum dor amet or whatever the fuck you kids say nowadays" +text = "uncreativecultist: lorem ipsum dor amet or whatever the fuck you kids say nowadays" +scroll_following = true + +[node name="show_chat" type="Button" parent="main/in_game"] +unique_name_in_owner = true +visible = false +anchor_left = 0.0158228 +anchor_top = 0.660038 +anchor_right = 0.0158228 +anchor_bottom = 0.660038 +margin_left = -2.0 +margin_top = -29.0 +margin_right = 44.0 +margin_bottom = 9.0 +icon = ExtResource( 75 ) +icon_align = 1 +expand_icon = true +script = ExtResource( 73 ) +__meta__ = { +"_edit_use_anchors_": true +} + +[node name="interact_notif" type="Control" parent="main/in_game"] +anchor_right = 1.0 +anchor_bottom = 1.0 +mouse_filter = 2 + +[node name="Panel" type="Panel" parent="main/in_game/interact_notif"] +visible = false +show_behind_parent = true +anchor_left = 0.1 +anchor_right = 0.9 +anchor_bottom = 1.0 +custom_styles/panel = ExtResource( 41 ) + +[node name="TextureRect" type="TextureRect" parent="main/in_game/interact_notif"] +anchor_right = 1.0 +anchor_bottom = 1.0 +mouse_filter = 2 +texture = SubResource( 21 ) +expand = true +stretch_mode = 6 + +[node name="Label" type="Label" parent="main/in_game/interact_notif"] +anchor_left = 0.2 +anchor_top = 0.76 +anchor_right = 0.8 +anchor_bottom = 0.8 +text = "HELLO HELLO" +align = 1 +valign = 1 + +[node name="bait" parent="main/in_game" instance=ExtResource( 44 )] +anchor_left = 0.941 +anchor_top = 0.939 +anchor_right = 0.997 +anchor_bottom = 0.983 +margin_left = -0.136108 +margin_top = 0.415955 +margin_right = -0.312134 +margin_bottom = -0.0480957 +__meta__ = { +"_edit_use_anchors_": true +} + +[node name="item_help" type="RichTextLabel" parent="main/in_game"] +anchor_left = 0.684 +anchor_top = 0.896 +anchor_right = 0.991 +anchor_bottom = 0.929 +margin_left = 0.135986 +margin_top = -0.176025 +margin_right = 0.0638428 +margin_bottom = -0.0240479 +mouse_filter = 2 +custom_colors/default_color = Color( 1, 0.933333, 0.835294, 0.482353 ) +bbcode_enabled = true +bbcode_text = "[right]" +scroll_active = false +script = ExtResource( 64 ) +__meta__ = { +"_edit_use_anchors_": true +} + +[node name="static_effects" type="Control" parent="main/in_game"] +anchor_top = 0.18 +anchor_right = 0.3 +anchor_bottom = 0.6 +mouse_filter = 2 + +[node name="GridContainer" type="GridContainer" parent="main/in_game/static_effects"] +anchor_right = 1.0 +anchor_bottom = 1.0 +mouse_filter = 2 +custom_constants/vseparation = 16 +custom_constants/hseparation = 16 + +[node name="speedboost" parent="main/in_game/static_effects/GridContainer" instance=ExtResource( 50 )] +visible = false +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_right = 72.0 +margin_bottom = 72.0 +texture = ExtResource( 52 ) +desc = "Gain bonus sprint speed." +header = "Speed Boost" + +[node name="speedboost_burst" parent="main/in_game/static_effects/GridContainer" instance=ExtResource( 50 )] +visible = false +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_right = 72.0 +margin_bottom = 72.0 +texture = ExtResource( 58 ) +desc = "Gain EXTREME bonus sprint speed." +header = "EXTREME Speed Boost" + +[node name="catchboost" parent="main/in_game/static_effects/GridContainer" instance=ExtResource( 50 )] +visible = false +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_top = 76.0 +margin_right = 72.0 +margin_bottom = 148.0 +texture = ExtResource( 51 ) +desc = "On catch, gain a bonus $1-10, and gain bonus catchrate and reel speed." +header = "Catcher's Luck" + +[node name="catchboost_big" parent="main/in_game/static_effects/GridContainer" instance=ExtResource( 50 )] +visible = false +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_top = 152.0 +margin_right = 72.0 +margin_bottom = 224.0 +texture = ExtResource( 53 ) +desc = "On catch, gain up to a bonus 25% of it's value as bonus cash, and gain bonus catchrate and reel speed." +header = "Catch Boost ULTRA" + +[node name="catchboost_deluxe" parent="main/in_game/static_effects/GridContainer" instance=ExtResource( 50 )] +visible = false +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_top = 152.0 +margin_right = 72.0 +margin_bottom = 224.0 +texture = ExtResource( 53 ) +desc = "On catch, gain a bonus 25% rank experience, and gain bonus catchrate and reel speed." +header = "Catch Boost DELUXE" + +[node name="drunk_tipsy" parent="main/in_game/static_effects/GridContainer" instance=ExtResource( 50 )] +visible = false +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_top = 228.0 +margin_right = 72.0 +margin_bottom = 300.0 +texture = ExtResource( 56 ) +desc = "Feeling alright!" +header = "Buzzed..." + +[node name="drunk_reg" parent="main/in_game/static_effects/GridContainer" instance=ExtResource( 50 )] +visible = false +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_top = 228.0 +margin_right = 72.0 +margin_bottom = 300.0 +texture = ExtResource( 54 ) +desc = "Really feelin' it!" +header = "Drunk" + +[node name="drunk_hammered" parent="main/in_game/static_effects/GridContainer" instance=ExtResource( 50 )] +visible = false +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_top = 228.0 +margin_right = 72.0 +margin_bottom = 300.0 +texture = ExtResource( 55 ) +desc = "REALLY feeling it!" +header = "Hammered" + +[node name="freecamwarning" type="Label" parent="main/in_game"] +anchor_top = 0.05 +anchor_right = 1.0 +anchor_bottom = 0.875 +margin_top = -34.0 +custom_colors/font_color = Color( 1, 0.933333, 0.835294, 1 ) +text = "FREECAM MODE +WASD TO MOVE, N TO EXIT" +align = 1 + +[node name="build_ui" type="Control" parent="main"] +visible = false +anchor_right = 1.0 +anchor_bottom = 1.0 +mouse_filter = 2 + +[node name="Panel" type="Panel" parent="main/build_ui"] +anchor_left = 0.1 +anchor_top = 0.9 +anchor_right = 0.9 +anchor_bottom = 0.95 +mouse_filter = 2 + +[node name="Label" type="Label" parent="main/build_ui/Panel"] +anchor_right = 1.0 +anchor_bottom = 1.0 +text = "CLICK ON AN OBJECT TO SELECT IT" +align = 1 +valign = 1 + +[node name="Button" type="Button" parent="main/build_ui"] +anchor_left = 0.4 +anchor_top = 0.88 +anchor_right = 0.6 +anchor_bottom = 0.88 +margin_top = -36.0 +text = "DELETE OBJECT" + +[node name="backpack" type="ViewportContainer" parent="main"] +visible = false +modulate = Color( 1, 1, 1, 0 ) +anchor_right = 1.0 +anchor_bottom = 1.0 +stretch = true + +[node name="Viewport" type="Viewport" parent="main/backpack"] +size = Vector2( 1920, 1080 ) +own_world = true +world = SubResource( 5 ) +transparent_bg = true +handle_input_locally = false +render_target_update_mode = 0 + +[node name="Spatial" type="Spatial" parent="main/backpack/Viewport"] + +[node name="Camera" type="Camera" parent="main/backpack/Viewport/Spatial"] +transform = Transform( 1, 0, 0, 0, 0.996195, 0.0871557, 0, -0.0871557, 0.996195, 0, 0.976, 7.064 ) +fov = 30.0 + +[node name="backpack" type="Spatial" parent="main/backpack/Viewport/Spatial"] + +[node name="Armature" type="Spatial" parent="main/backpack/Viewport/Spatial/backpack"] + +[node name="Skeleton" type="Skeleton" parent="main/backpack/Viewport/Spatial/backpack/Armature"] +bones/0/name = "Bone.001" +bones/0/parent = -1 +bones/0/rest = Transform( 0.999993, -0.00381515, -1.0036e-05, 0.00381515, 0.999979, 0.00520151, -9.80874e-06, -0.00520151, 0.999986, 0.00179587, -1.39064, 0.0244769 ) +bones/0/enabled = true +bones/0/bound_children = [ ] +bones/1/name = "Bone.002" +bones/1/parent = 0 +bones/1/rest = Transform( 0.999952, 0.00962236, -0.00158054, -0.0097035, 0.997922, -0.0636939, 0.000964369, 0.0637062, 0.997968, -2.61153e-10, 1.12498, 3.70742e-10 ) +bones/1/enabled = true +bones/1/bound_children = [ ] +bones/2/name = "Bone" +bones/2/parent = 1 +bones/2/rest = Transform( -0.644963, -0.764214, 0.000775915, 0.762273, -0.643251, 0.0718905, -0.0544406, 0.0469581, 0.997412, -1.57091, 1.70253, 0.561652 ) +bones/2/enabled = true +bones/2/bound_children = [ ] +bones/3/name = "Bone.003" +bones/3/parent = 1 +bones/3/rest = Transform( -0.954925, -0.287193, 0.0750938, 0.296035, -0.90262, 0.312475, -0.0219594, 0.32062, 0.946953, -1.30162, 1.02802, 1.07409 ) +bones/3/enabled = true +bones/3/bound_children = [ ] +bones/4/name = "Bone.004" +bones/4/parent = 1 +bones/4/rest = Transform( -0.9301, -0.359487, 0.0753805, 0.364349, -0.876994, 0.313261, -0.0465048, 0.318829, 0.946671, -0.491665, 1.02407, 1.35962 ) +bones/4/enabled = true +bones/4/bound_children = [ ] + +[node name="Cube" type="MeshInstance" parent="main/backpack/Viewport/Spatial/backpack/Armature/Skeleton"] +mesh = SubResource( 1 ) +skin = SubResource( 2 ) +material/0 = SubResource( 11 ) +material/1 = SubResource( 12 ) +material/2 = SubResource( 13 ) + +[node name="AnimationPlayer" type="AnimationPlayer" parent="main/backpack/Viewport/Spatial/backpack"] +anims/intro = SubResource( 3 ) +anims/zip = SubResource( 4 ) +anims/zip_b = SubResource( 10 ) +anims/zip_c = SubResource( 6 ) + +[node name="menu" type="Control" parent="main"] +visible = false +modulate = Color( 1, 1, 1, 0 ) +anchor_right = 1.0 +anchor_bottom = 1.0 +mouse_filter = 1 + +[node name="Button" type="Button" parent="main/menu"] +anchor_left = 1.0 +anchor_right = 1.0 +margin_left = -48.0 +margin_top = 16.0 +margin_right = -16.0 +rect_min_size = Vector2( 32, 32 ) +text = "X" + +[node name="buttons" type="HBoxContainer" parent="main/menu"] +anchor_left = 0.25 +anchor_top = 0.114 +anchor_right = 0.75 +anchor_bottom = 0.2 +custom_constants/separation = 14 +alignment = 1 + +[node name="menu_button" parent="main/menu/buttons" instance=ExtResource( 22 )] +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_left = 112.0 +margin_right = 248.0 +margin_bottom = 131.0 +y_offset = 26 +image = ExtResource( 20 ) +header = "Inventory" +desc = "See your collection of items!" + +[node name="menu_button2" parent="main/menu/buttons" instance=ExtResource( 22 )] +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_left = 262.0 +margin_right = 398.0 +margin_bottom = 131.0 +tab_num = 1 +y_offset = 3 +image = ExtResource( 17 ) +header = "Journal" +desc = "View all creatures caught." + +[node name="menu_button4" parent="main/menu/buttons" instance=ExtResource( 22 )] +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_left = 412.0 +margin_right = 548.0 +margin_bottom = 131.0 +tab_num = 2 +y_offset = -14 +image = ExtResource( 18 ) +header = "Customize" +desc = "Change how you appear!" + +[node name="new_icon" type="TextureRect" parent="main/menu/buttons/menu_button4"] +unique_name_in_owner = true +anchor_right = 0.294 +anchor_bottom = 0.305 +margin_left = -4.0 +margin_top = -6.0 +margin_right = 4.016 +margin_bottom = 2.045 +texture = ExtResource( 16 ) + +[node name="menu_button5" parent="main/menu/buttons" instance=ExtResource( 22 )] +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_left = 562.0 +margin_right = 698.0 +margin_bottom = 131.0 +tab_num = 3 +y_offset = 1 +image = ExtResource( 19 ) +header = "Inbox" +desc = "Send or read letters!" + +[node name="menu_button6" parent="main/menu/buttons" instance=ExtResource( 22 )] +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_left = 712.0 +margin_right = 848.0 +margin_bottom = 131.0 +tab_num = 4 +y_offset = 23 +image = ExtResource( 21 ) +header = "Player List" +desc = "View the players in the current game." + +[node name="Panel" type="Panel" parent="main/menu"] +anchor_left = 0.2 +anchor_top = 0.3 +anchor_right = 0.8 +anchor_bottom = 0.9 + +[node name="tabs" type="Control" parent="main/menu"] +anchor_left = 0.2 +anchor_top = 0.3 +anchor_right = 0.8 +anchor_bottom = 0.9 +margin_left = 12.0 +margin_top = 12.0 +margin_right = -12.0 +margin_bottom = -12.0 + +[node name="inventory" type="Control" parent="main/menu/tabs"] +visible = false +anchor_right = 1.0 +anchor_bottom = 1.0 +script = ExtResource( 2 ) +__meta__ = { +"_edit_use_anchors_": true +} + +[node name="Panel" type="Panel" parent="main/menu/tabs/inventory"] +anchor_right = 0.6 +anchor_bottom = 1.0 +margin_left = 12.0 +margin_top = 12.0 +margin_right = -12.0 +margin_bottom = -12.0 +custom_styles/panel = ExtResource( 39 ) + +[node name="MarginContainer" type="MarginContainer" parent="main/menu/tabs/inventory"] +anchor_right = 0.6 +anchor_bottom = 1.0 +margin_left = 20.0 +margin_top = 20.0 +margin_right = -20.0 +margin_bottom = -20.0 + +[node name="ScrollContainer" type="ScrollContainer" parent="main/menu/tabs/inventory/MarginContainer"] +margin_right = 636.0 +margin_bottom = 584.0 +scroll_horizontal_enabled = false + +[node name="HBoxContainer" type="CenterContainer" parent="main/menu/tabs/inventory/MarginContainer/ScrollContainer"] +margin_right = 636.0 +margin_bottom = 240.0 +size_flags_horizontal = 3 + +[node name="VBoxContainer" type="VBoxContainer" parent="main/menu/tabs/inventory/MarginContainer/ScrollContainer/HBoxContainer"] +margin_left = 60.0 +margin_right = 575.0 +margin_bottom = 240.0 +custom_constants/separation = 0 + +[node name="HSeparator" type="HSeparator" parent="main/menu/tabs/inventory/MarginContainer/ScrollContainer/HBoxContainer/VBoxContainer"] +margin_right = 515.0 +margin_bottom = 16.0 +custom_constants/separation = 16 +custom_styles/separator = SubResource( 19 ) + +[node name="sep" type="TextureRect" parent="main/menu/tabs/inventory/MarginContainer/ScrollContainer/HBoxContainer/VBoxContainer"] +margin_top = 16.0 +margin_right = 515.0 +margin_bottom = 48.0 +rect_min_size = Vector2( 0, 32 ) +size_flags_horizontal = 3 +texture = ExtResource( 40 ) +expand = true +stretch_mode = 4 + +[node name="Label" type="Label" parent="main/menu/tabs/inventory/MarginContainer/ScrollContainer/HBoxContainer/VBoxContainer"] +margin_top = 48.0 +margin_right = 515.0 +margin_bottom = 112.0 +rect_min_size = Vector2( 0, 64 ) +size_flags_horizontal = 3 +custom_colors/font_color = Color( 1, 0.933333, 0.835294, 1 ) +text = "tools " +valign = 1 + +[node name="tools" type="GridContainer" parent="main/menu/tabs/inventory/MarginContainer/ScrollContainer/HBoxContainer/VBoxContainer"] +margin_top = 112.0 +margin_bottom = 112.0 +size_flags_horizontal = 0 +custom_constants/vseparation = 12 +custom_constants/hseparation = 12 +columns = 6 + +[node name="HSeparator3" type="HSeparator" parent="main/menu/tabs/inventory/MarginContainer/ScrollContainer/HBoxContainer/VBoxContainer"] +margin_top = 112.0 +margin_right = 515.0 +margin_bottom = 128.0 +custom_constants/separation = 16 +custom_styles/separator = SubResource( 19 ) + +[node name="sep2" type="TextureRect" parent="main/menu/tabs/inventory/MarginContainer/ScrollContainer/HBoxContainer/VBoxContainer"] +margin_top = 128.0 +margin_right = 515.0 +margin_bottom = 160.0 +rect_min_size = Vector2( 0, 32 ) +size_flags_horizontal = 3 +texture = ExtResource( 40 ) +expand = true +stretch_mode = 4 + +[node name="Label3" type="Label" parent="main/menu/tabs/inventory/MarginContainer/ScrollContainer/HBoxContainer/VBoxContainer"] +margin_top = 160.0 +margin_right = 515.0 +margin_bottom = 224.0 +rect_min_size = Vector2( 0, 64 ) +size_flags_horizontal = 3 +custom_colors/font_color = Color( 1, 0.933333, 0.835294, 1 ) +text = "creatures & junk" +valign = 1 + +[node name="fish" type="GridContainer" parent="main/menu/tabs/inventory/MarginContainer/ScrollContainer/HBoxContainer/VBoxContainer"] +margin_top = 224.0 +margin_bottom = 224.0 +size_flags_horizontal = 0 +custom_constants/vseparation = 12 +custom_constants/hseparation = 12 +columns = 6 + +[node name="HSeparator5" type="HSeparator" parent="main/menu/tabs/inventory/MarginContainer/ScrollContainer/HBoxContainer/VBoxContainer"] +margin_top = 224.0 +margin_right = 515.0 +margin_bottom = 240.0 +custom_constants/separation = 16 +custom_styles/separator = SubResource( 19 ) + +[node name="Panel2" type="Panel" parent="main/menu/tabs/inventory"] +anchor_left = 0.6 +anchor_right = 1.0 +anchor_bottom = 0.6 +margin_left = 12.0 +margin_top = 12.0 +margin_right = -12.0 +margin_bottom = -12.0 +custom_styles/panel = ExtResource( 39 ) + +[node name="item_display" parent="main/menu/tabs/inventory/Panel2" instance=ExtResource( 42 )] +visible = false +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_right = 0.0 +margin_bottom = 0.0 +expand = true +stretch_mode = 6 + +[node name="ViewportContainer" type="ViewportContainer" parent="main/menu/tabs/inventory/Panel2"] +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 16.0 +margin_top = 16.0 +margin_right = -16.0 +margin_bottom = -16.0 +stretch = true + +[node name="inv_preview" type="Viewport" parent="main/menu/tabs/inventory/Panel2/ViewportContainer"] +size = Vector2( 395, 318 ) +own_world = true +world = SubResource( 33 ) +transparent_bg = true +handle_input_locally = false +render_target_update_mode = 0 + +[node name="root" type="Spatial" parent="main/menu/tabs/inventory/Panel2/ViewportContainer/inv_preview"] +script = ExtResource( 66 ) + +[node name="Camera" type="Camera" parent="main/menu/tabs/inventory/Panel2/ViewportContainer/inv_preview/root"] +transform = Transform( 0.707107, -0.241845, 0.664463, 0, 0.939693, 0.34202, -0.707107, -0.241845, 0.664463, 3.4, 3.1, 3.4 ) +current = true +fov = 25.0 +far = 400.0 + +[node name="MeshInstance" type="MeshInstance" parent="main/menu/tabs/inventory/Panel2/ViewportContainer/inv_preview/root"] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.9, 0 ) +mesh = SubResource( 34 ) +material/0 = ExtResource( 65 ) + +[node name="MeshInstance2" type="MeshInstance" parent="main/menu/tabs/inventory/Panel2/ViewportContainer/inv_preview/root/MeshInstance"] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.064, 0 ) +mesh = SubResource( 35 ) +skeleton = NodePath("../..") +material/0 = ExtResource( 67 ) + +[node name="item" type="Spatial" parent="main/menu/tabs/inventory/Panel2/ViewportContainer/inv_preview/root"] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0 ) + +[node name="Sprite3D" type="Sprite3D" parent="main/menu/tabs/inventory/Panel2/ViewportContainer/inv_preview/root/item"] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.555, 0 ) + +[node name="quality" type="Spatial" parent="main/menu/tabs/inventory/Panel2/ViewportContainer/inv_preview/root/item/Sprite3D"] + +[node name="shining" type="Particles" parent="main/menu/tabs/inventory/Panel2/ViewportContainer/inv_preview/root/item/Sprite3D/quality"] +emitting = false +amount = 6 +lifetime = 4.0 +preprocess = 2.0 +local_coords = false +process_material = ExtResource( 68 ) +draw_pass_1 = SubResource( 443 ) + +[node name="glistening" type="Particles" parent="main/menu/tabs/inventory/Panel2/ViewportContainer/inv_preview/root/item/Sprite3D/quality"] +emitting = false +amount = 10 +lifetime = 4.0 +preprocess = 2.0 +local_coords = false +process_material = ExtResource( 68 ) +draw_pass_1 = SubResource( 443 ) + +[node name="opulent" type="Particles" parent="main/menu/tabs/inventory/Panel2/ViewportContainer/inv_preview/root/item/Sprite3D/quality"] +emitting = false +amount = 14 +lifetime = 4.0 +preprocess = 2.0 +local_coords = false +process_material = ExtResource( 68 ) +draw_pass_1 = SubResource( 443 ) + +[node name="radiant" type="Particles" parent="main/menu/tabs/inventory/Panel2/ViewportContainer/inv_preview/root/item/Sprite3D/quality"] +transform = Transform( 1, 4.19095e-09, 0, -2.32831e-09, 1, 1.56579e-08, 0, -9.02219e-09, 1, 0, 0, 0 ) +emitting = false +amount = 16 +lifetime = 4.0 +preprocess = 2.0 +local_coords = false +process_material = ExtResource( 68 ) +draw_pass_1 = SubResource( 444 ) + +[node name="alpha" type="Particles" parent="main/menu/tabs/inventory/Panel2/ViewportContainer/inv_preview/root/item/Sprite3D/quality"] +transform = Transform( 1, 4.19095e-09, 0, -2.32831e-09, 1, 1.56579e-08, 0, -9.02219e-09, 1, 0, 0, 0 ) +emitting = false +amount = 16 +lifetime = 4.0 +preprocess = 2.0 +local_coords = false +process_material = ExtResource( 68 ) +draw_pass_1 = SubResource( 445 ) + +[node name="scene" type="Spatial" parent="main/menu/tabs/inventory/Panel2/ViewportContainer/inv_preview/root/item"] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.286, 0 ) + +[node name="Panel3" type="Panel" parent="main/menu/tabs/inventory"] +anchor_left = 0.6 +anchor_top = 0.6 +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 12.0 +margin_top = 12.0 +margin_right = -12.0 +margin_bottom = -12.0 +custom_styles/panel = ExtResource( 39 ) + +[node name="header" type="RichTextLabel" parent="main/menu/tabs/inventory/Panel3"] +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 12.0 +margin_top = 12.0 +margin_right = -12.0 +margin_bottom = -12.0 +custom_colors/default_color = Color( 1, 0.933333, 0.835294, 1 ) +bbcode_enabled = true + +[node name="body" type="RichTextLabel" parent="main/menu/tabs/inventory/Panel3"] +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 12.0 +margin_top = 42.0 +margin_right = -12.0 +margin_bottom = -12.0 +custom_colors/default_color = Color( 1, 0.933333, 0.835294, 1 ) +bbcode_enabled = true + +[node name="journal" type="Control" parent="main/menu/tabs"] +anchor_right = 1.0 +anchor_bottom = 1.0 +script = ExtResource( 45 ) + +[node name="Panel" type="Panel" parent="main/menu/tabs/journal"] +anchor_top = 0.17 +anchor_right = 0.6 +anchor_bottom = 1.0 +margin_left = 12.0 +margin_top = 12.0 +margin_right = -12.0 +margin_bottom = -12.0 +custom_styles/panel = ExtResource( 39 ) + +[node name="MarginContainer" type="MarginContainer" parent="main/menu/tabs/journal/Panel"] +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 12.0 +margin_top = 12.0 +margin_right = -12.0 +margin_bottom = -12.0 + +[node name="HScrollBar" type="ScrollContainer" parent="main/menu/tabs/journal/Panel/MarginContainer"] +margin_right = 628.0 +margin_bottom = 469.0 + +[node name="GridContainer" type="GridContainer" parent="main/menu/tabs/journal/Panel/MarginContainer/HScrollBar"] +columns = 4 + +[node name="journal_buttons" type="HBoxContainer" parent="main/menu/tabs/journal"] +unique_name_in_owner = true +anchor_top = 0.02 +anchor_right = 0.6 +anchor_bottom = 0.1 +margin_left = 12.0 +margin_top = 12.0 +margin_right = -12.0 +margin_bottom = -12.0 +custom_constants/separation = 12 + +[node name="prog" type="MarginContainer" parent="main/menu/tabs/journal"] +anchor_top = 0.1 +anchor_right = 0.6 +anchor_bottom = 0.1 +margin_left = 12.0 +margin_top = 12.0 +margin_right = -12.0 +margin_bottom = 48.0 + +[node name="ProgressBar" type="ProgressBar" parent="main/menu/tabs/journal/prog"] +margin_right = 652.0 +margin_bottom = 36.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 +custom_styles/fg = SubResource( 24 ) +value = 75.0 +percent_visible = false + +[node name="ProgressBar2" type="ProgressBar" parent="main/menu/tabs/journal/prog"] +margin_right = 652.0 +margin_bottom = 36.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 +custom_styles/fg = SubResource( 25 ) +custom_styles/bg = SubResource( 26 ) +value = 60.0 +percent_visible = false + +[node name="ProgressBar3" type="ProgressBar" parent="main/menu/tabs/journal/prog"] +margin_right = 652.0 +margin_bottom = 36.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 +custom_styles/fg = SubResource( 27 ) +custom_styles/bg = SubResource( 26 ) +value = 50.0 +percent_visible = false + +[node name="ProgressBar4" type="ProgressBar" parent="main/menu/tabs/journal/prog"] +margin_right = 652.0 +margin_bottom = 36.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 +custom_styles/fg = SubResource( 28 ) +custom_styles/bg = SubResource( 26 ) +value = 35.0 +percent_visible = false + +[node name="ProgressBar5" type="ProgressBar" parent="main/menu/tabs/journal/prog"] +margin_right = 652.0 +margin_bottom = 36.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 +custom_styles/fg = SubResource( 29 ) +custom_styles/bg = SubResource( 26 ) +value = 25.0 +percent_visible = false + +[node name="ProgressBar6" type="ProgressBar" parent="main/menu/tabs/journal/prog"] +margin_right = 652.0 +margin_bottom = 36.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 +custom_styles/fg = SubResource( 30 ) +custom_styles/bg = SubResource( 26 ) +value = 15.0 +percent_visible = false + +[node name="TooltipNode" type="Control" parent="main/menu/tabs/journal/prog"] +margin_right = 652.0 +margin_bottom = 36.0 +script = ExtResource( 32 ) + +[node name="Panel2" type="Panel" parent="main/menu/tabs/journal"] +anchor_left = 0.6 +anchor_right = 1.0 +anchor_bottom = 0.6 +margin_left = 12.0 +margin_top = 12.0 +margin_right = -12.0 +margin_bottom = -12.0 +custom_styles/panel = ExtResource( 39 ) + +[node name="item_display" parent="main/menu/tabs/journal/Panel2" instance=ExtResource( 42 )] +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_right = 0.0 +margin_bottom = 0.0 +texture = null +expand = true +stretch_mode = 6 + +[node name="Panel3" type="Panel" parent="main/menu/tabs/journal"] +anchor_left = 0.6 +anchor_top = 0.6 +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 12.0 +margin_top = 12.0 +margin_right = -12.0 +margin_bottom = -12.0 +custom_styles/panel = ExtResource( 39 ) + +[node name="header" type="RichTextLabel" parent="main/menu/tabs/journal/Panel3"] +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 12.0 +margin_top = 12.0 +margin_right = -12.0 +margin_bottom = -12.0 +custom_colors/default_color = Color( 1, 0.933333, 0.835294, 1 ) +bbcode_enabled = true + +[node name="body" type="RichTextLabel" parent="main/menu/tabs/journal/Panel3"] +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 12.0 +margin_top = 42.0 +margin_right = -12.0 +margin_bottom = -12.0 +custom_colors/default_color = Color( 1, 0.933333, 0.835294, 1 ) +bbcode_enabled = true + +[node name="Timer" type="Timer" parent="main/menu/tabs/journal/Panel3"] +wait_time = 2.0 +autostart = true + +[node name="outfit" type="Control" parent="main/menu/tabs"] +visible = false +anchor_right = 1.0 +anchor_bottom = 1.0 +theme = ExtResource( 5 ) +script = ExtResource( 6 ) + +[node name="Panel3" type="Panel" parent="main/menu/tabs/outfit"] +anchor_left = 0.6 +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 12.0 +margin_top = 12.0 +margin_right = -12.0 +margin_bottom = -12.0 +custom_styles/panel = ExtResource( 39 ) + +[node name="player_view" type="ViewportContainer" parent="main/menu/tabs/outfit/Panel3"] +anchor_right = 1.0 +anchor_bottom = 1.0 +stretch = true + +[node name="Viewport" type="Viewport" parent="main/menu/tabs/outfit/Panel3/player_view"] +size = Vector2( 427, 600 ) +own_world = true +transparent_bg = true +handle_input_locally = false +render_target_update_mode = 0 + +[node name="WorldEnvironment" type="WorldEnvironment" parent="main/menu/tabs/outfit/Panel3/player_view/Viewport"] +environment = ExtResource( 15 ) + +[node name="Camera" type="Camera" parent="main/menu/tabs/outfit/Panel3/player_view/Viewport"] +transform = Transform( -0.89766, 0.0203589, -0.440218, 0, 0.998932, 0.0461978, 0.440689, 0.0414699, -0.896702, -1.187, 0.525, -2.394 ) +current = true + +[node name="StaticBody" type="StaticBody" parent="main/menu/tabs/outfit/Panel3/player_view/Viewport"] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -2.00061, 0 ) + +[node name="CollisionShape" type="CollisionShape" parent="main/menu/tabs/outfit/Panel3/player_view/Viewport/StaticBody"] +shape = SubResource( 20 ) + +[node name="HScrollBar" type="HSlider" parent="main/menu/tabs/outfit/Panel3"] +anchor_top = 1.0 +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 16.0 +margin_top = -32.0 +margin_right = -16.0 +margin_bottom = -16.0 +max_value = 360.0 +step = 0.1 + +[node name="style_display" type="Control" parent="main/menu/tabs/outfit/Panel3"] +visible = false +anchor_right = 1.0 +anchor_bottom = 0.2 +margin_left = 12.0 +margin_top = 12.0 +margin_right = -12.0 +margin_bottom = 0.199997 + +[node name="HBoxContainer" type="HBoxContainer" parent="main/menu/tabs/outfit/Panel3/style_display"] +anchor_right = 1.0 +anchor_bottom = 1.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="TextureRect" type="TextureRect" parent="main/menu/tabs/outfit/Panel3/style_display/HBoxContainer"] +margin_right = 87.0 +margin_bottom = 108.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 +texture = ExtResource( 57 ) +expand = true +stretch_mode = 6 + +[node name="VBoxContainer" type="VBoxContainer" parent="main/menu/tabs/outfit/Panel3/style_display/HBoxContainer"] +margin_left = 91.0 +margin_right = 267.0 +margin_bottom = 108.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 +size_flags_stretch_ratio = 2.0 +alignment = 1 + +[node name="Label" type="Label" parent="main/menu/tabs/outfit/Panel3/style_display/HBoxContainer/VBoxContainer"] +margin_top = 18.0 +margin_right = 176.0 +margin_bottom = 52.0 +custom_colors/font_color = Color( 1, 0.933333, 0.835294, 1 ) +text = "text" + +[node name="Label2" type="Label" parent="main/menu/tabs/outfit/Panel3/style_display/HBoxContainer/VBoxContainer"] +margin_top = 56.0 +margin_right = 176.0 +margin_bottom = 90.0 +custom_colors/font_color = Color( 1, 0.933333, 0.835294, 1 ) +text = "text" + +[node name="VBoxContainer2" type="VBoxContainer" parent="main/menu/tabs/outfit/Panel3/style_display/HBoxContainer"] +margin_left = 271.0 +margin_right = 403.0 +margin_bottom = 108.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 +size_flags_stretch_ratio = 1.5 + +[node name="Container2" type="Container" parent="main/menu/tabs/outfit/Panel3/style_display/HBoxContainer/VBoxContainer2"] +margin_right = 132.0 +margin_bottom = 22.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="HBoxContainer" type="HBoxContainer" parent="main/menu/tabs/outfit/Panel3/style_display/HBoxContainer/VBoxContainer2"] +margin_top = 26.0 +margin_right = 132.0 +margin_bottom = 81.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 +size_flags_stretch_ratio = 2.5 +custom_constants/separation = 16 + +[node name="prev_style" type="Button" parent="main/menu/tabs/outfit/Panel3/style_display/HBoxContainer/VBoxContainer2/HBoxContainer"] +unique_name_in_owner = true +margin_right = 58.0 +margin_bottom = 55.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 +text = "<" + +[node name="next_style" type="Button" parent="main/menu/tabs/outfit/Panel3/style_display/HBoxContainer/VBoxContainer2/HBoxContainer"] +unique_name_in_owner = true +margin_left = 74.0 +margin_right = 132.0 +margin_bottom = 55.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 +text = ">" + +[node name="Container" type="Container" parent="main/menu/tabs/outfit/Panel3/style_display/HBoxContainer/VBoxContainer2"] +margin_top = 85.0 +margin_right = 132.0 +margin_bottom = 108.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="HBoxContainer" type="HBoxContainer" parent="main/menu/tabs/outfit"] +anchor_top = 0.1 +anchor_right = 0.6 +anchor_bottom = 0.1 +custom_constants/separation = 12 + +[node name="body" type="Button" parent="main/menu/tabs/outfit/HBoxContainer"] +margin_right = 160.0 +margin_bottom = 34.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 +text = "BODY" +script = ExtResource( 73 ) + +[node name="new_icon" type="TextureRect" parent="main/menu/tabs/outfit/HBoxContainer/body"] +anchor_right = 0.294 +anchor_bottom = 0.305 +margin_left = -9.0 +margin_top = -18.0 +margin_right = -8.04 +margin_bottom = 19.63 +texture = ExtResource( 16 ) + +[node name="face" type="Button" parent="main/menu/tabs/outfit/HBoxContainer"] +margin_left = 172.0 +margin_right = 332.0 +margin_bottom = 34.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 +text = "FACE" +script = ExtResource( 73 ) + +[node name="new_icon" type="TextureRect" parent="main/menu/tabs/outfit/HBoxContainer/face"] +anchor_right = 0.294 +anchor_bottom = 0.305 +margin_left = -9.0 +margin_top = -18.0 +margin_right = -8.04 +margin_bottom = 19.63 +texture = ExtResource( 16 ) + +[node name="clothes" type="Button" parent="main/menu/tabs/outfit/HBoxContainer"] +margin_left = 344.0 +margin_right = 504.0 +margin_bottom = 34.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 +text = "CLOTHES" +script = ExtResource( 73 ) + +[node name="new_icon" type="TextureRect" parent="main/menu/tabs/outfit/HBoxContainer/clothes"] +anchor_right = 0.294 +anchor_bottom = 0.305 +margin_left = -9.0 +margin_top = -18.0 +margin_right = -8.04 +margin_bottom = 19.63 +texture = ExtResource( 16 ) + +[node name="misc" type="Button" parent="main/menu/tabs/outfit/HBoxContainer"] +margin_left = 516.0 +margin_right = 676.0 +margin_bottom = 34.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 +text = "MISC" +script = ExtResource( 73 ) + +[node name="new_icon" type="TextureRect" parent="main/menu/tabs/outfit/HBoxContainer/misc"] +anchor_right = 0.294 +anchor_bottom = 0.305 +margin_left = -9.0 +margin_top = -18.0 +margin_right = -8.04 +margin_bottom = 19.63 +texture = ExtResource( 16 ) + +[node name="Panel4" type="Panel" parent="main/menu/tabs/outfit"] +anchor_top = 0.17 +anchor_right = 0.6 +anchor_bottom = 1.0 +margin_left = 12.0 +margin_right = -12.0 +margin_bottom = -12.0 +custom_styles/panel = ExtResource( 39 ) + +[node name="tabs" type="MarginContainer" parent="main/menu/tabs/outfit/Panel4"] +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 12.0 +margin_top = 12.0 +margin_right = -12.0 +margin_bottom = -12.0 + +[node name="body" type="ScrollContainer" parent="main/menu/tabs/outfit/Panel4/tabs"] +visible = false +margin_right = 628.0 +margin_bottom = 481.0 +scroll_horizontal_enabled = false + +[node name="HBoxContainer" type="HBoxContainer" parent="main/menu/tabs/outfit/Panel4/tabs/body"] +margin_right = 628.0 +margin_bottom = 636.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="VSeparator" type="VSeparator" parent="main/menu/tabs/outfit/Panel4/tabs/body/HBoxContainer"] +margin_right = 4.0 +margin_bottom = 40.0 +custom_styles/separator = SubResource( 32 ) + +[node name="vbox" type="VBoxContainer" parent="main/menu/tabs/outfit/Panel4/tabs/body/HBoxContainer"] +margin_right = 614.0 +margin_bottom = 636.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="Label" type="Label" parent="main/menu/tabs/outfit/Panel4/tabs/body/HBoxContainer/vbox"] +margin_right = 621.0 +margin_bottom = 64.0 +rect_min_size = Vector2( 0, 64 ) +size_flags_horizontal = 3 +custom_colors/font_color = Color( 1, 0.933333, 0.835294, 1 ) +text = "species " +valign = 1 + +[node name="species_cont" type="GridContainer" parent="main/menu/tabs/outfit/Panel4/tabs/body/HBoxContainer/vbox"] +unique_name_in_owner = true +margin_top = 68.0 +margin_right = 621.0 +margin_bottom = 68.0 +custom_constants/vseparation = 12 +custom_constants/hseparation = 12 +columns = 6 + +[node name="HSeparator2" type="HSeparator" parent="main/menu/tabs/outfit/Panel4/tabs/body/HBoxContainer/vbox"] +margin_top = 72.0 +margin_right = 621.0 +margin_bottom = 88.0 +custom_constants/separation = 16 +custom_styles/separator = SubResource( 19 ) + +[node name="sep2" type="TextureRect" parent="main/menu/tabs/outfit/Panel4/tabs/body/HBoxContainer/vbox"] +margin_top = 92.0 +margin_right = 621.0 +margin_bottom = 124.0 +rect_min_size = Vector2( 0, 32 ) +size_flags_horizontal = 3 +texture = ExtResource( 40 ) +expand = true +stretch_mode = 4 + +[node name="Label2" type="Label" parent="main/menu/tabs/outfit/Panel4/tabs/body/HBoxContainer/vbox"] +margin_top = 128.0 +margin_right = 621.0 +margin_bottom = 192.0 +rect_min_size = Vector2( 0, 64 ) +size_flags_horizontal = 3 +custom_colors/font_color = Color( 1, 0.933333, 0.835294, 1 ) +text = "pattern " +valign = 1 + +[node name="pattern_cont" type="GridContainer" parent="main/menu/tabs/outfit/Panel4/tabs/body/HBoxContainer/vbox"] +unique_name_in_owner = true +margin_top = 196.0 +margin_right = 621.0 +margin_bottom = 196.0 +custom_constants/vseparation = 12 +custom_constants/hseparation = 12 +columns = 6 + +[node name="HSeparator4" type="HSeparator" parent="main/menu/tabs/outfit/Panel4/tabs/body/HBoxContainer/vbox"] +margin_top = 200.0 +margin_right = 621.0 +margin_bottom = 216.0 +custom_constants/separation = 16 +custom_styles/separator = SubResource( 19 ) + +[node name="sep4" type="TextureRect" parent="main/menu/tabs/outfit/Panel4/tabs/body/HBoxContainer/vbox"] +margin_top = 220.0 +margin_right = 621.0 +margin_bottom = 252.0 +rect_min_size = Vector2( 0, 32 ) +size_flags_horizontal = 3 +texture = ExtResource( 40 ) +expand = true +stretch_mode = 4 + +[node name="Label4" type="Label" parent="main/menu/tabs/outfit/Panel4/tabs/body/HBoxContainer/vbox"] +margin_top = 256.0 +margin_right = 621.0 +margin_bottom = 320.0 +rect_min_size = Vector2( 0, 64 ) +size_flags_horizontal = 3 +custom_colors/font_color = Color( 1, 0.933333, 0.835294, 1 ) +text = "primary color " +valign = 1 + +[node name="primary_color_cont" type="GridContainer" parent="main/menu/tabs/outfit/Panel4/tabs/body/HBoxContainer/vbox"] +unique_name_in_owner = true +margin_top = 324.0 +margin_right = 621.0 +margin_bottom = 324.0 +custom_constants/vseparation = 12 +custom_constants/hseparation = 12 +columns = 6 + +[node name="HSeparator3" type="HSeparator" parent="main/menu/tabs/outfit/Panel4/tabs/body/HBoxContainer/vbox"] +margin_top = 328.0 +margin_right = 621.0 +margin_bottom = 344.0 +custom_constants/separation = 16 +custom_styles/separator = SubResource( 19 ) + +[node name="sep3" type="TextureRect" parent="main/menu/tabs/outfit/Panel4/tabs/body/HBoxContainer/vbox"] +margin_top = 348.0 +margin_right = 621.0 +margin_bottom = 380.0 +rect_min_size = Vector2( 0, 32 ) +size_flags_horizontal = 3 +texture = ExtResource( 40 ) +expand = true +stretch_mode = 4 + +[node name="Label3" type="Label" parent="main/menu/tabs/outfit/Panel4/tabs/body/HBoxContainer/vbox"] +margin_top = 384.0 +margin_right = 621.0 +margin_bottom = 448.0 +rect_min_size = Vector2( 0, 64 ) +size_flags_horizontal = 3 +custom_colors/font_color = Color( 1, 0.933333, 0.835294, 1 ) +text = "secondary color " +valign = 1 + +[node name="sec_color_cont" type="GridContainer" parent="main/menu/tabs/outfit/Panel4/tabs/body/HBoxContainer/vbox"] +unique_name_in_owner = true +margin_top = 452.0 +margin_right = 621.0 +margin_bottom = 452.0 +custom_constants/vseparation = 12 +custom_constants/hseparation = 12 +columns = 6 + +[node name="HSeparator" type="HSeparator" parent="main/menu/tabs/outfit/Panel4/tabs/body/HBoxContainer/vbox"] +margin_top = 456.0 +margin_right = 621.0 +margin_bottom = 472.0 +custom_constants/separation = 16 +custom_styles/separator = SubResource( 19 ) + +[node name="sep" type="TextureRect" parent="main/menu/tabs/outfit/Panel4/tabs/body/HBoxContainer/vbox"] +margin_top = 476.0 +margin_right = 621.0 +margin_bottom = 508.0 +rect_min_size = Vector2( 0, 32 ) +size_flags_horizontal = 3 +texture = ExtResource( 40 ) +expand = true +stretch_mode = 4 + +[node name="Label5" type="Label" parent="main/menu/tabs/outfit/Panel4/tabs/body/HBoxContainer/vbox"] +margin_top = 384.0 +margin_right = 621.0 +margin_bottom = 448.0 +rect_min_size = Vector2( 0, 64 ) +size_flags_horizontal = 3 +custom_colors/font_color = Color( 1, 0.933333, 0.835294, 1 ) +text = "tail " +valign = 1 + +[node name="tail_cont" type="GridContainer" parent="main/menu/tabs/outfit/Panel4/tabs/body/HBoxContainer/vbox"] +unique_name_in_owner = true +margin_top = 452.0 +margin_right = 621.0 +margin_bottom = 452.0 +custom_constants/vseparation = 12 +custom_constants/hseparation = 12 +columns = 6 + +[node name="HSeparator5" type="HSeparator" parent="main/menu/tabs/outfit/Panel4/tabs/body/HBoxContainer/vbox"] +margin_top = 456.0 +margin_right = 621.0 +margin_bottom = 472.0 +custom_constants/separation = 16 +custom_styles/separator = SubResource( 19 ) + +[node name="sep5" type="TextureRect" parent="main/menu/tabs/outfit/Panel4/tabs/body/HBoxContainer/vbox"] +margin_top = 476.0 +margin_right = 621.0 +margin_bottom = 508.0 +rect_min_size = Vector2( 0, 32 ) +size_flags_horizontal = 3 +texture = ExtResource( 40 ) +expand = true +stretch_mode = 4 + +[node name="face" type="ScrollContainer" parent="main/menu/tabs/outfit/Panel4/tabs"] +visible = false +margin_right = 628.0 +margin_bottom = 481.0 +scroll_horizontal_enabled = false + +[node name="HBoxContainer" type="HBoxContainer" parent="main/menu/tabs/outfit/Panel4/tabs/face"] +margin_right = 628.0 +margin_bottom = 481.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="VSeparator" type="VSeparator" parent="main/menu/tabs/outfit/Panel4/tabs/face/HBoxContainer"] +margin_right = 4.0 +margin_bottom = 40.0 +custom_styles/separator = SubResource( 32 ) + +[node name="vbox" type="VBoxContainer" parent="main/menu/tabs/outfit/Panel4/tabs/face/HBoxContainer"] +margin_right = 620.0 +margin_bottom = 380.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="Label" type="Label" parent="main/menu/tabs/outfit/Panel4/tabs/face/HBoxContainer/vbox"] +margin_right = 620.0 +margin_bottom = 64.0 +rect_min_size = Vector2( 0, 64 ) +size_flags_horizontal = 3 +custom_colors/font_color = Color( 1, 0.933333, 0.835294, 1 ) +text = "eyes " +valign = 1 + +[node name="eye_cont" type="GridContainer" parent="main/menu/tabs/outfit/Panel4/tabs/face/HBoxContainer/vbox"] +unique_name_in_owner = true +margin_top = 68.0 +margin_right = 620.0 +margin_bottom = 68.0 +custom_constants/vseparation = 12 +custom_constants/hseparation = 12 +columns = 6 + +[node name="HSeparator2" type="HSeparator" parent="main/menu/tabs/outfit/Panel4/tabs/face/HBoxContainer/vbox"] +margin_top = 72.0 +margin_right = 620.0 +margin_bottom = 88.0 +custom_constants/separation = 16 +custom_styles/separator = SubResource( 19 ) + +[node name="sep2" type="TextureRect" parent="main/menu/tabs/outfit/Panel4/tabs/face/HBoxContainer/vbox"] +margin_top = 92.0 +margin_right = 620.0 +margin_bottom = 124.0 +rect_min_size = Vector2( 0, 32 ) +size_flags_horizontal = 3 +texture = ExtResource( 40 ) +expand = true +stretch_mode = 4 + +[node name="Label2" type="Label" parent="main/menu/tabs/outfit/Panel4/tabs/face/HBoxContainer/vbox"] +margin_top = 128.0 +margin_right = 620.0 +margin_bottom = 192.0 +rect_min_size = Vector2( 0, 64 ) +size_flags_horizontal = 3 +custom_colors/font_color = Color( 1, 0.933333, 0.835294, 1 ) +text = "nose " +valign = 1 + +[node name="nose_cont" type="GridContainer" parent="main/menu/tabs/outfit/Panel4/tabs/face/HBoxContainer/vbox"] +unique_name_in_owner = true +margin_top = 196.0 +margin_right = 620.0 +margin_bottom = 196.0 +custom_constants/vseparation = 12 +custom_constants/hseparation = 12 +columns = 6 + +[node name="HSeparator4" type="HSeparator" parent="main/menu/tabs/outfit/Panel4/tabs/face/HBoxContainer/vbox"] +margin_top = 200.0 +margin_right = 620.0 +margin_bottom = 216.0 +custom_constants/separation = 16 +custom_styles/separator = SubResource( 19 ) + +[node name="sep4" type="TextureRect" parent="main/menu/tabs/outfit/Panel4/tabs/face/HBoxContainer/vbox"] +margin_top = 220.0 +margin_right = 620.0 +margin_bottom = 252.0 +rect_min_size = Vector2( 0, 32 ) +size_flags_horizontal = 3 +texture = ExtResource( 40 ) +expand = true +stretch_mode = 4 + +[node name="Label4" type="Label" parent="main/menu/tabs/outfit/Panel4/tabs/face/HBoxContainer/vbox"] +margin_top = 256.0 +margin_right = 620.0 +margin_bottom = 320.0 +rect_min_size = Vector2( 0, 64 ) +size_flags_horizontal = 3 +custom_colors/font_color = Color( 1, 0.933333, 0.835294, 1 ) +text = "mouth " +valign = 1 + +[node name="mouth_cont" type="GridContainer" parent="main/menu/tabs/outfit/Panel4/tabs/face/HBoxContainer/vbox"] +unique_name_in_owner = true +margin_top = 324.0 +margin_right = 620.0 +margin_bottom = 324.0 +custom_constants/vseparation = 12 +custom_constants/hseparation = 12 +columns = 6 + +[node name="HSeparator" type="HSeparator" parent="main/menu/tabs/outfit/Panel4/tabs/face/HBoxContainer/vbox"] +margin_top = 328.0 +margin_right = 620.0 +margin_bottom = 344.0 +custom_constants/separation = 16 +custom_styles/separator = SubResource( 19 ) + +[node name="sep" type="TextureRect" parent="main/menu/tabs/outfit/Panel4/tabs/face/HBoxContainer/vbox"] +margin_top = 348.0 +margin_right = 620.0 +margin_bottom = 380.0 +rect_min_size = Vector2( 0, 32 ) +size_flags_horizontal = 3 +texture = ExtResource( 40 ) +expand = true +stretch_mode = 4 + +[node name="clothes" type="ScrollContainer" parent="main/menu/tabs/outfit/Panel4/tabs"] +margin_right = 628.0 +margin_bottom = 481.0 +scroll_horizontal_enabled = false + +[node name="HBoxContainer" type="HBoxContainer" parent="main/menu/tabs/outfit/Panel4/tabs/clothes"] +margin_right = 628.0 +margin_bottom = 636.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="VSeparator" type="VSeparator" parent="main/menu/tabs/outfit/Panel4/tabs/clothes/HBoxContainer"] +margin_right = 4.0 +margin_bottom = 636.0 +custom_styles/separator = SubResource( 32 ) + +[node name="vbox" type="VBoxContainer" parent="main/menu/tabs/outfit/Panel4/tabs/clothes/HBoxContainer"] +margin_left = 8.0 +margin_right = 616.0 +margin_bottom = 636.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="Label" type="Label" parent="main/menu/tabs/outfit/Panel4/tabs/clothes/HBoxContainer/vbox"] +margin_right = 608.0 +margin_bottom = 64.0 +rect_min_size = Vector2( 0, 64 ) +size_flags_horizontal = 3 +custom_colors/font_color = Color( 1, 0.933333, 0.835294, 1 ) +text = "hat " +valign = 1 + +[node name="hat_cont" type="GridContainer" parent="main/menu/tabs/outfit/Panel4/tabs/clothes/HBoxContainer/vbox"] +unique_name_in_owner = true +margin_top = 68.0 +margin_right = 608.0 +margin_bottom = 68.0 +custom_constants/vseparation = 12 +custom_constants/hseparation = 12 +columns = 6 + +[node name="HSeparator2" type="HSeparator" parent="main/menu/tabs/outfit/Panel4/tabs/clothes/HBoxContainer/vbox"] +margin_top = 72.0 +margin_right = 608.0 +margin_bottom = 88.0 +custom_constants/separation = 16 +custom_styles/separator = SubResource( 19 ) + +[node name="sep2" type="TextureRect" parent="main/menu/tabs/outfit/Panel4/tabs/clothes/HBoxContainer/vbox"] +margin_top = 92.0 +margin_right = 608.0 +margin_bottom = 124.0 +rect_min_size = Vector2( 0, 32 ) +size_flags_horizontal = 3 +texture = ExtResource( 40 ) +expand = true +stretch_mode = 4 + +[node name="Label2" type="Label" parent="main/menu/tabs/outfit/Panel4/tabs/clothes/HBoxContainer/vbox"] +margin_top = 128.0 +margin_right = 608.0 +margin_bottom = 192.0 +rect_min_size = Vector2( 0, 64 ) +size_flags_horizontal = 3 +custom_colors/font_color = Color( 1, 0.933333, 0.835294, 1 ) +text = "undershirt " +valign = 1 + +[node name="undershirt_cont" type="GridContainer" parent="main/menu/tabs/outfit/Panel4/tabs/clothes/HBoxContainer/vbox"] +unique_name_in_owner = true +margin_top = 196.0 +margin_right = 608.0 +margin_bottom = 196.0 +custom_constants/vseparation = 12 +custom_constants/hseparation = 12 +columns = 6 + +[node name="HSeparator4" type="HSeparator" parent="main/menu/tabs/outfit/Panel4/tabs/clothes/HBoxContainer/vbox"] +margin_top = 200.0 +margin_right = 608.0 +margin_bottom = 216.0 +custom_constants/separation = 16 +custom_styles/separator = SubResource( 19 ) + +[node name="sep4" type="TextureRect" parent="main/menu/tabs/outfit/Panel4/tabs/clothes/HBoxContainer/vbox"] +margin_top = 220.0 +margin_right = 608.0 +margin_bottom = 252.0 +rect_min_size = Vector2( 0, 32 ) +size_flags_horizontal = 3 +texture = ExtResource( 40 ) +expand = true +stretch_mode = 4 + +[node name="Label3" type="Label" parent="main/menu/tabs/outfit/Panel4/tabs/clothes/HBoxContainer/vbox"] +margin_top = 256.0 +margin_right = 608.0 +margin_bottom = 320.0 +rect_min_size = Vector2( 0, 64 ) +size_flags_horizontal = 3 +custom_colors/font_color = Color( 1, 0.933333, 0.835294, 1 ) +text = "overshirt " +valign = 1 + +[node name="overshirt_cont" type="GridContainer" parent="main/menu/tabs/outfit/Panel4/tabs/clothes/HBoxContainer/vbox"] +unique_name_in_owner = true +margin_top = 324.0 +margin_right = 608.0 +margin_bottom = 324.0 +custom_constants/vseparation = 12 +custom_constants/hseparation = 12 +columns = 6 + +[node name="HSeparator5" type="HSeparator" parent="main/menu/tabs/outfit/Panel4/tabs/clothes/HBoxContainer/vbox"] +margin_top = 328.0 +margin_right = 608.0 +margin_bottom = 344.0 +custom_constants/separation = 16 +custom_styles/separator = SubResource( 19 ) + +[node name="sep5" type="TextureRect" parent="main/menu/tabs/outfit/Panel4/tabs/clothes/HBoxContainer/vbox"] +margin_top = 348.0 +margin_right = 608.0 +margin_bottom = 380.0 +rect_min_size = Vector2( 0, 32 ) +size_flags_horizontal = 3 +texture = ExtResource( 40 ) +expand = true +stretch_mode = 4 + +[node name="Label4" type="Label" parent="main/menu/tabs/outfit/Panel4/tabs/clothes/HBoxContainer/vbox"] +margin_top = 384.0 +margin_right = 608.0 +margin_bottom = 448.0 +rect_min_size = Vector2( 0, 64 ) +size_flags_horizontal = 3 +custom_colors/font_color = Color( 1, 0.933333, 0.835294, 1 ) +text = "legs " +valign = 1 + +[node name="leg_cont" type="GridContainer" parent="main/menu/tabs/outfit/Panel4/tabs/clothes/HBoxContainer/vbox"] +unique_name_in_owner = true +margin_top = 452.0 +margin_right = 608.0 +margin_bottom = 452.0 +custom_constants/vseparation = 12 +custom_constants/hseparation = 12 +columns = 6 + +[node name="HSeparator" type="HSeparator" parent="main/menu/tabs/outfit/Panel4/tabs/clothes/HBoxContainer/vbox"] +margin_top = 456.0 +margin_right = 608.0 +margin_bottom = 472.0 +custom_constants/separation = 16 +custom_styles/separator = SubResource( 19 ) + +[node name="sep" type="TextureRect" parent="main/menu/tabs/outfit/Panel4/tabs/clothes/HBoxContainer/vbox"] +margin_top = 476.0 +margin_right = 608.0 +margin_bottom = 508.0 +rect_min_size = Vector2( 0, 32 ) +size_flags_horizontal = 3 +texture = ExtResource( 40 ) +expand = true +stretch_mode = 4 + +[node name="Label5" type="Label" parent="main/menu/tabs/outfit/Panel4/tabs/clothes/HBoxContainer/vbox"] +margin_top = 512.0 +margin_right = 608.0 +margin_bottom = 576.0 +rect_min_size = Vector2( 0, 64 ) +size_flags_horizontal = 3 +custom_colors/font_color = Color( 1, 0.933333, 0.835294, 1 ) +text = "accessories [max 4] " +valign = 1 + +[node name="acc_cont" type="GridContainer" parent="main/menu/tabs/outfit/Panel4/tabs/clothes/HBoxContainer/vbox"] +unique_name_in_owner = true +margin_top = 580.0 +margin_right = 608.0 +margin_bottom = 580.0 +custom_constants/vseparation = 12 +custom_constants/hseparation = 12 +columns = 6 + +[node name="HSeparator3" type="HSeparator" parent="main/menu/tabs/outfit/Panel4/tabs/clothes/HBoxContainer/vbox"] +margin_top = 584.0 +margin_right = 608.0 +margin_bottom = 600.0 +custom_constants/separation = 16 +custom_styles/separator = SubResource( 19 ) + +[node name="sep3" type="TextureRect" parent="main/menu/tabs/outfit/Panel4/tabs/clothes/HBoxContainer/vbox"] +margin_top = 604.0 +margin_right = 608.0 +margin_bottom = 636.0 +rect_min_size = Vector2( 0, 32 ) +size_flags_horizontal = 3 +texture = ExtResource( 40 ) +expand = true +stretch_mode = 4 + +[node name="misc" type="ScrollContainer" parent="main/menu/tabs/outfit/Panel4/tabs"] +visible = false +margin_right = 628.0 +margin_bottom = 481.0 +scroll_horizontal_enabled = false + +[node name="HBoxContainer" type="HBoxContainer" parent="main/menu/tabs/outfit/Panel4/tabs/misc"] +margin_right = 628.0 +margin_bottom = 481.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="VSeparator" type="VSeparator" parent="main/menu/tabs/outfit/Panel4/tabs/misc/HBoxContainer"] +margin_right = 4.0 +margin_bottom = 40.0 +custom_styles/separator = SubResource( 32 ) + +[node name="vbox" type="VBoxContainer" parent="main/menu/tabs/outfit/Panel4/tabs/misc/HBoxContainer"] +margin_right = 607.0 +margin_bottom = 252.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="Label" type="Label" parent="main/menu/tabs/outfit/Panel4/tabs/misc/HBoxContainer/vbox"] +margin_top = 56.0 +margin_right = 607.0 +margin_bottom = 120.0 +rect_min_size = Vector2( 0, 64 ) +size_flags_horizontal = 3 +custom_colors/font_color = Color( 1, 0.933333, 0.835294, 1 ) +text = "title " +valign = 1 + +[node name="title_cont" type="VBoxContainer" parent="main/menu/tabs/outfit/Panel4/tabs/misc/HBoxContainer/vbox"] +unique_name_in_owner = true +margin_top = 124.0 +margin_right = 607.0 +margin_bottom = 124.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 +custom_constants/separation = 10 + +[node name="HSeparator2" type="HSeparator" parent="main/menu/tabs/outfit/Panel4/tabs/misc/HBoxContainer/vbox"] +margin_top = 128.0 +margin_right = 607.0 +margin_bottom = 144.0 +custom_constants/separation = 16 +custom_styles/separator = SubResource( 19 ) + +[node name="sep2" type="TextureRect" parent="main/menu/tabs/outfit/Panel4/tabs/misc/HBoxContainer/vbox"] +margin_top = 148.0 +margin_right = 607.0 +margin_bottom = 180.0 +rect_min_size = Vector2( 0, 32 ) +size_flags_horizontal = 3 +texture = ExtResource( 40 ) +expand = true +stretch_mode = 4 + +[node name="Label2" type="Label" parent="main/menu/tabs/outfit/Panel4/tabs/misc/HBoxContainer/vbox"] +margin_top = 184.0 +margin_right = 607.0 +margin_bottom = 248.0 +rect_min_size = Vector2( 0, 64 ) +size_flags_horizontal = 3 +custom_colors/font_color = Color( 1, 0.933333, 0.835294, 1 ) +text = "bobber " +valign = 1 + +[node name="bob_cont" type="GridContainer" parent="main/menu/tabs/outfit/Panel4/tabs/misc/HBoxContainer/vbox"] +unique_name_in_owner = true +margin_top = 252.0 +margin_right = 607.0 +margin_bottom = 252.0 +custom_constants/vseparation = 12 +custom_constants/hseparation = 12 +columns = 6 + +[node name="HSeparator" type="HSeparator" parent="main/menu/tabs/outfit/Panel4/tabs/misc/HBoxContainer/vbox"] +margin_right = 607.0 +margin_bottom = 16.0 +custom_constants/separation = 16 +custom_styles/separator = SubResource( 19 ) + +[node name="sep" type="TextureRect" parent="main/menu/tabs/outfit/Panel4/tabs/misc/HBoxContainer/vbox"] +margin_top = 20.0 +margin_right = 607.0 +margin_bottom = 52.0 +rect_min_size = Vector2( 0, 32 ) +size_flags_horizontal = 3 +texture = ExtResource( 40 ) +expand = true +stretch_mode = 4 + +[node name="Label3" type="Label" parent="main/menu/tabs/outfit/Panel4/tabs/misc/HBoxContainer/vbox"] +margin_top = 184.0 +margin_right = 607.0 +margin_bottom = 248.0 +rect_min_size = Vector2( 0, 64 ) +size_flags_horizontal = 3 +custom_colors/font_color = Color( 1, 0.933333, 0.835294, 1 ) +text = "voice options " +valign = 1 + +[node name="HSeparator3" type="HSeparator" parent="main/menu/tabs/outfit/Panel4/tabs/misc/HBoxContainer/vbox"] +margin_right = 607.0 +margin_bottom = 16.0 +custom_constants/separation = 16 +custom_styles/separator = SubResource( 19 ) + +[node name="voice_options" type="VBoxContainer" parent="main/menu/tabs/outfit/Panel4/tabs/misc/HBoxContainer/vbox"] +margin_right = 40.0 +margin_bottom = 40.0 +size_flags_horizontal = 3 +script = ExtResource( 72 ) + +[node name="HBoxContainer" type="HBoxContainer" parent="main/menu/tabs/outfit/Panel4/tabs/misc/HBoxContainer/vbox/voice_options"] +margin_right = 40.0 +margin_bottom = 40.0 +size_flags_horizontal = 3 + +[node name="Label" type="Label" parent="main/menu/tabs/outfit/Panel4/tabs/misc/HBoxContainer/vbox/voice_options/HBoxContainer"] +margin_right = 40.0 +margin_bottom = 34.0 +size_flags_horizontal = 3 +size_flags_vertical = 6 + +[node name="HSlider" type="HSlider" parent="main/menu/tabs/outfit/Panel4/tabs/misc/HBoxContainer/vbox/voice_options/HBoxContainer"] +margin_right = 40.0 +margin_bottom = 32.0 +size_flags_horizontal = 3 +size_flags_vertical = 6 +size_flags_stretch_ratio = 2.0 + +[node name="HBoxContainer2" type="HBoxContainer" parent="main/menu/tabs/outfit/Panel4/tabs/misc/HBoxContainer/vbox/voice_options"] +margin_right = 40.0 +margin_bottom = 40.0 +size_flags_horizontal = 3 + +[node name="speedlbl" type="Label" parent="main/menu/tabs/outfit/Panel4/tabs/misc/HBoxContainer/vbox/voice_options/HBoxContainer2"] +margin_right = 40.0 +margin_bottom = 34.0 +size_flags_horizontal = 3 +size_flags_vertical = 6 + +[node name="speed" type="HSlider" parent="main/menu/tabs/outfit/Panel4/tabs/misc/HBoxContainer/vbox/voice_options/HBoxContainer2"] +margin_right = 40.0 +margin_bottom = 32.0 +size_flags_horizontal = 3 +size_flags_vertical = 6 +size_flags_stretch_ratio = 2.0 + +[node name="HSeparator3" type="HSeparator" parent="main/menu/tabs/outfit/Panel4/tabs/misc/HBoxContainer/vbox/voice_options"] +margin_right = 607.0 +margin_bottom = 16.0 +custom_constants/separation = 16 +custom_styles/separator = SubResource( 19 ) + +[node name="sep3" type="TextureRect" parent="main/menu/tabs/outfit/Panel4/tabs/misc/HBoxContainer/vbox"] +margin_top = 20.0 +margin_right = 607.0 +margin_bottom = 52.0 +rect_min_size = Vector2( 0, 32 ) +size_flags_horizontal = 3 +texture = ExtResource( 40 ) +expand = true +stretch_mode = 4 + +[node name="inbox" parent="main/menu/tabs" instance=ExtResource( 8 )] +visible = false +anchor_left = 0.0 +anchor_top = 0.0 +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 8.0 +margin_top = 16.0 +margin_right = -8.0 +margin_bottom = -8.0 + +[node name="players" parent="main/menu/tabs" instance=ExtResource( 7 )] +visible = false +margin_left = 8.0 +margin_top = 16.0 +margin_right = -8.0 +margin_bottom = -8.0 +__meta__ = { +"_edit_use_anchors_": true +} + +[node name="Panel" type="Panel" parent="main/menu/tabs/players"] +show_behind_parent = true +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_top = 39.0 +mouse_filter = 2 +custom_styles/panel = ExtResource( 39 ) + +[node name="Panel2" type="Panel" parent="main/menu"] +anchor_left = 0.145 +anchor_top = 0.255 +anchor_right = 0.259 +anchor_bottom = 0.316 +margin_left = -0.400024 +margin_top = -0.400024 +margin_right = -4.28 +margin_bottom = 9.71997 +rect_rotation = -2.7 +custom_styles/panel = ExtResource( 41 ) + +[node name="bplabel" type="Label" parent="main/menu/Panel2"] +unique_name_in_owner = true +anchor_right = 1.0 +anchor_bottom = 1.0 +custom_colors/font_color = Color( 1, 0.933333, 0.835294, 1 ) +text = "backpack" +align = 1 +valign = 1 + +[node name="Panel3" type="Panel" parent="main/menu"] +anchor_left = 0.106 +anchor_top = 0.344 +anchor_right = 0.205 +anchor_bottom = 0.44 +margin_left = 0.47998 +margin_top = 0.47998 +margin_right = -4.60004 +margin_bottom = 8.79996 +rect_rotation = -2.7 +custom_styles/panel = ExtResource( 41 ) + +[node name="badgelabel" type="Label" parent="main/menu/Panel3"] +anchor_right = 1.0 +anchor_bottom = 1.0 +custom_colors/font_color = Color( 1, 0.933333, 0.835294, 1 ) +align = 1 +valign = 1 + +[node name="Panel5" type="Panel" parent="main/menu"] +anchor_left = 0.106 +anchor_top = 0.454 +anchor_right = 0.206 +anchor_bottom = 0.594 +margin_left = 0.47998 +margin_top = -0.320038 +margin_right = -6.52002 +margin_bottom = 8.47998 +rect_rotation = -2.7 +custom_styles/panel = ExtResource( 41 ) + +[node name="item_display" parent="main/menu/Panel5" instance=ExtResource( 42 )] +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_right = 0.0 +margin_bottom = 0.0 +expand = true +unique = true +unique_scale = 5.0 + +[node name="Panel4" type="Panel" parent="main/menu"] +anchor_left = 0.106 +anchor_top = 0.622 +anchor_right = 0.202 +anchor_bottom = 0.656 +margin_left = 0.47998 +margin_top = 0.240173 +margin_right = 1.15997 +margin_bottom = -0.479797 +rect_rotation = -2.7 +custom_styles/panel = ExtResource( 41 ) +__meta__ = { +"_edit_use_anchors_": true +} + +[node name="cashlabel" type="RichTextLabel" parent="main/menu/Panel4"] +anchor_right = 1.0 +anchor_bottom = 1.0 +bbcode_enabled = true +scroll_active = false + +[node name="tacklebox" type="ViewportContainer" parent="main"] +visible = false +modulate = Color( 1, 1, 1, 0 ) +anchor_right = 1.0 +anchor_bottom = 1.0 +stretch = true + +[node name="Viewport" type="Viewport" parent="main/tacklebox"] +size = Vector2( 1920, 1080 ) +own_world = true +world = SubResource( 5 ) +transparent_bg = true +handle_input_locally = false +render_target_update_mode = 0 + +[node name="Spatial" type="Spatial" parent="main/tacklebox/Viewport"] + +[node name="Camera" type="Camera" parent="main/tacklebox/Viewport/Spatial"] +transform = Transform( 0.902585, 0.0766067, -0.423641, 0, 0.984041, 0.177944, 0.430511, -0.160609, 0.888181, -4.367, 1.496, 8.92 ) +fov = 30.0 + +[node name="tacklebox" type="Spatial" parent="main/tacklebox/Viewport/Spatial"] + +[node name="Armature" type="Spatial" parent="main/tacklebox/Viewport/Spatial/tacklebox"] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.5, 0 ) + +[node name="Skeleton" type="Skeleton" parent="main/tacklebox/Viewport/Spatial/tacklebox/Armature"] +bones/0/name = "Bone" +bones/0/parent = -1 +bones/0/rest = Transform( 1, 9.6284e-17, -2.37049e-17, -2.37049e-17, 0.464255, 0.885702, 9.6284e-17, -0.885702, 0.464255, 1.32349e-23, -3, 0 ) +bones/0/enabled = true +bones/0/bound_children = [ ] +bones/1/name = "Bone.001" +bones/1/parent = 0 +bones/1/rest = Transform( 1, -7.08004e-18, 1.27357e-16, 5.17712e-17, -0.889989, -0.455981, 1.16575e-16, 0.455981, -0.889989, 3.30872e-24, 1.11374, -2.98023e-08 ) +bones/1/enabled = true +bones/1/bound_children = [ ] + +[node name="Cube" type="MeshInstance" parent="main/tacklebox/Viewport/Spatial/tacklebox/Armature/Skeleton"] +mesh = SubResource( 14 ) +skin = SubResource( 15 ) +material/0 = ExtResource( 31 ) +material/1 = ExtResource( 29 ) +material/2 = ExtResource( 24 ) +material/3 = ExtResource( 26 ) + +[node name="AnimationPlayer" type="AnimationPlayer" parent="main/tacklebox/Viewport/Spatial/tacklebox"] +anims/open = SubResource( 18 ) + +[node name="bait_menu" type="Control" parent="main"] +visible = false +modulate = Color( 1, 1, 1, 0 ) +anchor_left = 0.2 +anchor_top = 0.3 +anchor_right = 0.8 +anchor_bottom = 0.7 +theme = ExtResource( 5 ) + +[node name="Panel" type="Panel" parent="main/bait_menu"] +anchor_right = 1.0 +anchor_bottom = 1.0 + +[node name="Panel2" type="Panel" parent="main/bait_menu"] +anchor_left = 0.007 +anchor_top = 0.12 +anchor_right = 0.7 +anchor_bottom = 0.981 +custom_styles/panel = ExtResource( 39 ) + +[node name="titles" type="MarginContainer" parent="main/bait_menu/Panel2"] +anchor_right = 1.0 +anchor_bottom = 0.4 +margin_left = 8.0 +margin_top = 8.0 +margin_right = -8.0 +margin_bottom = -8.0 + +[node name="HBoxContainer" type="HBoxContainer" parent="main/bait_menu/Panel2/titles"] +margin_right = 782.0 +margin_bottom = 132.0 +custom_constants/separation = 8 + +[node name="bait_tab" type="Panel" parent="main/bait_menu/Panel2/titles/HBoxContainer"] +margin_right = 291.0 +margin_bottom = 132.0 +size_flags_horizontal = 3 + +[node name="Label" type="Label" parent="main/bait_menu/Panel2/titles/HBoxContainer/bait_tab"] +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 8.0 +margin_top = 8.0 +text = "Baits" + +[node name="VSeparator" type="VSeparator" parent="main/bait_menu/Panel2/titles/HBoxContainer"] +margin_left = 299.0 +margin_right = 387.0 +margin_bottom = 132.0 +size_flags_horizontal = 3 +size_flags_stretch_ratio = 0.3 +custom_styles/separator = SubResource( 22 ) + +[node name="bait_tab2" type="Panel" parent="main/bait_menu/Panel2/titles/HBoxContainer"] +margin_left = 395.0 +margin_right = 686.0 +margin_bottom = 132.0 +size_flags_horizontal = 3 + +[node name="Label" type="Label" parent="main/bait_menu/Panel2/titles/HBoxContainer/bait_tab2"] +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 8.0 +margin_top = 8.0 +text = "Lures" + +[node name="VSeparator2" type="VSeparator" parent="main/bait_menu/Panel2/titles/HBoxContainer"] +margin_left = 694.0 +margin_right = 782.0 +margin_bottom = 132.0 +size_flags_horizontal = 3 +size_flags_stretch_ratio = 0.3 +custom_styles/separator = SubResource( 22 ) + +[node name="main" type="MarginContainer" parent="main/bait_menu/Panel2"] +anchor_top = 0.1 +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 8.0 +margin_top = 8.0 +margin_right = -8.0 +margin_bottom = -8.0 + +[node name="HBoxContainer" type="HBoxContainer" parent="main/bait_menu/Panel2/main"] +margin_right = 782.0 +margin_bottom = 318.0 +custom_constants/separation = 8 + +[node name="bait_tab" type="Panel" parent="main/bait_menu/Panel2/main/HBoxContainer"] +margin_right = 387.0 +margin_bottom = 318.0 +size_flags_horizontal = 3 + +[node name="ScrollContainer" type="ScrollContainer" parent="main/bait_menu/Panel2/main/HBoxContainer/bait_tab"] +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 8.0 +margin_top = 16.0 +margin_right = -8.0 +margin_bottom = -8.0 + +[node name="HBoxContainer" type="HBoxContainer" parent="main/bait_menu/Panel2/main/HBoxContainer/bait_tab/ScrollContainer"] +margin_right = 371.0 +margin_bottom = 3.0 +size_flags_horizontal = 3 + +[node name="bait_list" type="VBoxContainer" parent="main/bait_menu/Panel2/main/HBoxContainer/bait_tab/ScrollContainer/HBoxContainer"] +unique_name_in_owner = true +margin_right = 339.0 +margin_bottom = 3.0 +size_flags_horizontal = 3 + +[node name="VSeparator" type="VSeparator" parent="main/bait_menu/Panel2/main/HBoxContainer/bait_tab/ScrollContainer/HBoxContainer"] +margin_left = 343.0 +margin_right = 371.0 +margin_bottom = 3.0 +size_flags_horizontal = 3 +size_flags_stretch_ratio = 0.08 +custom_styles/separator = SubResource( 23 ) + +[node name="lure_tab" type="Panel" parent="main/bait_menu/Panel2/main/HBoxContainer"] +margin_left = 395.0 +margin_right = 782.0 +margin_bottom = 318.0 +size_flags_horizontal = 3 + +[node name="ScrollContainer" type="ScrollContainer" parent="main/bait_menu/Panel2/main/HBoxContainer/lure_tab"] +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 8.0 +margin_top = 16.0 +margin_right = -8.0 +margin_bottom = -8.0 + +[node name="HBoxContainer" type="HBoxContainer" parent="main/bait_menu/Panel2/main/HBoxContainer/lure_tab/ScrollContainer"] +margin_right = 371.0 +margin_bottom = 3.0 +size_flags_horizontal = 3 + +[node name="lure_list" type="VBoxContainer" parent="main/bait_menu/Panel2/main/HBoxContainer/lure_tab/ScrollContainer/HBoxContainer"] +unique_name_in_owner = true +margin_right = 339.0 +margin_bottom = 3.0 +size_flags_horizontal = 3 + +[node name="VSeparator" type="VSeparator" parent="main/bait_menu/Panel2/main/HBoxContainer/lure_tab/ScrollContainer/HBoxContainer"] +margin_left = 343.0 +margin_right = 371.0 +margin_bottom = 3.0 +size_flags_horizontal = 3 +size_flags_stretch_ratio = 0.08 +custom_styles/separator = SubResource( 23 ) + +[node name="Panel3" type="Panel" parent="main/bait_menu"] +anchor_left = 0.71 +anchor_top = 0.12 +anchor_right = 0.991 +anchor_bottom = 0.981 +margin_left = 0.479919 +margin_top = 0.159996 +margin_right = 0.36792 +custom_styles/panel = ExtResource( 39 ) + +[node name="bait_info" type="RichTextLabel" parent="main/bait_menu/Panel3"] +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 16.0 +margin_top = 16.0 +margin_right = -16.0 +margin_bottom = -16.0 +custom_colors/default_color = Color( 1, 0.933333, 0.835294, 1 ) +bbcode_enabled = true +bbcode_text = "Hover to see info..." +text = "Hover to see info..." + +[node name="Button" type="Button" parent="main/bait_menu"] +anchor_left = 1.0 +anchor_right = 1.0 +margin_left = -48.0 +margin_top = 8.0 +margin_right = -16.0 +margin_bottom = 44.0 +rect_min_size = Vector2( 32, 32 ) +text = "X" + +[node name="Label" type="Label" parent="main/bait_menu"] +anchor_right = 1.0 +anchor_bottom = 0.05 +margin_bottom = 30.0 +text = "SELECT FISHING BAIT" +align = 1 +valign = 1 + +[node name="shop" parent="main" instance=ExtResource( 35 )] +visible = false +hud = NodePath("../..") + +[node name="dialogue" type="Control" parent="main"] +visible = false +anchor_right = 1.0 +anchor_bottom = 1.0 +script = ExtResource( 43 ) + +[node name="Panel" type="Panel" parent="main/dialogue"] +anchor_left = 0.2 +anchor_top = 0.75 +anchor_right = 0.8 +anchor_bottom = 0.9 + +[node name="Panel2" type="Panel" parent="main/dialogue/Panel"] +margin_left = -110.0 +margin_top = -49.0 +margin_right = 105.0 +margin_bottom = 27.0 +rect_rotation = -2.7 +custom_styles/panel = ExtResource( 41 ) + +[node name="bplabel" type="Label" parent="main/dialogue/Panel/Panel2"] +anchor_right = 1.0 +anchor_bottom = 1.0 +custom_colors/font_color = Color( 1, 0.933333, 0.835294, 1 ) +text = "catch!" +align = 1 +valign = 1 + +[node name="RichTextLabel" type="RichTextLabel" parent="main/dialogue/Panel"] +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 24.0 +margin_top = 24.0 +margin_right = -24.0 +margin_bottom = -24.0 +custom_colors/default_color = Color( 0.352941, 0.458824, 0.352941, 1 ) +bbcode_enabled = true +bbcode_text = "Text here text here text here." +text = "Text here text here text here." + +[node name="Timer" type="Timer" parent="main/dialogue"] +wait_time = 0.05 +autostart = true + +[node name="emote_wheel" parent="main" instance=ExtResource( 46 )] +visible = false + +[node name="prop_menu" type="Control" parent="main"] +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_top = 600.0 +margin_bottom = 600.0 +mouse_filter = 2 +script = ExtResource( 34 ) + +[node name="Panel" type="Panel" parent="main/prop_menu"] +anchor_left = 0.3 +anchor_top = 0.6 +anchor_right = 0.7 +anchor_bottom = 1.0 + +[node name="Panel2" type="Panel" parent="main/prop_menu/Panel"] +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 8.0 +margin_top = 56.0 +margin_right = -8.0 +margin_bottom = -8.0 +custom_styles/panel = ExtResource( 39 ) + +[node name="Label" type="Label" parent="main/prop_menu/Panel"] +anchor_right = 1.0 +margin_left = 24.0 +margin_top = 12.0 +margin_right = -24.0 +margin_bottom = 46.0 +text = "PROPS" +valign = 1 + +[node name="HBoxContainer" type="HBoxContainer" parent="main/prop_menu/Panel"] +anchor_right = 1.0 +margin_left = 24.0 +margin_top = 12.0 +margin_right = -24.0 +margin_bottom = 46.0 +custom_constants/separation = 10 +alignment = 2 + +[node name="Button" type="Button" parent="main/prop_menu/Panel/HBoxContainer"] +margin_left = 534.0 +margin_right = 674.0 +margin_bottom = 34.0 +rect_min_size = Vector2( 140, 0 ) +text = "CLEAR ALL" +__meta__ = { +"_edit_use_anchors_": true +} + +[node name="Button2" type="Button" parent="main/prop_menu/Panel/HBoxContainer"] +margin_left = 684.0 +margin_right = 720.0 +margin_bottom = 34.0 +rect_min_size = Vector2( 36, 0 ) +text = "X" +__meta__ = { +"_edit_use_anchors_": true +} + +[node name="ScrollContainer" type="ScrollContainer" parent="main/prop_menu/Panel"] +anchor_top = 0.127 +anchor_right = 1.0 +anchor_bottom = 0.565 +margin_left = 8.0 +margin_right = -8.0 + +[node name="VBoxContainer" type="VBoxContainer" parent="main/prop_menu/Panel/ScrollContainer"] +margin_right = 752.0 +margin_bottom = 189.216 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="HSeparator" type="HSeparator" parent="main/prop_menu/Panel/ScrollContainer/VBoxContainer"] +margin_right = 752.0 +margin_bottom = 16.0 +custom_constants/separation = 16 +custom_styles/separator = SubResource( 31 ) + +[node name="HBoxContainer" type="HBoxContainer" parent="main/prop_menu/Panel/ScrollContainer/VBoxContainer"] +margin_top = 20.0 +margin_right = 752.0 +margin_bottom = 189.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="VSeparator" type="VSeparator" parent="main/prop_menu/Panel/ScrollContainer/VBoxContainer/HBoxContainer"] +margin_right = 8.0 +margin_bottom = 169.0 +custom_constants/separation = 8 +custom_styles/separator = SubResource( 31 ) + +[node name="GridContainer" type="GridContainer" parent="main/prop_menu/Panel/ScrollContainer/VBoxContainer/HBoxContainer"] +margin_left = 12.0 +margin_right = 752.0 +margin_bottom = 169.0 +size_flags_horizontal = 3 +size_flags_vertical = 3 +custom_constants/vseparation = 20 +custom_constants/hseparation = 20 +columns = 7 + +[node name="arena_menu" parent="main" instance=ExtResource( 48 )] +visible = false +hud_node = NodePath("../..") + +[node name="ui_anim" type="AnimationPlayer" parent="main"] +anims/Open = SubResource( 8 ) +anims/RESET = SubResource( 9 ) +anims/tacklebox_open = SubResource( 17 ) + +[node name="esc_menu" parent="." instance=ExtResource( 3 )] +visible = false + +[node name="21Cfd70Aeac204665E18B6902F06B3B1" type="Sprite" parent="."] +visible = false +modulate = Color( 1, 1, 1, 0.592157 ) +position = Vector2( 961, 533.5 ) +scale = Vector2( 1.99792, 1.8322 ) +texture = ExtResource( 36 ) +__meta__ = { +"_edit_lock_": true +} + +[node name="notif_popup" parent="." instance=ExtResource( 49 )] + +[node name="badge_popup" parent="." instance=ExtResource( 33 )] + +[node name="status_update" type="Timer" parent="."] +autostart = true + +[connection signal="pressed" from="main/in_game/HBoxContainer/backpack" to="." method="_change_menu" binds= [ 2 ]] +[connection signal="pressed" from="main/in_game/HBoxContainer/tacklebox" to="." method="_change_menu" binds= [ 4 ]] +[connection signal="pressed" from="main/in_game/HBoxContainer/tent" to="." method="_on_tent_pressed"] +[connection signal="pressed" from="main/in_game/HBoxContainer/emote" to="." method="_change_menu" binds= [ 7 ]] +[connection signal="pressed" from="main/in_game/HBoxContainer/camera" to="." method="_on_camera_pressed"] +[connection signal="pressed" from="main/in_game/gamechat/Panel2/global_chat" to="." method="_toggle_chat" binds= [ true ]] +[connection signal="pressed" from="main/in_game/gamechat/Panel2/local_chat" to="." method="_toggle_chat" binds= [ false ]] +[connection signal="pressed" from="main/in_game/gamechat/Panel2/expand" to="." method="_on_expand_pressed"] +[connection signal="pressed" from="main/in_game/gamechat/Panel2/hide" to="." method="_on_hide_pressed"] +[connection signal="pressed" from="main/in_game/gamechat/Button" to="." method="_button_message_send"] +[connection signal="pressed" from="main/in_game/show_chat" to="." method="_on_show_chat_pressed"] +[connection signal="pressed" from="main/menu/Button" to="." method="_change_menu" binds= [ 0 ]] +[connection signal="_pressed" from="main/menu/buttons/menu_button" to="." method="_change_tab"] +[connection signal="_pressed" from="main/menu/buttons/menu_button2" to="." method="_change_tab"] +[connection signal="_pressed" from="main/menu/buttons/menu_button4" to="." method="_change_tab"] +[connection signal="_pressed" from="main/menu/buttons/menu_button5" to="." method="_change_tab"] +[connection signal="_pressed" from="main/menu/buttons/menu_button6" to="." method="_change_tab"] +[connection signal="timeout" from="main/menu/tabs/journal/Panel3/Timer" to="main/menu/tabs/journal" method="_on_Timer_timeout"] +[connection signal="value_changed" from="main/menu/tabs/outfit/Panel3/HScrollBar" to="main/menu/tabs/outfit" method="_on_HScrollBar_value_changed"] +[connection signal="pressed" from="main/menu/tabs/outfit/HBoxContainer/body" to="main/menu/tabs/outfit" method="_change_tab" binds= [ "body" ]] +[connection signal="pressed" from="main/menu/tabs/outfit/HBoxContainer/face" to="main/menu/tabs/outfit" method="_change_tab" binds= [ "face" ]] +[connection signal="pressed" from="main/menu/tabs/outfit/HBoxContainer/clothes" to="main/menu/tabs/outfit" method="_change_tab" binds= [ "clothes" ]] +[connection signal="pressed" from="main/menu/tabs/outfit/HBoxContainer/misc" to="main/menu/tabs/outfit" method="_change_tab" binds= [ "misc" ]] +[connection signal="_create_letter" from="main/menu/tabs/inbox" to="." method="_on_inbox__create_letter"] +[connection signal="_read_letter" from="main/menu/tabs/inbox" to="." method="_on_inbox__read_letter"] +[connection signal="pressed" from="main/bait_menu/Button" to="." method="_change_menu" binds= [ 0 ]] +[connection signal="_finished" from="main/dialogue" to="." method="_on_dialogue__finished"] +[connection signal="timeout" from="main/dialogue/Timer" to="main/dialogue" method="_on_Timer_timeout"] +[connection signal="_play_emote" from="main/emote_wheel" to="." method="_play_emote"] +[connection signal="pressed" from="main/prop_menu/Panel/HBoxContainer/Button" to="main/prop_menu" method="_on_Button_pressed"] +[connection signal="pressed" from="main/prop_menu/Panel/HBoxContainer/Button2" to="." method="_change_menu" binds= [ 0 ]] +[connection signal="timeout" from="status_update" to="." method="_on_status_update_timeout"] diff --git a/screenshot.png b/screenshot.png new file mode 100644 index 0000000..2bf2ba4 Binary files /dev/null and b/screenshot.png differ